@erag/text-editor-vue 0.0.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 (205) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +38 -0
  3. package/dist/index.d.ts +2 -0
  4. package/dist/src/commands/clipboardCommands.d.ts +2 -0
  5. package/dist/src/commands/clipboardCommands.d.ts.map +1 -0
  6. package/dist/src/commands/commandRegistry.d.ts +5 -0
  7. package/dist/src/commands/commandRegistry.d.ts.map +1 -0
  8. package/dist/src/commands/formatCommands.d.ts +3 -0
  9. package/dist/src/commands/formatCommands.d.ts.map +1 -0
  10. package/dist/src/commands/historyCommands.d.ts +3 -0
  11. package/dist/src/commands/historyCommands.d.ts.map +1 -0
  12. package/dist/src/commands/insertCommands.d.ts +6 -0
  13. package/dist/src/commands/insertCommands.d.ts.map +1 -0
  14. package/dist/src/commands/listCommands.d.ts +2 -0
  15. package/dist/src/commands/listCommands.d.ts.map +1 -0
  16. package/dist/src/commands/printCommands.d.ts +2 -0
  17. package/dist/src/commands/printCommands.d.ts.map +1 -0
  18. package/dist/src/commands/tableCommands.d.ts +4 -0
  19. package/dist/src/commands/tableCommands.d.ts.map +1 -0
  20. package/dist/src/components/Editor.vue.d.ts +59 -0
  21. package/dist/src/components/Editor.vue.d.ts.map +1 -0
  22. package/dist/src/components/EditorContent.vue.d.ts +37 -0
  23. package/dist/src/components/EditorContent.vue.d.ts.map +1 -0
  24. package/dist/src/components/EditorDialogs.vue.d.ts +29 -0
  25. package/dist/src/components/EditorDialogs.vue.d.ts.map +1 -0
  26. package/dist/src/components/EditorMenuBar.vue.d.ts +39 -0
  27. package/dist/src/components/EditorMenuBar.vue.d.ts.map +1 -0
  28. package/dist/src/components/EditorStatusBar.vue.d.ts +26 -0
  29. package/dist/src/components/EditorStatusBar.vue.d.ts.map +1 -0
  30. package/dist/src/components/EditorToolbar.vue.d.ts +29 -0
  31. package/dist/src/components/EditorToolbar.vue.d.ts.map +1 -0
  32. package/dist/src/components/dialogs/BaseDialog.vue.d.ts +28 -0
  33. package/dist/src/components/dialogs/BaseDialog.vue.d.ts.map +1 -0
  34. package/dist/src/components/dialogs/ColorDialog.vue.d.ts +14 -0
  35. package/dist/src/components/dialogs/ColorDialog.vue.d.ts.map +1 -0
  36. package/dist/src/components/dialogs/EmojiDialog.vue.d.ts +10 -0
  37. package/dist/src/components/dialogs/EmojiDialog.vue.d.ts.map +1 -0
  38. package/dist/src/components/dialogs/FindReplaceDialog.vue.d.ts +13 -0
  39. package/dist/src/components/dialogs/FindReplaceDialog.vue.d.ts.map +1 -0
  40. package/dist/src/components/dialogs/InfoDialog.vue.d.ts +11 -0
  41. package/dist/src/components/dialogs/InfoDialog.vue.d.ts.map +1 -0
  42. package/dist/src/components/dialogs/LinkDialog.vue.d.ts +18 -0
  43. package/dist/src/components/dialogs/LinkDialog.vue.d.ts.map +1 -0
  44. package/dist/src/components/dialogs/MediaDialog.vue.d.ts +14 -0
  45. package/dist/src/components/dialogs/MediaDialog.vue.d.ts.map +1 -0
  46. package/dist/src/components/dialogs/PreviewDialog.vue.d.ts +12 -0
  47. package/dist/src/components/dialogs/PreviewDialog.vue.d.ts.map +1 -0
  48. package/dist/src/components/dialogs/SourceDialog.vue.d.ts +13 -0
  49. package/dist/src/components/dialogs/SourceDialog.vue.d.ts.map +1 -0
  50. package/dist/src/components/dialogs/SpecialCharacterDialog.vue.d.ts +10 -0
  51. package/dist/src/components/dialogs/SpecialCharacterDialog.vue.d.ts.map +1 -0
  52. package/dist/src/components/dialogs/TableDialog.vue.d.ts +13 -0
  53. package/dist/src/components/dialogs/TableDialog.vue.d.ts.map +1 -0
  54. package/dist/src/components/dialogs/TablePropertiesDialog.vue.d.ts +10 -0
  55. package/dist/src/components/dialogs/TablePropertiesDialog.vue.d.ts.map +1 -0
  56. package/dist/src/components/dialogs/TemplateDialog.vue.d.ts +15 -0
  57. package/dist/src/components/dialogs/TemplateDialog.vue.d.ts.map +1 -0
  58. package/dist/src/components/dialogs/WordCountDialog.vue.d.ts +12 -0
  59. package/dist/src/components/dialogs/WordCountDialog.vue.d.ts.map +1 -0
  60. package/dist/src/components/icons/EditorIcon.vue.d.ts +8 -0
  61. package/dist/src/components/icons/EditorIcon.vue.d.ts.map +1 -0
  62. package/dist/src/components/images/ImageResizeOverlay.vue.d.ts +17 -0
  63. package/dist/src/components/images/ImageResizeOverlay.vue.d.ts.map +1 -0
  64. package/dist/src/components/images/InlineImageUpload.vue.d.ts +20 -0
  65. package/dist/src/components/images/InlineImageUpload.vue.d.ts.map +1 -0
  66. package/dist/src/components/images/InlineImageUploadPortal.vue.d.ts +19 -0
  67. package/dist/src/components/images/InlineImageUploadPortal.vue.d.ts.map +1 -0
  68. package/dist/src/components/mentions/MentionDropdown.vue.d.ts +45 -0
  69. package/dist/src/components/mentions/MentionDropdown.vue.d.ts.map +1 -0
  70. package/dist/src/components/mentions/MentionHoverCard.vue.d.ts +14 -0
  71. package/dist/src/components/mentions/MentionHoverCard.vue.d.ts.map +1 -0
  72. package/dist/src/components/mentions/MentionItem.vue.d.ts +28 -0
  73. package/dist/src/components/mentions/MentionItem.vue.d.ts.map +1 -0
  74. package/dist/src/components/menus/FloatingMenu.vue.d.ts +19 -0
  75. package/dist/src/components/menus/FloatingMenu.vue.d.ts.map +1 -0
  76. package/dist/src/components/merge-tags/MergeTagDropdown.vue.d.ts +20 -0
  77. package/dist/src/components/merge-tags/MergeTagDropdown.vue.d.ts.map +1 -0
  78. package/dist/src/components/merge-tags/MergeTagSidebar.vue.d.ts +16 -0
  79. package/dist/src/components/merge-tags/MergeTagSidebar.vue.d.ts.map +1 -0
  80. package/dist/src/components/toolbar/CaseChangeMenu.vue.d.ts +14 -0
  81. package/dist/src/components/toolbar/CaseChangeMenu.vue.d.ts.map +1 -0
  82. package/dist/src/components/toolbar/ColorPalette.vue.d.ts +13 -0
  83. package/dist/src/components/toolbar/ColorPalette.vue.d.ts.map +1 -0
  84. package/dist/src/components/toolbar/ToolbarButton.vue.d.ts +15 -0
  85. package/dist/src/components/toolbar/ToolbarButton.vue.d.ts.map +1 -0
  86. package/dist/src/composables/useEditor.d.ts +15 -0
  87. package/dist/src/composables/useEditor.d.ts.map +1 -0
  88. package/dist/src/composables/useEditorConfig.d.ts +4 -0
  89. package/dist/src/composables/useEditorConfig.d.ts.map +1 -0
  90. package/dist/src/composables/useEditorHistory.d.ts +8 -0
  91. package/dist/src/composables/useEditorHistory.d.ts.map +1 -0
  92. package/dist/src/composables/useEditorResize.d.ts +8 -0
  93. package/dist/src/composables/useEditorResize.d.ts.map +1 -0
  94. package/dist/src/composables/useEditorSelection.d.ts +10 -0
  95. package/dist/src/composables/useEditorSelection.d.ts.map +1 -0
  96. package/dist/src/composables/useEditorUpload.d.ts +14 -0
  97. package/dist/src/composables/useEditorUpload.d.ts.map +1 -0
  98. package/dist/src/composables/useFloatingPosition.d.ts +6 -0
  99. package/dist/src/composables/useFloatingPosition.d.ts.map +1 -0
  100. package/dist/src/composables/useFullscreen.d.ts +6 -0
  101. package/dist/src/composables/useFullscreen.d.ts.map +1 -0
  102. package/dist/src/composables/useImageResize.d.ts +15 -0
  103. package/dist/src/composables/useImageResize.d.ts.map +1 -0
  104. package/dist/src/composables/useInlineImageUpload.d.ts +19 -0
  105. package/dist/src/composables/useInlineImageUpload.d.ts.map +1 -0
  106. package/dist/src/composables/useLinkInitial.d.ts +7 -0
  107. package/dist/src/composables/useLinkInitial.d.ts.map +1 -0
  108. package/dist/src/composables/useMentions.d.ts +28 -0
  109. package/dist/src/composables/useMentions.d.ts.map +1 -0
  110. package/dist/src/composables/useMergeTagSidebar.d.ts +10 -0
  111. package/dist/src/composables/useMergeTagSidebar.d.ts.map +1 -0
  112. package/dist/src/composables/useMergeTags.d.ts +21 -0
  113. package/dist/src/composables/useMergeTags.d.ts.map +1 -0
  114. package/dist/src/composables/useToolbarOverflow.d.ts +6 -0
  115. package/dist/src/composables/useToolbarOverflow.d.ts.map +1 -0
  116. package/dist/src/composables/useWordCount.d.ts +4 -0
  117. package/dist/src/composables/useWordCount.d.ts.map +1 -0
  118. package/dist/src/config/defaultConfig.d.ts +3 -0
  119. package/dist/src/config/defaultConfig.d.ts.map +1 -0
  120. package/dist/src/config/mentionConfig.d.ts +4 -0
  121. package/dist/src/config/mentionConfig.d.ts.map +1 -0
  122. package/dist/src/config/menuConfig.d.ts +3 -0
  123. package/dist/src/config/menuConfig.d.ts.map +1 -0
  124. package/dist/src/config/menuIcons.d.ts +3 -0
  125. package/dist/src/config/menuIcons.d.ts.map +1 -0
  126. package/dist/src/config/mergeTagConfig.d.ts +4 -0
  127. package/dist/src/config/mergeTagConfig.d.ts.map +1 -0
  128. package/dist/src/config/templateConfig.d.ts +3 -0
  129. package/dist/src/config/templateConfig.d.ts.map +1 -0
  130. package/dist/src/config/toolbarConfig.d.ts +5 -0
  131. package/dist/src/config/toolbarConfig.d.ts.map +1 -0
  132. package/dist/src/constants/editorCommands.d.ts +2 -0
  133. package/dist/src/constants/editorCommands.d.ts.map +1 -0
  134. package/dist/src/constants/editorDefaults.d.ts +44 -0
  135. package/dist/src/constants/editorDefaults.d.ts.map +1 -0
  136. package/dist/src/constants/emojis.d.ts +4 -0
  137. package/dist/src/constants/emojis.d.ts.map +1 -0
  138. package/dist/src/constants/imageResize.d.ts +3 -0
  139. package/dist/src/constants/imageResize.d.ts.map +1 -0
  140. package/dist/src/constants/keyboardShortcuts.d.ts +2 -0
  141. package/dist/src/constants/keyboardShortcuts.d.ts.map +1 -0
  142. package/dist/src/constants/packageInfo.d.ts +2 -0
  143. package/dist/src/constants/packageInfo.d.ts.map +1 -0
  144. package/dist/src/constants/printStyles.d.ts +2 -0
  145. package/dist/src/constants/printStyles.d.ts.map +1 -0
  146. package/dist/src/constants/specialCharacters.d.ts +4 -0
  147. package/dist/src/constants/specialCharacters.d.ts.map +1 -0
  148. package/dist/src/index.d.ts +5 -0
  149. package/dist/src/index.d.ts.map +1 -0
  150. package/dist/src/types/commands.d.ts +17 -0
  151. package/dist/src/types/commands.d.ts.map +1 -0
  152. package/dist/src/types/config.d.ts +101 -0
  153. package/dist/src/types/config.d.ts.map +1 -0
  154. package/dist/src/types/count.d.ts +10 -0
  155. package/dist/src/types/count.d.ts.map +1 -0
  156. package/dist/src/types/dialog.d.ts +41 -0
  157. package/dist/src/types/dialog.d.ts.map +1 -0
  158. package/dist/src/types/editor.d.ts +49 -0
  159. package/dist/src/types/editor.d.ts.map +1 -0
  160. package/dist/src/types/emoji.d.ts +8 -0
  161. package/dist/src/types/emoji.d.ts.map +1 -0
  162. package/dist/src/types/events.d.ts +26 -0
  163. package/dist/src/types/events.d.ts.map +1 -0
  164. package/dist/src/types/image.d.ts +22 -0
  165. package/dist/src/types/image.d.ts.map +1 -0
  166. package/dist/src/types/index.d.ts +16 -0
  167. package/dist/src/types/index.d.ts.map +1 -0
  168. package/dist/src/types/mention.d.ts +63 -0
  169. package/dist/src/types/mention.d.ts.map +1 -0
  170. package/dist/src/types/menu.d.ts +21 -0
  171. package/dist/src/types/menu.d.ts.map +1 -0
  172. package/dist/src/types/mergeTag.d.ts +47 -0
  173. package/dist/src/types/mergeTag.d.ts.map +1 -0
  174. package/dist/src/types/specialCharacter.d.ts +10 -0
  175. package/dist/src/types/specialCharacter.d.ts.map +1 -0
  176. package/dist/src/types/template.d.ts +19 -0
  177. package/dist/src/types/template.d.ts.map +1 -0
  178. package/dist/src/types/toolbar.d.ts +15 -0
  179. package/dist/src/types/toolbar.d.ts.map +1 -0
  180. package/dist/src/types/upload.d.ts +16 -0
  181. package/dist/src/types/upload.d.ts.map +1 -0
  182. package/dist/src/utils/config.d.ts +4 -0
  183. package/dist/src/utils/config.d.ts.map +1 -0
  184. package/dist/src/utils/dateTime.d.ts +4 -0
  185. package/dist/src/utils/dateTime.d.ts.map +1 -0
  186. package/dist/src/utils/dom.d.ts +4 -0
  187. package/dist/src/utils/dom.d.ts.map +1 -0
  188. package/dist/src/utils/html.d.ts +11 -0
  189. package/dist/src/utils/html.d.ts.map +1 -0
  190. package/dist/src/utils/mention.d.ts +11 -0
  191. package/dist/src/utils/mention.d.ts.map +1 -0
  192. package/dist/src/utils/mergeTag.d.ts +11 -0
  193. package/dist/src/utils/mergeTag.d.ts.map +1 -0
  194. package/dist/src/utils/sanitizer.d.ts +8 -0
  195. package/dist/src/utils/sanitizer.d.ts.map +1 -0
  196. package/dist/src/utils/selection.d.ts +6 -0
  197. package/dist/src/utils/selection.d.ts.map +1 -0
  198. package/dist/src/utils/units.d.ts +3 -0
  199. package/dist/src/utils/units.d.ts.map +1 -0
  200. package/dist/src/utils/url.d.ts +10 -0
  201. package/dist/src/utils/url.d.ts.map +1 -0
  202. package/dist/style.css +2 -0
  203. package/dist/text-editor-vue.js +6428 -0
  204. package/dist/text-editor-vue.js.map +1 -0
  205. package/package.json +102 -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.