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,1082 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"v": "5.12.1",
|
|
3
|
-
"fr": 60,
|
|
4
|
-
"ip": 0,
|
|
5
|
-
"op": 60,
|
|
6
|
-
"w": 500,
|
|
7
|
-
"h": 500,
|
|
8
|
-
"nm": "system-regular-19-book",
|
|
9
|
-
"ddd": 0,
|
|
10
|
-
"assets": [
|
|
11
|
-
{
|
|
12
|
-
"id": "comp_1",
|
|
13
|
-
"nm": "hover-book",
|
|
14
|
-
"fr": 60,
|
|
15
|
-
"layers": [
|
|
16
|
-
{
|
|
17
|
-
"ddd": 0,
|
|
18
|
-
"ind": 1,
|
|
19
|
-
"ty": 3,
|
|
20
|
-
"nm": "NULL ",
|
|
21
|
-
"sr": 1,
|
|
22
|
-
"ks": {
|
|
23
|
-
"o": { "a": 0, "k": 0, "ix": 11 },
|
|
24
|
-
"r": {
|
|
25
|
-
"a": 1,
|
|
26
|
-
"k": [
|
|
27
|
-
{
|
|
28
|
-
"i": { "x": [0.4], "y": [1] },
|
|
29
|
-
"o": { "x": [0.333], "y": [0] },
|
|
30
|
-
"t": 1,
|
|
31
|
-
"s": [0]
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"i": { "x": [0.4], "y": [1] },
|
|
35
|
-
"o": { "x": [0.6], "y": [0] },
|
|
36
|
-
"t": 13,
|
|
37
|
-
"s": [9]
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"i": { "x": [0.667], "y": [1] },
|
|
41
|
-
"o": { "x": [0.6], "y": [0] },
|
|
42
|
-
"t": 29,
|
|
43
|
-
"s": [-11]
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"i": { "x": [0.667], "y": [1] },
|
|
47
|
-
"o": { "x": [0.167], "y": [0] },
|
|
48
|
-
"t": 51,
|
|
49
|
-
"s": [5]
|
|
50
|
-
},
|
|
51
|
-
{ "t": 60, "s": [0] }
|
|
52
|
-
],
|
|
53
|
-
"ix": 10
|
|
54
|
-
},
|
|
55
|
-
"p": {
|
|
56
|
-
"a": 1,
|
|
57
|
-
"k": [
|
|
58
|
-
{
|
|
59
|
-
"i": { "x": 0.4, "y": 1 },
|
|
60
|
-
"o": { "x": 0.333, "y": 0 },
|
|
61
|
-
"t": 1,
|
|
62
|
-
"s": [143, 379, 0],
|
|
63
|
-
"to": [0, 0, 0],
|
|
64
|
-
"ti": [0, 0, 0]
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"i": { "x": 0.4, "y": 1 },
|
|
68
|
-
"o": { "x": 0.6, "y": 0 },
|
|
69
|
-
"t": 13,
|
|
70
|
-
"s": [176, 379, 0],
|
|
71
|
-
"to": [0, 0, 0],
|
|
72
|
-
"ti": [0, 0, 0]
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"i": { "x": 0.667, "y": 1 },
|
|
76
|
-
"o": { "x": 0.6, "y": 0 },
|
|
77
|
-
"t": 29,
|
|
78
|
-
"s": [114, 379, 0],
|
|
79
|
-
"to": [0, 0, 0],
|
|
80
|
-
"ti": [0, 0, 0]
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"i": { "x": 0.667, "y": 1 },
|
|
84
|
-
"o": { "x": 0.167, "y": 0 },
|
|
85
|
-
"t": 51,
|
|
86
|
-
"s": [157, 379, 0],
|
|
87
|
-
"to": [0, 0, 0],
|
|
88
|
-
"ti": [0, 0, 0]
|
|
89
|
-
},
|
|
90
|
-
{ "t": 60, "s": [143, 379, 0] }
|
|
91
|
-
],
|
|
92
|
-
"ix": 2,
|
|
93
|
-
"l": 2
|
|
94
|
-
},
|
|
95
|
-
"a": { "a": 0, "k": [50, 50, 0], "ix": 1, "l": 2 },
|
|
96
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
97
|
-
},
|
|
98
|
-
"ao": 0,
|
|
99
|
-
"ip": 1,
|
|
100
|
-
"op": 300,
|
|
101
|
-
"st": 0,
|
|
102
|
-
"bm": 0
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"ddd": 0,
|
|
106
|
-
"ind": 2,
|
|
107
|
-
"ty": 4,
|
|
108
|
-
"nm": ".primary.design",
|
|
109
|
-
"cl": "primary design",
|
|
110
|
-
"parent": 1,
|
|
111
|
-
"sr": 1,
|
|
112
|
-
"ks": {
|
|
113
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
114
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
115
|
-
"p": { "a": 0, "k": [157.013, -63.881, 0], "ix": 2, "l": 2 },
|
|
116
|
-
"a": { "a": 0, "k": [250.013, 265.119, 0], "ix": 1, "l": 2 },
|
|
117
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
118
|
-
},
|
|
119
|
-
"ao": 0,
|
|
120
|
-
"shapes": [
|
|
121
|
-
{
|
|
122
|
-
"ty": "gr",
|
|
123
|
-
"it": [
|
|
124
|
-
{
|
|
125
|
-
"ind": 0,
|
|
126
|
-
"ty": "sh",
|
|
127
|
-
"ix": 1,
|
|
128
|
-
"ks": {
|
|
129
|
-
"a": 0,
|
|
130
|
-
"k": {
|
|
131
|
-
"i": [
|
|
132
|
-
[0, 0],
|
|
133
|
-
[-31.641, 0],
|
|
134
|
-
[0, 0],
|
|
135
|
-
[0, 0],
|
|
136
|
-
[0, 0],
|
|
137
|
-
[11.51, 0],
|
|
138
|
-
[0, 0],
|
|
139
|
-
[0, -34.52],
|
|
140
|
-
[0, 0]
|
|
141
|
-
],
|
|
142
|
-
"o": [
|
|
143
|
-
[0, -31.641],
|
|
144
|
-
[0, 0],
|
|
145
|
-
[0, 0],
|
|
146
|
-
[0, 0],
|
|
147
|
-
[0, -11.51],
|
|
148
|
-
[0, 0],
|
|
149
|
-
[-34.53, 0],
|
|
150
|
-
[0, 0],
|
|
151
|
-
[0, 0]
|
|
152
|
-
],
|
|
153
|
-
"v": [
|
|
154
|
-
[-151.042, 164.074],
|
|
155
|
-
[-93.751, 106.782],
|
|
156
|
-
[151.042, 106.782],
|
|
157
|
-
[151.042, 106.786],
|
|
158
|
-
[151.042, -143.234],
|
|
159
|
-
[130.202, -164.074],
|
|
160
|
-
[-88.528, -164.074],
|
|
161
|
-
[-151.038, -101.564],
|
|
162
|
-
[-151.038, 160.816]
|
|
163
|
-
],
|
|
164
|
-
"c": true
|
|
165
|
-
},
|
|
166
|
-
"ix": 2
|
|
167
|
-
},
|
|
168
|
-
"nm": "Path 1",
|
|
169
|
-
"mn": "ADBE Vector Shape - Group",
|
|
170
|
-
"hd": false
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"ty": "tm",
|
|
174
|
-
"s": { "a": 0, "k": 0, "ix": 1 },
|
|
175
|
-
"e": { "a": 0, "k": 100, "ix": 2 },
|
|
176
|
-
"o": { "a": 0, "k": 0, "ix": 3 },
|
|
177
|
-
"m": 1,
|
|
178
|
-
"ix": 2,
|
|
179
|
-
"nm": "Trim Paths 1",
|
|
180
|
-
"mn": "ADBE Vector Filter - Trim",
|
|
181
|
-
"hd": false
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"ty": "tm",
|
|
185
|
-
"s": { "a": 0, "k": 0, "ix": 1 },
|
|
186
|
-
"e": { "a": 0, "k": 100, "ix": 2 },
|
|
187
|
-
"o": { "a": 0, "k": 0, "ix": 3 },
|
|
188
|
-
"m": 1,
|
|
189
|
-
"ix": 3,
|
|
190
|
-
"nm": "Trim Paths 2",
|
|
191
|
-
"mn": "ADBE Vector Filter - Trim",
|
|
192
|
-
"hd": false
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"ty": "st",
|
|
196
|
-
"c": {
|
|
197
|
-
"a": 0,
|
|
198
|
-
"k": [0.937, 0.969, 1, 1],
|
|
199
|
-
"ix": 3,
|
|
200
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-19-book').layer('control').effect('primary')('Color');"
|
|
201
|
-
},
|
|
202
|
-
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
203
|
-
"w": { "a": 0, "k": 31.3, "ix": 5 },
|
|
204
|
-
"lc": 2,
|
|
205
|
-
"lj": 2,
|
|
206
|
-
"bm": 0,
|
|
207
|
-
"nm": ".primary",
|
|
208
|
-
"mn": "ADBE Vector Graphic - Stroke",
|
|
209
|
-
"hd": false,
|
|
210
|
-
"cl": "primary"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"ty": "tr",
|
|
214
|
-
"p": { "a": 0, "k": [250.018, 221.345], "ix": 2 },
|
|
215
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
216
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
217
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
218
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
219
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
220
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
221
|
-
"nm": "Transform"
|
|
222
|
-
}
|
|
223
|
-
],
|
|
224
|
-
"nm": "Group 1",
|
|
225
|
-
"np": 4,
|
|
226
|
-
"cix": 2,
|
|
227
|
-
"bm": 0,
|
|
228
|
-
"ix": 1,
|
|
229
|
-
"mn": "ADBE Vector Group",
|
|
230
|
-
"hd": false
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"ty": "gr",
|
|
234
|
-
"it": [
|
|
235
|
-
{
|
|
236
|
-
"ind": 0,
|
|
237
|
-
"ty": "sh",
|
|
238
|
-
"ix": 1,
|
|
239
|
-
"ks": {
|
|
240
|
-
"a": 0,
|
|
241
|
-
"k": {
|
|
242
|
-
"i": [[0, 0], [0, 0]],
|
|
243
|
-
"o": [[0, 0], [0, 0]],
|
|
244
|
-
"v": [[-67.709, 0], [67.709, 0]],
|
|
245
|
-
"c": false
|
|
246
|
-
},
|
|
247
|
-
"ix": 2
|
|
248
|
-
},
|
|
249
|
-
"nm": "Path 1",
|
|
250
|
-
"mn": "ADBE Vector Shape - Group",
|
|
251
|
-
"hd": false
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"ty": "st",
|
|
255
|
-
"c": {
|
|
256
|
-
"a": 0,
|
|
257
|
-
"k": [0.937, 0.969, 1, 1],
|
|
258
|
-
"ix": 3,
|
|
259
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-19-book').layer('control').effect('primary')('Color');"
|
|
260
|
-
},
|
|
261
|
-
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
262
|
-
"w": { "a": 0, "k": 31.3, "ix": 5 },
|
|
263
|
-
"lc": 2,
|
|
264
|
-
"lj": 2,
|
|
265
|
-
"bm": 0,
|
|
266
|
-
"nm": ".primary",
|
|
267
|
-
"mn": "ADBE Vector Graphic - Stroke",
|
|
268
|
-
"hd": false,
|
|
269
|
-
"cl": "primary"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"ty": "tr",
|
|
273
|
-
"p": { "a": 0, "k": [250.004, 140.566], "ix": 2 },
|
|
274
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
275
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
276
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
277
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
278
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
279
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
280
|
-
"nm": "Transform"
|
|
281
|
-
}
|
|
282
|
-
],
|
|
283
|
-
"nm": "Group 2",
|
|
284
|
-
"np": 2,
|
|
285
|
-
"cix": 2,
|
|
286
|
-
"bm": 0,
|
|
287
|
-
"ix": 2,
|
|
288
|
-
"mn": "ADBE Vector Group",
|
|
289
|
-
"hd": false
|
|
290
|
-
}
|
|
291
|
-
],
|
|
292
|
-
"ip": 1,
|
|
293
|
-
"op": 60,
|
|
294
|
-
"st": 16,
|
|
295
|
-
"ct": 1,
|
|
296
|
-
"bm": 0
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"ddd": 0,
|
|
300
|
-
"ind": 3,
|
|
301
|
-
"ty": 4,
|
|
302
|
-
"nm": ".primary.design",
|
|
303
|
-
"cl": "primary design",
|
|
304
|
-
"parent": 1,
|
|
305
|
-
"sr": 1,
|
|
306
|
-
"ks": {
|
|
307
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
308
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
309
|
-
"p": { "a": 0, "k": [157.068, -23.371, 0], "ix": 2, "l": 2 },
|
|
310
|
-
"a": { "a": 0, "k": [0.051, -79.791, 0], "ix": 1, "l": 2 },
|
|
311
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
312
|
-
},
|
|
313
|
-
"ao": 0,
|
|
314
|
-
"shapes": [
|
|
315
|
-
{
|
|
316
|
-
"ty": "gr",
|
|
317
|
-
"it": [
|
|
318
|
-
{
|
|
319
|
-
"ind": 0,
|
|
320
|
-
"ty": "sh",
|
|
321
|
-
"ix": 1,
|
|
322
|
-
"ks": {
|
|
323
|
-
"a": 0,
|
|
324
|
-
"k": {
|
|
325
|
-
"i": [
|
|
326
|
-
[0, -31.641],
|
|
327
|
-
[0, 0],
|
|
328
|
-
[-31.641, 0],
|
|
329
|
-
[0, 0],
|
|
330
|
-
[0, 0],
|
|
331
|
-
[0, 0]
|
|
332
|
-
],
|
|
333
|
-
"o": [
|
|
334
|
-
[0, 0],
|
|
335
|
-
[0, 31.641],
|
|
336
|
-
[0, 0],
|
|
337
|
-
[0, 0],
|
|
338
|
-
[0, 0],
|
|
339
|
-
[0, 0]
|
|
340
|
-
],
|
|
341
|
-
"v": [
|
|
342
|
-
[-151.042, 0],
|
|
343
|
-
[-151.042, 0.001],
|
|
344
|
-
[-93.75, 57.292],
|
|
345
|
-
[151.042, 57.292],
|
|
346
|
-
[151.123, -45.284],
|
|
347
|
-
[151.003, -56.411]
|
|
348
|
-
],
|
|
349
|
-
"c": false
|
|
350
|
-
},
|
|
351
|
-
"ix": 2
|
|
352
|
-
},
|
|
353
|
-
"nm": "Path 1",
|
|
354
|
-
"mn": "ADBE Vector Shape - Group",
|
|
355
|
-
"hd": false
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"ty": "tm",
|
|
359
|
-
"s": { "a": 0, "k": 0, "ix": 1 },
|
|
360
|
-
"e": { "a": 0, "k": 100, "ix": 2 },
|
|
361
|
-
"o": { "a": 0, "k": 0, "ix": 3 },
|
|
362
|
-
"m": 1,
|
|
363
|
-
"ix": 2,
|
|
364
|
-
"nm": "Trim Paths 1",
|
|
365
|
-
"mn": "ADBE Vector Filter - Trim",
|
|
366
|
-
"hd": false
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"ty": "st",
|
|
370
|
-
"c": {
|
|
371
|
-
"a": 0,
|
|
372
|
-
"k": [0.937, 0.969, 1, 1],
|
|
373
|
-
"ix": 3,
|
|
374
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-19-book').layer('control').effect('primary')('Color');"
|
|
375
|
-
},
|
|
376
|
-
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
377
|
-
"w": { "a": 0, "k": 31.3, "ix": 5 },
|
|
378
|
-
"lc": 2,
|
|
379
|
-
"lj": 2,
|
|
380
|
-
"bm": 0,
|
|
381
|
-
"nm": ".primary",
|
|
382
|
-
"mn": "ADBE Vector Graphic - Stroke",
|
|
383
|
-
"hd": false,
|
|
384
|
-
"cl": "primary"
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
"ty": "tr",
|
|
388
|
-
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
389
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
390
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
391
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
392
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
393
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
394
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
395
|
-
"nm": "Transform"
|
|
396
|
-
}
|
|
397
|
-
],
|
|
398
|
-
"nm": "Group 1",
|
|
399
|
-
"np": 3,
|
|
400
|
-
"cix": 2,
|
|
401
|
-
"bm": 0,
|
|
402
|
-
"ix": 1,
|
|
403
|
-
"mn": "ADBE Vector Group",
|
|
404
|
-
"hd": false
|
|
405
|
-
}
|
|
406
|
-
],
|
|
407
|
-
"ip": 1,
|
|
408
|
-
"op": 60,
|
|
409
|
-
"st": 16,
|
|
410
|
-
"ct": 1,
|
|
411
|
-
"bm": 0
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"ddd": 0,
|
|
415
|
-
"ind": 4,
|
|
416
|
-
"ty": 4,
|
|
417
|
-
"nm": ".primary.design",
|
|
418
|
-
"cl": "primary design",
|
|
419
|
-
"sr": 1,
|
|
420
|
-
"ks": {
|
|
421
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
422
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
423
|
-
"p": { "a": 0, "k": [250.002, 250.002, 0], "ix": 2, "l": 2 },
|
|
424
|
-
"a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 },
|
|
425
|
-
"s": { "a": 0, "k": [2083, 2083, 100], "ix": 6, "l": 2 }
|
|
426
|
-
},
|
|
427
|
-
"ao": 0,
|
|
428
|
-
"shapes": [
|
|
429
|
-
{
|
|
430
|
-
"ty": "gr",
|
|
431
|
-
"it": [
|
|
432
|
-
{
|
|
433
|
-
"ty": "gr",
|
|
434
|
-
"it": [
|
|
435
|
-
{
|
|
436
|
-
"ind": 0,
|
|
437
|
-
"ty": "sh",
|
|
438
|
-
"ix": 1,
|
|
439
|
-
"ks": {
|
|
440
|
-
"a": 0,
|
|
441
|
-
"k": {
|
|
442
|
-
"i": [
|
|
443
|
-
[0, 0],
|
|
444
|
-
[-1.24, 0],
|
|
445
|
-
[0, 0],
|
|
446
|
-
[0, -0.14],
|
|
447
|
-
[0, 0],
|
|
448
|
-
[0, 0],
|
|
449
|
-
[0.56, -0.41]
|
|
450
|
-
],
|
|
451
|
-
"o": [
|
|
452
|
-
[0, -1.24],
|
|
453
|
-
[0, 0],
|
|
454
|
-
[0.14, 0],
|
|
455
|
-
[0, 0],
|
|
456
|
-
[0, 0],
|
|
457
|
-
[-0.74, 0],
|
|
458
|
-
[0, 0]
|
|
459
|
-
],
|
|
460
|
-
"v": [
|
|
461
|
-
[-6.5, -6.25],
|
|
462
|
-
[-4.25, -8.5],
|
|
463
|
-
[6.25, -8.5],
|
|
464
|
-
[6.5, -8.25],
|
|
465
|
-
[6.5, 3],
|
|
466
|
-
[-4.5, 3],
|
|
467
|
-
[-6.5, 3.64]
|
|
468
|
-
],
|
|
469
|
-
"c": true
|
|
470
|
-
},
|
|
471
|
-
"ix": 2
|
|
472
|
-
},
|
|
473
|
-
"nm": "Path 1",
|
|
474
|
-
"mn": "ADBE Vector Shape - Group",
|
|
475
|
-
"hd": false
|
|
476
|
-
},
|
|
477
|
-
{
|
|
478
|
-
"ind": 1,
|
|
479
|
-
"ty": "sh",
|
|
480
|
-
"ix": 2,
|
|
481
|
-
"ks": {
|
|
482
|
-
"a": 0,
|
|
483
|
-
"k": {
|
|
484
|
-
"i": [
|
|
485
|
-
[0, 0],
|
|
486
|
-
[0, 0],
|
|
487
|
-
[0, 0],
|
|
488
|
-
[0, 1.1],
|
|
489
|
-
[-1.1, 0],
|
|
490
|
-
[0, 0]
|
|
491
|
-
],
|
|
492
|
-
"o": [
|
|
493
|
-
[0, 0],
|
|
494
|
-
[0, 0],
|
|
495
|
-
[-1.1, 0],
|
|
496
|
-
[0, -1.1],
|
|
497
|
-
[0, 0],
|
|
498
|
-
[0, 0]
|
|
499
|
-
],
|
|
500
|
-
"v": [
|
|
501
|
-
[6.5, 6.34],
|
|
502
|
-
[6.5, 8.5],
|
|
503
|
-
[-4.5, 8.5],
|
|
504
|
-
[-6.5, 6.5],
|
|
505
|
-
[-4.5, 4.5],
|
|
506
|
-
[6.5, 4.5]
|
|
507
|
-
],
|
|
508
|
-
"c": true
|
|
509
|
-
},
|
|
510
|
-
"ix": 2
|
|
511
|
-
},
|
|
512
|
-
"nm": "Path 2",
|
|
513
|
-
"mn": "ADBE Vector Shape - Group",
|
|
514
|
-
"hd": false
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"ind": 2,
|
|
518
|
-
"ty": "sh",
|
|
519
|
-
"ix": 3,
|
|
520
|
-
"ks": {
|
|
521
|
-
"a": 0,
|
|
522
|
-
"k": {
|
|
523
|
-
"i": [
|
|
524
|
-
[0.97, 0],
|
|
525
|
-
[0, 0],
|
|
526
|
-
[0, -2.07],
|
|
527
|
-
[0, 0],
|
|
528
|
-
[0, 0],
|
|
529
|
-
[0, -0.05],
|
|
530
|
-
[-1.93, 0],
|
|
531
|
-
[0, 0],
|
|
532
|
-
[0, 0.41],
|
|
533
|
-
[0, 0],
|
|
534
|
-
[0, 0],
|
|
535
|
-
[0, 0]
|
|
536
|
-
],
|
|
537
|
-
"o": [
|
|
538
|
-
[0, 0],
|
|
539
|
-
[-2.07, 0],
|
|
540
|
-
[0, 0],
|
|
541
|
-
[0, 0],
|
|
542
|
-
[-0.01, 0.05],
|
|
543
|
-
[0, 1.93],
|
|
544
|
-
[0, 0],
|
|
545
|
-
[0.42, 0],
|
|
546
|
-
[0, 0],
|
|
547
|
-
[0, 0],
|
|
548
|
-
[0, 0],
|
|
549
|
-
[0, -0.97]
|
|
550
|
-
],
|
|
551
|
-
"v": [
|
|
552
|
-
[6.25, -10],
|
|
553
|
-
[-4.25, -10],
|
|
554
|
-
[-8, -6.25],
|
|
555
|
-
[-8, 6.34],
|
|
556
|
-
[-7.99, 6.34],
|
|
557
|
-
[-8, 6.5],
|
|
558
|
-
[-4.5, 10],
|
|
559
|
-
[7.25, 10],
|
|
560
|
-
[8, 9.25],
|
|
561
|
-
[8, 6.34],
|
|
562
|
-
[8, 3.75],
|
|
563
|
-
[8, -8.25]
|
|
564
|
-
],
|
|
565
|
-
"c": true
|
|
566
|
-
},
|
|
567
|
-
"ix": 2
|
|
568
|
-
},
|
|
569
|
-
"nm": "Path 3",
|
|
570
|
-
"mn": "ADBE Vector Shape - Group",
|
|
571
|
-
"hd": false
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"ty": "fl",
|
|
575
|
-
"c": {
|
|
576
|
-
"a": 0,
|
|
577
|
-
"k": [0.937, 0.969, 1, 1],
|
|
578
|
-
"ix": 4,
|
|
579
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-19-book').layer('control').effect('primary')('Color');"
|
|
580
|
-
},
|
|
581
|
-
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
582
|
-
"r": 1,
|
|
583
|
-
"bm": 0,
|
|
584
|
-
"nm": ".primary",
|
|
585
|
-
"mn": "ADBE Vector Graphic - Fill",
|
|
586
|
-
"hd": false,
|
|
587
|
-
"cl": "primary"
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"ty": "tr",
|
|
591
|
-
"p": { "a": 0, "k": [250, 250], "ix": 2 },
|
|
592
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
593
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
594
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
595
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
596
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
597
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
598
|
-
"nm": "Transform"
|
|
599
|
-
}
|
|
600
|
-
],
|
|
601
|
-
"nm": "Group 1",
|
|
602
|
-
"np": 4,
|
|
603
|
-
"cix": 2,
|
|
604
|
-
"bm": 0,
|
|
605
|
-
"ix": 1,
|
|
606
|
-
"mn": "ADBE Vector Group",
|
|
607
|
-
"hd": false
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"ty": "gr",
|
|
611
|
-
"it": [
|
|
612
|
-
{
|
|
613
|
-
"ind": 0,
|
|
614
|
-
"ty": "sh",
|
|
615
|
-
"ix": 1,
|
|
616
|
-
"ks": {
|
|
617
|
-
"a": 0,
|
|
618
|
-
"k": {
|
|
619
|
-
"i": [
|
|
620
|
-
[-0.41, 0],
|
|
621
|
-
[0, 0],
|
|
622
|
-
[0, 0.41],
|
|
623
|
-
[0.41, 0],
|
|
624
|
-
[0, 0],
|
|
625
|
-
[0, -0.42]
|
|
626
|
-
],
|
|
627
|
-
"o": [
|
|
628
|
-
[0, 0],
|
|
629
|
-
[0.41, 0],
|
|
630
|
-
[0, -0.41],
|
|
631
|
-
[0, 0],
|
|
632
|
-
[-0.41, 0],
|
|
633
|
-
[0, 0.42]
|
|
634
|
-
],
|
|
635
|
-
"v": [
|
|
636
|
-
[-3.25, 0.75],
|
|
637
|
-
[3.25, 0.75],
|
|
638
|
-
[4, 0],
|
|
639
|
-
[3.25, -0.75],
|
|
640
|
-
[-3.25, -0.75],
|
|
641
|
-
[-4, 0]
|
|
642
|
-
],
|
|
643
|
-
"c": true
|
|
644
|
-
},
|
|
645
|
-
"ix": 2
|
|
646
|
-
},
|
|
647
|
-
"nm": "Path 1",
|
|
648
|
-
"mn": "ADBE Vector Shape - Group",
|
|
649
|
-
"hd": false
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"ty": "fl",
|
|
653
|
-
"c": {
|
|
654
|
-
"a": 0,
|
|
655
|
-
"k": [0.937, 0.969, 1, 1],
|
|
656
|
-
"ix": 4,
|
|
657
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-19-book').layer('control').effect('primary')('Color');"
|
|
658
|
-
},
|
|
659
|
-
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
660
|
-
"r": 1,
|
|
661
|
-
"bm": 0,
|
|
662
|
-
"nm": ".primary",
|
|
663
|
-
"mn": "ADBE Vector Graphic - Fill",
|
|
664
|
-
"hd": false,
|
|
665
|
-
"cl": "primary"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"ty": "tr",
|
|
669
|
-
"p": { "a": 0, "k": [250, 244.75], "ix": 2 },
|
|
670
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
671
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
672
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
673
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
674
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
675
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
676
|
-
"nm": "Transform"
|
|
677
|
-
}
|
|
678
|
-
],
|
|
679
|
-
"nm": "Group 2",
|
|
680
|
-
"np": 2,
|
|
681
|
-
"cix": 2,
|
|
682
|
-
"bm": 0,
|
|
683
|
-
"ix": 2,
|
|
684
|
-
"mn": "ADBE Vector Group",
|
|
685
|
-
"hd": false
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"ty": "tr",
|
|
689
|
-
"p": { "a": 0, "k": [250, 244.75], "ix": 2 },
|
|
690
|
-
"a": { "a": 0, "k": [250, 244.75], "ix": 1 },
|
|
691
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
692
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
693
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
694
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
695
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
696
|
-
"nm": "Transform"
|
|
697
|
-
}
|
|
698
|
-
],
|
|
699
|
-
"nm": "Group 1",
|
|
700
|
-
"np": 2,
|
|
701
|
-
"cix": 2,
|
|
702
|
-
"bm": 0,
|
|
703
|
-
"ix": 1,
|
|
704
|
-
"mn": "ADBE Vector Group",
|
|
705
|
-
"hd": false
|
|
706
|
-
}
|
|
707
|
-
],
|
|
708
|
-
"ip": 0,
|
|
709
|
-
"op": 1,
|
|
710
|
-
"st": -60,
|
|
711
|
-
"ct": 1,
|
|
712
|
-
"bm": 0
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"ddd": 0,
|
|
716
|
-
"ind": 5,
|
|
717
|
-
"ty": 4,
|
|
718
|
-
"nm": ".primary.design",
|
|
719
|
-
"cl": "primary design",
|
|
720
|
-
"sr": 1,
|
|
721
|
-
"ks": {
|
|
722
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
723
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
724
|
-
"p": { "a": 0, "k": [250.002, 250.002, 0], "ix": 2, "l": 2 },
|
|
725
|
-
"a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 },
|
|
726
|
-
"s": { "a": 0, "k": [2083, 2083, 100], "ix": 6, "l": 2 }
|
|
727
|
-
},
|
|
728
|
-
"ao": 0,
|
|
729
|
-
"shapes": [
|
|
730
|
-
{
|
|
731
|
-
"ty": "gr",
|
|
732
|
-
"it": [
|
|
733
|
-
{
|
|
734
|
-
"ty": "gr",
|
|
735
|
-
"it": [
|
|
736
|
-
{
|
|
737
|
-
"ind": 0,
|
|
738
|
-
"ty": "sh",
|
|
739
|
-
"ix": 1,
|
|
740
|
-
"ks": {
|
|
741
|
-
"a": 0,
|
|
742
|
-
"k": {
|
|
743
|
-
"i": [
|
|
744
|
-
[0, 0],
|
|
745
|
-
[-1.24, 0],
|
|
746
|
-
[0, 0],
|
|
747
|
-
[0, -0.14],
|
|
748
|
-
[0, 0],
|
|
749
|
-
[0, 0],
|
|
750
|
-
[0.56, -0.41]
|
|
751
|
-
],
|
|
752
|
-
"o": [
|
|
753
|
-
[0, -1.24],
|
|
754
|
-
[0, 0],
|
|
755
|
-
[0.14, 0],
|
|
756
|
-
[0, 0],
|
|
757
|
-
[0, 0],
|
|
758
|
-
[-0.74, 0],
|
|
759
|
-
[0, 0]
|
|
760
|
-
],
|
|
761
|
-
"v": [
|
|
762
|
-
[-6.5, -6.25],
|
|
763
|
-
[-4.25, -8.5],
|
|
764
|
-
[6.25, -8.5],
|
|
765
|
-
[6.5, -8.25],
|
|
766
|
-
[6.5, 3],
|
|
767
|
-
[-4.5, 3],
|
|
768
|
-
[-6.5, 3.64]
|
|
769
|
-
],
|
|
770
|
-
"c": true
|
|
771
|
-
},
|
|
772
|
-
"ix": 2
|
|
773
|
-
},
|
|
774
|
-
"nm": "Path 1",
|
|
775
|
-
"mn": "ADBE Vector Shape - Group",
|
|
776
|
-
"hd": false
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
"ind": 1,
|
|
780
|
-
"ty": "sh",
|
|
781
|
-
"ix": 2,
|
|
782
|
-
"ks": {
|
|
783
|
-
"a": 0,
|
|
784
|
-
"k": {
|
|
785
|
-
"i": [
|
|
786
|
-
[0, 0],
|
|
787
|
-
[0, 0],
|
|
788
|
-
[0, 0],
|
|
789
|
-
[0, 1.1],
|
|
790
|
-
[-1.1, 0],
|
|
791
|
-
[0, 0]
|
|
792
|
-
],
|
|
793
|
-
"o": [
|
|
794
|
-
[0, 0],
|
|
795
|
-
[0, 0],
|
|
796
|
-
[-1.1, 0],
|
|
797
|
-
[0, -1.1],
|
|
798
|
-
[0, 0],
|
|
799
|
-
[0, 0]
|
|
800
|
-
],
|
|
801
|
-
"v": [
|
|
802
|
-
[6.5, 6.34],
|
|
803
|
-
[6.5, 8.5],
|
|
804
|
-
[-4.5, 8.5],
|
|
805
|
-
[-6.5, 6.5],
|
|
806
|
-
[-4.5, 4.5],
|
|
807
|
-
[6.5, 4.5]
|
|
808
|
-
],
|
|
809
|
-
"c": true
|
|
810
|
-
},
|
|
811
|
-
"ix": 2
|
|
812
|
-
},
|
|
813
|
-
"nm": "Path 2",
|
|
814
|
-
"mn": "ADBE Vector Shape - Group",
|
|
815
|
-
"hd": false
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"ind": 2,
|
|
819
|
-
"ty": "sh",
|
|
820
|
-
"ix": 3,
|
|
821
|
-
"ks": {
|
|
822
|
-
"a": 0,
|
|
823
|
-
"k": {
|
|
824
|
-
"i": [
|
|
825
|
-
[0.97, 0],
|
|
826
|
-
[0, 0],
|
|
827
|
-
[0, -2.07],
|
|
828
|
-
[0, 0],
|
|
829
|
-
[0, 0],
|
|
830
|
-
[0, -0.05],
|
|
831
|
-
[-1.93, 0],
|
|
832
|
-
[0, 0],
|
|
833
|
-
[0, 0.41],
|
|
834
|
-
[0, 0],
|
|
835
|
-
[0, 0],
|
|
836
|
-
[0, 0]
|
|
837
|
-
],
|
|
838
|
-
"o": [
|
|
839
|
-
[0, 0],
|
|
840
|
-
[-2.07, 0],
|
|
841
|
-
[0, 0],
|
|
842
|
-
[0, 0],
|
|
843
|
-
[-0.01, 0.05],
|
|
844
|
-
[0, 1.93],
|
|
845
|
-
[0, 0],
|
|
846
|
-
[0.42, 0],
|
|
847
|
-
[0, 0],
|
|
848
|
-
[0, 0],
|
|
849
|
-
[0, 0],
|
|
850
|
-
[0, -0.97]
|
|
851
|
-
],
|
|
852
|
-
"v": [
|
|
853
|
-
[6.25, -10],
|
|
854
|
-
[-4.25, -10],
|
|
855
|
-
[-8, -6.25],
|
|
856
|
-
[-8, 6.34],
|
|
857
|
-
[-7.99, 6.34],
|
|
858
|
-
[-8, 6.5],
|
|
859
|
-
[-4.5, 10],
|
|
860
|
-
[7.25, 10],
|
|
861
|
-
[8, 9.25],
|
|
862
|
-
[8, 6.34],
|
|
863
|
-
[8, 3.75],
|
|
864
|
-
[8, -8.25]
|
|
865
|
-
],
|
|
866
|
-
"c": true
|
|
867
|
-
},
|
|
868
|
-
"ix": 2
|
|
869
|
-
},
|
|
870
|
-
"nm": "Path 3",
|
|
871
|
-
"mn": "ADBE Vector Shape - Group",
|
|
872
|
-
"hd": false
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"ty": "fl",
|
|
876
|
-
"c": {
|
|
877
|
-
"a": 0,
|
|
878
|
-
"k": [0.937, 0.969, 1, 1],
|
|
879
|
-
"ix": 4,
|
|
880
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-19-book').layer('control').effect('primary')('Color');"
|
|
881
|
-
},
|
|
882
|
-
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
883
|
-
"r": 1,
|
|
884
|
-
"bm": 0,
|
|
885
|
-
"nm": ".primary",
|
|
886
|
-
"mn": "ADBE Vector Graphic - Fill",
|
|
887
|
-
"hd": false,
|
|
888
|
-
"cl": "primary"
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
"ty": "tr",
|
|
892
|
-
"p": { "a": 0, "k": [250, 250], "ix": 2 },
|
|
893
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
894
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
895
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
896
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
897
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
898
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
899
|
-
"nm": "Transform"
|
|
900
|
-
}
|
|
901
|
-
],
|
|
902
|
-
"nm": "Group 1",
|
|
903
|
-
"np": 4,
|
|
904
|
-
"cix": 2,
|
|
905
|
-
"bm": 0,
|
|
906
|
-
"ix": 1,
|
|
907
|
-
"mn": "ADBE Vector Group",
|
|
908
|
-
"hd": false
|
|
909
|
-
},
|
|
910
|
-
{
|
|
911
|
-
"ty": "gr",
|
|
912
|
-
"it": [
|
|
913
|
-
{
|
|
914
|
-
"ind": 0,
|
|
915
|
-
"ty": "sh",
|
|
916
|
-
"ix": 1,
|
|
917
|
-
"ks": {
|
|
918
|
-
"a": 0,
|
|
919
|
-
"k": {
|
|
920
|
-
"i": [
|
|
921
|
-
[-0.41, 0],
|
|
922
|
-
[0, 0],
|
|
923
|
-
[0, 0.41],
|
|
924
|
-
[0.41, 0],
|
|
925
|
-
[0, 0],
|
|
926
|
-
[0, -0.42]
|
|
927
|
-
],
|
|
928
|
-
"o": [
|
|
929
|
-
[0, 0],
|
|
930
|
-
[0.41, 0],
|
|
931
|
-
[0, -0.41],
|
|
932
|
-
[0, 0],
|
|
933
|
-
[-0.41, 0],
|
|
934
|
-
[0, 0.42]
|
|
935
|
-
],
|
|
936
|
-
"v": [
|
|
937
|
-
[-3.25, 0.75],
|
|
938
|
-
[3.25, 0.75],
|
|
939
|
-
[4, 0],
|
|
940
|
-
[3.25, -0.75],
|
|
941
|
-
[-3.25, -0.75],
|
|
942
|
-
[-4, 0]
|
|
943
|
-
],
|
|
944
|
-
"c": true
|
|
945
|
-
},
|
|
946
|
-
"ix": 2
|
|
947
|
-
},
|
|
948
|
-
"nm": "Path 1",
|
|
949
|
-
"mn": "ADBE Vector Shape - Group",
|
|
950
|
-
"hd": false
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
"ty": "fl",
|
|
954
|
-
"c": {
|
|
955
|
-
"a": 0,
|
|
956
|
-
"k": [0.937, 0.969, 1, 1],
|
|
957
|
-
"ix": 4,
|
|
958
|
-
"x": "var $bm_rt;\n$bm_rt = comp('system-regular-19-book').layer('control').effect('primary')('Color');"
|
|
959
|
-
},
|
|
960
|
-
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
961
|
-
"r": 1,
|
|
962
|
-
"bm": 0,
|
|
963
|
-
"nm": ".primary",
|
|
964
|
-
"mn": "ADBE Vector Graphic - Fill",
|
|
965
|
-
"hd": false,
|
|
966
|
-
"cl": "primary"
|
|
967
|
-
},
|
|
968
|
-
{
|
|
969
|
-
"ty": "tr",
|
|
970
|
-
"p": { "a": 0, "k": [250, 244.75], "ix": 2 },
|
|
971
|
-
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
972
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
973
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
974
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
975
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
976
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
977
|
-
"nm": "Transform"
|
|
978
|
-
}
|
|
979
|
-
],
|
|
980
|
-
"nm": "Group 2",
|
|
981
|
-
"np": 2,
|
|
982
|
-
"cix": 2,
|
|
983
|
-
"bm": 0,
|
|
984
|
-
"ix": 2,
|
|
985
|
-
"mn": "ADBE Vector Group",
|
|
986
|
-
"hd": false
|
|
987
|
-
},
|
|
988
|
-
{
|
|
989
|
-
"ty": "tr",
|
|
990
|
-
"p": { "a": 0, "k": [250, 244.75], "ix": 2 },
|
|
991
|
-
"a": { "a": 0, "k": [250, 244.75], "ix": 1 },
|
|
992
|
-
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
993
|
-
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
994
|
-
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
995
|
-
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
996
|
-
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
997
|
-
"nm": "Transform"
|
|
998
|
-
}
|
|
999
|
-
],
|
|
1000
|
-
"nm": "Group 1",
|
|
1001
|
-
"np": 2,
|
|
1002
|
-
"cix": 2,
|
|
1003
|
-
"bm": 0,
|
|
1004
|
-
"ix": 1,
|
|
1005
|
-
"mn": "ADBE Vector Group",
|
|
1006
|
-
"hd": false
|
|
1007
|
-
}
|
|
1008
|
-
],
|
|
1009
|
-
"ip": 60,
|
|
1010
|
-
"op": 109,
|
|
1011
|
-
"st": 0,
|
|
1012
|
-
"ct": 1,
|
|
1013
|
-
"bm": 0
|
|
1014
|
-
}
|
|
1015
|
-
]
|
|
1016
|
-
}
|
|
1017
|
-
],
|
|
1018
|
-
"layers": [
|
|
1019
|
-
{
|
|
1020
|
-
"ddd": 0,
|
|
1021
|
-
"ind": 1,
|
|
1022
|
-
"ty": 3,
|
|
1023
|
-
"nm": "control",
|
|
1024
|
-
"sr": 1,
|
|
1025
|
-
"ks": {
|
|
1026
|
-
"o": { "a": 0, "k": 0, "ix": 11 },
|
|
1027
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
1028
|
-
"p": { "a": 0, "k": [0, 0], "ix": 2, "l": 2 },
|
|
1029
|
-
"a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
|
|
1030
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
1031
|
-
},
|
|
1032
|
-
"ao": 0,
|
|
1033
|
-
"ef": [
|
|
1034
|
-
{
|
|
1035
|
-
"ty": 5,
|
|
1036
|
-
"nm": "primary",
|
|
1037
|
-
"np": 3,
|
|
1038
|
-
"mn": "ADBE Color Control",
|
|
1039
|
-
"ix": 1,
|
|
1040
|
-
"en": 1,
|
|
1041
|
-
"ef": [
|
|
1042
|
-
{
|
|
1043
|
-
"ty": 2,
|
|
1044
|
-
"nm": "Color",
|
|
1045
|
-
"mn": "ADBE Color Control-0001",
|
|
1046
|
-
"ix": 1,
|
|
1047
|
-
"v": { "a": 0, "k": [0.937, 0.969, 1], "ix": 1 }
|
|
1048
|
-
}
|
|
1049
|
-
]
|
|
1050
|
-
}
|
|
1051
|
-
],
|
|
1052
|
-
"ip": 0,
|
|
1053
|
-
"op": 271,
|
|
1054
|
-
"st": 0,
|
|
1055
|
-
"bm": 0
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
"ddd": 0,
|
|
1059
|
-
"ind": 3,
|
|
1060
|
-
"ty": 0,
|
|
1061
|
-
"nm": "hover-book",
|
|
1062
|
-
"refId": "comp_1",
|
|
1063
|
-
"sr": 1,
|
|
1064
|
-
"ks": {
|
|
1065
|
-
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
1066
|
-
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
1067
|
-
"p": { "a": 0, "k": [250, 250, 0], "ix": 2, "l": 2 },
|
|
1068
|
-
"a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 },
|
|
1069
|
-
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
|
|
1070
|
-
},
|
|
1071
|
-
"ao": 0,
|
|
1072
|
-
"w": 500,
|
|
1073
|
-
"h": 500,
|
|
1074
|
-
"ip": 0,
|
|
1075
|
-
"op": 70,
|
|
1076
|
-
"st": 0,
|
|
1077
|
-
"bm": 0
|
|
1078
|
-
}
|
|
1079
|
-
],
|
|
1080
|
-
"markers": [{ "tm": 0, "cm": "default:hover-book", "dr": 60 }],
|
|
1081
|
-
"props": {}
|
|
1082
|
-
}
|