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,548 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
-
<html dir="ltr" lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<link rel="preload" as="image" href="/static/codepen-challengers.png" />
|
|
5
|
-
<link rel="preload" as="image" href="/static/codepen-cube.png" />
|
|
6
|
-
<link rel="preload" as="image" href="/static/codepen-pro.png" />
|
|
7
|
-
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
|
8
|
-
<meta name="x-apple-disable-message-reformatting" />
|
|
9
|
-
<!--$-->
|
|
10
|
-
</head>
|
|
11
|
-
<body
|
|
12
|
-
style='font-family:"Google Sans",Roboto,RobotoDraft,Helvetica,Arial,sans-serif;background-color:#505050;margin:0'>
|
|
13
|
-
<div
|
|
14
|
-
style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0"
|
|
15
|
-
data-skip-in-text="true">
|
|
16
|
-
#CodePenChallenge: Cubes
|
|
17
|
-
<div>
|
|
18
|
-
|
|
19
|
-
</div>
|
|
20
|
-
</div>
|
|
21
|
-
<table
|
|
22
|
-
align="center"
|
|
23
|
-
width="100%"
|
|
24
|
-
border="0"
|
|
25
|
-
cellpadding="0"
|
|
26
|
-
cellspacing="0"
|
|
27
|
-
role="presentation"
|
|
28
|
-
style="width:100%;background-color:#191919;margin:0 auto;padding-bottom:30px;z-index:999">
|
|
29
|
-
<tbody>
|
|
30
|
-
<tr>
|
|
31
|
-
<td>
|
|
32
|
-
<img
|
|
33
|
-
alt="codepen"
|
|
34
|
-
src="/static/codepen-challengers.png"
|
|
35
|
-
style="display:block;outline:none;border:none;text-decoration:none;margin:auto;max-width:100%"
|
|
36
|
-
width="600" />
|
|
37
|
-
</td>
|
|
38
|
-
</tr>
|
|
39
|
-
</tbody>
|
|
40
|
-
</table>
|
|
41
|
-
<table
|
|
42
|
-
align="center"
|
|
43
|
-
width="100%"
|
|
44
|
-
border="0"
|
|
45
|
-
cellpadding="0"
|
|
46
|
-
cellspacing="0"
|
|
47
|
-
role="presentation"
|
|
48
|
-
style="max-width:100%;margin:0 auto;width:648px;position:relative">
|
|
49
|
-
<tbody>
|
|
50
|
-
<tr style="width:100%">
|
|
51
|
-
<td>
|
|
52
|
-
<p
|
|
53
|
-
style="font-size:13px;line-height:24px;background-color:#505050;text-align:center;padding:10px 0;position:absolute;width:648px;max-width:100%;top:-28px;margin:0 0 16px 0;margin-top:0;margin-right:0;margin-bottom:16px;margin-left:0">
|
|
54
|
-
<a
|
|
55
|
-
style="color:#fff;text-decoration-line:none;cursor:pointer"
|
|
56
|
-
target="_blank"
|
|
57
|
-
>View this Challenge on CodePen</a
|
|
58
|
-
>
|
|
59
|
-
</p>
|
|
60
|
-
<h1
|
|
61
|
-
style="background:#f0d361;padding:30px;color:#191919;font-weight:400;margin-bottom:0">
|
|
62
|
-
<strong>This week:</strong> #CodePenChallenge:<!-- -->
|
|
63
|
-
<p
|
|
64
|
-
style="font-size:32px;line-height:24px;margin:4px 0 0 0;margin-top:4px;margin-right:0;margin-bottom:0;margin-left:0">
|
|
65
|
-
Cubes
|
|
66
|
-
</p>
|
|
67
|
-
</h1>
|
|
68
|
-
<table
|
|
69
|
-
align="center"
|
|
70
|
-
width="100%"
|
|
71
|
-
border="0"
|
|
72
|
-
cellpadding="0"
|
|
73
|
-
cellspacing="0"
|
|
74
|
-
role="presentation"
|
|
75
|
-
style="margin:0;background:#fff;padding:0 24px">
|
|
76
|
-
<tbody>
|
|
77
|
-
<tr>
|
|
78
|
-
<td>
|
|
79
|
-
<p
|
|
80
|
-
style="font-size:16px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
81
|
-
The Shape challenge continues!
|
|
82
|
-
</p>
|
|
83
|
-
<p
|
|
84
|
-
style="font-size:16px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
85
|
-
Last week, we kicked things off with round shapes. We
|
|
86
|
-
"rounded" up the Pens from week one in our<!-- -->
|
|
87
|
-
<a
|
|
88
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
89
|
-
target="_blank"
|
|
90
|
-
>#CodePenChallenge: Round</a
|
|
91
|
-
>
|
|
92
|
-
collection.
|
|
93
|
-
</p>
|
|
94
|
-
<p
|
|
95
|
-
style="font-size:16px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
96
|
-
This week, we move on to cubes 🧊
|
|
97
|
-
</p>
|
|
98
|
-
<p
|
|
99
|
-
style="font-size:16px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
100
|
-
Creating cubes in the browser is all about mastery of
|
|
101
|
-
illusion. Take control of perspective and shadows and you
|
|
102
|
-
can make the magic of 3D on a flat screen 🧙
|
|
103
|
-
</p>
|
|
104
|
-
<p
|
|
105
|
-
style="font-size:16px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
106
|
-
This week is a fun chance to work on your CSS
|
|
107
|
-
shape-building skills, or dig into a 3D JavaScript library
|
|
108
|
-
like Three.js.
|
|
109
|
-
</p>
|
|
110
|
-
<p
|
|
111
|
-
style="font-size:16px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
112
|
-
This week's starter template features an ice cube
|
|
113
|
-
emoji to help inspire a "cool" idea for your
|
|
114
|
-
Pen. As always, the template is just as jumping off point.
|
|
115
|
-
Feel free to incorporate the 🧊 in your creation, add more
|
|
116
|
-
elements, or freeze it out completely and start over from
|
|
117
|
-
scratch!
|
|
118
|
-
</p>
|
|
119
|
-
<p
|
|
120
|
-
style="font-size:16px;line-height:24px;border:6px solid #ebd473;padding:20px;margin:0 0 40px 0;margin-top:0;margin-right:0;margin-bottom:40px;margin-left:0">
|
|
121
|
-
💪 <strong>Your Challenge:</strong>
|
|
122
|
-
<a
|
|
123
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
124
|
-
target="_blank"
|
|
125
|
-
>create a Pen that includes cube shapes.</a
|
|
126
|
-
>
|
|
127
|
-
</p>
|
|
128
|
-
<img
|
|
129
|
-
alt="codepen"
|
|
130
|
-
src="/static/codepen-cube.png"
|
|
131
|
-
style="display:block;outline:none;border:none;text-decoration:none;max-width:100%"
|
|
132
|
-
width="600" />
|
|
133
|
-
<table
|
|
134
|
-
align="center"
|
|
135
|
-
width="100%"
|
|
136
|
-
border="0"
|
|
137
|
-
cellpadding="0"
|
|
138
|
-
cellspacing="0"
|
|
139
|
-
role="presentation"
|
|
140
|
-
style="margin-top:40px;margin-bottom:24px;text-align:center;background:#0b112a;color:#fff;padding:35px 20px 30px 20px;border:6px solid #2138c6">
|
|
141
|
-
<tbody>
|
|
142
|
-
<tr>
|
|
143
|
-
<td>
|
|
144
|
-
<img
|
|
145
|
-
alt="codepen"
|
|
146
|
-
src="/static/codepen-pro.png"
|
|
147
|
-
style="display:block;outline:none;border:none;text-decoration:none;margin:0 auto 30px auto"
|
|
148
|
-
width="250" />
|
|
149
|
-
<p
|
|
150
|
-
style="font-size:14px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
151
|
-
CodePen PRO combines a bunch of features that can
|
|
152
|
-
help any front-end designer or developer at any
|
|
153
|
-
experience level.
|
|
154
|
-
</p>
|
|
155
|
-
<a
|
|
156
|
-
style="line-height:18px;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;background:#2138c6;color:#fff;border:0;font-size:15px;cursor:pointer;border-radius:4px;padding:12px;padding-top:12px;padding-right:12px;padding-bottom:12px;padding-left:12px"
|
|
157
|
-
target="_blank"
|
|
158
|
-
><span
|
|
159
|
-
><!--[if mso]><i style="mso-font-width:300%;mso-text-raise:18" hidden>  </i><![endif]--></span
|
|
160
|
-
><span
|
|
161
|
-
style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:9px"
|
|
162
|
-
><strong>Learn More</strong></span
|
|
163
|
-
><span
|
|
164
|
-
><!--[if mso]><i style="mso-font-width:300%" hidden>  ​</i><![endif]--></span
|
|
165
|
-
></a
|
|
166
|
-
>
|
|
167
|
-
</td>
|
|
168
|
-
</tr>
|
|
169
|
-
</tbody>
|
|
170
|
-
</table>
|
|
171
|
-
</td>
|
|
172
|
-
</tr>
|
|
173
|
-
</tbody>
|
|
174
|
-
</table>
|
|
175
|
-
<p
|
|
176
|
-
style="font-size:18px;line-height:1.5;background:#f5d247;padding:30px;margin-top:16px;margin-bottom:16px">
|
|
177
|
-
<strong>To participate:</strong>
|
|
178
|
-
<a
|
|
179
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
180
|
-
target="_blank"
|
|
181
|
-
>Create a Pen →</a
|
|
182
|
-
>
|
|
183
|
-
and tag it<!-- -->
|
|
184
|
-
<a
|
|
185
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
186
|
-
target="_blank"
|
|
187
|
-
><strong>codepenchallenge</strong></a
|
|
188
|
-
>
|
|
189
|
-
<!-- -->and<a
|
|
190
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
191
|
-
target="_blank">
|
|
192
|
-
<strong>cpc-cubes</strong></a
|
|
193
|
-
>. We'll be watching and gathering the Pens into a
|
|
194
|
-
Collection, and sharing on
|
|
195
|
-
<a
|
|
196
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
197
|
-
target="_blank"
|
|
198
|
-
>Twitter</a
|
|
199
|
-
>
|
|
200
|
-
and<!-- -->
|
|
201
|
-
<a
|
|
202
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
203
|
-
target="_blank"
|
|
204
|
-
>Instagram</a
|
|
205
|
-
>
|
|
206
|
-
(Use the #CodePenChallenge tag on Twitter and Instagram as well).
|
|
207
|
-
</p>
|
|
208
|
-
<table
|
|
209
|
-
align="center"
|
|
210
|
-
width="100%"
|
|
211
|
-
border="0"
|
|
212
|
-
cellpadding="0"
|
|
213
|
-
cellspacing="0"
|
|
214
|
-
role="presentation"
|
|
215
|
-
style="margin:0;background:#fff;padding:0 24px">
|
|
216
|
-
<tbody>
|
|
217
|
-
<tr>
|
|
218
|
-
<td>
|
|
219
|
-
<table
|
|
220
|
-
align="center"
|
|
221
|
-
width="100%"
|
|
222
|
-
border="0"
|
|
223
|
-
cellpadding="0"
|
|
224
|
-
cellspacing="0"
|
|
225
|
-
role="presentation">
|
|
226
|
-
<tbody style="width:100%">
|
|
227
|
-
<tr style="width:100%">
|
|
228
|
-
<td
|
|
229
|
-
data-id="__react-email-column"
|
|
230
|
-
style="width:50%;padding-right:10px">
|
|
231
|
-
<p
|
|
232
|
-
style="font-size:18px;line-height:1.1;font-weight:900;margin-top:16px;margin-bottom:16px">
|
|
233
|
-
IDEAS!
|
|
234
|
-
</p>
|
|
235
|
-
<table
|
|
236
|
-
align="center"
|
|
237
|
-
width="100%"
|
|
238
|
-
border="0"
|
|
239
|
-
cellpadding="0"
|
|
240
|
-
cellspacing="0"
|
|
241
|
-
role="presentation"
|
|
242
|
-
style="padding:20px;margin:0 0 20px 0;border-radius:10px;font-size:36px;text-align:center;background:#fff4c8;border:1px solid #f4d247">
|
|
243
|
-
<tbody>
|
|
244
|
-
<tr>
|
|
245
|
-
<td>
|
|
246
|
-
🌟
|
|
247
|
-
<p
|
|
248
|
-
style="font-size:13px;line-height:24px;text-align:left;margin-top:16px;margin-bottom:16px">
|
|
249
|
-
This week we move from 2 dimensions to
|
|
250
|
-
three! Maybe you could exercise your
|
|
251
|
-
<a
|
|
252
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
253
|
-
target="_blank"
|
|
254
|
-
>perspective</a
|
|
255
|
-
>
|
|
256
|
-
in CSS to create a 3D cube. Or, you can
|
|
257
|
-
try out creating 3D shapes in JavaScript,
|
|
258
|
-
using
|
|
259
|
-
<a
|
|
260
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
261
|
-
target="_blank"
|
|
262
|
-
>WebGL</a
|
|
263
|
-
>
|
|
264
|
-
or building a
|
|
265
|
-
<a
|
|
266
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
267
|
-
target="_blank"
|
|
268
|
-
>Three.js scene</a
|
|
269
|
-
>.
|
|
270
|
-
</p>
|
|
271
|
-
</td>
|
|
272
|
-
</tr>
|
|
273
|
-
</tbody>
|
|
274
|
-
</table>
|
|
275
|
-
<table
|
|
276
|
-
align="center"
|
|
277
|
-
width="100%"
|
|
278
|
-
border="0"
|
|
279
|
-
cellpadding="0"
|
|
280
|
-
cellspacing="0"
|
|
281
|
-
role="presentation"
|
|
282
|
-
style="padding:20px;margin:0 0 20px 0;border-radius:10px;font-size:36px;text-align:center;background:#fff4c8;border:1px solid #f4d247">
|
|
283
|
-
<tbody>
|
|
284
|
-
<tr>
|
|
285
|
-
<td>
|
|
286
|
-
🌟
|
|
287
|
-
<p
|
|
288
|
-
style="font-size:13px;line-height:24px;text-align:left;margin-top:16px;margin-bottom:16px">
|
|
289
|
-
There's more to cubes than just six
|
|
290
|
-
square sides. There are variations on the
|
|
291
|
-
cube that could be fun to play with this
|
|
292
|
-
week:
|
|
293
|
-
<a
|
|
294
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
295
|
-
target="_blank"
|
|
296
|
-
>cuboid shapes</a
|
|
297
|
-
>
|
|
298
|
-
are hexahedrons with faces that
|
|
299
|
-
aren't always squares. And if you
|
|
300
|
-
want to really push the boundaries of
|
|
301
|
-
shape, consider the 4 dimensional
|
|
302
|
-
<a
|
|
303
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
304
|
-
target="_blank"
|
|
305
|
-
>tesseract!</a
|
|
306
|
-
>
|
|
307
|
-
</p>
|
|
308
|
-
</td>
|
|
309
|
-
</tr>
|
|
310
|
-
</tbody>
|
|
311
|
-
</table>
|
|
312
|
-
<table
|
|
313
|
-
align="center"
|
|
314
|
-
width="100%"
|
|
315
|
-
border="0"
|
|
316
|
-
cellpadding="0"
|
|
317
|
-
cellspacing="0"
|
|
318
|
-
role="presentation"
|
|
319
|
-
style="padding:20px;margin:0 0 20px 0;border-radius:10px;font-size:36px;text-align:center;background:#fff4c8;border:1px solid #f4d247">
|
|
320
|
-
<tbody>
|
|
321
|
-
<tr>
|
|
322
|
-
<td>
|
|
323
|
-
🌟
|
|
324
|
-
<p
|
|
325
|
-
style="font-size:13px;line-height:24px;text-align:left;margin-top:16px;margin-bottom:16px">
|
|
326
|
-
Here's a mind-bending idea that can
|
|
327
|
-
combine the round shapes from week one
|
|
328
|
-
with this week's cube theme:<!-- -->
|
|
329
|
-
<a
|
|
330
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
331
|
-
target="_blank"
|
|
332
|
-
>Spherical Cubes</a
|
|
333
|
-
>
|
|
334
|
-
😳 Solving longstanding mathematical
|
|
335
|
-
mysteries is probably outside the scope of
|
|
336
|
-
a CodePen challenge, but you could use
|
|
337
|
-
front-end tools to explore fitting spheres
|
|
338
|
-
into cubes, or vice-versa.
|
|
339
|
-
</p>
|
|
340
|
-
</td>
|
|
341
|
-
</tr>
|
|
342
|
-
</tbody>
|
|
343
|
-
</table>
|
|
344
|
-
</td>
|
|
345
|
-
<td
|
|
346
|
-
data-id="__react-email-column"
|
|
347
|
-
style="width:50%;padding-left:10px">
|
|
348
|
-
<p
|
|
349
|
-
style="font-size:18px;line-height:1.1;font-weight:900;margin-top:-40px;margin-bottom:16px">
|
|
350
|
-
RESOURCES!
|
|
351
|
-
</p>
|
|
352
|
-
<table
|
|
353
|
-
align="center"
|
|
354
|
-
width="100%"
|
|
355
|
-
border="0"
|
|
356
|
-
cellpadding="0"
|
|
357
|
-
cellspacing="0"
|
|
358
|
-
role="presentation"
|
|
359
|
-
style="padding:20px;margin:0 0 20px 0;border-radius:10px;font-size:36px;text-align:center;background:#d9f6ff;border:1px solid #92bfd0">
|
|
360
|
-
<tbody>
|
|
361
|
-
<tr>
|
|
362
|
-
<td>
|
|
363
|
-
📖
|
|
364
|
-
<p
|
|
365
|
-
style="font-size:13px;line-height:24px;text-align:left;margin-top:16px;margin-bottom:16px">
|
|
366
|
-
Learn all about<!-- -->
|
|
367
|
-
<a
|
|
368
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
369
|
-
target="_blank"
|
|
370
|
-
>How CSS Perspective Works</a
|
|
371
|
-
>
|
|
372
|
-
and how to build a 3D CSS cube from
|
|
373
|
-
scratch in Amit Sheen's in-depth
|
|
374
|
-
tutorial for CSS-Tricks. Or, check out
|
|
375
|
-
stunning examples of WebGL cubes from
|
|
376
|
-
Matthias Hurrle:<!-- -->
|
|
377
|
-
<a
|
|
378
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
379
|
-
target="_blank"
|
|
380
|
-
>Just Ice</a
|
|
381
|
-
>
|
|
382
|
-
and<!-- -->
|
|
383
|
-
<a
|
|
384
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
385
|
-
target="_blank"
|
|
386
|
-
>Posing</a
|
|
387
|
-
>.
|
|
388
|
-
</p>
|
|
389
|
-
</td>
|
|
390
|
-
</tr>
|
|
391
|
-
</tbody>
|
|
392
|
-
</table>
|
|
393
|
-
<table
|
|
394
|
-
align="center"
|
|
395
|
-
width="100%"
|
|
396
|
-
border="0"
|
|
397
|
-
cellpadding="0"
|
|
398
|
-
cellspacing="0"
|
|
399
|
-
role="presentation"
|
|
400
|
-
style="padding:20px;margin:0 0 20px 0;border-radius:10px;font-size:36px;text-align:center;background:#d9f6ff;border:1px solid #92bfd0">
|
|
401
|
-
<tbody>
|
|
402
|
-
<tr>
|
|
403
|
-
<td>
|
|
404
|
-
📖
|
|
405
|
-
<p
|
|
406
|
-
style="font-size:13px;line-height:24px;text-align:left;margin-top:16px;margin-bottom:16px">
|
|
407
|
-
Want to go beyond the square cube? Draw
|
|
408
|
-
inspiration from EntropyReversed's<!-- -->
|
|
409
|
-
<a
|
|
410
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
411
|
-
target="_blank"
|
|
412
|
-
>Pulsating Tesseract</a
|
|
413
|
-
>, Josetxu's<!-- -->
|
|
414
|
-
<a
|
|
415
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
416
|
-
target="_blank"
|
|
417
|
-
>Rainbow Cuboid Loader</a
|
|
418
|
-
>, or Ana Tudor's<!-- -->
|
|
419
|
-
<a
|
|
420
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
421
|
-
target="_blank"
|
|
422
|
-
>Pure CSS cuboid jellyfish</a
|
|
423
|
-
>.
|
|
424
|
-
</p>
|
|
425
|
-
</td>
|
|
426
|
-
</tr>
|
|
427
|
-
</tbody>
|
|
428
|
-
</table>
|
|
429
|
-
<table
|
|
430
|
-
align="center"
|
|
431
|
-
width="100%"
|
|
432
|
-
border="0"
|
|
433
|
-
cellpadding="0"
|
|
434
|
-
cellspacing="0"
|
|
435
|
-
role="presentation"
|
|
436
|
-
style="padding:20px;margin:0 0 20px 0;border-radius:10px;font-size:36px;text-align:center;background:#d9f6ff;border:1px solid #92bfd0">
|
|
437
|
-
<tbody>
|
|
438
|
-
<tr>
|
|
439
|
-
<td>
|
|
440
|
-
📖
|
|
441
|
-
<p
|
|
442
|
-
style="font-size:13px;line-height:24px;text-align:left;margin-top:16px;margin-bottom:16px">
|
|
443
|
-
Did that spherical cubes concept pique
|
|
444
|
-
your interest? Explore Ryan
|
|
445
|
-
Mulligan's
|
|
446
|
-
<a
|
|
447
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
448
|
-
target="_blank"
|
|
449
|
-
>Cube Sphere</a
|
|
450
|
-
>, Munir Safi's<!-- -->
|
|
451
|
-
<a
|
|
452
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
453
|
-
target="_blank"
|
|
454
|
-
>3D Sphere to Cube Animation With
|
|
455
|
-
Virtual Trackball</a
|
|
456
|
-
>
|
|
457
|
-
<!-- -->and Ana Tudor's<!-- -->
|
|
458
|
-
<a
|
|
459
|
-
style="color:#15c;text-decoration-line:none;cursor:pointer"
|
|
460
|
-
target="_blank"
|
|
461
|
-
>Infinitely unpack prism</a
|
|
462
|
-
>
|
|
463
|
-
for more mindbending cube concepts that
|
|
464
|
-
test the boundaries of how shapes interact
|
|
465
|
-
with each other.
|
|
466
|
-
</p>
|
|
467
|
-
</td>
|
|
468
|
-
</tr>
|
|
469
|
-
</tbody>
|
|
470
|
-
</table>
|
|
471
|
-
</td>
|
|
472
|
-
</tr>
|
|
473
|
-
</tbody>
|
|
474
|
-
</table>
|
|
475
|
-
</td>
|
|
476
|
-
</tr>
|
|
477
|
-
</tbody>
|
|
478
|
-
</table>
|
|
479
|
-
<table
|
|
480
|
-
align="center"
|
|
481
|
-
width="100%"
|
|
482
|
-
border="0"
|
|
483
|
-
cellpadding="0"
|
|
484
|
-
cellspacing="0"
|
|
485
|
-
role="presentation"
|
|
486
|
-
style="margin:40px 0 120px 0;text-align:center">
|
|
487
|
-
<tbody>
|
|
488
|
-
<tr>
|
|
489
|
-
<td>
|
|
490
|
-
<a
|
|
491
|
-
style="line-height:100%;text-decoration:none;display:inline-block;max-width:100%;mso-padding-alt:0px;font-size:26px;color:#15c;background:#222;border-radius:4px;font-weight:bold;cursor:pointer;padding:15px 30px;padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px"
|
|
492
|
-
target="_blank"
|
|
493
|
-
><span
|
|
494
|
-
><!--[if mso]><i style="mso-font-width:500%;mso-text-raise:22.5" hidden>   </i><![endif]--></span
|
|
495
|
-
><span
|
|
496
|
-
style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:11.25px"
|
|
497
|
-
>Go to Challenge Page</span
|
|
498
|
-
><span
|
|
499
|
-
><!--[if mso]><i style="mso-font-width:500%" hidden>   ​</i><![endif]--></span
|
|
500
|
-
></a
|
|
501
|
-
>
|
|
502
|
-
</td>
|
|
503
|
-
</tr>
|
|
504
|
-
</tbody>
|
|
505
|
-
</table>
|
|
506
|
-
<table
|
|
507
|
-
align="center"
|
|
508
|
-
width="100%"
|
|
509
|
-
border="0"
|
|
510
|
-
cellpadding="0"
|
|
511
|
-
cellspacing="0"
|
|
512
|
-
role="presentation"
|
|
513
|
-
style="background:#fff;color:#505050;padding:0 24px;margin-bottom:48px">
|
|
514
|
-
<tbody>
|
|
515
|
-
<tr>
|
|
516
|
-
<td>
|
|
517
|
-
<p
|
|
518
|
-
style="font-size:13px;line-height:24px;margin-top:16px;margin-bottom:16px">
|
|
519
|
-
You can adjust your<!-- -->
|
|
520
|
-
<a
|
|
521
|
-
style="color:#505050;text-decoration-line:none;text-decoration:underline;cursor:pointer"
|
|
522
|
-
target="_blank"
|
|
523
|
-
>email preferences</a
|
|
524
|
-
>
|
|
525
|
-
any time, or<!-- -->
|
|
526
|
-
<a
|
|
527
|
-
style="color:#505050;text-decoration-line:none;text-decoration:underline;cursor:pointer"
|
|
528
|
-
target="_blank"
|
|
529
|
-
>instantly opt out</a
|
|
530
|
-
>
|
|
531
|
-
of emails of this kind. Need help with anything? Hit up<!-- -->
|
|
532
|
-
<a
|
|
533
|
-
style="color:#505050;text-decoration-line:none;text-decoration:underline;cursor:pointer"
|
|
534
|
-
target="_blank"
|
|
535
|
-
>support</a
|
|
536
|
-
>.
|
|
537
|
-
</p>
|
|
538
|
-
</td>
|
|
539
|
-
</tr>
|
|
540
|
-
</tbody>
|
|
541
|
-
</table>
|
|
542
|
-
</td>
|
|
543
|
-
</tr>
|
|
544
|
-
</tbody>
|
|
545
|
-
</table>
|
|
546
|
-
<!--/$-->
|
|
547
|
-
</body>
|
|
548
|
-
</html>
|