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,134 +0,0 @@
|
|
|
1
|
-
import * as Collapsible from '@radix-ui/react-collapsible';
|
|
2
|
-
import { AnimatePresence, LayoutGroup, motion } from 'framer-motion';
|
|
3
|
-
import Link from 'next/link';
|
|
4
|
-
import { useSearchParams } from 'next/navigation';
|
|
5
|
-
import { cn } from '../../utils';
|
|
6
|
-
import type { EmailsDirectory } from '../../utils/get-emails-directory-metadata';
|
|
7
|
-
import { IconFile } from '../icons/icon-file';
|
|
8
|
-
import { FileTreeDirectory } from './file-tree-directory';
|
|
9
|
-
|
|
10
|
-
export const FileTreeDirectoryChildren = (props: {
|
|
11
|
-
emailsDirectoryMetadata: EmailsDirectory;
|
|
12
|
-
currentEmailOpenSlug?: string;
|
|
13
|
-
open: boolean;
|
|
14
|
-
isRoot?: boolean;
|
|
15
|
-
}) => {
|
|
16
|
-
const searchParams = useSearchParams();
|
|
17
|
-
|
|
18
|
-
return (
|
|
19
|
-
<AnimatePresence initial={false}>
|
|
20
|
-
{props.open ? (
|
|
21
|
-
<Collapsible.Content
|
|
22
|
-
asChild
|
|
23
|
-
className="relative overflow-y-hidden pl-1"
|
|
24
|
-
forceMount
|
|
25
|
-
>
|
|
26
|
-
<motion.div
|
|
27
|
-
animate={{ opacity: 1, height: 'auto' }}
|
|
28
|
-
exit={{ opacity: 0, height: 0 }}
|
|
29
|
-
initial={{ opacity: 0, height: 0 }}
|
|
30
|
-
>
|
|
31
|
-
{props.isRoot ? null : (
|
|
32
|
-
<div className="line absolute left-2.5 h-full w-px bg-slate-6" />
|
|
33
|
-
)}
|
|
34
|
-
<div className="flex flex-col truncate">
|
|
35
|
-
<LayoutGroup id="sidebar">
|
|
36
|
-
{props.emailsDirectoryMetadata.subDirectories.map(
|
|
37
|
-
(subDirectory) => (
|
|
38
|
-
<FileTreeDirectory
|
|
39
|
-
className="p-0 data-[state=open]:mb-2"
|
|
40
|
-
currentEmailOpenSlug={props.currentEmailOpenSlug}
|
|
41
|
-
emailsDirectoryMetadata={subDirectory}
|
|
42
|
-
key={subDirectory.absolutePath}
|
|
43
|
-
/>
|
|
44
|
-
),
|
|
45
|
-
)}
|
|
46
|
-
{props.emailsDirectoryMetadata.emailFilenames.map(
|
|
47
|
-
(emailFilename, index) => {
|
|
48
|
-
const emailSlug = props.isRoot
|
|
49
|
-
? emailFilename
|
|
50
|
-
: `${props.emailsDirectoryMetadata.relativePath}/${emailFilename}`;
|
|
51
|
-
|
|
52
|
-
const removeExtensionFrom = (path: string) => {
|
|
53
|
-
if (
|
|
54
|
-
path.split('.').pop() === 'tsx' ||
|
|
55
|
-
path.split('.').pop() === 'jsx' ||
|
|
56
|
-
path.split('.').pop() === 'js'
|
|
57
|
-
) {
|
|
58
|
-
return path.split('.').slice(0, -1).join('.');
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
return path;
|
|
62
|
-
};
|
|
63
|
-
const isCurrentPage = props.currentEmailOpenSlug
|
|
64
|
-
? removeExtensionFrom(props.currentEmailOpenSlug) ===
|
|
65
|
-
emailSlug
|
|
66
|
-
: false;
|
|
67
|
-
|
|
68
|
-
return (
|
|
69
|
-
<Link
|
|
70
|
-
href={{
|
|
71
|
-
pathname: `/preview/${emailSlug}`,
|
|
72
|
-
search: searchParams.toString(),
|
|
73
|
-
}}
|
|
74
|
-
prefetch
|
|
75
|
-
key={emailSlug}
|
|
76
|
-
>
|
|
77
|
-
<motion.span
|
|
78
|
-
animate={{ x: 0, opacity: 1 }}
|
|
79
|
-
className={cn(
|
|
80
|
-
'relative flex h-8 w-full items-center text-start gap-2 rounded-md align-middle text-slate-11 text-sm transition-colors duration-100 ease-[cubic-bezier(.6,.12,.34,.96)]',
|
|
81
|
-
props.isRoot ? undefined : 'pl-3',
|
|
82
|
-
{
|
|
83
|
-
'text-cyan-11': isCurrentPage,
|
|
84
|
-
'hover:text-slate-12':
|
|
85
|
-
props.currentEmailOpenSlug !== emailSlug,
|
|
86
|
-
},
|
|
87
|
-
)}
|
|
88
|
-
initial={{ x: -10 + -index * 1.5, opacity: 0 }}
|
|
89
|
-
transition={{
|
|
90
|
-
x: { delay: 0.03 * index, duration: 0.2 },
|
|
91
|
-
opacity: { delay: 0.03 * index, duration: 0.2 },
|
|
92
|
-
}}
|
|
93
|
-
>
|
|
94
|
-
{isCurrentPage ? (
|
|
95
|
-
<motion.span
|
|
96
|
-
animate={{ opacity: 1 }}
|
|
97
|
-
className="absolute inset-0 rounded-md bg-cyan-5 opacity-0 transition-all duration-200 ease-[cubic-bezier(.6,.12,.34,.96)]"
|
|
98
|
-
exit={{ opacity: 0 }}
|
|
99
|
-
initial={{ opacity: 0 }}
|
|
100
|
-
>
|
|
101
|
-
{props.isRoot ? null : (
|
|
102
|
-
<motion.div
|
|
103
|
-
className="absolute top-1 left-[0.4rem] inset-0 h-6 w-px rounded-sm bg-cyan-11"
|
|
104
|
-
layoutId="active-file"
|
|
105
|
-
transition={{
|
|
106
|
-
type: 'spring',
|
|
107
|
-
bounce: 0.2,
|
|
108
|
-
duration: 0.6,
|
|
109
|
-
}}
|
|
110
|
-
/>
|
|
111
|
-
)}
|
|
112
|
-
</motion.span>
|
|
113
|
-
) : null}
|
|
114
|
-
<IconFile
|
|
115
|
-
className="h-5 w-5"
|
|
116
|
-
height="20"
|
|
117
|
-
width="20"
|
|
118
|
-
/>
|
|
119
|
-
<span className="truncate w-[calc(100%-1.25rem)]">
|
|
120
|
-
{emailFilename}
|
|
121
|
-
</span>
|
|
122
|
-
</motion.span>
|
|
123
|
-
</Link>
|
|
124
|
-
);
|
|
125
|
-
},
|
|
126
|
-
)}
|
|
127
|
-
</LayoutGroup>
|
|
128
|
-
</div>
|
|
129
|
-
</motion.div>
|
|
130
|
-
</Collapsible.Content>
|
|
131
|
-
) : null}
|
|
132
|
-
</AnimatePresence>
|
|
133
|
-
);
|
|
134
|
-
};
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
import * as Collapsible from '@radix-ui/react-collapsible';
|
|
3
|
-
import * as React from 'react';
|
|
4
|
-
import { cn } from '../../utils';
|
|
5
|
-
import type { EmailsDirectory } from '../../utils/get-emails-directory-metadata';
|
|
6
|
-
import { Heading } from '../heading';
|
|
7
|
-
import { IconArrowDown } from '../icons/icon-arrow-down';
|
|
8
|
-
import { IconFolder } from '../icons/icon-folder';
|
|
9
|
-
import { IconFolderOpen } from '../icons/icon-folder-open';
|
|
10
|
-
import { FileTreeDirectoryChildren } from './file-tree-directory-children';
|
|
11
|
-
|
|
12
|
-
interface SidebarDirectoryProps {
|
|
13
|
-
emailsDirectoryMetadata: EmailsDirectory;
|
|
14
|
-
className?: string;
|
|
15
|
-
currentEmailOpenSlug?: string;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
const persistedOpenDirectories = new Set<string>();
|
|
19
|
-
|
|
20
|
-
export const FileTreeDirectory = ({
|
|
21
|
-
emailsDirectoryMetadata: directoryMetadata,
|
|
22
|
-
className,
|
|
23
|
-
currentEmailOpenSlug,
|
|
24
|
-
}: SidebarDirectoryProps) => {
|
|
25
|
-
const doesDirectoryContainCurrentEmailOpen = currentEmailOpenSlug
|
|
26
|
-
? currentEmailOpenSlug.includes(directoryMetadata.relativePath)
|
|
27
|
-
: false;
|
|
28
|
-
|
|
29
|
-
const isEmpty =
|
|
30
|
-
directoryMetadata.emailFilenames.length === 0 &&
|
|
31
|
-
directoryMetadata.subDirectories.length === 0;
|
|
32
|
-
|
|
33
|
-
const [open, setOpen] = React.useState(
|
|
34
|
-
persistedOpenDirectories.has(directoryMetadata.absolutePath) ||
|
|
35
|
-
doesDirectoryContainCurrentEmailOpen,
|
|
36
|
-
);
|
|
37
|
-
|
|
38
|
-
return (
|
|
39
|
-
<Collapsible.Root
|
|
40
|
-
className={cn('group', className)}
|
|
41
|
-
onOpenChange={(isOpening) => {
|
|
42
|
-
if (isOpening) {
|
|
43
|
-
persistedOpenDirectories.add(directoryMetadata.absolutePath);
|
|
44
|
-
} else {
|
|
45
|
-
persistedOpenDirectories.delete(directoryMetadata.absolutePath);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
setOpen(isOpening);
|
|
49
|
-
}}
|
|
50
|
-
open={open}
|
|
51
|
-
>
|
|
52
|
-
<Collapsible.Trigger
|
|
53
|
-
className={cn(
|
|
54
|
-
'mt-1 mb-1.5 flex w-full items-center text-start justify-between gap-2 font-medium text-[14px]',
|
|
55
|
-
{
|
|
56
|
-
'cursor-pointer': !isEmpty,
|
|
57
|
-
},
|
|
58
|
-
)}
|
|
59
|
-
>
|
|
60
|
-
{open ? (
|
|
61
|
-
<IconFolderOpen className="w-[20px]" height="20" width="20" />
|
|
62
|
-
) : (
|
|
63
|
-
<IconFolder height="20" width="20" />
|
|
64
|
-
)}
|
|
65
|
-
<Heading
|
|
66
|
-
as="h3"
|
|
67
|
-
className="transition grow w-[calc(100%-40px)] truncate duration-200 ease-in-out hover:text-slate-12"
|
|
68
|
-
color="gray"
|
|
69
|
-
size="2"
|
|
70
|
-
weight="medium"
|
|
71
|
-
>
|
|
72
|
-
{directoryMetadata.directoryName}
|
|
73
|
-
</Heading>
|
|
74
|
-
{!isEmpty ? (
|
|
75
|
-
<IconArrowDown
|
|
76
|
-
width="20"
|
|
77
|
-
height="20"
|
|
78
|
-
className="ml-auto opacity-60 transition-transform data-[open=true]:rotate-180"
|
|
79
|
-
data-open={open}
|
|
80
|
-
/>
|
|
81
|
-
) : null}
|
|
82
|
-
</Collapsible.Trigger>
|
|
83
|
-
{!isEmpty ? (
|
|
84
|
-
<FileTreeDirectoryChildren
|
|
85
|
-
currentEmailOpenSlug={currentEmailOpenSlug}
|
|
86
|
-
emailsDirectoryMetadata={directoryMetadata}
|
|
87
|
-
open={open}
|
|
88
|
-
/>
|
|
89
|
-
) : null}
|
|
90
|
-
</Collapsible.Root>
|
|
91
|
-
);
|
|
92
|
-
};
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import * as Collapsible from '@radix-ui/react-collapsible';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import type { EmailsDirectory } from '../../utils/get-emails-directory-metadata';
|
|
4
|
-
import { FileTreeDirectoryChildren } from './file-tree-directory-children';
|
|
5
|
-
|
|
6
|
-
interface FileTreeProps {
|
|
7
|
-
currentEmailOpenSlug: string | undefined;
|
|
8
|
-
emailsDirectoryMetadata: EmailsDirectory;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export const FileTree = ({
|
|
12
|
-
currentEmailOpenSlug,
|
|
13
|
-
emailsDirectoryMetadata,
|
|
14
|
-
}: FileTreeProps) => {
|
|
15
|
-
return (
|
|
16
|
-
<div className="flex w-full h-full flex-col lg:w-full lg:min-w-[14.5rem]">
|
|
17
|
-
<nav className="flex flex-grow flex-col p-4 pr-0 pl-0">
|
|
18
|
-
<Collapsible.Root open>
|
|
19
|
-
<React.Suspense>
|
|
20
|
-
<FileTreeDirectoryChildren
|
|
21
|
-
currentEmailOpenSlug={currentEmailOpenSlug}
|
|
22
|
-
emailsDirectoryMetadata={emailsDirectoryMetadata}
|
|
23
|
-
isRoot
|
|
24
|
-
open
|
|
25
|
-
/>
|
|
26
|
-
</React.Suspense>
|
|
27
|
-
</Collapsible.Root>
|
|
28
|
-
</nav>
|
|
29
|
-
</div>
|
|
30
|
-
);
|
|
31
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './sidebar';
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
import { clsx } from 'clsx';
|
|
3
|
-
import { useEmails } from '../../contexts/emails';
|
|
4
|
-
import { cn } from '../../utils';
|
|
5
|
-
import { Logo } from '../logo';
|
|
6
|
-
import { FileTree } from './file-tree';
|
|
7
|
-
|
|
8
|
-
interface SidebarProps {
|
|
9
|
-
className?: string;
|
|
10
|
-
currentEmailOpenSlug?: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export const Sidebar = ({ className, currentEmailOpenSlug }: SidebarProps) => {
|
|
14
|
-
const { emailsDirectoryMetadata } = useEmails();
|
|
15
|
-
|
|
16
|
-
return (
|
|
17
|
-
<aside
|
|
18
|
-
className={cn(
|
|
19
|
-
'overflow-hidden',
|
|
20
|
-
'lg:static lg:z-auto lg:max-h-screen lg:w-[16rem]',
|
|
21
|
-
className,
|
|
22
|
-
)}
|
|
23
|
-
>
|
|
24
|
-
<div className="flex w-full h-full overflow-hidden flex-col border-slate-6 border-r">
|
|
25
|
-
<div
|
|
26
|
-
className={clsx(
|
|
27
|
-
'hidden min-h-[3.3125rem] flex-shrink items-center p-3 px-4 lg:flex',
|
|
28
|
-
)}
|
|
29
|
-
>
|
|
30
|
-
<h2>
|
|
31
|
-
<Logo />
|
|
32
|
-
</h2>
|
|
33
|
-
</div>
|
|
34
|
-
<div className="relative grow w-full h-full overflow-y-auto overflow-x-hidden border-slate-4 border-t px-4 pb-3">
|
|
35
|
-
<FileTree
|
|
36
|
-
currentEmailOpenSlug={currentEmailOpenSlug}
|
|
37
|
-
emailsDirectoryMetadata={emailsDirectoryMetadata}
|
|
38
|
-
/>
|
|
39
|
-
</div>
|
|
40
|
-
</div>
|
|
41
|
-
</aside>
|
|
42
|
-
);
|
|
43
|
-
};
|
package/src/components/text.tsx
DELETED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
import * as SlotPrimitive from '@radix-ui/react-slot';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import { type As, cn, unreachable } from '../utils';
|
|
4
|
-
|
|
5
|
-
export type TextSize = '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9';
|
|
6
|
-
export type TextColor = 'gray' | 'white';
|
|
7
|
-
export type TextTransform = 'uppercase' | 'lowercase' | 'capitalize';
|
|
8
|
-
export type TextWeight = 'normal' | 'medium';
|
|
9
|
-
|
|
10
|
-
interface TextOwnProps {
|
|
11
|
-
size?: TextSize;
|
|
12
|
-
color?: TextColor;
|
|
13
|
-
transform?: TextTransform;
|
|
14
|
-
weight?: TextWeight;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
type TextProps = As<'span', 'div', 'p'> & TextOwnProps;
|
|
18
|
-
|
|
19
|
-
export const Text = React.forwardRef<HTMLSpanElement, Readonly<TextProps>>(
|
|
20
|
-
(
|
|
21
|
-
{
|
|
22
|
-
as: Tag = 'span',
|
|
23
|
-
size = '2',
|
|
24
|
-
color = 'gray',
|
|
25
|
-
transform,
|
|
26
|
-
weight = 'normal',
|
|
27
|
-
className,
|
|
28
|
-
children,
|
|
29
|
-
...props
|
|
30
|
-
},
|
|
31
|
-
forwardedRef,
|
|
32
|
-
) => (
|
|
33
|
-
<SlotPrimitive.Slot
|
|
34
|
-
className={cn(
|
|
35
|
-
className,
|
|
36
|
-
transform,
|
|
37
|
-
getSizesClassNames(size),
|
|
38
|
-
getColorClassNames(color),
|
|
39
|
-
getWeightClassNames(weight),
|
|
40
|
-
)}
|
|
41
|
-
ref={forwardedRef}
|
|
42
|
-
{...props}
|
|
43
|
-
>
|
|
44
|
-
<Tag>{children}</Tag>
|
|
45
|
-
</SlotPrimitive.Slot>
|
|
46
|
-
),
|
|
47
|
-
);
|
|
48
|
-
|
|
49
|
-
const getSizesClassNames = (size: TextSize | undefined) => {
|
|
50
|
-
switch (size) {
|
|
51
|
-
case '1':
|
|
52
|
-
return 'text-xs';
|
|
53
|
-
case undefined:
|
|
54
|
-
case '2':
|
|
55
|
-
return 'text-sm';
|
|
56
|
-
case '3':
|
|
57
|
-
return 'text-base';
|
|
58
|
-
case '4':
|
|
59
|
-
return 'text-lg';
|
|
60
|
-
case '5':
|
|
61
|
-
return ['text-17px', 'md:text-xl tracking-[-0.16px]'];
|
|
62
|
-
case '6':
|
|
63
|
-
return 'text-2xl tracking-[-0.288px]';
|
|
64
|
-
case '7':
|
|
65
|
-
return 'text-[28px] leading-[34px] tracking-[-0.416px]';
|
|
66
|
-
case '8':
|
|
67
|
-
return 'text-[35px] leading-[42px] tracking-[-0.64px]';
|
|
68
|
-
case '9':
|
|
69
|
-
return 'text-6xl leading-[73px] tracking-[-0.896px]';
|
|
70
|
-
default:
|
|
71
|
-
return unreachable(size);
|
|
72
|
-
}
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
const getColorClassNames = (color: TextColor | undefined) => {
|
|
76
|
-
switch (color) {
|
|
77
|
-
case 'white':
|
|
78
|
-
return 'text-slate-12';
|
|
79
|
-
case undefined:
|
|
80
|
-
case 'gray':
|
|
81
|
-
return 'text-slate-11';
|
|
82
|
-
default:
|
|
83
|
-
return unreachable(color);
|
|
84
|
-
}
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
const getWeightClassNames = (weight: TextWeight | undefined) => {
|
|
88
|
-
switch (weight) {
|
|
89
|
-
case undefined:
|
|
90
|
-
case 'normal':
|
|
91
|
-
return 'font-normal';
|
|
92
|
-
case 'medium':
|
|
93
|
-
return 'font-medium';
|
|
94
|
-
default:
|
|
95
|
-
return unreachable(weight);
|
|
96
|
-
}
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
Text.displayName = 'Text';
|
|
@@ -1,150 +0,0 @@
|
|
|
1
|
-
import * as Collapsible from '@radix-ui/react-collapsible';
|
|
2
|
-
import { AnimatePresence, motion } from 'framer-motion';
|
|
3
|
-
import type { ComponentProps } from 'react';
|
|
4
|
-
import { cn } from '../../utils';
|
|
5
|
-
|
|
6
|
-
export type ResultStatus = 'error' | 'warning' | 'success';
|
|
7
|
-
|
|
8
|
-
const statusStyles = {
|
|
9
|
-
error: 'text-red-600 hover:bg-red-600/10',
|
|
10
|
-
warning: 'text-yellow-300 hover:bg-yellow-400/10',
|
|
11
|
-
success: 'text-green-600 hover:bg-green-600/10',
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
interface ResultListProps {
|
|
15
|
-
status: ResultStatus;
|
|
16
|
-
label: React.ReactNode;
|
|
17
|
-
|
|
18
|
-
disabled?: boolean;
|
|
19
|
-
defaultOpen?: boolean;
|
|
20
|
-
|
|
21
|
-
children: React.ReactNode;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export const ResultList = ({
|
|
25
|
-
status,
|
|
26
|
-
label,
|
|
27
|
-
|
|
28
|
-
disabled,
|
|
29
|
-
defaultOpen,
|
|
30
|
-
|
|
31
|
-
children,
|
|
32
|
-
}: ResultListProps) => {
|
|
33
|
-
return (
|
|
34
|
-
<Collapsible.Root className="group" defaultOpen={defaultOpen && !disabled}>
|
|
35
|
-
<Collapsible.Trigger
|
|
36
|
-
className={cn(
|
|
37
|
-
'group flex w-full items-center gap-1 rounded p-2 transition-colors duration-200 ease-[cubic-bezier(.36,.66,.6,1)]',
|
|
38
|
-
statusStyles[status],
|
|
39
|
-
disabled && 'cursor-not-allowed opacity-70',
|
|
40
|
-
)}
|
|
41
|
-
disabled={disabled}
|
|
42
|
-
>
|
|
43
|
-
<span
|
|
44
|
-
className={cn(
|
|
45
|
-
'-mt-[.125rem] transition-transform duration-200 ease-[cubic-bezier(.36,.66,.6,1)]',
|
|
46
|
-
'rotate-0 group-data-[state=open]:rotate-90',
|
|
47
|
-
)}
|
|
48
|
-
>
|
|
49
|
-
<svg
|
|
50
|
-
fill="none"
|
|
51
|
-
height="15"
|
|
52
|
-
viewBox="0 0 15 15"
|
|
53
|
-
width="15"
|
|
54
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
55
|
-
>
|
|
56
|
-
<path
|
|
57
|
-
clipRule="evenodd"
|
|
58
|
-
d="M6.1584 3.13508C6.35985 2.94621 6.67627 2.95642 6.86514 3.15788L10.6151 7.15788C10.7954 7.3502 10.7954 7.64949 10.6151 7.84182L6.86514 11.8418C6.67627 12.0433 6.35985 12.0535 6.1584 11.8646C5.95694 11.6757 5.94673 11.3593 6.1356 11.1579L9.565 7.49985L6.1356 3.84182C5.94673 3.64036 5.95694 3.32394 6.1584 3.13508Z"
|
|
59
|
-
fill="currentColor"
|
|
60
|
-
fillRule="evenodd"
|
|
61
|
-
/>
|
|
62
|
-
</svg>
|
|
63
|
-
</span>
|
|
64
|
-
<div className="flex flex-1 items-center gap-1 font-bold text-[.625rem] uppercase tracking-wide">
|
|
65
|
-
{label}
|
|
66
|
-
</div>
|
|
67
|
-
</Collapsible.Trigger>
|
|
68
|
-
{children ? (
|
|
69
|
-
<Collapsible.Content>
|
|
70
|
-
<ol className="mt-2 mb-1 flex list-none flex-col gap-4">
|
|
71
|
-
{children}
|
|
72
|
-
</ol>
|
|
73
|
-
</Collapsible.Content>
|
|
74
|
-
) : null}
|
|
75
|
-
</Collapsible.Root>
|
|
76
|
-
);
|
|
77
|
-
};
|
|
78
|
-
|
|
79
|
-
type ResultProps = {
|
|
80
|
-
status: ResultStatus;
|
|
81
|
-
} & ComponentProps<typeof motion.li>;
|
|
82
|
-
|
|
83
|
-
const resultAnimation = {
|
|
84
|
-
hidden: { opacity: 0, y: 10 },
|
|
85
|
-
visible: {
|
|
86
|
-
opacity: 1,
|
|
87
|
-
y: 0,
|
|
88
|
-
transition: { duration: 0.6, ease: 'easeOut', staggerChildren: 0.1 },
|
|
89
|
-
},
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
export const Result = ({ children, status, ...rest }: ResultProps) => {
|
|
93
|
-
return (
|
|
94
|
-
<AnimatePresence mode="wait">
|
|
95
|
-
<motion.li
|
|
96
|
-
data-status={status}
|
|
97
|
-
initial="hidden"
|
|
98
|
-
layout
|
|
99
|
-
variants={resultAnimation}
|
|
100
|
-
animate="visible"
|
|
101
|
-
{...rest}
|
|
102
|
-
className={cn(
|
|
103
|
-
'group/item relative w-full rounded-md p-2 pl-4 transition-colors duration-300 ease-out hover:bg-slate-5',
|
|
104
|
-
rest.className,
|
|
105
|
-
)}
|
|
106
|
-
>
|
|
107
|
-
{children}
|
|
108
|
-
</motion.li>
|
|
109
|
-
</AnimatePresence>
|
|
110
|
-
);
|
|
111
|
-
};
|
|
112
|
-
|
|
113
|
-
const titleStatusAnimation = {
|
|
114
|
-
hidden: { opacity: 0, y: 5 },
|
|
115
|
-
visible: {
|
|
116
|
-
opacity: 1,
|
|
117
|
-
y: 0,
|
|
118
|
-
transition: { duration: 0.4, ease: 'easeOut' },
|
|
119
|
-
},
|
|
120
|
-
};
|
|
121
|
-
|
|
122
|
-
interface ResultStatusDescriptionProps {
|
|
123
|
-
children: React.ReactNode;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
Result.StatusDescription = ({ children }: ResultStatusDescriptionProps) => {
|
|
127
|
-
return (
|
|
128
|
-
<motion.div
|
|
129
|
-
className="mt-1 font-semibold text-[.625rem] uppercase"
|
|
130
|
-
variants={titleStatusAnimation}
|
|
131
|
-
>
|
|
132
|
-
{children}
|
|
133
|
-
</motion.div>
|
|
134
|
-
);
|
|
135
|
-
};
|
|
136
|
-
|
|
137
|
-
interface ResultTitleProps {
|
|
138
|
-
children: React.ReactNode;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
Result.Title = ({ children }: ResultTitleProps) => {
|
|
142
|
-
return (
|
|
143
|
-
<motion.div
|
|
144
|
-
className="flex w-full items-center gap-2 text-xs group-data-[status=error]/item:text-red-400 group-data-[status=success]/item:text-green-400 group-data-[status=warning]/item:text-yellow-300 "
|
|
145
|
-
variants={titleStatusAnimation}
|
|
146
|
-
>
|
|
147
|
-
{children}
|
|
148
|
-
</motion.div>
|
|
149
|
-
);
|
|
150
|
-
};
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import Link from 'next/link';
|
|
2
|
-
import { useSearchParams } from 'next/navigation';
|
|
3
|
-
|
|
4
|
-
interface CodePreviewLineLinkProps {
|
|
5
|
-
line: number;
|
|
6
|
-
column: number;
|
|
7
|
-
|
|
8
|
-
type: 'react' | 'html';
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export const CodePreviewLineLink = ({
|
|
12
|
-
line,
|
|
13
|
-
column,
|
|
14
|
-
type,
|
|
15
|
-
}: CodePreviewLineLinkProps) => {
|
|
16
|
-
const searchParams = useSearchParams();
|
|
17
|
-
|
|
18
|
-
const newSearchParams = new URLSearchParams(searchParams);
|
|
19
|
-
newSearchParams.set('view', 'source');
|
|
20
|
-
if (type === 'html') {
|
|
21
|
-
newSearchParams.set('lang', 'markup');
|
|
22
|
-
} else if (type === 'react') {
|
|
23
|
-
newSearchParams.set('lang', 'jsx');
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
const fragmentIdentifier = `#L${line}`;
|
|
27
|
-
|
|
28
|
-
return (
|
|
29
|
-
<Link
|
|
30
|
-
href={{
|
|
31
|
-
search: newSearchParams.toString(),
|
|
32
|
-
hash: fragmentIdentifier,
|
|
33
|
-
}}
|
|
34
|
-
scroll={false}
|
|
35
|
-
className="appearance-none underline mx-2"
|
|
36
|
-
>
|
|
37
|
-
L{line.toString().padStart(2, '0')}
|
|
38
|
-
</Link>
|
|
39
|
-
);
|
|
40
|
-
};
|