@bigbinary/neeto-molecules 4.0.124 → 4.0.126

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 (57) hide show
  1. package/dist/CopyToClipboardButton.js +11 -5
  2. package/dist/CopyToClipboardButton.js.map +1 -1
  3. package/dist/EmailForm.js +102 -118
  4. package/dist/EmailForm.js.map +1 -1
  5. package/dist/EmailPreview.js +88 -71
  6. package/dist/EmailPreview.js.map +1 -1
  7. package/dist/ErrorPage.js +2 -0
  8. package/dist/ErrorPage.js.map +1 -1
  9. package/dist/SendToFields.js +31 -19
  10. package/dist/SendToFields.js.map +1 -1
  11. package/dist/cjs/CopyToClipboardButton.js +10 -4
  12. package/dist/cjs/CopyToClipboardButton.js.map +1 -1
  13. package/dist/cjs/EmailForm.js +100 -116
  14. package/dist/cjs/EmailForm.js.map +1 -1
  15. package/dist/cjs/EmailPreview.js +106 -71
  16. package/dist/cjs/EmailPreview.js.map +1 -1
  17. package/dist/cjs/ErrorPage.js +2 -0
  18. package/dist/cjs/ErrorPage.js.map +1 -1
  19. package/dist/cjs/SendToFields.js +31 -19
  20. package/dist/cjs/SendToFields.js.map +1 -1
  21. package/package.json +1 -1
  22. package/src/translations/ar.json +9 -5
  23. package/src/translations/bg.json +18 -7
  24. package/src/translations/ca.json +9 -5
  25. package/src/translations/cs.json +9 -5
  26. package/src/translations/da.json +9 -5
  27. package/src/translations/de.json +9 -5
  28. package/src/translations/en.json +9 -5
  29. package/src/translations/es-MX.json +9 -5
  30. package/src/translations/es.json +9 -5
  31. package/src/translations/et.json +9 -5
  32. package/src/translations/fi.json +9 -5
  33. package/src/translations/fil.json +9 -5
  34. package/src/translations/fr.json +9 -5
  35. package/src/translations/he.json +9 -5
  36. package/src/translations/hi.json +18 -7
  37. package/src/translations/hr.json +9 -5
  38. package/src/translations/id.json +9 -5
  39. package/src/translations/it.json +9 -5
  40. package/src/translations/ja.json +9 -5
  41. package/src/translations/ko.json +9 -5
  42. package/src/translations/nl.json +9 -5
  43. package/src/translations/pl.json +9 -5
  44. package/src/translations/pt-BR.json +9 -5
  45. package/src/translations/pt.json +9 -5
  46. package/src/translations/ro.json +9 -5
  47. package/src/translations/ru.json +7 -3
  48. package/src/translations/sk.json +9 -5
  49. package/src/translations/sl.json +9 -5
  50. package/src/translations/sv.json +9 -5
  51. package/src/translations/th.json +18 -7
  52. package/src/translations/tr.json +9 -5
  53. package/src/translations/uk.json +7 -3
  54. package/src/translations/vi.json +9 -5
  55. package/src/translations/zh-CN.json +7 -3
  56. package/src/translations/zh-TW.json +7 -3
  57. package/types/EmailForm.d.ts +5 -3
@@ -681,7 +681,8 @@
681
681
  "from": "發件人",
682
682
  "subject": "主題",
683
683
  "poweredBy": "由 neeto 提供支持",
684
- "logoAltText": "標誌"
684
+ "logoAltText": "標誌",
685
+ "previewMessage": "這是您的電子郵件預覽"
685
686
  },
686
687
  "responsiveDevicePicker": {
687
688
  "desktop": "桌面",
@@ -810,14 +811,17 @@
810
811
  "ccBcc": "抄送/密件抄送",
811
812
  "cc": "抄送",
812
813
  "bCc": "密件抄送",
813
- "resetToDefault": "重置為默認值"
814
+ "resetToDefault": "重置為默認值",
815
+ "previewEmail": "電子郵件預覽"
814
816
  },
815
817
  "tooltips": {
816
818
  "replyTo": "'回覆至' 是將要發送的電子郵件的回覆地址。"
817
819
  },
818
820
  "placeholders": {
819
821
  "emailPlaceholder": "寫入電子郵件地址",
820
- "commaSeparatedEmails": "使用逗號 (',') 添加多個電子郵件地址"
822
+ "commaSeparatedEmails": "使用逗號 (',') 添加多個電子郵件地址",
823
+ "subject": "電子郵件主題",
824
+ "message": "按 `/` 以獲取格式選項"
821
825
  }
822
826
  },
823
827
  "calendarView": {
@@ -68,11 +68,13 @@ interface InitialValues {
68
68
  *
69
69
  * validate input, and handle save or cancel actions.
70
70
  *
71
- * The component works with a preview feature that shows how the email will look in
71
+ * The component works with a preview feature that shows how the email will look.
72
72
  *
73
- * real time. As users add or change content in the template, the preview updates
73
+ * When headerProps are provided, a "Preview email" button appears in the header
74
74
  *
75
- * instantly, so they can see exactly how the email will appear before saving it.
75
+ * that opens a modal displaying the email preview. The preview shows the current
76
+ *
77
+ * form values including subject, message, recipients, and reply-to information.
76
78
  *
77
79
  * ![image](https://github.com/user-attachments/assets/c8fd8e68-ddd2-4652-b3fb-175ac098e1a0|height=200|width=300)
78
80
  *