react-email 3.0.7 → 4.0.0-alpha.1

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.
Files changed (99) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/cli/index.js +10 -4
  3. package/dist/cli/index.mjs +9 -3
  4. package/dist/preview/.next/BUILD_ID +1 -1
  5. package/dist/preview/.next/app-build-manifest.json +14 -12
  6. package/dist/preview/.next/build-manifest.json +3 -3
  7. package/dist/preview/.next/cache/.rscinfo +1 -1
  8. package/dist/preview/.next/cache/webpack/client-production/0.pack +0 -0
  9. package/dist/preview/.next/cache/webpack/client-production/index.pack +0 -0
  10. package/dist/preview/.next/cache/webpack/edge-server-production/index.pack +0 -0
  11. package/dist/preview/.next/cache/webpack/server-production/0.pack +0 -0
  12. package/dist/preview/.next/cache/webpack/server-production/index.pack +0 -0
  13. package/dist/preview/.next/next-minimal-server.js.nft.json +1 -1
  14. package/dist/preview/.next/next-server.js.nft.json +1 -1
  15. package/dist/preview/.next/prerender-manifest.json +1 -1
  16. package/dist/preview/.next/required-server-files.json +1 -1
  17. package/dist/preview/.next/server/app/_not-found/page.js +1 -1
  18. package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  19. package/dist/preview/.next/server/app/favicon.ico/route.js +1 -1
  20. package/dist/preview/.next/server/app/page.js +1 -1
  21. package/dist/preview/.next/server/app/page.js.nft.json +1 -1
  22. package/dist/preview/.next/server/app/page_client-reference-manifest.js +1 -1
  23. package/dist/preview/.next/server/app/preview/[...slug]/page.js +5 -5
  24. package/dist/preview/.next/server/app/preview/[...slug]/page.js.nft.json +1 -1
  25. package/dist/preview/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +1 -1
  26. package/dist/preview/.next/server/chunks/196.js +1 -1
  27. package/dist/preview/.next/server/chunks/282.js +15 -0
  28. package/dist/preview/.next/server/chunks/667.js +1 -0
  29. package/dist/preview/.next/server/middleware-build-manifest.js +1 -1
  30. package/dist/preview/.next/server/next-font-manifest.js +1 -1
  31. package/dist/preview/.next/server/next-font-manifest.json +1 -1
  32. package/dist/preview/.next/server/pages/500.html +1 -1
  33. package/dist/preview/.next/server/server-reference-manifest.js +1 -1
  34. package/dist/preview/.next/server/server-reference-manifest.json +1 -1
  35. package/dist/preview/.next/server/webpack-runtime.js +1 -1
  36. package/dist/preview/.next/static/chunks/207-7ab46c2d84f60fed.js +1 -0
  37. package/dist/preview/.next/static/chunks/490-9a10c001ec2dffb2.js +1 -0
  38. package/dist/preview/.next/static/chunks/afa401a5-9ebf2515b1397993.js +6 -0
  39. package/dist/preview/.next/static/chunks/app/layout-f1bad3fcfbc7eb6b.js +1 -0
  40. package/dist/preview/.next/static/chunks/app/page-800163ba6c6d943d.js +1 -0
  41. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-5b5c4557fc89db64.js +1 -0
  42. package/dist/preview/.next/static/chunks/{main-app-771a0fc4ad5aa154.js → main-app-d1b0aa870bcfb13e.js} +1 -1
  43. package/dist/preview/.next/static/css/d6c4def4cc3fb858.css +3 -0
  44. package/dist/preview/.next/trace +22 -21
  45. package/dist/preview/.next/types/app/layout.ts +1 -1
  46. package/dist/preview/.next/types/app/preview/[...slug]/page.ts +1 -1
  47. package/package.json +8 -2
  48. package/src/actions/email-validation/check-images.spec.tsx +90 -0
  49. package/src/actions/email-validation/check-images.ts +142 -0
  50. package/src/actions/email-validation/check-links.spec.tsx +92 -0
  51. package/src/actions/email-validation/check-links.ts +91 -0
  52. package/src/actions/email-validation/get-line-and-column-from-index.spec.ts +22 -0
  53. package/src/actions/email-validation/get-line-and-column-from-index.ts +43 -0
  54. package/src/actions/email-validation/quick-fetch.ts +12 -0
  55. package/src/animated-icons-data/help.json +1082 -0
  56. package/src/animated-icons-data/link.json +1309 -0
  57. package/src/animated-icons-data/load.json +443 -0
  58. package/src/animated-icons-data/mail.json +1320 -0
  59. package/src/app/globals.css +0 -24
  60. package/src/app/layout.tsx +6 -2
  61. package/src/app/page.tsx +8 -9
  62. package/src/app/preview/[...slug]/page.tsx +1 -0
  63. package/src/app/preview/[...slug]/preview.tsx +3 -3
  64. package/src/app/preview/[...slug]/rendering-error.tsx +6 -6
  65. package/src/components/button.tsx +53 -42
  66. package/src/components/code-container.tsx +6 -6
  67. package/src/components/code-snippet.tsx +11 -0
  68. package/src/components/code.tsx +4 -4
  69. package/src/components/icons/icon-button.tsx +1 -1
  70. package/src/components/icons/icon-circle-check.tsx +21 -0
  71. package/src/components/icons/icon-circle-close.tsx +17 -0
  72. package/src/components/icons/icon-circle-warning.tsx +17 -0
  73. package/src/components/icons/icon-email.tsx +18 -0
  74. package/src/components/icons/icon-image.tsx +19 -0
  75. package/src/components/icons/icon-link.tsx +14 -0
  76. package/src/components/icons/icon-stamp.tsx +14 -0
  77. package/src/components/send.tsx +9 -9
  78. package/src/components/shell.tsx +32 -34
  79. package/src/components/sidebar/checking-results.tsx +150 -0
  80. package/src/components/sidebar/{sidebar-directory-children.tsx → file-tree-directory-children.tsx} +19 -15
  81. package/src/components/sidebar/{sidebar-directory.tsx → file-tree-directory.tsx} +9 -10
  82. package/src/components/sidebar/file-tree.tsx +31 -0
  83. package/src/components/sidebar/image-checker.tsx +161 -0
  84. package/src/components/sidebar/link-checker.tsx +151 -0
  85. package/src/components/sidebar/sidebar.tsx +344 -22
  86. package/src/components/tooltip-content.tsx +2 -2
  87. package/src/components/topbar.tsx +13 -16
  88. package/src/hooks/use-icon-animation.ts +41 -0
  89. package/tsconfig.json +1 -0
  90. package/dist/preview/.next/server/chunks/693.js +0 -1
  91. package/dist/preview/.next/server/chunks/720.js +0 -10
  92. package/dist/preview/.next/static/chunks/12-b9450aa0845e7574.js +0 -1
  93. package/dist/preview/.next/static/chunks/154-f7f86c8589140c56.js +0 -1
  94. package/dist/preview/.next/static/chunks/app/layout-6d33e2ffcffd58d4.js +0 -1
  95. package/dist/preview/.next/static/chunks/app/page-43a07e4b8c5c0840.js +0 -1
  96. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-71202390d5f9a34b.js +0 -1
  97. package/dist/preview/.next/static/css/a34876a6c565fff8.css +0 -3
  98. /package/dist/preview/.next/static/{RZga3-2qKYa2RLg-hxunV → Mn2FuRztLqr32yO8CKHi9}/_buildManifest.js +0 -0
  99. /package/dist/preview/.next/static/{RZga3-2qKYa2RLg-hxunV → Mn2FuRztLqr32yO8CKHi9}/_ssgManifest.js +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.