@syncfusion/ej2-richtexteditor 29.2.4-738301 → 29.2.4-760237
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/.eslintrc.json +262 -260
- package/aceconfig.js +17 -0
- package/blazorGlobalSrc/common/config.d.ts +63 -0
- package/blazorGlobalSrc/common/config.js +123 -0
- package/blazorGlobalSrc/common/constant.d.ts +117 -0
- package/blazorGlobalSrc/common/constant.js +23 -0
- package/blazorGlobalSrc/common/editor-styles.d.ts +1 -0
- package/blazorGlobalSrc/common/editor-styles.js +5 -0
- package/blazorGlobalSrc/common/index.d.ts +7 -0
- package/blazorGlobalSrc/common/index.js +9 -0
- package/blazorGlobalSrc/common/interface.d.ts +119 -0
- package/blazorGlobalSrc/common/interface.js +4 -0
- package/blazorGlobalSrc/common/types.d.ts +25 -0
- package/blazorGlobalSrc/common/types.js +4 -0
- package/blazorGlobalSrc/common/user-agent.d.ts +41 -0
- package/blazorGlobalSrc/common/user-agent.js +71 -0
- package/blazorGlobalSrc/common/util.d.ts +70 -0
- package/blazorGlobalSrc/common/util.js +222 -0
- package/blazorGlobalSrc/components.d.ts +8 -0
- package/blazorGlobalSrc/components.js +12 -0
- package/blazorGlobalSrc/editor-manager/base/classes.d.ts +31 -0
- package/blazorGlobalSrc/editor-manager/base/classes.js +28 -0
- package/blazorGlobalSrc/editor-manager/base/constant.d.ts +97 -0
- package/blazorGlobalSrc/editor-manager/base/constant.js +41 -0
- package/blazorGlobalSrc/editor-manager/base/editor-manager.d.ts +95 -0
- package/blazorGlobalSrc/editor-manager/base/editor-manager.js +339 -0
- package/blazorGlobalSrc/editor-manager/base/enum.d.ts +17 -0
- package/blazorGlobalSrc/editor-manager/base/enum.js +4 -0
- package/blazorGlobalSrc/editor-manager/base/interface.d.ts +263 -0
- package/blazorGlobalSrc/editor-manager/base/interface.js +4 -0
- package/blazorGlobalSrc/editor-manager/base/types.d.ts +7 -0
- package/blazorGlobalSrc/editor-manager/base/types.js +4 -0
- package/blazorGlobalSrc/editor-manager/base.d.ts +8 -0
- package/blazorGlobalSrc/editor-manager/base.js +10 -0
- package/blazorGlobalSrc/editor-manager/index.d.ts +5 -0
- package/blazorGlobalSrc/editor-manager/index.js +9 -0
- package/blazorGlobalSrc/editor-manager/plugin/alignments.d.ts +26 -0
- package/blazorGlobalSrc/editor-manager/plugin/alignments.js +105 -0
- package/blazorGlobalSrc/editor-manager/plugin/audio.d.ts +34 -0
- package/blazorGlobalSrc/editor-manager/plugin/audio.js +145 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat-exec.d.ts +24 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat-exec.js +47 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat.d.ts +29 -0
- package/blazorGlobalSrc/editor-manager/plugin/clearformat.js +249 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-node.d.ts +351 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-node.js +737 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-tree.d.ts +84 -0
- package/blazorGlobalSrc/editor-manager/plugin/dom-tree.js +164 -0
- package/blazorGlobalSrc/editor-manager/plugin/emoji-picker-action.d.ts +10 -0
- package/blazorGlobalSrc/editor-manager/plugin/emoji-picker-action.js +86 -0
- package/blazorGlobalSrc/editor-manager/plugin/format-painter-actions.d.ts +47 -0
- package/blazorGlobalSrc/editor-manager/plugin/format-painter-actions.js +622 -0
- package/blazorGlobalSrc/editor-manager/plugin/formats.d.ts +43 -0
- package/blazorGlobalSrc/editor-manager/plugin/formats.js +597 -0
- package/blazorGlobalSrc/editor-manager/plugin/image.d.ts +48 -0
- package/blazorGlobalSrc/editor-manager/plugin/image.js +399 -0
- package/blazorGlobalSrc/editor-manager/plugin/indents.d.ts +24 -0
- package/blazorGlobalSrc/editor-manager/plugin/indents.js +106 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-methods.d.ts +48 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-methods.js +37 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-text.d.ts +22 -0
- package/blazorGlobalSrc/editor-manager/plugin/insert-text.js +36 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml-exec.d.ts +22 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml-exec.js +49 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml.d.ts +51 -0
- package/blazorGlobalSrc/editor-manager/plugin/inserthtml.js +985 -0
- package/blazorGlobalSrc/editor-manager/plugin/isformatted.d.ts +89 -0
- package/blazorGlobalSrc/editor-manager/plugin/isformatted.js +199 -0
- package/blazorGlobalSrc/editor-manager/plugin/link.d.ts +41 -0
- package/blazorGlobalSrc/editor-manager/plugin/link.js +550 -0
- package/blazorGlobalSrc/editor-manager/plugin/lists.d.ts +74 -0
- package/blazorGlobalSrc/editor-manager/plugin/lists.js +1503 -0
- package/blazorGlobalSrc/editor-manager/plugin/ms-word-clean-up.d.ts +61 -0
- package/blazorGlobalSrc/editor-manager/plugin/ms-word-clean-up.js +1136 -0
- package/blazorGlobalSrc/editor-manager/plugin/nodecutter.d.ts +64 -0
- package/blazorGlobalSrc/editor-manager/plugin/nodecutter.js +167 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-commands.d.ts +41 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-commands.js +1069 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-exec.d.ts +24 -0
- package/blazorGlobalSrc/editor-manager/plugin/selection-exec.js +49 -0
- package/blazorGlobalSrc/editor-manager/plugin/table-selection.d.ts +26 -0
- package/blazorGlobalSrc/editor-manager/plugin/table-selection.js +210 -0
- package/blazorGlobalSrc/editor-manager/plugin/table.d.ts +56 -0
- package/blazorGlobalSrc/editor-manager/plugin/table.js +1100 -0
- package/blazorGlobalSrc/editor-manager/plugin/toolbar-status.d.ts +39 -0
- package/blazorGlobalSrc/editor-manager/plugin/toolbar-status.js +384 -0
- package/blazorGlobalSrc/editor-manager/plugin/undo.d.ts +85 -0
- package/blazorGlobalSrc/editor-manager/plugin/undo.js +216 -0
- package/blazorGlobalSrc/editor-manager/plugin/video.d.ts +38 -0
- package/blazorGlobalSrc/editor-manager/plugin/video.js +311 -0
- package/blazorGlobalSrc/editor-manager/plugin.d.ts +27 -0
- package/blazorGlobalSrc/editor-manager/plugin.js +31 -0
- package/blazorGlobalSrc/global.d.ts +1 -0
- package/blazorGlobalSrc/global.js +3 -0
- package/blazorGlobalSrc/index.d.ts +8 -0
- package/blazorGlobalSrc/index.js +12 -0
- package/blazorGlobalSrc/markdown-parser/base/constant.d.ts +39 -0
- package/blazorGlobalSrc/markdown-parser/base/constant.js +10 -0
- package/blazorGlobalSrc/markdown-parser/base/interface.d.ts +169 -0
- package/blazorGlobalSrc/markdown-parser/base/interface.js +4 -0
- package/blazorGlobalSrc/markdown-parser/base/markdown-parser.d.ts +69 -0
- package/blazorGlobalSrc/markdown-parser/base/markdown-parser.js +87 -0
- package/blazorGlobalSrc/markdown-parser/base/types.d.ts +7 -0
- package/blazorGlobalSrc/markdown-parser/base/types.js +4 -0
- package/blazorGlobalSrc/markdown-parser/base.d.ts +7 -0
- package/blazorGlobalSrc/markdown-parser/base.js +9 -0
- package/blazorGlobalSrc/markdown-parser/index.d.ts +5 -0
- package/blazorGlobalSrc/markdown-parser/index.js +9 -0
- package/blazorGlobalSrc/markdown-parser/plugin/clearformat.d.ts +28 -0
- package/blazorGlobalSrc/markdown-parser/plugin/clearformat.js +110 -0
- package/blazorGlobalSrc/markdown-parser/plugin/formats.d.ts +32 -0
- package/blazorGlobalSrc/markdown-parser/plugin/formats.js +225 -0
- package/blazorGlobalSrc/markdown-parser/plugin/insert-text.d.ts +24 -0
- package/blazorGlobalSrc/markdown-parser/plugin/insert-text.js +49 -0
- package/blazorGlobalSrc/markdown-parser/plugin/link.d.ts +24 -0
- package/blazorGlobalSrc/markdown-parser/plugin/link.js +50 -0
- package/blazorGlobalSrc/markdown-parser/plugin/lists.d.ts +39 -0
- package/blazorGlobalSrc/markdown-parser/plugin/lists.js +462 -0
- package/blazorGlobalSrc/markdown-parser/plugin/markdown-selection.d.ts +140 -0
- package/blazorGlobalSrc/markdown-parser/plugin/markdown-selection.js +104 -0
- package/blazorGlobalSrc/markdown-parser/plugin/md-selection-formats.d.ts +31 -0
- package/blazorGlobalSrc/markdown-parser/plugin/md-selection-formats.js +335 -0
- package/blazorGlobalSrc/markdown-parser/plugin/table.d.ts +52 -0
- package/blazorGlobalSrc/markdown-parser/plugin/table.js +216 -0
- package/blazorGlobalSrc/markdown-parser/plugin/undo.d.ts +83 -0
- package/blazorGlobalSrc/markdown-parser/plugin/undo.js +147 -0
- package/blazorGlobalSrc/markdown-parser/plugin.d.ts +11 -0
- package/blazorGlobalSrc/markdown-parser/plugin.js +15 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-quick-toolbar.d.ts +114 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-quick-toolbar.js +465 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-toolbar.d.ts +58 -0
- package/blazorGlobalSrc/rich-text-editor/actions/base-toolbar.js +216 -0
- package/blazorGlobalSrc/rich-text-editor/actions/color-picker.d.ts +52 -0
- package/blazorGlobalSrc/rich-text-editor/actions/color-picker.js +241 -0
- package/blazorGlobalSrc/rich-text-editor/actions/count.d.ts +55 -0
- package/blazorGlobalSrc/rich-text-editor/actions/count.js +117 -0
- package/blazorGlobalSrc/rich-text-editor/actions/dropdown-buttons.d.ts +72 -0
- package/blazorGlobalSrc/rich-text-editor/actions/dropdown-buttons.js +552 -0
- package/blazorGlobalSrc/rich-text-editor/actions/emoji-picker.d.ts +51 -0
- package/blazorGlobalSrc/rich-text-editor/actions/emoji-picker.js +853 -0
- package/blazorGlobalSrc/rich-text-editor/actions/enter-key.d.ts +28 -0
- package/blazorGlobalSrc/rich-text-editor/actions/enter-key.js +821 -0
- package/blazorGlobalSrc/rich-text-editor/actions/execute-command-callback.d.ts +11 -0
- package/blazorGlobalSrc/rich-text-editor/actions/execute-command-callback.js +28 -0
- package/blazorGlobalSrc/rich-text-editor/actions/file-manager.d.ts +45 -0
- package/blazorGlobalSrc/rich-text-editor/actions/file-manager.js +249 -0
- package/blazorGlobalSrc/rich-text-editor/actions/format-painter.d.ts +25 -0
- package/blazorGlobalSrc/rich-text-editor/actions/format-painter.js +156 -0
- package/blazorGlobalSrc/rich-text-editor/actions/full-screen.d.ts +40 -0
- package/blazorGlobalSrc/rich-text-editor/actions/full-screen.js +148 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-attributes.d.ts +15 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-attributes.js +50 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-editor.d.ts +120 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-editor.js +1244 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-toolbar-status.d.ts +14 -0
- package/blazorGlobalSrc/rich-text-editor/actions/html-toolbar-status.js +47 -0
- package/blazorGlobalSrc/rich-text-editor/actions/import-export.d.ts +21 -0
- package/blazorGlobalSrc/rich-text-editor/actions/import-export.js +117 -0
- package/blazorGlobalSrc/rich-text-editor/actions/keyboard-model.d.ts +30 -0
- package/blazorGlobalSrc/rich-text-editor/actions/keyboard.d.ts +110 -0
- package/blazorGlobalSrc/rich-text-editor/actions/keyboard.js +163 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-editor.d.ts +66 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-editor.js +142 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-toolbar-status.d.ts +23 -0
- package/blazorGlobalSrc/rich-text-editor/actions/markdown-toolbar-status.js +124 -0
- package/blazorGlobalSrc/rich-text-editor/actions/paste-clean-up.d.ts +86 -0
- package/blazorGlobalSrc/rich-text-editor/actions/paste-clean-up.js +1071 -0
- package/blazorGlobalSrc/rich-text-editor/actions/quick-toolbar.d.ts +151 -0
- package/blazorGlobalSrc/rich-text-editor/actions/quick-toolbar.js +548 -0
- package/blazorGlobalSrc/rich-text-editor/actions/resize.d.ts +37 -0
- package/blazorGlobalSrc/rich-text-editor/actions/resize.js +188 -0
- package/blazorGlobalSrc/rich-text-editor/actions/sanitize-helper.d.ts +11 -0
- package/blazorGlobalSrc/rich-text-editor/actions/sanitize-helper.js +168 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar-action.d.ts +18 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar-action.js +76 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar.d.ts +185 -0
- package/blazorGlobalSrc/rich-text-editor/actions/toolbar.js +512 -0
- package/blazorGlobalSrc/rich-text-editor/actions/xhtml-validation.d.ts +25 -0
- package/blazorGlobalSrc/rich-text-editor/actions/xhtml-validation.js +166 -0
- package/blazorGlobalSrc/rich-text-editor/actions.d.ts +26 -0
- package/blazorGlobalSrc/rich-text-editor/actions.js +30 -0
- package/blazorGlobalSrc/rich-text-editor/audio.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/audio.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/base/classes.d.ts +628 -0
- package/blazorGlobalSrc/rich-text-editor/base/classes.js +129 -0
- package/blazorGlobalSrc/rich-text-editor/base/constant.d.ts +808 -0
- package/blazorGlobalSrc/rich-text-editor/base/constant.js +334 -0
- package/blazorGlobalSrc/rich-text-editor/base/enum.d.ts +81 -0
- package/blazorGlobalSrc/rich-text-editor/base/enum.js +37 -0
- package/blazorGlobalSrc/rich-text-editor/base/interface.d.ts +1577 -0
- package/blazorGlobalSrc/rich-text-editor/base/interface.js +194 -0
- package/blazorGlobalSrc/rich-text-editor/base/rich-text-editor-model.d.ts +1032 -0
- package/blazorGlobalSrc/rich-text-editor/base/rich-text-editor.d.ts +1699 -0
- package/blazorGlobalSrc/rich-text-editor/base/rich-text-editor.js +2645 -0
- package/blazorGlobalSrc/rich-text-editor/base/util.d.ts +212 -0
- package/blazorGlobalSrc/rich-text-editor/base/util.js +610 -0
- package/blazorGlobalSrc/rich-text-editor/base.d.ts +10 -0
- package/blazorGlobalSrc/rich-text-editor/base.js +13 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/formatter.d.ts +87 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/formatter.js +223 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/html-formatter.d.ts +34 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/html-formatter.js +44 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/markdown-formatter.d.ts +39 -0
- package/blazorGlobalSrc/rich-text-editor/formatter/markdown-formatter.js +48 -0
- package/blazorGlobalSrc/rich-text-editor/formatter.d.ts +6 -0
- package/blazorGlobalSrc/rich-text-editor/formatter.js +10 -0
- package/blazorGlobalSrc/rich-text-editor/html-editor.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/html-editor.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/image.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/image.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/index.d.ts +9 -0
- package/blazorGlobalSrc/rich-text-editor/index.js +12 -0
- package/blazorGlobalSrc/rich-text-editor/link.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/link.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/markdown-editor.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/markdown-editor.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/models/default-locale.d.ts +25 -0
- package/blazorGlobalSrc/rich-text-editor/models/default-locale.js +391 -0
- package/blazorGlobalSrc/rich-text-editor/models/iframe-settings-model.d.ts +68 -0
- package/blazorGlobalSrc/rich-text-editor/models/iframe-settings.d.ts +61 -0
- package/blazorGlobalSrc/rich-text-editor/models/iframe-settings.js +60 -0
- package/blazorGlobalSrc/rich-text-editor/models/inline-mode-model.d.ts +24 -0
- package/blazorGlobalSrc/rich-text-editor/models/inline-mode.d.ts +20 -0
- package/blazorGlobalSrc/rich-text-editor/models/inline-mode.js +37 -0
- package/blazorGlobalSrc/rich-text-editor/models/items.d.ts +36 -0
- package/blazorGlobalSrc/rich-text-editor/models/items.js +1011 -0
- package/blazorGlobalSrc/rich-text-editor/models/models.d.ts +7 -0
- package/blazorGlobalSrc/rich-text-editor/models/models.js +4 -0
- package/blazorGlobalSrc/rich-text-editor/models/slash-menu-settings-model.d.ts +40 -0
- package/blazorGlobalSrc/rich-text-editor/models/slash-menu-settings.d.ts +50 -0
- package/blazorGlobalSrc/rich-text-editor/models/slash-menu-settings.js +143 -0
- package/blazorGlobalSrc/rich-text-editor/models/toolbar-settings-model.d.ts +1130 -0
- package/blazorGlobalSrc/rich-text-editor/models/toolbar-settings.d.ts +992 -0
- package/blazorGlobalSrc/rich-text-editor/models/toolbar-settings.js +510 -0
- package/blazorGlobalSrc/rich-text-editor/models.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/models.js +4 -0
- package/blazorGlobalSrc/rich-text-editor/quick-toolbar.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/quick-toolbar.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/audio-module.d.ts +82 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/audio-module.js +886 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/content-renderer.d.ts +65 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/content-renderer.js +49 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/dialog-renderer.d.ts +39 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/dialog-renderer.js +111 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/iframe-content-renderer.d.ts +33 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/iframe-content-renderer.js +101 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/image-module.d.ts +199 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/image-module.js +2494 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/link-module.d.ts +63 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/link-module.js +596 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/markdown-renderer.d.ts +65 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/markdown-renderer.js +38 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/popup-renderer.d.ts +54 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/popup-renderer.js +35 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/render.d.ts +46 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/render.js +70 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/slash-menu.d.ts +20 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/slash-menu.js +224 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/table-module.d.ts +155 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/table-module.js +2206 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/toolbar-renderer.d.ts +131 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/toolbar-renderer.js +747 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/video-module.d.ts +120 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/video-module.js +1507 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/view-source.d.ts +74 -0
- package/blazorGlobalSrc/rich-text-editor/renderer/view-source.js +225 -0
- package/blazorGlobalSrc/rich-text-editor/renderer.d.ts +17 -0
- package/blazorGlobalSrc/rich-text-editor/renderer.js +21 -0
- package/blazorGlobalSrc/rich-text-editor/services/renderer-factory.d.ts +33 -0
- package/blazorGlobalSrc/rich-text-editor/services/renderer-factory.js +29 -0
- package/blazorGlobalSrc/rich-text-editor/services/service-locator.d.ts +29 -0
- package/blazorGlobalSrc/rich-text-editor/services/service-locator.js +25 -0
- package/blazorGlobalSrc/rich-text-editor/services.d.ts +5 -0
- package/blazorGlobalSrc/rich-text-editor/services.js +9 -0
- package/blazorGlobalSrc/rich-text-editor/toolbar.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/toolbar.js +8 -0
- package/blazorGlobalSrc/rich-text-editor/video.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor/video.js +8 -0
- package/blazorGlobalSrc/rich-text-editor.d.ts +4 -0
- package/blazorGlobalSrc/rich-text-editor.js +8 -0
- package/blazorGlobalSrc/selection/index.d.ts +4 -0
- package/blazorGlobalSrc/selection/index.js +8 -0
- package/blazorGlobalSrc/selection/selection.d.ts +244 -0
- package/blazorGlobalSrc/selection/selection.js +309 -0
- package/dist/ej2-richtexteditor.umd.min.js +1 -1
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +6 -4
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +6 -4
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/helpers/e2e/index.d.ts +1 -0
- package/helpers/e2e/index.js +8 -0
- package/helpers/e2e/rte-helper.d.ts +79 -0
- package/helpers/e2e/rte-helper.js +81 -0
- package/package.json +1 -1
- package/src/editor-manager/plugin/dom-tree.js +6 -4
- package/src/global.d.ts +1 -0
- package/styles/bds-lite.css +7 -17
- package/styles/bds.css +11 -22
- package/styles/bootstrap-dark-lite.css +3 -13
- package/styles/bootstrap-dark.css +3 -14
- package/styles/bootstrap-lite.css +3 -13
- package/styles/bootstrap.css +3 -14
- package/styles/bootstrap4-lite.css +3 -13
- package/styles/bootstrap4.css +3 -14
- package/styles/bootstrap5-dark-lite.css +3 -13
- package/styles/bootstrap5-dark.css +3 -14
- package/styles/bootstrap5-lite.css +3 -13
- package/styles/bootstrap5.3-lite.css +3 -13
- package/styles/bootstrap5.3.css +3 -14
- package/styles/bootstrap5.css +3 -14
- package/styles/fabric-dark-lite.css +3 -13
- package/styles/fabric-dark.css +3 -14
- package/styles/fabric-lite.css +3 -13
- package/styles/fabric.css +3 -14
- package/styles/fluent-dark-lite.css +3 -13
- package/styles/fluent-dark.css +3 -14
- package/styles/fluent-lite.css +3 -13
- package/styles/fluent.css +3 -14
- package/styles/fluent2-lite.css +3 -13
- package/styles/fluent2.css +3 -14
- package/styles/highcontrast-light-lite.css +3 -13
- package/styles/highcontrast-light.css +3 -14
- package/styles/highcontrast-lite.css +3 -13
- package/styles/highcontrast.css +3 -14
- package/styles/material-dark-lite.css +3 -13
- package/styles/material-dark.css +3 -14
- package/styles/material-lite.css +3 -13
- package/styles/material.css +3 -14
- package/styles/material3-dark-lite.css +3 -13
- package/styles/material3-dark.css +3 -14
- package/styles/material3-lite.css +3 -13
- package/styles/material3.css +3 -14
- package/styles/rich-text-editor/_bds-definition.scss +2 -2
- package/styles/rich-text-editor/_bigger.scss +0 -1
- package/styles/rich-text-editor/_layout.scss +0 -9
- package/styles/rich-text-editor/_theme.scss +3 -0
- package/styles/rich-text-editor/bds.css +11 -22
- package/styles/rich-text-editor/bootstrap-dark.css +3 -14
- package/styles/rich-text-editor/bootstrap.css +3 -14
- package/styles/rich-text-editor/bootstrap4.css +3 -14
- package/styles/rich-text-editor/bootstrap5-dark.css +3 -14
- package/styles/rich-text-editor/bootstrap5.3.css +3 -14
- package/styles/rich-text-editor/bootstrap5.css +3 -14
- package/styles/rich-text-editor/fabric-dark.css +3 -14
- package/styles/rich-text-editor/fabric.css +3 -14
- package/styles/rich-text-editor/fluent-dark.css +3 -14
- package/styles/rich-text-editor/fluent.css +3 -14
- package/styles/rich-text-editor/fluent2.css +3 -14
- package/styles/rich-text-editor/highcontrast-light.css +3 -14
- package/styles/rich-text-editor/highcontrast.css +3 -14
- package/styles/rich-text-editor/material-dark.css +3 -14
- package/styles/rich-text-editor/material.css +3 -14
- package/styles/rich-text-editor/material3-dark.css +3 -14
- package/styles/rich-text-editor/material3.css +3 -14
- package/styles/rich-text-editor/tailwind-dark.css +3 -14
- package/styles/rich-text-editor/tailwind.css +3 -14
- package/styles/rich-text-editor/tailwind3.css +3 -14
- package/styles/tailwind-dark-lite.css +3 -13
- package/styles/tailwind-dark.css +3 -14
- package/styles/tailwind-lite.css +3 -13
- package/styles/tailwind.css +3 -14
- package/styles/tailwind3-lite.css +3 -13
- package/styles/tailwind3.css +3 -14
- package/tslint.json +111 -0
|
@@ -0,0 +1,1011 @@
|
|
|
1
|
+
define(["require", "exports"], function (require, exports) {
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.templateItems = ['alignments', 'formats', 'fontname', 'fontsize', 'fontcolor', 'backgroundcolor', 'align', 'display', 'audiolayoutoption', 'videolayoutoption', 'videoalign', 'tablerows', 'tablecolumns', 'tablecell', 'tablecellhorizontalalign', 'tablecellverticalalign', 'styles', 'numberformatlist', 'bulletformatlist'];
|
|
5
|
+
exports.tools = {
|
|
6
|
+
'alignments': {
|
|
7
|
+
'id': 'Alignments',
|
|
8
|
+
'icon': 'e-alignments',
|
|
9
|
+
'tooltip': 'Alignments',
|
|
10
|
+
'command': 'Alignments',
|
|
11
|
+
'subCommand': 'Alignments'
|
|
12
|
+
},
|
|
13
|
+
'justifyleft': {
|
|
14
|
+
'id': 'JustifyLeft',
|
|
15
|
+
'icon': 'e-justify-left',
|
|
16
|
+
'tooltip': 'JustifyLeft',
|
|
17
|
+
'command': 'Alignments',
|
|
18
|
+
'subCommand': 'JustifyLeft'
|
|
19
|
+
},
|
|
20
|
+
'justifycenter': {
|
|
21
|
+
'id': 'JustifyCenter',
|
|
22
|
+
'icon': 'e-justify-center',
|
|
23
|
+
'tooltip': 'JustifyCenter',
|
|
24
|
+
'command': 'Alignments',
|
|
25
|
+
'subCommand': 'JustifyCenter'
|
|
26
|
+
},
|
|
27
|
+
'justifyright': {
|
|
28
|
+
'id': 'JustifyRight',
|
|
29
|
+
'icon': 'e-justify-right',
|
|
30
|
+
'tooltip': 'JustifyRight',
|
|
31
|
+
'command': 'Alignments',
|
|
32
|
+
'subCommand': 'JustifyRight'
|
|
33
|
+
},
|
|
34
|
+
'justifyfull': {
|
|
35
|
+
'id': 'JustifyFull',
|
|
36
|
+
'icon': 'e-justify-full',
|
|
37
|
+
'tooltip': 'JustifyFull',
|
|
38
|
+
'command': 'Alignments',
|
|
39
|
+
'subCommand': 'JustifyFull'
|
|
40
|
+
},
|
|
41
|
+
'fontname': {
|
|
42
|
+
'id': 'FontName',
|
|
43
|
+
'icon': 'e-font-name',
|
|
44
|
+
'tooltip': 'Font Name',
|
|
45
|
+
'command': 'Font',
|
|
46
|
+
'subCommand': 'FontName'
|
|
47
|
+
},
|
|
48
|
+
'fontsize': {
|
|
49
|
+
'id': 'FontSize',
|
|
50
|
+
'icon': 'e-font-size',
|
|
51
|
+
'tooltip': 'Font Size',
|
|
52
|
+
'command': 'Font',
|
|
53
|
+
'subCommand': 'FontSize'
|
|
54
|
+
},
|
|
55
|
+
'fontcolor': {
|
|
56
|
+
'id': 'FontColor',
|
|
57
|
+
'icon': 'e-rte-font-color',
|
|
58
|
+
'tooltip': 'Font Color',
|
|
59
|
+
'command': 'Font',
|
|
60
|
+
'subCommand': 'FontColor',
|
|
61
|
+
'value': '#ff0000ff'
|
|
62
|
+
},
|
|
63
|
+
'backgroundcolor': {
|
|
64
|
+
'id': 'BackgroundColor',
|
|
65
|
+
'icon': 'e-background-color',
|
|
66
|
+
'tooltip': 'Background Color',
|
|
67
|
+
'command': 'Font',
|
|
68
|
+
'subCommand': 'BackgroundColor',
|
|
69
|
+
'value': '#ffff00ff'
|
|
70
|
+
},
|
|
71
|
+
'importword': {
|
|
72
|
+
'id': 'ImportWord',
|
|
73
|
+
'icon': 'e-rte-import-doc',
|
|
74
|
+
'tooltip': 'Import from Word',
|
|
75
|
+
'command': 'Import',
|
|
76
|
+
'subCommand': 'ImportWord'
|
|
77
|
+
},
|
|
78
|
+
'exportword': {
|
|
79
|
+
'id': 'ExportWord',
|
|
80
|
+
'icon': 'e-rte-export-doc',
|
|
81
|
+
'tooltip': 'Export to Word',
|
|
82
|
+
'command': 'Export',
|
|
83
|
+
'subCommand': 'ExportWord'
|
|
84
|
+
},
|
|
85
|
+
'exportpdf': {
|
|
86
|
+
'id': 'ExportPdf',
|
|
87
|
+
'icon': 'e-rte-export-pdf',
|
|
88
|
+
'tooltip': 'Export to PDF',
|
|
89
|
+
'command': 'Export',
|
|
90
|
+
'subCommand': 'ExportPdf'
|
|
91
|
+
},
|
|
92
|
+
'bold': {
|
|
93
|
+
'id': 'Bold',
|
|
94
|
+
'icon': 'e-bold',
|
|
95
|
+
'tooltip': 'Bold',
|
|
96
|
+
'command': 'Style',
|
|
97
|
+
'subCommand': 'Bold'
|
|
98
|
+
},
|
|
99
|
+
'italic': {
|
|
100
|
+
'id': 'Italic',
|
|
101
|
+
'icon': 'e-italic',
|
|
102
|
+
'tooltip': 'Italic',
|
|
103
|
+
'command': 'Style',
|
|
104
|
+
'subCommand': 'Italic'
|
|
105
|
+
},
|
|
106
|
+
'underline': {
|
|
107
|
+
'id': 'Underline',
|
|
108
|
+
'icon': 'e-underline',
|
|
109
|
+
'tooltip': 'Underline',
|
|
110
|
+
'command': 'Style',
|
|
111
|
+
'subCommand': 'Underline'
|
|
112
|
+
},
|
|
113
|
+
'strikethrough': {
|
|
114
|
+
'id': 'StrikeThrough',
|
|
115
|
+
'icon': 'e-strike-through',
|
|
116
|
+
'tooltip': 'StrikeThrough',
|
|
117
|
+
'command': 'Style',
|
|
118
|
+
'subCommand': 'StrikeThrough'
|
|
119
|
+
},
|
|
120
|
+
'clearformat': {
|
|
121
|
+
'id': 'ClearFormat',
|
|
122
|
+
'icon': 'e-clear-format',
|
|
123
|
+
'tooltip': 'Clear Format',
|
|
124
|
+
'command': 'Clear',
|
|
125
|
+
'subCommand': 'ClearFormat'
|
|
126
|
+
},
|
|
127
|
+
'clearall': {
|
|
128
|
+
'id': 'ClearAll',
|
|
129
|
+
'icon': 'e-clear-all',
|
|
130
|
+
'tooltip': 'Clear All',
|
|
131
|
+
'command': 'Clear',
|
|
132
|
+
'subCommand': 'ClearAll'
|
|
133
|
+
},
|
|
134
|
+
'cut': {
|
|
135
|
+
'id': 'Cut',
|
|
136
|
+
'icon': 'e-cut',
|
|
137
|
+
'tooltip': 'Cut',
|
|
138
|
+
'command': 'ClipBoard',
|
|
139
|
+
'subCommand': 'Cut'
|
|
140
|
+
},
|
|
141
|
+
'copy': {
|
|
142
|
+
'id': 'Copy',
|
|
143
|
+
'icon': 'e-copy',
|
|
144
|
+
'tooltip': 'Copy',
|
|
145
|
+
'command': 'ClipBoard',
|
|
146
|
+
'subCommand': 'Copy'
|
|
147
|
+
},
|
|
148
|
+
'paste': {
|
|
149
|
+
'id': 'Paste',
|
|
150
|
+
'icon': 'e-paste',
|
|
151
|
+
'tooltip': 'Paste',
|
|
152
|
+
'command': 'ClipBoard',
|
|
153
|
+
'subCommand': 'Paste'
|
|
154
|
+
},
|
|
155
|
+
'unorderedlist': {
|
|
156
|
+
'id': 'UnorderedList',
|
|
157
|
+
'icon': 'e-unorder-list',
|
|
158
|
+
'tooltip': 'Bulleted List',
|
|
159
|
+
'command': 'Lists',
|
|
160
|
+
'subCommand': 'UL'
|
|
161
|
+
},
|
|
162
|
+
'orderedlist': {
|
|
163
|
+
'id': 'OrderedList',
|
|
164
|
+
'icon': 'e-order-list',
|
|
165
|
+
'tooltip': 'Numbered List',
|
|
166
|
+
'command': 'Lists',
|
|
167
|
+
'subCommand': 'OL'
|
|
168
|
+
},
|
|
169
|
+
'numberformatlist': {
|
|
170
|
+
'id': 'NumberFormatList',
|
|
171
|
+
'icon': 'e-order-list',
|
|
172
|
+
'tooltip': 'Number Format List',
|
|
173
|
+
'command': 'NumberFormatList',
|
|
174
|
+
'subCommand': 'NumberFormatList'
|
|
175
|
+
},
|
|
176
|
+
'bulletformatlist': {
|
|
177
|
+
'id': 'BulletFormatList',
|
|
178
|
+
'icon': 'e-unorder-list',
|
|
179
|
+
'tooltip': 'Bullet Format List',
|
|
180
|
+
'command': 'BulletFormatList',
|
|
181
|
+
'subCommand': 'BulletFormatList'
|
|
182
|
+
},
|
|
183
|
+
'indent': {
|
|
184
|
+
'id': 'Indent',
|
|
185
|
+
'icon': 'e-indent',
|
|
186
|
+
'tooltip': 'Increase Indent',
|
|
187
|
+
'command': 'Indents',
|
|
188
|
+
'subCommand': 'Indent'
|
|
189
|
+
},
|
|
190
|
+
'outdent': {
|
|
191
|
+
'id': 'Outdent',
|
|
192
|
+
'icon': 'e-outdent',
|
|
193
|
+
'tooltip': 'Decrease Indent',
|
|
194
|
+
'command': 'Indents',
|
|
195
|
+
'subCommand': 'Outdent'
|
|
196
|
+
},
|
|
197
|
+
'undo': {
|
|
198
|
+
'id': 'Undo',
|
|
199
|
+
'icon': 'e-undo',
|
|
200
|
+
'tooltip': 'Undo',
|
|
201
|
+
'command': 'Actions',
|
|
202
|
+
'subCommand': 'Undo'
|
|
203
|
+
},
|
|
204
|
+
'redo': {
|
|
205
|
+
'id': 'Redo',
|
|
206
|
+
'icon': 'e-redo',
|
|
207
|
+
'tooltip': 'Redo',
|
|
208
|
+
'command': 'Actions',
|
|
209
|
+
'subCommand': 'Redo'
|
|
210
|
+
},
|
|
211
|
+
'superscript': {
|
|
212
|
+
'id': 'SuperScript',
|
|
213
|
+
'icon': 'e-super-script',
|
|
214
|
+
'tooltip': 'Superscript',
|
|
215
|
+
'command': 'Effects',
|
|
216
|
+
'subCommand': 'SuperScript'
|
|
217
|
+
},
|
|
218
|
+
'subscript': {
|
|
219
|
+
'id': 'SubScript',
|
|
220
|
+
'icon': 'e-sub-script',
|
|
221
|
+
'tooltip': 'Subscript',
|
|
222
|
+
'command': 'Effects',
|
|
223
|
+
'subCommand': 'SubScript'
|
|
224
|
+
},
|
|
225
|
+
'createlink': {
|
|
226
|
+
'id': 'CreateLink',
|
|
227
|
+
'icon': 'e-create-link',
|
|
228
|
+
'tooltip': 'Insert Hyperlink',
|
|
229
|
+
'command': 'Links',
|
|
230
|
+
'subCommand': 'CreateLink'
|
|
231
|
+
},
|
|
232
|
+
'openlink': {
|
|
233
|
+
'id': 'OpenLink',
|
|
234
|
+
'icon': 'e-open-link',
|
|
235
|
+
'tooltip': 'Open Link',
|
|
236
|
+
'command': 'Links',
|
|
237
|
+
'subCommand': 'OpenLink'
|
|
238
|
+
},
|
|
239
|
+
'editlink': {
|
|
240
|
+
'id': 'EditLink',
|
|
241
|
+
'icon': 'e-edit-link',
|
|
242
|
+
'tooltip': 'Edit Link',
|
|
243
|
+
'command': 'Links',
|
|
244
|
+
'subCommand': 'EditLink'
|
|
245
|
+
},
|
|
246
|
+
'removelink': {
|
|
247
|
+
'id': 'RemoveLink',
|
|
248
|
+
'icon': 'e-remove-link',
|
|
249
|
+
'tooltip': 'Remove Link',
|
|
250
|
+
'command': 'Links',
|
|
251
|
+
'subCommand': 'RemoveLink'
|
|
252
|
+
},
|
|
253
|
+
'image': {
|
|
254
|
+
'id': 'Image',
|
|
255
|
+
'icon': 'e-image',
|
|
256
|
+
'tooltip': 'Insert Image',
|
|
257
|
+
'command': 'Images',
|
|
258
|
+
'subCommand': 'Image'
|
|
259
|
+
},
|
|
260
|
+
'audio': {
|
|
261
|
+
'id': 'Audio',
|
|
262
|
+
'icon': 'e-audio',
|
|
263
|
+
'tooltip': 'Insert Audio',
|
|
264
|
+
'command': 'Audios',
|
|
265
|
+
'subCommand': 'Audio'
|
|
266
|
+
},
|
|
267
|
+
'video': {
|
|
268
|
+
'id': 'Video',
|
|
269
|
+
'icon': 'e-video',
|
|
270
|
+
'tooltip': 'Insert Video',
|
|
271
|
+
'command': 'Videos',
|
|
272
|
+
'subCommand': 'Video'
|
|
273
|
+
},
|
|
274
|
+
'filemanager': {
|
|
275
|
+
'id': 'FileManager',
|
|
276
|
+
'icon': 'e-rte-file-manager',
|
|
277
|
+
'tooltip': 'File Manager',
|
|
278
|
+
'command': 'Files',
|
|
279
|
+
'subCommand': 'File'
|
|
280
|
+
},
|
|
281
|
+
'createtable': {
|
|
282
|
+
'id': 'CreateTable',
|
|
283
|
+
'icon': 'e-create-table',
|
|
284
|
+
'tooltip': 'Create Table',
|
|
285
|
+
'command': 'Table',
|
|
286
|
+
'subCommand': 'CreateTable'
|
|
287
|
+
},
|
|
288
|
+
'removetable': {
|
|
289
|
+
'id': 'removeTable',
|
|
290
|
+
'icon': 'e-remove-table',
|
|
291
|
+
'tooltip': 'Remove Table',
|
|
292
|
+
'command': 'removeTable',
|
|
293
|
+
'subCommand': 'removeTable'
|
|
294
|
+
},
|
|
295
|
+
'replace': {
|
|
296
|
+
'id': 'Replace',
|
|
297
|
+
'icon': 'e-replace',
|
|
298
|
+
'tooltip': 'Replace',
|
|
299
|
+
'command': 'Images',
|
|
300
|
+
'subCommand': 'Replace'
|
|
301
|
+
},
|
|
302
|
+
'audioreplace': {
|
|
303
|
+
'id': 'AudioReplace',
|
|
304
|
+
'icon': 'e-audio-replace',
|
|
305
|
+
'tooltip': 'Audio Replace',
|
|
306
|
+
'command': 'Audios',
|
|
307
|
+
'subCommand': 'AudioReplace'
|
|
308
|
+
},
|
|
309
|
+
'audioremove': {
|
|
310
|
+
'id': 'AudioRemove',
|
|
311
|
+
'icon': 'e-audio-remove',
|
|
312
|
+
'tooltip': 'Audio Remove',
|
|
313
|
+
'command': 'Audios',
|
|
314
|
+
'subCommand': 'AudioRemove'
|
|
315
|
+
},
|
|
316
|
+
'audiolayoutoption': {
|
|
317
|
+
'id': 'AudioLayoutOption',
|
|
318
|
+
'icon': 'e-audio-display',
|
|
319
|
+
'tooltip': 'Audio LayoutOption',
|
|
320
|
+
'command': 'Audios',
|
|
321
|
+
'subCommand': 'AudioLayoutOption'
|
|
322
|
+
},
|
|
323
|
+
'videoreplace': {
|
|
324
|
+
'id': 'VideoReplace',
|
|
325
|
+
'icon': 'e-video-replace',
|
|
326
|
+
'tooltip': 'Video Replace',
|
|
327
|
+
'command': 'Videos',
|
|
328
|
+
'subCommand': 'VideoReplace'
|
|
329
|
+
},
|
|
330
|
+
'videoalign': {
|
|
331
|
+
'id': 'VideoAlign',
|
|
332
|
+
'icon': 'e-video-align',
|
|
333
|
+
'tooltip': 'Video Align',
|
|
334
|
+
'command': 'Videos',
|
|
335
|
+
'subCommand': 'VideoAlign'
|
|
336
|
+
},
|
|
337
|
+
'videoremove': {
|
|
338
|
+
'id': 'VideoRemove',
|
|
339
|
+
'icon': 'e-video-remove',
|
|
340
|
+
'tooltip': 'Video Remove',
|
|
341
|
+
'command': 'Videos',
|
|
342
|
+
'subCommand': 'VideoRemove'
|
|
343
|
+
},
|
|
344
|
+
'videolayoutoption': {
|
|
345
|
+
'id': 'VideoLayoutOption',
|
|
346
|
+
'icon': 'e-video-display',
|
|
347
|
+
'tooltip': 'Video LayoutOption',
|
|
348
|
+
'command': 'Videos',
|
|
349
|
+
'subCommand': 'VideoLayoutOption'
|
|
350
|
+
},
|
|
351
|
+
'videodimension': {
|
|
352
|
+
'id': 'VideoDimension',
|
|
353
|
+
'icon': 'e-video-dimension',
|
|
354
|
+
'tooltip': 'Video Dimension',
|
|
355
|
+
'command': 'Videos',
|
|
356
|
+
'subCommand': 'VideoDimension'
|
|
357
|
+
},
|
|
358
|
+
'align': {
|
|
359
|
+
'id': 'Align',
|
|
360
|
+
'icon': 'e-align',
|
|
361
|
+
'tooltip': 'Align',
|
|
362
|
+
'command': 'Images',
|
|
363
|
+
'subCommand': 'Align'
|
|
364
|
+
},
|
|
365
|
+
'caption': {
|
|
366
|
+
'id': 'Caption',
|
|
367
|
+
'icon': 'e-caption',
|
|
368
|
+
'tooltip': 'Image Caption',
|
|
369
|
+
'command': 'Images',
|
|
370
|
+
'subCommand': 'Caption'
|
|
371
|
+
},
|
|
372
|
+
'remove': {
|
|
373
|
+
'id': 'Remove',
|
|
374
|
+
'icon': 'e-remove',
|
|
375
|
+
'tooltip': 'Remove',
|
|
376
|
+
'command': 'Images',
|
|
377
|
+
'subCommand': 'Remove'
|
|
378
|
+
},
|
|
379
|
+
'openimagelink': {
|
|
380
|
+
'id': 'OpenImageLink',
|
|
381
|
+
'icon': 'e-open-link',
|
|
382
|
+
'tooltip': 'Open Link',
|
|
383
|
+
'command': 'Images',
|
|
384
|
+
'subCommand': 'OpenImageLink'
|
|
385
|
+
},
|
|
386
|
+
'editimagelink': {
|
|
387
|
+
'id': 'EditImageLink',
|
|
388
|
+
'icon': 'e-edit-link',
|
|
389
|
+
'tooltip': 'Edit Link',
|
|
390
|
+
'command': 'Images',
|
|
391
|
+
'subCommand': 'EditImageLink'
|
|
392
|
+
},
|
|
393
|
+
'removeimagelink': {
|
|
394
|
+
'id': 'RemoveImageLink',
|
|
395
|
+
'icon': 'e-remove-link',
|
|
396
|
+
'tooltip': 'Remove Link',
|
|
397
|
+
'command': 'Images',
|
|
398
|
+
'subCommand': 'RemoveImageLink'
|
|
399
|
+
},
|
|
400
|
+
'insertlink': {
|
|
401
|
+
'id': 'InsertLink',
|
|
402
|
+
'icon': 'e-insert-link',
|
|
403
|
+
'tooltip': 'Insert Link',
|
|
404
|
+
'command': 'Images',
|
|
405
|
+
'subCommand': 'InsertLink'
|
|
406
|
+
},
|
|
407
|
+
'display': {
|
|
408
|
+
'id': 'Display',
|
|
409
|
+
'icon': 'e-display',
|
|
410
|
+
'tooltip': 'Display',
|
|
411
|
+
'command': 'Images',
|
|
412
|
+
'subCommand': 'Display'
|
|
413
|
+
},
|
|
414
|
+
'alttext': {
|
|
415
|
+
'id': 'AltText',
|
|
416
|
+
'icon': 'e-alt-text',
|
|
417
|
+
'tooltip': 'Alternative Text',
|
|
418
|
+
'command': 'Images',
|
|
419
|
+
'subCommand': 'AltText'
|
|
420
|
+
},
|
|
421
|
+
'dimension': {
|
|
422
|
+
'id': 'Dimension',
|
|
423
|
+
'icon': 'e-img-dimension',
|
|
424
|
+
'tooltip': 'Change Size',
|
|
425
|
+
'command': 'Images',
|
|
426
|
+
'subCommand': 'Dimension'
|
|
427
|
+
},
|
|
428
|
+
'fullscreen': {
|
|
429
|
+
'id': 'Maximize',
|
|
430
|
+
'icon': 'e-maximize',
|
|
431
|
+
'tooltip': 'Maximize',
|
|
432
|
+
'command': 'View',
|
|
433
|
+
'subCommand': 'Maximize'
|
|
434
|
+
},
|
|
435
|
+
'maximize': {
|
|
436
|
+
'id': 'Maximize',
|
|
437
|
+
'icon': 'e-maximize',
|
|
438
|
+
'tooltip': 'Maximize',
|
|
439
|
+
'command': 'FullScreen',
|
|
440
|
+
'subCommand': 'Maximize'
|
|
441
|
+
},
|
|
442
|
+
'minimize': {
|
|
443
|
+
'id': 'Minimize',
|
|
444
|
+
'icon': 'e-minimize',
|
|
445
|
+
'tooltip': 'Minimize',
|
|
446
|
+
'command': 'FullScreen',
|
|
447
|
+
'subCommand': 'Minimize'
|
|
448
|
+
},
|
|
449
|
+
'lowercase': {
|
|
450
|
+
'id': 'LowerCase',
|
|
451
|
+
'icon': 'e-lower-case',
|
|
452
|
+
'tooltip': 'Lower Case',
|
|
453
|
+
'command': 'Casing',
|
|
454
|
+
'subCommand': 'LowerCase'
|
|
455
|
+
},
|
|
456
|
+
'uppercase': {
|
|
457
|
+
'id': 'UpperCase',
|
|
458
|
+
'icon': 'e-upper-case',
|
|
459
|
+
'tooltip': 'Upper Case',
|
|
460
|
+
'command': 'Casing',
|
|
461
|
+
'subCommand': 'UpperCase'
|
|
462
|
+
},
|
|
463
|
+
'print': {
|
|
464
|
+
'id': 'Print',
|
|
465
|
+
'icon': 'e-print',
|
|
466
|
+
'tooltip': 'Print',
|
|
467
|
+
'command': 'Print',
|
|
468
|
+
'subCommand': 'Print'
|
|
469
|
+
},
|
|
470
|
+
'formats': {
|
|
471
|
+
'id': 'Formats',
|
|
472
|
+
'icon': 'e-formats',
|
|
473
|
+
'tooltip': 'Formats',
|
|
474
|
+
'command': 'Formats',
|
|
475
|
+
'subCommand': 'Formats'
|
|
476
|
+
},
|
|
477
|
+
'sourcecode': {
|
|
478
|
+
'id': 'SourceCode',
|
|
479
|
+
'icon': 'e-source-code',
|
|
480
|
+
'tooltip': 'Code View (Ctrl+Shift+H)',
|
|
481
|
+
'command': 'SourceCode',
|
|
482
|
+
'subCommand': 'SourceCode'
|
|
483
|
+
},
|
|
484
|
+
'preview': {
|
|
485
|
+
'id': 'Preview',
|
|
486
|
+
'icon': 'e-preview',
|
|
487
|
+
'tooltip': 'Preview (Ctrl+Shift+H)',
|
|
488
|
+
'command': 'Preview',
|
|
489
|
+
'subCommand': 'Preview'
|
|
490
|
+
},
|
|
491
|
+
'viewside': {
|
|
492
|
+
'id': 'ViewSide',
|
|
493
|
+
'icon': 'e-view-side',
|
|
494
|
+
'tooltip': 'ViewSide',
|
|
495
|
+
'command': 'ViewSide',
|
|
496
|
+
'subCommand': 'ViewSide'
|
|
497
|
+
},
|
|
498
|
+
'insertcode': {
|
|
499
|
+
'id': 'InsertCode',
|
|
500
|
+
'icon': 'e-preformat-code',
|
|
501
|
+
'tooltip': 'Insert Code',
|
|
502
|
+
'command': 'Formats',
|
|
503
|
+
'subCommand': 'Pre'
|
|
504
|
+
},
|
|
505
|
+
'blockquote': {
|
|
506
|
+
'id': 'Blockquote',
|
|
507
|
+
'icon': 'e-blockquote',
|
|
508
|
+
'tooltip': 'Blockquote',
|
|
509
|
+
'command': 'Formats',
|
|
510
|
+
'subCommand': 'blockquote'
|
|
511
|
+
},
|
|
512
|
+
'tableheader': {
|
|
513
|
+
'id': 'TableHeader',
|
|
514
|
+
'icon': 'e-table-header',
|
|
515
|
+
'tooltip': 'Table Header',
|
|
516
|
+
'command': 'Table',
|
|
517
|
+
'subCommand': 'TableHeader'
|
|
518
|
+
},
|
|
519
|
+
'tableremove': {
|
|
520
|
+
'id': 'TableRemove',
|
|
521
|
+
'icon': 'e-table-remove',
|
|
522
|
+
'tooltip': 'Table Remove',
|
|
523
|
+
'command': 'Table',
|
|
524
|
+
'subCommand': 'TableRemove'
|
|
525
|
+
},
|
|
526
|
+
'tablerows': {
|
|
527
|
+
'id': 'TableRows',
|
|
528
|
+
'icon': 'e-table-rows',
|
|
529
|
+
'tooltip': 'Table Rows',
|
|
530
|
+
'command': 'Table',
|
|
531
|
+
'subCommand': 'TableRows'
|
|
532
|
+
},
|
|
533
|
+
'tablecolumns': {
|
|
534
|
+
'id': 'TableColumns',
|
|
535
|
+
'icon': 'e-table-columns',
|
|
536
|
+
'tooltip': 'Table Columns',
|
|
537
|
+
'command': 'Table',
|
|
538
|
+
'subCommand': 'TableColumns'
|
|
539
|
+
},
|
|
540
|
+
'tablecell': {
|
|
541
|
+
'id': 'TableCell',
|
|
542
|
+
'icon': 'e-table-cell',
|
|
543
|
+
'tooltip': 'Table Cell',
|
|
544
|
+
'command': 'Table',
|
|
545
|
+
'subCommand': 'TableCell'
|
|
546
|
+
},
|
|
547
|
+
'tablecellbackground': {
|
|
548
|
+
'id': 'TableCellBackground',
|
|
549
|
+
'icon': 'e-table-cell-background',
|
|
550
|
+
'tooltip': 'Table Cell Background',
|
|
551
|
+
'command': 'Table',
|
|
552
|
+
'subCommand': 'TableCellBackground'
|
|
553
|
+
},
|
|
554
|
+
'tablecellhorizontalalign': {
|
|
555
|
+
'id': 'TableCellHorizontalAlign',
|
|
556
|
+
'icon': 'e-table-cell-horizontalAlign',
|
|
557
|
+
'tooltip': 'Table Cell HorizontalAlign',
|
|
558
|
+
'command': 'Table',
|
|
559
|
+
'subCommand': 'TableCellHorizontalAlign'
|
|
560
|
+
},
|
|
561
|
+
'tablecellverticalalign': {
|
|
562
|
+
'id': 'TableCellVerticalAlign',
|
|
563
|
+
'icon': 'e-table-cell-verticalAlign',
|
|
564
|
+
'tooltip': 'Table Cell VerticalAlign',
|
|
565
|
+
'command': 'Table',
|
|
566
|
+
'subCommand': 'TableCellVerticalAlign'
|
|
567
|
+
},
|
|
568
|
+
'tableeditproperties': {
|
|
569
|
+
'id': 'TableEditProperties',
|
|
570
|
+
'icon': 'e-table-edit-properties',
|
|
571
|
+
'tooltip': 'Table Edit Properties',
|
|
572
|
+
'command': 'Table',
|
|
573
|
+
'subCommand': 'TableEditProperties'
|
|
574
|
+
},
|
|
575
|
+
'styles': {
|
|
576
|
+
'id': 'Styles',
|
|
577
|
+
'icon': 'e-table-styles',
|
|
578
|
+
'tooltip': 'Styles',
|
|
579
|
+
'command': 'Table',
|
|
580
|
+
'subCommand': 'Styles'
|
|
581
|
+
},
|
|
582
|
+
'formatpainter': {
|
|
583
|
+
'id': 'FormatPainter',
|
|
584
|
+
'icon': 'e-rte-format-painter',
|
|
585
|
+
'tooltip': 'Format Painter',
|
|
586
|
+
'command': 'FormatPainter',
|
|
587
|
+
'subCommand': 'FormatPainter'
|
|
588
|
+
},
|
|
589
|
+
'emojipicker': {
|
|
590
|
+
'id': 'EmojiPicker',
|
|
591
|
+
'icon': 'e-emoji',
|
|
592
|
+
'tooltip': 'Emoji Icon',
|
|
593
|
+
'command': 'EmojiPicker',
|
|
594
|
+
'subCommand': 'EmojiPicker'
|
|
595
|
+
},
|
|
596
|
+
'inlinecode': {
|
|
597
|
+
'id': 'inlineCode',
|
|
598
|
+
'icon': 'e-inline-code',
|
|
599
|
+
'tooltip': 'inlineCode',
|
|
600
|
+
'command': 'Style',
|
|
601
|
+
'subCommand': 'InlineCode'
|
|
602
|
+
}
|
|
603
|
+
};
|
|
604
|
+
var alignmentLocale = [
|
|
605
|
+
{ locale: 'alignmentsDropDownLeft', value: 'JustifyLeft' },
|
|
606
|
+
{ locale: 'alignmentsDropDownCenter', value: 'JustifyCenter' },
|
|
607
|
+
{ locale: 'alignmentsDropDownRight', value: 'JustifyRight' },
|
|
608
|
+
{ locale: 'alignmentsDropDownJustify', value: 'JustifyFull' }
|
|
609
|
+
];
|
|
610
|
+
exports.alignmentItems = [
|
|
611
|
+
{ iconCss: 'e-icons e-justify-left', text: 'Align Left', command: 'Alignments', subCommand: 'JustifyLeft' },
|
|
612
|
+
{ iconCss: 'e-icons e-justify-center', text: 'Align Center', command: 'Alignments', subCommand: 'JustifyCenter' },
|
|
613
|
+
{ iconCss: 'e-icons e-justify-right', text: 'Align Right', command: 'Alignments', subCommand: 'JustifyRight' },
|
|
614
|
+
{ iconCss: 'e-icons e-justify-full', text: 'Align Justify', command: 'Alignments', subCommand: 'JustifyFull' }
|
|
615
|
+
];
|
|
616
|
+
exports.imageAlignItems = [
|
|
617
|
+
{ iconCss: 'e-icons e-justify-left', command: 'Images', subCommand: 'JustifyLeft' },
|
|
618
|
+
{ iconCss: 'e-icons e-justify-center', command: 'Images', subCommand: 'JustifyCenter' },
|
|
619
|
+
{ iconCss: 'e-icons e-justify-right', command: 'Images', subCommand: 'JustifyRight' },
|
|
620
|
+
];
|
|
621
|
+
exports.videoAlignItems = [
|
|
622
|
+
{ iconCss: 'e-icons e-justify-left', command: 'Videos', subCommand: 'JustifyLeft' },
|
|
623
|
+
{ iconCss: 'e-icons e-justify-center', command: 'Videos', subCommand: 'JustifyCenter' },
|
|
624
|
+
{ iconCss: 'e-icons e-justify-right', command: 'Videos', subCommand: 'JustifyRight' },
|
|
625
|
+
];
|
|
626
|
+
var displayLocale = [
|
|
627
|
+
{ locale: 'imageDisplayDropDownInline', value: 'Inline' },
|
|
628
|
+
{ locale: 'imageDisplayDropDownBreak', value: 'Break' }
|
|
629
|
+
];
|
|
630
|
+
var audioLayoutOptionLocale = [
|
|
631
|
+
{ locale: 'audioLayoutOptionDropDownInline', value: 'Inline' },
|
|
632
|
+
{ locale: 'audioLayoutOptionDropDownBreak', value: 'Break' }
|
|
633
|
+
];
|
|
634
|
+
var videoLayoutOptionLocale = [
|
|
635
|
+
{ locale: 'videoLayoutOptionDropDownInline', value: 'Inline' },
|
|
636
|
+
{ locale: 'videoLayoutOptionDropDownBreak', value: 'Break' }
|
|
637
|
+
];
|
|
638
|
+
exports.imageDisplayItems = [
|
|
639
|
+
{ text: 'Inline', cssClass: 'e-inline', command: 'Images', subCommand: 'Inline' },
|
|
640
|
+
{ text: 'Break', cssClass: 'e-break', command: 'Images', subCommand: 'Break' },
|
|
641
|
+
];
|
|
642
|
+
exports.audioLayoutOptionItems = [
|
|
643
|
+
{ text: 'Inline', cssClass: 'e-audio-inline', command: 'Audios', subCommand: 'Inline' },
|
|
644
|
+
{ text: 'Break', cssClass: 'e-audio-break', command: 'Audios', subCommand: 'Break' },
|
|
645
|
+
];
|
|
646
|
+
exports.videoLayoutOptionItems = [
|
|
647
|
+
{ text: 'Inline', cssClass: 'e-video-inline', command: 'Videos', subCommand: 'Inline' },
|
|
648
|
+
{ text: 'Break', cssClass: 'e-video-break', command: 'Videos', subCommand: 'Break' },
|
|
649
|
+
];
|
|
650
|
+
exports.tableCellItems = [
|
|
651
|
+
{ iconCss: 'e-icons e-cell-merge', text: 'Merge cells', command: 'Table', subCommand: 'Merge' },
|
|
652
|
+
{ iconCss: 'e-icons e-cell-horizontal-split', text: 'Horizontal split', command: 'Table', subCommand: 'HorizontalSplit' },
|
|
653
|
+
{ iconCss: 'e-icons e-cell-vertical-split', text: 'Vertical split', command: 'Table', subCommand: 'VerticalSplit' },
|
|
654
|
+
];
|
|
655
|
+
var tableRowLocale = [
|
|
656
|
+
{ locale: 'tableInsertRowDropDownBefore', value: 'InsertRowBefore' },
|
|
657
|
+
{ locale: 'tableInsertRowDropDownAfter', value: 'InsertRowAfter' },
|
|
658
|
+
{ locale: 'tableInsertRowDropDownDelete', value: 'DeleteRow' }
|
|
659
|
+
];
|
|
660
|
+
exports.tableRowsItems = [
|
|
661
|
+
{ iconCss: 'e-icons e-insert-row-before', text: 'Insert row before', command: 'Table', subCommand: 'InsertRowBefore' },
|
|
662
|
+
{ iconCss: 'e-icons e-insert-row-after', text: 'Insert row after', command: 'Table', subCommand: 'InsertRowAfter' },
|
|
663
|
+
{ iconCss: 'e-icons e-delete-row', text: 'Delete row', command: 'Table', subCommand: 'DeleteRow' },
|
|
664
|
+
];
|
|
665
|
+
var tableColumnLocale = [
|
|
666
|
+
{ locale: 'tableInsertColumnDropDownLeft', value: 'InsertColumnLeft' },
|
|
667
|
+
{ locale: 'tableInsertColumnDropDownRight', value: 'InsertColumnRight' },
|
|
668
|
+
{ locale: 'tableInsertColumnDropDownDelete', value: 'DeleteColumn' }
|
|
669
|
+
];
|
|
670
|
+
exports.tableColumnsItems = [
|
|
671
|
+
{ iconCss: 'e-icons e-insert-column-left', text: 'Insert column left', command: 'Table', subCommand: 'InsertColumnLeft' },
|
|
672
|
+
{ iconCss: 'e-icons e-insert-column-right', text: 'Insert column right', command: 'Table', subCommand: 'InsertColumnRight' },
|
|
673
|
+
{ iconCss: 'e-icons e-delete-column', text: 'Delete column', command: 'Table', subCommand: 'DeleteColumn' },
|
|
674
|
+
];
|
|
675
|
+
var tableVerticalLocale = [
|
|
676
|
+
{ locale: 'tableVerticalAlignDropDownTop', value: 'AlignTop' },
|
|
677
|
+
{ locale: 'tableVerticalAlignDropDownMiddle', value: 'AlignMiddle' },
|
|
678
|
+
{ locale: 'tableVerticalAlignDropDownBottom', value: 'AlignBottom' }
|
|
679
|
+
];
|
|
680
|
+
exports.TableCellVerticalAlignItems = [
|
|
681
|
+
{ iconCss: 'e-icons e-align-top', text: 'Align Top', command: 'Table', subCommand: 'AlignTop' },
|
|
682
|
+
{ iconCss: 'e-icons e-align-middle', text: 'Align Middle', command: 'Table', subCommand: 'AlignMiddle' },
|
|
683
|
+
{ iconCss: 'e-icons e-align-bottom', text: 'Align Bottom', command: 'Table', subCommand: 'AlignBottom' },
|
|
684
|
+
];
|
|
685
|
+
var tableStyleLocale = [
|
|
686
|
+
{ locale: 'tableStylesDropDownDashedBorder', value: 'Dashed' },
|
|
687
|
+
{ locale: 'tableStylesDropDownAlternateRows', value: 'Alternate' }
|
|
688
|
+
];
|
|
689
|
+
exports.TableStyleItems = [
|
|
690
|
+
{ text: 'Dashed Borders', cssClass: 'e-dashed-borders', command: 'Table', subCommand: 'Dashed' },
|
|
691
|
+
{ text: 'Alternate Rows', cssClass: 'e-alternate-rows', command: 'Table', subCommand: 'Alternate' }
|
|
692
|
+
];
|
|
693
|
+
exports.predefinedItems = ['Bold', 'Italic', 'Underline', '|', 'Formats', 'Alignments', 'Blockquote',
|
|
694
|
+
'OrderedList', 'UnorderedList', '|', 'CreateLink', 'Image', '|', 'SourceCode', 'Undo', 'Redo'];
|
|
695
|
+
exports.fontFamily = [
|
|
696
|
+
{ cssClass: 'e-default', text: 'Default', command: 'Font', subCommand: 'FontName', value: '' },
|
|
697
|
+
{ cssClass: 'e-segoe-ui', text: 'Segoe UI', command: 'Font', subCommand: 'FontName', value: 'Segoe UI' },
|
|
698
|
+
{ cssClass: 'e-arial', text: 'Arial', command: 'Font', subCommand: 'FontName', value: 'Arial,Helvetica,sans-serif' },
|
|
699
|
+
{ cssClass: 'e-georgia', text: 'Georgia', command: 'Font', subCommand: 'FontName', value: 'Georgia,serif' },
|
|
700
|
+
{ cssClass: 'e-impact', text: 'Impact', command: 'Font', subCommand: 'FontName', value: 'Impact,Charcoal,sans-serif' },
|
|
701
|
+
{ cssClass: 'e-tahoma', text: 'Tahoma', command: 'Font', subCommand: 'FontName', value: 'Tahoma,Geneva,sans-serif' },
|
|
702
|
+
{ cssClass: 'e-times-new-roman', text: 'Times New Roman', command: 'Font', subCommand: 'FontName', value: 'Times New Roman,Times,serif' },
|
|
703
|
+
{ cssClass: 'e-verdana', text: 'Verdana', command: 'Font', subCommand: 'FontName', value: 'Verdana,Geneva,sans-serif' }
|
|
704
|
+
];
|
|
705
|
+
exports.fontSize = [
|
|
706
|
+
{ text: 'Default', value: '' },
|
|
707
|
+
{ text: '8 pt', value: '8pt' },
|
|
708
|
+
{ text: '10 pt', value: '10pt' },
|
|
709
|
+
{ text: '12 pt', value: '12pt' },
|
|
710
|
+
{ text: '14 pt', value: '14pt' },
|
|
711
|
+
{ text: '18 pt', value: '18pt' },
|
|
712
|
+
{ text: '24 pt', value: '24pt' },
|
|
713
|
+
{ text: '36 pt', value: '36pt' }
|
|
714
|
+
];
|
|
715
|
+
exports.formatItems = [
|
|
716
|
+
{ cssClass: 'e-paragraph', text: 'Paragraph', command: 'Formats', subCommand: 'P', value: 'P' },
|
|
717
|
+
{ cssClass: 'e-h1', text: 'Heading 1', command: 'Formats', subCommand: 'H1', value: 'H1' },
|
|
718
|
+
{ cssClass: 'e-h2', text: 'Heading 2', command: 'Formats', subCommand: 'H2', value: 'H2' },
|
|
719
|
+
{ cssClass: 'e-h3', text: 'Heading 3', command: 'Formats', subCommand: 'H3', value: 'H3' },
|
|
720
|
+
{ cssClass: 'e-h4', text: 'Heading 4', command: 'Formats', subCommand: 'H4', value: 'H4' },
|
|
721
|
+
{ cssClass: 'e-code', text: 'preformatted', command: 'Formats', subCommand: 'Pre', value: 'Pre' },
|
|
722
|
+
];
|
|
723
|
+
exports.fontColor = {
|
|
724
|
+
'Custom': [
|
|
725
|
+
'', '#000000', '#e7e6e6', '#44546a', '#4472c4', '#ed7d31', '#a5a5a5', '#ffc000', '#70ad47', '#ff0000',
|
|
726
|
+
'#f2f2f2', '#808080', '#cfcdcd', '#d5dce4', '#d9e2f3', '#fbe4d5', '#ededed', '#fff2cc', '#e2efd9', '#ffcccc',
|
|
727
|
+
'#d9d9d9', '#595959', '#aeaaaa', '#acb9ca', '#b4c6e7', '#f7caac', '#dbdbdb', '#ffe599', '#c5e0b3', '#ff8080',
|
|
728
|
+
'#bfbfbf', '#404040', '#747070', '#8496b0', '#8eaadb', '#f4b083', '#c9c9c9', '#ffd966', '#a8d08d', '#ff3333',
|
|
729
|
+
'#a6a6a6', '#262626', '#3b3838', '#323e4f', '#2f5496', '#c45911', '#7b7b7b', '#bf8f00', '#538135', '#b30000',
|
|
730
|
+
'#7f7f7f', '#0d0d0d', '#161616', '#212934', '#1f3763', '#823b0b', '#525252', '#7f5f00', '#375623', '#660000'
|
|
731
|
+
]
|
|
732
|
+
};
|
|
733
|
+
exports.backgroundColor = {
|
|
734
|
+
'Custom': [
|
|
735
|
+
'', '#000000', '#ffff00', '#00ff00', '#00ffff', '#0000ff', '#ff0000', '#000080', '#800080', '#996633',
|
|
736
|
+
'#f2f2f2', '#808080', '#ffffcc', '#b3ffb3', '#ccffff', '#ccccff', '#ffcccc', '#ccccff', '#ff80ff', '#f2e6d9',
|
|
737
|
+
'#d9d9d9', '#595959', '#ffff80', '#80ff80', '#b3ffff', '#8080ff', '#ff8080', '#8080ff', '#ff00ff', '#dfbf9f',
|
|
738
|
+
'#bfbfbf', '#404040', '#ffff33', '#33ff33', '#33ffff', '#3333ff', '#ff3333', '#0000b3', '#b300b3', '#c68c53',
|
|
739
|
+
'#a6a6a6', '#262626', '#e6e600', '#00b300', '#009999', '#000099', '#b30000', '#000066', '#660066', '#86592d',
|
|
740
|
+
'#7f7f7f', '#0d0d0d', '#999900', '#006600', '#006666', '#000066', '#660000', '#00004d', '#4d004d', '#734d26'
|
|
741
|
+
]
|
|
742
|
+
};
|
|
743
|
+
exports.numberFormatList = [
|
|
744
|
+
{ text: 'None', command: 'Lists', subCommand: 'NumberFormatList', value: 'none' },
|
|
745
|
+
{ text: 'Number', command: 'Lists', subCommand: 'NumberFormatList', value: 'decimal' },
|
|
746
|
+
{ text: 'Lower Greek', command: 'Lists', subCommand: 'NumberFormatList', value: 'lowerGreek' },
|
|
747
|
+
{ text: 'Lower Roman', command: 'Lists', subCommand: 'NumberFormatList', value: 'lowerRoman' },
|
|
748
|
+
{ text: 'Upper Alpha', command: 'Lists', subCommand: 'NumberFormatList', value: 'upperAlpha' },
|
|
749
|
+
{ text: 'Lower Alpha', command: 'Lists', subCommand: 'NumberFormatList', value: 'lowerAlpha' },
|
|
750
|
+
{ text: 'Upper Roman', command: 'Lists', subCommand: 'NumberFormatList', value: 'upperRoman' },
|
|
751
|
+
];
|
|
752
|
+
exports.bulletFormatList = [
|
|
753
|
+
{ text: 'None', command: 'Lists', subCommand: 'BulletFormatList', value: 'none' },
|
|
754
|
+
{ text: 'Disc', command: 'Lists', subCommand: 'BulletFormatList', value: 'disc' },
|
|
755
|
+
{ text: 'Circle', command: 'Lists', subCommand: 'BulletFormatList', value: 'circle' },
|
|
756
|
+
{ text: 'Square', command: 'Lists', subCommand: 'BulletFormatList', value: 'square' },
|
|
757
|
+
];
|
|
758
|
+
function getLocale(self, localeItems, item) {
|
|
759
|
+
for (var i = 0; localeItems.length > i; i++) {
|
|
760
|
+
if (localeItems[i].value === item.subCommand) {
|
|
761
|
+
return self.localeObj.getConstant(localeItems[i].locale);
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
return item.text;
|
|
765
|
+
}
|
|
766
|
+
function updateDropDownLocale(self) {
|
|
767
|
+
exports.alignmentItems.forEach(function (item, i) {
|
|
768
|
+
exports.alignmentItems[i].text = getLocale(self, alignmentLocale, exports.alignmentItems[i]);
|
|
769
|
+
});
|
|
770
|
+
exports.imageDisplayItems.forEach(function (item, i) {
|
|
771
|
+
exports.imageDisplayItems[i].text = getLocale(self, displayLocale, exports.imageDisplayItems[i]);
|
|
772
|
+
});
|
|
773
|
+
exports.audioLayoutOptionItems.forEach(function (item, i) {
|
|
774
|
+
exports.audioLayoutOptionItems[i].text = getLocale(self, audioLayoutOptionLocale, exports.audioLayoutOptionItems[i]);
|
|
775
|
+
});
|
|
776
|
+
exports.videoLayoutOptionItems.forEach(function (item, i) {
|
|
777
|
+
exports.videoLayoutOptionItems[i].text = getLocale(self, videoLayoutOptionLocale, exports.videoLayoutOptionItems[i]);
|
|
778
|
+
});
|
|
779
|
+
exports.tableRowsItems.forEach(function (item, i) {
|
|
780
|
+
exports.tableRowsItems[i].text = getLocale(self, tableRowLocale, exports.tableRowsItems[i]);
|
|
781
|
+
});
|
|
782
|
+
exports.tableColumnsItems.forEach(function (item, i) {
|
|
783
|
+
exports.tableColumnsItems[i].text = getLocale(self, tableColumnLocale, exports.tableColumnsItems[i]);
|
|
784
|
+
});
|
|
785
|
+
exports.TableCellVerticalAlignItems.forEach(function (item, i) {
|
|
786
|
+
exports.TableCellVerticalAlignItems[i].text = getLocale(self, tableVerticalLocale, exports.TableCellVerticalAlignItems[i]);
|
|
787
|
+
});
|
|
788
|
+
exports.TableStyleItems.forEach(function (item, i) {
|
|
789
|
+
exports.TableStyleItems[i].text = getLocale(self, tableStyleLocale, exports.TableStyleItems[i]);
|
|
790
|
+
});
|
|
791
|
+
}
|
|
792
|
+
exports.updateDropDownLocale = updateDropDownLocale;
|
|
793
|
+
exports.windowKeys = {
|
|
794
|
+
'CreateLink': 'Ctrl+K',
|
|
795
|
+
'Image': 'Ctrl+Shift+I',
|
|
796
|
+
'CreateTable': 'Ctrl+Shift+E',
|
|
797
|
+
'Undo': 'Ctrl+Z',
|
|
798
|
+
'Redo': 'Ctrl+Y',
|
|
799
|
+
'Copy': 'Ctrl+C',
|
|
800
|
+
'Cut': 'Ctrl+X',
|
|
801
|
+
'Paste': 'Ctrl+V',
|
|
802
|
+
'Bold': 'Ctrl+B',
|
|
803
|
+
'Italic': 'Ctrl+I',
|
|
804
|
+
'Underline': 'Ctrl+U',
|
|
805
|
+
'StrikeThrough': 'Ctrl+Shift+S',
|
|
806
|
+
'UpperCase': 'Ctrl+Shift+U',
|
|
807
|
+
'LowerCase': 'Ctrl+Shift+L',
|
|
808
|
+
'SuperScript': 'Ctrl+Shift+=',
|
|
809
|
+
'SubScript': 'Ctrl+=',
|
|
810
|
+
'SourceCode': 'Ctrl+Shift+H',
|
|
811
|
+
'Maximize': 'Ctrl+Shift+F',
|
|
812
|
+
'Minimize': 'Esc',
|
|
813
|
+
'ClearFormat': 'Ctrl+Shift+R',
|
|
814
|
+
'OL': 'Ctrl+Shift+O',
|
|
815
|
+
'UL': 'Ctrl+Alt+O',
|
|
816
|
+
'NumberFormatList': 'Ctrl+Shift+O',
|
|
817
|
+
'BulletFormatList': 'Ctrl+Alt+O',
|
|
818
|
+
'Audio': 'Ctrl+Shift+A',
|
|
819
|
+
'Video': 'Ctrl+Alt+V',
|
|
820
|
+
'Indent': 'Ctrl+]',
|
|
821
|
+
'Outdent': 'Ctrl+[',
|
|
822
|
+
'Decrease Fontsize': 'Ctrl+Shift+<',
|
|
823
|
+
'Increase Fontsize': 'Ctrl+Shift+>',
|
|
824
|
+
'JustifyCenter': 'Ctrl+E',
|
|
825
|
+
'JustifyFull': 'Ctrl+J',
|
|
826
|
+
'JustifyLeft': 'Ctrl+L',
|
|
827
|
+
'JustifyRight': 'Ctrl+R',
|
|
828
|
+
'FormatPainter': 'Alt+Shift+C, Alt+Shift+V',
|
|
829
|
+
'InlineCode': 'Ctrl+`'
|
|
830
|
+
};
|
|
831
|
+
exports.defaultEmojiIcons = [{
|
|
832
|
+
name: 'Smilies & People', code: '1F600', iconCss: 'e-emoji', icons: [{ code: '1F600', desc: 'Grinning face' },
|
|
833
|
+
{ code: '1F603', desc: 'Grinning face with big eyes' },
|
|
834
|
+
{ code: '1F604', desc: 'Grinning face with smiling eyes' },
|
|
835
|
+
{ code: '1F606', desc: 'Grinning squinting face' },
|
|
836
|
+
{ code: '1F605', desc: 'Grinning face with sweat' },
|
|
837
|
+
{ code: '1F602', desc: 'Face with tears of joy' },
|
|
838
|
+
{ code: '1F923', desc: 'Rolling on the floor laughing' },
|
|
839
|
+
{ code: '1F60A', desc: 'Smiling face with smiling eyes' },
|
|
840
|
+
{ code: '1F607', desc: 'Smiling face with halo' },
|
|
841
|
+
{ code: '1F642', desc: 'Slightly smiling face' },
|
|
842
|
+
{ code: '1F643', desc: 'Upside-down face' },
|
|
843
|
+
{ code: '1F60D', desc: 'Smiling face with heart-eyes' },
|
|
844
|
+
{ code: '1F618', desc: 'Face blowing a kiss' },
|
|
845
|
+
{ code: '1F61B', desc: 'Face with tongue' },
|
|
846
|
+
{ code: '1F61C', desc: 'Winking face with tongue' },
|
|
847
|
+
{ code: '1F604', desc: 'Grinning face with smiling eyes' },
|
|
848
|
+
{ code: '1F469', desc: 'Woman' },
|
|
849
|
+
{ code: '1F468', desc: 'Man' },
|
|
850
|
+
{ code: '1F467', desc: 'Girl' },
|
|
851
|
+
{ code: '1F466', desc: 'Boy' },
|
|
852
|
+
{ code: '1F476', desc: 'Baby' },
|
|
853
|
+
{ code: '1F475', desc: 'Old woman' },
|
|
854
|
+
{ code: '1F474', desc: 'Old man' },
|
|
855
|
+
{ code: '1F46E', desc: 'Police officer' },
|
|
856
|
+
{ code: '1F477', desc: 'Construction worker' },
|
|
857
|
+
{ code: '1F482', desc: 'Guard' },
|
|
858
|
+
{ code: '1F575', desc: 'Detective' },
|
|
859
|
+
{ code: '1F9D1', desc: 'Cook' }]
|
|
860
|
+
}, {
|
|
861
|
+
name: 'Animals & Nature', code: '1F435', iconCss: 'e-animals', icons: [{ code: '1F436', desc: 'Dog face' },
|
|
862
|
+
{ code: '1F431', desc: 'Cat face' },
|
|
863
|
+
{ code: '1F42D', desc: 'Mouse face' },
|
|
864
|
+
{ code: '1F439', desc: 'Hamster face' },
|
|
865
|
+
{ code: '1F430', desc: 'Rabbit face' },
|
|
866
|
+
{ code: '1F98A', desc: 'Fox face' },
|
|
867
|
+
{ code: '1F43B', desc: 'Bear face' },
|
|
868
|
+
{ code: '1F43C', desc: 'Panda face' },
|
|
869
|
+
{ code: '1F428', desc: 'Koala' },
|
|
870
|
+
{ code: '1F42F', desc: 'Tiger face' },
|
|
871
|
+
{ code: '1F981', desc: 'Lion face' },
|
|
872
|
+
{ code: '1F42E', desc: 'Cow face' },
|
|
873
|
+
{ code: '1F437', desc: 'Pig face' },
|
|
874
|
+
{ code: '1F43D', desc: 'Pig nose' },
|
|
875
|
+
{ code: '1F438', desc: 'Frog face' },
|
|
876
|
+
{ code: '1F435', desc: 'Monkey face' },
|
|
877
|
+
{ code: '1F649', desc: 'Hear-no-evil monkey' },
|
|
878
|
+
{ code: '1F64A', desc: 'Speak-no-evil monkey' },
|
|
879
|
+
{ code: '1F412', desc: 'Monkey' },
|
|
880
|
+
{ code: '1F414', desc: 'Chicken' },
|
|
881
|
+
{ code: '1F427', desc: 'Penguin' },
|
|
882
|
+
{ code: '1F426', desc: 'Bird' },
|
|
883
|
+
{ code: '1F424', desc: 'Baby chick' },
|
|
884
|
+
{ code: '1F986', desc: 'Duck' },
|
|
885
|
+
{ code: '1F985', desc: 'Eagle' }]
|
|
886
|
+
}, {
|
|
887
|
+
name: 'Food & Drink', code: '1F347', iconCss: 'e-food-and-drinks', icons: [{ code: '1F34E', desc: 'Red apple' },
|
|
888
|
+
{ code: '1F34C', desc: 'Banana' },
|
|
889
|
+
{ code: '1F347', desc: 'Grapes' },
|
|
890
|
+
{ code: '1F353', desc: 'Strawberry' },
|
|
891
|
+
{ code: '1F35E', desc: 'Bread' },
|
|
892
|
+
{ code: '1F950', desc: 'Croissant' },
|
|
893
|
+
{ code: '1F955', desc: 'Carrot' },
|
|
894
|
+
{ code: '1F354', desc: 'Hamburger' },
|
|
895
|
+
{ code: '1F355', desc: 'Pizza' },
|
|
896
|
+
{ code: '1F32D', desc: 'Hot dog' },
|
|
897
|
+
{ code: '1F35F', desc: 'French fries' },
|
|
898
|
+
{ code: '1F37F', desc: 'Popcorn' },
|
|
899
|
+
{ code: '1F366', desc: 'Soft ice cream' },
|
|
900
|
+
{ code: '1F367', desc: 'Shaved ice' },
|
|
901
|
+
{ code: '1F36A', desc: 'Cookie' },
|
|
902
|
+
{ code: '1F382', desc: 'Birthday cake' },
|
|
903
|
+
{ code: '1F370', desc: 'Shortcake' },
|
|
904
|
+
{ code: '1F36B', desc: 'Chocolate bar' },
|
|
905
|
+
{ code: '1F369', desc: 'Donut' },
|
|
906
|
+
{ code: '1F36E', desc: 'Custard' },
|
|
907
|
+
{ code: '1F36D', desc: 'Lollipop' },
|
|
908
|
+
{ code: '1F36C', desc: 'Candy' },
|
|
909
|
+
{ code: '1F377', desc: 'Wine glass' },
|
|
910
|
+
{ code: '1F37A', desc: 'Beer mug' },
|
|
911
|
+
{ code: '1F37E', desc: 'Bottle with popping cork' }]
|
|
912
|
+
}, {
|
|
913
|
+
name: 'Activities', code: '1F383', iconCss: 'e-activities', icons: [{ code: '26BD', desc: 'Soccer ball' },
|
|
914
|
+
{ code: '1F3C0', desc: 'Basketball' },
|
|
915
|
+
{ code: '1F3C8', desc: 'American football' },
|
|
916
|
+
{ code: '26BE', desc: 'Baseball' },
|
|
917
|
+
{ code: '1F3BE', desc: 'Tennis' },
|
|
918
|
+
{ code: '1F3D0', desc: 'Volleyball' },
|
|
919
|
+
{ code: '1F3C9', desc: 'Rugby football' },
|
|
920
|
+
{ code: '1F3B1', desc: 'Pool 8 ball' },
|
|
921
|
+
{ code: '1F3D3', desc: 'Ping pong' },
|
|
922
|
+
{ code: '1F3F8', desc: 'Badminton' },
|
|
923
|
+
{ code: '1F94A', desc: 'Boxing glove' },
|
|
924
|
+
{ code: '1F3CA', desc: 'Swimmer' },
|
|
925
|
+
{ code: '1F3CB', desc: 'Weightlifter' },
|
|
926
|
+
{ code: '1F6B4', desc: 'Bicyclist' },
|
|
927
|
+
{ code: '1F6F9', desc: 'Skateboard' },
|
|
928
|
+
{ code: '1F3AE', desc: 'Video game' },
|
|
929
|
+
{ code: '1F579', desc: 'Joystick' },
|
|
930
|
+
{ code: '1F3CF', desc: 'Cricket' },
|
|
931
|
+
{ code: '1F3C7', desc: 'Horse racing' },
|
|
932
|
+
{ code: '1F3AF', desc: 'Direct hit' },
|
|
933
|
+
{ code: '1F3D1', desc: 'Field hockey' },
|
|
934
|
+
{ code: '1F3B0', desc: 'Slot machine' },
|
|
935
|
+
{ code: '1F3B3', desc: 'Bowling' },
|
|
936
|
+
{ code: '1F3B2', desc: 'Game die' },
|
|
937
|
+
{ code: '265F', desc: 'Chess pawn' }]
|
|
938
|
+
}, {
|
|
939
|
+
name: 'Travel & Places', code: '1F30D', iconCss: 'e-travel-and-places', icons: [{ code: '2708', desc: 'Airplane' },
|
|
940
|
+
{ code: '1F697', desc: 'Automobile' },
|
|
941
|
+
{ code: '1F695', desc: 'Taxi' },
|
|
942
|
+
{ code: '1F6B2', desc: 'Bicycle' },
|
|
943
|
+
{ code: '1F68C', desc: 'Bus' },
|
|
944
|
+
{ code: '1F682', desc: 'Locomotive' },
|
|
945
|
+
{ code: '1F6F3', desc: 'Passenger ship' },
|
|
946
|
+
{ code: '1F680', desc: 'Rocket' },
|
|
947
|
+
{ code: '1F681', desc: 'Helicopter' },
|
|
948
|
+
{ code: '1F6A2', desc: 'Ship' },
|
|
949
|
+
{ code: '1F3DF', desc: 'Stadium' },
|
|
950
|
+
{ code: '1F54C', desc: 'Mosque' },
|
|
951
|
+
{ code: '26EA', desc: 'Church' },
|
|
952
|
+
{ code: '1F6D5', desc: 'Hindu Temple' },
|
|
953
|
+
{ code: '1F3D4', desc: 'Snow-capped mountain' },
|
|
954
|
+
{ code: '1F3EB', desc: 'School' },
|
|
955
|
+
{ code: '1F30B', desc: 'Volcano' },
|
|
956
|
+
{ code: '1F3D6', desc: 'Beach with umbrella' },
|
|
957
|
+
{ code: '1F3DD', desc: 'Desert island' },
|
|
958
|
+
{ code: '1F3DE', desc: 'National park' },
|
|
959
|
+
{ code: '1F3F0', desc: 'Castle' },
|
|
960
|
+
{ code: '1F5FC', desc: 'Tokyo tower' },
|
|
961
|
+
{ code: '1F5FD', desc: 'Statue of liberty' },
|
|
962
|
+
{ code: '26E9', desc: 'Shinto shrine' },
|
|
963
|
+
{ code: '1F3EF', desc: 'Japanese castle' },
|
|
964
|
+
{ code: '1F3A2', desc: 'Roller coaster' }]
|
|
965
|
+
}, {
|
|
966
|
+
name: 'Objects', code: '1F507', iconCss: 'e-objects', icons: [{ code: '1F4A1', desc: 'Light bulb' },
|
|
967
|
+
{ code: '1F526', desc: 'Flashlight' },
|
|
968
|
+
{ code: '1F4BB', desc: 'Laptop computer' },
|
|
969
|
+
{ code: '1F5A5', desc: 'Desktop computer' },
|
|
970
|
+
{ code: '1F5A8', desc: 'Printer' },
|
|
971
|
+
{ code: '1F4F7', desc: 'Camera' },
|
|
972
|
+
{ code: '1F4F8', desc: 'Camera with flash' },
|
|
973
|
+
{ code: '1F4FD', desc: 'Film projector' },
|
|
974
|
+
{ code: '1F3A5', desc: 'Movie camera' },
|
|
975
|
+
{ code: '1F4FA', desc: 'Television' },
|
|
976
|
+
{ code: '1F4FB', desc: 'Radio' },
|
|
977
|
+
{ code: '1F50B', desc: 'Battery' },
|
|
978
|
+
{ code: '231A', desc: 'Watch' },
|
|
979
|
+
{ code: '1F4F1', desc: 'Mobile phone' },
|
|
980
|
+
{ code: '260E', desc: 'Telephone' },
|
|
981
|
+
{ code: '1F4BE', desc: 'Floppy disk' },
|
|
982
|
+
{ code: '1F4BF', desc: 'Optical disk' },
|
|
983
|
+
{ code: '1F4C0', desc: 'Digital versatile disc' },
|
|
984
|
+
{ code: '1F4BD', desc: 'Computer disk' },
|
|
985
|
+
{ code: '1F3A7', desc: 'Headphone' },
|
|
986
|
+
{ code: '1F3A4', desc: 'Microphone' },
|
|
987
|
+
{ code: '1F3B6', desc: 'Multiple musical notes' },
|
|
988
|
+
{ code: '1F4DA', desc: 'Books' }]
|
|
989
|
+
}, {
|
|
990
|
+
name: 'Symbols', code: '1F3E7', iconCss: 'e-symbols', icons: [{ code: '274C', desc: 'Cross mark' },
|
|
991
|
+
{ code: '2714', desc: 'Check mark' },
|
|
992
|
+
{ code: '26A0', desc: 'Warning sign' },
|
|
993
|
+
{ code: '1F6AB', desc: 'Prohibited' },
|
|
994
|
+
{ code: '2139', desc: 'Information' },
|
|
995
|
+
{ code: '267B', desc: 'Recycling symbol' },
|
|
996
|
+
{ code: '1F6AD', desc: 'No smoking' },
|
|
997
|
+
{ code: '1F4F5', desc: 'No mobile phones' },
|
|
998
|
+
{ code: '1F6AF', desc: 'No littering' },
|
|
999
|
+
{ code: '1F6B3', desc: 'No bicycles' },
|
|
1000
|
+
{ code: '1F6B7', desc: 'No pedestrians' },
|
|
1001
|
+
{ code: '2795', desc: 'Plus' },
|
|
1002
|
+
{ code: '2796', desc: 'Minus' },
|
|
1003
|
+
{ code: '2797', desc: 'Divide' },
|
|
1004
|
+
{ code: '2716', desc: 'Multiplication' },
|
|
1005
|
+
{ code: '1F4B2', desc: 'Dollar banknote' },
|
|
1006
|
+
{ code: '1F4AC', desc: 'Speech balloon' },
|
|
1007
|
+
{ code: '2755', desc: 'White exclamation mark' },
|
|
1008
|
+
{ code: '2754', desc: 'White question mark' },
|
|
1009
|
+
{ code: '2764', desc: 'Heart' }]
|
|
1010
|
+
}];
|
|
1011
|
+
});
|