@intlayer/design-system 9.0.0-canary.0 → 9.0.0-canary.2

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 (249) hide show
  1. package/dist/esm/api/hooks/ai.mjs +20 -1
  2. package/dist/esm/api/hooks/ai.mjs.map +1 -1
  3. package/dist/esm/api/hooks/asset.mjs +78 -0
  4. package/dist/esm/api/hooks/asset.mjs.map +1 -0
  5. package/dist/esm/api/index.mjs +6 -5
  6. package/dist/esm/api/useIntlayerAPI.mjs +6 -1
  7. package/dist/esm/api/useIntlayerAPI.mjs.map +1 -1
  8. package/dist/esm/components/Command/index.mjs +8 -8
  9. package/dist/esm/components/Command/index.mjs.map +1 -1
  10. package/dist/esm/components/ContentEditor/ContentEditorTextArea.mjs +1 -1
  11. package/dist/esm/components/DictionaryFieldEditor/ContentEditor.mjs +132 -35
  12. package/dist/esm/components/DictionaryFieldEditor/ContentEditor.mjs.map +1 -1
  13. package/dist/esm/components/DictionaryFieldEditor/ContentEditorView/TextEditor.mjs +33 -11
  14. package/dist/esm/components/DictionaryFieldEditor/ContentEditorView/TextEditor.mjs.map +1 -1
  15. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs +146 -35
  16. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs.map +1 -1
  17. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs +308 -0
  18. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs.map +1 -1
  19. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.mjs +12 -2
  20. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.mjs.map +1 -1
  21. package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs +460 -20
  22. package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs.map +1 -1
  23. package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.mjs +506 -0
  24. package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.mjs.map +1 -1
  25. package/dist/esm/components/DictionaryFieldEditor/DictionaryFieldEditor.mjs +10 -6
  26. package/dist/esm/components/DictionaryFieldEditor/DictionaryFieldEditor.mjs.map +1 -1
  27. package/dist/esm/components/DictionaryFieldEditor/NavigationView/NavigationViewNode.mjs +1 -1
  28. package/dist/esm/components/DictionaryFieldEditor/SaveForm/SaveForm.mjs +9 -9
  29. package/dist/esm/components/DictionaryFieldEditor/SaveForm/SaveForm.mjs.map +1 -1
  30. package/dist/esm/components/DictionaryFieldEditor/StructureView/StructureView.mjs +2 -2
  31. package/dist/esm/components/DictionaryFieldEditor/StructureView/StructureView.mjs.map +1 -1
  32. package/dist/esm/components/DictionaryFieldEditor/contentEditor.content.mjs +79 -0
  33. package/dist/esm/components/DictionaryFieldEditor/contentEditor.content.mjs.map +1 -0
  34. package/dist/esm/components/Form/Form.mjs +3 -43
  35. package/dist/esm/components/Form/Form.mjs.map +1 -1
  36. package/dist/esm/components/Form/elements/FormElement.mjs +2 -3
  37. package/dist/esm/components/Form/elements/FormElement.mjs.map +1 -1
  38. package/dist/esm/components/Form/elements/MultiselectElement.mjs +2 -3
  39. package/dist/esm/components/Form/elements/MultiselectElement.mjs.map +1 -1
  40. package/dist/esm/components/Form/elements/OTPElement.mjs +3 -4
  41. package/dist/esm/components/Form/elements/OTPElement.mjs.map +1 -1
  42. package/dist/esm/components/Form/elements/SelectElement.mjs +2 -3
  43. package/dist/esm/components/Form/elements/SelectElement.mjs.map +1 -1
  44. package/dist/esm/components/Form/elements/SwitchSelectorElement.mjs +2 -3
  45. package/dist/esm/components/Form/elements/SwitchSelectorElement.mjs.map +1 -1
  46. package/dist/esm/components/Form/index.mjs +21 -2
  47. package/dist/esm/components/Form/layout/FormItemLayout.mjs +8 -5
  48. package/dist/esm/components/Form/layout/FormItemLayout.mjs.map +1 -1
  49. package/dist/esm/components/LanguageBackground/LanguageBackground.mjs +3 -8
  50. package/dist/esm/components/LanguageBackground/LanguageBackground.mjs.map +1 -1
  51. package/dist/esm/components/LocaleSwitcherContentDropDown/LocaleSwitcherContent.mjs +1 -1
  52. package/dist/esm/components/MarkDownRender/MarkDownRender.mjs +1 -1
  53. package/dist/esm/components/MarkDownRender/MarkDownRender.mjs.map +1 -1
  54. package/dist/esm/components/MarkdownEditor/MarkdownEditor.mjs +113 -0
  55. package/dist/esm/components/MarkdownEditor/MarkdownEditor.mjs.map +1 -0
  56. package/dist/esm/components/MarkdownEditor/extensions.mjs +103 -0
  57. package/dist/esm/components/MarkdownEditor/extensions.mjs.map +1 -0
  58. package/dist/esm/components/MarkdownEditor/generative/AICompletionCommands.mjs +51 -0
  59. package/dist/esm/components/MarkdownEditor/generative/AICompletionCommands.mjs.map +1 -0
  60. package/dist/esm/components/MarkdownEditor/generative/AISelector.mjs +100 -0
  61. package/dist/esm/components/MarkdownEditor/generative/AISelector.mjs.map +1 -0
  62. package/dist/esm/components/MarkdownEditor/generative/AISelectorCommands.mjs +81 -0
  63. package/dist/esm/components/MarkdownEditor/generative/AISelectorCommands.mjs.map +1 -0
  64. package/dist/esm/components/MarkdownEditor/generative/GenerativeMenuSwitch.mjs +47 -0
  65. package/dist/esm/components/MarkdownEditor/generative/GenerativeMenuSwitch.mjs.map +1 -0
  66. package/dist/esm/components/MarkdownEditor/generative/useAICompletion.mjs +83 -0
  67. package/dist/esm/components/MarkdownEditor/generative/useAICompletion.mjs.map +1 -0
  68. package/dist/esm/components/MarkdownEditor/imageUpload.mjs +47 -0
  69. package/dist/esm/components/MarkdownEditor/imageUpload.mjs.map +1 -0
  70. package/dist/esm/components/MarkdownEditor/index.mjs +4 -0
  71. package/dist/esm/components/MarkdownEditor/markdownEditor.content.mjs +1140 -0
  72. package/dist/esm/components/MarkdownEditor/markdownEditor.content.mjs.map +1 -0
  73. package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble-item.mjs +20 -0
  74. package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble-item.mjs.map +1 -0
  75. package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble.mjs +39 -0
  76. package/dist/esm/components/MarkdownEditor/novel/components/editor-bubble.mjs.map +1 -0
  77. package/dist/esm/components/MarkdownEditor/novel/components/editor-command-item.mjs +25 -0
  78. package/dist/esm/components/MarkdownEditor/novel/components/editor-command-item.mjs.map +1 -0
  79. package/dist/esm/components/MarkdownEditor/novel/components/editor-command.mjs +61 -0
  80. package/dist/esm/components/MarkdownEditor/novel/components/editor-command.mjs.map +1 -0
  81. package/dist/esm/components/MarkdownEditor/novel/components/editor.mjs +27 -0
  82. package/dist/esm/components/MarkdownEditor/novel/components/editor.mjs.map +1 -0
  83. package/dist/esm/components/MarkdownEditor/novel/components/index.mjs +8 -0
  84. package/dist/esm/components/MarkdownEditor/novel/extensions/ai-highlight.mjs +74 -0
  85. package/dist/esm/components/MarkdownEditor/novel/extensions/ai-highlight.mjs.map +1 -0
  86. package/dist/esm/components/MarkdownEditor/novel/extensions/custom-keymap.mjs +37 -0
  87. package/dist/esm/components/MarkdownEditor/novel/extensions/custom-keymap.mjs.map +1 -0
  88. package/dist/esm/components/MarkdownEditor/novel/extensions/image-resizer.mjs +49 -0
  89. package/dist/esm/components/MarkdownEditor/novel/extensions/image-resizer.mjs.map +1 -0
  90. package/dist/esm/components/MarkdownEditor/novel/extensions/index.mjs +51 -0
  91. package/dist/esm/components/MarkdownEditor/novel/extensions/index.mjs.map +1 -0
  92. package/dist/esm/components/MarkdownEditor/novel/extensions/slash-command.mjs +79 -0
  93. package/dist/esm/components/MarkdownEditor/novel/extensions/slash-command.mjs.map +1 -0
  94. package/dist/esm/components/MarkdownEditor/novel/extensions/updated-image.mjs +17 -0
  95. package/dist/esm/components/MarkdownEditor/novel/extensions/updated-image.mjs.map +1 -0
  96. package/dist/esm/components/MarkdownEditor/novel/index.mjs +17 -0
  97. package/dist/esm/components/MarkdownEditor/novel/plugins/index.mjs +3 -0
  98. package/dist/esm/components/MarkdownEditor/novel/plugins/upload-images.mjs +92 -0
  99. package/dist/esm/components/MarkdownEditor/novel/plugins/upload-images.mjs.map +1 -0
  100. package/dist/esm/components/MarkdownEditor/novel/utils/atoms.mjs +39 -0
  101. package/dist/esm/components/MarkdownEditor/novel/utils/atoms.mjs.map +1 -0
  102. package/dist/esm/components/MarkdownEditor/novel/utils/index.mjs +38 -0
  103. package/dist/esm/components/MarkdownEditor/novel/utils/index.mjs.map +1 -0
  104. package/dist/esm/components/MarkdownEditor/selectors/ColorSelector.mjs +176 -0
  105. package/dist/esm/components/MarkdownEditor/selectors/ColorSelector.mjs.map +1 -0
  106. package/dist/esm/components/MarkdownEditor/selectors/LinkSelector.mjs +95 -0
  107. package/dist/esm/components/MarkdownEditor/selectors/LinkSelector.mjs.map +1 -0
  108. package/dist/esm/components/MarkdownEditor/selectors/NodeSelector.mjs +139 -0
  109. package/dist/esm/components/MarkdownEditor/selectors/NodeSelector.mjs.map +1 -0
  110. package/dist/esm/components/MarkdownEditor/selectors/TextButtons.mjs +81 -0
  111. package/dist/esm/components/MarkdownEditor/selectors/TextButtons.mjs.map +1 -0
  112. package/dist/esm/components/MarkdownEditor/slashCommand.mjs +161 -0
  113. package/dist/esm/components/MarkdownEditor/slashCommand.mjs.map +1 -0
  114. package/dist/esm/components/Modal/Modal.mjs +2 -2
  115. package/dist/esm/components/Navbar/MobileNavbar.mjs +1 -1
  116. package/dist/esm/components/Pagination/Pagination.mjs +1 -1
  117. package/dist/esm/components/Pattern/GridDistortionPattern.mjs +275 -0
  118. package/dist/esm/components/Pattern/GridDistortionPattern.mjs.map +1 -0
  119. package/dist/esm/components/Pattern/index.mjs +2 -1
  120. package/dist/esm/components/RightDrawer/RightDrawer.mjs +3 -3
  121. package/dist/esm/components/Tab/Tab.mjs +1 -1
  122. package/dist/esm/components/Table/Table.mjs +1 -1
  123. package/dist/esm/components/Table/Table.mjs.map +1 -1
  124. package/dist/esm/components/Tag/index.mjs +0 -9
  125. package/dist/esm/components/Tag/index.mjs.map +1 -1
  126. package/dist/esm/components/Toaster/Toast.mjs +1 -1
  127. package/dist/esm/components/Toaster/Toast.mjs.map +1 -1
  128. package/dist/esm/components/index.mjs +27 -6
  129. package/dist/esm/hooks/index.mjs +8 -8
  130. package/dist/esm/hooks/useIsMounted.mjs +4 -2
  131. package/dist/esm/hooks/useIsMounted.mjs.map +1 -1
  132. package/dist/esm/routes.mjs +2 -1
  133. package/dist/esm/routes.mjs.map +1 -1
  134. package/dist/types/api/hooks/ai.d.ts +5 -1
  135. package/dist/types/api/hooks/ai.d.ts.map +1 -1
  136. package/dist/types/api/hooks/asset.d.ts +27 -0
  137. package/dist/types/api/hooks/asset.d.ts.map +1 -0
  138. package/dist/types/api/hooks/audit.d.ts +1 -1
  139. package/dist/types/api/index.d.ts +4 -3
  140. package/dist/types/api/useIntlayerAPI.d.ts +15 -3
  141. package/dist/types/api/useIntlayerAPI.d.ts.map +1 -1
  142. package/dist/types/components/Badge/index.d.ts +1 -1
  143. package/dist/types/components/Breadcrumb/index.d.ts +1 -1
  144. package/dist/types/components/Button/Button.d.ts +3 -3
  145. package/dist/types/components/CollapsibleTable/CollapsibleTable.d.ts +2 -2
  146. package/dist/types/components/Command/index.d.ts.map +1 -1
  147. package/dist/types/components/Container/index.d.ts +1 -1
  148. package/dist/types/components/DictionaryFieldEditor/ContentEditor.d.ts.map +1 -1
  149. package/dist/types/components/DictionaryFieldEditor/ContentEditorView/TextEditor.d.ts.map +1 -1
  150. package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.d.ts.map +1 -1
  151. package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts +308 -0
  152. package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts.map +1 -1
  153. package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.d.ts +12 -1
  154. package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.d.ts.map +1 -1
  155. package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.d.ts +2 -0
  156. package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.d.ts.map +1 -1
  157. package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts +506 -0
  158. package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts.map +1 -1
  159. package/dist/types/components/DictionaryFieldEditor/DictionaryFieldEditor.d.ts +2 -1
  160. package/dist/types/components/DictionaryFieldEditor/DictionaryFieldEditor.d.ts.map +1 -1
  161. package/dist/types/components/DictionaryFieldEditor/contentEditor.content.d.ts +80 -0
  162. package/dist/types/components/DictionaryFieldEditor/contentEditor.content.d.ts.map +1 -0
  163. package/dist/types/components/Form/Form.d.ts +27 -47
  164. package/dist/types/components/Form/Form.d.ts.map +1 -1
  165. package/dist/types/components/Form/elements/FormElement.d.ts.map +1 -1
  166. package/dist/types/components/Form/elements/MultiselectElement.d.ts.map +1 -1
  167. package/dist/types/components/Form/elements/OTPElement.d.ts.map +1 -1
  168. package/dist/types/components/Form/elements/SelectElement.d.ts.map +1 -1
  169. package/dist/types/components/Form/elements/SwitchSelectorElement.d.ts.map +1 -1
  170. package/dist/types/components/Form/index.d.ts +22 -3
  171. package/dist/types/components/Form/layout/FormItemLayout.d.ts.map +1 -1
  172. package/dist/types/components/Input/Checkbox.d.ts +3 -3
  173. package/dist/types/components/Input/Input.d.ts +1 -1
  174. package/dist/types/components/Input/Radio.d.ts +3 -3
  175. package/dist/types/components/LanguageBackground/LanguageBackground.d.ts.map +1 -1
  176. package/dist/types/components/Link/Link.d.ts +1 -1
  177. package/dist/types/components/MarkdownEditor/MarkdownEditor.d.ts +31 -0
  178. package/dist/types/components/MarkdownEditor/MarkdownEditor.d.ts.map +1 -0
  179. package/dist/types/components/MarkdownEditor/extensions.d.ts +11 -0
  180. package/dist/types/components/MarkdownEditor/extensions.d.ts.map +1 -0
  181. package/dist/types/components/MarkdownEditor/generative/AICompletionCommands.d.ts +18 -0
  182. package/dist/types/components/MarkdownEditor/generative/AICompletionCommands.d.ts.map +1 -0
  183. package/dist/types/components/MarkdownEditor/generative/AISelector.d.ts +22 -0
  184. package/dist/types/components/MarkdownEditor/generative/AISelector.d.ts.map +1 -0
  185. package/dist/types/components/MarkdownEditor/generative/AISelectorCommands.d.ts +17 -0
  186. package/dist/types/components/MarkdownEditor/generative/AISelectorCommands.d.ts.map +1 -0
  187. package/dist/types/components/MarkdownEditor/generative/GenerativeMenuSwitch.d.ts +26 -0
  188. package/dist/types/components/MarkdownEditor/generative/GenerativeMenuSwitch.d.ts.map +1 -0
  189. package/dist/types/components/MarkdownEditor/generative/useAICompletion.d.ts +30 -0
  190. package/dist/types/components/MarkdownEditor/generative/useAICompletion.d.ts.map +1 -0
  191. package/dist/types/components/MarkdownEditor/imageUpload.d.ts +29 -0
  192. package/dist/types/components/MarkdownEditor/imageUpload.d.ts.map +1 -0
  193. package/dist/types/components/MarkdownEditor/index.d.ts +3 -0
  194. package/dist/types/components/MarkdownEditor/markdownEditor.content.d.ts +1135 -0
  195. package/dist/types/components/MarkdownEditor/markdownEditor.content.d.ts.map +1 -0
  196. package/dist/types/components/MarkdownEditor/novel/components/editor-bubble-item.d.ts +14 -0
  197. package/dist/types/components/MarkdownEditor/novel/components/editor-bubble-item.d.ts.map +1 -0
  198. package/dist/types/components/MarkdownEditor/novel/components/editor-bubble.d.ts +18 -0
  199. package/dist/types/components/MarkdownEditor/novel/components/editor-bubble.d.ts.map +1 -0
  200. package/dist/types/components/MarkdownEditor/novel/components/editor-command-item.d.ts +28 -0
  201. package/dist/types/components/MarkdownEditor/novel/components/editor-command-item.d.ts.map +1 -0
  202. package/dist/types/components/MarkdownEditor/novel/components/editor-command.d.ts +34 -0
  203. package/dist/types/components/MarkdownEditor/novel/components/editor-command.d.ts.map +1 -0
  204. package/dist/types/components/MarkdownEditor/novel/components/editor.d.ts +23 -0
  205. package/dist/types/components/MarkdownEditor/novel/components/editor.d.ts.map +1 -0
  206. package/dist/types/components/MarkdownEditor/novel/components/index.d.ts +8 -0
  207. package/dist/types/components/MarkdownEditor/novel/extensions/ai-highlight.d.ts +36 -0
  208. package/dist/types/components/MarkdownEditor/novel/extensions/ai-highlight.d.ts.map +1 -0
  209. package/dist/types/components/MarkdownEditor/novel/extensions/custom-keymap.d.ts +17 -0
  210. package/dist/types/components/MarkdownEditor/novel/extensions/custom-keymap.d.ts.map +1 -0
  211. package/dist/types/components/MarkdownEditor/novel/extensions/image-resizer.d.ts +7 -0
  212. package/dist/types/components/MarkdownEditor/novel/extensions/image-resizer.d.ts.map +1 -0
  213. package/dist/types/components/MarkdownEditor/novel/extensions/index.d.ts +30 -0
  214. package/dist/types/components/MarkdownEditor/novel/extensions/index.d.ts.map +1 -0
  215. package/dist/types/components/MarkdownEditor/novel/extensions/slash-command.d.ts +38 -0
  216. package/dist/types/components/MarkdownEditor/novel/extensions/slash-command.d.ts.map +1 -0
  217. package/dist/types/components/MarkdownEditor/novel/extensions/updated-image.d.ts +8 -0
  218. package/dist/types/components/MarkdownEditor/novel/extensions/updated-image.d.ts.map +1 -0
  219. package/dist/types/components/MarkdownEditor/novel/index.d.ts +16 -0
  220. package/dist/types/components/MarkdownEditor/novel/plugins/index.d.ts +2 -0
  221. package/dist/types/components/MarkdownEditor/novel/plugins/upload-images.d.ts +22 -0
  222. package/dist/types/components/MarkdownEditor/novel/plugins/upload-images.d.ts.map +1 -0
  223. package/dist/types/components/MarkdownEditor/novel/utils/atoms.d.ts +21 -0
  224. package/dist/types/components/MarkdownEditor/novel/utils/atoms.d.ts.map +1 -0
  225. package/dist/types/components/MarkdownEditor/novel/utils/index.d.ts +10 -0
  226. package/dist/types/components/MarkdownEditor/novel/utils/index.d.ts.map +1 -0
  227. package/dist/types/components/MarkdownEditor/selectors/ColorSelector.d.ts +17 -0
  228. package/dist/types/components/MarkdownEditor/selectors/ColorSelector.d.ts.map +1 -0
  229. package/dist/types/components/MarkdownEditor/selectors/LinkSelector.d.ts +15 -0
  230. package/dist/types/components/MarkdownEditor/selectors/LinkSelector.d.ts.map +1 -0
  231. package/dist/types/components/MarkdownEditor/selectors/NodeSelector.d.ts +22 -0
  232. package/dist/types/components/MarkdownEditor/selectors/NodeSelector.d.ts.map +1 -0
  233. package/dist/types/components/MarkdownEditor/selectors/TextButtons.d.ts +11 -0
  234. package/dist/types/components/MarkdownEditor/selectors/TextButtons.d.ts.map +1 -0
  235. package/dist/types/components/MarkdownEditor/slashCommand.d.ts +29 -0
  236. package/dist/types/components/MarkdownEditor/slashCommand.d.ts.map +1 -0
  237. package/dist/types/components/Pattern/GridDistortionPattern.d.ts +15 -0
  238. package/dist/types/components/Pattern/GridDistortionPattern.d.ts.map +1 -0
  239. package/dist/types/components/Pattern/index.d.ts +2 -1
  240. package/dist/types/components/SwitchSelector/SwitchSelector.d.ts +1 -1
  241. package/dist/types/components/SwitchSelector/VerticalSwitchSelector.d.ts +1 -1
  242. package/dist/types/components/Tag/index.d.ts +2 -2
  243. package/dist/types/components/Tag/index.d.ts.map +1 -1
  244. package/dist/types/components/Toaster/Toast.d.ts +1 -1
  245. package/dist/types/components/index.d.ts +24 -3
  246. package/dist/types/routes.d.ts +2 -1
  247. package/dist/types/routes.d.ts.map +1 -1
  248. package/package.json +63 -32
  249. package/src/components/MarkdownEditor/markdown-editor.css +297 -0
@@ -41,10 +41,28 @@ import { ExpandCollapse, ExpandCollapseProps } from "./ExpandCollapse/ExpandColl
41
41
  import { Flag } from "./Flags/Flag.js";
42
42
  import { flags_d_exports } from "./Flags/flags.js";
43
43
  import { Footer, FooterLink, LinkGroup } from "./Footer/index.js";
44
- import { useForm } from "./Form/FormBase.js";
45
- import { useFormField } from "./Form/FormField.js";
46
44
  import { Form } from "./Form/Form.js";
45
+ import { useForm } from "./Form/FormBase.js";
46
+ import { FormControl } from "./Form/FormControl.js";
47
+ import { FormDescription } from "./Form/FormDescription.js";
48
+ import { FormField, useFormField } from "./Form/FormField.js";
49
+ import { FormItem } from "./Form/FormItem.js";
47
50
  import { Label, LabelProps } from "./Label/index.js";
51
+ import { FormMessage } from "./Form/FormMessage.js";
52
+ import { FormLabelLayout } from "./Form/layout/FormLabelLayout.js";
53
+ import { FormElement } from "./Form/elements/FormElement.js";
54
+ import { AutoSizedTextAreaElement } from "./Form/elements/AutoSizeTextAreaElement.js";
55
+ import { CheckboxElement } from "./Form/elements/CheckboxElement.js";
56
+ import { EditableFieldInputElement } from "./Form/elements/EditableFieldInputElement.js";
57
+ import { EditableFieldTextAreaElement } from "./Form/elements/EditableFieldTextAreaElement.js";
58
+ import { InputElement } from "./Form/elements/InputElement.js";
59
+ import { InputPasswordElement } from "./Form/elements/InputPasswordElement.js";
60
+ import { MultiSelectElement } from "./Form/elements/MultiselectElement.js";
61
+ import { OTPElement } from "./Form/elements/OTPElement.js";
62
+ import { SearchInputElement } from "./Form/elements/SearchInputElement.js";
63
+ import { SelectElement } from "./Form/elements/SelectElement.js";
64
+ import { SwitchSelectorElement } from "./Form/elements/SwitchSelectorElement.js";
65
+ import { TextAreaElement } from "./Form/elements/TextAreaElement.js";
48
66
  import { HTMLRenderer, getIntlayerHTMLOptions } from "./HTMLRender/HTMLRender.js";
49
67
  import { H1, H2, H3, H4, H5, H6, HeadingProps } from "./Headers/index.js";
50
68
  import { HeightResizer } from "./HeightResizer/index.js";
@@ -67,6 +85,8 @@ import { LogoTextOnly } from "./Logo/LogoTextOnly.js";
67
85
  import { LogoWithText } from "./Logo/LogoWithText.js";
68
86
  import { LogoWithTextBelow } from "./Logo/LogoWithTextBelow.js";
69
87
  import { MarkDownIframe } from "./MarkDownRender/MarkDownIframe.js";
88
+ import { CreateEditorUploadFnOptions, UploadImageFn, createEditorUploadFn } from "./MarkdownEditor/imageUpload.js";
89
+ import { MarkdownEditor, MarkdownEditorProps } from "./MarkdownEditor/MarkdownEditor.js";
70
90
  import { MaxHeightSmoother } from "./MaxHeightSmoother/index.js";
71
91
  import { MaxWidthSmoother } from "./MaxWidthSmoother/index.js";
72
92
  import { Modal, ModalSize } from "./Modal/Modal.js";
@@ -79,6 +99,7 @@ import { NumberItemsSelector, NumberItemsSelectorProps } from "./Pagination/Numb
79
99
  import { Pagination, PaginationProps, PaginationSize, PaginationVariant, paginationVariants } from "./Pagination/Pagination.js";
80
100
  import { ShowingResultsNumberItems, ShowingResultsNumberItemsProps } from "./Pagination/ShowingResultsNumberItems.js";
81
101
  import { DotPattern } from "./Pattern/DotPattern.js";
102
+ import { GridDistortionPattern } from "./Pattern/GridDistortionPattern.js";
82
103
  import { GridPattern } from "./Pattern/GridPattern.js";
83
104
  import { Spotlight } from "./Pattern/SpotLight.js";
84
105
  import { Detail, DetailProps, PopoverProps, PopoverStatic, PopoverType, PopoverXAlign, PopoverYAlign } from "./Popover/static.js";
@@ -121,4 +142,4 @@ import { Toaster } from "./Toaster/Toaster.js";
121
142
  import { reducer, toast, useToast } from "./Toaster/useToast.js";
122
143
  import { WithResizer } from "./WithResizer/index.js";
123
144
  import { MarkdownRenderer, ParsedMarkdown, baseMarkdownComponents, getIntlayerMarkdownOptions } from "./MarkDownRender/MarkDownRender.js";
124
- export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, BitbucketLogo, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Burger, Button, ButtonColor, ButtonProps, ButtonSize, ButtonTextAlign, ButtonVariant, Carousel, Checkbox, CheckboxColor, CheckboxProps, CheckboxSize, ClickOutsideDiv, ClickOutsideDivProps, Code, CodeBlock, CodeBlockProps, CodeCompAttributes, CodeDefault, CodeLanguage, CollapsibleTable, CollapsibleTableProps, Command, CommandRoot, Container, ContainerBackground, ContainerBorderColor, ContainerGap, ContainerPadding, ContainerProps, ContainerRoundedSize, ContainerSeparator, ContainerTransparency, ContentEditableTextArea, ContentEditableTextAreaHandle, ContentEditableTextAreaProps, ContentEditorInput, ContentEditorInputProps, ContentEditorProps, ContentEditorTextArea, ContentEditorTextAreaProps, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, DesktopNavbar, DesktopThemeSwitcher, Detail, DetailProps, DictionaryCreationForm, DictionaryEditor, DictionaryFieldEditor, DiscordLogo, DotPattern, DropDown, DropDownAlign, DropDownProps, DropDownType, DropDownYAlign, EditableFieldInput, EditableFieldTextArea, ExpandCollapse, ExpandCollapseProps, FacebookLogo, FileList, FileListProps, Flag, flags_d_exports as Flags, Footer, FooterLink, Form, GitHubLogo, GitLabLogo, GoogleLogo, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, Hr, IDE, IDEProps, InformationTag, Input, InputIndicator, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPassword, InputProps, InputSize, InputVariant, InstagramLogo, KeyList, KeyPathBreadcrumb, KeyboardScreenAdapter, KeyboardShortcut, KeyboardShortcutProps, KeyboardShortcutType, Label, LabelProps, LanguageBackground, LanguageSection, Link, LinkColor, LinkGroup, LinkProps, LinkRoundedSize, LinkSize, LinkUnderlined, LinkVariant, LinkedInLogo, Loader, LoaderProps, LocaleSwitcher, LocaleSwitcherContent, LocaleSwitcherContentProps, LocaleSwitcherContentProvider, LocaleSwitcherProps, Logo, LogoTextOnly, LogoWithText, LogoWithTextBelow, MarkDownIframe, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileNavbar, MobileThemeSwitcher, Modal, ModalSize, Modes, MultiSelect, Navbar, NumberItemsSelector, NumberItemsSelectorProps, OTPInput, OTPInputContext, OTPInputProps, Pagination, PaginationProps, PaginationSize, PaginationVariant, PanelProps, ParsedMarkdown, Popover, PopoverProps, PopoverStatic, PopoverType, PopoverXAlign, PopoverYAlign, PressableSpan, ProductHuntLogo, Radio, RadioColor, RadioProps, RadioSize, RenderProps, RightDrawer, SaveForm, SearchInput, Select, SelectContent, SelectContentPosition, SelectLabel, SelectSeparator, ShowingResultsNumberItems, ShowingResultsNumberItemsProps, SlotProps, SmartTable, SocialNetworks, Spotlight, Step, Steps, SwitchSelector, SwitchSelectorBaseProps, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, TableProps, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Td, TechLogo, TechLogoName, techLogos_d_exports as TechLogos, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, Th, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tr, TriggerProps, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, VerticalSwitchSelector, VerticalSwitchSelectorProps, WithResizer, XLogo, YoutubeLogo, badgeVariants, baseMarkdownComponents, buttonVariants, checkIsExternalLink, checkboxVariants, choiceVariant, containerVariants, defaultChoices, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, indicatorVariant, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, radioVariants, reducer, switchSelectorVariant, toast, toastVariants, traceKeys, useContentEditable, useCopyToClipboard, useForm, useFormField, useLocaleSwitcherContent, usePasswordManagerBadge, usePrevious, useRightDrawer, useToast, useVersionSwitcher };
145
+ export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, BitbucketLogo, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Burger, Button, ButtonColor, ButtonProps, ButtonSize, ButtonTextAlign, ButtonVariant, Carousel, Checkbox, CheckboxColor, CheckboxProps, CheckboxSize, ClickOutsideDiv, ClickOutsideDivProps, Code, CodeBlock, CodeBlockProps, CodeCompAttributes, CodeDefault, CodeLanguage, CollapsibleTable, CollapsibleTableProps, Command, CommandRoot, Container, ContainerBackground, ContainerBorderColor, ContainerGap, ContainerPadding, ContainerProps, ContainerRoundedSize, ContainerSeparator, ContainerTransparency, ContentEditableTextArea, ContentEditableTextAreaHandle, ContentEditableTextAreaProps, ContentEditorInput, ContentEditorInputProps, ContentEditorProps, ContentEditorTextArea, ContentEditorTextAreaProps, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, CreateEditorUploadFnOptions, DesktopNavbar, DesktopThemeSwitcher, Detail, DetailProps, DictionaryCreationForm, DictionaryEditor, DictionaryFieldEditor, DiscordLogo, DotPattern, DropDown, DropDownAlign, DropDownProps, DropDownType, DropDownYAlign, EditableFieldInput, EditableFieldTextArea, ExpandCollapse, ExpandCollapseProps, FacebookLogo, FileList, FileListProps, Flag, flags_d_exports as Flags, Footer, FooterLink, Form, AutoSizedTextAreaElement as FormAutoSizedTextArea, Button as FormButton, CheckboxElement as FormCheckbox, FormControl, FormDescription, EditableFieldInputElement as FormEditableFieldInput, EditableFieldTextAreaElement as FormEditableFieldTextArea, FormElement, FormField, InputElement as FormInput, InputPasswordElement as FormInputPassword, FormItem, FormLabelLayout as FormLabel, FormMessage, MultiSelectElement as FormMultiSelect, OTPElement as FormOTP, SearchInputElement as FormSearchInput, SelectElement as FormSelect, SwitchSelectorElement as FormSwitchSelector, TextAreaElement as FormTextArea, GitHubLogo, GitLabLogo, GoogleLogo, GridDistortionPattern, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, Hr, IDE, IDEProps, InformationTag, Input, InputIndicator, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPassword, InputProps, InputSize, InputVariant, InstagramLogo, KeyList, KeyPathBreadcrumb, KeyboardScreenAdapter, KeyboardShortcut, KeyboardShortcutProps, KeyboardShortcutType, Label, LabelProps, LanguageBackground, LanguageSection, Link, LinkColor, LinkGroup, LinkProps, LinkRoundedSize, LinkSize, LinkUnderlined, LinkVariant, LinkedInLogo, Loader, LoaderProps, LocaleSwitcher, LocaleSwitcherContent, LocaleSwitcherContentProps, LocaleSwitcherContentProvider, LocaleSwitcherProps, Logo, LogoTextOnly, LogoWithText, LogoWithTextBelow, MarkDownIframe, MarkdownEditor, MarkdownEditorProps, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileNavbar, MobileThemeSwitcher, Modal, ModalSize, Modes, MultiSelect, Navbar, NumberItemsSelector, NumberItemsSelectorProps, OTPInput, OTPInputContext, OTPInputProps, Pagination, PaginationProps, PaginationSize, PaginationVariant, PanelProps, ParsedMarkdown, Popover, PopoverProps, PopoverStatic, PopoverType, PopoverXAlign, PopoverYAlign, PressableSpan, ProductHuntLogo, Radio, RadioColor, RadioProps, RadioSize, RenderProps, RightDrawer, SaveForm, SearchInput, Select, SelectContent, SelectContentPosition, SelectLabel, SelectSeparator, ShowingResultsNumberItems, ShowingResultsNumberItemsProps, SlotProps, SmartTable, SocialNetworks, Spotlight, Step, Steps, SwitchSelector, SwitchSelectorBaseProps, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, TableProps, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Td, TechLogo, TechLogoName, techLogos_d_exports as TechLogos, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, Th, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tr, TriggerProps, UploadImageFn, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, VerticalSwitchSelector, VerticalSwitchSelectorProps, WithResizer, XLogo, YoutubeLogo, badgeVariants, baseMarkdownComponents, buttonVariants, checkIsExternalLink, checkboxVariants, choiceVariant, containerVariants, createEditorUploadFn, defaultChoices, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, indicatorVariant, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, radioVariants, reducer, switchSelectorVariant, toast, toastVariants, traceKeys, useContentEditable, useCopyToClipboard, useForm, useFormField, useLocaleSwitcherContent, usePasswordManagerBadge, usePrevious, useRightDrawer, useToast, useVersionSwitcher };
@@ -13,6 +13,7 @@ declare const App_Dashboard_Organization_Path: "/organization";
13
13
  declare const App_Dashboard_Profile_Path: "/profile";
14
14
  declare const App_Dashboard_IDE_Path: "/ide";
15
15
  declare const App_Dashboard_Scanner_Path: "/scanner";
16
+ declare const App_Dashboard_Assets_Path: "/assets";
16
17
  declare const App_Pricing_Path: "/pricing";
17
18
  declare const App_Affiliation_Path: "/affiliation";
18
19
  declare const App_Demo_Path: "/demo";
@@ -276,5 +277,5 @@ declare const External_ExampleIntlayerWithViteAndPreact: "https://github.com/aym
276
277
  declare const External_ExampleIntlayerWithReactNative: "https://github.com/aymericzip/intlayer/tree/main/examples/react-native-app";
277
278
  declare const External_ExampleIntlayerWithExpress: "https://github.com/aymericzip/intlayer/tree/main/examples/express-app";
278
279
  //#endregion
279
- export { App_Admin, App_Admin_Affiliate, App_Admin_Affiliate_Path, App_Admin_Dashboard, App_Admin_Dashboard_Path, App_Admin_Discussions, App_Admin_Discussions_Path, App_Admin_Management, App_Admin_Management_Path, App_Admin_Organizations, App_Admin_Organizations_Path, App_Admin_Path, App_Admin_Projects, App_Admin_Projects_Path, App_Admin_PromoCodes, App_Admin_PromoCodes_Path, App_Admin_Reviewers, App_Admin_Reviewers_Path, App_Admin_Users, App_Admin_Users_Path, App_Affiliation, App_Affiliation_Path, App_Auth_AskResetPassword, App_Auth_AskResetPassword_Path, App_Auth_ChangePassword, App_Auth_ChangePassword_Path, App_Auth_Demo_Path, App_Auth_ResetPassword, App_Auth_ResetPassword_Path, App_Auth_SignIn, App_Auth_SignIn_Path, App_Auth_SignUp, App_Auth_SignUp_Path, App_Auth_TwoFactor, App_Auth_TwoFactor_Path, App_Dashboard, App_Dashboard_Dictionaries, App_Dashboard_Dictionaries_Path, App_Dashboard_Editor, App_Dashboard_Editor_Path, App_Dashboard_IDE, App_Dashboard_IDE_Path, App_Dashboard_Organization, App_Dashboard_Organization_Path, App_Dashboard_Profile, App_Dashboard_Profile_Path, App_Dashboard_Projects, App_Dashboard_Projects_Path, App_Dashboard_Scanner, App_Dashboard_Scanner_Path, App_Dashboard_Tags, App_Dashboard_Tags_Path, App_Dashboard_Translate, App_Dashboard_Translate_Path, App_Demo, App_Demo_Path, App_Domain, App_Home_Path, App_NotFound_Path, App_Onboarding, App_Onboarding_Path, App_Pricing, App_Pricing_Path, App_ReviewerMarketplace, App_ReviewerMarketplace_Dashboard, App_ReviewerMarketplace_Dashboard_Mission_Path, App_ReviewerMarketplace_Dashboard_Path, App_ReviewerMarketplace_Path, App_ReviewerMarketplace_Reviewer_Path, Doc_Blog_Path, Doc_Blog_Root_Path, Doc_Blog_Search_Path, Doc_Blog_What_is_i18n_Path, Doc_CLI_Fill_Path, Doc_CLI_Review_Path, Doc_CLI_Translate_Path, Doc_Chat_Path, Doc_Contributors_Path, Doc_Environment_Adonis_Path, Doc_Environment_Angular_Path, Doc_Environment_Astro_Path, Doc_Environment_CRA_Path, Doc_Environment_Express_Path, Doc_Environment_Fastify_Path, Doc_Environment_Hono_Path, Doc_Environment_Lit_Path, Doc_Environment_Lynx_Path, Doc_Environment_NestJS_Path, Doc_Environment_NextJS_14_Path, Doc_Environment_NextJS_15_Path, Doc_Environment_NextJS_16_Path, Doc_Environment_NextJS_Path, Doc_Environment_Nodejs_Path, Doc_Environment_NuxtAndVue_Path, Doc_Environment_ReactNativeAndExpo_Path, Doc_Environment_Tanstack_Path, Doc_Environment_ViteAndPreact_Path, Doc_Environment_ViteAndReact_Path, Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path, Doc_Environment_ViteAndReact_ReactRouterV7_Path, Doc_Environment_ViteAndSolid_Path, Doc_Environment_ViteAndSvelte_Path, Doc_Environment_ViteAndVue_Path, Doc_FrequentQuestions_Path, Doc_IntlayerCMS_Path, Doc_IntlayerVisualEditor_Path, Doc_Intlayer_with_Lynx_and_React_Path, Doc_MCP_Path, Doc_Path, Doc_PrivacyPolicy_Path, Doc_ReleasesV6_Path, Doc_ReleasesV7_Path, Doc_ReleasesV8_Path, Doc_Root_Path, Doc_Search_Path, Doc_ShowcaseSubmit_Path, Doc_Showcase_Path, Doc_TermsOfService_Path, Doc_Why_Path, External_AI_Landing_Page, External_Discord, External_ExampleIntlayerWithExpress, External_ExampleIntlayerWithNextjs, External_ExampleIntlayerWithReactJS, External_ExampleIntlayerWithReactNative, External_ExampleIntlayerWithViteAndPreact, External_ExampleIntlayerWithViteAndReact, External_ExampleIntlayerWithViteAndSolid, External_ExampleIntlayerWithViteAndSvelte, External_ExampleIntlayerWithViteAndVue, External_Examples, External_Github, External_Github_i18n_benchmark, External_LinkedIn, External_ShowcaseApp, Showcase_Domain, Showcase_Root, Showcase_Root_Path, Showcase_Submit, Showcase_Submit_Path, Website_Benchmark, Website_Benchmark_NextJS, Website_Benchmark_NextJS_Path, Website_Benchmark_Path, Website_Benchmark_Tanstack, Website_Benchmark_Tanstack_Path, Website_Blog, Website_Blog_Path, Website_Blog_Root, Website_Blog_Root_Path, Website_Blog_Search, Website_Blog_Search_Path, Website_Blog_What_is_i18n, Website_Blog_What_is_i18n_Path, Website_CMS, Website_CMS_Path, Website_Changelog, Website_Changelog_Path, Website_Contributors, Website_Contributors_Path, Website_Demo, Website_Demo_Path, Website_Doc, Website_Doc_CLI_Fill, Website_Doc_CLI_Fill_Path, Website_Doc_CLI_Review, Website_Doc_CLI_Review_Path, Website_Doc_CLI_Translate, Website_Doc_CLI_Translate_Path, Website_Doc_Chat, Website_Doc_Chat_Path, Website_Doc_Environment_Adonis, Website_Doc_Environment_Adonis_Path, Website_Doc_Environment_Angular, Website_Doc_Environment_Angular_Path, Website_Doc_Environment_Astro, Website_Doc_Environment_Astro_Path, Website_Doc_Environment_CRA, Website_Doc_Environment_CRA_Path, Website_Doc_Environment_Express, Website_Doc_Environment_Express_Path, Website_Doc_Environment_Fastify, Website_Doc_Environment_Fastify_Path, Website_Doc_Environment_Hono, Website_Doc_Environment_Hono_Path, Website_Doc_Environment_Lit, Website_Doc_Environment_Lit_Path, Website_Doc_Environment_Lynx, Website_Doc_Environment_Lynx_Path, Website_Doc_Environment_NestJS, Website_Doc_Environment_NestJS_Path, Website_Doc_Environment_NextJS, Website_Doc_Environment_NextJS_14, Website_Doc_Environment_NextJS_14_Path, Website_Doc_Environment_NextJS_15, Website_Doc_Environment_NextJS_15_Path, Website_Doc_Environment_NextJS_16, Website_Doc_Environment_NextJS_16_Path, Website_Doc_Environment_NextJS_Path, Website_Doc_Environment_Nodejs, Website_Doc_Environment_Nodejs_Path, Website_Doc_Environment_NuxtAndVue, Website_Doc_Environment_NuxtAndVue_Path, Website_Doc_Environment_ReactNativeAndExpo, Website_Doc_Environment_ReactNativeAndExpo_Path, Website_Doc_Environment_Tanstack, Website_Doc_Environment_Tanstack_Path, Website_Doc_Environment_ViteAndPreact, Website_Doc_Environment_ViteAndPreact_Path, Website_Doc_Environment_ViteAndReact, Website_Doc_Environment_ViteAndReact_Path, Website_Doc_Environment_ViteAndReact_ReactRouterV7, Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes, Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path, Website_Doc_Environment_ViteAndReact_ReactRouterV7_Path, Website_Doc_Environment_ViteAndSolid, Website_Doc_Environment_ViteAndSolid_Path, Website_Doc_Environment_ViteAndSvelte, Website_Doc_Environment_ViteAndSvelte_Path, Website_Doc_Environment_ViteAndVue, Website_Doc_Environment_ViteAndVue_Path, Website_Doc_IntlayerCMS, Website_Doc_IntlayerCMS_Path, Website_Doc_IntlayerVisualEditor, Website_Doc_IntlayerVisualEditor_Path, Website_Doc_Intlayer_with_Lynx_and_React, Website_Doc_Intlayer_with_Lynx_and_React_Path, Website_Doc_MCP, Website_Doc_MCP_Path, Website_Doc_Path, Website_Doc_Root, Website_Doc_Root_Path, Website_Doc_Search, Website_Doc_Search_Path, Website_Doc_Why, Website_Doc_Why_Path, Website_Domain, Website_FrequentQuestions, Website_FrequentQuestions_Path, Website_Home, Website_Home_Path, Website_Markdown_Preview, Website_Markdown_Preview_Path, Website_NotFound, Website_NotFound_Path, Website_Playground, Website_Playground_Path, Website_PrivacyPolicy, Website_PrivacyPolicy_Path, Website_ReleasesV6, Website_ReleasesV6_Path, Website_ReleasesV7, Website_ReleasesV7_Path, Website_ReleasesV8, Website_ReleasesV8_Path, Website_Scanner, Website_Scanner_Path, Website_TMS, Website_TMS_Path, Website_TermsOfService, Website_TermsOfService_Path, Website_Translate, Website_Translate_Path, getAppAdminAffiliateRoute, getAppAdminOrganizationAbsoluteRoute, getAppAdminOrganizationRoute, getAppAdminProjectAbsoluteRoute, getAppAdminProjectRoute, getAppAdminPromoCodeRoute, getAppAdminReviewerRoute, getAppAdminUserAbsoluteRoute, getAppAdminUserRoute, getAppOnboardingFlowAbsoluteRoute, getAppOnboardingFlowRoute, getAppReviewerMissionRoute, getAppReviewerProfileRoute };
280
+ export { App_Admin, App_Admin_Affiliate, App_Admin_Affiliate_Path, App_Admin_Dashboard, App_Admin_Dashboard_Path, App_Admin_Discussions, App_Admin_Discussions_Path, App_Admin_Management, App_Admin_Management_Path, App_Admin_Organizations, App_Admin_Organizations_Path, App_Admin_Path, App_Admin_Projects, App_Admin_Projects_Path, App_Admin_PromoCodes, App_Admin_PromoCodes_Path, App_Admin_Reviewers, App_Admin_Reviewers_Path, App_Admin_Users, App_Admin_Users_Path, App_Affiliation, App_Affiliation_Path, App_Auth_AskResetPassword, App_Auth_AskResetPassword_Path, App_Auth_ChangePassword, App_Auth_ChangePassword_Path, App_Auth_Demo_Path, App_Auth_ResetPassword, App_Auth_ResetPassword_Path, App_Auth_SignIn, App_Auth_SignIn_Path, App_Auth_SignUp, App_Auth_SignUp_Path, App_Auth_TwoFactor, App_Auth_TwoFactor_Path, App_Dashboard, App_Dashboard_Assets_Path, App_Dashboard_Dictionaries, App_Dashboard_Dictionaries_Path, App_Dashboard_Editor, App_Dashboard_Editor_Path, App_Dashboard_IDE, App_Dashboard_IDE_Path, App_Dashboard_Organization, App_Dashboard_Organization_Path, App_Dashboard_Profile, App_Dashboard_Profile_Path, App_Dashboard_Projects, App_Dashboard_Projects_Path, App_Dashboard_Scanner, App_Dashboard_Scanner_Path, App_Dashboard_Tags, App_Dashboard_Tags_Path, App_Dashboard_Translate, App_Dashboard_Translate_Path, App_Demo, App_Demo_Path, App_Domain, App_Home_Path, App_NotFound_Path, App_Onboarding, App_Onboarding_Path, App_Pricing, App_Pricing_Path, App_ReviewerMarketplace, App_ReviewerMarketplace_Dashboard, App_ReviewerMarketplace_Dashboard_Mission_Path, App_ReviewerMarketplace_Dashboard_Path, App_ReviewerMarketplace_Path, App_ReviewerMarketplace_Reviewer_Path, Doc_Blog_Path, Doc_Blog_Root_Path, Doc_Blog_Search_Path, Doc_Blog_What_is_i18n_Path, Doc_CLI_Fill_Path, Doc_CLI_Review_Path, Doc_CLI_Translate_Path, Doc_Chat_Path, Doc_Contributors_Path, Doc_Environment_Adonis_Path, Doc_Environment_Angular_Path, Doc_Environment_Astro_Path, Doc_Environment_CRA_Path, Doc_Environment_Express_Path, Doc_Environment_Fastify_Path, Doc_Environment_Hono_Path, Doc_Environment_Lit_Path, Doc_Environment_Lynx_Path, Doc_Environment_NestJS_Path, Doc_Environment_NextJS_14_Path, Doc_Environment_NextJS_15_Path, Doc_Environment_NextJS_16_Path, Doc_Environment_NextJS_Path, Doc_Environment_Nodejs_Path, Doc_Environment_NuxtAndVue_Path, Doc_Environment_ReactNativeAndExpo_Path, Doc_Environment_Tanstack_Path, Doc_Environment_ViteAndPreact_Path, Doc_Environment_ViteAndReact_Path, Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path, Doc_Environment_ViteAndReact_ReactRouterV7_Path, Doc_Environment_ViteAndSolid_Path, Doc_Environment_ViteAndSvelte_Path, Doc_Environment_ViteAndVue_Path, Doc_FrequentQuestions_Path, Doc_IntlayerCMS_Path, Doc_IntlayerVisualEditor_Path, Doc_Intlayer_with_Lynx_and_React_Path, Doc_MCP_Path, Doc_Path, Doc_PrivacyPolicy_Path, Doc_ReleasesV6_Path, Doc_ReleasesV7_Path, Doc_ReleasesV8_Path, Doc_Root_Path, Doc_Search_Path, Doc_ShowcaseSubmit_Path, Doc_Showcase_Path, Doc_TermsOfService_Path, Doc_Why_Path, External_AI_Landing_Page, External_Discord, External_ExampleIntlayerWithExpress, External_ExampleIntlayerWithNextjs, External_ExampleIntlayerWithReactJS, External_ExampleIntlayerWithReactNative, External_ExampleIntlayerWithViteAndPreact, External_ExampleIntlayerWithViteAndReact, External_ExampleIntlayerWithViteAndSolid, External_ExampleIntlayerWithViteAndSvelte, External_ExampleIntlayerWithViteAndVue, External_Examples, External_Github, External_Github_i18n_benchmark, External_LinkedIn, External_ShowcaseApp, Showcase_Domain, Showcase_Root, Showcase_Root_Path, Showcase_Submit, Showcase_Submit_Path, Website_Benchmark, Website_Benchmark_NextJS, Website_Benchmark_NextJS_Path, Website_Benchmark_Path, Website_Benchmark_Tanstack, Website_Benchmark_Tanstack_Path, Website_Blog, Website_Blog_Path, Website_Blog_Root, Website_Blog_Root_Path, Website_Blog_Search, Website_Blog_Search_Path, Website_Blog_What_is_i18n, Website_Blog_What_is_i18n_Path, Website_CMS, Website_CMS_Path, Website_Changelog, Website_Changelog_Path, Website_Contributors, Website_Contributors_Path, Website_Demo, Website_Demo_Path, Website_Doc, Website_Doc_CLI_Fill, Website_Doc_CLI_Fill_Path, Website_Doc_CLI_Review, Website_Doc_CLI_Review_Path, Website_Doc_CLI_Translate, Website_Doc_CLI_Translate_Path, Website_Doc_Chat, Website_Doc_Chat_Path, Website_Doc_Environment_Adonis, Website_Doc_Environment_Adonis_Path, Website_Doc_Environment_Angular, Website_Doc_Environment_Angular_Path, Website_Doc_Environment_Astro, Website_Doc_Environment_Astro_Path, Website_Doc_Environment_CRA, Website_Doc_Environment_CRA_Path, Website_Doc_Environment_Express, Website_Doc_Environment_Express_Path, Website_Doc_Environment_Fastify, Website_Doc_Environment_Fastify_Path, Website_Doc_Environment_Hono, Website_Doc_Environment_Hono_Path, Website_Doc_Environment_Lit, Website_Doc_Environment_Lit_Path, Website_Doc_Environment_Lynx, Website_Doc_Environment_Lynx_Path, Website_Doc_Environment_NestJS, Website_Doc_Environment_NestJS_Path, Website_Doc_Environment_NextJS, Website_Doc_Environment_NextJS_14, Website_Doc_Environment_NextJS_14_Path, Website_Doc_Environment_NextJS_15, Website_Doc_Environment_NextJS_15_Path, Website_Doc_Environment_NextJS_16, Website_Doc_Environment_NextJS_16_Path, Website_Doc_Environment_NextJS_Path, Website_Doc_Environment_Nodejs, Website_Doc_Environment_Nodejs_Path, Website_Doc_Environment_NuxtAndVue, Website_Doc_Environment_NuxtAndVue_Path, Website_Doc_Environment_ReactNativeAndExpo, Website_Doc_Environment_ReactNativeAndExpo_Path, Website_Doc_Environment_Tanstack, Website_Doc_Environment_Tanstack_Path, Website_Doc_Environment_ViteAndPreact, Website_Doc_Environment_ViteAndPreact_Path, Website_Doc_Environment_ViteAndReact, Website_Doc_Environment_ViteAndReact_Path, Website_Doc_Environment_ViteAndReact_ReactRouterV7, Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes, Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path, Website_Doc_Environment_ViteAndReact_ReactRouterV7_Path, Website_Doc_Environment_ViteAndSolid, Website_Doc_Environment_ViteAndSolid_Path, Website_Doc_Environment_ViteAndSvelte, Website_Doc_Environment_ViteAndSvelte_Path, Website_Doc_Environment_ViteAndVue, Website_Doc_Environment_ViteAndVue_Path, Website_Doc_IntlayerCMS, Website_Doc_IntlayerCMS_Path, Website_Doc_IntlayerVisualEditor, Website_Doc_IntlayerVisualEditor_Path, Website_Doc_Intlayer_with_Lynx_and_React, Website_Doc_Intlayer_with_Lynx_and_React_Path, Website_Doc_MCP, Website_Doc_MCP_Path, Website_Doc_Path, Website_Doc_Root, Website_Doc_Root_Path, Website_Doc_Search, Website_Doc_Search_Path, Website_Doc_Why, Website_Doc_Why_Path, Website_Domain, Website_FrequentQuestions, Website_FrequentQuestions_Path, Website_Home, Website_Home_Path, Website_Markdown_Preview, Website_Markdown_Preview_Path, Website_NotFound, Website_NotFound_Path, Website_Playground, Website_Playground_Path, Website_PrivacyPolicy, Website_PrivacyPolicy_Path, Website_ReleasesV6, Website_ReleasesV6_Path, Website_ReleasesV7, Website_ReleasesV7_Path, Website_ReleasesV8, Website_ReleasesV8_Path, Website_Scanner, Website_Scanner_Path, Website_TMS, Website_TMS_Path, Website_TermsOfService, Website_TermsOfService_Path, Website_Translate, Website_Translate_Path, getAppAdminAffiliateRoute, getAppAdminOrganizationAbsoluteRoute, getAppAdminOrganizationRoute, getAppAdminProjectAbsoluteRoute, getAppAdminProjectRoute, getAppAdminPromoCodeRoute, getAppAdminReviewerRoute, getAppAdminUserAbsoluteRoute, getAppAdminUserRoute, getAppOnboardingFlowAbsoluteRoute, getAppOnboardingFlowRoute, getAppReviewerMissionRoute, getAppReviewerProfileRoute };
280
281
  //# sourceMappingURL=routes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"routes.d.ts","names":[],"sources":["../../src/routes.ts"],"mappings":"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"}
1
+ {"version":3,"file":"routes.d.ts","names":[],"sources":["../../src/routes.ts"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/design-system",
3
- "version": "9.0.0-canary.0",
3
+ "version": "9.0.0-canary.2",
4
4
  "private": false,
5
5
  "description": "Intlayer design system, including UI components used in the Intlayer editor, website, and visual editor/CMS.",
6
6
  "keywords": [
@@ -80,6 +80,7 @@
80
80
  },
81
81
  "./css": "./tailwind.css",
82
82
  "./css-output": "./dist/tailwind.css",
83
+ "./markdown-editor.css": "./src/components/MarkdownEditor/markdown-editor.css",
83
84
  "./package.json": "./package.json",
84
85
  "./accordion": {
85
86
  "types": "./dist/types/components/Accordion/index.d.ts",
@@ -281,6 +282,11 @@
281
282
  "import": "./dist/esm/components/MarkDownRender/index.mjs",
282
283
  "default": "./dist/esm/components/MarkDownRender/index.mjs"
283
284
  },
285
+ "./markdown-editor": {
286
+ "types": "./dist/types/components/MarkdownEditor/index.d.ts",
287
+ "import": "./dist/esm/components/MarkdownEditor/index.mjs",
288
+ "default": "./dist/esm/components/MarkdownEditor/index.mjs"
289
+ },
284
290
  "./max-height-smoother": {
285
291
  "types": "./dist/types/components/MaxHeightSmoother/index.d.ts",
286
292
  "import": "./dist/esm/components/MaxHeightSmoother/index.mjs",
@@ -403,7 +409,8 @@
403
409
  "dist",
404
410
  "package.json",
405
411
  "tailwind.css",
406
- "tw-source.css"
412
+ "tw-source.css",
413
+ "src/components/MarkdownEditor/markdown-editor.css"
407
414
  ],
408
415
  "scripts": {
409
416
  "build": "bun --bun tsdown --config tsdown.config.ts",
@@ -433,34 +440,58 @@
433
440
  "typecheck_": "tsc --noEmit --project tsconfig.types.json"
434
441
  },
435
442
  "dependencies": {
436
- "@better-auth/passkey": "1.6.16",
437
- "@better-auth/sso": "1.6.16",
438
- "@intlayer/api": "9.0.0-canary.0",
439
- "@intlayer/config": "9.0.0-canary.0",
440
- "@intlayer/core": "9.0.0-canary.0",
441
- "@intlayer/dictionaries-entry": "9.0.0-canary.0",
442
- "@intlayer/editor-react": "9.0.0-canary.0",
443
- "@intlayer/types": "9.0.0-canary.0",
444
- "@radix-ui/react-dialog": "1.1.16",
445
- "@radix-ui/react-select": "2.3.0",
446
- "@radix-ui/react-slot": "1.2.5",
447
- "@radix-ui/react-toast": "1.2.16",
443
+ "@better-auth/passkey": "1.6.19",
444
+ "@better-auth/sso": "1.6.19",
445
+ "@intlayer/api": "9.0.0-canary.2",
446
+ "@intlayer/chokidar": "9.0.0-canary.2",
447
+ "@intlayer/config": "9.0.0-canary.2",
448
+ "@intlayer/core": "9.0.0-canary.2",
449
+ "@intlayer/dictionaries-entry": "9.0.0-canary.2",
450
+ "@intlayer/editor-react": "9.0.0-canary.2",
451
+ "@intlayer/types": "9.0.0-canary.2",
452
+ "@radix-ui/react-dialog": "1.1.17",
453
+ "@radix-ui/react-select": "2.3.1",
454
+ "@radix-ui/react-slot": "1.3.0",
455
+ "@radix-ui/react-toast": "1.2.17",
448
456
  "@tailwindcss/aspect-ratio": "0.4.2",
449
457
  "@tanstack/query-async-storage-persister": "5.101.0",
450
458
  "@tanstack/react-query-persist-client": "5.101.0",
451
- "@tanstack/react-virtual": "3.14.2",
452
- "better-auth": "1.6.16",
459
+ "@tanstack/react-virtual": "3.14.3",
460
+ "@tiptap/core": "3.26.1",
461
+ "@tiptap/extension-character-count": "3.26.1",
462
+ "@tiptap/extension-color": "3.26.1",
463
+ "@tiptap/extension-highlight": "3.26.1",
464
+ "@tiptap/extension-horizontal-rule": "3.26.1",
465
+ "@tiptap/extension-image": "3.26.1",
466
+ "@tiptap/extension-link": "3.26.1",
467
+ "@tiptap/extension-placeholder": "3.26.1",
468
+ "@tiptap/extension-task-item": "3.26.1",
469
+ "@tiptap/extension-task-list": "3.26.1",
470
+ "@tiptap/extension-text-style": "3.26.1",
471
+ "@tiptap/extension-underline": "3.26.1",
472
+ "@tiptap/extension-youtube": "3.26.1",
473
+ "@tiptap/pm": "3.26.1",
474
+ "@tiptap/react": "3.26.1",
475
+ "@tiptap/starter-kit": "3.26.1",
476
+ "@tiptap/suggestion": "3.26.1",
477
+ "better-auth": "1.6.19",
453
478
  "class-variance-authority": "0.7.1",
454
479
  "cmdk": "1.1.1",
455
480
  "defu": "6.1.7",
456
- "dompurify": "3.4.8",
457
- "isomorphic-dompurify": "3.16.0",
458
- "react-intlayer": "9.0.0-canary.0",
481
+ "dompurify": "3.4.10",
482
+ "isomorphic-dompurify": "3.17.0",
483
+ "react-intlayer": "9.0.0-canary.2",
484
+ "react-moveable": "^0.56.0",
459
485
  "rollup-preserve-directives": "1.1.3",
486
+ "tippy.js": "^6.3.7",
487
+ "tiptap-extension-code-block-shiki": "^1.2.0",
488
+ "tiptap-extension-global-drag-handle": "^0.1.16",
489
+ "tiptap-markdown": "^0.9.0",
490
+ "tunnel-rat": "^0.1.2",
460
491
  "zod": "4.4.3"
461
492
  },
462
493
  "devDependencies": {
463
- "@intlayer/backend": "9.0.0-canary.0",
494
+ "@intlayer/backend": "9.0.0-canary.2",
464
495
  "@shikijs/transformers": "4.2.0",
465
496
  "@storybook/addon-a11y": "8.6.14",
466
497
  "@storybook/addon-essentials": "8.6.14",
@@ -477,8 +508,8 @@
477
508
  "@storybook/theming": "8.6.14",
478
509
  "@svgr/core": "8.1.0",
479
510
  "@svgr/rollup": "8.1.0",
480
- "@tailwindcss/cli": "4.3.0",
481
- "@tailwindcss/vite": "4.3.0",
511
+ "@tailwindcss/cli": "4.3.1",
512
+ "@tailwindcss/vite": "4.3.1",
482
513
  "@testing-library/jest-dom": "6.9.1",
483
514
  "@testing-library/react": "16.3.2",
484
515
  "@testing-library/user-event": "14.6.1",
@@ -491,7 +522,7 @@
491
522
  "@utils/ts-config-types": "1.0.4",
492
523
  "clsx": "2.1.1",
493
524
  "fast-glob": "3.3.3",
494
- "intlayer": "9.0.0-canary.0",
525
+ "intlayer": "9.0.0-canary.2",
495
526
  "rimraf": "6.1.3",
496
527
  "shiki": "4.2.0",
497
528
  "storybook": "8.6.17",
@@ -499,28 +530,28 @@
499
530
  "tsdown": "0.21.10",
500
531
  "typescript": "6.0.3",
501
532
  "vite": "8.0.16",
502
- "vite-intlayer": "9.0.0-canary.0",
533
+ "vite-intlayer": "9.0.0-canary.2",
503
534
  "vite-plugin-dts": "5.0.2",
504
- "vitest": "4.1.8"
535
+ "vitest": "4.1.9"
505
536
  },
506
537
  "peerDependencies": {
507
- "@better-fetch/fetch": "1.2.2",
538
+ "@better-fetch/fetch": "1.3.1",
508
539
  "@hookform/resolvers": "5.4.0",
509
- "@intlayer/backend": "9.0.0-canary.0",
540
+ "@intlayer/backend": "9.0.0-canary.2",
510
541
  "@monaco-editor/react": "4.7.0",
511
542
  "@shikijs/transformers": "4.2.0",
512
543
  "@tanstack/react-query": "5.101.0",
513
544
  "@tanstack/react-query-devtools": "5.101.0",
514
545
  "framer-motion": "12.40.0",
515
546
  "fuse.js": "7.4.2",
516
- "intlayer": "9.0.0-canary.0",
517
- "lucide-react": "1.17.0",
547
+ "intlayer": "9.0.0-canary.2",
548
+ "lucide-react": "1.20.0",
518
549
  "react": ">=16.0.0",
519
550
  "react-dom": ">=16.0.0",
520
- "react-hook-form": "7.78.0",
521
- "react-intlayer": "9.0.0-canary.0",
551
+ "react-hook-form": "7.79.0",
552
+ "react-intlayer": "9.0.0-canary.2",
522
553
  "shiki": "4.2.0",
523
- "tailwindcss": "4.3.0"
554
+ "tailwindcss": "4.3.1"
524
555
  },
525
556
  "peerDependenciesMeta": {
526
557
  "@intlayer/backend": {
@@ -0,0 +1,297 @@
1
+ /**
2
+ * Styles for the MarkdownEditor (Novel / Tiptap based) component.
3
+ *
4
+ * Exposed via the `@intlayer/design-system/markdown-editor.css` export and
5
+ * imported only by consumers that actually use the editor (currently the
6
+ * `apps/app` CMS dashboard), rather than from the shared `tailwind.css`
7
+ * entry — this keeps the ProseMirror specific rules (placeholder, task
8
+ * checkboxes, image placeholder, drag handle, tippy bubble) out of every
9
+ * other consumer's CSS bundle.
10
+ */
11
+
12
+ :root,
13
+ [data-theme="light"] {
14
+ --novel-highlight-default: #ffffff;
15
+ --novel-highlight-purple: #f6f3f8;
16
+ --novel-highlight-red: #fdebeb;
17
+ --novel-highlight-yellow: #fbf4a2;
18
+ --novel-highlight-blue: #c1ecf9;
19
+ --novel-highlight-green: #acf79f;
20
+ --novel-highlight-orange: #faebdd;
21
+ --novel-highlight-pink: #faf1f5;
22
+ --novel-highlight-gray: #f1f1ef;
23
+
24
+ --novel-black: #000000;
25
+ --novel-stone-100: rgba(231, 231, 231);
26
+ --novel-stone-200: rgba(209, 209, 209);
27
+ --novel-stone-800: rgba(69, 69, 69);
28
+ }
29
+
30
+ [data-theme="dark"] {
31
+ --novel-highlight-default: #000000;
32
+ --novel-highlight-purple: #3f2c4b;
33
+ --novel-highlight-red: #5c1a1a;
34
+ --novel-highlight-yellow: #5c4b1a;
35
+ --novel-highlight-blue: #1a3d5c;
36
+ --novel-highlight-green: #1a5c20;
37
+ --novel-highlight-orange: #5c3a1a;
38
+ --novel-highlight-pink: #5c1a3a;
39
+ --novel-highlight-gray: #3a3a3a;
40
+
41
+ --novel-black: #ffffff;
42
+ --novel-stone-100: rgba(69, 69, 69);
43
+ --novel-stone-200: rgba(79, 79, 79);
44
+ --novel-stone-800: rgba(231, 231, 231);
45
+ }
46
+
47
+ .ProseMirror {
48
+ outline: none;
49
+ }
50
+
51
+ .ProseMirror .is-editor-empty:first-child::before,
52
+ .ProseMirror .is-empty::before {
53
+ content: attr(data-placeholder);
54
+ float: left;
55
+ color: var(--muted-foreground);
56
+ pointer-events: none;
57
+ height: 0;
58
+ }
59
+
60
+ /* Content typography.
61
+ * This project ships no Tailwind `prose` (typography) plugin, so the editor
62
+ * content is styled explicitly here — scoped to `.ProseMirror` — mirroring the
63
+ * explicit heading components used by the markdown preview renderer. Without
64
+ * this, heading nodes inherit the Preflight reset and look like body text. */
65
+ .ProseMirror h1,
66
+ .ProseMirror h2,
67
+ .ProseMirror h3,
68
+ .ProseMirror h4,
69
+ .ProseMirror h5,
70
+ .ProseMirror h6 {
71
+ font-weight: 700;
72
+ line-height: 1.25;
73
+ text-wrap: balance;
74
+ }
75
+
76
+ .ProseMirror h1 {
77
+ font-size: 2rem;
78
+ margin: 1.5rem 0 1rem;
79
+ }
80
+
81
+ .ProseMirror h2 {
82
+ font-size: 1.5rem;
83
+ margin: 1.4rem 0 0.75rem;
84
+ }
85
+
86
+ .ProseMirror h3 {
87
+ font-size: 1.25rem;
88
+ margin: 1.2rem 0 0.5rem;
89
+ }
90
+
91
+ .ProseMirror h4 {
92
+ font-size: 1.125rem;
93
+ margin: 1rem 0 0.5rem;
94
+ }
95
+
96
+ .ProseMirror h5 {
97
+ font-size: 1rem;
98
+ margin: 1rem 0 0.5rem;
99
+ }
100
+
101
+ .ProseMirror h6 {
102
+ font-size: 0.875rem;
103
+ color: var(--muted-foreground);
104
+ margin: 1rem 0 0.5rem;
105
+ }
106
+
107
+ .ProseMirror p {
108
+ margin: 0.5rem 0;
109
+ }
110
+
111
+ .ProseMirror > :first-child {
112
+ margin-top: 0;
113
+ }
114
+
115
+ /* Images */
116
+ .ProseMirror img {
117
+ transition: filter 0.1s ease-in-out;
118
+ }
119
+
120
+ .ProseMirror img:hover {
121
+ cursor: pointer;
122
+ filter: brightness(90%);
123
+ }
124
+
125
+ .ProseMirror img.ProseMirror-selectednode {
126
+ outline: 3px solid #5abbf7;
127
+ filter: brightness(90%);
128
+ }
129
+
130
+ .img-placeholder {
131
+ position: relative;
132
+ }
133
+
134
+ .img-placeholder::before {
135
+ content: "";
136
+ box-sizing: border-box;
137
+ position: absolute;
138
+ top: 50%;
139
+ left: 50%;
140
+ width: 36px;
141
+ height: 36px;
142
+ border-radius: 50%;
143
+ border: 3px solid var(--novel-stone-200);
144
+ border-top-color: var(--novel-stone-800);
145
+ animation: novel-spinning 0.6s linear infinite;
146
+ }
147
+
148
+ @keyframes novel-spinning {
149
+ to {
150
+ transform: rotate(360deg);
151
+ }
152
+ }
153
+
154
+ /* Task list checkboxes */
155
+ ul[data-type="taskList"] {
156
+ list-style: none;
157
+ padding: 0;
158
+ }
159
+
160
+ ul[data-type="taskList"] li > label {
161
+ margin-right: 0.2rem;
162
+ user-select: none;
163
+ }
164
+
165
+ @media screen and (max-width: 768px) {
166
+ ul[data-type="taskList"] li > label {
167
+ margin-right: 0.5rem;
168
+ }
169
+ }
170
+
171
+ ul[data-type="taskList"] li > label input[type="checkbox"] {
172
+ -webkit-appearance: none;
173
+ appearance: none;
174
+ background-color: var(--background);
175
+ margin: 0;
176
+ cursor: pointer;
177
+ width: 1.2em;
178
+ height: 1.2em;
179
+ position: relative;
180
+ top: 5px;
181
+ border: 2px solid var(--border);
182
+ margin-right: 0.3rem;
183
+ display: grid;
184
+ place-content: center;
185
+ }
186
+
187
+ ul[data-type="taskList"] li > label input[type="checkbox"]:hover {
188
+ background-color: var(--accent);
189
+ }
190
+
191
+ ul[data-type="taskList"] li > label input[type="checkbox"]:active {
192
+ background-color: var(--accent);
193
+ }
194
+
195
+ ul[data-type="taskList"] li > label input[type="checkbox"]::before {
196
+ content: "";
197
+ width: 0.65em;
198
+ height: 0.65em;
199
+ transform: scale(0);
200
+ transition: 120ms transform ease-in-out;
201
+ box-shadow: inset 1em 1em;
202
+ transform-origin: center;
203
+ clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
204
+ }
205
+
206
+ ul[data-type="taskList"] li > label input[type="checkbox"]:checked::before {
207
+ transform: scale(1);
208
+ }
209
+
210
+ ul[data-type="taskList"] li[data-checked="true"] > div > p {
211
+ color: var(--muted-foreground);
212
+ text-decoration: line-through;
213
+ text-decoration-thickness: 2px;
214
+ }
215
+
216
+ /* Bubble menu (tippy) */
217
+ .tippy-box {
218
+ /* biome-ignore lint/complexity/noImportantStyles: override third-party tippy.js inline max-width */
219
+ max-width: 400px !important;
220
+ }
221
+
222
+ .ProseMirror:not(.dragging) .ProseMirror-selectednode {
223
+ /* biome-ignore lint/complexity/noImportantStyles: override ProseMirror default selected-node outline */
224
+ outline: none !important;
225
+ background-color: var(--novel-highlight-blue);
226
+ transition: background-color 0.2s;
227
+ box-shadow: none;
228
+ }
229
+
230
+ /* Global drag handle */
231
+ .drag-handle {
232
+ position: fixed;
233
+ opacity: 1;
234
+ transition: opacity ease-in 0.2s;
235
+ border-radius: 0.25rem;
236
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' style='fill: rgba(0, 0, 0, 0.5)'%3E%3Cpath d='M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z'%3E%3C/path%3E%3C/svg%3E");
237
+ background-size: calc(0.5em + 0.375rem) calc(0.5em + 0.375rem);
238
+ background-repeat: no-repeat;
239
+ background-position: center;
240
+ width: 1.2rem;
241
+ height: 1.5rem;
242
+ z-index: 50;
243
+ cursor: grab;
244
+ }
245
+
246
+ .drag-handle:hover {
247
+ background-color: var(--novel-stone-100);
248
+ transition: background-color 0.2s;
249
+ }
250
+
251
+ .drag-handle:active {
252
+ background-color: var(--novel-stone-200);
253
+ transition: background-color 0.2s;
254
+ cursor: grabbing;
255
+ }
256
+
257
+ .drag-handle.hide {
258
+ opacity: 0;
259
+ pointer-events: none;
260
+ }
261
+
262
+ @media screen and (max-width: 600px) {
263
+ .drag-handle {
264
+ display: none;
265
+ pointer-events: none;
266
+ }
267
+ }
268
+
269
+ [data-theme="dark"] .drag-handle {
270
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' style='fill: rgba(255, 255, 255, 0.5)'%3E%3Cpath d='M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z'%3E%3C/path%3E%3C/svg%3E");
271
+ }
272
+
273
+ /* Shiki code-block highlighting (tiptap-extension-code-block-shiki).
274
+ * The extension renders the light theme inline and adds a `--shiki-dark`
275
+ * CSS variable on every token for the dark theme. Keep the block background
276
+ * consistent with the rest of the editor (`bg-muted`) and swap token colors
277
+ * under the dark theme. */
278
+ .ProseMirror pre.shiki {
279
+ /* biome-ignore lint/complexity/noImportantStyles: override shiki inline background-color on the <pre> node */
280
+ background-color: var(--muted) !important;
281
+ }
282
+
283
+ [data-theme="dark"] .ProseMirror pre.shiki span {
284
+ /* biome-ignore lint/complexity/noImportantStyles: override shiki inline token color with the dark-theme variable */
285
+ color: var(--shiki-dark, inherit) !important;
286
+ }
287
+
288
+ /* AI highlight */
289
+ .ProseMirror .novel-ai-highlight {
290
+ background-color: var(--novel-highlight-purple);
291
+ }
292
+
293
+ /* Bold inside colored / highlighted spans should inherit color */
294
+ span[style] > strong,
295
+ mark[style] > strong {
296
+ color: inherit;
297
+ }