react-email 4.0.16 → 4.1.0-canary.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +65 -0
- package/dev/index.js +40 -0
- package/dev/package.json +13 -0
- package/dist/index.js +1 -1
- package/package.json +13 -46
- package/readme.md +16 -0
- package/src/commands/build.ts +306 -0
- package/src/commands/dev.ts +27 -0
- package/src/commands/export.ts +204 -0
- package/src/commands/start.ts +38 -0
- package/src/index.ts +55 -0
- package/src/utils/__snapshots__/tree.spec.ts.snap +27 -0
- package/src/utils/esbuild/renderring-utilities-exporter.ts +1 -1
- package/src/utils/get-emails-directory-metadata.spec.ts +1 -1
- package/src/utils/get-preview-server-location.ts +51 -0
- package/src/utils/index.ts +2 -6
- package/src/utils/packageJson.ts +4 -0
- package/src/utils/preview/get-env-variables-for-preview-app.ts +14 -0
- package/src/utils/preview/hot-reloading/create-dependency-graph.spec.ts +284 -0
- package/src/utils/preview/hot-reloading/create-dependency-graph.ts +321 -0
- package/src/utils/preview/hot-reloading/get-imported-modules.spec.ts +151 -0
- package/src/utils/preview/hot-reloading/get-imported-modules.ts +49 -0
- package/src/utils/preview/hot-reloading/resolve-path-aliases.spec.ts +11 -0
- package/src/utils/preview/hot-reloading/resolve-path-aliases.ts +32 -0
- package/src/utils/preview/hot-reloading/setup-hot-reloading.ts +121 -0
- package/src/utils/preview/hot-reloading/test/tsconfig.json +8 -0
- package/src/utils/preview/index.ts +2 -0
- package/src/utils/preview/serve-static-file.ts +51 -0
- package/src/utils/preview/start-dev-server.ts +234 -0
- package/src/utils/tree.spec.ts +5 -0
- package/src/utils/tree.ts +76 -0
- package/src/utils/types/hot-reload-change.ts +1 -1
- package/src/utils/types/hot-reload-event.ts +1 -1
- package/tsconfig.json +4 -10
- package/dist/cli/index.d.mts +0 -1
- package/dist/cli/index.d.ts +0 -1
- package/dist/cli/index.js +0 -2785
- package/dist/cli/index.mjs +0 -1361
- package/dist/index.d.mts +0 -20
- package/dist/index.d.ts +0 -20
- package/dist/index.mjs +0 -21
- package/dist/package/index.d.mts +0 -33
- package/dist/package/index.d.ts +0 -33
- package/dist/package/index.js +0 -62
- package/dist/package/index.mjs +0 -7
- package/dist/preview/.next/BUILD_ID +0 -1
- package/dist/preview/.next/app-build-manifest.json +0 -44
- package/dist/preview/.next/app-path-routes-manifest.json +0 -6
- package/dist/preview/.next/build-manifest.json +0 -33
- package/dist/preview/.next/diagnostics/build-diagnostics.json +0 -6
- package/dist/preview/.next/diagnostics/framework.json +0 -1
- package/dist/preview/.next/export-marker.json +0 -6
- package/dist/preview/.next/images-manifest.json +0 -57
- package/dist/preview/.next/next-minimal-server.js.nft.json +0 -1
- package/dist/preview/.next/next-server.js.nft.json +0 -1
- package/dist/preview/.next/package.json +0 -1
- package/dist/preview/.next/prerender-manifest.json +0 -41
- package/dist/preview/.next/react-loadable-manifest.json +0 -1
- package/dist/preview/.next/required-server-files.json +0 -311
- package/dist/preview/.next/routes-manifest.json +0 -64
- package/dist/preview/.next/server/app/_not-found/page.js +0 -1
- package/dist/preview/.next/server/app/_not-found/page.js.nft.json +0 -1
- package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +0 -1
- package/dist/preview/.next/server/app/favicon.ico/route.js +0 -1
- package/dist/preview/.next/server/app/favicon.ico/route.js.nft.json +0 -1
- package/dist/preview/.next/server/app/favicon.ico.body +0 -0
- package/dist/preview/.next/server/app/favicon.ico.meta +0 -1
- package/dist/preview/.next/server/app/page.js +0 -1
- package/dist/preview/.next/server/app/page.js.nft.json +0 -1
- package/dist/preview/.next/server/app/page_client-reference-manifest.js +0 -1
- package/dist/preview/.next/server/app/preview/[...slug]/page.js +0 -321
- package/dist/preview/.next/server/app/preview/[...slug]/page.js.nft.json +0 -1
- package/dist/preview/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +0 -1
- package/dist/preview/.next/server/app-paths-manifest.json +0 -6
- package/dist/preview/.next/server/chunks/134.js +0 -6
- package/dist/preview/.next/server/chunks/235.js +0 -15
- package/dist/preview/.next/server/chunks/275.js +0 -1
- package/dist/preview/.next/server/chunks/343.js +0 -20
- package/dist/preview/.next/server/chunks/428.js +0 -14
- package/dist/preview/.next/server/chunks/963.js +0 -1
- package/dist/preview/.next/server/functions-config-manifest.json +0 -4
- package/dist/preview/.next/server/interception-route-rewrite-manifest.js +0 -1
- package/dist/preview/.next/server/middleware-build-manifest.js +0 -1
- package/dist/preview/.next/server/middleware-manifest.json +0 -6
- package/dist/preview/.next/server/middleware-react-loadable-manifest.js +0 -1
- package/dist/preview/.next/server/next-font-manifest.js +0 -1
- package/dist/preview/.next/server/next-font-manifest.json +0 -1
- package/dist/preview/.next/server/pages/500.html +0 -1
- package/dist/preview/.next/server/pages/_app.js +0 -1
- package/dist/preview/.next/server/pages/_app.js.nft.json +0 -1
- package/dist/preview/.next/server/pages/_document.js +0 -1
- package/dist/preview/.next/server/pages/_document.js.nft.json +0 -1
- package/dist/preview/.next/server/pages/_error.js +0 -1
- package/dist/preview/.next/server/pages/_error.js.nft.json +0 -1
- package/dist/preview/.next/server/pages-manifest.json +0 -5
- package/dist/preview/.next/server/server-reference-manifest.js +0 -1
- package/dist/preview/.next/server/server-reference-manifest.json +0 -1
- package/dist/preview/.next/server/webpack-runtime.js +0 -1
- package/dist/preview/.next/static/chunks/107-3043079e7cb8bcae.js +0 -1
- package/dist/preview/.next/static/chunks/293-297b1eb2241f9a70.js +0 -1
- package/dist/preview/.next/static/chunks/3bd82e28-cda2c00a924937c5.js +0 -1
- package/dist/preview/.next/static/chunks/45-1021fac82f766268.js +0 -1
- package/dist/preview/.next/static/chunks/484-e38a627386aae911.js +0 -1
- package/dist/preview/.next/static/chunks/589-817d8691661d370e.js +0 -1
- package/dist/preview/.next/static/chunks/902-c34acb56733e0ce1.js +0 -1
- package/dist/preview/.next/static/chunks/app/_not-found/page-4cbc7dce3ad33336.js +0 -1
- package/dist/preview/.next/static/chunks/app/layout-269b5cbd8f4cd2e3.js +0 -1
- package/dist/preview/.next/static/chunks/app/page-2dbfb5b2dc4b1191.js +0 -1
- package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-79e0c9b528a62f8b.js +0 -1
- package/dist/preview/.next/static/chunks/f33a14d2-ec7c5f0b91818561.js +0 -6
- package/dist/preview/.next/static/chunks/framework-b887e9fc751a9906.js +0 -1
- package/dist/preview/.next/static/chunks/main-9a03e7ba8acb1900.js +0 -1
- package/dist/preview/.next/static/chunks/main-app-976577a424e11c75.js +0 -1
- package/dist/preview/.next/static/chunks/pages/_app-542a93a5a214e1c0.js +0 -1
- package/dist/preview/.next/static/chunks/pages/_error-d5fe1b1612642f76.js +0 -1
- package/dist/preview/.next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/dist/preview/.next/static/chunks/webpack-31c45daa2bd82a7b.js +0 -1
- package/dist/preview/.next/static/css/ac3decd5d6736fbe.css +0 -3
- package/dist/preview/.next/static/media/05613964ce6c782e-s.p.otf +0 -0
- package/dist/preview/.next/static/media/11c6126b9369e85e-s.p.otf +0 -0
- package/dist/preview/.next/static/media/26a46d62cd723877-s.woff2 +0 -0
- package/dist/preview/.next/static/media/26cb97734d8cb717-s.p.otf +0 -0
- package/dist/preview/.next/static/media/55c55f0601d81cf3-s.woff2 +0 -0
- package/dist/preview/.next/static/media/581909926a08bbc8-s.woff2 +0 -0
- package/dist/preview/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
- package/dist/preview/.next/static/media/97e0cb1ae144a2a9-s.woff2 +0 -0
- package/dist/preview/.next/static/media/bb6462617151f6b7-s.p.otf +0 -0
- package/dist/preview/.next/static/media/cf6daef822ab0142-s.p.otf +0 -0
- package/dist/preview/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
- package/dist/preview/.next/static/media/e4051546b3043204-s.p.otf +0 -0
- package/dist/preview/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
- package/dist/preview/.next/static/media/logo.2ce2a759.png +0 -0
- package/dist/preview/.next/static/yxjkw7Y7HRLmRWkl3S43z/_buildManifest.js +0 -1
- package/dist/preview/.next/static/yxjkw7Y7HRLmRWkl3S43z/_ssgManifest.js +0 -1
- package/dist/preview/.next/trace +0 -27
- package/dist/preview/.next/types/app/layout.ts +0 -84
- package/dist/preview/.next/types/app/page.ts +0 -84
- package/dist/preview/.next/types/app/preview/[...slug]/page.ts +0 -84
- package/dist/preview/.next/types/cache-life.d.ts +0 -141
- package/dist/preview/.next/types/package.json +0 -1
- package/module-punycode.d.ts +0 -3
- package/next-env.d.ts +0 -5
- package/next.config.js +0 -22
- package/postcss.config.js +0 -8
- package/scripts/build-preview-server.mjs +0 -33
- package/scripts/fill-caniemail-data.mjs +0 -36
- package/src/actions/email-validation/caniemail-data.ts +0 -85993
- package/src/actions/email-validation/check-compatibility.ts +0 -333
- package/src/actions/email-validation/check-images.spec.tsx +0 -100
- package/src/actions/email-validation/check-images.ts +0 -160
- package/src/actions/email-validation/check-links.spec.tsx +0 -113
- package/src/actions/email-validation/check-links.ts +0 -113
- package/src/actions/email-validation/get-code-location-from-ast-element.ts +0 -18
- package/src/actions/email-validation/quick-fetch.ts +0 -14
- package/src/actions/get-email-path-from-slug.ts +0 -32
- package/src/actions/get-emails-directory-metadata-action.ts +0 -19
- package/src/actions/render-email-by-path.tsx +0 -121
- package/src/animated-icons-data/help.json +0 -1082
- package/src/animated-icons-data/link.json +0 -1309
- package/src/animated-icons-data/load.json +0 -443
- package/src/animated-icons-data/mail.json +0 -1320
- package/src/app/env.ts +0 -15
- package/src/app/favicon.ico +0 -0
- package/src/app/fonts/SFMono/SFMonoBold.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoBoldItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoHeavy.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoHeavyItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoLight.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoLightItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoMedium.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoMediumItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoRegular.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoRegularItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoSemibold.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoSemiboldItalic.otf +0 -0
- package/src/app/fonts.ts +0 -39
- package/src/app/globals.css +0 -15
- package/src/app/layout.tsx +0 -43
- package/src/app/logo.png +0 -0
- package/src/app/page.tsx +0 -46
- package/src/app/preview/[...slug]/page.tsx +0 -157
- package/src/app/preview/[...slug]/preview.tsx +0 -216
- package/src/app/preview/[...slug]/rendering-error.tsx +0 -40
- package/src/commands/testing/out/magic-links/aws-verify-email.html +0 -165
- package/src/commands/testing/out/magic-links/linear-login-code.html +0 -90
- package/src/commands/testing/out/magic-links/notion-magic-link.html +0 -76
- package/src/commands/testing/out/magic-links/plaid-verify-identity.html +0 -78
- package/src/commands/testing/out/magic-links/raycast-magic-link.html +0 -91
- package/src/commands/testing/out/magic-links/slack-confirm.html +0 -240
- package/src/commands/testing/out/newsletters/codepen-challengers.html +0 -548
- package/src/commands/testing/out/newsletters/google-play-policy-update.html +0 -339
- package/src/commands/testing/out/newsletters/stack-overflow-tips.html +0 -231
- package/src/commands/testing/out/notifications/github-access-token.html +0 -104
- package/src/commands/testing/out/notifications/papermark-year-in-review.html +0 -317
- package/src/commands/testing/out/notifications/vercel-invite-user.html +0 -171
- package/src/commands/testing/out/notifications/yelp-recent-login.html +0 -195
- package/src/commands/testing/out/receipts/apple-receipt.html +0 -677
- package/src/commands/testing/out/receipts/nike-receipt.html +0 -724
- package/src/commands/testing/out/reset-password/dropbox-reset-password.html +0 -98
- package/src/commands/testing/out/reset-password/twitch-reset-password.html +0 -220
- package/src/commands/testing/out/reviews/airbnb-review.html +0 -206
- package/src/commands/testing/out/reviews/amazon-review.html +0 -356
- package/src/commands/testing/out/static/airbnb-logo.png +0 -0
- package/src/commands/testing/out/static/airbnb-review-user.jpg +0 -0
- package/src/commands/testing/out/static/amazon-book.jpg +0 -0
- package/src/commands/testing/out/static/amazon-facebook.jpg +0 -0
- package/src/commands/testing/out/static/amazon-instagram.jpg +0 -0
- package/src/commands/testing/out/static/amazon-logo.png +0 -0
- package/src/commands/testing/out/static/amazon-prime-logo.png +0 -0
- package/src/commands/testing/out/static/amazon-rating.gif +0 -0
- package/src/commands/testing/out/static/amazon-twitter.jpg +0 -0
- package/src/commands/testing/out/static/apple-card-icon.png +0 -0
- package/src/commands/testing/out/static/apple-hbo-max-icon.jpeg +0 -0
- package/src/commands/testing/out/static/apple-logo.png +0 -0
- package/src/commands/testing/out/static/apple-wallet.png +0 -0
- package/src/commands/testing/out/static/aws-logo.png +0 -0
- package/src/commands/testing/out/static/codepen-challengers.png +0 -0
- package/src/commands/testing/out/static/codepen-cube.png +0 -0
- package/src/commands/testing/out/static/codepen-pro.png +0 -0
- package/src/commands/testing/out/static/dropbox-logo.png +0 -0
- package/src/commands/testing/out/static/github.png +0 -0
- package/src/commands/testing/out/static/google-play-academy.png +0 -0
- package/src/commands/testing/out/static/google-play-chat.png +0 -0
- package/src/commands/testing/out/static/google-play-footer.png +0 -0
- package/src/commands/testing/out/static/google-play-header.png +0 -0
- package/src/commands/testing/out/static/google-play-icon.png +0 -0
- package/src/commands/testing/out/static/google-play-logo.png +0 -0
- package/src/commands/testing/out/static/google-play-pl.png +0 -0
- package/src/commands/testing/out/static/google-play.png +0 -0
- package/src/commands/testing/out/static/koala-logo.png +0 -0
- package/src/commands/testing/out/static/linear-logo.png +0 -0
- package/src/commands/testing/out/static/netlify-logo.png +0 -0
- package/src/commands/testing/out/static/nike-logo.png +0 -0
- package/src/commands/testing/out/static/nike-phone.png +0 -0
- package/src/commands/testing/out/static/nike-product.png +0 -0
- package/src/commands/testing/out/static/nike-recomendation-1.png +0 -0
- package/src/commands/testing/out/static/nike-recomendation-2.png +0 -0
- package/src/commands/testing/out/static/nike-recomendation-3.png +0 -0
- package/src/commands/testing/out/static/nike-recomendation-4.png +0 -0
- package/src/commands/testing/out/static/notion-logo.png +0 -0
- package/src/commands/testing/out/static/plaid-logo.png +0 -0
- package/src/commands/testing/out/static/raycast-bg.png +0 -0
- package/src/commands/testing/out/static/raycast-logo.png +0 -0
- package/src/commands/testing/out/static/slack-facebook.png +0 -0
- package/src/commands/testing/out/static/slack-linkedin.png +0 -0
- package/src/commands/testing/out/static/slack-logo.png +0 -0
- package/src/commands/testing/out/static/slack-twitter.png +0 -0
- package/src/commands/testing/out/static/stack-overflow-header.png +0 -0
- package/src/commands/testing/out/static/stack-overflow-logo-sm.png +0 -0
- package/src/commands/testing/out/static/stack-overflow-logo.png +0 -0
- package/src/commands/testing/out/static/stripe-logo.png +0 -0
- package/src/commands/testing/out/static/twitch-icon-facebook.png +0 -0
- package/src/commands/testing/out/static/twitch-icon-twitter.png +0 -0
- package/src/commands/testing/out/static/twitch-logo.png +0 -0
- package/src/commands/testing/out/static/vercel-arrow.png +0 -0
- package/src/commands/testing/out/static/vercel-logo.png +0 -0
- package/src/commands/testing/out/static/vercel-team.png +0 -0
- package/src/commands/testing/out/static/vercel-user.png +0 -0
- package/src/commands/testing/out/static/yelp-footer.png +0 -0
- package/src/commands/testing/out/static/yelp-header.png +0 -0
- package/src/commands/testing/out/static/yelp-logo.png +0 -0
- package/src/commands/testing/out/welcome/koala-welcome.html +0 -90
- package/src/commands/testing/out/welcome/netlify-welcome.html +0 -199
- package/src/commands/testing/out/welcome/stripe-welcome.html +0 -153
- package/src/components/button.tsx +0 -101
- package/src/components/code-container.tsx +0 -164
- package/src/components/code-snippet.tsx +0 -9
- package/src/components/code.tsx +0 -184
- package/src/components/heading.tsx +0 -113
- package/src/components/icons/icon-arrow-down.tsx +0 -16
- package/src/components/icons/icon-base.tsx +0 -26
- package/src/components/icons/icon-bug.tsx +0 -19
- package/src/components/icons/icon-button.tsx +0 -23
- package/src/components/icons/icon-check.tsx +0 -19
- package/src/components/icons/icon-clipboard.tsx +0 -40
- package/src/components/icons/icon-download.tsx +0 -19
- package/src/components/icons/icon-email.tsx +0 -18
- package/src/components/icons/icon-file.tsx +0 -19
- package/src/components/icons/icon-folder-open.tsx +0 -19
- package/src/components/icons/icon-folder.tsx +0 -18
- package/src/components/icons/icon-hide-sidebar.tsx +0 -23
- package/src/components/icons/icon-image.tsx +0 -19
- package/src/components/icons/icon-info.tsx +0 -18
- package/src/components/icons/icon-link.tsx +0 -14
- package/src/components/icons/icon-monitor.tsx +0 -19
- package/src/components/icons/icon-phone.tsx +0 -26
- package/src/components/icons/icon-reload.tsx +0 -18
- package/src/components/icons/icon-source.tsx +0 -19
- package/src/components/icons/icon-stamp.tsx +0 -14
- package/src/components/icons/icon-warning.tsx +0 -31
- package/src/components/index.ts +0 -7
- package/src/components/logo.tsx +0 -63
- package/src/components/resizable-wrapper.tsx +0 -173
- package/src/components/send.tsx +0 -134
- package/src/components/shell.tsx +0 -95
- package/src/components/sidebar/file-tree-directory-children.tsx +0 -134
- package/src/components/sidebar/file-tree-directory.tsx +0 -92
- package/src/components/sidebar/file-tree.tsx +0 -31
- package/src/components/sidebar/index.ts +0 -1
- package/src/components/sidebar/sidebar.tsx +0 -43
- package/src/components/text.tsx +0 -99
- package/src/components/toolbar/checking-results.tsx +0 -150
- package/src/components/toolbar/code-preview-line-link.tsx +0 -40
- package/src/components/toolbar/compatibility.tsx +0 -113
- package/src/components/toolbar/linter.tsx +0 -278
- package/src/components/toolbar/results.tsx +0 -51
- package/src/components/toolbar/spam-assassin.tsx +0 -155
- package/src/components/toolbar/toolbar-button.tsx +0 -52
- package/src/components/toolbar/use-cached-state.ts +0 -33
- package/src/components/toolbar.tsx +0 -349
- package/src/components/tooltip-content.tsx +0 -31
- package/src/components/tooltip.tsx +0 -19
- package/src/components/topbar/active-view-toggle-group.tsx +0 -86
- package/src/components/topbar/view-size-controls.tsx +0 -247
- package/src/components/topbar.tsx +0 -59
- package/src/contexts/emails.tsx +0 -59
- package/src/contexts/fragment-identifier.tsx +0 -48
- package/src/contexts/preview.tsx +0 -79
- package/src/hooks/use-clamped-state.ts +0 -24
- package/src/hooks/use-email-rendering-result.ts +0 -58
- package/src/hooks/use-fragment-identifier.ts +0 -14
- package/src/hooks/use-hot-reload.ts +0 -31
- package/src/hooks/use-icon-animation.ts +0 -41
- package/src/hooks/use-rendering-metadata.ts +0 -36
- package/src/package/body/dist/index.d.mts +0 -6
- package/src/package/body/dist/index.d.ts +0 -6
- package/src/package/body/dist/index.js +0 -79
- package/src/package/body/dist/index.mjs +0 -45
- package/src/package/button/dist/index.d.mts +0 -6
- package/src/package/button/dist/index.d.ts +0 -6
- package/src/package/button/dist/index.js +0 -252
- package/src/package/button/dist/index.mjs +0 -218
- package/src/package/code-block/dist/index.d.mts +0 -4906
- package/src/package/code-block/dist/index.d.ts +0 -4906
- package/src/package/code-block/dist/index.js +0 -18205
- package/src/package/code-block/dist/index.mjs +0 -18133
- package/src/package/code-inline/dist/index.d.mts +0 -11
- package/src/package/code-inline/dist/index.d.ts +0 -11
- package/src/package/code-inline/dist/index.js +0 -106
- package/src/package/code-inline/dist/index.mjs +0 -72
- package/src/package/column/dist/index.d.mts +0 -6
- package/src/package/column/dist/index.d.ts +0 -6
- package/src/package/column/dist/index.js +0 -79
- package/src/package/column/dist/index.mjs +0 -45
- package/src/package/components/dist/index.d.mts +0 -20
- package/src/package/components/dist/index.d.ts +0 -20
- package/src/package/components/dist/index.js +0 -62
- package/src/package/components/dist/index.mjs +0 -21
- package/src/package/container/dist/index.d.mts +0 -6
- package/src/package/container/dist/index.d.ts +0 -6
- package/src/package/container/dist/index.js +0 -93
- package/src/package/container/dist/index.mjs +0 -59
- package/src/package/font/dist/index.d.mts +0 -25
- package/src/package/font/dist/index.d.ts +0 -25
- package/src/package/font/dist/index.js +0 -55
- package/src/package/font/dist/index.mjs +0 -28
- package/src/package/head/dist/index.d.mts +0 -6
- package/src/package/head/dist/index.d.ts +0 -6
- package/src/package/head/dist/index.js +0 -83
- package/src/package/head/dist/index.mjs +0 -49
- package/src/package/heading/dist/index.d.mts +0 -43
- package/src/package/heading/dist/index.d.ts +0 -43
- package/src/package/heading/dist/index.js +0 -113
- package/src/package/heading/dist/index.mjs +0 -79
- package/src/package/hr/dist/index.d.mts +0 -6
- package/src/package/hr/dist/index.d.ts +0 -6
- package/src/package/hr/dist/index.js +0 -89
- package/src/package/hr/dist/index.mjs +0 -55
- package/src/package/html/dist/index.d.mts +0 -6
- package/src/package/html/dist/index.d.ts +0 -6
- package/src/package/html/dist/index.js +0 -79
- package/src/package/html/dist/index.mjs +0 -45
- package/src/package/img/dist/index.d.mts +0 -6
- package/src/package/img/dist/index.d.ts +0 -6
- package/src/package/img/dist/index.js +0 -94
- package/src/package/img/dist/index.mjs +0 -60
- package/src/package/link/dist/index.d.mts +0 -6
- package/src/package/link/dist/index.d.ts +0 -6
- package/src/package/link/dist/index.js +0 -90
- package/src/package/link/dist/index.mjs +0 -56
- package/src/package/markdown/dist/index.d.mts +0 -15
- package/src/package/markdown/dist/index.d.ts +0 -15
- package/src/package/markdown/dist/index.js +0 -92
- package/src/package/markdown/dist/index.mjs +0 -58
- package/src/package/preview/dist/index.d.mts +0 -12
- package/src/package/preview/dist/index.d.ts +0 -12
- package/src/package/preview/dist/index.js +0 -108
- package/src/package/preview/dist/index.mjs +0 -73
- package/src/package/render/dist/browser/index.d.mts +0 -24
- package/src/package/render/dist/browser/index.d.ts +0 -24
- package/src/package/render/dist/browser/index.js +0 -250
- package/src/package/render/dist/browser/index.mjs +0 -214
- package/src/package/render/dist/index.d.mts +0 -23
- package/src/package/render/dist/index.d.ts +0 -23
- package/src/package/render/dist/index.js +0 -768
- package/src/package/render/dist/index.mjs +0 -733
- package/src/package/render/dist/node/index.d.mts +0 -27
- package/src/package/render/dist/node/index.d.ts +0 -27
- package/src/package/render/dist/node/index.js +0 -212
- package/src/package/render/dist/node/index.mjs +0 -176
- package/src/package/row/dist/index.d.mts +0 -10
- package/src/package/row/dist/index.d.ts +0 -10
- package/src/package/row/dist/index.js +0 -93
- package/src/package/row/dist/index.mjs +0 -59
- package/src/package/section/dist/index.d.mts +0 -6
- package/src/package/section/dist/index.d.ts +0 -6
- package/src/package/section/dist/index.js +0 -93
- package/src/package/section/dist/index.mjs +0 -59
- package/src/package/tailwind/dist/index.d.ts +0 -19
- package/src/package/tailwind/dist/index.js +0 -48
- package/src/package/tailwind/dist/index.mjs +0 -17167
- package/src/package/tailwind/dist/tailwindcss/config.d.ts +0 -376
- package/src/package/tailwind/dist/tailwindcss/generated/.gitkeep +0 -0
- package/src/package/tailwind/dist/tailwindcss/generated/colors.d.ts +0 -298
- package/src/package/tailwind/dist/tailwindcss/generated/corePluginList.d.ts +0 -1
- package/src/package/tailwind/dist/tailwindcss/generated/default-theme.d.ts +0 -397
- package/src/package/tailwind/dist/tailwindcss/index.d.ts +0 -11
- package/src/package/text/dist/index.d.mts +0 -6
- package/src/package/text/dist/index.d.ts +0 -6
- package/src/package/text/dist/index.js +0 -89
- package/src/package/text/dist/index.mjs +0 -55
- package/src/utils/__snapshots__/get-email-component.spec.ts.snap +0 -3
- package/src/utils/caniemail/all-css-properties.ts +0 -358
- package/src/utils/caniemail/ast/__snapshots__/get-object-variables.spec.ts.snap +0 -74
- package/src/utils/caniemail/ast/__snapshots__/get-used-style-properties.spec.ts.snap +0 -24
- package/src/utils/caniemail/ast/get-object-variables.spec.ts +0 -19
- package/src/utils/caniemail/ast/get-object-variables.ts +0 -61
- package/src/utils/caniemail/ast/get-used-style-properties.spec.ts +0 -23
- package/src/utils/caniemail/ast/get-used-style-properties.ts +0 -91
- package/src/utils/caniemail/get-compatibility-stats-for-entry.ts +0 -118
- package/src/utils/caniemail/get-css-functions.ts +0 -25
- package/src/utils/caniemail/get-css-property-names.ts +0 -32
- package/src/utils/caniemail/get-css-property-with-value.ts +0 -14
- package/src/utils/caniemail/get-css-unit.ts +0 -3
- package/src/utils/caniemail/get-element-attributes.ts +0 -7
- package/src/utils/caniemail/get-element-names.ts +0 -20
- package/src/utils/caniemail/tailwind/generate-tailwind-rules.ts +0 -30
- package/src/utils/caniemail/tailwind/get-tailwind-config.ts +0 -187
- package/src/utils/caniemail/tailwind/get-tailwind-metadata.spec.ts +0 -25
- package/src/utils/caniemail/tailwind/get-tailwind-metadata.ts +0 -45
- package/src/utils/caniemail/tailwind/setup-tailwind-context.ts +0 -15
- package/src/utils/cn.ts +0 -6
- package/src/utils/constants.ts +0 -6
- package/src/utils/contains-email-template.spec.ts +0 -124
- package/src/utils/contains-email-template.ts +0 -33
- package/src/utils/copy-text-to-clipboard.ts +0 -7
- package/src/utils/get-email-component.spec.ts +0 -41
- package/src/utils/get-email-component.ts +0 -134
- package/src/utils/get-line-and-column-from-offset.spec.ts +0 -11
- package/src/utils/get-line-and-column-from-offset.ts +0 -11
- package/src/utils/improve-error-with-sourcemap.ts +0 -86
- package/src/utils/js-email-detection.spec.ts +0 -24
- package/src/utils/language-map.ts +0 -7
- package/src/utils/linting.ts +0 -60
- package/src/utils/load-stream.ts +0 -15
- package/src/utils/result.ts +0 -49
- package/src/utils/run-bundled-code.ts +0 -64
- package/src/utils/sanitize.ts +0 -6
- package/src/utils/static-node-modules-for-vm.ts +0 -93
- package/src/utils/testing/js-email-export-default.js +0 -17
- package/src/utils/testing/js-email-test.js +0 -18
- package/src/utils/testing/mdx-email-test.js +0 -128
- package/src/utils/testing/request-response-email.tsx +0 -9
- package/src/utils/types/as.ts +0 -26
- package/src/utils/types/email-template.ts +0 -8
- package/src/utils/types/error-object.ts +0 -11
- package/src/utils/unreachable.ts +0 -8
- package/tailwind-internals.d.ts +0 -133
- package/tailwind.config.ts +0 -99
- /package/src/{components/toolbar/results-table.tsx → utils/preview/hot-reloading/test/some-file.ts} +0 -0
|
@@ -1,443 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"v": "5.12.1",
|
|
3
|
-
"fr": 60,
|
|
4
|
-
"ip": 0,
|
|
5
|
-
"op": 150,
|
|
6
|
-
"w": 144,
|
|
7
|
-
"h": 144,
|
|
8
|
-
"nm": "system-regular-716-spinner-three-dots",
|
|
9
|
-
"ddd": 0,
|
|
10
|
-
"assets": [
|
|
11
|
-
{
|
|
12
|
-
"id": "comp_1",
|
|
13
|
-
"nm": "hover-trapdoor",
|
|
14
|
-
"fr": 60,
|
|
15
|
-
"layers": [
|
|
16
|
-
{
|
|
17
|
-
"ddd": 0,
|
|
18
|
-
"ind": 1,
|
|
19
|
-
"ty": 4,
|
|
20
|
-
"nm": "Ellipse 31",
|
|
21
|
-
"sr": 1,
|
|
22
|
-
"ks": {
|
|
23
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
24
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
25
|
-
"p": {
|
|
26
|
-
"a": 1,
|
|
27
|
-
"k": [
|
|
28
|
-
{
|
|
29
|
-
"i": { "x": 0.085, "y": 1 },
|
|
30
|
-
"o": { "x": 0.333, "y": 0 },
|
|
31
|
-
"t": 46,
|
|
32
|
-
"s": [120, 72, 0],
|
|
33
|
-
"to": [0, 0, 0],
|
|
34
|
-
"ti": [0, 0, 0]
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"i": { "x": 0.085, "y": 0.085 },
|
|
38
|
-
"o": { "x": 0.373, "y": 0.373 },
|
|
39
|
-
"t": 76,
|
|
40
|
-
"s": [120, 23, 0],
|
|
41
|
-
"to": [0, 0, 0],
|
|
42
|
-
"ti": [0, 0, 0]
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"i": { "x": 0.631, "y": 1 },
|
|
46
|
-
"o": { "x": 0.658, "y": 0 },
|
|
47
|
-
"t": 83.572,
|
|
48
|
-
"s": [120, 23, 0],
|
|
49
|
-
"to": [0, 0, 0],
|
|
50
|
-
"ti": [0, 0, 0]
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"i": { "x": 0.352, "y": 1 },
|
|
54
|
-
"o": { "x": 0.333, "y": 0 },
|
|
55
|
-
"t": 104.715,
|
|
56
|
-
"s": [120, 87, 0],
|
|
57
|
-
"to": [0, 0, 0],
|
|
58
|
-
"ti": [0, 0, 0]
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"i": { "x": 0.58, "y": 1 },
|
|
62
|
-
"o": { "x": 0.333, "y": 0 },
|
|
63
|
-
"t": 128.572,
|
|
64
|
-
"s": [120, 67, 0],
|
|
65
|
-
"to": [0, 0, 0],
|
|
66
|
-
"ti": [0, 0, 0]
|
|
67
|
-
},
|
|
68
|
-
{ "t": 150, "s": [120, 72, 0] }
|
|
69
|
-
],
|
|
70
|
-
"ix": 2,
|
|
71
|
-
"l": 2
|
|
72
|
-
},
|
|
73
|
-
"a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
|
|
74
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
75
|
-
},
|
|
76
|
-
"ao": 0,
|
|
77
|
-
"shapes": [
|
|
78
|
-
{
|
|
79
|
-
"ty": "gr",
|
|
80
|
-
"it": [
|
|
81
|
-
{
|
|
82
|
-
"d": 1,
|
|
83
|
-
"ty": "el",
|
|
84
|
-
"s": { "a": 0, "k": [27, 27], "ix": 2 },
|
|
85
|
-
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
86
|
-
"nm": "Ellipse Path 1",
|
|
87
|
-
"mn": "ADBE Vector Shape - Ellipse",
|
|
88
|
-
"hd": false
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"ty": "st",
|
|
92
|
-
"c": {
|
|
93
|
-
"a": 0,
|
|
94
|
-
"k": [0, 0, 0, 1],
|
|
95
|
-
"ix": 3,
|
|
96
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-716-spinner-three-dots').layer('control').effect('primary')('Color');"
|
|
97
|
-
},
|
|
98
|
-
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
99
|
-
"w": { "a": 0, "k": 9, "ix": 5 },
|
|
100
|
-
"lc": 2,
|
|
101
|
-
"lj": 1,
|
|
102
|
-
"ml": 4,
|
|
103
|
-
"bm": 0,
|
|
104
|
-
"nm": ".primary",
|
|
105
|
-
"mn": "ADBE Vector Graphic - Stroke",
|
|
106
|
-
"hd": false,
|
|
107
|
-
"cl": "primary"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"ty": "tr",
|
|
111
|
-
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
112
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
113
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
114
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
115
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
116
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
117
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
118
|
-
"nm": "Transform"
|
|
119
|
-
}
|
|
120
|
-
],
|
|
121
|
-
"nm": "Ellipse 28",
|
|
122
|
-
"np": 2,
|
|
123
|
-
"cix": 2,
|
|
124
|
-
"bm": 0,
|
|
125
|
-
"ix": 1,
|
|
126
|
-
"mn": "ADBE Vector Group",
|
|
127
|
-
"hd": false
|
|
128
|
-
}
|
|
129
|
-
],
|
|
130
|
-
"ip": 0,
|
|
131
|
-
"op": 1800,
|
|
132
|
-
"st": 0,
|
|
133
|
-
"ct": 1,
|
|
134
|
-
"bm": 0
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"ddd": 0,
|
|
138
|
-
"ind": 2,
|
|
139
|
-
"ty": 4,
|
|
140
|
-
"nm": "Ellipse 30",
|
|
141
|
-
"sr": 1,
|
|
142
|
-
"ks": {
|
|
143
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
144
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
145
|
-
"p": {
|
|
146
|
-
"a": 1,
|
|
147
|
-
"k": [
|
|
148
|
-
{
|
|
149
|
-
"i": { "x": 0.085, "y": 1 },
|
|
150
|
-
"o": { "x": 0.333, "y": 0 },
|
|
151
|
-
"t": 23,
|
|
152
|
-
"s": [72, 72, 0],
|
|
153
|
-
"to": [0, 0, 0],
|
|
154
|
-
"ti": [0, 0, 0]
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"i": { "x": 0.085, "y": 0.085 },
|
|
158
|
-
"o": { "x": 0.373, "y": 0.373 },
|
|
159
|
-
"t": 53,
|
|
160
|
-
"s": [72, 23, 0],
|
|
161
|
-
"to": [0, 0, 0],
|
|
162
|
-
"ti": [0, 0, 0]
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"i": { "x": 0.631, "y": 1 },
|
|
166
|
-
"o": { "x": 0.658, "y": 0 },
|
|
167
|
-
"t": 76,
|
|
168
|
-
"s": [72, 23, 0],
|
|
169
|
-
"to": [0, 0, 0],
|
|
170
|
-
"ti": [0, 0, 0]
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"i": { "x": 0.352, "y": 1 },
|
|
174
|
-
"o": { "x": 0.333, "y": 0 },
|
|
175
|
-
"t": 97.143,
|
|
176
|
-
"s": [72, 87, 0],
|
|
177
|
-
"to": [0, 0, 0],
|
|
178
|
-
"ti": [0, 0, 0]
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"i": { "x": 0.58, "y": 1 },
|
|
182
|
-
"o": { "x": 0.333, "y": 0 },
|
|
183
|
-
"t": 121,
|
|
184
|
-
"s": [72, 67, 0],
|
|
185
|
-
"to": [0, 0, 0],
|
|
186
|
-
"ti": [0, 0, 0]
|
|
187
|
-
},
|
|
188
|
-
{ "t": 142.427734375, "s": [72, 72, 0] }
|
|
189
|
-
],
|
|
190
|
-
"ix": 2,
|
|
191
|
-
"l": 2
|
|
192
|
-
},
|
|
193
|
-
"a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
|
|
194
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
195
|
-
},
|
|
196
|
-
"ao": 0,
|
|
197
|
-
"shapes": [
|
|
198
|
-
{
|
|
199
|
-
"ty": "gr",
|
|
200
|
-
"it": [
|
|
201
|
-
{
|
|
202
|
-
"d": 1,
|
|
203
|
-
"ty": "el",
|
|
204
|
-
"s": { "a": 0, "k": [27, 27], "ix": 2 },
|
|
205
|
-
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
206
|
-
"nm": "Ellipse Path 1",
|
|
207
|
-
"mn": "ADBE Vector Shape - Ellipse",
|
|
208
|
-
"hd": false
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"ty": "st",
|
|
212
|
-
"c": {
|
|
213
|
-
"a": 0,
|
|
214
|
-
"k": [0, 0, 0, 1],
|
|
215
|
-
"ix": 3,
|
|
216
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-716-spinner-three-dots').layer('control').effect('primary')('Color');"
|
|
217
|
-
},
|
|
218
|
-
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
219
|
-
"w": { "a": 0, "k": 9, "ix": 5 },
|
|
220
|
-
"lc": 2,
|
|
221
|
-
"lj": 1,
|
|
222
|
-
"ml": 4,
|
|
223
|
-
"bm": 0,
|
|
224
|
-
"nm": ".primary",
|
|
225
|
-
"mn": "ADBE Vector Graphic - Stroke",
|
|
226
|
-
"hd": false,
|
|
227
|
-
"cl": "primary"
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"ty": "tr",
|
|
231
|
-
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
232
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
233
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
234
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
235
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
236
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
237
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
238
|
-
"nm": "Transform"
|
|
239
|
-
}
|
|
240
|
-
],
|
|
241
|
-
"nm": "Ellipse 28",
|
|
242
|
-
"np": 2,
|
|
243
|
-
"cix": 2,
|
|
244
|
-
"bm": 0,
|
|
245
|
-
"ix": 1,
|
|
246
|
-
"mn": "ADBE Vector Group",
|
|
247
|
-
"hd": false
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
"ip": 0,
|
|
251
|
-
"op": 1800,
|
|
252
|
-
"st": 0,
|
|
253
|
-
"ct": 1,
|
|
254
|
-
"bm": 0
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
"ddd": 0,
|
|
258
|
-
"ind": 3,
|
|
259
|
-
"ty": 4,
|
|
260
|
-
"nm": "Ellipse 29",
|
|
261
|
-
"sr": 1,
|
|
262
|
-
"ks": {
|
|
263
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
264
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
265
|
-
"p": {
|
|
266
|
-
"a": 1,
|
|
267
|
-
"k": [
|
|
268
|
-
{
|
|
269
|
-
"i": { "x": 0.085, "y": 1 },
|
|
270
|
-
"o": { "x": 0.333, "y": 0 },
|
|
271
|
-
"t": 0,
|
|
272
|
-
"s": [24, 72, 0],
|
|
273
|
-
"to": [0, 0, 0],
|
|
274
|
-
"ti": [0, 0, 0]
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"i": { "x": 0.085, "y": 0.085 },
|
|
278
|
-
"o": { "x": 0.373, "y": 0.373 },
|
|
279
|
-
"t": 30,
|
|
280
|
-
"s": [24, 23, 0],
|
|
281
|
-
"to": [0, 0, 0],
|
|
282
|
-
"ti": [0, 0, 0]
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"i": { "x": 0.631, "y": 1 },
|
|
286
|
-
"o": { "x": 0.658, "y": 0 },
|
|
287
|
-
"t": 70.572,
|
|
288
|
-
"s": [24, 23, 0],
|
|
289
|
-
"to": [0, 0, 0],
|
|
290
|
-
"ti": [0, 0, 0]
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"i": { "x": 0.352, "y": 1 },
|
|
294
|
-
"o": { "x": 0.333, "y": 0 },
|
|
295
|
-
"t": 91.715,
|
|
296
|
-
"s": [24, 87, 0],
|
|
297
|
-
"to": [0, 0, 0],
|
|
298
|
-
"ti": [0, 0, 0]
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"i": { "x": 0.58, "y": 1 },
|
|
302
|
-
"o": { "x": 0.333, "y": 0 },
|
|
303
|
-
"t": 115.572,
|
|
304
|
-
"s": [24, 67, 0],
|
|
305
|
-
"to": [0, 0, 0],
|
|
306
|
-
"ti": [0, 0, 0]
|
|
307
|
-
},
|
|
308
|
-
{ "t": 137, "s": [24, 72, 0] }
|
|
309
|
-
],
|
|
310
|
-
"ix": 2,
|
|
311
|
-
"l": 2
|
|
312
|
-
},
|
|
313
|
-
"a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
|
|
314
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
315
|
-
},
|
|
316
|
-
"ao": 0,
|
|
317
|
-
"shapes": [
|
|
318
|
-
{
|
|
319
|
-
"ty": "gr",
|
|
320
|
-
"it": [
|
|
321
|
-
{
|
|
322
|
-
"d": 1,
|
|
323
|
-
"ty": "el",
|
|
324
|
-
"s": { "a": 0, "k": [27, 27], "ix": 2 },
|
|
325
|
-
"p": { "a": 0, "k": [0, 0], "ix": 3 },
|
|
326
|
-
"nm": "Ellipse Path 1",
|
|
327
|
-
"mn": "ADBE Vector Shape - Ellipse",
|
|
328
|
-
"hd": false
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"ty": "st",
|
|
332
|
-
"c": {
|
|
333
|
-
"a": 0,
|
|
334
|
-
"k": [0, 0, 0, 1],
|
|
335
|
-
"ix": 3,
|
|
336
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-716-spinner-three-dots').layer('control').effect('primary')('Color');"
|
|
337
|
-
},
|
|
338
|
-
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
339
|
-
"w": { "a": 0, "k": 9, "ix": 5 },
|
|
340
|
-
"lc": 2,
|
|
341
|
-
"lj": 1,
|
|
342
|
-
"ml": 4,
|
|
343
|
-
"bm": 0,
|
|
344
|
-
"nm": ".primary",
|
|
345
|
-
"mn": "ADBE Vector Graphic - Stroke",
|
|
346
|
-
"hd": false,
|
|
347
|
-
"cl": "primary"
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"ty": "tr",
|
|
351
|
-
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
352
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
353
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
354
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
355
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
356
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
357
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
358
|
-
"nm": "Transform"
|
|
359
|
-
}
|
|
360
|
-
],
|
|
361
|
-
"nm": "Ellipse 28",
|
|
362
|
-
"np": 2,
|
|
363
|
-
"cix": 2,
|
|
364
|
-
"bm": 0,
|
|
365
|
-
"ix": 1,
|
|
366
|
-
"mn": "ADBE Vector Group",
|
|
367
|
-
"hd": false
|
|
368
|
-
}
|
|
369
|
-
],
|
|
370
|
-
"ip": 0,
|
|
371
|
-
"op": 1799,
|
|
372
|
-
"st": -1,
|
|
373
|
-
"ct": 1,
|
|
374
|
-
"bm": 0
|
|
375
|
-
}
|
|
376
|
-
]
|
|
377
|
-
}
|
|
378
|
-
],
|
|
379
|
-
"layers": [
|
|
380
|
-
{
|
|
381
|
-
"ddd": 0,
|
|
382
|
-
"ind": 1,
|
|
383
|
-
"ty": 3,
|
|
384
|
-
"nm": "control",
|
|
385
|
-
"sr": 1,
|
|
386
|
-
"ks": {
|
|
387
|
-
"o": { "a": 0, "k": 0, "ix": 11 },
|
|
388
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
389
|
-
"p": { "a": 0, "k": [0, 0], "ix": 2, "l": 2 },
|
|
390
|
-
"a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
|
|
391
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
392
|
-
},
|
|
393
|
-
"ao": 0,
|
|
394
|
-
"ef": [
|
|
395
|
-
{
|
|
396
|
-
"ty": 5,
|
|
397
|
-
"nm": "primary",
|
|
398
|
-
"np": 3,
|
|
399
|
-
"mn": "ADBE Color Control",
|
|
400
|
-
"ix": 1,
|
|
401
|
-
"en": 1,
|
|
402
|
-
"ef": [
|
|
403
|
-
{
|
|
404
|
-
"ty": 2,
|
|
405
|
-
"nm": "Color",
|
|
406
|
-
"mn": "ADBE Color Control-0001",
|
|
407
|
-
"ix": 1,
|
|
408
|
-
"v": { "a": 0, "k": [0, 0, 0], "ix": 1 }
|
|
409
|
-
}
|
|
410
|
-
]
|
|
411
|
-
}
|
|
412
|
-
],
|
|
413
|
-
"ip": 0,
|
|
414
|
-
"op": 2112,
|
|
415
|
-
"st": 0,
|
|
416
|
-
"bm": 0
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
"ddd": 0,
|
|
420
|
-
"ind": 3,
|
|
421
|
-
"ty": 0,
|
|
422
|
-
"nm": "hover-trapdoor",
|
|
423
|
-
"refId": "comp_1",
|
|
424
|
-
"sr": 1,
|
|
425
|
-
"ks": {
|
|
426
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
427
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
428
|
-
"p": { "a": 0, "k": [72, 72, 0], "ix": 2, "l": 2 },
|
|
429
|
-
"a": { "a": 0, "k": [72, 72, 0], "ix": 1, "l": 2 },
|
|
430
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
431
|
-
},
|
|
432
|
-
"ao": 0,
|
|
433
|
-
"w": 144,
|
|
434
|
-
"h": 144,
|
|
435
|
-
"ip": 0,
|
|
436
|
-
"op": 160,
|
|
437
|
-
"st": 0,
|
|
438
|
-
"bm": 0
|
|
439
|
-
}
|
|
440
|
-
],
|
|
441
|
-
"markers": [{ "tm": 0, "cm": "default:hover-trapdoor", "dr": 150 }],
|
|
442
|
-
"props": {}
|
|
443
|
-
}
|