@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.
- package/LICENSE +21 -0
- package/README.md +38 -0
- package/dist/index.d.ts +2 -0
- package/dist/src/commands/clipboardCommands.d.ts +2 -0
- package/dist/src/commands/clipboardCommands.d.ts.map +1 -0
- package/dist/src/commands/commandRegistry.d.ts +5 -0
- package/dist/src/commands/commandRegistry.d.ts.map +1 -0
- package/dist/src/commands/formatCommands.d.ts +3 -0
- package/dist/src/commands/formatCommands.d.ts.map +1 -0
- package/dist/src/commands/historyCommands.d.ts +3 -0
- package/dist/src/commands/historyCommands.d.ts.map +1 -0
- package/dist/src/commands/insertCommands.d.ts +6 -0
- package/dist/src/commands/insertCommands.d.ts.map +1 -0
- package/dist/src/commands/listCommands.d.ts +2 -0
- package/dist/src/commands/listCommands.d.ts.map +1 -0
- package/dist/src/commands/printCommands.d.ts +2 -0
- package/dist/src/commands/printCommands.d.ts.map +1 -0
- package/dist/src/commands/tableCommands.d.ts +4 -0
- package/dist/src/commands/tableCommands.d.ts.map +1 -0
- package/dist/src/components/Editor.vue.d.ts +59 -0
- package/dist/src/components/Editor.vue.d.ts.map +1 -0
- package/dist/src/components/EditorContent.vue.d.ts +37 -0
- package/dist/src/components/EditorContent.vue.d.ts.map +1 -0
- package/dist/src/components/EditorDialogs.vue.d.ts +29 -0
- package/dist/src/components/EditorDialogs.vue.d.ts.map +1 -0
- package/dist/src/components/EditorMenuBar.vue.d.ts +39 -0
- package/dist/src/components/EditorMenuBar.vue.d.ts.map +1 -0
- package/dist/src/components/EditorStatusBar.vue.d.ts +26 -0
- package/dist/src/components/EditorStatusBar.vue.d.ts.map +1 -0
- package/dist/src/components/EditorToolbar.vue.d.ts +29 -0
- package/dist/src/components/EditorToolbar.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/BaseDialog.vue.d.ts +28 -0
- package/dist/src/components/dialogs/BaseDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/ColorDialog.vue.d.ts +14 -0
- package/dist/src/components/dialogs/ColorDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/EmojiDialog.vue.d.ts +10 -0
- package/dist/src/components/dialogs/EmojiDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/FindReplaceDialog.vue.d.ts +13 -0
- package/dist/src/components/dialogs/FindReplaceDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/InfoDialog.vue.d.ts +11 -0
- package/dist/src/components/dialogs/InfoDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/LinkDialog.vue.d.ts +18 -0
- package/dist/src/components/dialogs/LinkDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/MediaDialog.vue.d.ts +14 -0
- package/dist/src/components/dialogs/MediaDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/PreviewDialog.vue.d.ts +12 -0
- package/dist/src/components/dialogs/PreviewDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/SourceDialog.vue.d.ts +13 -0
- package/dist/src/components/dialogs/SourceDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/SpecialCharacterDialog.vue.d.ts +10 -0
- package/dist/src/components/dialogs/SpecialCharacterDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/TableDialog.vue.d.ts +13 -0
- package/dist/src/components/dialogs/TableDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/TablePropertiesDialog.vue.d.ts +10 -0
- package/dist/src/components/dialogs/TablePropertiesDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/TemplateDialog.vue.d.ts +15 -0
- package/dist/src/components/dialogs/TemplateDialog.vue.d.ts.map +1 -0
- package/dist/src/components/dialogs/WordCountDialog.vue.d.ts +12 -0
- package/dist/src/components/dialogs/WordCountDialog.vue.d.ts.map +1 -0
- package/dist/src/components/icons/EditorIcon.vue.d.ts +8 -0
- package/dist/src/components/icons/EditorIcon.vue.d.ts.map +1 -0
- package/dist/src/components/images/ImageResizeOverlay.vue.d.ts +17 -0
- package/dist/src/components/images/ImageResizeOverlay.vue.d.ts.map +1 -0
- package/dist/src/components/images/InlineImageUpload.vue.d.ts +20 -0
- package/dist/src/components/images/InlineImageUpload.vue.d.ts.map +1 -0
- package/dist/src/components/images/InlineImageUploadPortal.vue.d.ts +19 -0
- package/dist/src/components/images/InlineImageUploadPortal.vue.d.ts.map +1 -0
- package/dist/src/components/mentions/MentionDropdown.vue.d.ts +45 -0
- package/dist/src/components/mentions/MentionDropdown.vue.d.ts.map +1 -0
- package/dist/src/components/mentions/MentionHoverCard.vue.d.ts +14 -0
- package/dist/src/components/mentions/MentionHoverCard.vue.d.ts.map +1 -0
- package/dist/src/components/mentions/MentionItem.vue.d.ts +28 -0
- package/dist/src/components/mentions/MentionItem.vue.d.ts.map +1 -0
- package/dist/src/components/menus/FloatingMenu.vue.d.ts +19 -0
- package/dist/src/components/menus/FloatingMenu.vue.d.ts.map +1 -0
- package/dist/src/components/merge-tags/MergeTagDropdown.vue.d.ts +20 -0
- package/dist/src/components/merge-tags/MergeTagDropdown.vue.d.ts.map +1 -0
- package/dist/src/components/merge-tags/MergeTagSidebar.vue.d.ts +16 -0
- package/dist/src/components/merge-tags/MergeTagSidebar.vue.d.ts.map +1 -0
- package/dist/src/components/toolbar/CaseChangeMenu.vue.d.ts +14 -0
- package/dist/src/components/toolbar/CaseChangeMenu.vue.d.ts.map +1 -0
- package/dist/src/components/toolbar/ColorPalette.vue.d.ts +13 -0
- package/dist/src/components/toolbar/ColorPalette.vue.d.ts.map +1 -0
- package/dist/src/components/toolbar/ToolbarButton.vue.d.ts +15 -0
- package/dist/src/components/toolbar/ToolbarButton.vue.d.ts.map +1 -0
- package/dist/src/composables/useEditor.d.ts +15 -0
- package/dist/src/composables/useEditor.d.ts.map +1 -0
- package/dist/src/composables/useEditorConfig.d.ts +4 -0
- package/dist/src/composables/useEditorConfig.d.ts.map +1 -0
- package/dist/src/composables/useEditorHistory.d.ts +8 -0
- package/dist/src/composables/useEditorHistory.d.ts.map +1 -0
- package/dist/src/composables/useEditorResize.d.ts +8 -0
- package/dist/src/composables/useEditorResize.d.ts.map +1 -0
- package/dist/src/composables/useEditorSelection.d.ts +10 -0
- package/dist/src/composables/useEditorSelection.d.ts.map +1 -0
- package/dist/src/composables/useEditorUpload.d.ts +14 -0
- package/dist/src/composables/useEditorUpload.d.ts.map +1 -0
- package/dist/src/composables/useFloatingPosition.d.ts +6 -0
- package/dist/src/composables/useFloatingPosition.d.ts.map +1 -0
- package/dist/src/composables/useFullscreen.d.ts +6 -0
- package/dist/src/composables/useFullscreen.d.ts.map +1 -0
- package/dist/src/composables/useImageResize.d.ts +15 -0
- package/dist/src/composables/useImageResize.d.ts.map +1 -0
- package/dist/src/composables/useInlineImageUpload.d.ts +19 -0
- package/dist/src/composables/useInlineImageUpload.d.ts.map +1 -0
- package/dist/src/composables/useLinkInitial.d.ts +7 -0
- package/dist/src/composables/useLinkInitial.d.ts.map +1 -0
- package/dist/src/composables/useMentions.d.ts +28 -0
- package/dist/src/composables/useMentions.d.ts.map +1 -0
- package/dist/src/composables/useMergeTagSidebar.d.ts +10 -0
- package/dist/src/composables/useMergeTagSidebar.d.ts.map +1 -0
- package/dist/src/composables/useMergeTags.d.ts +21 -0
- package/dist/src/composables/useMergeTags.d.ts.map +1 -0
- package/dist/src/composables/useToolbarOverflow.d.ts +6 -0
- package/dist/src/composables/useToolbarOverflow.d.ts.map +1 -0
- package/dist/src/composables/useWordCount.d.ts +4 -0
- package/dist/src/composables/useWordCount.d.ts.map +1 -0
- package/dist/src/config/defaultConfig.d.ts +3 -0
- package/dist/src/config/defaultConfig.d.ts.map +1 -0
- package/dist/src/config/mentionConfig.d.ts +4 -0
- package/dist/src/config/mentionConfig.d.ts.map +1 -0
- package/dist/src/config/menuConfig.d.ts +3 -0
- package/dist/src/config/menuConfig.d.ts.map +1 -0
- package/dist/src/config/menuIcons.d.ts +3 -0
- package/dist/src/config/menuIcons.d.ts.map +1 -0
- package/dist/src/config/mergeTagConfig.d.ts +4 -0
- package/dist/src/config/mergeTagConfig.d.ts.map +1 -0
- package/dist/src/config/templateConfig.d.ts +3 -0
- package/dist/src/config/templateConfig.d.ts.map +1 -0
- package/dist/src/config/toolbarConfig.d.ts +5 -0
- package/dist/src/config/toolbarConfig.d.ts.map +1 -0
- package/dist/src/constants/editorCommands.d.ts +2 -0
- package/dist/src/constants/editorCommands.d.ts.map +1 -0
- package/dist/src/constants/editorDefaults.d.ts +44 -0
- package/dist/src/constants/editorDefaults.d.ts.map +1 -0
- package/dist/src/constants/emojis.d.ts +4 -0
- package/dist/src/constants/emojis.d.ts.map +1 -0
- package/dist/src/constants/imageResize.d.ts +3 -0
- package/dist/src/constants/imageResize.d.ts.map +1 -0
- package/dist/src/constants/keyboardShortcuts.d.ts +2 -0
- package/dist/src/constants/keyboardShortcuts.d.ts.map +1 -0
- package/dist/src/constants/packageInfo.d.ts +2 -0
- package/dist/src/constants/packageInfo.d.ts.map +1 -0
- package/dist/src/constants/printStyles.d.ts +2 -0
- package/dist/src/constants/printStyles.d.ts.map +1 -0
- package/dist/src/constants/specialCharacters.d.ts +4 -0
- package/dist/src/constants/specialCharacters.d.ts.map +1 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/types/commands.d.ts +17 -0
- package/dist/src/types/commands.d.ts.map +1 -0
- package/dist/src/types/config.d.ts +101 -0
- package/dist/src/types/config.d.ts.map +1 -0
- package/dist/src/types/count.d.ts +10 -0
- package/dist/src/types/count.d.ts.map +1 -0
- package/dist/src/types/dialog.d.ts +41 -0
- package/dist/src/types/dialog.d.ts.map +1 -0
- package/dist/src/types/editor.d.ts +49 -0
- package/dist/src/types/editor.d.ts.map +1 -0
- package/dist/src/types/emoji.d.ts +8 -0
- package/dist/src/types/emoji.d.ts.map +1 -0
- package/dist/src/types/events.d.ts +26 -0
- package/dist/src/types/events.d.ts.map +1 -0
- package/dist/src/types/image.d.ts +22 -0
- package/dist/src/types/image.d.ts.map +1 -0
- package/dist/src/types/index.d.ts +16 -0
- package/dist/src/types/index.d.ts.map +1 -0
- package/dist/src/types/mention.d.ts +63 -0
- package/dist/src/types/mention.d.ts.map +1 -0
- package/dist/src/types/menu.d.ts +21 -0
- package/dist/src/types/menu.d.ts.map +1 -0
- package/dist/src/types/mergeTag.d.ts +47 -0
- package/dist/src/types/mergeTag.d.ts.map +1 -0
- package/dist/src/types/specialCharacter.d.ts +10 -0
- package/dist/src/types/specialCharacter.d.ts.map +1 -0
- package/dist/src/types/template.d.ts +19 -0
- package/dist/src/types/template.d.ts.map +1 -0
- package/dist/src/types/toolbar.d.ts +15 -0
- package/dist/src/types/toolbar.d.ts.map +1 -0
- package/dist/src/types/upload.d.ts +16 -0
- package/dist/src/types/upload.d.ts.map +1 -0
- package/dist/src/utils/config.d.ts +4 -0
- package/dist/src/utils/config.d.ts.map +1 -0
- package/dist/src/utils/dateTime.d.ts +4 -0
- package/dist/src/utils/dateTime.d.ts.map +1 -0
- package/dist/src/utils/dom.d.ts +4 -0
- package/dist/src/utils/dom.d.ts.map +1 -0
- package/dist/src/utils/html.d.ts +11 -0
- package/dist/src/utils/html.d.ts.map +1 -0
- package/dist/src/utils/mention.d.ts +11 -0
- package/dist/src/utils/mention.d.ts.map +1 -0
- package/dist/src/utils/mergeTag.d.ts +11 -0
- package/dist/src/utils/mergeTag.d.ts.map +1 -0
- package/dist/src/utils/sanitizer.d.ts +8 -0
- package/dist/src/utils/sanitizer.d.ts.map +1 -0
- package/dist/src/utils/selection.d.ts +6 -0
- package/dist/src/utils/selection.d.ts.map +1 -0
- package/dist/src/utils/units.d.ts +3 -0
- package/dist/src/utils/units.d.ts.map +1 -0
- package/dist/src/utils/url.d.ts +10 -0
- package/dist/src/utils/url.d.ts.map +1 -0
- package/dist/style.css +2 -0
- package/dist/text-editor-vue.js +6428 -0
- package/dist/text-editor-vue.js.map +1 -0
- 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.