Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,6 @@ license-report.md
.sst

.mcp.json

# TypeScript profiling
.ts-profile
5 changes: 5 additions & 0 deletions apps/analytics/src/components/CookieConsentBanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ export function createCookieConsentBanner(
banner.className = 'tl-analytics-banner'
banner.setAttribute('data-theme', theme)

// Enable pointer events after animation completes
setTimeout(() => {
banner.style.pointerEvents = 'auto'
}, 3000)

// Create content
banner.innerHTML = `
<p class="tl-analytics-banner__text">
Expand Down
3 changes: 2 additions & 1 deletion apps/analytics/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@
max-width: 240px;
/* Slide-in animation */
transform: translateY(110%);
animation: slideUp 5s ease-in forwards;
animation: slideUp 3s ease-in forwards;
animation-delay: 2s;
pointer-events: none;
}

@keyframes slideUp {
Expand Down
36 changes: 36 additions & 0 deletions apps/dotcom/client/public/tla/locales-compiled/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@
"value": "File"
}
],
"0b79795d3e": [
{
"type": 0,
"value": "Introduction"
}
],
"0b9a4cde72": [
{
"type": 0,
Expand Down Expand Up @@ -633,6 +639,12 @@
"value": "Fairy's name"
}
],
"695c3e899d": [
{
"type": 0,
"value": "Debug fairies"
}
],
"6a26f54883": [
{
"type": 0,
Expand Down Expand Up @@ -915,6 +927,12 @@
"value": "Shared with you"
}
],
"8f7f4c1ce7": [
{
"type": 0,
"value": "About"
}
],
"8ff3d0a705": [
{
"type": 0,
Expand Down Expand Up @@ -1091,6 +1109,12 @@
"value": "Submit"
}
],
"a603905470": [
{
"type": 0,
"value": "Debug"
}
],
"a6cc403d56": [
{
"type": 0,
Expand Down Expand Up @@ -1283,6 +1307,12 @@
"value": "Unable to publish the file."
}
],
"c3bf447eab": [
{
"type": 0,
"value": "Open"
}
],
"c3eb5c3b90": [
{
"type": 0,
Expand All @@ -1301,6 +1331,12 @@
"value": "Group name"
}
],
"c64518704c": [
{
"type": 0,
"value": "Usage"
}
],
"c655b27b1e": [
{
"type": 0,
Expand Down
18 changes: 18 additions & 0 deletions apps/dotcom/client/public/tla/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
"0b27918290": {
"translation": "File"
},
"0b79795d3e": {
"translation": "Introduction"
},
"0b9a4cde72": {
"translation": "File menu"
},
Expand Down Expand Up @@ -284,6 +287,9 @@
"6910bbdc82": {
"translation": "Fairy's name"
},
"695c3e899d": {
"translation": "Debug fairies"
},
"6a26f54883": {
"translation": "Help"
},
Expand Down Expand Up @@ -407,6 +413,9 @@
"8eb2c00e96": {
"translation": "Shared with you"
},
"8f7f4c1ce7": {
"translation": "About"
},
"8ff3d0a705": {
"translation": "Rate limited"
},
Expand Down Expand Up @@ -488,6 +497,9 @@
"a4d3b161ce": {
"translation": "Submit"
},
"a603905470": {
"translation": "Debug"
},
"a6cc403d56": {
"translation": "Anyone with the link"
},
Expand Down Expand Up @@ -555,6 +567,9 @@
"c303bd1095": {
"translation": "Unable to publish the file."
},
"c3bf447eab": {
"translation": "Open"
},
"c3eb5c3b90": {
"translation": "I understand"
},
Expand All @@ -564,6 +579,9 @@
"c6155aaecc": {
"translation": "Group name"
},
"c64518704c": {
"translation": "Usage"
},
"c655b27b1e": {
"translation": "i18n: Long String"
},
Expand Down
Loading
Loading