jodit 3.11.2 → 3.12.4
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/.github/workflows/docs.yml +16 -0
- package/.github/workflows/tests.yml +1 -2
- package/.idea/workspace.xml +314 -300
- package/CHANGELOG.MD +35 -2
- package/LICENSE.txt +1 -1
- package/README.md +6 -4
- package/build/jodit.css +150 -114
- package/build/jodit.es2018.css +135 -103
- package/build/jodit.es2018.en.css +135 -103
- package/build/jodit.es2018.en.js +2281 -2129
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +2447 -2295
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +3496 -3320
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -1
- package/src/README.md +55 -0
- package/src/config.ts +5 -1
- package/src/core/async/README.md +147 -0
- package/src/core/{async.ts → async/async.ts} +12 -7
- package/src/core/async/index.ts +11 -0
- package/src/core/component/README.md +110 -0
- package/src/core/component/component.ts +7 -1
- package/src/core/component/index.ts +5 -1
- package/src/core/component/statuses.ts +5 -1
- package/src/core/component/view-component.ts +5 -1
- package/src/core/constants.ts +5 -1
- package/src/core/create/README.md +57 -0
- package/src/core/{create.ts → create/create.ts} +11 -5
- package/src/core/create/index.ts +11 -0
- package/src/core/decorators/README.md +4 -0
- package/src/core/decorators/cache/README.md +17 -0
- package/src/core/decorators/{cache.ts → cache/cache.ts} +9 -3
- package/src/core/decorators/component/README.md +65 -0
- package/src/core/decorators/{component.ts → component/component.ts} +8 -2
- package/src/core/decorators/debounce/README.md +44 -0
- package/src/core/decorators/{debounce.ts → debounce/debounce.ts} +11 -8
- package/src/core/decorators/hook/README.md +16 -0
- package/src/core/decorators/{hook.ts → hook/hook.ts} +11 -4
- package/src/core/decorators/idle/README.md +1 -0
- package/src/core/decorators/{idle.ts → idle/idle.ts} +11 -7
- package/src/core/decorators/index.ts +16 -10
- package/src/core/decorators/nonenumerable/README.md +15 -0
- package/src/core/decorators/{nonenumerable.ts → nonenumerable/nonenumerable.ts} +5 -2
- package/src/core/decorators/persistent/README.md +23 -0
- package/src/core/decorators/{persistent.ts → persistent/persistent.ts} +9 -6
- package/src/core/decorators/wait/README.md +20 -0
- package/src/core/decorators/{wait.ts → wait/wait.ts} +9 -6
- package/src/core/decorators/watch/README.md +125 -0
- package/src/core/decorators/{watch.ts → watch/watch.ts} +16 -14
- package/src/core/dom/README.md +13 -0
- package/src/core/{dom.ts → dom/dom.ts} +12 -6
- package/src/core/dom/index.ts +11 -0
- package/src/core/event-emitter/README.md +39 -0
- package/src/core/{events → event-emitter}/event-emitter.ts +13 -13
- package/src/core/{events → event-emitter}/index.ts +5 -1
- package/src/core/{events → event-emitter}/observe-object.ts +17 -8
- package/src/core/{events → event-emitter}/store.ts +5 -1
- package/src/core/global.ts +10 -10
- package/src/core/helpers/README.md +31 -0
- package/src/core/helpers/array/as-array.ts +5 -1
- package/src/core/helpers/array/index.ts +5 -1
- package/src/core/helpers/array/split-array.ts +5 -1
- package/src/core/helpers/array/to-array.ts +5 -1
- package/src/core/helpers/async/index.ts +5 -1
- package/src/core/helpers/async/set-timeout.ts +5 -1
- package/src/core/helpers/checker/has-browser-color-picker.ts +5 -1
- package/src/core/helpers/checker/index.ts +5 -1
- package/src/core/helpers/checker/is-array.ts +5 -1
- package/src/core/helpers/checker/is-boolean.ts +5 -1
- package/src/core/helpers/checker/is-equal.ts +5 -1
- package/src/core/helpers/checker/is-function.ts +5 -1
- package/src/core/helpers/checker/is-html-from-word.ts +5 -1
- package/src/core/helpers/checker/is-html.ts +5 -1
- package/src/core/helpers/checker/is-imp-interface.ts +5 -1
- package/src/core/helpers/checker/is-int.ts +5 -1
- package/src/core/helpers/checker/is-jodit-object.ts +5 -1
- package/src/core/helpers/checker/is-license.ts +5 -1
- package/src/core/helpers/checker/is-native-function.ts +5 -1
- package/src/core/helpers/checker/is-number.ts +5 -1
- package/src/core/helpers/checker/is-numeric.ts +5 -1
- package/src/core/helpers/checker/is-plain-object.ts +5 -1
- package/src/core/helpers/checker/is-promise.ts +5 -1
- package/src/core/helpers/checker/is-string.ts +5 -1
- package/src/core/helpers/checker/is-url.ts +5 -1
- package/src/core/helpers/checker/is-valid-name.ts +5 -1
- package/src/core/helpers/checker/is-void.ts +5 -1
- package/src/core/helpers/checker/is-window.ts +5 -1
- package/src/core/helpers/color/color-to-hex.ts +5 -1
- package/src/core/helpers/color/index.ts +5 -1
- package/src/core/helpers/html/apply-styles.ts +6 -2
- package/src/core/helpers/html/clean-from-word.ts +5 -1
- package/src/core/helpers/html/htmlspecialchars.ts +5 -1
- package/src/core/helpers/html/index.ts +5 -1
- package/src/core/helpers/html/nl2br.ts +6 -2
- package/src/core/helpers/html/strip-tags.ts +6 -2
- package/src/core/helpers/index.ts +7 -22
- package/src/core/helpers/normalize/index.ts +5 -1
- package/src/core/helpers/normalize/normalize-color.ts +5 -1
- package/src/core/helpers/normalize/normalize-css-value.ts +5 -1
- package/src/core/helpers/normalize/normalize-key-aliases.ts +5 -1
- package/src/core/helpers/normalize/normalize-license.ts +5 -1
- package/src/core/helpers/normalize/normalize-node.ts +5 -1
- package/src/core/helpers/normalize/normalize-path.ts +5 -1
- package/src/core/helpers/normalize/normalize-relative-path.ts +5 -1
- package/src/core/helpers/normalize/normalize-size.ts +5 -1
- package/src/core/helpers/normalize/normalize-url.ts +5 -1
- package/src/core/helpers/size/get-content-width.ts +3 -2
- package/src/core/helpers/size/get-scroll-parent.ts +11 -5
- package/src/core/helpers/size/index.ts +5 -1
- package/src/core/helpers/size/inner-width.ts +5 -1
- package/src/core/helpers/size/object-size.ts +5 -1
- package/src/core/helpers/size/offset.ts +5 -1
- package/src/core/helpers/size/position.ts +5 -1
- package/src/core/helpers/string/camel-case.ts +5 -1
- package/src/core/helpers/string/i18n.ts +6 -2
- package/src/core/helpers/string/index.ts +5 -1
- package/src/core/helpers/string/kebab-case.ts +5 -1
- package/src/core/helpers/string/stringify.ts +5 -1
- package/src/core/helpers/string/trim.ts +5 -1
- package/src/core/helpers/string/ucfirst.ts +5 -1
- package/src/core/helpers/{append-script.ts → utils/append-script.ts} +7 -3
- package/src/core/helpers/{browser.ts → utils/browser.ts} +5 -1
- package/src/core/helpers/{build-query.ts → utils/build-query.ts} +7 -3
- package/src/core/helpers/{complete-url.ts → utils/complete-url.ts} +5 -1
- package/src/core/helpers/{config-proto.ts → utils/config-proto.ts} +8 -4
- package/src/core/helpers/{convert-media-url-to-video-embed.ts → utils/convert-media-url-to-video-embed.ts} +6 -2
- package/src/core/helpers/{css.ts → utils/css.ts} +9 -5
- package/src/core/helpers/{ctrl-key.ts → utils/ctrl-key.ts} +5 -1
- package/src/core/helpers/{data-bind.ts → utils/data-bind.ts} +8 -4
- package/src/core/helpers/{default-language.ts → utils/default-language.ts} +6 -2
- package/src/core/helpers/{type.ts → utils/error.ts} +5 -1
- package/src/core/helpers/{extend.ts → utils/extend.ts} +6 -2
- package/src/core/helpers/utils/get-class-name.ts +5 -1
- package/src/core/helpers/utils/get.ts +5 -1
- package/src/core/helpers/{human-size-to-bytes.ts → utils/human-size-to-bytes.ts} +5 -1
- package/src/core/helpers/utils/index.ts +22 -1
- package/src/core/helpers/utils/mark-deprecated.ts +5 -1
- package/src/core/helpers/{parse-query.ts → utils/parse-query.ts} +6 -2
- package/src/core/helpers/{scroll-into-view.ts → utils/scroll-into-view.ts} +5 -1
- package/src/core/helpers/{selector.ts → utils/selector.ts} +13 -9
- package/src/core/helpers/utils/set.ts +5 -1
- package/src/core/helpers/utils/stack.ts +6 -1
- package/src/core/helpers/utils/utils.ts +7 -3
- package/src/core/helpers/{val.ts → utils/val.ts} +5 -1
- package/src/core/plugin/README.md +133 -0
- package/src/core/plugin/index.ts +12 -0
- package/src/core/{plugin-system.ts → plugin/plugin-system.ts} +7 -3
- package/src/core/{plugin.ts → plugin/plugin.ts} +11 -5
- package/src/core/request/README.md +11 -0
- package/src/core/request/ajax.ts +18 -12
- package/src/core/request/config.ts +5 -1
- package/src/core/request/index.ts +5 -1
- package/src/core/request/response.ts +5 -1
- package/src/core/selection/README.md +20 -0
- package/src/core/selection/index.ts +5 -1
- package/src/core/selection/select.ts +10 -4
- package/src/core/selection/style/api/element-has-same-style.ts +2 -1
- package/src/core/selection/style/api/extract.ts +2 -1
- package/src/core/selection/style/api/finite-state-machine.ts +1 -1
- package/src/core/selection/style/api/get-suit-child.ts +2 -1
- package/src/core/selection/style/api/get-suit-parent.ts +2 -1
- package/src/core/selection/style/api/index.ts +1 -1
- package/src/core/selection/style/api/is-inside-invisible-element.ts +2 -1
- package/src/core/selection/style/api/is-normal-node.ts +2 -1
- package/src/core/selection/style/api/is-suit-element.ts +3 -2
- package/src/core/selection/style/api/toggle/toggle-css.ts +2 -1
- package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +2 -1
- package/src/core/selection/style/api/toggle-commit-styles.ts +2 -1
- package/src/core/selection/style/api/unwrap-children.ts +2 -1
- package/src/core/selection/style/api/wrap-and-commit-style.ts +2 -1
- package/src/core/selection/style/api/wrap-ordered-list.ts +2 -1
- package/src/core/selection/style/api/wrap-unwrapped-text.ts +2 -1
- package/src/core/selection/style/apply-style.ts +5 -1
- package/src/core/selection/style/commit-style.ts +5 -1
- package/src/core/storage/README.md +13 -0
- package/src/core/storage/engines/local-storage-provider.ts +5 -1
- package/src/core/storage/engines/memory-storage-provider.ts +5 -1
- package/src/core/storage/index.ts +5 -1
- package/src/core/storage/storage.ts +7 -1
- package/src/core/traits/elms.ts +5 -1
- package/src/core/traits/index.ts +5 -1
- package/src/core/traits/mods.ts +5 -1
- package/src/core/ui/README.md +51 -0
- package/src/core/ui/button/README.md +3 -0
- package/src/core/ui/button/button/button.less +1 -1
- package/src/core/ui/button/button/button.ts +6 -2
- package/src/core/ui/button/group/group.ts +6 -2
- package/src/core/ui/button/index.ts +7 -1
- package/src/core/ui/element.ts +5 -1
- package/src/core/ui/form/README.md +22 -0
- package/src/core/ui/form/block/block.ts +6 -2
- package/src/core/ui/form/form.ts +8 -2
- package/src/core/ui/form/index.ts +5 -1
- package/src/core/ui/form/inputs/area/area.ts +5 -1
- package/src/core/ui/form/inputs/checkbox/checkbox.ts +5 -1
- package/src/core/ui/form/inputs/file/file.ts +5 -1
- package/src/core/ui/form/inputs/index.ts +5 -1
- package/src/core/ui/form/inputs/input/input.ts +5 -1
- package/src/core/ui/form/inputs/select/select.ts +5 -1
- package/src/core/ui/form/validators/index.ts +5 -1
- package/src/core/ui/form/validators/input.ts +5 -1
- package/src/core/ui/form/validators/select.ts +5 -1
- package/src/core/ui/group/README.md +1 -0
- package/src/core/ui/{list → group}/group.less +1 -1
- package/src/core/ui/{list → group}/group.ts +7 -1
- package/src/core/ui/{list → group}/index.ts +5 -1
- package/src/core/ui/{list → group}/list.less +1 -1
- package/src/core/ui/{list → group}/list.ts +5 -1
- package/src/core/ui/{list → group}/separator.ts +5 -1
- package/src/core/ui/{list → group}/spacer.ts +5 -1
- package/src/core/ui/helpers/buttons.ts +5 -1
- package/src/core/ui/helpers/get-control-type.ts +5 -1
- package/src/core/ui/helpers/get-strong-control-types.ts +5 -1
- package/src/core/ui/icon.ts +6 -2
- package/src/core/ui/index.ts +8 -2
- package/src/core/ui/popup/README.md +15 -0
- package/src/core/ui/popup/index.ts +5 -1
- package/src/core/ui/popup/popup.less +1 -1
- package/src/core/ui/popup/popup.ts +7 -1
- package/src/core/ui/progress-bar/README.md +1 -0
- package/src/core/ui/progress-bar/progress-bar.less +1 -1
- package/src/core/ui/progress-bar/progress-bar.ts +7 -1
- package/src/core/view/README.md +24 -0
- package/src/core/view/view-with-toolbar.less +1 -1
- package/src/core/view/view-with-toolbar.ts +5 -1
- package/src/core/view/view.ts +11 -4
- package/src/header.js +1 -1
- package/src/index.ts +7 -1
- package/src/jodit.ts +7 -1
- package/src/langs/README.md +1 -0
- package/src/langs/ar.js +1 -1
- package/src/langs/cs_cz.js +1 -1
- package/src/langs/de.js +1 -1
- package/src/langs/en.js +1 -1
- package/src/langs/es.js +1 -1
- package/src/langs/fa.js +1 -1
- package/src/langs/fr.js +1 -1
- package/src/langs/he.js +1 -1
- package/src/langs/hu.js +1 -1
- package/src/langs/id.js +1 -1
- package/src/langs/index.ts +8 -1
- package/src/langs/it.js +1 -1
- package/src/langs/ja.js +1 -1
- package/src/langs/ko.js +1 -1
- package/src/langs/nl.js +1 -1
- package/src/langs/pl.js +1 -1
- package/src/langs/pt_br.js +1 -1
- package/src/langs/ru.js +1 -1
- package/src/langs/tr.js +1 -1
- package/src/langs/zh_cn.js +1 -1
- package/src/langs/zh_tw.js +1 -1
- package/src/modules/README.md +1 -0
- package/src/modules/context-menu/README.md +1 -0
- package/src/modules/context-menu/context-menu.less +1 -1
- package/src/modules/context-menu/context-menu.ts +7 -1
- package/src/modules/dialog/README.md +45 -0
- package/src/modules/dialog/alert.ts +5 -1
- package/src/modules/dialog/confirm.ts +5 -1
- package/src/modules/dialog/dialog.less +1 -1
- package/src/modules/dialog/dialog.ts +6 -2
- package/src/modules/dialog/index.ts +7 -1
- package/src/modules/dialog/prompt.ts +5 -1
- package/src/modules/file-browser/{README.MD → README.md} +189 -79
- package/src/modules/file-browser/builders/context-menu.ts +23 -11
- package/src/modules/file-browser/builders/elements-map.ts +31 -0
- package/src/modules/file-browser/builders/item.ts +5 -1
- package/src/modules/file-browser/config.ts +5 -1
- package/src/modules/file-browser/data-provider.ts +7 -3
- package/src/modules/file-browser/factories.ts +5 -1
- package/src/modules/file-browser/fetch/delete-file.ts +27 -0
- package/src/modules/file-browser/fetch/load-items.ts +32 -0
- package/src/modules/file-browser/fetch/load-tree.ts +49 -0
- package/src/modules/file-browser/file-browser.ts +69 -109
- package/src/modules/file-browser/index.ts +13 -0
- package/src/modules/file-browser/listeners/native-listeners.ts +19 -15
- package/src/modules/file-browser/listeners/self-listeners.ts +25 -17
- package/src/modules/file-browser/listeners/state-listeners.ts +19 -12
- package/src/modules/file-browser/styles/file-browser.less +25 -19
- package/src/modules/file-browser/styles/index.less +1 -1
- package/src/modules/file-browser/styles/preview.less +1 -1
- package/src/modules/file-browser/ui/files/files.less +5 -0
- package/src/modules/file-browser/ui/files/files.ts +1 -1
- package/src/modules/file-browser/ui/index.ts +5 -1
- package/src/modules/file-browser/ui/tree/tree.less +5 -0
- package/src/modules/file-browser/ui/tree/tree.ts +1 -1
- package/src/modules/image-editor/README.md +1 -0
- package/src/modules/image-editor/image-editor.less +1 -1
- package/src/modules/image-editor/image-editor.ts +13 -12
- package/src/modules/image-editor/templates/form.ts +5 -1
- package/src/modules/index.ts +12 -6
- package/src/modules/observer/README.md +0 -0
- package/src/modules/observer/command.ts +5 -1
- package/src/modules/observer/observer.ts +7 -1
- package/src/modules/observer/snapshot.ts +5 -1
- package/src/modules/observer/stack.ts +5 -1
- package/src/modules/status-bar/README.md +1 -0
- package/src/modules/status-bar/status-bar.less +1 -1
- package/src/modules/status-bar/status-bar.ts +7 -1
- package/src/modules/table/README.md +3 -0
- package/src/modules/{table.ts → table/table.ts} +20 -13
- package/src/modules/toolbar/README.md +1 -0
- package/src/modules/toolbar/button/README.md +1 -0
- package/src/modules/toolbar/button/button.less +1 -1
- package/src/modules/toolbar/button/button.ts +7 -1
- package/src/modules/toolbar/button/content.less +1 -1
- package/src/modules/toolbar/button/content.ts +5 -1
- package/src/modules/toolbar/button/index.ts +5 -1
- package/src/modules/toolbar/collection/README.md +1 -0
- package/src/modules/toolbar/collection/collection.less +2 -2
- package/src/modules/toolbar/collection/collection.ts +7 -1
- package/src/modules/toolbar/collection/editor-collection.ts +5 -1
- package/src/modules/toolbar/factory.ts +7 -1
- package/src/modules/uploader/README.md +1 -0
- package/src/modules/uploader/uploader.less +1 -1
- package/src/modules/uploader/uploader.ts +13 -7
- package/src/modules/widget/README.md +1 -0
- package/src/modules/widget/color-picker/README.md +1 -0
- package/src/modules/widget/color-picker/color-picker.less +1 -1
- package/src/modules/widget/color-picker/color-picker.ts +7 -1
- package/src/modules/widget/file-selector/README.md +1 -0
- package/src/modules/widget/file-selector/file-selector.ts +7 -1
- package/src/modules/widget/index.ts +7 -1
- package/src/modules/widget/tabs/README.md +1 -0
- package/src/modules/widget/tabs/tabs.less +1 -1
- package/src/modules/widget/tabs/tabs.ts +7 -1
- package/src/modules/widget/widget.less +1 -1
- package/src/plugins/README.md +3 -0
- package/src/plugins/about/about.less +1 -1
- package/src/plugins/about/about.ts +5 -1
- package/src/plugins/add-new-line/README.md +6 -0
- package/src/plugins/add-new-line/add-new-line.less +1 -1
- package/src/plugins/add-new-line/add-new-line.ts +13 -1
- package/src/plugins/{bold.ts → bold/bold.ts} +9 -5
- package/src/plugins/class-span/class-span.ts +5 -1
- package/src/plugins/clipboard/clipboard.ts +5 -1
- package/src/plugins/clipboard/config.ts +13 -1
- package/src/plugins/clipboard/copy-format.ts +5 -1
- package/src/plugins/clipboard/drag-and-drop-element.ts +5 -1
- package/src/plugins/clipboard/drag-and-drop.ts +7 -8
- package/src/plugins/clipboard/index.ts +5 -1
- package/src/plugins/clipboard/paste/CHANGELOG.md +17 -0
- package/src/plugins/clipboard/paste/README.md +8 -0
- package/src/plugins/clipboard/paste/helpers.ts +5 -1
- package/src/plugins/clipboard/paste/paste.ts +20 -12
- package/src/plugins/clipboard/paste-storage/paste-storage.less +1 -1
- package/src/plugins/clipboard/paste-storage/paste-storage.ts +5 -1
- package/src/plugins/{color.ts → color/color.ts} +10 -6
- package/src/plugins/error-messages/error-messages.ts +5 -1
- package/src/plugins/error-messages/errors-messages.less +1 -1
- package/src/plugins/fix/clean-html.ts +6 -2
- package/src/plugins/fix/wrap-text-nodes.ts +5 -1
- package/src/plugins/focus/README.md +3 -0
- package/src/plugins/{focus.ts → focus/focus.ts} +11 -8
- package/src/plugins/{font.ts → font/font.ts} +10 -6
- package/src/plugins/format-block/CHANGELOG.md +16 -0
- package/src/plugins/format-block/README.md +40 -0
- package/src/plugins/{format-block.ts → format-block/format-block.ts} +18 -6
- package/src/plugins/fullsize/fullsize.less +2 -2
- package/src/plugins/fullsize/fullsize.ts +5 -1
- package/src/plugins/{iframe.ts → iframe/iframe.ts} +13 -9
- package/src/plugins/image/helpers.ts +5 -1
- package/src/plugins/image/image-processor.ts +5 -1
- package/src/plugins/image/image-properties/image-properties.less +1 -1
- package/src/plugins/image/image-properties/image-properties.ts +5 -1
- package/src/plugins/image/image-properties/templates/form.ts +5 -1
- package/src/plugins/image/image-properties/templates/index.ts +7 -3
- package/src/plugins/image/image-properties/templates/{mainTab.ts → main-tab.ts} +5 -1
- package/src/plugins/image/image-properties/templates/{positionTab.ts → position-tab.ts} +5 -1
- package/src/plugins/image/image.ts +5 -1
- package/src/plugins/image/index.ts +5 -1
- package/src/plugins/{indent.ts → indent/indent.ts} +11 -7
- package/src/plugins/index.ts +22 -16
- package/src/plugins/inline-popup/config/config.ts +5 -1
- package/src/plugins/inline-popup/config/items/a.ts +5 -1
- package/src/plugins/inline-popup/config/items/cells.ts +5 -1
- package/src/plugins/inline-popup/config/items/iframe.ts +5 -1
- package/src/plugins/inline-popup/config/items/img.ts +5 -1
- package/src/plugins/inline-popup/config/items/toolbar.ts +5 -1
- package/src/plugins/inline-popup/inline-popup.less +1 -1
- package/src/plugins/inline-popup/inline-popup.ts +5 -1
- package/src/plugins/insert/hr.ts +5 -1
- package/src/plugins/insert/index.ts +5 -1
- package/src/plugins/{justify.ts → justify/justify.ts} +9 -5
- package/src/plugins/keyboard/backspace/backspace.ts +5 -1
- package/src/plugins/keyboard/backspace/cases/check-join-neighbors.ts +1 -1
- package/src/plugins/keyboard/backspace/cases/check-join-two-lists.ts +2 -1
- package/src/plugins/keyboard/backspace/cases/check-not-collapsed.ts +2 -1
- package/src/plugins/keyboard/backspace/cases/check-remove-char.ts +2 -1
- package/src/plugins/keyboard/backspace/cases/check-remove-content-not-editable.ts +3 -2
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.ts +2 -1
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-parent.ts +3 -1
- package/src/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.ts +3 -1
- package/src/plugins/keyboard/backspace/cases/check-table-cell.ts +3 -1
- package/src/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.ts +3 -1
- package/src/plugins/keyboard/backspace/cases/index.ts +1 -1
- package/src/plugins/keyboard/backspace/config.ts +5 -1
- package/src/plugins/keyboard/backspace/interface.d.ts +5 -1
- package/src/plugins/keyboard/enter.ts +5 -1
- package/src/plugins/keyboard/helpers.ts +6 -1
- package/src/plugins/keyboard/hotkeys.ts +5 -1
- package/src/plugins/keyboard/key-arrow-outside.ts +6 -1
- package/src/plugins/{limit.ts → limit/limit.ts} +12 -8
- package/src/plugins/link/link.ts +5 -1
- package/src/plugins/link/template.ts +5 -1
- package/src/plugins/media/file.ts +5 -1
- package/src/plugins/media/index.ts +5 -1
- package/src/plugins/media/media.ts +5 -1
- package/src/plugins/media/video/config.ts +5 -1
- package/src/plugins/media/video/index.ts +5 -1
- package/src/plugins/{mobile.ts → mobile/mobile.ts} +14 -10
- package/src/plugins/{ordered-list.ts → ordered-list/ordered-list.ts} +11 -7
- package/src/plugins/placeholder/placeholder.less +1 -1
- package/src/plugins/placeholder/placeholder.ts +5 -1
- package/src/plugins/{powered-by-jodit.ts → powered-by-jodit/powered-by-jodit.ts} +10 -3
- package/src/plugins/print/index.ts +5 -1
- package/src/plugins/print/preview.ts +5 -1
- package/src/plugins/print/print.ts +5 -1
- package/src/plugins/{redo-undo.ts → redo-undo/redo-undo.ts} +9 -5
- package/src/plugins/resizer/resizer.less +1 -1
- package/src/plugins/resizer/resizer.ts +7 -3
- package/src/plugins/search/search.less +1 -1
- package/src/plugins/search/search.ts +5 -1
- package/src/plugins/{select.ts → select/select.ts} +11 -7
- package/src/plugins/size/config.ts +6 -1
- package/src/plugins/size/index.ts +5 -1
- package/src/plugins/size/resize-handler.ts +5 -1
- package/src/plugins/size/size.less +1 -1
- package/src/plugins/size/size.ts +5 -1
- package/src/plugins/source/README.md +60 -0
- package/src/plugins/source/config.ts +18 -3
- package/src/plugins/source/const.ts +5 -1
- package/src/plugins/source/editor/engines/ace.ts +5 -1
- package/src/plugins/source/editor/engines/area.ts +5 -1
- package/src/plugins/source/editor/engines/custom.ts +5 -1
- package/src/plugins/source/editor/engines/index.ts +5 -1
- package/src/plugins/source/editor/factory.ts +25 -16
- package/src/plugins/source/editor/sourceEditor.ts +5 -1
- package/src/plugins/source/index.ts +7 -1
- package/src/plugins/source/source.less +1 -1
- package/src/plugins/source/source.ts +5 -1
- package/src/plugins/{stat.ts → stat/stat.ts} +11 -7
- package/src/plugins/sticky/sticky.less +1 -1
- package/src/plugins/sticky/sticky.ts +5 -1
- package/src/plugins/symbols/config.ts +5 -1
- package/src/plugins/symbols/symbols.less +12 -14
- package/src/plugins/symbols/symbols.ts +6 -2
- package/src/plugins/table/config.ts +5 -1
- package/src/plugins/table/index.ts +5 -1
- package/src/plugins/table/resize-cells.ts +5 -1
- package/src/plugins/table/select-cells.ts +6 -2
- package/src/plugins/table/table-keyboard-navigation.ts +5 -1
- package/src/plugins/table/table.less +1 -1
- package/src/plugins/table/table.ts +5 -1
- package/src/plugins/tooltip/tooltip.less +1 -1
- package/src/plugins/tooltip/tooltip.ts +5 -1
- package/src/plugins/xpath/xpath.less +1 -1
- package/src/plugins/xpath/xpath.ts +5 -1
- package/src/polyfills.ts +1 -1
- package/src/styles/form.less +1 -1
- package/src/styles/icons/README.md +1 -0
- package/src/styles/icons/index.ts +7 -1
- package/src/styles/index.less +1 -1
- package/src/styles/jodit.less +1 -1
- package/src/styles/mixins.less +1 -1
- package/src/styles/modules/button-group.less +1 -1
- package/src/styles/modules/grid.less +1 -1
- package/src/styles/modules/icon.less +1 -1
- package/src/styles/modules/texticons.less +1 -1
- package/src/styles/reset.less +1 -1
- package/src/styles/themes/dark.less +1 -1
- package/src/styles/variables.less +1 -1
- package/src/types/ajax.d.ts +11 -7
- package/src/types/async.d.ts +5 -1
- package/src/types/context.d.ts +5 -1
- package/src/types/core.ts +5 -1
- package/src/types/create.d.ts +5 -1
- package/src/types/dialog.d.ts +5 -1
- package/src/types/events.d.ts +12 -8
- package/src/types/file-browser.d.ts +12 -5
- package/src/types/form.d.ts +5 -1
- package/src/types/index.d.ts +6 -2
- package/src/types/jodit.d.ts +5 -1
- package/src/types/{observe.d.ts → observer.d.ts} +7 -5
- package/src/types/plugin.d.ts +5 -1
- package/src/types/popup.d.ts +5 -1
- package/src/types/select.d.ts +5 -1
- package/src/types/source.d.ts +5 -1
- package/src/types/storage.ts +5 -1
- package/src/types/style.d.ts +5 -1
- package/src/types/toolbar.d.ts +5 -1
- package/src/types/traits.d.ts +5 -1
- package/src/types/types.d.ts +5 -1
- package/src/types/ui.d.ts +5 -1
- package/src/types/uploader.d.ts +5 -3
- package/src/types/view.d.ts +5 -1
- package/src/typings.d.ts +5 -1
- package/tsdoc.json +20 -0
- package/types/config.d.ts +4 -1
- package/types/core/{async.d.ts → async/async.d.ts} +10 -6
- package/types/core/async/index.d.ts +9 -0
- package/types/core/component/component.d.ts +6 -1
- package/types/core/component/index.d.ts +4 -1
- package/types/core/component/statuses.d.ts +4 -1
- package/types/core/component/view-component.d.ts +4 -1
- package/types/core/constants.d.ts +4 -1
- package/types/core/{create.d.ts → create/create.d.ts} +7 -2
- package/types/core/create/index.d.ts +9 -0
- package/types/core/decorators/{cache.d.ts → cache/cache.d.ts} +1 -1
- package/types/core/decorators/{component.d.ts → component/component.d.ts} +1 -1
- package/types/core/decorators/{debounce.d.ts → debounce/debounce.d.ts} +5 -3
- package/types/core/decorators/{hook.d.ts → hook/hook.d.ts} +8 -3
- package/types/core/decorators/{idle.d.ts → idle/idle.d.ts} +5 -3
- package/types/core/decorators/index.d.ts +15 -10
- package/types/core/decorators/{nonenumerable.d.ts → nonenumerable/nonenumerable.d.ts} +4 -2
- package/types/core/decorators/{persistent.d.ts → persistent/persistent.d.ts} +5 -3
- package/types/core/decorators/{wait.d.ts → wait/wait.d.ts} +5 -3
- package/types/core/decorators/{watch.d.ts → watch/watch.d.ts} +7 -2
- package/types/core/{dom.d.ts → dom/dom.d.ts} +7 -2
- package/types/core/dom/index.d.ts +9 -0
- package/types/core/{events → event-emitter}/event-emitter.d.ts +11 -11
- package/types/core/{events → event-emitter}/index.d.ts +4 -1
- package/types/core/{events → event-emitter}/observe-object.d.ts +7 -4
- package/types/core/{events → event-emitter}/store.d.ts +4 -1
- package/types/core/global.d.ts +6 -3
- package/types/core/helpers/array/as-array.d.ts +1 -1
- package/types/core/helpers/array/index.d.ts +4 -1
- package/types/core/helpers/array/split-array.d.ts +1 -1
- package/types/core/helpers/array/to-array.d.ts +1 -1
- package/types/core/helpers/async/index.d.ts +4 -1
- package/types/core/helpers/async/set-timeout.d.ts +4 -1
- package/types/core/helpers/checker/has-browser-color-picker.d.ts +4 -1
- package/types/core/helpers/checker/index.d.ts +4 -1
- package/types/core/helpers/checker/is-array.d.ts +4 -1
- package/types/core/helpers/checker/is-boolean.d.ts +4 -1
- package/types/core/helpers/checker/is-equal.d.ts +1 -1
- package/types/core/helpers/checker/is-function.d.ts +4 -1
- package/types/core/helpers/checker/is-html-from-word.d.ts +4 -1
- package/types/core/helpers/checker/is-html.d.ts +1 -1
- package/types/core/helpers/checker/is-imp-interface.d.ts +4 -1
- package/types/core/helpers/checker/is-int.d.ts +1 -1
- package/types/core/helpers/checker/is-jodit-object.d.ts +4 -1
- package/types/core/helpers/checker/is-license.d.ts +1 -1
- package/types/core/helpers/checker/is-native-function.d.ts +4 -1
- package/types/core/helpers/checker/is-number.d.ts +4 -1
- package/types/core/helpers/checker/is-numeric.d.ts +1 -1
- package/types/core/helpers/checker/is-plain-object.d.ts +4 -1
- package/types/core/helpers/checker/is-promise.d.ts +4 -1
- package/types/core/helpers/checker/is-string.d.ts +4 -1
- package/types/core/helpers/checker/is-url.d.ts +4 -1
- package/types/core/helpers/checker/is-valid-name.d.ts +4 -1
- package/types/core/helpers/checker/is-void.d.ts +4 -1
- package/types/core/helpers/checker/is-window.d.ts +4 -1
- package/types/core/helpers/color/color-to-hex.d.ts +4 -1
- package/types/core/helpers/color/index.d.ts +4 -1
- package/types/core/helpers/html/apply-styles.d.ts +1 -1
- package/types/core/helpers/html/clean-from-word.d.ts +1 -1
- package/types/core/helpers/html/htmlspecialchars.d.ts +4 -1
- package/types/core/helpers/html/index.d.ts +4 -1
- package/types/core/helpers/html/nl2br.d.ts +4 -1
- package/types/core/helpers/html/strip-tags.d.ts +1 -1
- package/types/core/helpers/index.d.ts +6 -19
- package/types/core/helpers/normalize/index.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-color.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-css-value.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-key-aliases.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-license.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-node.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-path.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-relative-path.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-size.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-url.d.ts +4 -1
- package/types/core/helpers/size/get-content-width.d.ts +2 -2
- package/types/core/helpers/size/get-scroll-parent.d.ts +4 -1
- package/types/core/helpers/size/index.d.ts +4 -1
- package/types/core/helpers/size/inner-width.d.ts +4 -1
- package/types/core/helpers/size/object-size.d.ts +1 -1
- package/types/core/helpers/size/offset.d.ts +4 -1
- package/types/core/helpers/size/position.d.ts +4 -1
- package/types/core/helpers/string/camel-case.d.ts +4 -1
- package/types/core/helpers/string/i18n.d.ts +4 -1
- package/types/core/helpers/string/index.d.ts +4 -1
- package/types/core/helpers/string/kebab-case.d.ts +4 -1
- package/types/core/helpers/string/stringify.d.ts +1 -1
- package/types/core/helpers/string/trim.d.ts +1 -1
- package/types/core/helpers/string/ucfirst.d.ts +4 -1
- package/types/core/helpers/{append-script.d.ts → utils/append-script.d.ts} +5 -2
- package/types/core/helpers/{browser.d.ts → utils/browser.d.ts} +4 -1
- package/types/core/helpers/{build-query.d.ts → utils/build-query.d.ts} +5 -2
- package/types/core/helpers/{complete-url.d.ts → utils/complete-url.d.ts} +4 -1
- package/types/core/helpers/{config-proto.d.ts → utils/config-proto.d.ts} +5 -2
- package/types/core/helpers/{convert-media-url-to-video-embed.d.ts → utils/convert-media-url-to-video-embed.d.ts} +1 -1
- package/types/core/helpers/{css.d.ts → utils/css.d.ts} +5 -2
- package/types/core/helpers/{ctrl-key.d.ts → utils/ctrl-key.d.ts} +4 -1
- package/types/core/helpers/{data-bind.d.ts → utils/data-bind.d.ts} +5 -2
- package/types/core/helpers/{default-language.d.ts → utils/default-language.d.ts} +1 -1
- package/types/core/helpers/{type.d.ts → utils/error.d.ts} +4 -1
- package/types/core/helpers/{extend.d.ts → utils/extend.d.ts} +1 -1
- package/types/core/helpers/utils/get-class-name.d.ts +4 -1
- package/types/core/helpers/utils/get.d.ts +4 -1
- package/types/core/helpers/{human-size-to-bytes.d.ts → utils/human-size-to-bytes.d.ts} +4 -1
- package/types/core/helpers/utils/index.d.ts +21 -1
- package/types/core/helpers/utils/mark-deprecated.d.ts +4 -1
- package/types/core/helpers/{parse-query.d.ts → utils/parse-query.d.ts} +5 -2
- package/types/core/helpers/{scroll-into-view.d.ts → utils/scroll-into-view.d.ts} +4 -1
- package/types/core/helpers/{selector.d.ts → utils/selector.d.ts} +5 -2
- package/types/core/helpers/utils/set.d.ts +4 -1
- package/types/core/helpers/utils/stack.d.ts +4 -1
- package/types/core/helpers/utils/utils.d.ts +4 -1
- package/types/core/helpers/{val.d.ts → utils/val.d.ts} +4 -1
- package/types/core/plugin/index.d.ts +10 -0
- package/types/core/{plugin-system.d.ts → plugin/plugin-system.d.ts} +5 -2
- package/types/core/{plugin.d.ts → plugin/plugin.d.ts} +8 -3
- package/types/core/request/ajax.d.ts +7 -2
- package/types/core/request/config.d.ts +4 -1
- package/types/core/request/index.d.ts +4 -1
- package/types/core/request/response.d.ts +4 -1
- package/types/core/selection/index.d.ts +4 -1
- package/types/core/selection/select.d.ts +8 -3
- package/types/core/selection/style/api/element-has-same-style.d.ts +2 -1
- package/types/core/selection/style/api/extract.d.ts +2 -1
- package/types/core/selection/style/api/finite-state-machine.d.ts +1 -1
- package/types/core/selection/style/api/get-suit-child.d.ts +2 -1
- package/types/core/selection/style/api/get-suit-parent.d.ts +2 -1
- package/types/core/selection/style/api/index.d.ts +1 -1
- package/types/core/selection/style/api/is-inside-invisible-element.d.ts +2 -1
- package/types/core/selection/style/api/is-normal-node.d.ts +2 -1
- package/types/core/selection/style/api/is-suit-element.d.ts +3 -2
- package/types/core/selection/style/api/toggle/toggle-css.d.ts +2 -1
- package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +2 -1
- package/types/core/selection/style/api/toggle-commit-styles.d.ts +2 -1
- package/types/core/selection/style/api/unwrap-children.d.ts +2 -1
- package/types/core/selection/style/api/wrap-and-commit-style.d.ts +2 -1
- package/types/core/selection/style/api/wrap-ordered-list.d.ts +2 -1
- package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +2 -1
- package/types/core/selection/style/apply-style.d.ts +4 -1
- package/types/core/selection/style/commit-style.d.ts +4 -1
- package/types/core/storage/engines/local-storage-provider.d.ts +4 -1
- package/types/core/storage/engines/memory-storage-provider.d.ts +4 -1
- package/types/core/storage/index.d.ts +4 -1
- package/types/core/storage/storage.d.ts +6 -1
- package/types/core/traits/elms.d.ts +4 -1
- package/types/core/traits/index.d.ts +4 -1
- package/types/core/traits/mods.d.ts +4 -1
- package/types/core/ui/button/button/button.d.ts +4 -1
- package/types/core/ui/button/group/group.d.ts +5 -2
- package/types/core/ui/button/index.d.ts +6 -1
- package/types/core/ui/element.d.ts +4 -1
- package/types/core/ui/form/block/block.d.ts +5 -2
- package/types/core/ui/form/form.d.ts +7 -2
- package/types/core/ui/form/index.d.ts +4 -1
- package/types/core/ui/form/inputs/area/area.d.ts +4 -1
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +4 -1
- package/types/core/ui/form/inputs/file/file.d.ts +4 -1
- package/types/core/ui/form/inputs/index.d.ts +4 -1
- package/types/core/ui/form/inputs/input/input.d.ts +4 -1
- package/types/core/ui/form/inputs/select/select.d.ts +4 -1
- package/types/core/ui/form/validators/index.d.ts +4 -1
- package/types/core/ui/form/validators/input.d.ts +4 -1
- package/types/core/ui/form/validators/select.d.ts +4 -1
- package/types/core/ui/{list → group}/group.d.ts +6 -1
- package/types/core/ui/{list → group}/index.d.ts +4 -1
- package/types/core/ui/{list → group}/list.d.ts +4 -1
- package/types/core/ui/{list → group}/separator.d.ts +4 -1
- package/types/core/ui/{list → group}/spacer.d.ts +4 -1
- package/types/core/ui/helpers/buttons.d.ts +4 -1
- package/types/core/ui/helpers/get-control-type.d.ts +4 -1
- package/types/core/ui/helpers/get-strong-control-types.d.ts +4 -1
- package/types/core/ui/icon.d.ts +4 -1
- package/types/core/ui/index.d.ts +7 -2
- package/types/core/ui/popup/index.d.ts +4 -1
- package/types/core/ui/popup/popup.d.ts +6 -1
- package/types/core/ui/progress-bar/progress-bar.d.ts +6 -1
- package/types/core/view/view-with-toolbar.d.ts +4 -1
- package/types/core/view/view.d.ts +9 -4
- package/types/index.d.ts +6 -1
- package/types/jodit.d.ts +6 -1
- package/types/langs/index.d.ts +6 -1
- package/types/modules/context-menu/context-menu.d.ts +6 -1
- package/types/modules/dialog/alert.d.ts +4 -1
- package/types/modules/dialog/confirm.d.ts +4 -1
- package/types/modules/dialog/dialog.d.ts +4 -1
- package/types/modules/dialog/index.d.ts +6 -1
- package/types/modules/dialog/prompt.d.ts +4 -1
- package/types/modules/file-browser/builders/context-menu.d.ts +6 -3
- package/types/modules/file-browser/builders/elements-map.d.ts +18 -0
- package/types/modules/file-browser/builders/item.d.ts +4 -1
- package/types/modules/file-browser/config.d.ts +1 -1
- package/types/modules/file-browser/data-provider.d.ts +6 -3
- package/types/modules/file-browser/factories.d.ts +4 -1
- package/types/modules/file-browser/fetch/delete-file.d.ts +13 -0
- package/types/modules/file-browser/fetch/load-items.d.ts +13 -0
- package/types/modules/file-browser/fetch/load-tree.d.ts +13 -0
- package/types/modules/file-browser/file-browser.d.ts +12 -13
- package/types/modules/file-browser/index.d.ts +11 -0
- package/types/modules/file-browser/listeners/native-listeners.d.ts +6 -4
- package/types/modules/file-browser/listeners/self-listeners.d.ts +6 -3
- package/types/modules/file-browser/listeners/state-listeners.d.ts +6 -3
- package/types/modules/file-browser/ui/files/files.d.ts +1 -1
- package/types/modules/file-browser/ui/index.d.ts +4 -1
- package/types/modules/file-browser/ui/tree/tree.d.ts +1 -1
- package/types/modules/image-editor/image-editor.d.ts +13 -11
- package/types/modules/image-editor/templates/form.d.ts +4 -1
- package/types/modules/index.d.ts +11 -6
- package/types/modules/observer/command.d.ts +4 -1
- package/types/modules/observer/observer.d.ts +6 -1
- package/types/modules/observer/snapshot.d.ts +4 -1
- package/types/modules/observer/stack.d.ts +4 -1
- package/types/modules/status-bar/status-bar.d.ts +6 -1
- package/types/modules/{table.d.ts → table/table.d.ts} +7 -7
- package/types/modules/toolbar/button/button.d.ts +6 -1
- package/types/modules/toolbar/button/content.d.ts +4 -1
- package/types/modules/toolbar/button/index.d.ts +4 -1
- package/types/modules/toolbar/collection/collection.d.ts +6 -1
- package/types/modules/toolbar/collection/editor-collection.d.ts +4 -1
- package/types/modules/toolbar/factory.d.ts +6 -1
- package/types/modules/uploader/uploader.d.ts +9 -4
- package/types/modules/widget/color-picker/color-picker.d.ts +6 -1
- package/types/modules/widget/file-selector/file-selector.d.ts +6 -1
- package/types/modules/widget/index.d.ts +6 -1
- package/types/modules/widget/tabs/tabs.d.ts +6 -1
- package/types/plugins/about/about.d.ts +4 -1
- package/types/plugins/add-new-line/add-new-line.d.ts +12 -1
- package/types/plugins/{bold.d.ts → bold/bold.d.ts} +6 -3
- package/types/plugins/class-span/class-span.d.ts +4 -1
- package/types/plugins/clipboard/clipboard.d.ts +4 -1
- package/types/plugins/clipboard/config.d.ts +6 -1
- package/types/plugins/clipboard/copy-format.d.ts +4 -1
- package/types/plugins/clipboard/drag-and-drop-element.d.ts +1 -1
- package/types/plugins/clipboard/drag-and-drop.d.ts +1 -1
- package/types/plugins/clipboard/index.d.ts +4 -1
- package/types/plugins/clipboard/paste/helpers.d.ts +4 -1
- package/types/plugins/clipboard/paste/paste.d.ts +7 -8
- package/types/plugins/clipboard/paste-storage/paste-storage.d.ts +4 -1
- package/types/plugins/{color.d.ts → color/color.d.ts} +5 -2
- package/types/plugins/error-messages/error-messages.d.ts +4 -1
- package/types/plugins/fix/clean-html.d.ts +5 -2
- package/types/plugins/fix/wrap-text-nodes.d.ts +4 -1
- package/types/plugins/{focus.d.ts → focus/focus.d.ts} +8 -6
- package/types/plugins/{font.d.ts → font/font.d.ts} +6 -3
- package/types/plugins/{format-block.d.ts → format-block/format-block.d.ts} +7 -2
- package/types/plugins/fullsize/fullsize.d.ts +4 -1
- package/types/plugins/{iframe.d.ts → iframe/iframe.d.ts} +6 -3
- package/types/plugins/image/helpers.d.ts +1 -1
- package/types/plugins/image/image-processor.d.ts +4 -1
- package/types/plugins/image/image-properties/image-properties.d.ts +4 -1
- package/types/plugins/image/image-properties/templates/form.d.ts +4 -1
- package/types/plugins/image/image-properties/templates/index.d.ts +6 -3
- package/types/plugins/image/image-properties/templates/{mainTab.d.ts → main-tab.d.ts} +4 -1
- package/types/plugins/image/image-properties/templates/{positionTab.d.ts → position-tab.d.ts} +4 -1
- package/types/plugins/image/image.d.ts +4 -1
- package/types/plugins/image/index.d.ts +4 -1
- package/types/plugins/{indent.d.ts → indent/indent.d.ts} +6 -3
- package/types/plugins/index.d.ts +21 -16
- package/types/plugins/inline-popup/config/config.d.ts +4 -1
- package/types/plugins/inline-popup/inline-popup.d.ts +4 -1
- package/types/plugins/insert/hr.d.ts +4 -1
- package/types/plugins/insert/index.d.ts +4 -1
- package/types/plugins/{justify.d.ts → justify/justify.d.ts} +5 -2
- package/types/plugins/keyboard/backspace/backspace.d.ts +4 -1
- package/types/plugins/keyboard/backspace/cases/check-join-neighbors.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-join-two-lists.d.ts +2 -1
- package/types/plugins/keyboard/backspace/cases/check-not-collapsed.d.ts +2 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-char.d.ts +2 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-content-not-editable.d.ts +3 -2
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.d.ts +2 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-parent.d.ts +3 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.d.ts +3 -1
- package/types/plugins/keyboard/backspace/cases/check-table-cell.d.ts +3 -1
- package/types/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.d.ts +3 -1
- package/types/plugins/keyboard/backspace/cases/index.d.ts +1 -1
- package/types/plugins/keyboard/backspace/config.d.ts +1 -1
- package/types/plugins/keyboard/enter.d.ts +4 -1
- package/types/plugins/keyboard/helpers.d.ts +4 -1
- package/types/plugins/keyboard/hotkeys.d.ts +4 -1
- package/types/plugins/keyboard/key-arrow-outside.d.ts +4 -1
- package/types/plugins/{limit.d.ts → limit/limit.d.ts} +7 -4
- package/types/plugins/link/link.d.ts +4 -1
- package/types/plugins/link/template.d.ts +4 -1
- package/types/plugins/media/file.d.ts +4 -1
- package/types/plugins/media/index.d.ts +4 -1
- package/types/plugins/media/media.d.ts +4 -1
- package/types/plugins/media/video/config.d.ts +1 -1
- package/types/plugins/media/video/index.d.ts +4 -1
- package/types/plugins/{mobile.d.ts → mobile/mobile.d.ts} +6 -3
- package/types/plugins/{ordered-list.d.ts → ordered-list/ordered-list.d.ts} +6 -3
- package/types/plugins/placeholder/placeholder.d.ts +4 -1
- package/types/plugins/{powered-by-jodit.d.ts → powered-by-jodit/powered-by-jodit.d.ts} +9 -3
- package/types/plugins/print/index.d.ts +4 -1
- package/types/plugins/print/preview.d.ts +4 -1
- package/types/plugins/print/print.d.ts +4 -1
- package/types/plugins/{redo-undo.d.ts → redo-undo/redo-undo.d.ts} +6 -3
- package/types/plugins/resizer/resizer.d.ts +6 -3
- package/types/plugins/search/search.d.ts +4 -1
- package/types/plugins/{select.d.ts → select/select.d.ts} +6 -3
- package/types/plugins/size/config.d.ts +5 -0
- package/types/plugins/size/index.d.ts +4 -1
- package/types/plugins/size/resize-handler.d.ts +4 -1
- package/types/plugins/size/size.d.ts +4 -1
- package/types/plugins/source/config.d.ts +16 -3
- package/types/plugins/source/const.d.ts +4 -1
- package/types/plugins/source/editor/engines/ace.d.ts +4 -1
- package/types/plugins/source/editor/engines/area.d.ts +4 -1
- package/types/plugins/source/editor/engines/index.d.ts +4 -1
- package/types/plugins/source/editor/factory.d.ts +5 -2
- package/types/plugins/source/editor/sourceEditor.d.ts +4 -1
- package/types/plugins/source/index.d.ts +6 -1
- package/types/plugins/source/source.d.ts +4 -1
- package/types/plugins/{stat.d.ts → stat/stat.d.ts} +3 -3
- package/types/plugins/sticky/sticky.d.ts +4 -1
- package/types/plugins/symbols/config.d.ts +1 -1
- package/types/plugins/symbols/symbols.d.ts +4 -1
- package/types/plugins/table/config.d.ts +1 -1
- package/types/plugins/table/index.d.ts +4 -1
- package/types/plugins/table/resize-cells.d.ts +4 -1
- package/types/plugins/table/select-cells.d.ts +4 -1
- package/types/plugins/table/table-keyboard-navigation.d.ts +4 -1
- package/types/plugins/table/table.d.ts +4 -1
- package/types/plugins/tooltip/tooltip.d.ts +4 -1
- package/types/plugins/xpath/xpath.d.ts +4 -1
- package/types/styles/icons/index.d.ts +6 -1
- package/types/types/core.d.ts +4 -1
- package/types/types/storage.d.ts +4 -1
- package/types/types/types/ajax.d.ts +11 -7
- package/types/types/types/async.d.ts +5 -1
- package/types/types/types/context.d.ts +5 -1
- package/types/types/types/core.ts +5 -1
- package/types/types/types/create.d.ts +5 -1
- package/types/types/types/dialog.d.ts +5 -1
- package/types/types/types/events.d.ts +12 -8
- package/types/types/types/file-browser.d.ts +12 -5
- package/types/types/types/form.d.ts +5 -1
- package/types/types/types/index.d.ts +6 -2
- package/types/types/types/jodit.d.ts +5 -1
- package/types/types/types/{observe.d.ts → observer.d.ts} +7 -5
- package/types/types/types/plugin.d.ts +5 -1
- package/types/types/types/popup.d.ts +5 -1
- package/types/types/types/select.d.ts +5 -1
- package/types/types/types/source.d.ts +5 -1
- package/types/types/types/storage.ts +5 -1
- package/types/types/types/style.d.ts +5 -1
- package/types/types/types/toolbar.d.ts +5 -1
- package/types/types/types/traits.d.ts +5 -1
- package/types/types/types/types.d.ts +5 -1
- package/types/types/types/ui.d.ts +5 -1
- package/types/types/types/uploader.d.ts +5 -3
- package/types/types/types/view.d.ts +5 -1
- package/src/core/decorators/spy.ts +0 -55
- package/src/core/helpers/each.ts +0 -61
- package/types/core/helpers/each.d.ts +0 -20
package/build/jodit.es2018.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
|
|
4
|
-
* Version: v3.
|
|
4
|
+
* Version: v3.12.4
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
/*!
|
|
10
10
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11
11
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12
|
-
* Copyright (c) 2013-
|
|
12
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13
13
|
*/
|
|
14
14
|
/*!
|
|
15
15
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16
16
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17
|
-
* Copyright (c) 2013-
|
|
17
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18
18
|
*/
|
|
19
19
|
:root {
|
|
20
20
|
--jd-color-white: #fff;
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
/*!
|
|
96
96
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
97
97
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
98
|
-
* Copyright (c) 2013-
|
|
98
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
99
99
|
*/
|
|
100
100
|
.jodit-wysiwyg {
|
|
101
101
|
outline: 0;
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
/*!
|
|
136
136
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
137
137
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
138
|
-
* Copyright (c) 2013-
|
|
138
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
139
139
|
*/
|
|
140
140
|
:root {
|
|
141
141
|
--jd-switche-width: 60px;
|
|
@@ -351,7 +351,7 @@ input:focus + .jodi-switcher__slider {
|
|
|
351
351
|
/*!
|
|
352
352
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
353
353
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
354
|
-
* Copyright (c) 2013-
|
|
354
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
355
355
|
*/
|
|
356
356
|
.jodit-button-group {
|
|
357
357
|
display: flex;
|
|
@@ -391,7 +391,7 @@ input:focus + .jodi-switcher__slider {
|
|
|
391
391
|
/*!
|
|
392
392
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
393
393
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
394
|
-
* Copyright (c) 2013-
|
|
394
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
395
395
|
*/
|
|
396
396
|
.jodit_text_icons .jodit_icon {
|
|
397
397
|
width: auto;
|
|
@@ -421,7 +421,7 @@ input:focus + .jodi-switcher__slider {
|
|
|
421
421
|
/*!
|
|
422
422
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
423
423
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
424
|
-
* Copyright (c) 2013-
|
|
424
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
425
425
|
*/
|
|
426
426
|
.jodit-grid {
|
|
427
427
|
display: flex;
|
|
@@ -555,7 +555,7 @@ input:focus + .jodi-switcher__slider {
|
|
|
555
555
|
/*!
|
|
556
556
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
557
557
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
558
|
-
* Copyright (c) 2013-
|
|
558
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
559
559
|
*/
|
|
560
560
|
@keyframes rotate {
|
|
561
561
|
to {
|
|
@@ -595,7 +595,7 @@ svg.jodit-icon {
|
|
|
595
595
|
/*!
|
|
596
596
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
597
597
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
598
|
-
* Copyright (c) 2013-
|
|
598
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
599
599
|
*/
|
|
600
600
|
.jodit,
|
|
601
601
|
.jodit-container,
|
|
@@ -657,7 +657,7 @@ svg.jodit-icon {
|
|
|
657
657
|
/*!
|
|
658
658
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
659
659
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
660
|
-
* Copyright (c) 2013-
|
|
660
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
661
661
|
*/
|
|
662
662
|
.jodit-dialog_theme_dark,
|
|
663
663
|
.jodit_theme_dark {
|
|
@@ -826,7 +826,7 @@ svg.jodit-icon {
|
|
|
826
826
|
/*!
|
|
827
827
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
828
828
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
829
|
-
* Copyright (c) 2013-
|
|
829
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
830
830
|
*/
|
|
831
831
|
.jodit-ui-button-icon-text__icon {
|
|
832
832
|
display: none;
|
|
@@ -1450,7 +1450,35 @@ svg.jodit-icon {
|
|
|
1450
1450
|
/*!
|
|
1451
1451
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1452
1452
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1453
|
-
* Copyright (c) 2013-
|
|
1453
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1454
|
+
*/
|
|
1455
|
+
.jodit-ui-group {
|
|
1456
|
+
display: inline-flex;
|
|
1457
|
+
max-width: 100%;
|
|
1458
|
+
flex: 0 0 auto;
|
|
1459
|
+
flex-shrink: 0;
|
|
1460
|
+
flex-wrap: wrap;
|
|
1461
|
+
}
|
|
1462
|
+
.jodit-ui-group_line_true {
|
|
1463
|
+
display: flex;
|
|
1464
|
+
justify-content: stretch;
|
|
1465
|
+
}
|
|
1466
|
+
.jodit-ui-group_separated_true:not(:last-child):not(.jodit-ui-group_before-spacer_true):after {
|
|
1467
|
+
content: '';
|
|
1468
|
+
padding: 0;
|
|
1469
|
+
border-right: 1px solid var(--jd-color-border);
|
|
1470
|
+
border-left: 0;
|
|
1471
|
+
margin: 2px 2px;
|
|
1472
|
+
cursor: default;
|
|
1473
|
+
}
|
|
1474
|
+
.jodit-ui-group:last-child {
|
|
1475
|
+
border-bottom: 0;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
/*!
|
|
1479
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1480
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1481
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1454
1482
|
*/
|
|
1455
1483
|
.jodit-ui-list {
|
|
1456
1484
|
display: flex;
|
|
@@ -1491,34 +1519,6 @@ svg.jodit-icon {
|
|
|
1491
1519
|
flex: 1;
|
|
1492
1520
|
}
|
|
1493
1521
|
|
|
1494
|
-
/*!
|
|
1495
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1496
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1497
|
-
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1498
|
-
*/
|
|
1499
|
-
.jodit-ui-group {
|
|
1500
|
-
display: inline-flex;
|
|
1501
|
-
max-width: 100%;
|
|
1502
|
-
flex: 0 0 auto;
|
|
1503
|
-
flex-shrink: 0;
|
|
1504
|
-
flex-wrap: wrap;
|
|
1505
|
-
}
|
|
1506
|
-
.jodit-ui-group_line_true {
|
|
1507
|
-
display: flex;
|
|
1508
|
-
justify-content: stretch;
|
|
1509
|
-
}
|
|
1510
|
-
.jodit-ui-group_separated_true:not(:last-child):not(.jodit-ui-group_before-spacer_true):after {
|
|
1511
|
-
content: '';
|
|
1512
|
-
padding: 0;
|
|
1513
|
-
border-right: 1px solid var(--jd-color-border);
|
|
1514
|
-
border-left: 0;
|
|
1515
|
-
margin: 2px 2px;
|
|
1516
|
-
cursor: default;
|
|
1517
|
-
}
|
|
1518
|
-
.jodit-ui-group:last-child {
|
|
1519
|
-
border-bottom: 0;
|
|
1520
|
-
}
|
|
1521
|
-
|
|
1522
1522
|
.jodit-ui-button-group {
|
|
1523
1523
|
margin-bottom: var(--jd-padding-default);
|
|
1524
1524
|
}
|
|
@@ -1555,7 +1555,7 @@ svg.jodit-icon {
|
|
|
1555
1555
|
/*!
|
|
1556
1556
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1557
1557
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1558
|
-
* Copyright (c) 2013-
|
|
1558
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1559
1559
|
*/
|
|
1560
1560
|
:root {
|
|
1561
1561
|
--jd-popup-box-shadow: 0 4px 1px -2px rgba(76, 76, 76, 0.2),
|
|
@@ -2038,7 +2038,7 @@ svg.jodit-icon {
|
|
|
2038
2038
|
/*!
|
|
2039
2039
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2040
2040
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2041
|
-
* Copyright (c) 2013-
|
|
2041
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2042
2042
|
*/
|
|
2043
2043
|
@keyframes pulse {
|
|
2044
2044
|
30% {
|
|
@@ -2093,7 +2093,7 @@ svg.jodit-icon {
|
|
|
2093
2093
|
/*!
|
|
2094
2094
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2095
2095
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2096
|
-
* Copyright (c) 2013-
|
|
2096
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2097
2097
|
*/
|
|
2098
2098
|
.jodit-context-menu {
|
|
2099
2099
|
position: static;
|
|
@@ -2145,7 +2145,7 @@ svg.jodit-icon {
|
|
|
2145
2145
|
/*!
|
|
2146
2146
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2147
2147
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2148
|
-
* Copyright (c) 2013-
|
|
2148
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2149
2149
|
*/
|
|
2150
2150
|
.jodit-dialog {
|
|
2151
2151
|
font-family: var(--jd-font-default);
|
|
@@ -2415,7 +2415,7 @@ svg.jodit-icon {
|
|
|
2415
2415
|
/*!
|
|
2416
2416
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2417
2417
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2418
|
-
* Copyright (c) 2013-
|
|
2418
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2419
2419
|
*/
|
|
2420
2420
|
.jodit-toolbar__box:not(:empty) {
|
|
2421
2421
|
--jd-color-background-default: var(--jd-color-panel);
|
|
@@ -2428,7 +2428,7 @@ svg.jodit-icon {
|
|
|
2428
2428
|
/*!
|
|
2429
2429
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2430
2430
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2431
|
-
* Copyright (c) 2013-
|
|
2431
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2432
2432
|
*/
|
|
2433
2433
|
.jodit-toolbar-collection,
|
|
2434
2434
|
.jodit-toolbar-editor-collection {
|
|
@@ -2538,7 +2538,7 @@ svg.jodit-icon {
|
|
|
2538
2538
|
/*!
|
|
2539
2539
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2540
2540
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2541
|
-
* Copyright (c) 2013-
|
|
2541
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2542
2542
|
*/
|
|
2543
2543
|
.jodit-toolbar-button {
|
|
2544
2544
|
display: flex;
|
|
@@ -2771,7 +2771,7 @@ svg.jodit-icon {
|
|
|
2771
2771
|
/*!
|
|
2772
2772
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2773
2773
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2774
|
-
* Copyright (c) 2013-
|
|
2774
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2775
2775
|
*/
|
|
2776
2776
|
.jodit-toolbar-content {
|
|
2777
2777
|
position: relative;
|
|
@@ -3093,12 +3093,12 @@ svg.jodit-icon {
|
|
|
3093
3093
|
/*!
|
|
3094
3094
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3095
3095
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3096
|
-
* Copyright (c) 2013-
|
|
3096
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3097
3097
|
*/
|
|
3098
3098
|
/*!
|
|
3099
3099
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3100
3100
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3101
|
-
* Copyright (c) 2013-
|
|
3101
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3102
3102
|
*/
|
|
3103
3103
|
:root {
|
|
3104
3104
|
--jd-first_column: 31%;
|
|
@@ -3120,22 +3120,6 @@ svg.jodit-icon {
|
|
|
3120
3120
|
flex-flow: column-reverse;
|
|
3121
3121
|
}
|
|
3122
3122
|
}
|
|
3123
|
-
.jodit-filebrowser__loader {
|
|
3124
|
-
position: absolute;
|
|
3125
|
-
top: 0;
|
|
3126
|
-
left: 0;
|
|
3127
|
-
width: 100%;
|
|
3128
|
-
height: 100%;
|
|
3129
|
-
}
|
|
3130
|
-
.jodit-filebrowser__loader div {
|
|
3131
|
-
position: absolute;
|
|
3132
|
-
top: 50%;
|
|
3133
|
-
left: 50%;
|
|
3134
|
-
margin-top: calc(var(--jd-icon-loader-size) / -2);
|
|
3135
|
-
margin-left: calc(var(--jd-icon-loader-size) / -2);
|
|
3136
|
-
font-style: normal;
|
|
3137
|
-
opacity: 0.7;
|
|
3138
|
-
}
|
|
3139
3123
|
.jodit-filebrowser__status {
|
|
3140
3124
|
position: absolute;
|
|
3141
3125
|
right: 0;
|
|
@@ -3170,7 +3154,7 @@ svg.jodit-icon {
|
|
|
3170
3154
|
/*!
|
|
3171
3155
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3172
3156
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3173
|
-
* Copyright (c) 2013-
|
|
3157
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3174
3158
|
*/
|
|
3175
3159
|
.jodit-filebrowser-preview {
|
|
3176
3160
|
position: relative;
|
|
@@ -3231,7 +3215,7 @@ svg.jodit-icon {
|
|
|
3231
3215
|
/*!
|
|
3232
3216
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3233
3217
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3234
|
-
* Copyright (c) 2013-
|
|
3218
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3235
3219
|
*/
|
|
3236
3220
|
:root {
|
|
3237
3221
|
--jd-image_editor_resizer_border_color: #05ff00;
|
|
@@ -3422,6 +3406,31 @@ svg.jodit-icon {
|
|
|
3422
3406
|
.jodit-filebrowser-files .jodit-button {
|
|
3423
3407
|
border-radius: 0;
|
|
3424
3408
|
}
|
|
3409
|
+
.jodit-filebrowser-files_loading_true:before {
|
|
3410
|
+
position: absolute;
|
|
3411
|
+
top: 0;
|
|
3412
|
+
left: 0;
|
|
3413
|
+
width: 100%;
|
|
3414
|
+
height: 100%;
|
|
3415
|
+
content: '';
|
|
3416
|
+
}
|
|
3417
|
+
.jodit-filebrowser-files_loading_true:after {
|
|
3418
|
+
position: absolute;
|
|
3419
|
+
top: 50%;
|
|
3420
|
+
left: 50%;
|
|
3421
|
+
margin-top: calc(var(--jd-icon-loader-size) / -2);
|
|
3422
|
+
margin-left: calc(var(--jd-icon-loader-size) / -2);
|
|
3423
|
+
content: '';
|
|
3424
|
+
opacity: 0.7;
|
|
3425
|
+
display: inline-block;
|
|
3426
|
+
width: var(--jd-icon-loader-size);
|
|
3427
|
+
height: var(--jd-icon-loader-size);
|
|
3428
|
+
animation: rotate 2s ease-out 0s infinite;
|
|
3429
|
+
background: url(data:image/png;base64,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) no-repeat center;
|
|
3430
|
+
background-size: 100% 100%;
|
|
3431
|
+
vertical-align: middle;
|
|
3432
|
+
will-change: transform;
|
|
3433
|
+
}
|
|
3425
3434
|
.jodit-filebrowser-files_active_true {
|
|
3426
3435
|
display: flex;
|
|
3427
3436
|
}
|
|
@@ -3580,6 +3589,31 @@ svg.jodit-icon {
|
|
|
3580
3589
|
.jodit-filebrowser-tree_active_true {
|
|
3581
3590
|
display: flex;
|
|
3582
3591
|
}
|
|
3592
|
+
.jodit-filebrowser-tree_loading_true:before {
|
|
3593
|
+
position: absolute;
|
|
3594
|
+
top: 0;
|
|
3595
|
+
left: 0;
|
|
3596
|
+
width: 100%;
|
|
3597
|
+
height: 100%;
|
|
3598
|
+
content: '';
|
|
3599
|
+
}
|
|
3600
|
+
.jodit-filebrowser-tree_loading_true:after {
|
|
3601
|
+
position: absolute;
|
|
3602
|
+
top: 50%;
|
|
3603
|
+
left: 50%;
|
|
3604
|
+
margin-top: calc(var(--jd-icon-loader-size) / -2);
|
|
3605
|
+
margin-left: calc(var(--jd-icon-loader-size) / -2);
|
|
3606
|
+
content: '';
|
|
3607
|
+
opacity: 0.7;
|
|
3608
|
+
display: inline-block;
|
|
3609
|
+
width: var(--jd-icon-loader-size);
|
|
3610
|
+
height: var(--jd-icon-loader-size);
|
|
3611
|
+
animation: rotate 2s ease-out 0s infinite;
|
|
3612
|
+
background: url(data:image/png;base64,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) no-repeat center;
|
|
3613
|
+
background-size: 100% 100%;
|
|
3614
|
+
vertical-align: middle;
|
|
3615
|
+
will-change: transform;
|
|
3616
|
+
}
|
|
3583
3617
|
.jodit-filebrowser-tree::-webkit-scrollbar {
|
|
3584
3618
|
width: calc(var(--jd-padding-default) / 2);
|
|
3585
3619
|
}
|
|
@@ -3676,7 +3710,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
3676
3710
|
/*!
|
|
3677
3711
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3678
3712
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3679
|
-
* Copyright (c) 2013-
|
|
3713
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3680
3714
|
*/
|
|
3681
3715
|
.jodit-status-bar {
|
|
3682
3716
|
display: flex;
|
|
@@ -3746,7 +3780,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
3746
3780
|
/*!
|
|
3747
3781
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3748
3782
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3749
|
-
* Copyright (c) 2013-
|
|
3783
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3750
3784
|
*/
|
|
3751
3785
|
.jodit-drag-and-drop__file-box,
|
|
3752
3786
|
.jodit_uploadfile_button {
|
|
@@ -3786,7 +3820,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
3786
3820
|
/*!
|
|
3787
3821
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3788
3822
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3789
|
-
* Copyright (c) 2013-
|
|
3823
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3790
3824
|
*/
|
|
3791
3825
|
:root {
|
|
3792
3826
|
--jd-color-new-line: var(--jd-color-border);
|
|
@@ -3841,7 +3875,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
3841
3875
|
/*!
|
|
3842
3876
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3843
3877
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3844
|
-
* Copyright (c) 2013-
|
|
3878
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3845
3879
|
*/
|
|
3846
3880
|
.jodit-about {
|
|
3847
3881
|
padding: 20px;
|
|
@@ -3863,7 +3897,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
3863
3897
|
/*!
|
|
3864
3898
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3865
3899
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3866
|
-
* Copyright (c) 2013-
|
|
3900
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3867
3901
|
*/
|
|
3868
3902
|
.jodit-paste-storage {
|
|
3869
3903
|
max-width: 600px;
|
|
@@ -3915,7 +3949,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
3915
3949
|
/*!
|
|
3916
3950
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3917
3951
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3918
|
-
* Copyright (c) 2013-
|
|
3952
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3919
3953
|
*/
|
|
3920
3954
|
:root {
|
|
3921
3955
|
--jd-color-picker-cell-size: 24px;
|
|
@@ -3971,7 +4005,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
3971
4005
|
/*!
|
|
3972
4006
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3973
4007
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3974
|
-
* Copyright (c) 2013-
|
|
4008
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3975
4009
|
*/
|
|
3976
4010
|
.jodit-tabs {
|
|
3977
4011
|
font-family: var(--jd-font-default);
|
|
@@ -4026,7 +4060,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
4026
4060
|
/*!
|
|
4027
4061
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4028
4062
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4029
|
-
* Copyright (c) 2013-
|
|
4063
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4030
4064
|
*/
|
|
4031
4065
|
.jodit-jodit__error-box-for-messages {
|
|
4032
4066
|
position: absolute;
|
|
@@ -4068,7 +4102,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
4068
4102
|
/*!
|
|
4069
4103
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4070
4104
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4071
|
-
* Copyright (c) 2013-
|
|
4105
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4072
4106
|
*/
|
|
4073
4107
|
.jodit_fullsize-box_true {
|
|
4074
4108
|
position: static !important;
|
|
@@ -4077,7 +4111,7 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
4077
4111
|
}
|
|
4078
4112
|
html.jodit_fullsize-box_true,
|
|
4079
4113
|
body.jodit_fullsize-box_true {
|
|
4080
|
-
overflow:
|
|
4114
|
+
overflow: hidden !important;
|
|
4081
4115
|
width: 0 !important;
|
|
4082
4116
|
height: 0 !important;
|
|
4083
4117
|
}
|
|
@@ -4104,7 +4138,7 @@ html.jodit_fullsize-box_true {
|
|
|
4104
4138
|
/*!
|
|
4105
4139
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4106
4140
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4107
|
-
* Copyright (c) 2013-
|
|
4141
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4108
4142
|
*/
|
|
4109
4143
|
.jodit-properties__unlock > svg,
|
|
4110
4144
|
.jodit-properties__lock > svg {
|
|
@@ -4153,7 +4187,7 @@ html.jodit_fullsize-box_true {
|
|
|
4153
4187
|
/*!
|
|
4154
4188
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4155
4189
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4156
|
-
* Copyright (c) 2013-
|
|
4190
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4157
4191
|
*/
|
|
4158
4192
|
.jodit-popup-inline__container {
|
|
4159
4193
|
z-index: 1300;
|
|
@@ -4163,7 +4197,7 @@ html.jodit_fullsize-box_true {
|
|
|
4163
4197
|
/*!
|
|
4164
4198
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4165
4199
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4166
|
-
* Copyright (c) 2013-
|
|
4200
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4167
4201
|
*/
|
|
4168
4202
|
.jodit-placeholder {
|
|
4169
4203
|
position: absolute;
|
|
@@ -4181,7 +4215,7 @@ html.jodit_fullsize-box_true {
|
|
|
4181
4215
|
/*!
|
|
4182
4216
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4183
4217
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4184
|
-
* Copyright (c) 2013-
|
|
4218
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4185
4219
|
*/
|
|
4186
4220
|
:root {
|
|
4187
4221
|
--jd-viewer_width: 70px;
|
|
@@ -4281,7 +4315,7 @@ html.jodit_fullsize-box_true {
|
|
|
4281
4315
|
/*!
|
|
4282
4316
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4283
4317
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4284
|
-
* Copyright (c) 2013-
|
|
4318
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4285
4319
|
*/
|
|
4286
4320
|
:root {
|
|
4287
4321
|
--jd-height-search: 30px;
|
|
@@ -4402,7 +4436,7 @@ html.jodit_fullsize-box_true {
|
|
|
4402
4436
|
/*!
|
|
4403
4437
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4404
4438
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4405
|
-
* Copyright (c) 2013-
|
|
4439
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4406
4440
|
*/
|
|
4407
4441
|
.jodit-container:not(.jodit_inline) {
|
|
4408
4442
|
min-height: 100px;
|
|
@@ -4432,7 +4466,7 @@ html.jodit_fullsize-box_true {
|
|
|
4432
4466
|
/*!
|
|
4433
4467
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4434
4468
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4435
|
-
* Copyright (c) 2013-
|
|
4469
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4436
4470
|
*/
|
|
4437
4471
|
.jodit-source {
|
|
4438
4472
|
position: relative;
|
|
@@ -4493,7 +4527,7 @@ html.jodit_fullsize-box_true {
|
|
|
4493
4527
|
/*!
|
|
4494
4528
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4495
4529
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4496
|
-
* Copyright (c) 2013-
|
|
4530
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4497
4531
|
*/
|
|
4498
4532
|
.jodit_sticky-dummy_toolbar {
|
|
4499
4533
|
display: none;
|
|
@@ -4513,38 +4547,36 @@ html.jodit_fullsize-box_true {
|
|
|
4513
4547
|
/*!
|
|
4514
4548
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4515
4549
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4516
|
-
* Copyright (c) 2013-
|
|
4550
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4517
4551
|
*/
|
|
4518
4552
|
.jodit-symbols {
|
|
4519
4553
|
width: 460px;
|
|
4520
4554
|
padding: var(--jd-padding-default);
|
|
4521
4555
|
}
|
|
4522
|
-
.jodit-
|
|
4523
|
-
|
|
4524
|
-
display: inline-block;
|
|
4525
|
-
vertical-align: top;
|
|
4556
|
+
.jodit-symbols__container {
|
|
4557
|
+
display: flex;
|
|
4526
4558
|
}
|
|
4527
|
-
.jodit-
|
|
4559
|
+
.jodit-symbols__container_table {
|
|
4528
4560
|
width: 88%;
|
|
4529
4561
|
}
|
|
4530
|
-
.jodit-
|
|
4562
|
+
.jodit-symbols__container_preview {
|
|
4531
4563
|
width: 12%;
|
|
4532
4564
|
}
|
|
4533
|
-
.jodit-
|
|
4565
|
+
.jodit-symbols__preview {
|
|
4534
4566
|
padding: 20px 0;
|
|
4535
4567
|
border: 1px solid var(--jd-color-border);
|
|
4536
4568
|
font-size: 34px;
|
|
4537
4569
|
text-align: center;
|
|
4538
4570
|
}
|
|
4539
|
-
.jodit-
|
|
4571
|
+
.jodit-symbols__table {
|
|
4540
4572
|
border: 0;
|
|
4541
4573
|
border-spacing: 0;
|
|
4542
4574
|
table-layout: fixed;
|
|
4543
4575
|
}
|
|
4544
|
-
.jodit-
|
|
4576
|
+
.jodit-symbols__table td {
|
|
4545
4577
|
padding: 0;
|
|
4546
4578
|
}
|
|
4547
|
-
.jodit-
|
|
4579
|
+
.jodit-symbols__table td a {
|
|
4548
4580
|
display: inline-block;
|
|
4549
4581
|
width: calc(var(--jd-width_element_default) * 1.2);
|
|
4550
4582
|
height: calc(var(--jd-height_element_default) * 1.2);
|
|
@@ -4558,15 +4590,15 @@ html.jodit_fullsize-box_true {
|
|
|
4558
4590
|
text-decoration: none;
|
|
4559
4591
|
vertical-align: top;
|
|
4560
4592
|
}
|
|
4561
|
-
.jodit-
|
|
4562
|
-
.jodit-
|
|
4593
|
+
.jodit-symbols__table td a:hover,
|
|
4594
|
+
.jodit-symbols__table td a:focus {
|
|
4563
4595
|
outline: 2px solid var(--jd-color-border);
|
|
4564
4596
|
}
|
|
4565
4597
|
|
|
4566
4598
|
/*!
|
|
4567
4599
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4568
4600
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4569
|
-
* Copyright (c) 2013-
|
|
4601
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4570
4602
|
*/
|
|
4571
4603
|
.jodit-table-resizer {
|
|
4572
4604
|
position: absolute;
|
|
@@ -4660,7 +4692,7 @@ html.jodit_fullsize-box_true {
|
|
|
4660
4692
|
/*!
|
|
4661
4693
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4662
4694
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4663
|
-
* Copyright (c) 2013-
|
|
4695
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4664
4696
|
*/
|
|
4665
4697
|
.jodit-tooltip {
|
|
4666
4698
|
position: fixed;
|
|
@@ -4694,7 +4726,7 @@ html.jodit_fullsize-box_true {
|
|
|
4694
4726
|
/*!
|
|
4695
4727
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4696
4728
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4697
|
-
* Copyright (c) 2013-
|
|
4729
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4698
4730
|
*/
|
|
4699
4731
|
.jodit-xpath {
|
|
4700
4732
|
display: flex;
|