jodit 3.20.2 → 3.20.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/build/jodit.css +211 -237
- package/build/jodit.es2018.css +160 -161
- package/build/jodit.es2018.en.css +160 -161
- package/build/jodit.es2018.en.js +257 -120
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +283 -137
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +240 -129
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/build/plugins/debug/debug.es2018.en.js +1 -1
- package/build/plugins/debug/debug.es2018.js +1 -1
- package/build/plugins/debug/debug.js +1 -1
- package/build/plugins/speech-recognize/speech-recognize.css +1 -1
- package/build/plugins/speech-recognize/speech-recognize.es2018.css +1 -1
- package/build/plugins/speech-recognize/speech-recognize.es2018.en.css +1 -1
- package/build/plugins/speech-recognize/speech-recognize.es2018.en.js +1 -1
- package/build/plugins/speech-recognize/speech-recognize.es2018.js +1 -1
- package/build/plugins/speech-recognize/speech-recognize.js +1 -1
- package/build/vdom.css +1 -1
- package/build/vdom.js +46 -1
- package/package.json +28 -24
- package/src/README.md +2 -0
- package/src/config.ts +12 -0
- package/src/core/async/README.md +2 -0
- package/src/core/async/async.test.js +183 -0
- package/src/core/async/async.ts +21 -2
- package/src/core/component/README.md +2 -0
- package/src/core/create/README.md +2 -0
- package/src/core/decorators/cache/README.md +2 -0
- package/src/core/decorators/component/README.md +2 -0
- package/src/core/decorators/debounce/README.md +2 -0
- package/src/core/decorators/hook/README.md +2 -0
- package/src/core/decorators/idle/README.md +2 -0
- package/src/core/decorators/nonenumerable/README.md +2 -0
- package/src/core/decorators/persistent/README.md +2 -0
- package/src/core/decorators/wait/README.md +2 -0
- package/src/core/decorators/watch/README.md +2 -0
- package/src/core/dom/README.md +2 -0
- package/src/core/event-emitter/README.md +2 -0
- package/src/core/helpers/README.md +2 -0
- package/src/core/plugin/README.md +2 -0
- package/src/core/request/README.md +2 -0
- package/src/core/selection/README.md +2 -0
- package/src/core/storage/README.md +2 -0
- package/src/core/vdom/README.md +2 -0
- package/src/core/view/README.md +2 -0
- package/src/core/view/view.ts +9 -1
- package/src/index.ts +7 -4
- package/src/jodit.ts +4 -2
- package/src/langs/index.ts +7 -4
- package/{types/types/core.ts → src/langs/keys.js} +1 -10
- package/src/modules/README.md +1 -1
- package/src/modules/dialog/README.md +2 -0
- package/src/modules/dialog/dialog.test.screenshot.js +55 -0
- package/src/modules/file-browser/README.md +12 -4
- package/src/modules/file-browser/builders/item.ts +1 -0
- package/src/modules/file-browser/file-browser.test.screenshot.js +1 -1
- package/src/modules/file-browser/file-browser.ts +4 -23
- package/src/modules/file-browser/styles/file-browser.less +0 -26
- package/src/modules/image-editor/README.md +1 -1
- package/src/modules/image-editor/image-editor.test.screenshot.js +1 -1
- package/src/modules/index.ts +1 -0
- package/src/modules/messages/README.md +33 -0
- package/src/modules/messages/message.ts +30 -0
- package/src/modules/messages/messages.less +71 -0
- package/src/modules/messages/messages.test.js +93 -0
- package/src/modules/messages/messages.test.screenshot.js +25 -0
- package/src/modules/messages/messages.ts +156 -0
- package/src/modules/uploader/README.md +2 -0
- package/src/plugins/color/color.test.screenshot.js +26 -0
- package/src/plugins/image-properties/image-properties.test.screenshot.js +27 -0
- package/src/plugins/index.ts +0 -1
- package/src/plugins/limit/README.md +39 -14
- package/src/plugins/limit/limit.test.js +30 -4
- package/src/plugins/limit/limit.ts +28 -21
- package/src/plugins/link/README.md +1 -1
- package/src/plugins/link/link.test.screenshot.js +26 -0
- package/src/plugins/search/search.test.screenshot.js +38 -0
- package/src/plugins/symbols/symbols.test.screenshot.js +25 -0
- package/src/styles/icons/README.md +2 -0
- package/src/styles/variables.less +7 -3
- package/src/types/async.d.ts +9 -2
- package/src/types/{core.ts → core.d.ts} +0 -0
- package/src/types/file-browser.d.ts +15 -0
- package/src/types/index.d.ts +1 -0
- package/src/types/messages.d.ts +10 -0
- package/src/types/view.d.ts +3 -0
- package/tsconfig.json +3 -0
- package/types/config.d.ts +0 -506
- package/types/core/async/async.d.ts +6 -34
- package/types/core/async/index.d.ts +0 -3
- package/types/core/component/component.d.ts +0 -81
- package/types/core/component/index.d.ts +0 -3
- package/types/core/component/statuses.d.ts +0 -3
- package/types/core/component/view-component.d.ts +0 -13
- package/types/core/constants.d.ts +0 -60
- package/types/core/create/create.d.ts +0 -32
- package/types/core/create/index.d.ts +0 -3
- package/types/core/decorators/component/component.d.ts +0 -9
- package/types/core/decorators/debounce/debounce.d.ts +0 -8
- package/types/core/decorators/hook/hook.d.ts +0 -8
- package/types/core/decorators/idle/idle.d.ts +0 -5
- package/types/core/decorators/index.d.ts +0 -5
- package/types/core/decorators/nonenumerable/nonenumerable.d.ts +0 -5
- package/types/core/decorators/persistent/persistent.d.ts +0 -5
- package/types/core/decorators/wait/wait.d.ts +0 -5
- package/types/core/decorators/watch/watch.d.ts +0 -8
- package/types/core/dom/dom.d.ts +0 -171
- package/types/core/dom/index.d.ts +0 -3
- package/types/core/dom/lazy-walker.d.ts +0 -3
- package/types/core/event-emitter/event-emitter.d.ts +0 -99
- package/types/core/event-emitter/eventify.d.ts +0 -25
- package/types/core/event-emitter/index.d.ts +0 -3
- package/types/core/event-emitter/observable.d.ts +0 -38
- package/types/core/event-emitter/store.d.ts +0 -3
- package/types/core/global.d.ts +0 -12
- package/types/core/helpers/array/as-array.d.ts +0 -3
- package/types/core/helpers/array/index.d.ts +0 -3
- package/types/core/helpers/array/split-array.d.ts +0 -6
- package/types/core/helpers/array/to-array.d.ts +0 -4
- package/types/core/helpers/async/index.d.ts +0 -3
- package/types/core/helpers/async/set-timeout.d.ts +0 -9
- package/types/core/helpers/checker/has-browser-color-picker.d.ts +0 -6
- package/types/core/helpers/checker/index.d.ts +0 -3
- package/types/core/helpers/checker/is-array.d.ts +0 -6
- package/types/core/helpers/checker/is-boolean.d.ts +0 -3
- package/types/core/helpers/checker/is-equal.d.ts +0 -3
- package/types/core/helpers/checker/is-function.d.ts +0 -6
- package/types/core/helpers/checker/is-html-from-word.d.ts +0 -6
- package/types/core/helpers/checker/is-html.d.ts +0 -3
- package/types/core/helpers/checker/is-imp-interface.d.ts +0 -12
- package/types/core/helpers/checker/is-int.d.ts +0 -3
- package/types/core/helpers/checker/is-jodit-object.d.ts +0 -6
- package/types/core/helpers/checker/is-native-function.d.ts +0 -6
- package/types/core/helpers/checker/is-number.d.ts +0 -6
- package/types/core/helpers/checker/is-numeric.d.ts +0 -3
- package/types/core/helpers/checker/is-plain-object.d.ts +0 -6
- package/types/core/helpers/checker/is-promise.d.ts +0 -3
- package/types/core/helpers/checker/is-string.d.ts +0 -6
- package/types/core/helpers/checker/is-url.d.ts +0 -6
- package/types/core/helpers/checker/is-valid-name.d.ts +0 -6
- package/types/core/helpers/checker/is-view-object.d.ts +0 -6
- package/types/core/helpers/checker/is-void.d.ts +0 -6
- package/types/core/helpers/checker/is-window.d.ts +0 -3
- package/types/core/helpers/color/color-to-hex.d.ts +0 -16
- package/types/core/helpers/color/index.d.ts +0 -3
- package/types/core/helpers/html/apply-styles.d.ts +0 -5
- package/types/core/helpers/html/clean-from-word.d.ts +0 -4
- package/types/core/helpers/html/htmlspecialchars.d.ts +0 -6
- package/types/core/helpers/html/index.d.ts +0 -3
- package/types/core/helpers/html/nl2br.d.ts +0 -6
- package/types/core/helpers/html/safe-html.d.ts +0 -3
- package/types/core/helpers/html/strip-tags.d.ts +0 -3
- package/types/core/helpers/index.d.ts +0 -5
- package/types/core/helpers/normalize/index.d.ts +0 -3
- package/types/core/helpers/normalize/normalize-color.d.ts +0 -6
- package/types/core/helpers/normalize/normalize-key-aliases.d.ts +0 -3
- package/types/core/helpers/normalize/normalize-license.d.ts +0 -3
- package/types/core/helpers/normalize/normalize-path.d.ts +0 -3
- package/types/core/helpers/normalize/normalize-relative-path.d.ts +0 -3
- package/types/core/helpers/normalize/normalize-size.d.ts +0 -6
- package/types/core/helpers/normalize/normalize-url.d.ts +0 -3
- package/types/core/helpers/size/get-content-width.d.ts +0 -3
- package/types/core/helpers/size/get-scroll-parent.d.ts +0 -3
- package/types/core/helpers/size/index.d.ts +0 -3
- package/types/core/helpers/size/inner-width.d.ts +0 -3
- package/types/core/helpers/size/offset.d.ts +0 -7
- package/types/core/helpers/size/position.d.ts +0 -3
- package/types/core/helpers/string/camel-case.d.ts +0 -6
- package/types/core/helpers/string/fuzzy-search-index.d.ts +0 -4
- package/types/core/helpers/string/i18n.d.ts +0 -31
- package/types/core/helpers/string/index.d.ts +0 -3
- package/types/core/helpers/string/kebab-case.d.ts +0 -3
- package/types/core/helpers/string/stringify.d.ts +0 -3
- package/types/core/helpers/string/trim.d.ts +0 -7
- package/types/core/helpers/string/ucfirst.d.ts +0 -6
- package/types/core/helpers/utils/align.d.ts +0 -12
- package/types/core/helpers/utils/append-script.d.ts +0 -12
- package/types/core/helpers/utils/assert.d.ts +0 -1
- package/types/core/helpers/utils/browser.d.ts +0 -14
- package/types/core/helpers/utils/build-query.d.ts +0 -6
- package/types/core/helpers/utils/complete-url.d.ts +0 -3
- package/types/core/helpers/utils/config-proto.d.ts +0 -33
- package/types/core/helpers/utils/convert-media-url-to-video-embed.d.ts +0 -3
- package/types/core/helpers/utils/css.d.ts +0 -6
- package/types/core/helpers/utils/ctrl-key.d.ts +0 -7
- package/types/core/helpers/utils/data-bind.d.ts +0 -3
- package/types/core/helpers/utils/default-language.d.ts +0 -3
- package/types/core/helpers/utils/error/error.d.ts +0 -3
- package/types/core/helpers/utils/error/errors/abort-error.d.ts +0 -3
- package/types/core/helpers/utils/error/errors/connection-error.d.ts +0 -3
- package/types/core/helpers/utils/error/errors/index.d.ts +0 -3
- package/types/core/helpers/utils/error/errors/options-error.d.ts +0 -3
- package/types/core/helpers/utils/error/index.d.ts +0 -3
- package/types/core/helpers/utils/get-class-name.d.ts +0 -3
- package/types/core/helpers/utils/get.d.ts +0 -22
- package/types/core/helpers/utils/human-size-to-bytes.d.ts +0 -7
- package/types/core/helpers/utils/index.d.ts +0 -3
- package/types/core/helpers/utils/mark-deprecated.d.ts +0 -10
- package/types/core/helpers/utils/parse-query.d.ts +0 -6
- package/types/core/helpers/utils/print.d.ts +0 -9
- package/types/core/helpers/utils/reset.d.ts +0 -10
- package/types/core/helpers/utils/scroll-into-view.d.ts +0 -3
- package/types/core/helpers/utils/selector.d.ts +0 -29
- package/types/core/helpers/utils/set.d.ts +0 -16
- package/types/core/helpers/utils/stack.d.ts +0 -3
- package/types/core/helpers/utils/utils.d.ts +0 -36
- package/types/core/helpers/utils/val.d.ts +0 -3
- package/types/core/plugin/index.d.ts +0 -3
- package/types/core/plugin/plugin-system.d.ts +0 -48
- package/types/core/plugin/plugin.d.ts +0 -10
- package/types/core/request/ajax.d.ts +0 -8
- package/types/core/request/config.d.ts +0 -6
- package/types/core/request/index.d.ts +0 -3
- package/types/core/request/response.d.ts +0 -3
- package/types/core/selection/helpers/index.d.ts +0 -3
- package/types/core/selection/helpers/move-node-inside-start.d.ts +0 -7
- package/types/core/selection/index.d.ts +0 -3
- package/types/core/selection/select.d.ts +0 -180
- package/types/core/selection/style/api/element-has-same-style.d.ts +0 -7
- package/types/core/selection/style/api/extract.d.ts +0 -16
- package/types/core/selection/style/api/finite-state-machine.d.ts +0 -3
- package/types/core/selection/style/api/get-suit-child.d.ts +0 -8
- package/types/core/selection/style/api/get-suit-parent.d.ts +0 -8
- package/types/core/selection/style/api/is-inside-invisible-element.d.ts +0 -4
- package/types/core/selection/style/api/is-normal-node.d.ts +0 -4
- package/types/core/selection/style/api/is-suit-element.d.ts +0 -24
- package/types/core/selection/style/api/toggle/toggle-css.d.ts +0 -4
- package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +0 -4
- package/types/core/selection/style/api/toggle-commit-styles.d.ts +0 -5
- package/types/core/selection/style/api/unwrap-children.d.ts +0 -4
- package/types/core/selection/style/api/wrap-and-commit-style.d.ts +0 -4
- package/types/core/selection/style/api/wrap-ordered-list.d.ts +0 -5
- package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +0 -4
- package/types/core/selection/style/apply-style.d.ts +0 -3
- package/types/core/selection/style/commit-style.d.ts +0 -9
- package/types/core/storage/engines/local-storage-provider.d.ts +0 -9
- package/types/core/storage/engines/memory-storage-provider.d.ts +0 -3
- package/types/core/storage/index.d.ts +0 -3
- package/types/core/storage/storage.d.ts +0 -5
- package/types/core/traits/dlgs.d.ts +0 -3
- package/types/core/traits/elms.d.ts +0 -9
- package/types/core/traits/index.d.ts +0 -3
- package/types/core/traits/mods.d.ts +0 -11
- package/types/core/ui/button/button/button.d.ts +0 -32
- package/types/core/ui/button/group/group.d.ts +0 -6
- package/types/core/ui/button/index.d.ts +0 -5
- package/types/core/ui/button/tooltip/tooltip.d.ts +0 -8
- package/types/core/ui/element.d.ts +0 -27
- package/types/core/ui/form/block/block.d.ts +0 -4
- package/types/core/ui/form/form.d.ts +0 -7
- package/types/core/ui/form/index.d.ts +0 -3
- package/types/core/ui/form/inputs/area/area.d.ts +0 -7
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +0 -8
- package/types/core/ui/form/inputs/file/file.d.ts +0 -4
- package/types/core/ui/form/inputs/index.d.ts +0 -3
- package/types/core/ui/form/inputs/input/input.d.ts +0 -18
- package/types/core/ui/form/inputs/select/select.d.ts +0 -10
- package/types/core/ui/form/validators/index.d.ts +0 -3
- package/types/core/ui/form/validators/input.d.ts +0 -9
- package/types/core/ui/form/validators/select.d.ts +0 -6
- package/types/core/ui/group/group.d.ts +0 -32
- package/types/core/ui/group/index.d.ts +0 -3
- package/types/core/ui/group/list.d.ts +0 -16
- package/types/core/ui/group/separator.d.ts +0 -3
- package/types/core/ui/group/spacer.d.ts +0 -3
- package/types/core/ui/helpers/buttons.d.ts +0 -3
- package/types/core/ui/helpers/get-control-type.d.ts +0 -6
- package/types/core/ui/helpers/get-strong-control-types.d.ts +0 -3
- package/types/core/ui/icon.d.ts +0 -15
- package/types/core/ui/index.d.ts +0 -5
- package/types/core/ui/popup/index.d.ts +0 -3
- package/types/core/ui/popup/popup.d.ts +0 -35
- package/types/core/ui/progress-bar/progress-bar.d.ts +0 -10
- package/types/core/vdom/helpers/index.d.ts +9 -0
- package/types/core/vdom/index.d.ts +8 -0
- package/types/core/vdom/interface.d.ts +48 -0
- package/types/core/vdom/render/index.d.ts +23 -0
- package/types/core/vdom/v-dom-jodit.d.ts +15 -0
- package/types/core/view/view-with-toolbar.d.ts +0 -22
- package/types/core/view/view.d.ts +2 -65
- package/types/index.d.ts +1 -6
- package/types/jodit.d.ts +5 -257
- package/types/langs/index.d.ts +0 -5
- package/types/modules/context-menu/context-menu.d.ts +0 -20
- package/types/modules/dialog/alert.d.ts +0 -17
- package/types/modules/dialog/confirm.d.ts +0 -17
- package/types/modules/dialog/dialog.d.ts +0 -115
- package/types/modules/dialog/index.d.ts +0 -5
- package/types/modules/dialog/prompt.d.ts +0 -20
- package/types/modules/file-browser/builders/context-menu.d.ts +0 -3
- package/types/modules/file-browser/builders/elements-map.d.ts +0 -6
- package/types/modules/file-browser/builders/item.d.ts +0 -3
- package/types/modules/file-browser/data-provider.d.ts +0 -69
- package/types/modules/file-browser/factories.d.ts +0 -3
- package/types/modules/file-browser/fetch/delete-file.d.ts +0 -6
- package/types/modules/file-browser/fetch/load-items.d.ts +0 -6
- package/types/modules/file-browser/fetch/load-tree.d.ts +0 -6
- package/types/modules/file-browser/file-browser.d.ts +0 -36
- package/types/modules/file-browser/index.d.ts +0 -5
- package/types/modules/file-browser/listeners/native-listeners.d.ts +0 -3
- package/types/modules/file-browser/listeners/self-listeners.d.ts +0 -3
- package/types/modules/file-browser/listeners/state-listeners.d.ts +0 -6
- package/types/modules/file-browser/ui/index.d.ts +0 -3
- package/types/modules/history/command.d.ts +0 -3
- package/types/modules/history/history.d.ts +0 -30
- package/types/modules/history/snapshot.d.ts +0 -40
- package/types/modules/history/stack.d.ts +0 -3
- package/types/modules/image-editor/image-editor.d.ts +1 -54
- package/types/modules/image-editor/templates/form.d.ts +0 -3
- package/types/modules/index.d.ts +1 -5
- package/types/modules/messages/message.d.ts +14 -0
- package/types/modules/messages/messages.d.ts +27 -0
- package/types/modules/status-bar/status-bar.d.ts +0 -20
- package/types/modules/table/table.d.ts +0 -57
- package/types/modules/toolbar/button/button.d.ts +1 -41
- package/types/modules/toolbar/button/content.d.ts +0 -6
- package/types/modules/toolbar/button/index.d.ts +0 -3
- package/types/modules/toolbar/collection/collection.d.ts +0 -23
- package/types/modules/toolbar/collection/editor-collection.d.ts +0 -19
- package/types/modules/toolbar/factory.d.ts +0 -11
- package/types/modules/uploader/config.d.ts +0 -6
- package/types/modules/uploader/helpers/build-data.d.ts +0 -3
- package/types/modules/uploader/helpers/data-uri-to-blob.d.ts +0 -6
- package/types/modules/uploader/helpers/index.d.ts +0 -3
- package/types/modules/uploader/helpers/process-old-browser-drag.d.ts +0 -3
- package/types/modules/uploader/helpers/send-files.d.ts +0 -6
- package/types/modules/uploader/helpers/send.d.ts +0 -3
- package/types/modules/uploader/uploader.d.ts +0 -35
- package/types/modules/widget/color-picker/color-picker.d.ts +0 -22
- package/types/modules/widget/file-selector/file-selector.d.ts +0 -41
- package/types/modules/widget/index.d.ts +0 -5
- package/types/modules/widget/tabs/tabs.d.ts +0 -22
- package/types/plugins/about/about.d.ts +0 -5
- package/types/plugins/add-new-line/add-new-line.d.ts +0 -9
- package/types/plugins/add-new-line/config.d.ts +0 -22
- package/types/plugins/backspace/backspace.d.ts +0 -14
- package/types/plugins/backspace/cases/check-join-neighbors.d.ts +0 -6
- package/types/plugins/backspace/cases/check-join-two-lists.d.ts +0 -16
- package/types/plugins/backspace/cases/check-not-collapsed.d.ts +0 -16
- package/types/plugins/backspace/cases/check-remove-char.d.ts +0 -16
- package/types/plugins/backspace/cases/check-remove-content-not-editable.d.ts +0 -7
- package/types/plugins/backspace/cases/check-remove-empty-neighbor.d.ts +0 -16
- package/types/plugins/backspace/cases/check-remove-empty-parent.d.ts +0 -17
- package/types/plugins/backspace/cases/check-remove-unbreakable-element.d.ts +0 -17
- package/types/plugins/backspace/cases/check-table-cell.d.ts +0 -17
- package/types/plugins/backspace/cases/check-unwrap-first-list-item.d.ts +0 -17
- package/types/plugins/backspace/cases/index.d.ts +1 -1
- package/types/plugins/backspace/helpers.d.ts +0 -7
- package/types/plugins/bold/bold.d.ts +0 -8
- package/types/plugins/class-span/class-span.d.ts +0 -27
- package/types/plugins/clean-html/clean-html.d.ts +0 -17
- package/types/plugins/clean-html/config.d.ts +0 -73
- package/types/plugins/clean-html/helpers/get-hash.d.ts +0 -6
- package/types/plugins/clean-html/helpers/index.d.ts +0 -3
- package/types/plugins/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.d.ts +0 -10
- package/types/plugins/clean-html/helpers/remove-format/remove-format-for-selection.d.ts +0 -7
- package/types/plugins/clean-html/helpers/visitor/filters/allow-attributes.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/filters/fill-empty-paragraph.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/filters/index.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/filters/remove-empty-text-node.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/filters/remove-inv-text-nodes.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/filters/replace-old-tags.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/filters/sanitize-attributes.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/filters/try-remove-node.d.ts +0 -6
- package/types/plugins/clean-html/helpers/visitor/visit-node-walker.d.ts +0 -6
- package/types/plugins/clipboard/clipboard.d.ts +0 -10
- package/types/plugins/color/color.d.ts +0 -8
- package/types/plugins/copy-format/copy-format.d.ts +0 -5
- package/types/plugins/copy-format/langs/index.d.ts +25 -0
- package/types/plugins/debug/debug.d.ts +11 -0
- package/types/plugins/drag-and-drop/drag-and-drop.d.ts +0 -5
- package/types/plugins/drag-and-drop-element/config.d.ts +0 -3
- package/types/plugins/drag-and-drop-element/drag-and-drop-element.d.ts +0 -26
- package/types/plugins/dtd/after-insert/index.d.ts +0 -4
- package/types/plugins/dtd/after-insert/remove-extra-br.d.ts +0 -9
- package/types/plugins/dtd/before-insert/check-block-nesting.d.ts +0 -9
- package/types/plugins/dtd/before-insert/index.d.ts +0 -4
- package/types/plugins/dtd/config.d.ts +0 -12
- package/types/plugins/enter/enter.d.ts +0 -11
- package/types/plugins/enter/helpers/check-br.d.ts +0 -7
- package/types/plugins/enter/helpers/check-unsplittable-box.d.ts +0 -7
- package/types/plugins/enter/helpers/get-block-wrapper.d.ts +0 -7
- package/types/plugins/enter/helpers/has-previous-block.d.ts +0 -6
- package/types/plugins/enter/helpers/index.d.ts +0 -3
- package/types/plugins/enter/helpers/insert-paragraph.d.ts +0 -7
- package/types/plugins/enter/helpers/move-cursor-out-from-specal-tags.d.ts +0 -6
- package/types/plugins/enter/helpers/process-empty-li-leaf.d.ts +0 -7
- package/types/plugins/enter/helpers/split-fragment.d.ts +0 -8
- package/types/plugins/enter/helpers/wrap-text.d.ts +0 -8
- package/types/plugins/file/file.d.ts +0 -5
- package/types/plugins/focus/focus.d.ts +0 -5
- package/types/plugins/font/font.d.ts +0 -8
- package/types/plugins/format-block/format-block.d.ts +0 -8
- package/types/plugins/fullsize/config.d.ts +0 -22
- package/types/plugins/fullsize/fullsize.d.ts +0 -8
- package/types/plugins/hotkeys/config.d.ts +0 -3
- package/types/plugins/hotkeys/hotkeys.d.ts +0 -10
- package/types/plugins/hr/hr.d.ts +0 -5
- package/types/plugins/iframe/config.d.ts +0 -49
- package/types/plugins/iframe/iframe.d.ts +0 -9
- package/types/plugins/image/image.d.ts +0 -5
- package/types/plugins/image-processor/config.d.ts +0 -3
- package/types/plugins/image-processor/image-processor.d.ts +0 -8
- package/types/plugins/image-properties/config.d.ts +0 -42
- package/types/plugins/image-properties/image-properties.d.ts +0 -42
- package/types/plugins/image-properties/templates/form.d.ts +0 -3
- package/types/plugins/image-properties/templates/main-tab.d.ts +0 -3
- package/types/plugins/image-properties/templates/position-tab.d.ts +0 -3
- package/types/plugins/indent/config.d.ts +0 -3
- package/types/plugins/indent/helpers.d.ts +0 -4
- package/types/plugins/indent/indent.d.ts +0 -8
- package/types/plugins/index.d.ts +0 -6
- package/types/plugins/inline-popup/config/config.d.ts +0 -3
- package/types/plugins/inline-popup/config/items/a.d.ts +8 -0
- package/types/plugins/inline-popup/config/items/cells.d.ts +8 -0
- package/types/plugins/inline-popup/config/items/iframe.d.ts +8 -0
- package/types/plugins/inline-popup/config/items/img.d.ts +9 -0
- package/types/plugins/inline-popup/config/items/toolbar.d.ts +7 -0
- package/types/plugins/inline-popup/inline-popup.d.ts +0 -36
- package/types/plugins/justify/justify.d.ts +0 -8
- package/types/plugins/key-arrow-outside/key-arrow-outside.d.ts +0 -8
- package/types/plugins/limit/config.d.ts +0 -9
- package/types/plugins/limit/limit.d.ts +2 -23
- package/types/plugins/line-height/config.d.ts +0 -9
- package/types/plugins/line-height/langs/index.d.ts +25 -0
- package/types/plugins/line-height/line-height.d.ts +0 -5
- package/types/plugins/link/config.d.ts +0 -33
- package/types/plugins/link/link.d.ts +0 -11
- package/types/plugins/link/template.d.ts +0 -3
- package/types/plugins/media/config.d.ts +0 -9
- package/types/plugins/media/media.d.ts +0 -8
- package/types/plugins/mobile/config.d.ts +0 -6
- package/types/plugins/mobile/mobile.d.ts +0 -8
- package/types/plugins/ordered-list/ordered-list.d.ts +0 -8
- package/types/plugins/paste/config.d.ts +0 -19
- package/types/plugins/paste/helpers.d.ts +0 -12
- package/types/plugins/paste/interface.d.ts +0 -3
- package/types/plugins/paste/paste.d.ts +0 -31
- package/types/plugins/paste-from-word/config.d.ts +0 -21
- package/types/plugins/paste-from-word/paste-from-word.d.ts +0 -11
- package/types/plugins/paste-storage/paste-storage.d.ts +0 -8
- package/types/plugins/placeholder/config.d.ts +0 -31
- package/types/plugins/placeholder/placeholder.d.ts +0 -11
- package/types/plugins/powered-by-jodit/powered-by-jodit.d.ts +0 -8
- package/types/plugins/preview/preview.d.ts +0 -5
- package/types/plugins/print/lib/generate-critical-css.d.ts +0 -6
- package/types/plugins/print/print.d.ts +0 -5
- package/types/plugins/redo-undo/redo-undo.d.ts +0 -9
- package/types/plugins/resize-cells/resize-cells.d.ts +0 -42
- package/types/plugins/resize-handler/resize-handler.d.ts +0 -26
- package/types/plugins/resizer/config.d.ts +0 -31
- package/types/plugins/resizer/resizer.d.ts +0 -22
- package/types/plugins/search/config.d.ts +0 -21
- package/types/plugins/search/helpers/index.d.ts +0 -3
- package/types/plugins/search/helpers/sentence-finder.d.ts +0 -3
- package/types/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.d.ts +0 -3
- package/types/plugins/search/search.d.ts +0 -22
- package/types/plugins/search/ui/search.d.ts +0 -6
- package/types/plugins/select/config.d.ts +0 -8
- package/types/plugins/select/select.d.ts +0 -19
- package/types/plugins/select-cells/select-cells.d.ts +0 -34
- package/types/plugins/size/size.d.ts +0 -27
- package/types/plugins/source/config.d.ts +0 -25
- package/types/plugins/source/editor/engines/ace.d.ts +0 -6
- package/types/plugins/source/editor/engines/area.d.ts +0 -3
- package/types/plugins/source/editor/engines/index.d.ts +0 -3
- package/types/plugins/source/editor/factory.d.ts +0 -3
- package/types/plugins/source/editor/sourceEditor.d.ts +0 -6
- package/types/plugins/source/source.d.ts +0 -17
- package/types/plugins/speech-recognize/config.d.ts +19 -0
- package/types/plugins/speech-recognize/constants.d.ts +7 -0
- package/types/plugins/speech-recognize/helpers/api.d.ts +7 -0
- package/types/plugins/speech-recognize/helpers/exec-spell-command.d.ts +7 -0
- package/types/plugins/speech-recognize/helpers/recognize-manager.d.ts +45 -0
- package/types/plugins/speech-recognize/helpers/sound.d.ts +11 -0
- package/types/plugins/speech-recognize/interface.d.ts +30 -0
- package/types/plugins/speech-recognize/langs/index.d.ts +25 -0
- package/types/plugins/speech-recognize/speech-recognize.d.ts +19 -0
- package/types/plugins/spellcheck/config.d.ts +0 -4
- package/types/plugins/spellcheck/langs/index.d.ts +25 -0
- package/types/plugins/spellcheck/spellcheck.d.ts +0 -5
- package/types/plugins/stat/stat.d.ts +0 -5
- package/types/plugins/sticky/config.d.ts +0 -19
- package/types/plugins/sticky/sticky.d.ts +0 -18
- package/types/plugins/symbols/langs/index.d.ts +25 -0
- package/types/plugins/symbols/symbols.d.ts +0 -11
- package/types/plugins/tab/cases/index.d.ts +0 -3
- package/types/plugins/tab/cases/on-tab-inside-li.d.ts +0 -8
- package/types/plugins/tab/config.d.ts +0 -3
- package/types/plugins/table/table.d.ts +0 -5
- package/types/plugins/table-keyboard-navigation/table-keyboard-navigation.d.ts +0 -8
- package/types/plugins/wrap-nodes/config.d.ts +0 -3
- package/types/plugins/xpath/xpath.d.ts +0 -5
- package/types/polyfills.d.ts +10 -0
- package/types/styles/icons/index.d.ts +0 -5
- package/types/types/async.d.ts +9 -2
- package/types/types/core.d.ts +7 -1
- package/types/types/file-browser.d.ts +15 -0
- package/types/types/index.d.ts +1 -0
- package/types/types/jodit.d.ts +1 -1
- package/types/types/messages.d.ts +10 -0
- package/types/types/storage.d.ts +0 -3
- package/types/types/traits.d.ts +2 -2
- package/types/types/types.d.ts +2 -2
- package/types/types/uploader.d.ts +1 -1
- package/types/types/view.d.ts +3 -0
- package/src/modules/file-browser/__image_snapshots__/file-browser-test-screenshot-js-filebrowser-screenshot-testing-open-filebrowser-works-1-snap.png +0 -0
- package/src/modules/image-editor/__image_snapshots__/image-editor-test-screenshot-js-image-editor-screenshot-testing-open-image-editor-works-1-snap.png +0 -0
- package/src/plugins/error-messages/README.md +0 -10
- package/src/plugins/error-messages/error-messages.ts +0 -109
- package/src/plugins/error-messages/errors-messages.less +0 -49
- package/types/plugins/error-messages/error-messages.d.ts +0 -29
package/build/jodit.css
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.20.
|
|
4
|
+
* Version: v3.20.4
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
8
8
|
/*!
|
|
9
9
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
10
10
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
|
|
11
|
-
* Version: v3.20.
|
|
11
|
+
* Version: v3.20.4
|
|
12
12
|
* Url: https://xdsoft.net/jodit/
|
|
13
13
|
* License(s): MIT
|
|
14
14
|
*/
|
|
@@ -2394,180 +2394,42 @@ svg.jodit-icon {
|
|
|
2394
2394
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2395
2395
|
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2396
2396
|
*/
|
|
2397
|
-
.jodit-
|
|
2398
|
-
.jodit-toolbar-editor-collection {
|
|
2399
|
-
display: -webkit-box;
|
|
2400
|
-
display: -ms-flexbox;
|
|
2401
|
-
display: flex;
|
|
2402
|
-
-webkit-box-orient: vertical;
|
|
2403
|
-
-webkit-box-direction: normal;
|
|
2404
|
-
-ms-flex-direction: column;
|
|
2405
|
-
flex-direction: column;
|
|
2406
|
-
}
|
|
2407
|
-
.jodit-toolbar-collection_mode_horizontal {
|
|
2408
|
-
position: relative;
|
|
2409
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
2410
|
-
background-image: repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
2411
|
-
}
|
|
2412
|
-
.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2413
|
-
position: relative;
|
|
2414
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
2415
|
-
background-image: repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
2416
|
-
}
|
|
2417
|
-
.jodit-toolbar-collection_mode_horizontal:after {
|
|
2397
|
+
.jodit-ui-messages {
|
|
2418
2398
|
position: absolute;
|
|
2399
|
+
z-index: 3;
|
|
2400
|
+
right: 0;
|
|
2419
2401
|
bottom: 0;
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
height: 1px;
|
|
2424
|
-
background-color: #fff;
|
|
2425
|
-
content: '';
|
|
2402
|
+
overflow: visible;
|
|
2403
|
+
width: 0;
|
|
2404
|
+
height: 0;
|
|
2426
2405
|
}
|
|
2427
|
-
.jodit-
|
|
2406
|
+
.jodit-ui-message {
|
|
2428
2407
|
position: absolute;
|
|
2408
|
+
right: calc(8px / 2);
|
|
2429
2409
|
bottom: 0;
|
|
2430
|
-
left: 0;
|
|
2431
2410
|
display: block;
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
background
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
.jodit-toolbar-collection_size_tiny.jodit-toolbar-collection_mode_horizontal {
|
|
2438
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2439
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2440
|
-
}
|
|
2441
|
-
.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-collection_mode_horizontal {
|
|
2442
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2443
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2444
|
-
}
|
|
2445
|
-
.jodit-toolbar-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2446
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2447
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2448
|
-
}
|
|
2449
|
-
.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2450
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2451
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
2452
|
-
}
|
|
2453
|
-
.jodit-toolbar-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal {
|
|
2454
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2455
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2456
|
-
}
|
|
2457
|
-
.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal {
|
|
2458
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2459
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2460
|
-
}
|
|
2461
|
-
.jodit-toolbar-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2462
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2463
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2464
|
-
}
|
|
2465
|
-
.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2466
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2467
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
2468
|
-
}
|
|
2469
|
-
.jodit-toolbar-collection_size_small.jodit-toolbar-collection_mode_horizontal {
|
|
2470
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2471
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2472
|
-
}
|
|
2473
|
-
.jodit-toolbar-editor-collection_size_small.jodit-toolbar-collection_mode_horizontal {
|
|
2474
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2475
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2476
|
-
}
|
|
2477
|
-
.jodit-toolbar-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2478
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2479
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2480
|
-
}
|
|
2481
|
-
.jodit-toolbar-editor-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2482
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2483
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
2484
|
-
}
|
|
2485
|
-
.jodit-toolbar-collection_size_middle.jodit-toolbar-collection_mode_horizontal {
|
|
2486
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2487
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2488
|
-
}
|
|
2489
|
-
.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-collection_mode_horizontal {
|
|
2490
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2491
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2492
|
-
}
|
|
2493
|
-
.jodit-toolbar-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2494
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2495
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2496
|
-
}
|
|
2497
|
-
.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2498
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2499
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
2500
|
-
}
|
|
2501
|
-
.jodit-toolbar-collection_size_large.jodit-toolbar-collection_mode_horizontal {
|
|
2502
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2503
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2504
|
-
}
|
|
2505
|
-
.jodit-toolbar-editor-collection_size_large.jodit-toolbar-collection_mode_horizontal {
|
|
2506
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2507
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2508
|
-
}
|
|
2509
|
-
.jodit-toolbar-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2510
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2511
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2512
|
-
}
|
|
2513
|
-
.jodit-toolbar-editor-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal {
|
|
2514
|
-
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2515
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
2516
|
-
}
|
|
2517
|
-
.jodit-toolbar-collection_mode_vertical .jodit-ui-group,
|
|
2518
|
-
.jodit-toolbar-editor-collection_mode_vertical .jodit-ui-group {
|
|
2519
|
-
-webkit-box-orient: vertical;
|
|
2520
|
-
-webkit-box-direction: normal;
|
|
2521
|
-
-ms-flex-direction: column;
|
|
2522
|
-
flex-direction: column;
|
|
2523
|
-
border: 0;
|
|
2524
|
-
background-color: transparent;
|
|
2525
|
-
}
|
|
2526
|
-
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button {
|
|
2527
|
-
height: auto;
|
|
2528
|
-
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
2529
|
-
}
|
|
2530
|
-
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button {
|
|
2531
|
-
height: auto;
|
|
2532
|
-
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
2533
|
-
}
|
|
2534
|
-
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__button {
|
|
2535
|
-
width: 100%;
|
|
2536
|
-
height: auto;
|
|
2537
|
-
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
2538
|
-
cursor: pointer;
|
|
2539
|
-
}
|
|
2540
|
-
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__button {
|
|
2541
|
-
width: 100%;
|
|
2542
|
-
height: auto;
|
|
2543
|
-
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
2411
|
+
padding: calc(1rem / 2) 1rem;
|
|
2412
|
+
border: 1px solid #b6d4fe;
|
|
2413
|
+
background: #cfe2ff;
|
|
2414
|
+
border-radius: 0.375rem;
|
|
2415
|
+
color: #084298;
|
|
2544
2416
|
cursor: pointer;
|
|
2417
|
+
font-size: 1rem;
|
|
2418
|
+
opacity: 0;
|
|
2419
|
+
-webkit-transition: opacity 0.1s linear, bottom 0.3s linear, -webkit-transform 0.1s ease-out;
|
|
2420
|
+
transition: opacity 0.1s linear, bottom 0.3s linear, -webkit-transform 0.1s ease-out;
|
|
2421
|
+
-o-transition: opacity 0.1s linear, bottom 0.3s linear, transform 0.1s ease-out;
|
|
2422
|
+
transition: opacity 0.1s linear, bottom 0.3s linear, transform 0.1s ease-out;
|
|
2423
|
+
transition: opacity 0.1s linear, bottom 0.3s linear, transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
|
|
2424
|
+
white-space: pre;
|
|
2545
2425
|
}
|
|
2546
|
-
.jodit-
|
|
2547
|
-
|
|
2548
|
-
-webkit-box-pack: left;
|
|
2549
|
-
-ms-flex-pack: left;
|
|
2550
|
-
justify-content: left;
|
|
2551
|
-
}
|
|
2552
|
-
.jodit-toolbar-collection .jodit-toolbar-content {
|
|
2553
|
-
padding: 0;
|
|
2554
|
-
margin: 2px 1px;
|
|
2555
|
-
}
|
|
2556
|
-
.jodit-toolbar-editor-collection .jodit-toolbar-content {
|
|
2557
|
-
padding: 0;
|
|
2558
|
-
margin: 2px 1px;
|
|
2559
|
-
}
|
|
2560
|
-
.jodit-toolbar-collection .jodit-toolbar-button {
|
|
2561
|
-
padding: 0;
|
|
2562
|
-
margin: 2px 1px;
|
|
2426
|
+
.jodit-ui-message_active_true {
|
|
2427
|
+
opacity: 1;
|
|
2563
2428
|
}
|
|
2564
|
-
.jodit-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
.jodit-dialog .jodit-toolbar-collection_mode_horizontal,
|
|
2569
|
-
.jodit-dialog .jodit-toolbar-editor-collection_mode_horizontal {
|
|
2570
|
-
background-image: none;
|
|
2429
|
+
.jodit-ui-message:active {
|
|
2430
|
+
-webkit-transform: scale(0.76);
|
|
2431
|
+
-ms-transform: scale(0.76);
|
|
2432
|
+
transform: scale(0.76);
|
|
2571
2433
|
}
|
|
2572
2434
|
|
|
2573
2435
|
.jodit-ui-label {
|
|
@@ -3216,6 +3078,187 @@ svg.jodit-icon {
|
|
|
3216
3078
|
clip: rect(-6px, 22px, 14px, 8px);
|
|
3217
3079
|
}
|
|
3218
3080
|
|
|
3081
|
+
/*!
|
|
3082
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3083
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3084
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3085
|
+
*/
|
|
3086
|
+
.jodit-toolbar-collection,
|
|
3087
|
+
.jodit-toolbar-editor-collection {
|
|
3088
|
+
display: -webkit-box;
|
|
3089
|
+
display: -ms-flexbox;
|
|
3090
|
+
display: flex;
|
|
3091
|
+
-webkit-box-orient: vertical;
|
|
3092
|
+
-webkit-box-direction: normal;
|
|
3093
|
+
-ms-flex-direction: column;
|
|
3094
|
+
flex-direction: column;
|
|
3095
|
+
}
|
|
3096
|
+
.jodit-toolbar-collection_mode_horizontal {
|
|
3097
|
+
position: relative;
|
|
3098
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
3099
|
+
background-image: repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
3100
|
+
}
|
|
3101
|
+
.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3102
|
+
position: relative;
|
|
3103
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
3104
|
+
background-image: repeating-linear-gradient(transparent 0, transparent calc(calc(14px + calc((14px - 4px) * 2) + 2px * 2) - 1px), #dadada calc(14px + calc((14px - 4px) * 2) + 2px * 2));
|
|
3105
|
+
}
|
|
3106
|
+
.jodit-toolbar-collection_mode_horizontal:after {
|
|
3107
|
+
position: absolute;
|
|
3108
|
+
bottom: 0;
|
|
3109
|
+
left: 0;
|
|
3110
|
+
display: block;
|
|
3111
|
+
width: 100%;
|
|
3112
|
+
height: 1px;
|
|
3113
|
+
background-color: #fff;
|
|
3114
|
+
content: '';
|
|
3115
|
+
}
|
|
3116
|
+
.jodit-toolbar-editor-collection_mode_horizontal:after {
|
|
3117
|
+
position: absolute;
|
|
3118
|
+
bottom: 0;
|
|
3119
|
+
left: 0;
|
|
3120
|
+
display: block;
|
|
3121
|
+
width: 100%;
|
|
3122
|
+
height: 1px;
|
|
3123
|
+
background-color: #fff;
|
|
3124
|
+
content: '';
|
|
3125
|
+
}
|
|
3126
|
+
.jodit-toolbar-collection_size_tiny.jodit-toolbar-collection_mode_horizontal {
|
|
3127
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3128
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3129
|
+
}
|
|
3130
|
+
.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-collection_mode_horizontal {
|
|
3131
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3132
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3133
|
+
}
|
|
3134
|
+
.jodit-toolbar-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3135
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3136
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3137
|
+
}
|
|
3138
|
+
.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3139
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3140
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 19px, #dadada 20px);
|
|
3141
|
+
}
|
|
3142
|
+
.jodit-toolbar-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal {
|
|
3143
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3144
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3145
|
+
}
|
|
3146
|
+
.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal {
|
|
3147
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3148
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3149
|
+
}
|
|
3150
|
+
.jodit-toolbar-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3151
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3152
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3153
|
+
}
|
|
3154
|
+
.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3155
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3156
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 25px, #dadada 26px);
|
|
3157
|
+
}
|
|
3158
|
+
.jodit-toolbar-collection_size_small.jodit-toolbar-collection_mode_horizontal {
|
|
3159
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3160
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3161
|
+
}
|
|
3162
|
+
.jodit-toolbar-editor-collection_size_small.jodit-toolbar-collection_mode_horizontal {
|
|
3163
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3164
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3165
|
+
}
|
|
3166
|
+
.jodit-toolbar-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3167
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3168
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3169
|
+
}
|
|
3170
|
+
.jodit-toolbar-editor-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3171
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3172
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 31px, #dadada 32px);
|
|
3173
|
+
}
|
|
3174
|
+
.jodit-toolbar-collection_size_middle.jodit-toolbar-collection_mode_horizontal {
|
|
3175
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3176
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3177
|
+
}
|
|
3178
|
+
.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-collection_mode_horizontal {
|
|
3179
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3180
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3181
|
+
}
|
|
3182
|
+
.jodit-toolbar-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3183
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3184
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3185
|
+
}
|
|
3186
|
+
.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3187
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3188
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 37px, #dadada 38px);
|
|
3189
|
+
}
|
|
3190
|
+
.jodit-toolbar-collection_size_large.jodit-toolbar-collection_mode_horizontal {
|
|
3191
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3192
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3193
|
+
}
|
|
3194
|
+
.jodit-toolbar-editor-collection_size_large.jodit-toolbar-collection_mode_horizontal {
|
|
3195
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3196
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3197
|
+
}
|
|
3198
|
+
.jodit-toolbar-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3199
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3200
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3201
|
+
}
|
|
3202
|
+
.jodit-toolbar-editor-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal {
|
|
3203
|
+
background-image: -o-repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3204
|
+
background-image: repeating-linear-gradient(transparent 0, transparent 43px, #dadada 44px);
|
|
3205
|
+
}
|
|
3206
|
+
.jodit-toolbar-collection_mode_vertical .jodit-ui-group,
|
|
3207
|
+
.jodit-toolbar-editor-collection_mode_vertical .jodit-ui-group {
|
|
3208
|
+
-webkit-box-orient: vertical;
|
|
3209
|
+
-webkit-box-direction: normal;
|
|
3210
|
+
-ms-flex-direction: column;
|
|
3211
|
+
flex-direction: column;
|
|
3212
|
+
border: 0;
|
|
3213
|
+
background-color: transparent;
|
|
3214
|
+
}
|
|
3215
|
+
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button {
|
|
3216
|
+
height: auto;
|
|
3217
|
+
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
3218
|
+
}
|
|
3219
|
+
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button {
|
|
3220
|
+
height: auto;
|
|
3221
|
+
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
3222
|
+
}
|
|
3223
|
+
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__button {
|
|
3224
|
+
width: 100%;
|
|
3225
|
+
height: auto;
|
|
3226
|
+
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
3227
|
+
cursor: pointer;
|
|
3228
|
+
}
|
|
3229
|
+
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__button {
|
|
3230
|
+
width: 100%;
|
|
3231
|
+
height: auto;
|
|
3232
|
+
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
3233
|
+
cursor: pointer;
|
|
3234
|
+
}
|
|
3235
|
+
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__text:not(:empty),
|
|
3236
|
+
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__text:not(:empty) {
|
|
3237
|
+
-webkit-box-pack: left;
|
|
3238
|
+
-ms-flex-pack: left;
|
|
3239
|
+
justify-content: left;
|
|
3240
|
+
}
|
|
3241
|
+
.jodit-toolbar-collection .jodit-toolbar-content {
|
|
3242
|
+
padding: 0;
|
|
3243
|
+
margin: 2px 1px;
|
|
3244
|
+
}
|
|
3245
|
+
.jodit-toolbar-editor-collection .jodit-toolbar-content {
|
|
3246
|
+
padding: 0;
|
|
3247
|
+
margin: 2px 1px;
|
|
3248
|
+
}
|
|
3249
|
+
.jodit-toolbar-collection .jodit-toolbar-button {
|
|
3250
|
+
padding: 0;
|
|
3251
|
+
margin: 2px 1px;
|
|
3252
|
+
}
|
|
3253
|
+
.jodit-toolbar-editor-collection .jodit-toolbar-button {
|
|
3254
|
+
padding: 0;
|
|
3255
|
+
margin: 2px 1px;
|
|
3256
|
+
}
|
|
3257
|
+
.jodit-dialog .jodit-toolbar-collection_mode_horizontal,
|
|
3258
|
+
.jodit-dialog .jodit-toolbar-editor-collection_mode_horizontal {
|
|
3259
|
+
background-image: none;
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3219
3262
|
/*!
|
|
3220
3263
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3221
3264
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -3909,31 +3952,6 @@ svg.jodit-icon {
|
|
|
3909
3952
|
flex-flow: column-reverse;
|
|
3910
3953
|
}
|
|
3911
3954
|
}
|
|
3912
|
-
.jodit-filebrowser__status {
|
|
3913
|
-
position: absolute;
|
|
3914
|
-
right: 0;
|
|
3915
|
-
bottom: 0;
|
|
3916
|
-
left: 0;
|
|
3917
|
-
padding: 6px;
|
|
3918
|
-
border-top: 1px solid rgba(127, 127, 127, 0.4);
|
|
3919
|
-
background-color: #4a4a4a;
|
|
3920
|
-
color: #b38888;
|
|
3921
|
-
font-size: 12px;
|
|
3922
|
-
opacity: 0;
|
|
3923
|
-
text-align: right;
|
|
3924
|
-
-webkit-transition: opacity 0.3s linear;
|
|
3925
|
-
-o-transition: opacity 0.3s linear;
|
|
3926
|
-
transition: opacity 0.3s linear;
|
|
3927
|
-
visibility: hidden;
|
|
3928
|
-
word-break: break-all;
|
|
3929
|
-
}
|
|
3930
|
-
.jodit-filebrowser__status_success_true {
|
|
3931
|
-
color: #c5c5c5;
|
|
3932
|
-
}
|
|
3933
|
-
.jodit-filebrowser__status_active_true {
|
|
3934
|
-
opacity: 1;
|
|
3935
|
-
visibility: visible;
|
|
3936
|
-
}
|
|
3937
3955
|
.jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
|
|
3938
3956
|
display: -webkit-box;
|
|
3939
3957
|
display: -ms-flexbox;
|
|
@@ -4949,50 +4967,6 @@ a + .jodit-filebrowser-tree__source-title {
|
|
|
4949
4967
|
min-height: 100px;
|
|
4950
4968
|
}
|
|
4951
4969
|
|
|
4952
|
-
/*!
|
|
4953
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4954
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4955
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4956
|
-
*/
|
|
4957
|
-
.jodit-jodit__error-box-for-messages {
|
|
4958
|
-
position: absolute;
|
|
4959
|
-
z-index: 3;
|
|
4960
|
-
right: 0;
|
|
4961
|
-
bottom: 0;
|
|
4962
|
-
overflow: visible;
|
|
4963
|
-
width: 0;
|
|
4964
|
-
height: 0;
|
|
4965
|
-
}
|
|
4966
|
-
.jodit-jodit__error-box-for-messages > * {
|
|
4967
|
-
position: absolute;
|
|
4968
|
-
right: calc(8px / 2);
|
|
4969
|
-
bottom: 0;
|
|
4970
|
-
display: block;
|
|
4971
|
-
padding: 2px 7px;
|
|
4972
|
-
border: 1px solid rgba(226, 117, 117, 0.44);
|
|
4973
|
-
background: rgba(255, 0, 0, 0.29);
|
|
4974
|
-
color: #e02b2b;
|
|
4975
|
-
font-size: 14px;
|
|
4976
|
-
opacity: 0;
|
|
4977
|
-
-webkit-transition: opacity 0.1s linear, bottom 0.3s linear;
|
|
4978
|
-
-o-transition: opacity 0.1s linear, bottom 0.3s linear;
|
|
4979
|
-
transition: opacity 0.1s linear, bottom 0.3s linear;
|
|
4980
|
-
white-space: pre;
|
|
4981
|
-
}
|
|
4982
|
-
.jodit-jodit__error-box-for-messages_active_true {
|
|
4983
|
-
opacity: 1;
|
|
4984
|
-
}
|
|
4985
|
-
.jodit-jodit__error-box-for-messages_type_info {
|
|
4986
|
-
border: 1px solid rgba(154, 154, 154, 0.44);
|
|
4987
|
-
background: rgba(204, 229, 247, 0.71);
|
|
4988
|
-
color: #776565;
|
|
4989
|
-
}
|
|
4990
|
-
.jodit-jodit__error-box-for-messages_type_success {
|
|
4991
|
-
border: 1px solid rgba(148, 148, 148, 0.44);
|
|
4992
|
-
background: rgba(77, 236, 112, 0.29);
|
|
4993
|
-
color: #5d5a5a;
|
|
4994
|
-
}
|
|
4995
|
-
|
|
4996
4970
|
/*!
|
|
4997
4971
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4998
4972
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -5453,7 +5427,7 @@ html.jodit_fullsize-box_true {
|
|
|
5453
5427
|
background-color: #ecebe9;
|
|
5454
5428
|
}
|
|
5455
5429
|
.jodit-ui-search__buttons button:focus {
|
|
5456
|
-
border: 1px solid rgba(181, 214, 253, 0.
|
|
5430
|
+
border: 1px solid rgba(181, 214, 253, 0.995);
|
|
5457
5431
|
}
|
|
5458
5432
|
.jodit-ui-search__buttons button:active {
|
|
5459
5433
|
border: 1px solid #b5d6fd;
|