jodit 3.24.2 → 3.24.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/LICENSE.txt +1 -1
- package/build/jodit.css +48 -48
- package/build/jodit.es2018.css +47 -47
- package/build/jodit.es2018.en.css +47 -47
- package/build/jodit.es2018.en.js +603 -507
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +606 -510
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +653 -557
- package/build/jodit.min.css +1 -1
- package/build/jodit.min.js +1 -1
- package/build/plugins/debug/debug.es2018.en.js +2 -2
- package/build/plugins/debug/debug.es2018.js +2 -2
- package/build/plugins/debug/debug.js +2 -2
- 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 +28 -28
- package/build/plugins/speech-recognize/speech-recognize.es2018.js +28 -28
- package/build/plugins/speech-recognize/speech-recognize.js +28 -28
- package/build/vdom.css +1 -1
- package/build/vdom.js +103 -41
- package/index.d.ts +1 -1
- package/package.json +27 -27
- package/src/config.ts +1 -1
- package/src/core/async/async.test.js +1 -1
- package/src/core/async/async.ts +1 -1
- package/src/core/async/index.ts +1 -1
- package/src/core/component/component.ts +1 -1
- package/src/core/component/index.ts +1 -1
- package/src/core/component/statuses.ts +1 -1
- package/src/core/component/view-component.ts +1 -1
- package/src/core/constants.ts +1 -1
- package/src/core/create/create.test.js +1 -1
- package/src/core/create/create.ts +1 -1
- package/src/core/create/index.ts +1 -1
- package/src/core/decorators/cache/cache.ts +1 -1
- package/src/core/decorators/component/component.ts +1 -1
- package/src/core/decorators/debounce/debounce.ts +1 -1
- package/src/core/decorators/decorators.test.js +1 -1
- package/src/core/decorators/derive/derive.ts +1 -1
- package/src/core/decorators/hook/hook.ts +1 -1
- package/src/core/decorators/idle/idle.ts +1 -1
- package/src/core/decorators/index.ts +1 -1
- package/src/core/decorators/nonenumerable/nonenumerable.ts +1 -1
- package/src/core/decorators/persistent/persistent.ts +1 -1
- package/src/core/decorators/spy/spy.ts +1 -1
- package/src/core/decorators/wait/wait.ts +1 -1
- package/src/core/decorators/watch/watch.ts +1 -1
- package/src/core/dom/dom.test.js +1 -1
- package/src/core/dom/dom.ts +1 -1
- package/src/core/dom/index.ts +1 -1
- package/src/core/dom/lazy-walker.ts +1 -1
- package/src/core/event-emitter/event-emitter.test.js +1 -1
- package/src/core/event-emitter/event-emitter.ts +1 -1
- package/src/core/event-emitter/eventify.ts +1 -1
- package/src/core/event-emitter/index.ts +1 -1
- package/src/core/event-emitter/object-observer.test.js +1 -1
- package/src/core/event-emitter/observable.ts +1 -1
- package/src/core/event-emitter/store.ts +1 -1
- package/src/core/global.ts +1 -1
- package/src/core/helpers/array/as-array.ts +1 -1
- package/src/core/helpers/array/index.ts +1 -1
- package/src/core/helpers/array/split-array.ts +1 -1
- package/src/core/helpers/array/to-array.ts +1 -1
- package/src/core/helpers/async/index.ts +1 -1
- package/src/core/helpers/async/set-timeout.ts +1 -1
- package/src/core/helpers/checker/has-browser-color-picker.ts +1 -1
- package/src/core/helpers/checker/index.ts +1 -1
- package/src/core/helpers/checker/is-array.ts +1 -1
- package/src/core/helpers/checker/is-boolean.ts +1 -1
- package/src/core/helpers/checker/is-equal.ts +1 -1
- package/src/core/helpers/checker/is-function.ts +1 -1
- package/src/core/helpers/checker/is-html-from-word.ts +1 -1
- package/src/core/helpers/checker/is-html.ts +1 -1
- package/src/core/helpers/checker/is-imp-interface.ts +1 -1
- package/src/core/helpers/checker/is-int.ts +1 -1
- package/src/core/helpers/checker/is-jodit-object.ts +1 -1
- package/src/core/helpers/checker/is-license.ts +1 -1
- package/src/core/helpers/checker/is-marker.ts +1 -1
- package/src/core/helpers/checker/is-native-function.ts +1 -1
- package/src/core/helpers/checker/is-number.ts +1 -1
- package/src/core/helpers/checker/is-numeric.ts +1 -1
- package/src/core/helpers/checker/is-plain-object.ts +1 -1
- package/src/core/helpers/checker/is-promise.ts +1 -1
- package/src/core/helpers/checker/is-string.ts +1 -1
- package/src/core/helpers/checker/is-url.ts +1 -1
- package/src/core/helpers/checker/is-valid-name.ts +1 -1
- package/src/core/helpers/checker/is-view-object.ts +1 -1
- package/src/core/helpers/checker/is-void.ts +1 -1
- package/src/core/helpers/checker/is-window.ts +1 -1
- package/src/core/helpers/color/color-to-hex.ts +1 -1
- package/src/core/helpers/color/index.ts +1 -1
- package/src/core/helpers/helpers.test.js +1 -1
- package/src/core/helpers/html/apply-styles.ts +1 -1
- package/src/core/helpers/html/clean-from-word.ts +1 -1
- package/src/core/helpers/html/htmlspecialchars.ts +1 -1
- package/src/core/helpers/html/index.ts +1 -1
- package/src/core/helpers/html/nl2br.ts +1 -1
- package/src/core/helpers/html/safe-html.ts +1 -1
- package/src/core/helpers/html/strip-tags.ts +1 -1
- package/src/core/helpers/index.ts +1 -1
- package/src/core/helpers/normalize/index.ts +1 -1
- package/src/core/helpers/normalize/normalize-color.ts +1 -1
- package/src/core/helpers/normalize/normalize-css-value.ts +1 -1
- package/src/core/helpers/normalize/normalize-key-aliases.ts +1 -1
- package/src/core/helpers/normalize/normalize-license.ts +1 -1
- package/src/core/helpers/normalize/normalize-node.ts +1 -1
- package/src/core/helpers/normalize/normalize-path.ts +1 -1
- package/src/core/helpers/normalize/normalize-relative-path.ts +1 -1
- package/src/core/helpers/normalize/normalize-size.ts +1 -1
- package/src/core/helpers/normalize/normalize-url.ts +1 -1
- package/src/core/helpers/size/get-content-width.ts +1 -1
- package/src/core/helpers/size/get-scroll-parent.ts +1 -1
- package/src/core/helpers/size/index.ts +1 -1
- package/src/core/helpers/size/inner-width.ts +1 -1
- package/src/core/helpers/size/object-size.ts +1 -1
- package/src/core/helpers/size/offset.ts +1 -1
- package/src/core/helpers/size/position.test.js +1 -1
- package/src/core/helpers/size/position.ts +1 -1
- package/src/core/helpers/string/camel-case.ts +1 -1
- package/src/core/helpers/string/fuzzy-search-index.ts +1 -1
- package/src/core/helpers/string/i18n.ts +1 -1
- package/src/core/helpers/string/index.ts +1 -1
- package/src/core/helpers/string/kebab-case.ts +1 -1
- package/src/core/helpers/string/stringify.ts +1 -1
- package/src/core/helpers/string/trim.ts +1 -1
- package/src/core/helpers/string/ucfirst.ts +1 -1
- package/src/core/helpers/utils/align.ts +1 -1
- package/src/core/helpers/utils/append-script.ts +1 -1
- package/src/core/helpers/utils/assert.ts +1 -1
- package/src/core/helpers/utils/browser.ts +1 -1
- package/src/core/helpers/utils/build-query.ts +1 -1
- package/src/core/helpers/utils/complete-url.ts +1 -1
- package/src/core/helpers/utils/config-proto.ts +1 -1
- package/src/core/helpers/utils/convert-media-url-to-video-embed.ts +1 -1
- package/src/core/helpers/utils/css.ts +1 -1
- package/src/core/helpers/utils/ctrl-key.ts +1 -1
- package/src/core/helpers/utils/data-bind.ts +1 -1
- package/src/core/helpers/utils/default-language.ts +1 -1
- package/src/core/helpers/utils/error/error.ts +1 -1
- package/src/core/helpers/utils/error/errors/abort-error.ts +1 -1
- package/src/core/helpers/utils/error/errors/connection-error.ts +1 -1
- package/src/core/helpers/utils/error/errors/index.ts +1 -1
- package/src/core/helpers/utils/error/errors/options-error.ts +1 -1
- package/src/core/helpers/utils/error/index.ts +1 -1
- package/src/core/helpers/utils/extend.ts +1 -1
- package/src/core/helpers/utils/get-class-name.ts +1 -1
- package/src/core/helpers/utils/get.ts +1 -1
- package/src/core/helpers/utils/human-size-to-bytes.ts +1 -1
- package/src/core/helpers/utils/index.ts +1 -1
- package/src/core/helpers/utils/mark-deprecated.ts +1 -1
- package/src/core/helpers/utils/parse-query.ts +1 -1
- package/src/core/helpers/utils/print.ts +1 -1
- package/src/core/helpers/utils/reset.ts +1 -1
- package/src/core/helpers/utils/scroll-into-view.ts +1 -1
- package/src/core/helpers/utils/selector.ts +1 -1
- package/src/core/helpers/utils/set.ts +1 -1
- package/src/core/helpers/utils/stack.ts +1 -1
- package/src/core/helpers/utils/utils.ts +1 -1
- package/src/core/helpers/utils/val.ts +1 -1
- package/src/core/plugin/index.ts +1 -1
- package/src/core/plugin/plugin-system.ts +1 -1
- package/src/core/plugin/plugin.ts +1 -1
- package/src/core/request/ajax.ts +1 -1
- package/src/core/request/config.ts +1 -1
- package/src/core/request/index.ts +1 -1
- package/src/core/request/response.ts +1 -1
- package/src/core/selection/helpers/index.ts +1 -1
- package/src/core/selection/helpers/move-node-inside-start.ts +1 -1
- package/src/core/selection/helpers/move-the-node-along-the-edge-outward.ts +1 -1
- package/src/core/selection/index.ts +1 -1
- package/src/core/selection/interface.ts +1 -1
- package/src/core/selection/select.ts +1 -1
- package/src/core/selection/selection.test.js +1 -1
- package/src/core/selection/style/api/extract.ts +1 -1
- package/src/core/selection/style/api/finite-state-machine.ts +1 -1
- package/src/core/selection/style/api/get-suit-child.ts +1 -1
- package/src/core/selection/style/api/get-suit-parent.ts +1 -1
- package/src/core/selection/style/api/has-same-style.ts +1 -1
- package/src/core/selection/style/api/index.ts +1 -1
- package/src/core/selection/style/api/is-inside-invisible-element.ts +1 -1
- package/src/core/selection/style/api/is-normal-node.ts +1 -1
- package/src/core/selection/style/api/is-same-attributes.ts +1 -1
- package/src/core/selection/style/api/is-suit-element.ts +1 -1
- package/src/core/selection/style/api/list/toggle-ordered-list.ts +1 -1
- package/src/core/selection/style/api/list/wrap-list.ts +1 -1
- package/src/core/selection/style/api/toggle-attributes.ts +1 -1
- package/src/core/selection/style/api/unwrap-children.ts +1 -1
- package/src/core/selection/style/api/wrap-unwrapped-text.ts +1 -1
- package/src/core/selection/style/api/wrap.ts +1 -1
- package/src/core/selection/style/apply-style.ts +1 -1
- package/src/core/selection/style/commit-style.ts +1 -1
- package/src/core/selection/style/style.test.js +1 -1
- package/src/core/selection/style/transactions.ts +1 -1
- package/src/core/storage/engines/local-storage-provider.ts +1 -1
- package/src/core/storage/engines/memory-storage-provider.ts +1 -1
- package/src/core/storage/index.ts +1 -1
- package/src/core/storage/storage.ts +1 -1
- package/src/core/traits/dlgs.ts +1 -1
- package/src/core/traits/elms.ts +1 -1
- package/src/core/traits/index.ts +1 -1
- package/src/core/traits/mods.ts +1 -1
- package/src/core/ui/button/button/button.less +1 -1
- package/src/core/ui/button/button/button.ts +1 -1
- package/src/core/ui/button/group/group.ts +1 -1
- package/src/core/ui/button/index.ts +1 -1
- package/src/core/ui/button/tooltip/tooltip.less +1 -1
- package/src/core/ui/button/tooltip/tooltip.test.js +1 -1
- package/src/core/ui/button/tooltip/tooltip.ts +1 -1
- package/src/core/ui/element.ts +1 -1
- package/src/core/ui/form/block/block.ts +1 -1
- package/src/core/ui/form/form.ts +1 -1
- package/src/core/ui/form/index.ts +1 -1
- package/src/core/ui/form/inputs/area/area.ts +1 -1
- package/src/core/ui/form/inputs/checkbox/checkbox.ts +1 -1
- package/src/core/ui/form/inputs/file/file.ts +1 -1
- package/src/core/ui/form/inputs/index.ts +1 -1
- package/src/core/ui/form/inputs/input/input.ts +1 -1
- package/src/core/ui/form/inputs/select/select.ts +1 -1
- package/src/core/ui/form/validators/index.ts +1 -1
- package/src/core/ui/form/validators/input.ts +1 -1
- package/src/core/ui/form/validators/select.ts +1 -1
- package/src/core/ui/group/group.less +1 -1
- package/src/core/ui/group/group.test.js +1 -1
- package/src/core/ui/group/group.ts +1 -1
- package/src/core/ui/group/index.ts +1 -1
- package/src/core/ui/group/list.less +1 -1
- package/src/core/ui/group/list.ts +1 -1
- package/src/core/ui/group/separator.ts +1 -1
- package/src/core/ui/group/spacer.ts +1 -1
- package/src/core/ui/helpers/buttons.ts +1 -1
- package/src/core/ui/helpers/get-control-type.ts +1 -1
- package/src/core/ui/helpers/get-strong-control-types.ts +1 -1
- package/src/core/ui/icon.ts +1 -1
- package/src/core/ui/index.ts +1 -1
- package/src/core/ui/popup/index.ts +1 -1
- package/src/core/ui/popup/popup.less +1 -1
- package/src/core/ui/popup/popup.test.js +1 -1
- package/src/core/ui/popup/popup.ts +1 -1
- package/src/core/ui/progress-bar/progress-bar.less +1 -1
- package/src/core/ui/progress-bar/progress-bar.ts +1 -1
- package/src/core/vdom/helpers/index.ts +1 -1
- package/src/core/vdom/index.ts +1 -1
- package/src/core/vdom/interface.ts +1 -1
- package/src/core/vdom/on-demand.ts +1 -1
- package/src/core/vdom/render/index.ts +1 -1
- package/src/core/vdom/render/patcher.ts +1 -1
- package/src/core/vdom/v-dom-jodit.ts +1 -1
- package/src/core/view/view-with-toolbar.less +1 -1
- package/src/core/view/view-with-toolbar.ts +1 -1
- package/src/core/view/view.ts +1 -1
- package/src/header.js +1 -1
- package/src/index.ts +1 -1
- package/src/jodit.ts +1 -1
- package/src/langs/ar.js +1 -1
- package/src/langs/cs_cz.js +1 -1
- package/src/langs/de.js +2 -3
- package/src/langs/en.js +1 -1
- package/src/langs/es.js +2 -3
- package/src/langs/fa.js +1 -2
- package/src/langs/fr.js +24 -23
- package/src/langs/he.js +1 -2
- package/src/langs/hu.js +1 -2
- package/src/langs/i18n.test.js +1 -1
- package/src/langs/id.js +1 -1
- package/src/langs/index.ts +1 -1
- package/src/langs/it.js +1 -2
- package/src/langs/ja.js +1 -2
- package/src/langs/keys.js +1 -1
- package/src/langs/ko.js +1 -1
- package/src/langs/nl.js +1 -2
- package/src/langs/pl.js +1 -2
- package/src/langs/pt_br.js +1 -2
- package/src/langs/ru.js +1 -1
- package/src/langs/tr.js +1 -2
- package/src/langs/zh_cn.js +1 -2
- package/src/langs/zh_tw.js +1 -2
- package/src/modules/context-menu/context-menu.less +1 -1
- package/src/modules/context-menu/context-menu.ts +1 -1
- package/src/modules/dialog/alert.ts +1 -1
- package/src/modules/dialog/confirm.ts +1 -1
- package/src/modules/dialog/dialog.less +1 -1
- package/src/modules/dialog/dialog.test.js +1 -1
- package/src/modules/dialog/dialog.test.screenshot.js +1 -1
- package/src/modules/dialog/dialog.ts +1 -1
- package/src/modules/dialog/index.ts +1 -1
- package/src/modules/dialog/prompt.ts +1 -1
- package/src/modules/file-browser/builders/context-menu.ts +1 -1
- package/src/modules/file-browser/builders/elements-map.ts +1 -1
- package/src/modules/file-browser/builders/item.ts +1 -1
- package/src/modules/file-browser/config.ts +20 -1
- package/src/modules/file-browser/data-provider.ts +7 -2
- package/src/modules/file-browser/factories.ts +1 -1
- package/src/modules/file-browser/fetch/delete-file.ts +1 -1
- package/src/modules/file-browser/fetch/load-items.ts +1 -1
- package/src/modules/file-browser/fetch/load-tree.ts +1 -1
- package/src/modules/file-browser/file-browser.test.js +1 -1
- package/src/modules/file-browser/file-browser.test.screenshot.js +52 -1
- package/src/modules/file-browser/file-browser.ts +29 -3
- package/src/modules/file-browser/index.ts +1 -1
- package/src/modules/file-browser/listeners/native-listeners.ts +1 -1
- package/src/modules/file-browser/listeners/self-listeners.ts +1 -1
- package/src/modules/file-browser/listeners/state-listeners.ts +1 -1
- package/src/modules/file-browser/styles/file-browser.less +1 -1
- 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.ts +1 -1
- package/src/modules/file-browser/ui/index.ts +1 -1
- package/src/modules/file-browser/ui/tree/tree.ts +1 -1
- package/src/modules/history/command.ts +1 -1
- package/src/modules/history/history.test.js +1 -1
- package/src/modules/history/history.ts +1 -1
- package/src/modules/history/snapshot.ts +1 -1
- package/src/modules/history/stack.ts +1 -1
- package/src/modules/image-editor/config.ts +1 -1
- package/src/modules/image-editor/image-editor.less +1 -1
- package/src/modules/image-editor/image-editor.test.screenshot.js +1 -1
- package/src/modules/image-editor/image-editor.ts +1 -1
- package/src/modules/image-editor/templates/form.ts +1 -1
- package/src/modules/index.ts +1 -1
- package/src/modules/messages/message.ts +1 -1
- package/src/modules/messages/messages.less +1 -1
- package/src/modules/messages/messages.test.js +1 -1
- package/src/modules/messages/messages.test.screenshot.js +1 -1
- package/src/modules/messages/messages.ts +1 -1
- package/src/modules/status-bar/status-bar.less +1 -1
- package/src/modules/status-bar/status-bar.ts +1 -1
- package/src/modules/table/table.test.js +1 -1
- package/src/modules/table/table.ts +1 -1
- package/src/modules/toolbar/button/button.less +1 -1
- package/src/modules/toolbar/button/button.ts +1 -1
- package/src/modules/toolbar/button/content.less +1 -1
- package/src/modules/toolbar/button/content.ts +1 -1
- package/src/modules/toolbar/button/index.ts +1 -1
- package/src/modules/toolbar/collection/collection.less +1 -1
- package/src/modules/toolbar/collection/collection.ts +1 -1
- package/src/modules/toolbar/collection/editor-collection.ts +1 -1
- package/src/modules/toolbar/factory.ts +1 -1
- package/src/modules/uploader/config.ts +1 -1
- package/src/modules/uploader/helpers/build-data.ts +1 -1
- package/src/modules/uploader/helpers/data-uri-to-blob.ts +1 -1
- package/src/modules/uploader/helpers/index.ts +1 -1
- package/src/modules/uploader/helpers/process-old-browser-drag.ts +1 -1
- package/src/modules/uploader/helpers/send-files.ts +1 -1
- package/src/modules/uploader/helpers/send.ts +1 -1
- package/src/modules/uploader/uploader.less +1 -1
- package/src/modules/uploader/uploader.test.js +1 -1
- package/src/modules/uploader/uploader.ts +1 -1
- package/src/modules/widget/color-picker/color-picker.less +1 -1
- package/src/modules/widget/color-picker/color-picker.ts +1 -1
- package/src/modules/widget/file-selector/file-selector.ts +1 -1
- package/src/modules/widget/index.ts +1 -1
- package/src/modules/widget/tabs/tabs.less +1 -1
- package/src/modules/widget/tabs/tabs.ts +1 -1
- package/src/modules/widget/widget.less +1 -1
- package/src/plugins/about/about.less +1 -1
- package/src/plugins/about/about.ts +1 -1
- package/src/plugins/add-new-line/add-new-line.less +1 -1
- package/src/plugins/add-new-line/add-new-line.test.js +1 -1
- package/src/plugins/add-new-line/add-new-line.ts +1 -1
- package/src/plugins/add-new-line/config.ts +1 -1
- package/src/plugins/backspace/backspace.test.js +1 -1
- package/src/plugins/backspace/backspace.ts +1 -1
- package/src/plugins/backspace/cases/check-join-neighbors.ts +1 -1
- package/src/plugins/backspace/cases/check-join-two-lists.ts +1 -1
- package/src/plugins/backspace/cases/check-not-collapsed.ts +1 -1
- package/src/plugins/backspace/cases/check-remove-char.ts +1 -1
- package/src/plugins/backspace/cases/check-remove-content-not-editable.ts +1 -1
- package/src/plugins/backspace/cases/check-remove-empty-neighbor.ts +1 -1
- package/src/plugins/backspace/cases/check-remove-empty-parent.ts +1 -1
- package/src/plugins/backspace/cases/check-remove-unbreakable-element.ts +1 -1
- package/src/plugins/backspace/cases/check-table-cell.ts +1 -1
- package/src/plugins/backspace/cases/check-unwrap-first-list-item.ts +1 -1
- package/src/plugins/backspace/cases/index.ts +1 -1
- package/src/plugins/backspace/config.ts +1 -1
- package/src/plugins/backspace/helpers.ts +1 -1
- package/src/plugins/backspace/interface.ts +1 -1
- package/src/plugins/bold/bold.test.js +1 -1
- package/src/plugins/bold/bold.ts +1 -1
- package/src/plugins/bold/config.ts +1 -1
- package/src/plugins/bold/interface.ts +1 -1
- package/src/plugins/class-span/class-span.test.js +1 -1
- package/src/plugins/class-span/class-span.ts +1 -1
- package/src/plugins/clean-html/clean-html.test.js +1 -1
- package/src/plugins/clean-html/clean-html.ts +1 -1
- package/src/plugins/clean-html/config.ts +1 -1
- package/src/plugins/clean-html/helpers/get-hash.ts +1 -1
- package/src/plugins/clean-html/helpers/index.ts +1 -1
- package/src/plugins/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.ts +1 -1
- package/src/plugins/clean-html/helpers/remove-format/remove-format-for-selection.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/allow-attributes.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/fill-empty-paragraph.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/index.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/remove-empty-text-node.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/remove-inv-text-nodes.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/replace-old-tags.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/sanitize-attributes.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/filters/try-remove-node.ts +1 -1
- package/src/plugins/clean-html/helpers/visitor/visit-node-walker.ts +1 -1
- package/src/plugins/clipboard/clipboard.test.js +1 -1
- package/src/plugins/clipboard/clipboard.ts +1 -1
- package/src/plugins/clipboard/config.ts +1 -1
- package/src/plugins/color/color.test.js +1 -1
- package/src/plugins/color/color.test.screenshot.js +1 -1
- package/src/plugins/color/color.ts +1 -1
- package/src/plugins/color/config.ts +1 -1
- package/src/plugins/copy-format/copy-format.test.js +1 -1
- package/src/plugins/copy-format/copy-format.ts +1 -1
- package/src/plugins/copy-format/langs/ar.js +1 -1
- package/src/plugins/copy-format/langs/cs_cz.js +1 -1
- package/src/plugins/copy-format/langs/de.js +1 -1
- package/src/plugins/copy-format/langs/es.js +1 -1
- package/src/plugins/copy-format/langs/fa.js +1 -1
- package/src/plugins/copy-format/langs/fr.js +1 -1
- package/src/plugins/copy-format/langs/he.js +1 -1
- package/src/plugins/copy-format/langs/hu.js +1 -1
- package/src/plugins/copy-format/langs/id.js +1 -1
- package/src/plugins/copy-format/langs/index.ts +1 -1
- package/src/plugins/copy-format/langs/it.js +1 -1
- package/src/plugins/copy-format/langs/ja.js +1 -1
- package/src/plugins/copy-format/langs/ko.js +1 -1
- package/src/plugins/copy-format/langs/nl.js +1 -1
- package/src/plugins/copy-format/langs/pl.js +1 -1
- package/src/plugins/copy-format/langs/pt_br.js +1 -1
- package/src/plugins/copy-format/langs/ru.js +1 -1
- package/src/plugins/copy-format/langs/tr.js +1 -1
- package/src/plugins/copy-format/langs/zh_cn.js +1 -1
- package/src/plugins/copy-format/langs/zh_tw.js +1 -1
- package/src/plugins/debug/debug.ts +1 -1
- package/src/plugins/drag-and-drop/drag-and-drop.ts +1 -1
- package/src/plugins/drag-and-drop-element/config.ts +1 -1
- package/src/plugins/drag-and-drop-element/drag-and-drop-element.test.js +1 -1
- package/src/plugins/drag-and-drop-element/drag-and-drop-element.ts +1 -1
- package/src/plugins/dtd/after-insert/index.ts +1 -1
- package/src/plugins/dtd/after-insert/remove-extra-br.ts +1 -1
- package/src/plugins/dtd/before-insert/check-block-nesting.ts +1 -1
- package/src/plugins/dtd/before-insert/index.ts +1 -1
- package/src/plugins/dtd/config.ts +1 -1
- package/src/plugins/dtd/dtd.test.js +1 -1
- package/src/plugins/dtd/dtd.ts +1 -1
- package/src/plugins/enter/enter.test.js +1 -1
- package/src/plugins/enter/enter.ts +1 -1
- package/src/plugins/enter/helpers/check-br.ts +1 -1
- package/src/plugins/enter/helpers/check-unsplittable-box.ts +1 -1
- package/src/plugins/enter/helpers/get-block-wrapper.ts +1 -1
- package/src/plugins/enter/helpers/has-previous-block.ts +1 -1
- package/src/plugins/enter/helpers/index.ts +1 -1
- package/src/plugins/enter/helpers/insert-paragraph.ts +1 -1
- package/src/plugins/enter/helpers/move-cursor-out-from-specal-tags.ts +1 -1
- package/src/plugins/enter/helpers/process-empty-li-leaf.ts +1 -1
- package/src/plugins/enter/helpers/split-fragment.ts +1 -1
- package/src/plugins/enter/helpers/wrap-text.ts +1 -1
- package/src/plugins/enter/interface.ts +1 -1
- package/src/plugins/file/file.ts +1 -1
- package/src/plugins/focus/focus.test.js +1 -1
- package/src/plugins/focus/focus.ts +1 -1
- package/src/plugins/font/config.ts +1 -1
- package/src/plugins/font/font.test.js +1 -1
- package/src/plugins/font/font.ts +1 -1
- package/src/plugins/format-block/format-block.ts +1 -1
- package/src/plugins/fullsize/config.ts +1 -1
- package/src/plugins/fullsize/fullsize.less +1 -1
- package/src/plugins/fullsize/fullsize.test.js +1 -1
- package/src/plugins/fullsize/fullsize.ts +1 -1
- package/src/plugins/hotkeys/config.ts +1 -1
- package/src/plugins/hotkeys/hotkeys.test.js +1 -1
- package/src/plugins/hotkeys/hotkeys.ts +1 -1
- package/src/plugins/hr/hr.test.js +1 -1
- package/src/plugins/hr/hr.ts +1 -1
- package/src/plugins/iframe/config.ts +1 -1
- package/src/plugins/iframe/iframe.test.js +1 -1
- package/src/plugins/iframe/iframe.ts +1 -1
- package/src/plugins/image/image.test.js +1 -1
- package/src/plugins/image/image.ts +1 -1
- package/src/plugins/image-processor/config.ts +1 -1
- package/src/plugins/image-processor/image-processor.ts +1 -1
- package/src/plugins/image-properties/config.ts +1 -1
- package/src/plugins/image-properties/image-properties.less +1 -1
- package/src/plugins/image-properties/image-properties.test.js +1 -1
- package/src/plugins/image-properties/image-properties.test.screenshot.js +1 -1
- package/src/plugins/image-properties/image-properties.ts +1 -1
- package/src/plugins/image-properties/templates/form.ts +1 -1
- package/src/plugins/image-properties/templates/main-tab.ts +1 -1
- package/src/plugins/image-properties/templates/position-tab.ts +1 -1
- package/src/plugins/indent/config.ts +1 -1
- package/src/plugins/indent/helpers.ts +1 -1
- package/src/plugins/indent/indent.test.js +1 -1
- package/src/plugins/indent/indent.ts +1 -1
- package/src/plugins/index.ts +1 -1
- package/src/plugins/inline-popup/config/config.ts +1 -1
- package/src/plugins/inline-popup/config/items/a.ts +1 -1
- package/src/plugins/inline-popup/config/items/cells.ts +1 -1
- package/src/plugins/inline-popup/config/items/iframe.ts +1 -1
- package/src/plugins/inline-popup/config/items/img.ts +1 -1
- package/src/plugins/inline-popup/config/items/toolbar.ts +1 -1
- package/src/plugins/inline-popup/inline-popup.less +1 -1
- package/src/plugins/inline-popup/inline-popup.test.js +1 -1
- package/src/plugins/inline-popup/inline-popup.ts +1 -1
- package/src/plugins/justify/justify.ts +1 -1
- package/src/plugins/key-arrow-outside/key-arrow-outside.ts +1 -1
- package/src/plugins/limit/config.ts +1 -1
- package/src/plugins/limit/limit.test.js +1 -1
- package/src/plugins/limit/limit.ts +1 -1
- package/src/plugins/line-height/config.ts +1 -1
- package/src/plugins/line-height/langs/ar.js +1 -1
- package/src/plugins/line-height/langs/cs_cz.js +1 -1
- package/src/plugins/line-height/langs/de.js +1 -1
- package/src/plugins/line-height/langs/es.js +1 -1
- package/src/plugins/line-height/langs/fa.js +1 -1
- package/src/plugins/line-height/langs/fr.js +1 -1
- package/src/plugins/line-height/langs/he.js +1 -1
- package/src/plugins/line-height/langs/hu.js +1 -1
- package/src/plugins/line-height/langs/id.js +1 -1
- package/src/plugins/line-height/langs/index.ts +1 -1
- package/src/plugins/line-height/langs/it.js +1 -1
- package/src/plugins/line-height/langs/ja.js +1 -1
- package/src/plugins/line-height/langs/ko.js +1 -1
- package/src/plugins/line-height/langs/nl.js +1 -1
- package/src/plugins/line-height/langs/pl.js +1 -1
- package/src/plugins/line-height/langs/pt_br.js +1 -1
- package/src/plugins/line-height/langs/ru.js +1 -1
- package/src/plugins/line-height/langs/tr.js +1 -1
- package/src/plugins/line-height/langs/zh_cn.js +1 -1
- package/src/plugins/line-height/langs/zh_tw.js +1 -1
- package/src/plugins/line-height/line-height.test.js +1 -1
- package/src/plugins/line-height/line-height.ts +1 -1
- package/src/plugins/link/config.ts +1 -1
- package/src/plugins/link/link.test.js +1 -1
- package/src/plugins/link/link.test.screenshot.js +1 -1
- package/src/plugins/link/link.ts +1 -1
- package/src/plugins/link/template.ts +1 -1
- package/src/plugins/media/config.ts +1 -1
- package/src/plugins/media/media.ts +1 -1
- package/src/plugins/mobile/config.ts +1 -1
- package/src/plugins/mobile/mobile.test.js +1 -1
- package/src/plugins/mobile/mobile.ts +1 -1
- package/src/plugins/ordered-list/config.ts +1 -1
- package/src/plugins/ordered-list/ordered-list.test.js +1 -1
- package/src/plugins/ordered-list/ordered-list.ts +1 -1
- package/src/plugins/paste/config.ts +1 -1
- package/src/plugins/paste/helpers.ts +1 -1
- package/src/plugins/paste/interface.ts +1 -1
- package/src/plugins/paste/paste.test.js +1 -1
- package/src/plugins/paste/paste.ts +1 -1
- package/src/plugins/paste-from-word/config.ts +1 -1
- package/src/plugins/paste-from-word/paste-from-word.ts +1 -1
- package/src/plugins/paste-storage/paste-storage.less +1 -1
- package/src/plugins/paste-storage/paste-storage.test.js +1 -1
- package/src/plugins/paste-storage/paste-storage.ts +1 -1
- package/src/plugins/placeholder/config.ts +1 -1
- package/src/plugins/placeholder/placeholder.less +1 -1
- package/src/plugins/placeholder/placeholder.test.js +1 -1
- package/src/plugins/placeholder/placeholder.ts +1 -1
- package/src/plugins/plugins.test.js +1 -1
- package/src/plugins/powered-by-jodit/powered-by-jodit.ts +1 -1
- package/src/plugins/preview/preview.test.js +1 -1
- package/src/plugins/preview/preview.ts +1 -1
- package/src/plugins/print/lib/generate-critical-css.ts +1 -1
- package/src/plugins/print/print.ts +1 -1
- package/src/plugins/redo-undo/redo-undo.ts +1 -1
- package/src/plugins/resize-cells/config.ts +1 -1
- package/src/plugins/resize-cells/resize-cells.test.js +1 -1
- package/src/plugins/resize-cells/resize-cells.ts +1 -1
- package/src/plugins/resize-handler/config.ts +1 -1
- package/src/plugins/resize-handler/resize-handler.ts +1 -1
- package/src/plugins/resizer/config.ts +1 -1
- package/src/plugins/resizer/resizer.less +1 -1
- package/src/plugins/resizer/resizer.test.js +1 -1
- package/src/plugins/resizer/resizer.ts +1 -1
- package/src/plugins/search/config.ts +1 -1
- package/src/plugins/search/helpers/index.ts +1 -1
- package/src/plugins/search/helpers/sentence-finder.ts +1 -1
- package/src/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.ts +1 -1
- package/src/plugins/search/interface.ts +1 -1
- package/src/plugins/search/search.test.js +1 -1
- package/src/plugins/search/search.test.screenshot.js +1 -1
- package/src/plugins/search/search.ts +1 -1
- package/src/plugins/search/ui/search.less +1 -1
- package/src/plugins/search/ui/search.ts +1 -1
- package/src/plugins/select/config.ts +1 -1
- package/src/plugins/select/select.ts +1 -1
- package/src/plugins/select-cells/config.ts +1 -1
- package/src/plugins/select-cells/select-cells.ts +1 -1
- package/src/plugins/size/config.ts +1 -1
- package/src/plugins/size/size.less +1 -1
- package/src/plugins/size/size.test.js +1 -1
- package/src/plugins/size/size.ts +1 -1
- package/src/plugins/source/config.ts +1 -1
- package/src/plugins/source/editor/engines/ace.ts +1 -1
- package/src/plugins/source/editor/engines/area.ts +1 -1
- package/src/plugins/source/editor/engines/custom.ts +1 -1
- package/src/plugins/source/editor/engines/index.ts +1 -1
- package/src/plugins/source/editor/factory.ts +1 -1
- package/src/plugins/source/editor/sourceEditor.ts +1 -1
- package/src/plugins/source/source.less +1 -1
- package/src/plugins/source/source.test.js +1 -1
- package/src/plugins/source/source.ts +1 -1
- package/src/plugins/speech-recognize/config.ts +1 -1
- package/src/plugins/speech-recognize/constants.ts +1 -1
- package/src/plugins/speech-recognize/helpers/api.ts +1 -1
- package/src/plugins/speech-recognize/helpers/exec-spell-command.ts +1 -1
- package/src/plugins/speech-recognize/helpers/recognize-manager.ts +1 -1
- package/src/plugins/speech-recognize/helpers/sound.ts +1 -1
- package/src/plugins/speech-recognize/interface.ts +1 -1
- package/src/plugins/speech-recognize/langs/ar.js +1 -1
- package/src/plugins/speech-recognize/langs/cs_cz.js +1 -1
- package/src/plugins/speech-recognize/langs/de.js +1 -1
- package/src/plugins/speech-recognize/langs/es.js +1 -1
- package/src/plugins/speech-recognize/langs/fa.js +1 -1
- package/src/plugins/speech-recognize/langs/fr.js +1 -1
- package/src/plugins/speech-recognize/langs/he.js +1 -1
- package/src/plugins/speech-recognize/langs/hu.js +1 -1
- package/src/plugins/speech-recognize/langs/id.js +1 -1
- package/src/plugins/speech-recognize/langs/index.ts +1 -1
- package/src/plugins/speech-recognize/langs/it.js +1 -1
- package/src/plugins/speech-recognize/langs/ja.js +1 -1
- package/src/plugins/speech-recognize/langs/ko.js +1 -1
- package/src/plugins/speech-recognize/langs/nl.js +1 -1
- package/src/plugins/speech-recognize/langs/pl.js +1 -1
- package/src/plugins/speech-recognize/langs/pt_br.js +1 -1
- package/src/plugins/speech-recognize/langs/ru.js +1 -1
- package/src/plugins/speech-recognize/langs/tr.js +1 -1
- package/src/plugins/speech-recognize/langs/zh_cn.js +1 -1
- package/src/plugins/speech-recognize/langs/zh_tw.js +1 -1
- package/src/plugins/speech-recognize/speech-recognize.ts +1 -1
- package/src/plugins/spellcheck/config.ts +1 -1
- package/src/plugins/spellcheck/langs/ar.js +1 -1
- package/src/plugins/spellcheck/langs/cs_cz.js +1 -1
- package/src/plugins/spellcheck/langs/de.js +1 -1
- package/src/plugins/spellcheck/langs/es.js +1 -1
- package/src/plugins/spellcheck/langs/fa.js +1 -1
- package/src/plugins/spellcheck/langs/fr.js +1 -1
- package/src/plugins/spellcheck/langs/he.js +1 -1
- package/src/plugins/spellcheck/langs/hu.js +1 -1
- package/src/plugins/spellcheck/langs/id.js +1 -1
- package/src/plugins/spellcheck/langs/index.ts +1 -1
- package/src/plugins/spellcheck/langs/it.js +1 -1
- package/src/plugins/spellcheck/langs/ja.js +1 -1
- package/src/plugins/spellcheck/langs/ko.js +1 -1
- package/src/plugins/spellcheck/langs/nl.js +1 -1
- package/src/plugins/spellcheck/langs/pl.js +1 -1
- package/src/plugins/spellcheck/langs/pt_br.js +1 -1
- package/src/plugins/spellcheck/langs/ru.js +1 -1
- package/src/plugins/spellcheck/langs/tr.js +1 -1
- package/src/plugins/spellcheck/langs/zh_cn.js +1 -1
- package/src/plugins/spellcheck/langs/zh_tw.js +1 -1
- package/src/plugins/spellcheck/spellcheck.ts +1 -1
- package/src/plugins/stat/config.ts +1 -1
- package/src/plugins/stat/stat.test.js +1 -1
- package/src/plugins/stat/stat.ts +1 -1
- package/src/plugins/sticky/config.ts +1 -1
- package/src/plugins/sticky/sticky.less +1 -1
- package/src/plugins/sticky/sticky.test.js +1 -1
- package/src/plugins/sticky/sticky.ts +1 -1
- package/src/plugins/symbols/config.ts +1 -1
- package/src/plugins/symbols/langs/ar.js +1 -1
- package/src/plugins/symbols/langs/cs_cz.js +1 -1
- package/src/plugins/symbols/langs/de.js +1 -1
- package/src/plugins/symbols/langs/es.js +1 -1
- package/src/plugins/symbols/langs/fa.js +1 -1
- package/src/plugins/symbols/langs/fr.js +1 -1
- package/src/plugins/symbols/langs/he.js +1 -1
- package/src/plugins/symbols/langs/hu.js +1 -1
- package/src/plugins/symbols/langs/id.js +1 -1
- package/src/plugins/symbols/langs/index.ts +1 -1
- package/src/plugins/symbols/langs/it.js +1 -1
- package/src/plugins/symbols/langs/ja.js +1 -1
- package/src/plugins/symbols/langs/ko.js +1 -1
- package/src/plugins/symbols/langs/nl.js +1 -1
- package/src/plugins/symbols/langs/pl.js +1 -1
- package/src/plugins/symbols/langs/pt_br.js +1 -1
- package/src/plugins/symbols/langs/ru.js +1 -1
- package/src/plugins/symbols/langs/tr.js +1 -1
- package/src/plugins/symbols/langs/zh_cn.js +1 -1
- package/src/plugins/symbols/langs/zh_tw.js +1 -1
- package/src/plugins/symbols/symbols.less +1 -1
- package/src/plugins/symbols/symbols.test.js +1 -1
- package/src/plugins/symbols/symbols.test.screenshot.js +1 -1
- package/src/plugins/symbols/symbols.ts +1 -1
- package/src/plugins/tab/cases/index.ts +1 -1
- package/src/plugins/tab/cases/on-tab-inside-li.ts +1 -1
- package/src/plugins/tab/config.ts +1 -1
- package/src/plugins/tab/tab.test.js +1 -1
- package/src/plugins/tab/tab.ts +1 -1
- package/src/plugins/table/config.ts +1 -1
- package/src/plugins/table/table.less +1 -1
- package/src/plugins/table/table.test.js +1 -1
- package/src/plugins/table/table.ts +1 -1
- package/src/plugins/table-keyboard-navigation/table-keyboard-navigation.ts +1 -1
- package/src/plugins/video/config.ts +1 -1
- package/src/plugins/video/video.ts +1 -1
- package/src/plugins/wrap-nodes/config.ts +1 -1
- package/src/plugins/wrap-nodes/wrap-nodes.test.js +1 -1
- package/src/plugins/wrap-nodes/wrap-nodes.ts +1 -1
- package/src/plugins/xpath/config.ts +1 -1
- package/src/plugins/xpath/xpath.less +1 -1
- package/src/plugins/xpath/xpath.test.js +1 -1
- package/src/plugins/xpath/xpath.ts +1 -1
- package/src/polyfills.ts +1 -1
- package/src/styles/form.less +1 -1
- package/src/styles/icons/index.ts +1 -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/themes/theme.test.screenshot.js +1 -1
- package/src/styles/variables.less +1 -1
- package/src/types/ajax.d.ts +1 -1
- package/src/types/async.d.ts +1 -1
- package/src/types/context.d.ts +1 -1
- package/src/types/core.d.ts +1 -1
- package/src/types/create.d.ts +1 -1
- package/src/types/dialog.d.ts +1 -1
- package/src/types/events.d.ts +1 -1
- package/src/types/file-browser.d.ts +10 -2
- package/src/types/form.d.ts +1 -1
- package/src/types/history.d.ts +1 -1
- package/src/types/index.d.ts +1 -1
- package/src/types/jodit.d.ts +1 -1
- package/src/types/plugin.d.ts +1 -1
- package/src/types/popup.d.ts +1 -1
- package/src/types/select.d.ts +1 -1
- package/src/types/source.d.ts +1 -1
- package/src/types/storage.ts +1 -1
- package/src/types/style.d.ts +1 -1
- package/src/types/toolbar.d.ts +1 -1
- package/src/types/traits.d.ts +1 -1
- package/src/types/types.d.ts +1 -1
- package/src/types/ui.d.ts +1 -1
- package/src/types/uploader.d.ts +1 -1
- package/src/types/view.d.ts +1 -1
- package/src/typings.d.ts +1 -1
- package/types/config.d.ts +1 -1
- package/types/core/async/async.d.ts +1 -1
- package/types/core/async/index.d.ts +1 -1
- package/types/core/component/component.d.ts +1 -1
- package/types/core/component/index.d.ts +1 -1
- package/types/core/component/statuses.d.ts +1 -1
- package/types/core/component/view-component.d.ts +1 -1
- package/types/core/constants.d.ts +1 -1
- package/types/core/create/create.d.ts +1 -1
- package/types/core/create/index.d.ts +1 -1
- package/types/core/decorators/cache/cache.d.ts +1 -1
- package/types/core/decorators/component/component.d.ts +1 -1
- package/types/core/decorators/debounce/debounce.d.ts +1 -1
- package/types/core/decorators/derive/derive.d.ts +1 -1
- package/types/core/decorators/hook/hook.d.ts +1 -1
- package/types/core/decorators/idle/idle.d.ts +1 -1
- package/types/core/decorators/index.d.ts +1 -1
- package/types/core/decorators/nonenumerable/nonenumerable.d.ts +1 -1
- package/types/core/decorators/persistent/persistent.d.ts +1 -1
- package/types/core/decorators/wait/wait.d.ts +1 -1
- package/types/core/decorators/watch/watch.d.ts +1 -1
- package/types/core/dom/dom.d.ts +1 -1
- package/types/core/dom/index.d.ts +1 -1
- package/types/core/dom/lazy-walker.d.ts +1 -1
- package/types/core/event-emitter/event-emitter.d.ts +1 -1
- package/types/core/event-emitter/eventify.d.ts +1 -1
- package/types/core/event-emitter/index.d.ts +1 -1
- package/types/core/event-emitter/observable.d.ts +1 -1
- package/types/core/event-emitter/store.d.ts +1 -1
- package/types/core/global.d.ts +1 -1
- package/types/core/helpers/array/as-array.d.ts +1 -1
- package/types/core/helpers/array/index.d.ts +1 -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 +1 -1
- package/types/core/helpers/async/set-timeout.d.ts +1 -1
- package/types/core/helpers/checker/has-browser-color-picker.d.ts +1 -1
- package/types/core/helpers/checker/index.d.ts +1 -1
- package/types/core/helpers/checker/is-array.d.ts +1 -1
- package/types/core/helpers/checker/is-boolean.d.ts +1 -1
- package/types/core/helpers/checker/is-equal.d.ts +1 -1
- package/types/core/helpers/checker/is-function.d.ts +1 -1
- package/types/core/helpers/checker/is-html-from-word.d.ts +1 -1
- package/types/core/helpers/checker/is-html.d.ts +1 -1
- package/types/core/helpers/checker/is-imp-interface.d.ts +1 -1
- package/types/core/helpers/checker/is-int.d.ts +1 -1
- package/types/core/helpers/checker/is-jodit-object.d.ts +1 -1
- package/types/core/helpers/checker/is-license.d.ts +1 -1
- package/types/core/helpers/checker/is-marker.d.ts +1 -1
- package/types/core/helpers/checker/is-native-function.d.ts +1 -1
- package/types/core/helpers/checker/is-number.d.ts +1 -1
- package/types/core/helpers/checker/is-numeric.d.ts +1 -1
- package/types/core/helpers/checker/is-plain-object.d.ts +1 -1
- package/types/core/helpers/checker/is-promise.d.ts +1 -1
- package/types/core/helpers/checker/is-string.d.ts +1 -1
- package/types/core/helpers/checker/is-url.d.ts +1 -1
- package/types/core/helpers/checker/is-valid-name.d.ts +1 -1
- package/types/core/helpers/checker/is-view-object.d.ts +1 -1
- package/types/core/helpers/checker/is-void.d.ts +1 -1
- package/types/core/helpers/checker/is-window.d.ts +1 -1
- package/types/core/helpers/color/color-to-hex.d.ts +1 -1
- package/types/core/helpers/color/index.d.ts +1 -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 +1 -1
- package/types/core/helpers/html/index.d.ts +1 -1
- package/types/core/helpers/html/nl2br.d.ts +1 -1
- package/types/core/helpers/html/safe-html.d.ts +1 -1
- package/types/core/helpers/html/strip-tags.d.ts +1 -1
- package/types/core/helpers/index.d.ts +1 -1
- package/types/core/helpers/normalize/index.d.ts +1 -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 +1 -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 +1 -1
- package/types/core/helpers/normalize/normalize-size.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-url.d.ts +1 -1
- package/types/core/helpers/size/get-content-width.d.ts +1 -1
- package/types/core/helpers/size/get-scroll-parent.d.ts +1 -1
- package/types/core/helpers/size/index.d.ts +1 -1
- package/types/core/helpers/size/inner-width.d.ts +1 -1
- package/types/core/helpers/size/object-size.d.ts +1 -1
- package/types/core/helpers/size/offset.d.ts +1 -1
- package/types/core/helpers/size/position.d.ts +1 -1
- package/types/core/helpers/string/camel-case.d.ts +1 -1
- package/types/core/helpers/string/fuzzy-search-index.d.ts +1 -1
- package/types/core/helpers/string/i18n.d.ts +1 -1
- package/types/core/helpers/string/index.d.ts +1 -1
- package/types/core/helpers/string/kebab-case.d.ts +1 -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 +1 -1
- package/types/core/helpers/utils/align.d.ts +1 -1
- package/types/core/helpers/utils/append-script.d.ts +1 -1
- package/types/core/helpers/utils/assert.d.ts +1 -1
- package/types/core/helpers/utils/browser.d.ts +1 -1
- package/types/core/helpers/utils/build-query.d.ts +1 -1
- package/types/core/helpers/utils/complete-url.d.ts +1 -1
- package/types/core/helpers/utils/config-proto.d.ts +1 -1
- package/types/core/helpers/utils/convert-media-url-to-video-embed.d.ts +1 -1
- package/types/core/helpers/utils/css.d.ts +1 -1
- package/types/core/helpers/utils/ctrl-key.d.ts +1 -1
- package/types/core/helpers/utils/data-bind.d.ts +1 -1
- package/types/core/helpers/utils/default-language.d.ts +1 -1
- package/types/core/helpers/utils/error/error.d.ts +1 -1
- package/types/core/helpers/utils/error/errors/abort-error.d.ts +1 -1
- package/types/core/helpers/utils/error/errors/connection-error.d.ts +1 -1
- package/types/core/helpers/utils/error/errors/index.d.ts +1 -1
- package/types/core/helpers/utils/error/errors/options-error.d.ts +1 -1
- package/types/core/helpers/utils/error/index.d.ts +1 -1
- package/types/core/helpers/utils/extend.d.ts +1 -1
- package/types/core/helpers/utils/get-class-name.d.ts +1 -1
- package/types/core/helpers/utils/get.d.ts +1 -1
- package/types/core/helpers/utils/human-size-to-bytes.d.ts +1 -1
- package/types/core/helpers/utils/index.d.ts +1 -1
- package/types/core/helpers/utils/mark-deprecated.d.ts +1 -1
- package/types/core/helpers/utils/parse-query.d.ts +1 -1
- package/types/core/helpers/utils/print.d.ts +1 -1
- package/types/core/helpers/utils/reset.d.ts +1 -1
- package/types/core/helpers/utils/scroll-into-view.d.ts +1 -1
- package/types/core/helpers/utils/selector.d.ts +1 -1
- package/types/core/helpers/utils/set.d.ts +1 -1
- package/types/core/helpers/utils/stack.d.ts +1 -1
- package/types/core/helpers/utils/utils.d.ts +1 -1
- package/types/core/helpers/utils/val.d.ts +1 -1
- package/types/core/plugin/index.d.ts +1 -1
- package/types/core/plugin/plugin-system.d.ts +1 -1
- package/types/core/plugin/plugin.d.ts +1 -1
- package/types/core/request/ajax.d.ts +1 -1
- package/types/core/request/config.d.ts +1 -1
- package/types/core/request/index.d.ts +1 -1
- package/types/core/request/response.d.ts +1 -1
- package/types/core/selection/helpers/index.d.ts +1 -1
- package/types/core/selection/helpers/move-node-inside-start.d.ts +1 -1
- package/types/core/selection/helpers/move-the-node-along-the-edge-outward.d.ts +1 -1
- package/types/core/selection/index.d.ts +1 -1
- package/types/core/selection/interface.d.ts +1 -1
- package/types/core/selection/select.d.ts +1 -1
- package/types/core/selection/style/api/extract.d.ts +1 -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 +1 -1
- package/types/core/selection/style/api/get-suit-parent.d.ts +1 -1
- package/types/core/selection/style/api/has-same-style.d.ts +1 -1
- package/types/core/selection/style/api/index.d.ts +1 -1
- package/types/core/selection/style/api/is-inside-invisible-element.d.ts +1 -1
- package/types/core/selection/style/api/is-normal-node.d.ts +1 -1
- package/types/core/selection/style/api/is-same-attributes.d.ts +1 -1
- package/types/core/selection/style/api/is-suit-element.d.ts +1 -1
- package/types/core/selection/style/api/list/toggle-ordered-list.d.ts +1 -1
- package/types/core/selection/style/api/list/wrap-list.d.ts +1 -1
- package/types/core/selection/style/api/toggle-attributes.d.ts +1 -1
- package/types/core/selection/style/api/unwrap-children.d.ts +1 -1
- package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +1 -1
- package/types/core/selection/style/api/wrap.d.ts +1 -1
- package/types/core/selection/style/apply-style.d.ts +1 -1
- package/types/core/selection/style/commit-style.d.ts +1 -1
- package/types/core/selection/style/transactions.d.ts +1 -1
- package/types/core/storage/engines/local-storage-provider.d.ts +1 -1
- package/types/core/storage/engines/memory-storage-provider.d.ts +1 -1
- package/types/core/storage/index.d.ts +1 -1
- package/types/core/storage/storage.d.ts +1 -1
- package/types/core/traits/dlgs.d.ts +1 -1
- package/types/core/traits/elms.d.ts +1 -1
- package/types/core/traits/index.d.ts +1 -1
- package/types/core/traits/mods.d.ts +1 -1
- package/types/core/ui/button/button/button.d.ts +1 -1
- package/types/core/ui/button/group/group.d.ts +1 -1
- package/types/core/ui/button/index.d.ts +1 -1
- package/types/core/ui/button/tooltip/tooltip.d.ts +1 -1
- package/types/core/ui/element.d.ts +1 -1
- package/types/core/ui/form/block/block.d.ts +1 -1
- package/types/core/ui/form/form.d.ts +1 -1
- package/types/core/ui/form/index.d.ts +1 -1
- package/types/core/ui/form/inputs/area/area.d.ts +1 -1
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +1 -1
- package/types/core/ui/form/inputs/file/file.d.ts +1 -1
- package/types/core/ui/form/inputs/index.d.ts +1 -1
- package/types/core/ui/form/inputs/input/input.d.ts +1 -1
- package/types/core/ui/form/inputs/select/select.d.ts +1 -1
- package/types/core/ui/form/validators/index.d.ts +1 -1
- package/types/core/ui/form/validators/input.d.ts +1 -1
- package/types/core/ui/form/validators/select.d.ts +1 -1
- package/types/core/ui/group/group.d.ts +1 -1
- package/types/core/ui/group/index.d.ts +1 -1
- package/types/core/ui/group/list.d.ts +1 -1
- package/types/core/ui/group/separator.d.ts +1 -1
- package/types/core/ui/group/spacer.d.ts +1 -1
- package/types/core/ui/helpers/buttons.d.ts +1 -1
- package/types/core/ui/helpers/get-control-type.d.ts +1 -1
- package/types/core/ui/helpers/get-strong-control-types.d.ts +1 -1
- package/types/core/ui/icon.d.ts +1 -1
- package/types/core/ui/index.d.ts +1 -1
- package/types/core/ui/popup/index.d.ts +1 -1
- package/types/core/ui/popup/popup.d.ts +1 -1
- package/types/core/ui/progress-bar/progress-bar.d.ts +1 -1
- package/types/core/view/view-with-toolbar.d.ts +1 -1
- package/types/core/view/view.d.ts +1 -1
- package/types/index.d.ts +1 -1
- package/types/jodit.d.ts +1 -1
- package/types/langs/index.d.ts +1 -1
- package/types/modules/context-menu/context-menu.d.ts +1 -1
- package/types/modules/dialog/alert.d.ts +1 -1
- package/types/modules/dialog/confirm.d.ts +1 -1
- package/types/modules/dialog/dialog.d.ts +1 -1
- package/types/modules/dialog/index.d.ts +1 -1
- package/types/modules/dialog/prompt.d.ts +1 -1
- package/types/modules/file-browser/builders/context-menu.d.ts +1 -1
- package/types/modules/file-browser/builders/elements-map.d.ts +1 -1
- package/types/modules/file-browser/builders/item.d.ts +1 -1
- package/types/modules/file-browser/config.d.ts +1 -1
- package/types/modules/file-browser/data-provider.d.ts +1 -1
- package/types/modules/file-browser/factories.d.ts +1 -1
- package/types/modules/file-browser/fetch/delete-file.d.ts +1 -1
- package/types/modules/file-browser/fetch/load-items.d.ts +1 -1
- package/types/modules/file-browser/fetch/load-tree.d.ts +1 -1
- package/types/modules/file-browser/file-browser.d.ts +2 -1
- package/types/modules/file-browser/index.d.ts +1 -1
- package/types/modules/file-browser/listeners/native-listeners.d.ts +1 -1
- package/types/modules/file-browser/listeners/self-listeners.d.ts +1 -1
- package/types/modules/file-browser/listeners/state-listeners.d.ts +1 -1
- package/types/modules/file-browser/ui/files/files.d.ts +1 -1
- package/types/modules/file-browser/ui/index.d.ts +1 -1
- package/types/modules/file-browser/ui/tree/tree.d.ts +1 -1
- package/types/modules/history/command.d.ts +1 -1
- package/types/modules/history/history.d.ts +1 -1
- package/types/modules/history/snapshot.d.ts +1 -1
- package/types/modules/history/stack.d.ts +1 -1
- package/types/modules/image-editor/config.d.ts +1 -1
- package/types/modules/image-editor/image-editor.d.ts +1 -1
- package/types/modules/image-editor/templates/form.d.ts +1 -1
- package/types/modules/index.d.ts +1 -1
- package/types/modules/messages/message.d.ts +1 -1
- package/types/modules/messages/messages.d.ts +1 -1
- package/types/modules/status-bar/status-bar.d.ts +1 -1
- package/types/modules/table/table.d.ts +1 -1
- package/types/modules/toolbar/button/button.d.ts +1 -1
- package/types/modules/toolbar/button/content.d.ts +1 -1
- package/types/modules/toolbar/button/index.d.ts +1 -1
- package/types/modules/toolbar/collection/collection.d.ts +1 -1
- package/types/modules/toolbar/collection/editor-collection.d.ts +1 -1
- package/types/modules/toolbar/factory.d.ts +1 -1
- package/types/modules/uploader/config.d.ts +1 -1
- package/types/modules/uploader/helpers/build-data.d.ts +1 -1
- package/types/modules/uploader/helpers/data-uri-to-blob.d.ts +1 -1
- package/types/modules/uploader/helpers/index.d.ts +1 -1
- package/types/modules/uploader/helpers/process-old-browser-drag.d.ts +1 -1
- package/types/modules/uploader/helpers/send-files.d.ts +1 -1
- package/types/modules/uploader/helpers/send.d.ts +1 -1
- package/types/modules/uploader/uploader.d.ts +1 -1
- package/types/modules/widget/color-picker/color-picker.d.ts +1 -1
- package/types/modules/widget/file-selector/file-selector.d.ts +1 -1
- package/types/modules/widget/index.d.ts +1 -1
- package/types/modules/widget/tabs/tabs.d.ts +1 -1
- package/types/plugins/about/about.d.ts +1 -1
- package/types/plugins/add-new-line/add-new-line.d.ts +1 -1
- package/types/plugins/add-new-line/config.d.ts +1 -1
- package/types/plugins/backspace/backspace.d.ts +1 -1
- package/types/plugins/backspace/cases/check-join-neighbors.d.ts +1 -1
- package/types/plugins/backspace/cases/check-join-two-lists.d.ts +1 -1
- package/types/plugins/backspace/cases/check-not-collapsed.d.ts +1 -1
- package/types/plugins/backspace/cases/check-remove-char.d.ts +1 -1
- package/types/plugins/backspace/cases/check-remove-content-not-editable.d.ts +1 -1
- package/types/plugins/backspace/cases/check-remove-empty-neighbor.d.ts +1 -1
- package/types/plugins/backspace/cases/check-remove-empty-parent.d.ts +1 -1
- package/types/plugins/backspace/cases/check-remove-unbreakable-element.d.ts +1 -1
- package/types/plugins/backspace/cases/check-table-cell.d.ts +1 -1
- package/types/plugins/backspace/cases/check-unwrap-first-list-item.d.ts +1 -1
- package/types/plugins/backspace/cases/index.d.ts +1 -1
- package/types/plugins/backspace/config.d.ts +1 -1
- package/types/plugins/backspace/helpers.d.ts +1 -1
- package/types/plugins/backspace/interface.d.ts +1 -1
- package/types/plugins/bold/bold.d.ts +1 -1
- package/types/plugins/bold/config.d.ts +1 -1
- package/types/plugins/bold/interface.d.ts +1 -1
- package/types/plugins/class-span/class-span.d.ts +1 -1
- package/types/plugins/clean-html/clean-html.d.ts +1 -1
- package/types/plugins/clean-html/config.d.ts +1 -1
- package/types/plugins/clean-html/helpers/get-hash.d.ts +1 -1
- package/types/plugins/clean-html/helpers/index.d.ts +1 -1
- package/types/plugins/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.d.ts +1 -1
- package/types/plugins/clean-html/helpers/remove-format/remove-format-for-selection.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/allow-attributes.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/fill-empty-paragraph.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/index.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/remove-empty-text-node.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/remove-inv-text-nodes.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/replace-old-tags.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/sanitize-attributes.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/filters/try-remove-node.d.ts +1 -1
- package/types/plugins/clean-html/helpers/visitor/visit-node-walker.d.ts +1 -1
- package/types/plugins/clipboard/clipboard.d.ts +1 -1
- package/types/plugins/clipboard/config.d.ts +1 -1
- package/types/plugins/color/color.d.ts +1 -1
- package/types/plugins/color/config.d.ts +1 -1
- package/types/plugins/copy-format/copy-format.d.ts +1 -1
- package/types/plugins/drag-and-drop/drag-and-drop.d.ts +1 -1
- package/types/plugins/drag-and-drop-element/config.d.ts +1 -1
- package/types/plugins/drag-and-drop-element/drag-and-drop-element.d.ts +1 -1
- package/types/plugins/dtd/after-insert/index.d.ts +1 -1
- package/types/plugins/dtd/after-insert/remove-extra-br.d.ts +1 -1
- package/types/plugins/dtd/before-insert/check-block-nesting.d.ts +1 -1
- package/types/plugins/dtd/before-insert/index.d.ts +1 -1
- package/types/plugins/dtd/config.d.ts +1 -1
- package/types/plugins/dtd/dtd.d.ts +1 -1
- package/types/plugins/enter/enter.d.ts +1 -1
- package/types/plugins/enter/helpers/check-br.d.ts +1 -1
- package/types/plugins/enter/helpers/check-unsplittable-box.d.ts +1 -1
- package/types/plugins/enter/helpers/get-block-wrapper.d.ts +1 -1
- package/types/plugins/enter/helpers/has-previous-block.d.ts +1 -1
- package/types/plugins/enter/helpers/index.d.ts +1 -1
- package/types/plugins/enter/helpers/insert-paragraph.d.ts +1 -1
- package/types/plugins/enter/helpers/move-cursor-out-from-specal-tags.d.ts +1 -1
- package/types/plugins/enter/helpers/process-empty-li-leaf.d.ts +1 -1
- package/types/plugins/enter/helpers/split-fragment.d.ts +1 -1
- package/types/plugins/enter/helpers/wrap-text.d.ts +1 -1
- package/types/plugins/enter/interface.d.ts +1 -1
- package/types/plugins/file/file.d.ts +1 -1
- package/types/plugins/focus/focus.d.ts +1 -1
- package/types/plugins/font/config.d.ts +1 -1
- package/types/plugins/font/font.d.ts +1 -1
- package/types/plugins/format-block/format-block.d.ts +1 -1
- package/types/plugins/fullsize/config.d.ts +1 -1
- package/types/plugins/fullsize/fullsize.d.ts +1 -1
- package/types/plugins/hotkeys/config.d.ts +1 -1
- package/types/plugins/hotkeys/hotkeys.d.ts +1 -1
- package/types/plugins/hr/hr.d.ts +1 -1
- package/types/plugins/iframe/config.d.ts +1 -1
- package/types/plugins/iframe/iframe.d.ts +1 -1
- package/types/plugins/image/image.d.ts +1 -1
- package/types/plugins/image-processor/config.d.ts +1 -1
- package/types/plugins/image-processor/image-processor.d.ts +1 -1
- package/types/plugins/image-properties/config.d.ts +1 -1
- package/types/plugins/image-properties/image-properties.d.ts +1 -1
- package/types/plugins/image-properties/templates/form.d.ts +1 -1
- package/types/plugins/image-properties/templates/main-tab.d.ts +1 -1
- package/types/plugins/image-properties/templates/position-tab.d.ts +1 -1
- package/types/plugins/indent/config.d.ts +1 -1
- package/types/plugins/indent/helpers.d.ts +1 -1
- package/types/plugins/indent/indent.d.ts +1 -1
- package/types/plugins/index.d.ts +1 -1
- package/types/plugins/inline-popup/config/config.d.ts +1 -1
- package/types/plugins/inline-popup/inline-popup.d.ts +1 -1
- package/types/plugins/justify/justify.d.ts +1 -1
- package/types/plugins/key-arrow-outside/key-arrow-outside.d.ts +1 -1
- package/types/plugins/limit/config.d.ts +1 -1
- package/types/plugins/limit/limit.d.ts +1 -1
- package/types/plugins/line-height/config.d.ts +1 -1
- package/types/plugins/line-height/line-height.d.ts +1 -1
- package/types/plugins/link/config.d.ts +1 -1
- package/types/plugins/link/link.d.ts +1 -1
- package/types/plugins/link/template.d.ts +1 -1
- package/types/plugins/media/config.d.ts +1 -1
- package/types/plugins/media/media.d.ts +1 -1
- package/types/plugins/mobile/config.d.ts +1 -1
- package/types/plugins/mobile/mobile.d.ts +1 -1
- package/types/plugins/ordered-list/config.d.ts +1 -1
- package/types/plugins/ordered-list/ordered-list.d.ts +1 -1
- package/types/plugins/paste/config.d.ts +1 -1
- package/types/plugins/paste/helpers.d.ts +1 -1
- package/types/plugins/paste/interface.d.ts +1 -1
- package/types/plugins/paste/paste.d.ts +1 -1
- package/types/plugins/paste-from-word/config.d.ts +1 -1
- package/types/plugins/paste-from-word/paste-from-word.d.ts +1 -1
- package/types/plugins/paste-storage/paste-storage.d.ts +1 -1
- package/types/plugins/placeholder/config.d.ts +1 -1
- package/types/plugins/placeholder/placeholder.d.ts +1 -1
- package/types/plugins/powered-by-jodit/powered-by-jodit.d.ts +1 -1
- package/types/plugins/preview/preview.d.ts +1 -1
- package/types/plugins/print/lib/generate-critical-css.d.ts +1 -1
- package/types/plugins/print/print.d.ts +1 -1
- package/types/plugins/redo-undo/redo-undo.d.ts +1 -1
- package/types/plugins/resize-cells/config.d.ts +1 -1
- package/types/plugins/resize-cells/resize-cells.d.ts +1 -1
- package/types/plugins/resize-handler/config.d.ts +1 -1
- package/types/plugins/resize-handler/resize-handler.d.ts +1 -1
- package/types/plugins/resizer/config.d.ts +1 -1
- package/types/plugins/resizer/resizer.d.ts +1 -1
- package/types/plugins/search/config.d.ts +1 -1
- package/types/plugins/search/helpers/index.d.ts +1 -1
- package/types/plugins/search/helpers/sentence-finder.d.ts +1 -1
- package/types/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.d.ts +1 -1
- package/types/plugins/search/interface.d.ts +1 -1
- package/types/plugins/search/search.d.ts +1 -1
- package/types/plugins/search/ui/search.d.ts +1 -1
- package/types/plugins/select/config.d.ts +1 -1
- package/types/plugins/select/select.d.ts +1 -1
- package/types/plugins/select-cells/config.d.ts +1 -1
- package/types/plugins/select-cells/select-cells.d.ts +1 -1
- package/types/plugins/size/config.d.ts +1 -1
- package/types/plugins/size/size.d.ts +1 -1
- package/types/plugins/source/config.d.ts +1 -1
- package/types/plugins/source/editor/engines/ace.d.ts +1 -1
- package/types/plugins/source/editor/engines/area.d.ts +1 -1
- package/types/plugins/source/editor/engines/index.d.ts +1 -1
- package/types/plugins/source/editor/factory.d.ts +1 -1
- package/types/plugins/source/editor/sourceEditor.d.ts +1 -1
- package/types/plugins/source/source.d.ts +1 -1
- package/types/plugins/spellcheck/config.d.ts +1 -1
- package/types/plugins/spellcheck/spellcheck.d.ts +1 -1
- package/types/plugins/stat/config.d.ts +1 -1
- package/types/plugins/stat/stat.d.ts +1 -1
- package/types/plugins/sticky/config.d.ts +1 -1
- package/types/plugins/sticky/sticky.d.ts +1 -1
- package/types/plugins/symbols/config.d.ts +1 -1
- package/types/plugins/symbols/symbols.d.ts +1 -1
- package/types/plugins/tab/cases/index.d.ts +1 -1
- package/types/plugins/tab/cases/on-tab-inside-li.d.ts +1 -1
- package/types/plugins/tab/config.d.ts +1 -1
- package/types/plugins/tab/tab.d.ts +1 -1
- package/types/plugins/table/config.d.ts +1 -1
- package/types/plugins/table/table.d.ts +1 -1
- package/types/plugins/table-keyboard-navigation/table-keyboard-navigation.d.ts +1 -1
- package/types/plugins/video/config.d.ts +1 -1
- package/types/plugins/video/video.d.ts +1 -1
- package/types/plugins/wrap-nodes/config.d.ts +1 -1
- package/types/plugins/wrap-nodes/wrap-nodes.d.ts +1 -1
- package/types/plugins/xpath/config.d.ts +1 -1
- package/types/plugins/xpath/xpath.d.ts +1 -1
- package/types/styles/icons/index.d.ts +1 -1
- package/types/types/ajax.d.ts +1 -1
- package/types/types/async.d.ts +1 -1
- package/types/types/context.d.ts +1 -1
- package/types/types/core.d.ts +1 -1
- package/types/types/create.d.ts +1 -1
- package/types/types/dialog.d.ts +1 -1
- package/types/types/events.d.ts +1 -1
- package/types/types/file-browser.d.ts +10 -2
- package/types/types/form.d.ts +1 -1
- package/types/types/history.d.ts +1 -1
- package/types/types/index.d.ts +1 -1
- package/types/types/jodit.d.ts +1 -1
- package/types/types/plugin.d.ts +1 -1
- package/types/types/popup.d.ts +1 -1
- package/types/types/select.d.ts +1 -1
- package/types/types/source.d.ts +1 -1
- package/types/types/storage.d.ts +1 -1
- package/types/types/storage.ts +1 -1
- package/types/types/style.d.ts +1 -1
- package/types/types/toolbar.d.ts +1 -1
- package/types/types/traits.d.ts +1 -1
- package/types/types/types.d.ts +1 -1
- package/types/types/ui.d.ts +1 -1
- package/types/types/uploader.d.ts +1 -1
- package/types/types/view.d.ts +1 -1
package/build/jodit.es2018.js
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.24.
|
|
4
|
+
* Version: v3.24.4
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -36,7 +36,7 @@ module.exports["default"] = ["Napiš něco","O Jodit","Editor Jodit","Jodit Uži
|
|
|
36
36
|
/***/ 75178:
|
|
37
37
|
/***/ (function(module) {
|
|
38
38
|
|
|
39
|
-
module.exports["default"] = ["Bitte geben Sie einen Text ein","Über Jodit","Jodit Editor","Das Jodit Benutzerhandbuch","beinhaltet ausführliche Informationen wie Sie den Editor verwenden können.","Für Informationen zur Lizenz, besuchen Sie bitte unsere Web-Präsenz:","Vollversion kaufen","Copyright © XDSoft.net - Chupurnov Valeriy. Alle Rechte vorbehalten.","Anker","In neuer Registerkarte öffnen","Editor in voller Größe öffnen","Formatierung löschen","Füllfarbe oder Textfarbe ändern","Wiederholen","Rückgängig machen","Fett","Kursiv","Unsortierte Liste einfügen","Nummerierte Liste einfügen","Mittig ausrichten","Blocksatz","Links ausrichten","Rechts ausrichten","Horizontale Linie einfügen","Bild einfügen","Datei einfügen","Youtube/vimeo Video einfügen","Link einfügen","Schriftgröße","Schriftfamilie","Formatblock einfügen","Normal","Überschrift 1","Überschrift 2","Überschrift 3","Überschrift 4","Zitat","Code","Einfügen","Tabelle einfügen","Einzug verkleinern","Einzug vergrößern","Sonderzeichen auswählen","Sonderzeichen einfügen","Format kopieren","Änderungsmodus","Ränder","Oben","Rechts","Unten","Links","CSS Stil","CSS Klassen","Ausrichtung","Rechts","Zentriert","Links","Keine","Pfad","Titel","Alternativer Text","Link","Link in neuem Tab öffnen","Bild","Datei","Fortgeschritten","Bildeigenschaften","Abbrechen","OK","Dateibrowser","Fehler beim Laden der Liste","Fehler beim Laden der Ordner","Sind Sie sicher?","Geben Sie den Verzeichnisnamen ein","Verzeichnis erstellen","Typname","Bild hier hinziehen","Datei löschen","oder hier klicken","Alternativtext","Hochladen","Auswählen","Hintergrund","Text","Oben","Mittig","Unten","Spalte davor einfügen","Spalte danach einfügen","Zeile oberhalb einfügen","Zeile unterhalb einfügen","Tabelle löschen","Zeile löschen","Spalte löschen","Zelle leeren","Zeichen: %d","Wörter: %d","Durchstreichen","Unterstreichen","
|
|
39
|
+
module.exports["default"] = ["Bitte geben Sie einen Text ein","Über Jodit","Jodit Editor","Das Jodit Benutzerhandbuch","beinhaltet ausführliche Informationen wie Sie den Editor verwenden können.","Für Informationen zur Lizenz, besuchen Sie bitte unsere Web-Präsenz:","Vollversion kaufen","Copyright © XDSoft.net - Chupurnov Valeriy. Alle Rechte vorbehalten.","Anker","In neuer Registerkarte öffnen","Editor in voller Größe öffnen","Formatierung löschen","Füllfarbe oder Textfarbe ändern","Wiederholen","Rückgängig machen","Fett","Kursiv","Unsortierte Liste einfügen","Nummerierte Liste einfügen","Mittig ausrichten","Blocksatz","Links ausrichten","Rechts ausrichten","Horizontale Linie einfügen","Bild einfügen","Datei einfügen","Youtube/vimeo Video einfügen","Link einfügen","Schriftgröße","Schriftfamilie","Formatblock einfügen","Normal","Überschrift 1","Überschrift 2","Überschrift 3","Überschrift 4","Zitat","Code","Einfügen","Tabelle einfügen","Einzug verkleinern","Einzug vergrößern","Sonderzeichen auswählen","Sonderzeichen einfügen","Format kopieren","Änderungsmodus","Ränder","Oben","Rechts","Unten","Links","CSS Stil","CSS Klassen","Ausrichtung","Rechts","Zentriert","Links","Keine","Pfad","Titel","Alternativer Text","Link","Link in neuem Tab öffnen","Bild","Datei","Fortgeschritten","Bildeigenschaften","Abbrechen","OK","Dateibrowser","Fehler beim Laden der Liste","Fehler beim Laden der Ordner","Sind Sie sicher?","Geben Sie den Verzeichnisnamen ein","Verzeichnis erstellen","Typname","Bild hier hinziehen","Datei löschen","oder hier klicken","Alternativtext","Hochladen","Auswählen","Hintergrund","Text","Oben","Mittig","Unten","Spalte davor einfügen","Spalte danach einfügen","Zeile oberhalb einfügen","Zeile unterhalb einfügen","Tabelle löschen","Zeile löschen","Spalte löschen","Zelle leeren","Zeichen: %d","Wörter: %d","Durchstreichen","Unterstreichen","Hochstellen","Tiefstellen","Auswahl ausschneiden","Alles markieren","Pause","Suche nach","Ersetzen durch","Ersetzen","Einfügen","Wählen Sie den Inhalt zum Einfügen aus","HTML","Fett gedruckt","Kursiv","Bürste","Verknüpfung","Rückgängig machen","Wiederholen","Tabelle","Bild","Radiergummi","Absatz","Schriftgröße","Video","Schriftart","Über","Drucken","Unterstreichen","Durchstreichen","Einzug","Herausstellen","Vollgröße","Schrumpfen","die Linie","Liste von","Nummerierte Liste","Schneiden","Wählen Sie Alle aus","Code einbetten","Link öffnen","Link bearbeiten","Nofollow-Attribut","Link entfernen","Aktualisieren","Bearbeiten","Ansehen","URL","Bearbeiten","Horizontale Ausrichtung","Filter","Sortieren nach geändert","Nach Name sortieren","Nach Größe sortiert","Ordner hinzufügen","Wiederherstellen","Speichern","Speichern als","Größe ändern","Größe anpassen","Breite","Höhe","Seitenverhältnis beibehalten","Ja","Nein","Entfernen","Markieren","Markieren: %s","Vertikale Ausrichtung","Unterteilen","Vereinen","Spalte hinzufügen","Zeile hinzufügen",null,"Löschen","Vertikal unterteilen","Horizontal unterteilen","Rand","Ihr Text ähnelt HTML-Code. Als HTML beibehalten?","Als HTML einfügen?","Original speichern","Als Text einfügen","Nur Text einfügen","Sie können nur Ihre eigenen Bilder bearbeiten. Dieses Bild auf den Host herunterladen?","Das Bild wurde erfolgreich auf den Server hochgeladen!","Palette","In diesem Verzeichnis befinden sich keine Dateien.","Umbenennen","Geben Sie einen neuen Namen ein","Vorschau","Herunterladen","Aus Zwischenablage einfügen","Ihr Browser unterstützt keinen direkten Zugriff auf die Zwischenablage.","Auswahl kopieren","Kopieren","Radius für abgerundete Ecken","Alle anzeigen","Anwenden","Bitte füllen Sie dieses Feld aus","Bitte geben Sie eine Web-Adresse ein","Standard","Kreis","Punkte","Quadrate","Suchen","Suche vorherige","Weitersuchen","Der Inhalt, den Sie einfügen, stammt aus einem Microsoft Word / Excel-Dokument. Möchten Sie das Format erhalten oder bereinigen?","In Word formatierter Text erkannt","Säubern","className (CSS) einfügen","Drücken Sie Alt für benutzerdefinierte Größenanpassung"]
|
|
40
40
|
|
|
41
41
|
/***/ }),
|
|
42
42
|
|
|
@@ -50,14 +50,14 @@ module.exports["default"] = {"Type something":"Start writing...","pencil":"Edit"
|
|
|
50
50
|
/***/ 22999:
|
|
51
51
|
/***/ (function(module) {
|
|
52
52
|
|
|
53
|
-
module.exports["default"] = ["Escriba algo...","Acerca de Jodit","Jodit Editor","Guía de usuario Jodit","contiene ayuda detallada para el uso.","Para información sobre la licencia, por favor visite nuestro sitio:","Compre la versión completa","Copyright © XDSoft.net - Chupurnov Valeriy. Todos los derechos reservados.","Anclar","Abrir en nueva pestaña","Abrir editor en pantalla completa","Limpiar formato","Color de relleno o de letra","Rehacer","Deshacer","Negrita","Cursiva","Insertar lista no ordenada","Insertar lista ordenada","Alinear Centrado","Alinear Justificado","Alinear Izquierda","Alinear Derecha","Insertar línea horizontal","Insertar imagen","Insertar archivo","Insertar video de Youtube/vimeo","Insertar vínculo","Tamaño de letra","Familia de letra","Insertar bloque","Normal","Encabezado 1","Encabezado 2","Encabezado 3","Encabezado 4","Cita","Código","Insertar","Insertar tabla","Disminuir sangría","Aumentar sangría","Seleccionar caracter especial","Insertar caracter especial","Copiar formato","Cambiar modo","Márgenes","arriba","derecha","abajo","izquierda","Estilos CSS","Clases CSS","Alinear","Derecha","Centrado","Izquierda","--No Establecido--","Fuente","Título","Texto Alternativo","Vínculo","Abrir vínculo en nueva pestaña","Imagen","Archivo","Avanzado","Propiedades de imagen","Cancelar","Aceptar","Buscar archivo","Error al cargar la lista","Error al cargar las carpetas","¿Está seguro?","Entre nombre de carpeta","Crear carpeta","Entre el nombre","Soltar imagen","Soltar archivo","o click","Texto alternativo","Subir","Buscar","Fondo","Texto","Arriba","Centro","Abajo","Insertar columna antes","Interar columna después","Insertar fila arriba","Insertar fila debajo","Borrar tabla","Borrar fila","Borrar columna","Vaciar celda","Caracteres: %d","Palabras: %d","Tachado","Subrayado","superíndice","subíndice","Cortar selección","Seleccionar todo","Pausa","Buscar","Reemplazar con","Reemplazar","Pegar","Seleccionar contenido para pegar","HTML","negrita","cursiva","Brocha","Vínculo","deshacer","rehacer","Tabla","Imagen","Borrar","Párrafo","Tamaño de letra","Video","Letra","Acerca de","Imprimir","subrayar","tachar","sangría","quitar sangría","Tamaño completo","encoger","línea horizontal","lista sin ordenar","lista ordenada","Cortar","Seleccionar todo","Incluir código","Abrir vínculo","Editar vínculo","No seguir","Desvincular","Actualizar","Para editar","Ver","URL","Editar","Alineación horizontal","
|
|
53
|
+
module.exports["default"] = ["Escriba algo...","Acerca de Jodit","Jodit Editor","Guía de usuario Jodit","contiene ayuda detallada para el uso.","Para información sobre la licencia, por favor visite nuestro sitio:","Compre la versión completa","Copyright © XDSoft.net - Chupurnov Valeriy. Todos los derechos reservados.","Anclar","Abrir en nueva pestaña","Abrir editor en pantalla completa","Limpiar formato","Color de relleno o de letra","Rehacer","Deshacer","Negrita","Cursiva","Insertar lista no ordenada","Insertar lista ordenada","Alinear Centrado","Alinear Justificado","Alinear Izquierda","Alinear Derecha","Insertar línea horizontal","Insertar imagen","Insertar archivo","Insertar video de Youtube/vimeo","Insertar vínculo","Tamaño de letra","Familia de letra","Insertar bloque","Normal","Encabezado 1","Encabezado 2","Encabezado 3","Encabezado 4","Cita","Código","Insertar","Insertar tabla","Disminuir sangría","Aumentar sangría","Seleccionar caracter especial","Insertar caracter especial","Copiar formato","Cambiar modo","Márgenes","arriba","derecha","abajo","izquierda","Estilos CSS","Clases CSS","Alinear","Derecha","Centrado","Izquierda","--No Establecido--","Fuente","Título","Texto Alternativo","Vínculo","Abrir vínculo en nueva pestaña","Imagen","Archivo","Avanzado","Propiedades de imagen","Cancelar","Aceptar","Buscar archivo","Error al cargar la lista","Error al cargar las carpetas","¿Está seguro?","Entre nombre de carpeta","Crear carpeta","Entre el nombre","Soltar imagen","Soltar archivo","o click","Texto alternativo","Subir","Buscar","Fondo","Texto","Arriba","Centro","Abajo","Insertar columna antes","Interar columna después","Insertar fila arriba","Insertar fila debajo","Borrar tabla","Borrar fila","Borrar columna","Vaciar celda","Caracteres: %d","Palabras: %d","Tachado","Subrayado","superíndice","subíndice","Cortar selección","Seleccionar todo","Pausa","Buscar","Reemplazar con","Reemplazar","Pegar","Seleccionar contenido para pegar","HTML","negrita","cursiva","Brocha","Vínculo","deshacer","rehacer","Tabla","Imagen","Borrar","Párrafo","Tamaño de letra","Video","Letra","Acerca de","Imprimir","subrayar","tachar","sangría","quitar sangría","Tamaño completo","encoger","línea horizontal","lista sin ordenar","lista ordenada","Cortar","Seleccionar todo","Incluir código","Abrir vínculo","Editar vínculo","No seguir","Desvincular","Actualizar","Para editar","Ver","URL","Editar","Alineación horizontal","Filtrar","Ordenar por fecha modificación","Ordenar por nombre","Ordenar por tamaño","Agregar carpeta","Resetear","Guardar","Guardar como...","Redimensionar","Recortar","Ancho","Alto","Mantener relación de aspecto","Si","No","Quitar","Seleccionar","Seleccionar: %s","Alineación vertical","Dividir","Mezclar","Agregar columna","Agregar fila",null,"Borrar","Dividir vertical","Dividir horizontal","Borde","El código es similar a HTML. ¿Mantener como HTML?","Pegar como HTML?","Mantener","Insertar como texto","Insertar solo texto","Solo puedes editar tus propias imágenes. ¿Descargar esta imagen en el servidor?","¡La imagen se ha subido correctamente al servidor!","paleta","No hay archivos en este directorio.","renombrar","Ingresa un nuevo nombre","avance","Descargar","Pegar desde el portapapeles","Su navegador no soporta el acceso directo en el portapapeles.","Selección de copia","copia","Radio frontera","Mostrar todos los","Aplicar","Por favor, rellene este campo","Por favor, introduzca una dirección web","Predeterminado","Círculo","Punto","Cuadro","Encontrar","Buscar Anterior","Buscar Siguiente","El contenido pegado proviene de un documento de Microsoft Word/Excel. ¿Desea mantener el formato o limpiarlo?","Pegado desde Word detectado","Limpiar","Insertar nombre de clase","Presione Alt para cambiar el tamaño personalizado"]
|
|
54
54
|
|
|
55
55
|
/***/ }),
|
|
56
56
|
|
|
57
57
|
/***/ 34145:
|
|
58
58
|
/***/ (function(module) {
|
|
59
59
|
|
|
60
|
-
module.exports["default"] = ["Ecrivez ici","A propos de Jodit","Editeur Jodit","Guide de l'utilisateur","Aide détaillée à l'utilisation","Consulter la licence sur notre site web:","Acheter la version complète","Copyright © XDSoft.net - Chupurnov Valeriy. Tous droits réservés.","Ancre","Ouvrir dans un nouvel onglet","Ouvrir l'éditeur en pleine page","Supprimer le formattage","Modifier la couleur du fond ou du texte","Refaire","Défaire","Gras","Italique","Liste non ordonnée","Liste ordonnée","Centrer","Justifier","Aligner à gauche ","Aligner à droite","Insérer une ligne horizontale","Insérer une image","Insérer un fichier","Insérer une vidéo","Insérer un lien","Taille des caractères","Famille des caractères","Bloc formatté","Normal","Titre 1","Titre 2","Titre 3","Titre 4","Citation","Code","Insérer","Insérer un tableau","Diminuer le retrait","Retrait plus","Sélectionnez un caractère spécial","Insérer un caractère spécial","Cloner le format","Mode wysiwyg <-> code html","Marges","haut","droite","Bas","gauche","Styles","Classes","Alignement","Droite","Centre","Gauche","--Non disponible--","Source","Titre","Alternative","Lien","Ouvrir le lien dans un nouvel onglet","Image","fichier","Avancé","Propriétés de l'image","Annuler","OK","Explorateur de fichiers","Erreur de liste de chargement","Erreur de dossier de chargement","Etes-vous sûrs ?","Entrer le
|
|
60
|
+
module.exports["default"] = ["Ecrivez ici","A propos de Jodit","Editeur Jodit","Guide de l'utilisateur","Aide détaillée à l'utilisation","Consulter la licence sur notre site web:","Acheter la version complète","Copyright © XDSoft.net - Chupurnov Valeriy. Tous droits réservés.","Ancre","Ouvrir dans un nouvel onglet","Ouvrir l'éditeur en pleine page","Supprimer le formattage","Modifier la couleur du fond ou du texte","Refaire","Défaire","Gras","Italique","Liste non ordonnée","Liste ordonnée","Centrer","Justifier","Aligner à gauche ","Aligner à droite","Insérer une ligne horizontale","Insérer une image","Insérer un fichier","Insérer une vidéo","Insérer un lien","Taille des caractères","Famille des caractères","Bloc formatté","Normal","Titre 1","Titre 2","Titre 3","Titre 4","Citation","Code","Insérer","Insérer un tableau","Diminuer le retrait","Retrait plus","Sélectionnez un caractère spécial","Insérer un caractère spécial","Cloner le format","Mode wysiwyg <-> code html","Marges","haut","droite","Bas","gauche","Styles","Classes","Alignement","Droite","Centre","Gauche","--Non disponible--","Source","Titre","Alternative","Lien","Ouvrir le lien dans un nouvel onglet","Image","fichier","Avancé","Propriétés de l'image","Annuler","OK","Explorateur de fichiers","Erreur de liste de chargement","Erreur de dossier de chargement","Etes-vous sûrs ?","Entrer le nom de dossier","Créer un dossier","type de fichier","Coller une image","Déposer un fichier","ou cliquer","Texte de remplacemement","Charger","Chercher","Arrière-plan","Texte","Haut","Milieu","Bas","Insérer une colonne avant","Insérer une colonne après","Insérer une ligne au dessus","Insérer une ligne en dessous","Supprimer le tableau","Supprimer la ligne","Supprimer la colonne","Vider la cellule","Symboles: %d","Mots: %d","Barrer","Souligner","exposant","indice","Couper la sélection","Tout sélectionner","Pause","Rechercher","Remplacer par","Remplacer","Coller","Choisissez le contenu à coller","la source","gras","italique","pinceau","lien","annuler","refaire","tableau","image","gomme","clause","taille de police","Video","police","à propos de l'éditeur","impression","souligné","barré","indentation","retrait","taille réelle","taille conventionnelle","la ligne","Liste","Liste numérotée","Couper","Sélectionner tout",null,"Ouvrir le lien","Modifier le lien","Attribut Nofollow","Supprimer le lien","Mettre à jour","Pour éditer","Voir","URL",null,"Alignement horizontal","Filtre","Trier par modification","Trier par nom","Trier par taille","Créer le dossier","Restaurer","Sauvegarder","Enregistrer sous","Changer la taille","Taille de garniture","Largeur","Hauteur","Garder les proportions","Oui","Non","Supprimer","Mettre en évidence","Mettre en évidence: %s","Alignement vertical","Split","aller","Ajouter une colonne","Ajouter une rangée",null,"Effacer","Split vertical","Split horizontal","Bordure","Votre texte que vous essayez de coller est similaire au HTML. Collez-le en HTML?","Coller en HTML?","Sauvegarder l'original","Coller en tant que texte","Coller le texte seulement","Vous ne pouvez éditer que vos propres images. Téléchargez cette image sur l'hôte?","L'image a été téléchargée avec succès sur le serveur!","Palette","Il n'y a aucun fichier dans ce répertoire.","renommer","Entrez un nouveau nom","Aperçu","Télécharger","Coller à partir du presse-papiers","Votre navigateur ne prend pas en charge l'accès direct au presse-papiers.","Copier la sélection","copie","Rayon des bordures","Afficher tous","Appliquer","Veuillez remplir ce champ","Veuillez entrer une adresse web","Par défaut","Cercle","Point","Quadratique","Trouver","Précédent","Suivant","Le contenu que vous insérez provient d'un document Microsoft Word / Excel. Voulez-vous enregistrer le format ou l'effacer?","C'est peut-être un fragment de Word ou Excel","Nettoyer","Insérer un nom de classe","Appuyez sur Alt pour un redimensionnement personnalisé"]
|
|
61
61
|
|
|
62
62
|
/***/ }),
|
|
63
63
|
|
|
@@ -705,7 +705,7 @@ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 179
|
|
|
705
705
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
706
706
|
/* harmony export */ "gn": function() { return /* binding */ __decorate; }
|
|
707
707
|
/* harmony export */ });
|
|
708
|
-
/* unused harmony exports __extends, __assign, __rest, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn */
|
|
708
|
+
/* unused harmony exports __extends, __assign, __rest, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn */
|
|
709
709
|
var extendStatics = function (d, b) {
|
|
710
710
|
extendStatics = Object.setPrototypeOf ||
|
|
711
711
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -758,6 +758,64 @@ function __decorate(decorators, target, key, desc) {
|
|
|
758
758
|
function __param(paramIndex, decorator) {
|
|
759
759
|
return function (target, key) { decorator(target, key, paramIndex); };
|
|
760
760
|
}
|
|
761
|
+
function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
762
|
+
function accept(f) { if (f !== void 0 && typeof f !== "function")
|
|
763
|
+
throw new TypeError("Function expected"); return f; }
|
|
764
|
+
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
765
|
+
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
766
|
+
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
767
|
+
var _, done = false;
|
|
768
|
+
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
769
|
+
var context = {};
|
|
770
|
+
for (var p in contextIn)
|
|
771
|
+
context[p] = p === "access" ? {} : contextIn[p];
|
|
772
|
+
for (var p in contextIn.access)
|
|
773
|
+
context.access[p] = contextIn.access[p];
|
|
774
|
+
context.addInitializer = function (f) { if (done)
|
|
775
|
+
throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
776
|
+
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
777
|
+
if (kind === "accessor") {
|
|
778
|
+
if (result === void 0)
|
|
779
|
+
continue;
|
|
780
|
+
if (result === null || typeof result !== "object")
|
|
781
|
+
throw new TypeError("Object expected");
|
|
782
|
+
if (_ = accept(result.get))
|
|
783
|
+
descriptor.get = _;
|
|
784
|
+
if (_ = accept(result.set))
|
|
785
|
+
descriptor.set = _;
|
|
786
|
+
if (_ = accept(result.init))
|
|
787
|
+
initializers.push(_);
|
|
788
|
+
}
|
|
789
|
+
else if (_ = accept(result)) {
|
|
790
|
+
if (kind === "field")
|
|
791
|
+
initializers.push(_);
|
|
792
|
+
else
|
|
793
|
+
descriptor[key] = _;
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
if (target)
|
|
797
|
+
Object.defineProperty(target, contextIn.name, descriptor);
|
|
798
|
+
done = true;
|
|
799
|
+
}
|
|
800
|
+
;
|
|
801
|
+
function __runInitializers(thisArg, initializers, value) {
|
|
802
|
+
var useValue = arguments.length > 2;
|
|
803
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
804
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
805
|
+
}
|
|
806
|
+
return useValue ? value : void 0;
|
|
807
|
+
}
|
|
808
|
+
;
|
|
809
|
+
function __propKey(x) {
|
|
810
|
+
return typeof x === "symbol" ? x : "".concat(x);
|
|
811
|
+
}
|
|
812
|
+
;
|
|
813
|
+
function __setFunctionName(f, name, prefix) {
|
|
814
|
+
if (typeof name === "symbol")
|
|
815
|
+
name = name.description ? "[".concat(name.description, "]") : "";
|
|
816
|
+
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
817
|
+
}
|
|
818
|
+
;
|
|
761
819
|
function __metadata(metadataKey, metadataValue) {
|
|
762
820
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
763
821
|
return Reflect.metadata(metadataKey, metadataValue);
|
|
@@ -955,7 +1013,7 @@ function __asyncGenerator(thisArg, _arguments, generator) {
|
|
|
955
1013
|
function __asyncDelegator(o) {
|
|
956
1014
|
var i, p;
|
|
957
1015
|
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
958
|
-
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done:
|
|
1016
|
+
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }
|
|
959
1017
|
}
|
|
960
1018
|
function __asyncValues(o) {
|
|
961
1019
|
if (!Symbol.asyncIterator)
|
|
@@ -1030,7 +1088,7 @@ function __classPrivateFieldIn(state, receiver) {
|
|
|
1030
1088
|
/*!
|
|
1031
1089
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1032
1090
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1033
|
-
* Copyright (c) 2013-
|
|
1091
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1034
1092
|
*/
|
|
1035
1093
|
|
|
1036
1094
|
|
|
@@ -1395,7 +1453,7 @@ var external_assert_ = __webpack_require__(52378);
|
|
|
1395
1453
|
/*!
|
|
1396
1454
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1397
1455
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1398
|
-
* Copyright (c) 2013-
|
|
1456
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1399
1457
|
*/
|
|
1400
1458
|
|
|
1401
1459
|
|
|
@@ -1615,7 +1673,7 @@ class Async {
|
|
|
1615
1673
|
/*!
|
|
1616
1674
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1617
1675
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1618
|
-
* Copyright (c) 2013-
|
|
1676
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1619
1677
|
*/
|
|
1620
1678
|
|
|
1621
1679
|
|
|
@@ -1636,7 +1694,7 @@ class Async {
|
|
|
1636
1694
|
/*!
|
|
1637
1695
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1638
1696
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1639
|
-
* Copyright (c) 2013-
|
|
1697
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1640
1698
|
*/
|
|
1641
1699
|
|
|
1642
1700
|
|
|
@@ -1769,7 +1827,7 @@ var component = __webpack_require__(45113);
|
|
|
1769
1827
|
/*!
|
|
1770
1828
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1771
1829
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1772
|
-
* Copyright (c) 2013-
|
|
1830
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1773
1831
|
*/
|
|
1774
1832
|
|
|
1775
1833
|
class ViewComponent extends component/* Component */.w {
|
|
@@ -1801,7 +1859,7 @@ class ViewComponent extends component/* Component */.w {
|
|
|
1801
1859
|
/*!
|
|
1802
1860
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1803
1861
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1804
|
-
* Copyright (c) 2013-
|
|
1862
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1805
1863
|
*/
|
|
1806
1864
|
|
|
1807
1865
|
|
|
@@ -1820,7 +1878,7 @@ class ViewComponent extends component/* Component */.w {
|
|
|
1820
1878
|
/*!
|
|
1821
1879
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1822
1880
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1823
|
-
* Copyright (c) 2013-
|
|
1881
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1824
1882
|
*/
|
|
1825
1883
|
const STATUSES = {
|
|
1826
1884
|
beforeInit: 'beforeInit',
|
|
@@ -1893,7 +1951,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1893
1951
|
/*!
|
|
1894
1952
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1895
1953
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1896
|
-
* Copyright (c) 2013-
|
|
1954
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1897
1955
|
*/
|
|
1898
1956
|
const INVISIBLE_SPACE = '\uFEFF';
|
|
1899
1957
|
const NBSP_SPACE = '\u00A0';
|
|
@@ -2032,7 +2090,7 @@ const SOURCE_CONSUMER = 'source-consumer';
|
|
|
2032
2090
|
/*!
|
|
2033
2091
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2034
2092
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2035
|
-
* Copyright (c) 2013-
|
|
2093
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2036
2094
|
*/
|
|
2037
2095
|
function component(constructorFunction) {
|
|
2038
2096
|
class newConstructorFunction extends constructorFunction {
|
|
@@ -2069,7 +2127,7 @@ function component(constructorFunction) {
|
|
|
2069
2127
|
/*!
|
|
2070
2128
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2071
2129
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2072
|
-
* Copyright (c) 2013-
|
|
2130
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2073
2131
|
*/
|
|
2074
2132
|
|
|
2075
2133
|
|
|
@@ -2139,7 +2197,7 @@ var helpers = __webpack_require__(40332);
|
|
|
2139
2197
|
/*!
|
|
2140
2198
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2141
2199
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2142
|
-
* Copyright (c) 2013-
|
|
2200
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2143
2201
|
*/
|
|
2144
2202
|
|
|
2145
2203
|
function cache(target, name, descriptor) {
|
|
@@ -2172,7 +2230,7 @@ var core_component = __webpack_require__(90549);
|
|
|
2172
2230
|
/*!
|
|
2173
2231
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2174
2232
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2175
|
-
* Copyright (c) 2013-
|
|
2233
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2176
2234
|
*/
|
|
2177
2235
|
|
|
2178
2236
|
|
|
@@ -2197,7 +2255,7 @@ var error = __webpack_require__(14582);
|
|
|
2197
2255
|
/*!
|
|
2198
2256
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2199
2257
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2200
|
-
* Copyright (c) 2013-
|
|
2258
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2201
2259
|
*/
|
|
2202
2260
|
|
|
2203
2261
|
|
|
@@ -2216,7 +2274,7 @@ function hook(status) {
|
|
|
2216
2274
|
/*!
|
|
2217
2275
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2218
2276
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2219
|
-
* Copyright (c) 2013-
|
|
2277
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2220
2278
|
*/
|
|
2221
2279
|
const nonenumerable = (target, propertyKey) => {
|
|
2222
2280
|
const descriptor = Object.getOwnPropertyDescriptor(target, propertyKey) || {};
|
|
@@ -2240,7 +2298,7 @@ var is_view_object = __webpack_require__(96574);
|
|
|
2240
2298
|
/*!
|
|
2241
2299
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2242
2300
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2243
|
-
* Copyright (c) 2013-
|
|
2301
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2244
2302
|
*/
|
|
2245
2303
|
|
|
2246
2304
|
|
|
@@ -2265,7 +2323,7 @@ function persistent(target, propertyKey) {
|
|
|
2265
2323
|
/*!
|
|
2266
2324
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2267
2325
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2268
|
-
* Copyright (c) 2013-
|
|
2326
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2269
2327
|
*/
|
|
2270
2328
|
|
|
2271
2329
|
|
|
@@ -2301,7 +2359,7 @@ var watch = __webpack_require__(46163);
|
|
|
2301
2359
|
/*!
|
|
2302
2360
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2303
2361
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2304
|
-
* Copyright (c) 2013-
|
|
2362
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2305
2363
|
*/
|
|
2306
2364
|
|
|
2307
2365
|
function derive(...traits) {
|
|
@@ -2402,7 +2460,7 @@ function autobind() {
|
|
|
2402
2460
|
/*!
|
|
2403
2461
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2404
2462
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2405
|
-
* Copyright (c) 2013-
|
|
2463
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2406
2464
|
*/
|
|
2407
2465
|
|
|
2408
2466
|
|
|
@@ -2437,7 +2495,7 @@ function autobind() {
|
|
|
2437
2495
|
/*!
|
|
2438
2496
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2439
2497
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2440
|
-
* Copyright (c) 2013-
|
|
2498
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2441
2499
|
*/
|
|
2442
2500
|
|
|
2443
2501
|
|
|
@@ -2551,7 +2609,7 @@ function watch(observeFields, context) {
|
|
|
2551
2609
|
/*!
|
|
2552
2610
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2553
2611
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2554
|
-
* Copyright (c) 2013-
|
|
2612
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2555
2613
|
*/
|
|
2556
2614
|
|
|
2557
2615
|
|
|
@@ -3091,7 +3149,7 @@ class Dom {
|
|
|
3091
3149
|
/*!
|
|
3092
3150
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3093
3151
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3094
|
-
* Copyright (c) 2013-
|
|
3152
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3095
3153
|
*/
|
|
3096
3154
|
|
|
3097
3155
|
|
|
@@ -3113,7 +3171,7 @@ class Dom {
|
|
|
3113
3171
|
/*!
|
|
3114
3172
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3115
3173
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3116
|
-
* Copyright (c) 2013-
|
|
3174
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3117
3175
|
*/
|
|
3118
3176
|
|
|
3119
3177
|
|
|
@@ -3222,7 +3280,7 @@ class LazyWalker extends jodit_core_event_emitter_eventify__WEBPACK_IMPORTED_MOD
|
|
|
3222
3280
|
/*!
|
|
3223
3281
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3224
3282
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3225
|
-
* Copyright (c) 2013-
|
|
3283
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3226
3284
|
*/
|
|
3227
3285
|
class Eventify {
|
|
3228
3286
|
constructor() {
|
|
@@ -3283,7 +3341,7 @@ var to_array = __webpack_require__(1853);
|
|
|
3283
3341
|
/*!
|
|
3284
3342
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3285
3343
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3286
|
-
* Copyright (c) 2013-
|
|
3344
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3287
3345
|
*/
|
|
3288
3346
|
|
|
3289
3347
|
|
|
@@ -3365,7 +3423,7 @@ var split_array = __webpack_require__(14556);
|
|
|
3365
3423
|
/*!
|
|
3366
3424
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3367
3425
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3368
|
-
* Copyright (c) 2013-
|
|
3426
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3369
3427
|
*/
|
|
3370
3428
|
|
|
3371
3429
|
|
|
@@ -3807,7 +3865,7 @@ var observable = __webpack_require__(88418);
|
|
|
3807
3865
|
/*!
|
|
3808
3866
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3809
3867
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3810
|
-
* Copyright (c) 2013-
|
|
3868
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3811
3869
|
*/
|
|
3812
3870
|
|
|
3813
3871
|
|
|
@@ -3831,7 +3889,7 @@ var observable = __webpack_require__(88418);
|
|
|
3831
3889
|
/*!
|
|
3832
3890
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3833
3891
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3834
|
-
* Copyright (c) 2013-
|
|
3892
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3835
3893
|
*/
|
|
3836
3894
|
|
|
3837
3895
|
|
|
@@ -3965,7 +4023,7 @@ function observable(obj) {
|
|
|
3965
4023
|
/*!
|
|
3966
4024
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3967
4025
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3968
|
-
* Copyright (c) 2013-
|
|
4026
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3969
4027
|
*/
|
|
3970
4028
|
|
|
3971
4029
|
|
|
@@ -4063,7 +4121,7 @@ var is_array = __webpack_require__(49781);
|
|
|
4063
4121
|
/*!
|
|
4064
4122
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4065
4123
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4066
|
-
* Copyright (c) 2013-
|
|
4124
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4067
4125
|
*/
|
|
4068
4126
|
|
|
4069
4127
|
const asArray = (a) => ((0,is_array/* isArray */.k)(a) ? a : [a]);
|
|
@@ -4076,7 +4134,7 @@ var to_array = __webpack_require__(1853);
|
|
|
4076
4134
|
/*!
|
|
4077
4135
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4078
4136
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4079
|
-
* Copyright (c) 2013-
|
|
4137
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4080
4138
|
*/
|
|
4081
4139
|
|
|
4082
4140
|
|
|
@@ -4095,7 +4153,7 @@ var to_array = __webpack_require__(1853);
|
|
|
4095
4153
|
/*!
|
|
4096
4154
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4097
4155
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4098
|
-
* Copyright (c) 2013-
|
|
4156
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4099
4157
|
*/
|
|
4100
4158
|
function splitArray(a) {
|
|
4101
4159
|
return Array.isArray(a) ? a : a.split(/[,\s]+/);
|
|
@@ -4116,7 +4174,7 @@ function splitArray(a) {
|
|
|
4116
4174
|
/*!
|
|
4117
4175
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4118
4176
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4119
|
-
* Copyright (c) 2013-
|
|
4177
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4120
4178
|
*/
|
|
4121
4179
|
|
|
4122
4180
|
|
|
@@ -4143,7 +4201,7 @@ const toArray = function toArray(...args) {
|
|
|
4143
4201
|
/*!
|
|
4144
4202
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4145
4203
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4146
|
-
* Copyright (c) 2013-
|
|
4204
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4147
4205
|
*/
|
|
4148
4206
|
|
|
4149
4207
|
|
|
@@ -4161,7 +4219,7 @@ const toArray = function toArray(...args) {
|
|
|
4161
4219
|
/*!
|
|
4162
4220
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4163
4221
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4164
|
-
* Copyright (c) 2013-
|
|
4222
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4165
4223
|
*/
|
|
4166
4224
|
function setTimeout(callback, timeout, ...args) {
|
|
4167
4225
|
if (!timeout) {
|
|
@@ -4219,7 +4277,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
4219
4277
|
/*!
|
|
4220
4278
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4221
4279
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4222
|
-
* Copyright (c) 2013-
|
|
4280
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4223
4281
|
*/
|
|
4224
4282
|
function hasBrowserColorPicker() {
|
|
4225
4283
|
let supportsColor = true;
|
|
@@ -4249,7 +4307,7 @@ var is_string = __webpack_require__(24421);
|
|
|
4249
4307
|
/*!
|
|
4250
4308
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4251
4309
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4252
|
-
* Copyright (c) 2013-
|
|
4310
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4253
4311
|
*/
|
|
4254
4312
|
|
|
4255
4313
|
const isHTML = (str) => (0,is_string/* isString */.H)(str) &&
|
|
@@ -4259,7 +4317,7 @@ const isHTML = (str) => (0,is_string/* isString */.H)(str) &&
|
|
|
4259
4317
|
/*!
|
|
4260
4318
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4261
4319
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4262
|
-
* Copyright (c) 2013-
|
|
4320
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4263
4321
|
*/
|
|
4264
4322
|
function isHtmlFromWord(data) {
|
|
4265
4323
|
return (data.search(/<meta.*?Microsoft Excel\s[\d].*?>/) !== -1 ||
|
|
@@ -4275,7 +4333,7 @@ var is_void = __webpack_require__(24021);
|
|
|
4275
4333
|
/*!
|
|
4276
4334
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4277
4335
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4278
|
-
* Copyright (c) 2013-
|
|
4336
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4279
4337
|
*/
|
|
4280
4338
|
|
|
4281
4339
|
|
|
@@ -4296,7 +4354,7 @@ var is_numeric = __webpack_require__(57649);
|
|
|
4296
4354
|
/*!
|
|
4297
4355
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4298
4356
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4299
|
-
* Copyright (c) 2013-
|
|
4357
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4300
4358
|
*/
|
|
4301
4359
|
|
|
4302
4360
|
|
|
@@ -4315,7 +4373,7 @@ var is_view_object = __webpack_require__(96574);
|
|
|
4315
4373
|
/*!
|
|
4316
4374
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4317
4375
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4318
|
-
* Copyright (c) 2013-
|
|
4376
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4319
4377
|
*/
|
|
4320
4378
|
|
|
4321
4379
|
const isLicense = (license) => (0,is_string/* isString */.H)(license) &&
|
|
@@ -4336,7 +4394,7 @@ var is_url = __webpack_require__(64350);
|
|
|
4336
4394
|
/*!
|
|
4337
4395
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4338
4396
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4339
|
-
* Copyright (c) 2013-
|
|
4397
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4340
4398
|
*/
|
|
4341
4399
|
function isValidName(name) {
|
|
4342
4400
|
if (!name.length) {
|
|
@@ -4353,7 +4411,7 @@ var is_marker = __webpack_require__(37204);
|
|
|
4353
4411
|
/*!
|
|
4354
4412
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4355
4413
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4356
|
-
* Copyright (c) 2013-
|
|
4414
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4357
4415
|
*/
|
|
4358
4416
|
|
|
4359
4417
|
|
|
@@ -4392,7 +4450,7 @@ var is_marker = __webpack_require__(37204);
|
|
|
4392
4450
|
/*!
|
|
4393
4451
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4394
4452
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4395
|
-
* Copyright (c) 2013-
|
|
4453
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4396
4454
|
*/
|
|
4397
4455
|
function isArray(elm) {
|
|
4398
4456
|
return Array.isArray(elm);
|
|
@@ -4411,7 +4469,7 @@ function isArray(elm) {
|
|
|
4411
4469
|
/*!
|
|
4412
4470
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4413
4471
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4414
|
-
* Copyright (c) 2013-
|
|
4472
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4415
4473
|
*/
|
|
4416
4474
|
function isBoolean(elm) {
|
|
4417
4475
|
return typeof elm === 'boolean';
|
|
@@ -4432,7 +4490,7 @@ function isBoolean(elm) {
|
|
|
4432
4490
|
/*!
|
|
4433
4491
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4434
4492
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4435
|
-
* Copyright (c) 2013-
|
|
4493
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4436
4494
|
*/
|
|
4437
4495
|
|
|
4438
4496
|
function isEqual(a, b) {
|
|
@@ -4455,7 +4513,7 @@ function isFastEqual(a, b) {
|
|
|
4455
4513
|
/*!
|
|
4456
4514
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4457
4515
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4458
|
-
* Copyright (c) 2013-
|
|
4516
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4459
4517
|
*/
|
|
4460
4518
|
function isFunction(value) {
|
|
4461
4519
|
return typeof value === 'function';
|
|
@@ -4475,7 +4533,7 @@ function isFunction(value) {
|
|
|
4475
4533
|
/*!
|
|
4476
4534
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4477
4535
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4478
|
-
* Copyright (c) 2013-
|
|
4536
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4479
4537
|
*/
|
|
4480
4538
|
|
|
4481
4539
|
function isJoditObject(jodit) {
|
|
@@ -4501,7 +4559,7 @@ function isJoditObject(jodit) {
|
|
|
4501
4559
|
/*!
|
|
4502
4560
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4503
4561
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4504
|
-
* Copyright (c) 2013-
|
|
4562
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4505
4563
|
*/
|
|
4506
4564
|
|
|
4507
4565
|
|
|
@@ -4524,7 +4582,7 @@ function isMarker(elm) {
|
|
|
4524
4582
|
/*!
|
|
4525
4583
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4526
4584
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4527
|
-
* Copyright (c) 2013-
|
|
4585
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4528
4586
|
*/
|
|
4529
4587
|
function isNativeFunction(f) {
|
|
4530
4588
|
return (Boolean(f) &&
|
|
@@ -4546,7 +4604,7 @@ function isNativeFunction(f) {
|
|
|
4546
4604
|
/*!
|
|
4547
4605
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4548
4606
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4549
|
-
* Copyright (c) 2013-
|
|
4607
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4550
4608
|
*/
|
|
4551
4609
|
function isNumber(value) {
|
|
4552
4610
|
return typeof value === 'number' && !isNaN(value) && isFinite(value);
|
|
@@ -4566,7 +4624,7 @@ function isNumber(value) {
|
|
|
4566
4624
|
/*!
|
|
4567
4625
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4568
4626
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4569
|
-
* Copyright (c) 2013-
|
|
4627
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4570
4628
|
*/
|
|
4571
4629
|
|
|
4572
4630
|
function isNumeric(value) {
|
|
@@ -4593,7 +4651,7 @@ function isNumeric(value) {
|
|
|
4593
4651
|
/*!
|
|
4594
4652
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4595
4653
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4596
|
-
* Copyright (c) 2013-
|
|
4654
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4597
4655
|
*/
|
|
4598
4656
|
|
|
4599
4657
|
function isPlainObject(obj) {
|
|
@@ -4617,7 +4675,7 @@ function isPlainObject(obj) {
|
|
|
4617
4675
|
/*!
|
|
4618
4676
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4619
4677
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4620
|
-
* Copyright (c) 2013-
|
|
4678
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4621
4679
|
*/
|
|
4622
4680
|
function isPromise(val) {
|
|
4623
4681
|
return val && typeof val.then === 'function';
|
|
@@ -4638,7 +4696,7 @@ function isPromise(val) {
|
|
|
4638
4696
|
/*!
|
|
4639
4697
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4640
4698
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4641
|
-
* Copyright (c) 2013-
|
|
4699
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4642
4700
|
*/
|
|
4643
4701
|
|
|
4644
4702
|
function isString(value) {
|
|
@@ -4661,7 +4719,7 @@ function isStringArray(value) {
|
|
|
4661
4719
|
/*!
|
|
4662
4720
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4663
4721
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4664
|
-
* Copyright (c) 2013-
|
|
4722
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4665
4723
|
*/
|
|
4666
4724
|
function isURL(str) {
|
|
4667
4725
|
if (str.includes(' ')) {
|
|
@@ -4695,7 +4753,7 @@ function isURL(str) {
|
|
|
4695
4753
|
/*!
|
|
4696
4754
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4697
4755
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4698
|
-
* Copyright (c) 2013-
|
|
4756
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4699
4757
|
*/
|
|
4700
4758
|
|
|
4701
4759
|
function isViewObject(jodit) {
|
|
@@ -4718,7 +4776,7 @@ function isViewObject(jodit) {
|
|
|
4718
4776
|
/*!
|
|
4719
4777
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4720
4778
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4721
|
-
* Copyright (c) 2013-
|
|
4779
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4722
4780
|
*/
|
|
4723
4781
|
function isVoid(value) {
|
|
4724
4782
|
return value === undefined || value === null;
|
|
@@ -4737,7 +4795,7 @@ function isVoid(value) {
|
|
|
4737
4795
|
/*!
|
|
4738
4796
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4739
4797
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4740
|
-
* Copyright (c) 2013-
|
|
4798
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4741
4799
|
*/
|
|
4742
4800
|
function isWindow(obj) {
|
|
4743
4801
|
return obj != null && obj === obj.window;
|
|
@@ -4756,7 +4814,7 @@ function isWindow(obj) {
|
|
|
4756
4814
|
/*!
|
|
4757
4815
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4758
4816
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4759
|
-
* Copyright (c) 2013-
|
|
4817
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4760
4818
|
*/
|
|
4761
4819
|
const colorToHex = (color) => {
|
|
4762
4820
|
if (color === 'rgba(0, 0, 0, 0)' || color === '') {
|
|
@@ -4795,7 +4853,7 @@ const colorToHex = (color) => {
|
|
|
4795
4853
|
/*!
|
|
4796
4854
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4797
4855
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4798
|
-
* Copyright (c) 2013-
|
|
4856
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4799
4857
|
*/
|
|
4800
4858
|
|
|
4801
4859
|
|
|
@@ -4828,7 +4886,7 @@ var trim = __webpack_require__(33941);
|
|
|
4828
4886
|
/*!
|
|
4829
4887
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4830
4888
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4831
|
-
* Copyright (c) 2013-
|
|
4889
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4832
4890
|
*/
|
|
4833
4891
|
|
|
4834
4892
|
|
|
@@ -4921,7 +4979,7 @@ var to_array = __webpack_require__(1853);
|
|
|
4921
4979
|
/*!
|
|
4922
4980
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4923
4981
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4924
|
-
* Copyright (c) 2013-
|
|
4982
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4925
4983
|
*/
|
|
4926
4984
|
|
|
4927
4985
|
|
|
@@ -4991,7 +5049,7 @@ function cleanFromWord(html) {
|
|
|
4991
5049
|
/*!
|
|
4992
5050
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4993
5051
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4994
|
-
* Copyright (c) 2013-
|
|
5052
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4995
5053
|
*/
|
|
4996
5054
|
function htmlspecialchars(html) {
|
|
4997
5055
|
const tmp = document.createElement('div');
|
|
@@ -5005,7 +5063,7 @@ var is_string = __webpack_require__(24421);
|
|
|
5005
5063
|
/*!
|
|
5006
5064
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5007
5065
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5008
|
-
* Copyright (c) 2013-
|
|
5066
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5009
5067
|
*/
|
|
5010
5068
|
|
|
5011
5069
|
|
|
@@ -5041,7 +5099,7 @@ var safe_html = __webpack_require__(67128);
|
|
|
5041
5099
|
/*!
|
|
5042
5100
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5043
5101
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5044
|
-
* Copyright (c) 2013-
|
|
5102
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5045
5103
|
*/
|
|
5046
5104
|
function nl2br(html) {
|
|
5047
5105
|
return html.replace(/\r\n|\r|\n/g, '<br/>');
|
|
@@ -5051,7 +5109,7 @@ function nl2br(html) {
|
|
|
5051
5109
|
/*!
|
|
5052
5110
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5053
5111
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5054
|
-
* Copyright (c) 2013-
|
|
5112
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5055
5113
|
*/
|
|
5056
5114
|
|
|
5057
5115
|
|
|
@@ -5076,7 +5134,7 @@ function nl2br(html) {
|
|
|
5076
5134
|
/*!
|
|
5077
5135
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5078
5136
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5079
|
-
* Copyright (c) 2013-
|
|
5137
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5080
5138
|
*/
|
|
5081
5139
|
|
|
5082
5140
|
|
|
@@ -5205,7 +5263,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5205
5263
|
/*!
|
|
5206
5264
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5207
5265
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5208
|
-
* Copyright (c) 2013-
|
|
5266
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5209
5267
|
*/
|
|
5210
5268
|
|
|
5211
5269
|
|
|
@@ -5248,7 +5306,7 @@ var constants = __webpack_require__(86893);
|
|
|
5248
5306
|
/*!
|
|
5249
5307
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5250
5308
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5251
|
-
* Copyright (c) 2013-
|
|
5309
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5252
5310
|
*/
|
|
5253
5311
|
|
|
5254
5312
|
|
|
@@ -5286,7 +5344,7 @@ function normalizeKeyAliases(keys) {
|
|
|
5286
5344
|
/*!
|
|
5287
5345
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5288
5346
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5289
|
-
* Copyright (c) 2013-
|
|
5347
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5290
5348
|
*/
|
|
5291
5349
|
const normalizeLicense = (license, count = 8) => {
|
|
5292
5350
|
const parts = [];
|
|
@@ -5307,7 +5365,7 @@ var string = __webpack_require__(89170);
|
|
|
5307
5365
|
/*!
|
|
5308
5366
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5309
5367
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5310
|
-
* Copyright (c) 2013-
|
|
5368
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5311
5369
|
*/
|
|
5312
5370
|
|
|
5313
5371
|
const normalizePath = (...path) => {
|
|
@@ -5330,7 +5388,7 @@ const normalizePath = (...path) => {
|
|
|
5330
5388
|
/*!
|
|
5331
5389
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5332
5390
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5333
|
-
* Copyright (c) 2013-
|
|
5391
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5334
5392
|
*/
|
|
5335
5393
|
const normalizeRelativePath = (path) => {
|
|
5336
5394
|
const sections = path.split('/'), builder = sections.reduce((builder, section) => {
|
|
@@ -5359,7 +5417,7 @@ const normalizeRelativePath = (path) => {
|
|
|
5359
5417
|
/*!
|
|
5360
5418
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5361
5419
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5362
|
-
* Copyright (c) 2013-
|
|
5420
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5363
5421
|
*/
|
|
5364
5422
|
const normalizeSize = (value) => {
|
|
5365
5423
|
if (/^[0-9]+$/.test(value.toString())) {
|
|
@@ -5372,7 +5430,7 @@ const normalizeSize = (value) => {
|
|
|
5372
5430
|
/*!
|
|
5373
5431
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5374
5432
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5375
|
-
* Copyright (c) 2013-
|
|
5433
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5376
5434
|
*/
|
|
5377
5435
|
const normalizeUrl = (...urls) => {
|
|
5378
5436
|
return urls
|
|
@@ -5390,7 +5448,7 @@ var color_to_hex = __webpack_require__(13203);
|
|
|
5390
5448
|
/*!
|
|
5391
5449
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5392
5450
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5393
|
-
* Copyright (c) 2013-
|
|
5451
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5394
5452
|
*/
|
|
5395
5453
|
|
|
5396
5454
|
|
|
@@ -5419,7 +5477,7 @@ const normalizeColor = (colorInput) => {
|
|
|
5419
5477
|
/*!
|
|
5420
5478
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5421
5479
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5422
|
-
* Copyright (c) 2013-
|
|
5480
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5423
5481
|
*/
|
|
5424
5482
|
|
|
5425
5483
|
|
|
@@ -5450,7 +5508,7 @@ const normalizeColor = (colorInput) => {
|
|
|
5450
5508
|
/*!
|
|
5451
5509
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5452
5510
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5453
|
-
* Copyright (c) 2013-
|
|
5511
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5454
5512
|
*/
|
|
5455
5513
|
|
|
5456
5514
|
|
|
@@ -5502,7 +5560,7 @@ function normalizeCssValue(key, value) {
|
|
|
5502
5560
|
/*!
|
|
5503
5561
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5504
5562
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5505
|
-
* Copyright (c) 2013-
|
|
5563
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5506
5564
|
*/
|
|
5507
5565
|
|
|
5508
5566
|
|
|
@@ -5547,7 +5605,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
5547
5605
|
/*!
|
|
5548
5606
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5549
5607
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5550
|
-
* Copyright (c) 2013-
|
|
5608
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5551
5609
|
*/
|
|
5552
5610
|
const getContentWidth = (element, win) => {
|
|
5553
5611
|
const pi = (value) => parseInt(value, 10), style = win.getComputedStyle(element), width = element.offsetWidth, paddingLeft = pi(style.getPropertyValue('padding-left') || '0'), paddingRight = pi(style.getPropertyValue('padding-right') || '0');
|
|
@@ -5562,7 +5620,7 @@ var dom = __webpack_require__(24263);
|
|
|
5562
5620
|
/*!
|
|
5563
5621
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5564
5622
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5565
|
-
* Copyright (c) 2013-
|
|
5623
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5566
5624
|
*/
|
|
5567
5625
|
|
|
5568
5626
|
|
|
@@ -5585,7 +5643,7 @@ function getScrollParent(node) {
|
|
|
5585
5643
|
/*!
|
|
5586
5644
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5587
5645
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5588
|
-
* Copyright (c) 2013-
|
|
5646
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5589
5647
|
*/
|
|
5590
5648
|
const inner_width_innerWidth = (element, win) => {
|
|
5591
5649
|
const computedStyle = win.getComputedStyle(element);
|
|
@@ -5600,7 +5658,7 @@ const inner_width_innerWidth = (element, win) => {
|
|
|
5600
5658
|
/*!
|
|
5601
5659
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5602
5660
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5603
|
-
* Copyright (c) 2013-
|
|
5661
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5604
5662
|
*/
|
|
5605
5663
|
const offset = (elm, jodit, doc, recurse = false) => {
|
|
5606
5664
|
let rect;
|
|
@@ -5648,7 +5706,7 @@ var is_jodit_object = __webpack_require__(77892);
|
|
|
5648
5706
|
/*!
|
|
5649
5707
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5650
5708
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5651
|
-
* Copyright (c) 2013-
|
|
5709
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5652
5710
|
*/
|
|
5653
5711
|
|
|
5654
5712
|
function position(elm, jodit, recurse = false) {
|
|
@@ -5676,7 +5734,7 @@ var object_size = __webpack_require__(16492);
|
|
|
5676
5734
|
/*!
|
|
5677
5735
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5678
5736
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5679
|
-
* Copyright (c) 2013-
|
|
5737
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5680
5738
|
*/
|
|
5681
5739
|
|
|
5682
5740
|
|
|
@@ -5699,7 +5757,7 @@ var object_size = __webpack_require__(16492);
|
|
|
5699
5757
|
/*!
|
|
5700
5758
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5701
5759
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5702
|
-
* Copyright (c) 2013-
|
|
5760
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5703
5761
|
*/
|
|
5704
5762
|
|
|
5705
5763
|
function size(subject) {
|
|
@@ -5725,7 +5783,7 @@ function size(subject) {
|
|
|
5725
5783
|
/*!
|
|
5726
5784
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5727
5785
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5728
|
-
* Copyright (c) 2013-
|
|
5786
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5729
5787
|
*/
|
|
5730
5788
|
const camelCase = (key) => {
|
|
5731
5789
|
return key.replace(/([-_])(.)/g, (m, code, letter) => {
|
|
@@ -5747,7 +5805,7 @@ const camelCase = (key) => {
|
|
|
5747
5805
|
/*!
|
|
5748
5806
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5749
5807
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5750
|
-
* Copyright (c) 2013-
|
|
5808
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5751
5809
|
*/
|
|
5752
5810
|
|
|
5753
5811
|
function fuzzySearchIndex(needle, haystack, offset = 0, maxDistance = 1) {
|
|
@@ -5816,7 +5874,7 @@ var is_string = __webpack_require__(24421);
|
|
|
5816
5874
|
/*!
|
|
5817
5875
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5818
5876
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5819
|
-
* Copyright (c) 2013-
|
|
5877
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5820
5878
|
*/
|
|
5821
5879
|
function ucfirst(value) {
|
|
5822
5880
|
if (!value.length) {
|
|
@@ -5831,7 +5889,7 @@ var constants = __webpack_require__(86893);
|
|
|
5831
5889
|
/*!
|
|
5832
5890
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5833
5891
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5834
|
-
* Copyright (c) 2013-
|
|
5892
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5835
5893
|
*/
|
|
5836
5894
|
|
|
5837
5895
|
|
|
@@ -5920,7 +5978,7 @@ var trim = __webpack_require__(33941);
|
|
|
5920
5978
|
/*!
|
|
5921
5979
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5922
5980
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5923
|
-
* Copyright (c) 2013-
|
|
5981
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5924
5982
|
*/
|
|
5925
5983
|
|
|
5926
5984
|
|
|
@@ -5944,7 +6002,7 @@ var trim = __webpack_require__(33941);
|
|
|
5944
6002
|
/*!
|
|
5945
6003
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5946
6004
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5947
|
-
* Copyright (c) 2013-
|
|
6005
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5948
6006
|
*/
|
|
5949
6007
|
const kebabCase = (key) => {
|
|
5950
6008
|
return key
|
|
@@ -5973,7 +6031,7 @@ const CamelCaseToKebabCase = (key) => {
|
|
|
5973
6031
|
/*!
|
|
5974
6032
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
5975
6033
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
5976
|
-
* Copyright (c) 2013-
|
|
6034
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5977
6035
|
*/
|
|
5978
6036
|
function stringify(value, options = {}) {
|
|
5979
6037
|
if (typeof value !== 'object') {
|
|
@@ -6011,7 +6069,7 @@ function stringify(value, options = {}) {
|
|
|
6011
6069
|
/*!
|
|
6012
6070
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6013
6071
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6014
|
-
* Copyright (c) 2013-
|
|
6072
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6015
6073
|
*/
|
|
6016
6074
|
|
|
6017
6075
|
function trim(value) {
|
|
@@ -6042,7 +6100,7 @@ function trimInv(value) {
|
|
|
6042
6100
|
/*!
|
|
6043
6101
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6044
6102
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6045
|
-
* Copyright (c) 2013-
|
|
6103
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6046
6104
|
*/
|
|
6047
6105
|
|
|
6048
6106
|
|
|
@@ -6121,7 +6179,7 @@ function alignElement(command, box) {
|
|
|
6121
6179
|
/*!
|
|
6122
6180
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6123
6181
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6124
|
-
* Copyright (c) 2013-
|
|
6182
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6125
6183
|
*/
|
|
6126
6184
|
|
|
6127
6185
|
|
|
@@ -6201,7 +6259,7 @@ const loadNextStyle = (jodit, urls, i = 0) => {
|
|
|
6201
6259
|
/*!
|
|
6202
6260
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6203
6261
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6204
|
-
* Copyright (c) 2013-
|
|
6262
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6205
6263
|
*/
|
|
6206
6264
|
class AssertionError extends Error {
|
|
6207
6265
|
constructor(message) {
|
|
@@ -6229,7 +6287,7 @@ function assert(condition, message) {
|
|
|
6229
6287
|
/*!
|
|
6230
6288
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6231
6289
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6232
|
-
* Copyright (c) 2013-
|
|
6290
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6233
6291
|
*/
|
|
6234
6292
|
const browser = (browser) => {
|
|
6235
6293
|
const ua = navigator.userAgent.toLowerCase(), match = /(firefox)[\s/]([\w.]+)/.exec(ua) ||
|
|
@@ -6269,7 +6327,7 @@ const browser = (browser) => {
|
|
|
6269
6327
|
/*!
|
|
6270
6328
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6271
6329
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6272
|
-
* Copyright (c) 2013-
|
|
6330
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6273
6331
|
*/
|
|
6274
6332
|
|
|
6275
6333
|
const buildQuery = (data, prefix) => {
|
|
@@ -6298,7 +6356,7 @@ const buildQuery = (data, prefix) => {
|
|
|
6298
6356
|
/*!
|
|
6299
6357
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6300
6358
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6301
|
-
* Copyright (c) 2013-
|
|
6359
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6302
6360
|
*/
|
|
6303
6361
|
const completeUrl = (url) => {
|
|
6304
6362
|
if (window.location.protocol === 'file:' && /^\/\//.test(url)) {
|
|
@@ -6328,7 +6386,7 @@ const completeUrl = (url) => {
|
|
|
6328
6386
|
/*!
|
|
6329
6387
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6330
6388
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6331
|
-
* Copyright (c) 2013-
|
|
6389
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6332
6390
|
*/
|
|
6333
6391
|
|
|
6334
6392
|
|
|
@@ -6391,7 +6449,7 @@ function ConfigFlatten(obj) {
|
|
|
6391
6449
|
/*!
|
|
6392
6450
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6393
6451
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6394
|
-
* Copyright (c) 2013-
|
|
6452
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6395
6453
|
*/
|
|
6396
6454
|
|
|
6397
6455
|
|
|
@@ -6462,7 +6520,7 @@ const convertMediaUrlToVideoEmbed = (url, width = 400, height = 345) => {
|
|
|
6462
6520
|
/*!
|
|
6463
6521
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6464
6522
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6465
|
-
* Copyright (c) 2013-
|
|
6523
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6466
6524
|
*/
|
|
6467
6525
|
|
|
6468
6526
|
|
|
@@ -6533,7 +6591,7 @@ const clearCenterAlign = (image) => {
|
|
|
6533
6591
|
/*!
|
|
6534
6592
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6535
6593
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6536
|
-
* Copyright (c) 2013-
|
|
6594
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6537
6595
|
*/
|
|
6538
6596
|
const ctrlKey = (e) => {
|
|
6539
6597
|
if (typeof navigator !== 'undefined' &&
|
|
@@ -6562,7 +6620,7 @@ const ctrlKey = (e) => {
|
|
|
6562
6620
|
/*!
|
|
6563
6621
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6564
6622
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6565
|
-
* Copyright (c) 2013-
|
|
6623
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6566
6624
|
*/
|
|
6567
6625
|
|
|
6568
6626
|
const store = new WeakMap();
|
|
@@ -6604,7 +6662,7 @@ const dataBind = (elm, key, value) => {
|
|
|
6604
6662
|
/*!
|
|
6605
6663
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6606
6664
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6607
|
-
* Copyright (c) 2013-
|
|
6665
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6608
6666
|
*/
|
|
6609
6667
|
|
|
6610
6668
|
const defaultLanguage = (language, defaultLanguage = 'en') => {
|
|
@@ -6644,7 +6702,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
6644
6702
|
/*!
|
|
6645
6703
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6646
6704
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6647
|
-
* Copyright (c) 2013-
|
|
6705
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6648
6706
|
*/
|
|
6649
6707
|
class AbortError extends Error {
|
|
6650
6708
|
constructor(m) {
|
|
@@ -6657,7 +6715,7 @@ class AbortError extends Error {
|
|
|
6657
6715
|
/*!
|
|
6658
6716
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6659
6717
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6660
|
-
* Copyright (c) 2013-
|
|
6718
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6661
6719
|
*/
|
|
6662
6720
|
class ConnectionError extends Error {
|
|
6663
6721
|
constructor(m) {
|
|
@@ -6670,7 +6728,7 @@ class ConnectionError extends Error {
|
|
|
6670
6728
|
/*!
|
|
6671
6729
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6672
6730
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6673
|
-
* Copyright (c) 2013-
|
|
6731
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6674
6732
|
*/
|
|
6675
6733
|
class OptionsError extends TypeError {
|
|
6676
6734
|
constructor(m) {
|
|
@@ -6683,7 +6741,7 @@ class OptionsError extends TypeError {
|
|
|
6683
6741
|
/*!
|
|
6684
6742
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6685
6743
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6686
|
-
* Copyright (c) 2013-
|
|
6744
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6687
6745
|
*/
|
|
6688
6746
|
|
|
6689
6747
|
|
|
@@ -6693,7 +6751,7 @@ class OptionsError extends TypeError {
|
|
|
6693
6751
|
/*!
|
|
6694
6752
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6695
6753
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6696
|
-
* Copyright (c) 2013-
|
|
6754
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6697
6755
|
*/
|
|
6698
6756
|
|
|
6699
6757
|
function error(message) {
|
|
@@ -6716,7 +6774,7 @@ function isAbort(error) {
|
|
|
6716
6774
|
/*!
|
|
6717
6775
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6718
6776
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6719
|
-
* Copyright (c) 2013-
|
|
6777
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6720
6778
|
*/
|
|
6721
6779
|
|
|
6722
6780
|
|
|
@@ -6737,7 +6795,7 @@ function isAbort(error) {
|
|
|
6737
6795
|
/*!
|
|
6738
6796
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6739
6797
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6740
|
-
* Copyright (c) 2013-
|
|
6798
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6741
6799
|
*/
|
|
6742
6800
|
|
|
6743
6801
|
function isAtom(obj) {
|
|
@@ -6770,7 +6828,7 @@ function fastClone(object) {
|
|
|
6770
6828
|
/*!
|
|
6771
6829
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6772
6830
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6773
|
-
* Copyright (c) 2013-
|
|
6831
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6774
6832
|
*/
|
|
6775
6833
|
|
|
6776
6834
|
const keepNames = new Map();
|
|
@@ -6806,7 +6864,7 @@ const getClassName = (obj) => {
|
|
|
6806
6864
|
/*!
|
|
6807
6865
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6808
6866
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6809
|
-
* Copyright (c) 2013-
|
|
6867
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6810
6868
|
*/
|
|
6811
6869
|
|
|
6812
6870
|
|
|
@@ -6846,7 +6904,7 @@ function get(chain, obj) {
|
|
|
6846
6904
|
/*!
|
|
6847
6905
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6848
6906
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6849
|
-
* Copyright (c) 2013-
|
|
6907
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6850
6908
|
*/
|
|
6851
6909
|
const humanSizeToBytes = (human) => {
|
|
6852
6910
|
if (/^[0-9.]+$/.test(human.toString())) {
|
|
@@ -6959,7 +7017,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6959
7017
|
/*!
|
|
6960
7018
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6961
7019
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6962
|
-
* Copyright (c) 2013-
|
|
7020
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6963
7021
|
*/
|
|
6964
7022
|
|
|
6965
7023
|
|
|
@@ -7003,7 +7061,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7003
7061
|
/*!
|
|
7004
7062
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7005
7063
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7006
|
-
* Copyright (c) 2013-
|
|
7064
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7007
7065
|
*/
|
|
7008
7066
|
const cns = console;
|
|
7009
7067
|
function markDeprecated(method, names = [''], ctx = null) {
|
|
@@ -7027,7 +7085,7 @@ function markDeprecated(method, names = [''], ctx = null) {
|
|
|
7027
7085
|
/*!
|
|
7028
7086
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7029
7087
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7030
|
-
* Copyright (c) 2013-
|
|
7088
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7031
7089
|
*/
|
|
7032
7090
|
const parseQuery = (queryString) => {
|
|
7033
7091
|
const query = {}, a = queryString.substring(1).split('&');
|
|
@@ -7056,7 +7114,7 @@ const parseQuery = (queryString) => {
|
|
|
7056
7114
|
/*!
|
|
7057
7115
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7058
7116
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7059
|
-
* Copyright (c) 2013-
|
|
7117
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7060
7118
|
*/
|
|
7061
7119
|
|
|
7062
7120
|
|
|
@@ -7212,7 +7270,7 @@ function previewBox(editor, defaultValue, points = 'px', container = null) {
|
|
|
7212
7270
|
/*!
|
|
7213
7271
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7214
7272
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7215
|
-
* Copyright (c) 2013-
|
|
7273
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7216
7274
|
*/
|
|
7217
7275
|
|
|
7218
7276
|
|
|
@@ -7257,7 +7315,7 @@ const reset = function (key) {
|
|
|
7257
7315
|
/*!
|
|
7258
7316
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7259
7317
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7260
|
-
* Copyright (c) 2013-
|
|
7318
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7261
7319
|
*/
|
|
7262
7320
|
|
|
7263
7321
|
const inView = (elm, root, doc) => {
|
|
@@ -7313,7 +7371,7 @@ function scrollIntoViewIfNeeded(elm, root, doc) {
|
|
|
7313
7371
|
/*!
|
|
7314
7372
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7315
7373
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7316
|
-
* Copyright (c) 2013-
|
|
7374
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7317
7375
|
*/
|
|
7318
7376
|
|
|
7319
7377
|
|
|
@@ -7431,7 +7489,7 @@ function resolveElement(element, od) {
|
|
|
7431
7489
|
/*!
|
|
7432
7490
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7433
7491
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7434
|
-
* Copyright (c) 2013-
|
|
7492
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7435
7493
|
*/
|
|
7436
7494
|
|
|
7437
7495
|
|
|
@@ -7468,7 +7526,7 @@ function set(chain, value, obj) {
|
|
|
7468
7526
|
/*!
|
|
7469
7527
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7470
7528
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7471
|
-
* Copyright (c) 2013-
|
|
7529
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7472
7530
|
*/
|
|
7473
7531
|
class LimitedStack {
|
|
7474
7532
|
constructor(limit) {
|
|
@@ -7518,7 +7576,7 @@ class LimitedStack {
|
|
|
7518
7576
|
/*!
|
|
7519
7577
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7520
7578
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7521
|
-
* Copyright (c) 2013-
|
|
7579
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7522
7580
|
*/
|
|
7523
7581
|
|
|
7524
7582
|
|
|
@@ -7647,7 +7705,7 @@ const getDataTransfer = (event) => {
|
|
|
7647
7705
|
/*!
|
|
7648
7706
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7649
7707
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7650
|
-
* Copyright (c) 2013-
|
|
7708
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7651
7709
|
*/
|
|
7652
7710
|
const val = (elm, selector, value) => {
|
|
7653
7711
|
const child = elm.querySelector(selector);
|
|
@@ -7675,7 +7733,7 @@ const val = (elm, selector, value) => {
|
|
|
7675
7733
|
/*!
|
|
7676
7734
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7677
7735
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7678
|
-
* Copyright (c) 2013-
|
|
7736
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7679
7737
|
*/
|
|
7680
7738
|
|
|
7681
7739
|
|
|
@@ -7699,7 +7757,7 @@ const val = (elm, selector, value) => {
|
|
|
7699
7757
|
/*!
|
|
7700
7758
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7701
7759
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7702
|
-
* Copyright (c) 2013-
|
|
7760
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7703
7761
|
*/
|
|
7704
7762
|
|
|
7705
7763
|
|
|
@@ -7911,7 +7969,7 @@ PluginSystem.styles = new Set();
|
|
|
7911
7969
|
/*!
|
|
7912
7970
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7913
7971
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7914
|
-
* Copyright (c) 2013-
|
|
7972
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7915
7973
|
*/
|
|
7916
7974
|
|
|
7917
7975
|
|
|
@@ -7989,7 +8047,7 @@ var error = __webpack_require__(14582);
|
|
|
7989
8047
|
/*!
|
|
7990
8048
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7991
8049
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7992
|
-
* Copyright (c) 2013-
|
|
8050
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7993
8051
|
*/
|
|
7994
8052
|
class Response {
|
|
7995
8053
|
get url() {
|
|
@@ -8020,7 +8078,7 @@ var decorators = __webpack_require__(67493);
|
|
|
8020
8078
|
/*!
|
|
8021
8079
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8022
8080
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8023
|
-
* Copyright (c) 2013-
|
|
8081
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8024
8082
|
*/
|
|
8025
8083
|
|
|
8026
8084
|
config/* Config.prototype.defaultAjaxOptions */.D.prototype.defaultAjaxOptions = {
|
|
@@ -8042,7 +8100,7 @@ config/* Config.prototype.defaultAjaxOptions */.D.prototype.defaultAjaxOptions =
|
|
|
8042
8100
|
/*!
|
|
8043
8101
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8044
8102
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8045
|
-
* Copyright (c) 2013-
|
|
8103
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8046
8104
|
*/
|
|
8047
8105
|
|
|
8048
8106
|
|
|
@@ -8205,7 +8263,7 @@ Ajax.log = [];
|
|
|
8205
8263
|
/*!
|
|
8206
8264
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8207
8265
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8208
|
-
* Copyright (c) 2013-
|
|
8266
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8209
8267
|
*/
|
|
8210
8268
|
|
|
8211
8269
|
|
|
@@ -8232,7 +8290,7 @@ var constants = __webpack_require__(86893);
|
|
|
8232
8290
|
/*!
|
|
8233
8291
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8234
8292
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8235
|
-
* Copyright (c) 2013-
|
|
8293
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8236
8294
|
*/
|
|
8237
8295
|
|
|
8238
8296
|
|
|
@@ -8257,7 +8315,7 @@ function moveNodeInsideStart(j, node, start) {
|
|
|
8257
8315
|
/*!
|
|
8258
8316
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8259
8317
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8260
|
-
* Copyright (c) 2013-
|
|
8318
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8261
8319
|
*/
|
|
8262
8320
|
|
|
8263
8321
|
function moveTheNodeAlongTheEdgeOutward(node, start, root) {
|
|
@@ -8279,7 +8337,7 @@ function moveTheNodeAlongTheEdgeOutward(node, start, root) {
|
|
|
8279
8337
|
/*!
|
|
8280
8338
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8281
8339
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8282
|
-
* Copyright (c) 2013-
|
|
8340
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8283
8341
|
*/
|
|
8284
8342
|
|
|
8285
8343
|
|
|
@@ -8303,7 +8361,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
8303
8361
|
/*!
|
|
8304
8362
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8305
8363
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8306
|
-
* Copyright (c) 2013-
|
|
8364
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8307
8365
|
*/
|
|
8308
8366
|
const canUsePersistentStorage = (() => {
|
|
8309
8367
|
const canUse = () => {
|
|
@@ -8372,7 +8430,7 @@ var helpers = __webpack_require__(40332);
|
|
|
8372
8430
|
/*!
|
|
8373
8431
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8374
8432
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8375
|
-
* Copyright (c) 2013-
|
|
8433
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8376
8434
|
*/
|
|
8377
8435
|
class MemoryStorageProvider {
|
|
8378
8436
|
constructor() {
|
|
@@ -8402,7 +8460,7 @@ class MemoryStorageProvider {
|
|
|
8402
8460
|
/*!
|
|
8403
8461
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8404
8462
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8405
|
-
* Copyright (c) 2013-
|
|
8463
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8406
8464
|
*/
|
|
8407
8465
|
|
|
8408
8466
|
|
|
@@ -8450,7 +8508,7 @@ class Storage {
|
|
|
8450
8508
|
/*!
|
|
8451
8509
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8452
8510
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8453
|
-
* Copyright (c) 2013-
|
|
8511
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8454
8512
|
*/
|
|
8455
8513
|
|
|
8456
8514
|
|
|
@@ -8477,7 +8535,7 @@ var to_array = __webpack_require__(1853);
|
|
|
8477
8535
|
/*!
|
|
8478
8536
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8479
8537
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8480
|
-
* Copyright (c) 2013-
|
|
8538
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8481
8539
|
*/
|
|
8482
8540
|
|
|
8483
8541
|
class Elms {
|
|
@@ -8495,7 +8553,7 @@ var is_void = __webpack_require__(24021);
|
|
|
8495
8553
|
/*!
|
|
8496
8554
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8497
8555
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8498
|
-
* Copyright (c) 2013-
|
|
8556
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8499
8557
|
*/
|
|
8500
8558
|
|
|
8501
8559
|
|
|
@@ -8533,7 +8591,7 @@ var helpers = __webpack_require__(40332);
|
|
|
8533
8591
|
/*!
|
|
8534
8592
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8535
8593
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8536
|
-
* Copyright (c) 2013-
|
|
8594
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8537
8595
|
*/
|
|
8538
8596
|
|
|
8539
8597
|
|
|
@@ -8582,7 +8640,7 @@ class Dlgs {
|
|
|
8582
8640
|
/*!
|
|
8583
8641
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8584
8642
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8585
|
-
* Copyright (c) 2013-
|
|
8643
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8586
8644
|
*/
|
|
8587
8645
|
|
|
8588
8646
|
|
|
@@ -8613,7 +8671,7 @@ class Dlgs {
|
|
|
8613
8671
|
/*!
|
|
8614
8672
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8615
8673
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8616
|
-
* Copyright (c) 2013-
|
|
8674
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8617
8675
|
*/
|
|
8618
8676
|
|
|
8619
8677
|
|
|
@@ -8849,7 +8907,7 @@ var external_assert_ = __webpack_require__(52378);
|
|
|
8849
8907
|
/*!
|
|
8850
8908
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8851
8909
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8852
|
-
* Copyright (c) 2013-
|
|
8910
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8853
8911
|
*/
|
|
8854
8912
|
|
|
8855
8913
|
|
|
@@ -8927,7 +8985,7 @@ var ui_element = __webpack_require__(53929);
|
|
|
8927
8985
|
/*!
|
|
8928
8986
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8929
8987
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8930
|
-
* Copyright (c) 2013-
|
|
8988
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8931
8989
|
*/
|
|
8932
8990
|
|
|
8933
8991
|
|
|
@@ -9021,7 +9079,7 @@ class UITooltip extends ui_element/* UIElement */.u {
|
|
|
9021
9079
|
/*!
|
|
9022
9080
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9023
9081
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9024
|
-
* Copyright (c) 2013-
|
|
9082
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9025
9083
|
*/
|
|
9026
9084
|
|
|
9027
9085
|
|
|
@@ -9047,7 +9105,7 @@ class UITooltip extends ui_element/* UIElement */.u {
|
|
|
9047
9105
|
/*!
|
|
9048
9106
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9049
9107
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9050
|
-
* Copyright (c) 2013-
|
|
9108
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9051
9109
|
*/
|
|
9052
9110
|
var UIElement_1;
|
|
9053
9111
|
|
|
@@ -9197,7 +9255,7 @@ var validators = __webpack_require__(49587);
|
|
|
9197
9255
|
/*!
|
|
9198
9256
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9199
9257
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9200
|
-
* Copyright (c) 2013-
|
|
9258
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9201
9259
|
*/
|
|
9202
9260
|
var UISelect_1;
|
|
9203
9261
|
|
|
@@ -9270,7 +9328,7 @@ var component_component = __webpack_require__(45113);
|
|
|
9270
9328
|
/*!
|
|
9271
9329
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9272
9330
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9273
|
-
* Copyright (c) 2013-
|
|
9331
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9274
9332
|
*/
|
|
9275
9333
|
|
|
9276
9334
|
|
|
@@ -9337,7 +9395,7 @@ UIForm = (0,tslib_es6/* __decorate */.gn)([
|
|
|
9337
9395
|
/*!
|
|
9338
9396
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9339
9397
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9340
|
-
* Copyright (c) 2013-
|
|
9398
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9341
9399
|
*/
|
|
9342
9400
|
var UITextArea_1;
|
|
9343
9401
|
|
|
@@ -9379,7 +9437,7 @@ var dom = __webpack_require__(24263);
|
|
|
9379
9437
|
/*!
|
|
9380
9438
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9381
9439
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9382
|
-
* Copyright (c) 2013-
|
|
9440
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9383
9441
|
*/
|
|
9384
9442
|
var UICheckbox_1;
|
|
9385
9443
|
|
|
@@ -9450,7 +9508,7 @@ var file = __webpack_require__(41374);
|
|
|
9450
9508
|
/*!
|
|
9451
9509
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9452
9510
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9453
|
-
* Copyright (c) 2013-
|
|
9511
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9454
9512
|
*/
|
|
9455
9513
|
|
|
9456
9514
|
|
|
@@ -9462,7 +9520,7 @@ var file = __webpack_require__(41374);
|
|
|
9462
9520
|
/*!
|
|
9463
9521
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9464
9522
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9465
|
-
* Copyright (c) 2013-
|
|
9523
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9466
9524
|
*/
|
|
9467
9525
|
|
|
9468
9526
|
|
|
@@ -9496,7 +9554,7 @@ UIBlock = (0,tslib_es6/* __decorate */.gn)([
|
|
|
9496
9554
|
/*!
|
|
9497
9555
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9498
9556
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9499
|
-
* Copyright (c) 2013-
|
|
9557
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9500
9558
|
*/
|
|
9501
9559
|
|
|
9502
9560
|
|
|
@@ -9519,7 +9577,7 @@ UIBlock = (0,tslib_es6/* __decorate */.gn)([
|
|
|
9519
9577
|
/*!
|
|
9520
9578
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9521
9579
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9522
|
-
* Copyright (c) 2013-
|
|
9580
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9523
9581
|
*/
|
|
9524
9582
|
|
|
9525
9583
|
|
|
@@ -9593,7 +9651,7 @@ UIFileInput = (0,tslib__WEBPACK_IMPORTED_MODULE_2__/* .__decorate */ .gn)([
|
|
|
9593
9651
|
/*!
|
|
9594
9652
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9595
9653
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9596
|
-
* Copyright (c) 2013-
|
|
9654
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9597
9655
|
*/
|
|
9598
9656
|
var UIInput_1;
|
|
9599
9657
|
|
|
@@ -9835,7 +9893,7 @@ var trim = __webpack_require__(33941);
|
|
|
9835
9893
|
/*!
|
|
9836
9894
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9837
9895
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9838
|
-
* Copyright (c) 2013-
|
|
9896
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9839
9897
|
*/
|
|
9840
9898
|
|
|
9841
9899
|
|
|
@@ -9858,7 +9916,7 @@ const url = function (input) {
|
|
|
9858
9916
|
/*!
|
|
9859
9917
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9860
9918
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9861
|
-
* Copyright (c) 2013-
|
|
9919
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9862
9920
|
*/
|
|
9863
9921
|
|
|
9864
9922
|
const select_required = function (select) {
|
|
@@ -9873,7 +9931,7 @@ const select_required = function (select) {
|
|
|
9873
9931
|
/*!
|
|
9874
9932
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9875
9933
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9876
|
-
* Copyright (c) 2013-
|
|
9934
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9877
9935
|
*/
|
|
9878
9936
|
|
|
9879
9937
|
|
|
@@ -9901,7 +9959,7 @@ const select_required = function (select) {
|
|
|
9901
9959
|
/*!
|
|
9902
9960
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9903
9961
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
9904
|
-
* Copyright (c) 2013-
|
|
9962
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
9905
9963
|
*/
|
|
9906
9964
|
var UIGroup_1;
|
|
9907
9965
|
|
|
@@ -10033,7 +10091,7 @@ var utils = __webpack_require__(76502);
|
|
|
10033
10091
|
/*!
|
|
10034
10092
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10035
10093
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10036
|
-
* Copyright (c) 2013-
|
|
10094
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10037
10095
|
*/
|
|
10038
10096
|
|
|
10039
10097
|
|
|
@@ -10069,7 +10127,7 @@ var component = __webpack_require__(45113);
|
|
|
10069
10127
|
/*!
|
|
10070
10128
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10071
10129
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10072
|
-
* Copyright (c) 2013-
|
|
10130
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10073
10131
|
*/
|
|
10074
10132
|
|
|
10075
10133
|
|
|
@@ -10209,7 +10267,7 @@ UIList = (0,tslib_es6/* __decorate */.gn)([
|
|
|
10209
10267
|
/*!
|
|
10210
10268
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10211
10269
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10212
|
-
* Copyright (c) 2013-
|
|
10270
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10213
10271
|
*/
|
|
10214
10272
|
|
|
10215
10273
|
|
|
@@ -10240,7 +10298,7 @@ UISeparator = (0,tslib__WEBPACK_IMPORTED_MODULE_1__/* .__decorate */ .gn)([
|
|
|
10240
10298
|
/*!
|
|
10241
10299
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10242
10300
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10243
|
-
* Copyright (c) 2013-
|
|
10301
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10244
10302
|
*/
|
|
10245
10303
|
|
|
10246
10304
|
|
|
@@ -10270,7 +10328,7 @@ UISpacer = (0,tslib__WEBPACK_IMPORTED_MODULE_1__/* .__decorate */ .gn)([
|
|
|
10270
10328
|
/*!
|
|
10271
10329
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10272
10330
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10273
|
-
* Copyright (c) 2013-
|
|
10331
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10274
10332
|
*/
|
|
10275
10333
|
|
|
10276
10334
|
const isButtonGroup = (item) => {
|
|
@@ -10309,7 +10367,7 @@ function flatButtonsSet(buttons, jodit) {
|
|
|
10309
10367
|
/*!
|
|
10310
10368
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10311
10369
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10312
|
-
* Copyright (c) 2013-
|
|
10370
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10313
10371
|
*/
|
|
10314
10372
|
|
|
10315
10373
|
|
|
@@ -10370,7 +10428,7 @@ function findControlType(path, controls) {
|
|
|
10370
10428
|
/*!
|
|
10371
10429
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10372
10430
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10373
|
-
* Copyright (c) 2013-
|
|
10431
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10374
10432
|
*/
|
|
10375
10433
|
|
|
10376
10434
|
|
|
@@ -10477,7 +10535,7 @@ var spacer = __webpack_require__(58495);
|
|
|
10477
10535
|
/*!
|
|
10478
10536
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10479
10537
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10480
|
-
* Copyright (c) 2013-
|
|
10538
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10481
10539
|
*/
|
|
10482
10540
|
|
|
10483
10541
|
|
|
@@ -10494,7 +10552,7 @@ var dom = __webpack_require__(24263);
|
|
|
10494
10552
|
/*!
|
|
10495
10553
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10496
10554
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10497
|
-
* Copyright (c) 2013-
|
|
10555
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10498
10556
|
*/
|
|
10499
10557
|
|
|
10500
10558
|
|
|
@@ -10529,7 +10587,7 @@ class ProgressBar extends ui_element/* UIElement */.u {
|
|
|
10529
10587
|
/*!
|
|
10530
10588
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10531
10589
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10532
|
-
* Copyright (c) 2013-
|
|
10590
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10533
10591
|
*/
|
|
10534
10592
|
|
|
10535
10593
|
|
|
@@ -10553,7 +10611,7 @@ class ProgressBar extends ui_element/* UIElement */.u {
|
|
|
10553
10611
|
/*!
|
|
10554
10612
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10555
10613
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10556
|
-
* Copyright (c) 2013-
|
|
10614
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10557
10615
|
*/
|
|
10558
10616
|
|
|
10559
10617
|
|
|
@@ -10579,7 +10637,7 @@ class ProgressBar extends ui_element/* UIElement */.u {
|
|
|
10579
10637
|
/*!
|
|
10580
10638
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10581
10639
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10582
|
-
* Copyright (c) 2013-
|
|
10640
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10583
10641
|
*/
|
|
10584
10642
|
|
|
10585
10643
|
|
|
@@ -10889,7 +10947,7 @@ class Popup extends jodit_core_ui_element__WEBPACK_IMPORTED_MODULE_3__/* .UIElem
|
|
|
10889
10947
|
/*!
|
|
10890
10948
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
10891
10949
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
10892
|
-
* Copyright (c) 2013-
|
|
10950
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
10893
10951
|
*/
|
|
10894
10952
|
|
|
10895
10953
|
|
|
@@ -11024,7 +11082,7 @@ class ViewWithToolbar extends _view__WEBPACK_IMPORTED_MODULE_0__/* .View */ .G {
|
|
|
11024
11082
|
/*!
|
|
11025
11083
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11026
11084
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11027
|
-
* Copyright (c) 2013-
|
|
11085
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11028
11086
|
*/
|
|
11029
11087
|
var View_1;
|
|
11030
11088
|
|
|
@@ -11102,10 +11160,10 @@ let View = View_1 = class View extends jodit_modules__WEBPACK_IMPORTED_MODULE_3_
|
|
|
11102
11160
|
return this.__isFullSize;
|
|
11103
11161
|
}
|
|
11104
11162
|
getVersion() {
|
|
11105
|
-
return "3.24.
|
|
11163
|
+
return "3.24.4";
|
|
11106
11164
|
}
|
|
11107
11165
|
static getVersion() {
|
|
11108
|
-
return "3.24.
|
|
11166
|
+
return "3.24.4";
|
|
11109
11167
|
}
|
|
11110
11168
|
initOptions(options) {
|
|
11111
11169
|
this.options = (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_1__.ConfigProto)(options || {}, (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_1__.ConfigProto)(this.options || {}, View_1.defaultOptions));
|
|
@@ -11128,7 +11186,7 @@ let View = View_1 = class View extends jodit_modules__WEBPACK_IMPORTED_MODULE_3_
|
|
|
11128
11186
|
this.parent = null;
|
|
11129
11187
|
this.mods = {};
|
|
11130
11188
|
this.components = new Set();
|
|
11131
|
-
this.version = "3.24.
|
|
11189
|
+
this.version = "3.24.4";
|
|
11132
11190
|
this.buffer = _storage__WEBPACK_IMPORTED_MODULE_0__/* .Storage.makeStorage */ .Ke.makeStorage();
|
|
11133
11191
|
this.storage = _storage__WEBPACK_IMPORTED_MODULE_0__/* .Storage.makeStorage */ .Ke.makeStorage(true, this.componentName);
|
|
11134
11192
|
this.OPTIONS = View_1.defaultOptions;
|
|
@@ -11236,7 +11294,7 @@ View.defaultOptions = {
|
|
|
11236
11294
|
/*!
|
|
11237
11295
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11238
11296
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11239
|
-
* Copyright (c) 2013-
|
|
11297
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11240
11298
|
*/
|
|
11241
11299
|
|
|
11242
11300
|
|
|
@@ -11310,7 +11368,7 @@ var decorators = __webpack_require__(67493);
|
|
|
11310
11368
|
/*!
|
|
11311
11369
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11312
11370
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11313
|
-
* Copyright (c) 2013-
|
|
11371
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11314
11372
|
*/
|
|
11315
11373
|
|
|
11316
11374
|
class FileBrowserItem {
|
|
@@ -11376,7 +11434,7 @@ class FileBrowserItem {
|
|
|
11376
11434
|
/*!
|
|
11377
11435
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11378
11436
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11379
|
-
* Copyright (c) 2013-
|
|
11437
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11380
11438
|
*/
|
|
11381
11439
|
|
|
11382
11440
|
|
|
@@ -11473,6 +11531,10 @@ let DataProvider = class DataProvider {
|
|
|
11473
11531
|
canI(action) {
|
|
11474
11532
|
const rule = 'allow' + action;
|
|
11475
11533
|
if (false) {}
|
|
11534
|
+
const preset = this.o.permissionsPresets[rule];
|
|
11535
|
+
if (preset !== undefined) {
|
|
11536
|
+
return preset;
|
|
11537
|
+
}
|
|
11476
11538
|
return (this.__currentPermissions == null ||
|
|
11477
11539
|
this.__currentPermissions[rule] === undefined ||
|
|
11478
11540
|
this.__currentPermissions[rule]);
|
|
@@ -11692,7 +11754,7 @@ var context_menu = __webpack_require__(60403);
|
|
|
11692
11754
|
/*!
|
|
11693
11755
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11694
11756
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11695
|
-
* Copyright (c) 2013-
|
|
11757
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11696
11758
|
*/
|
|
11697
11759
|
|
|
11698
11760
|
|
|
@@ -11711,7 +11773,7 @@ var ui = __webpack_require__(93801);
|
|
|
11711
11773
|
/*!
|
|
11712
11774
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11713
11775
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11714
|
-
* Copyright (c) 2013-
|
|
11776
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11715
11777
|
*/
|
|
11716
11778
|
const map = new WeakMap();
|
|
11717
11779
|
const elementsMap = (view) => {
|
|
@@ -11727,7 +11789,7 @@ const elementsMap = (view) => {
|
|
|
11727
11789
|
/*!
|
|
11728
11790
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11729
11791
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11730
|
-
* Copyright (c) 2013-
|
|
11792
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11731
11793
|
*/
|
|
11732
11794
|
function loadItems(fb) {
|
|
11733
11795
|
fb.files.setMod('active', true);
|
|
@@ -11752,7 +11814,7 @@ function loadItems(fb) {
|
|
|
11752
11814
|
/*!
|
|
11753
11815
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11754
11816
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11755
|
-
* Copyright (c) 2013-
|
|
11817
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11756
11818
|
*/
|
|
11757
11819
|
|
|
11758
11820
|
|
|
@@ -11779,7 +11841,7 @@ async function loadTree(fb) {
|
|
|
11779
11841
|
/*!
|
|
11780
11842
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11781
11843
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11782
|
-
* Copyright (c) 2013-
|
|
11844
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11783
11845
|
*/
|
|
11784
11846
|
|
|
11785
11847
|
|
|
@@ -11925,7 +11987,7 @@ var image_editor = __webpack_require__(99583);
|
|
|
11925
11987
|
/*!
|
|
11926
11988
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11927
11989
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11928
|
-
* Copyright (c) 2013-
|
|
11990
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11929
11991
|
*/
|
|
11930
11992
|
function deleteFile(fb, name, source) {
|
|
11931
11993
|
return fb.dataProvider
|
|
@@ -11940,7 +12002,7 @@ function deleteFile(fb, name, source) {
|
|
|
11940
12002
|
/*!
|
|
11941
12003
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
11942
12004
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
11943
|
-
* Copyright (c) 2013-
|
|
12005
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
11944
12006
|
*/
|
|
11945
12007
|
|
|
11946
12008
|
|
|
@@ -12101,7 +12163,7 @@ const CLASS_PREVIEW = 'jodit-filebrowser-preview', preview_tpl_next = (next = 'n
|
|
|
12101
12163
|
/*!
|
|
12102
12164
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12103
12165
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12104
|
-
* Copyright (c) 2013-
|
|
12166
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12105
12167
|
*/
|
|
12106
12168
|
|
|
12107
12169
|
|
|
@@ -12196,7 +12258,7 @@ var checker = __webpack_require__(78411);
|
|
|
12196
12258
|
/*!
|
|
12197
12259
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12198
12260
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12199
|
-
* Copyright (c) 2013-
|
|
12261
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12200
12262
|
*/
|
|
12201
12263
|
|
|
12202
12264
|
|
|
@@ -12323,7 +12385,7 @@ function selfListeners() {
|
|
|
12323
12385
|
/*!
|
|
12324
12386
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12325
12387
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12326
|
-
* Copyright (c) 2013-
|
|
12388
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12327
12389
|
*/
|
|
12328
12390
|
|
|
12329
12391
|
|
|
@@ -12337,7 +12399,7 @@ class FileBrowserFiles extends ui/* UIGroup */.qe {
|
|
|
12337
12399
|
/*!
|
|
12338
12400
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12339
12401
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12340
|
-
* Copyright (c) 2013-
|
|
12402
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12341
12403
|
*/
|
|
12342
12404
|
|
|
12343
12405
|
|
|
@@ -12351,7 +12413,7 @@ class FileBrowserTree extends ui/* UIGroup */.qe {
|
|
|
12351
12413
|
/*!
|
|
12352
12414
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12353
12415
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12354
|
-
* Copyright (c) 2013-
|
|
12416
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12355
12417
|
*/
|
|
12356
12418
|
|
|
12357
12419
|
|
|
@@ -12372,7 +12434,7 @@ var human_size_to_bytes = __webpack_require__(6102);
|
|
|
12372
12434
|
/*!
|
|
12373
12435
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12374
12436
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12375
|
-
* Copyright (c) 2013-
|
|
12437
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12376
12438
|
*/
|
|
12377
12439
|
|
|
12378
12440
|
|
|
@@ -12441,6 +12503,24 @@ config/* Config.prototype.filebrowser */.D.prototype.filebrowser = {
|
|
|
12441
12503
|
renameFolder: true,
|
|
12442
12504
|
moveFolder: true,
|
|
12443
12505
|
moveFile: true,
|
|
12506
|
+
permissionsPresets: {
|
|
12507
|
+
allowFileDownload: undefined,
|
|
12508
|
+
allowFileMove: undefined,
|
|
12509
|
+
allowFileRemove: undefined,
|
|
12510
|
+
allowFileRename: undefined,
|
|
12511
|
+
allowFileUpload: undefined,
|
|
12512
|
+
allowFileUploadRemote: undefined,
|
|
12513
|
+
allowFiles: undefined,
|
|
12514
|
+
allowFolderCreate: undefined,
|
|
12515
|
+
allowFolderMove: undefined,
|
|
12516
|
+
allowFolderRemove: undefined,
|
|
12517
|
+
allowFolderRename: undefined,
|
|
12518
|
+
allowFolderTree: undefined,
|
|
12519
|
+
allowFolders: undefined,
|
|
12520
|
+
allowGeneratePdf: undefined,
|
|
12521
|
+
allowImageCrop: undefined,
|
|
12522
|
+
allowImageResize: undefined
|
|
12523
|
+
},
|
|
12444
12524
|
showFoldersPanel: true,
|
|
12445
12525
|
storeLastOpenedFolder: true,
|
|
12446
12526
|
width: 859,
|
|
@@ -12678,7 +12758,7 @@ config/* Config.prototype.controls.filebrowser */.D.prototype.controls.filebrows
|
|
|
12678
12758
|
/*!
|
|
12679
12759
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12680
12760
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12681
|
-
* Copyright (c) 2013-
|
|
12761
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12682
12762
|
*/
|
|
12683
12763
|
|
|
12684
12764
|
|
|
@@ -12750,7 +12830,6 @@ let FileBrowser = class FileBrowser extends view_with_toolbar/* ViewWithToolbar
|
|
|
12750
12830
|
.defaultCallback, onlyImages = false) {
|
|
12751
12831
|
this.state.onlyImages = onlyImages;
|
|
12752
12832
|
return this.async.promise((resolve, reject) => {
|
|
12753
|
-
var _a;
|
|
12754
12833
|
if (!this.o.items || !this.o.items.url) {
|
|
12755
12834
|
throw (0,helpers.error)('Need set options.filebrowser.ajax.url');
|
|
12756
12835
|
}
|
|
@@ -12768,12 +12847,29 @@ let FileBrowser = class FileBrowser extends view_with_toolbar/* ViewWithToolbar
|
|
|
12768
12847
|
.off('select.filebrowser')
|
|
12769
12848
|
.on('select.filebrowser', this.onSelect(callback));
|
|
12770
12849
|
const header = this.c.div();
|
|
12771
|
-
this.toolbar.build(
|
|
12850
|
+
this.toolbar.build(this.__getButtons()).appendTo(header);
|
|
12772
12851
|
this._dialog.open(this.browser, header);
|
|
12773
12852
|
this.e.fire('sort.filebrowser', this.state.sortBy);
|
|
12774
12853
|
loadTree(this).then(resolve, reject);
|
|
12775
12854
|
});
|
|
12776
12855
|
}
|
|
12856
|
+
__getButtons() {
|
|
12857
|
+
var _a;
|
|
12858
|
+
const options = ((_a = this.o.buttons) !== null && _a !== void 0 ? _a : []);
|
|
12859
|
+
return options.filter((btn) => {
|
|
12860
|
+
if (!(0,helpers.isString)(btn)) {
|
|
12861
|
+
return true;
|
|
12862
|
+
}
|
|
12863
|
+
switch (btn) {
|
|
12864
|
+
case 'filebrowser.edit':
|
|
12865
|
+
return (this.dataProvider.canI('ImageResize') ||
|
|
12866
|
+
this.dataProvider.canI('ImageCrop'));
|
|
12867
|
+
case 'filebrowser.remove':
|
|
12868
|
+
return this.dataProvider.canI('FileRemove');
|
|
12869
|
+
}
|
|
12870
|
+
return true;
|
|
12871
|
+
});
|
|
12872
|
+
}
|
|
12777
12873
|
initUploader(editor) {
|
|
12778
12874
|
var _a;
|
|
12779
12875
|
const self = this, options = (_a = editor === null || editor === void 0 ? void 0 : editor.options) === null || _a === void 0 ? void 0 : _a.uploader, uploaderOptions = (0,helpers.ConfigProto)(options || {}, config/* Config.defaultOptions.uploader */.D.defaultOptions.uploader);
|
|
@@ -12935,7 +13031,7 @@ function isFileBrowserFilesItem(target) {
|
|
|
12935
13031
|
/*!
|
|
12936
13032
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12937
13033
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12938
|
-
* Copyright (c) 2013-
|
|
13034
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12939
13035
|
*/
|
|
12940
13036
|
|
|
12941
13037
|
|
|
@@ -12971,7 +13067,7 @@ var ui = __webpack_require__(93801);
|
|
|
12971
13067
|
/*!
|
|
12972
13068
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
12973
13069
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
12974
|
-
* Copyright (c) 2013-
|
|
13070
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
12975
13071
|
*/
|
|
12976
13072
|
|
|
12977
13073
|
const jie = 'jodit-image-editor';
|
|
@@ -13057,7 +13153,7 @@ var icon = __webpack_require__(77904);
|
|
|
13057
13153
|
/*!
|
|
13058
13154
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13059
13155
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
13060
|
-
* Copyright (c) 2013-
|
|
13156
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13061
13157
|
*/
|
|
13062
13158
|
|
|
13063
13159
|
|
|
@@ -13082,7 +13178,7 @@ icon/* Icon.set */.J.set('crop', __webpack_require__(3610)).set('resize', __webp
|
|
|
13082
13178
|
/*!
|
|
13083
13179
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13084
13180
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
13085
|
-
* Copyright (c) 2013-
|
|
13181
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13086
13182
|
*/
|
|
13087
13183
|
var ImageEditor_1;
|
|
13088
13184
|
|
|
@@ -13717,7 +13813,7 @@ var messages = __webpack_require__(17832);
|
|
|
13717
13813
|
/*!
|
|
13718
13814
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13719
13815
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
13720
|
-
* Copyright (c) 2013-
|
|
13816
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13721
13817
|
*/
|
|
13722
13818
|
|
|
13723
13819
|
|
|
@@ -14160,7 +14256,7 @@ Dialog = (0,tslib_es6/* __decorate */.gn)([
|
|
|
14160
14256
|
/*!
|
|
14161
14257
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14162
14258
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14163
|
-
* Copyright (c) 2013-
|
|
14259
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14164
14260
|
*/
|
|
14165
14261
|
|
|
14166
14262
|
|
|
@@ -14190,7 +14286,7 @@ function Alert(msg, title, callback, className = 'jodit-dialog_alert') {
|
|
|
14190
14286
|
/*!
|
|
14191
14287
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14192
14288
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14193
|
-
* Copyright (c) 2013-
|
|
14289
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14194
14290
|
*/
|
|
14195
14291
|
|
|
14196
14292
|
|
|
@@ -14243,7 +14339,7 @@ var button_button = __webpack_require__(96031);
|
|
|
14243
14339
|
/*!
|
|
14244
14340
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14245
14341
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14246
|
-
* Copyright (c) 2013-
|
|
14342
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14247
14343
|
*/
|
|
14248
14344
|
|
|
14249
14345
|
|
|
@@ -14279,7 +14375,7 @@ function Confirm(msg, title, callback) {
|
|
|
14279
14375
|
/*!
|
|
14280
14376
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14281
14377
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14282
|
-
* Copyright (c) 2013-
|
|
14378
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14283
14379
|
*/
|
|
14284
14380
|
|
|
14285
14381
|
|
|
@@ -14292,7 +14388,7 @@ var core_plugin = __webpack_require__(57549);
|
|
|
14292
14388
|
/*!
|
|
14293
14389
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14294
14390
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14295
|
-
* Copyright (c) 2013-
|
|
14391
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14296
14392
|
*/
|
|
14297
14393
|
|
|
14298
14394
|
|
|
@@ -14404,7 +14500,7 @@ class Create {
|
|
|
14404
14500
|
/*!
|
|
14405
14501
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14406
14502
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14407
|
-
* Copyright (c) 2013-
|
|
14503
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14408
14504
|
*/
|
|
14409
14505
|
|
|
14410
14506
|
|
|
@@ -14416,7 +14512,7 @@ var image_editor = __webpack_require__(99583);
|
|
|
14416
14512
|
/*!
|
|
14417
14513
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14418
14514
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14419
|
-
* Copyright (c) 2013-
|
|
14515
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14420
14516
|
*/
|
|
14421
14517
|
|
|
14422
14518
|
|
|
@@ -14580,7 +14676,7 @@ class Snapshot extends component/* ViewComponent */.Hr {
|
|
|
14580
14676
|
/*!
|
|
14581
14677
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14582
14678
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14583
|
-
* Copyright (c) 2013-
|
|
14679
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14584
14680
|
*/
|
|
14585
14681
|
class Stack {
|
|
14586
14682
|
constructor(size) {
|
|
@@ -14645,7 +14741,7 @@ class Stack {
|
|
|
14645
14741
|
/*!
|
|
14646
14742
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14647
14743
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14648
|
-
* Copyright (c) 2013-
|
|
14744
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14649
14745
|
*/
|
|
14650
14746
|
class Command {
|
|
14651
14747
|
undo() {
|
|
@@ -14666,7 +14762,7 @@ class Command {
|
|
|
14666
14762
|
/*!
|
|
14667
14763
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14668
14764
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14669
|
-
* Copyright (c) 2013-
|
|
14765
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14670
14766
|
*/
|
|
14671
14767
|
|
|
14672
14768
|
|
|
@@ -14824,7 +14920,7 @@ var checker = __webpack_require__(78411);
|
|
|
14824
14920
|
/*!
|
|
14825
14921
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14826
14922
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14827
|
-
* Copyright (c) 2013-
|
|
14923
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14828
14924
|
*/
|
|
14829
14925
|
|
|
14830
14926
|
|
|
@@ -14975,7 +15071,7 @@ var is_marker = __webpack_require__(37204);
|
|
|
14975
15071
|
/*!
|
|
14976
15072
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14977
15073
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14978
|
-
* Copyright (c) 2013-
|
|
15074
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14979
15075
|
*/
|
|
14980
15076
|
|
|
14981
15077
|
|
|
@@ -15009,7 +15105,7 @@ function extractAndMove(wrapper, range, left) {
|
|
|
15009
15105
|
/*!
|
|
15010
15106
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15011
15107
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15012
|
-
* Copyright (c) 2013-
|
|
15108
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15013
15109
|
*/
|
|
15014
15110
|
|
|
15015
15111
|
|
|
@@ -15061,7 +15157,7 @@ function unwrapList(mode, list, li, jodit, cs) {
|
|
|
15061
15157
|
/*!
|
|
15062
15158
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15063
15159
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15064
|
-
* Copyright (c) 2013-
|
|
15160
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15065
15161
|
*/
|
|
15066
15162
|
|
|
15067
15163
|
|
|
@@ -15100,7 +15196,7 @@ var is_void = __webpack_require__(24021);
|
|
|
15100
15196
|
/*!
|
|
15101
15197
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15102
15198
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15103
|
-
* Copyright (c) 2013-
|
|
15199
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15104
15200
|
*/
|
|
15105
15201
|
|
|
15106
15202
|
|
|
@@ -15146,7 +15242,7 @@ var assert = __webpack_require__(603);
|
|
|
15146
15242
|
/*!
|
|
15147
15243
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15148
15244
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15149
|
-
* Copyright (c) 2013-
|
|
15245
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15150
15246
|
*/
|
|
15151
15247
|
|
|
15152
15248
|
|
|
@@ -15187,7 +15283,7 @@ class FiniteStateMachine {
|
|
|
15187
15283
|
/*!
|
|
15188
15284
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15189
15285
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15190
|
-
* Copyright (c) 2013-
|
|
15286
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15191
15287
|
*/
|
|
15192
15288
|
|
|
15193
15289
|
|
|
@@ -15237,7 +15333,7 @@ function isSameStyleChild(commitStyle, elm) {
|
|
|
15237
15333
|
/*!
|
|
15238
15334
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15239
15335
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15240
|
-
* Copyright (c) 2013-
|
|
15336
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15241
15337
|
*/
|
|
15242
15338
|
|
|
15243
15339
|
|
|
@@ -15262,7 +15358,7 @@ function getSuitChild(style, font) {
|
|
|
15262
15358
|
/*!
|
|
15263
15359
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15264
15360
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15265
|
-
* Copyright (c) 2013-
|
|
15361
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15266
15362
|
*/
|
|
15267
15363
|
|
|
15268
15364
|
|
|
@@ -15294,7 +15390,7 @@ function getSuitParent(style, node, root) {
|
|
|
15294
15390
|
/*!
|
|
15295
15391
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15296
15392
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15297
|
-
* Copyright (c) 2013-
|
|
15393
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15298
15394
|
*/
|
|
15299
15395
|
|
|
15300
15396
|
function isInsideInvisibleElement(font, root) {
|
|
@@ -15305,7 +15401,7 @@ function isInsideInvisibleElement(font, root) {
|
|
|
15305
15401
|
/*!
|
|
15306
15402
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15307
15403
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15308
|
-
* Copyright (c) 2013-
|
|
15404
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15309
15405
|
*/
|
|
15310
15406
|
|
|
15311
15407
|
|
|
@@ -15339,7 +15435,7 @@ function elementsEqualAttributes(elm1, elm2) {
|
|
|
15339
15435
|
/*!
|
|
15340
15436
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15341
15437
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15342
|
-
* Copyright (c) 2013-
|
|
15438
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15343
15439
|
*/
|
|
15344
15440
|
|
|
15345
15441
|
|
|
@@ -15398,7 +15494,7 @@ function unwrapChildren(style, font) {
|
|
|
15398
15494
|
/*!
|
|
15399
15495
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15400
15496
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15401
|
-
* Copyright (c) 2013-
|
|
15497
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15402
15498
|
*/
|
|
15403
15499
|
|
|
15404
15500
|
|
|
@@ -15448,7 +15544,7 @@ function wrapUnwrappedText(style, elm, jodit) {
|
|
|
15448
15544
|
/*!
|
|
15449
15545
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15450
15546
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15451
|
-
* Copyright (c) 2013-
|
|
15547
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15452
15548
|
*/
|
|
15453
15549
|
|
|
15454
15550
|
|
|
@@ -15486,7 +15582,7 @@ function findOrCreateWrapper(commitStyle, font, jodit) {
|
|
|
15486
15582
|
/*!
|
|
15487
15583
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15488
15584
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15489
|
-
* Copyright (c) 2013-
|
|
15585
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15490
15586
|
*/
|
|
15491
15587
|
|
|
15492
15588
|
|
|
@@ -15508,7 +15604,7 @@ function findOrCreateWrapper(commitStyle, font, jodit) {
|
|
|
15508
15604
|
/*!
|
|
15509
15605
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15510
15606
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15511
|
-
* Copyright (c) 2013-
|
|
15607
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15512
15608
|
*/
|
|
15513
15609
|
|
|
15514
15610
|
|
|
@@ -15679,7 +15775,7 @@ const transactions = {
|
|
|
15679
15775
|
/*!
|
|
15680
15776
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15681
15777
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15682
|
-
* Copyright (c) 2013-
|
|
15778
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15683
15779
|
*/
|
|
15684
15780
|
|
|
15685
15781
|
|
|
@@ -15713,7 +15809,7 @@ function ApplyStyle(jodit, cs) {
|
|
|
15713
15809
|
/*!
|
|
15714
15810
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15715
15811
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15716
|
-
* Copyright (c) 2013-
|
|
15812
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15717
15813
|
*/
|
|
15718
15814
|
|
|
15719
15815
|
|
|
@@ -15813,7 +15909,7 @@ var selection_helpers = __webpack_require__(80805);
|
|
|
15813
15909
|
/*!
|
|
15814
15910
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15815
15911
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
15816
|
-
* Copyright (c) 2013-
|
|
15912
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
15817
15913
|
*/
|
|
15818
15914
|
|
|
15819
15915
|
|
|
@@ -16724,7 +16820,7 @@ class Select {
|
|
|
16724
16820
|
/*!
|
|
16725
16821
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16726
16822
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16727
|
-
* Copyright (c) 2013-
|
|
16823
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16728
16824
|
*/
|
|
16729
16825
|
|
|
16730
16826
|
|
|
@@ -16735,7 +16831,7 @@ var traits = __webpack_require__(72452);
|
|
|
16735
16831
|
/*!
|
|
16736
16832
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16737
16833
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16738
|
-
* Copyright (c) 2013-
|
|
16834
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16739
16835
|
*/
|
|
16740
16836
|
|
|
16741
16837
|
|
|
@@ -16820,7 +16916,7 @@ var content = __webpack_require__(34375);
|
|
|
16820
16916
|
/*!
|
|
16821
16917
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16822
16918
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16823
|
-
* Copyright (c) 2013-
|
|
16919
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16824
16920
|
*/
|
|
16825
16921
|
|
|
16826
16922
|
|
|
@@ -16829,7 +16925,7 @@ var content = __webpack_require__(34375);
|
|
|
16829
16925
|
/*!
|
|
16830
16926
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16831
16927
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16832
|
-
* Copyright (c) 2013-
|
|
16928
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16833
16929
|
*/
|
|
16834
16930
|
|
|
16835
16931
|
|
|
@@ -16863,7 +16959,7 @@ function processOldBrowserDrag(self, cData, handlerSuccess, handlerError, onFina
|
|
|
16863
16959
|
/*!
|
|
16864
16960
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16865
16961
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16866
|
-
* Copyright (c) 2013-
|
|
16962
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16867
16963
|
*/
|
|
16868
16964
|
|
|
16869
16965
|
function buildData(uploader, data) {
|
|
@@ -16891,7 +16987,7 @@ function buildData(uploader, data) {
|
|
|
16891
16987
|
/*!
|
|
16892
16988
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16893
16989
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16894
|
-
* Copyright (c) 2013-
|
|
16990
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16895
16991
|
*/
|
|
16896
16992
|
|
|
16897
16993
|
|
|
@@ -16965,7 +17061,7 @@ function send(uploader, data) {
|
|
|
16965
17061
|
/*!
|
|
16966
17062
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16967
17063
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16968
|
-
* Copyright (c) 2013-
|
|
17064
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16969
17065
|
*/
|
|
16970
17066
|
|
|
16971
17067
|
|
|
@@ -17072,7 +17168,7 @@ function send_files_sendFiles(uploader, files, handlerSuccess, handlerError, pro
|
|
|
17072
17168
|
/*!
|
|
17073
17169
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
17074
17170
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17075
|
-
* Copyright (c) 2013-
|
|
17171
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17076
17172
|
*/
|
|
17077
17173
|
|
|
17078
17174
|
|
|
@@ -17094,7 +17190,7 @@ var is_jodit_object = __webpack_require__(77892);
|
|
|
17094
17190
|
/*!
|
|
17095
17191
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
17096
17192
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17097
|
-
* Copyright (c) 2013-
|
|
17193
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17098
17194
|
*/
|
|
17099
17195
|
|
|
17100
17196
|
|
|
@@ -17175,7 +17271,7 @@ config/* Config.prototype.uploader */.D.prototype.uploader = {
|
|
|
17175
17271
|
/*!
|
|
17176
17272
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
17177
17273
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17178
|
-
* Copyright (c) 2013-
|
|
17274
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17179
17275
|
*/
|
|
17180
17276
|
|
|
17181
17277
|
|
|
@@ -17338,7 +17434,7 @@ var plugin_system = __webpack_require__(44540);
|
|
|
17338
17434
|
/*!
|
|
17339
17435
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
17340
17436
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17341
|
-
* Copyright (c) 2013-
|
|
17437
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17342
17438
|
*/
|
|
17343
17439
|
|
|
17344
17440
|
|
|
@@ -17397,7 +17493,7 @@ var ui = __webpack_require__(93801);
|
|
|
17397
17493
|
/*!
|
|
17398
17494
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
17399
17495
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17400
|
-
* Copyright (c) 2013-
|
|
17496
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17401
17497
|
*/
|
|
17402
17498
|
|
|
17403
17499
|
|
|
@@ -17422,7 +17518,7 @@ UIMessage = (0,tslib_es6/* __decorate */.gn)([
|
|
|
17422
17518
|
/*!
|
|
17423
17519
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
17424
17520
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17425
|
-
* Copyright (c) 2013-
|
|
17521
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17426
17522
|
*/
|
|
17427
17523
|
|
|
17428
17524
|
|
|
@@ -17528,7 +17624,7 @@ UIMessages = (0,tslib_es6/* __decorate */.gn)([
|
|
|
17528
17624
|
/*!
|
|
17529
17625
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
17530
17626
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
17531
|
-
* Copyright (c) 2013-
|
|
17627
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17532
17628
|
*/
|
|
17533
17629
|
|
|
17534
17630
|
|
|
@@ -18129,7 +18225,7 @@ const instance = (j) => j.getInstance('Table', j.o);
|
|
|
18129
18225
|
/*!
|
|
18130
18226
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18131
18227
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18132
|
-
* Copyright (c) 2013-
|
|
18228
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18133
18229
|
*/
|
|
18134
18230
|
|
|
18135
18231
|
|
|
@@ -18513,7 +18609,7 @@ ToolbarButton = (0,tslib__WEBPACK_IMPORTED_MODULE_10__/* .__decorate */ .gn)([
|
|
|
18513
18609
|
/*!
|
|
18514
18610
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18515
18611
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18516
|
-
* Copyright (c) 2013-
|
|
18612
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18517
18613
|
*/
|
|
18518
18614
|
|
|
18519
18615
|
|
|
@@ -18567,7 +18663,7 @@ ToolbarContent = (0,tslib__WEBPACK_IMPORTED_MODULE_4__/* .__decorate */ .gn)([
|
|
|
18567
18663
|
/*!
|
|
18568
18664
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18569
18665
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18570
|
-
* Copyright (c) 2013-
|
|
18666
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18571
18667
|
*/
|
|
18572
18668
|
|
|
18573
18669
|
|
|
@@ -18676,7 +18772,7 @@ ToolbarCollection = (0,tslib__WEBPACK_IMPORTED_MODULE_4__/* .__decorate */ .gn)(
|
|
|
18676
18772
|
/*!
|
|
18677
18773
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18678
18774
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18679
|
-
* Copyright (c) 2013-
|
|
18775
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18680
18776
|
*/
|
|
18681
18777
|
|
|
18682
18778
|
|
|
@@ -18803,7 +18899,7 @@ ToolbarEditorCollection = (0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */
|
|
|
18803
18899
|
/*!
|
|
18804
18900
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18805
18901
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18806
|
-
* Copyright (c) 2013-
|
|
18902
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18807
18903
|
*/
|
|
18808
18904
|
|
|
18809
18905
|
|
|
@@ -18859,7 +18955,7 @@ var dom = __webpack_require__(64968);
|
|
|
18859
18955
|
/*!
|
|
18860
18956
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18861
18957
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18862
|
-
* Copyright (c) 2013-
|
|
18958
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18863
18959
|
*/
|
|
18864
18960
|
|
|
18865
18961
|
|
|
@@ -18939,7 +19035,7 @@ var dom_dom = __webpack_require__(24263);
|
|
|
18939
19035
|
/*!
|
|
18940
19036
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18941
19037
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18942
|
-
* Copyright (c) 2013-
|
|
19038
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18943
19039
|
*/
|
|
18944
19040
|
|
|
18945
19041
|
|
|
@@ -19030,7 +19126,7 @@ const TabsWidget = (jodit, tabs, state) => {
|
|
|
19030
19126
|
/*!
|
|
19031
19127
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19032
19128
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19033
|
-
* Copyright (c) 2013-
|
|
19129
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19034
19130
|
*/
|
|
19035
19131
|
|
|
19036
19132
|
|
|
@@ -19130,7 +19226,7 @@ const FileSelectorWidget = (editor, callbacks, elm, close, isImage = true) => {
|
|
|
19130
19226
|
/*!
|
|
19131
19227
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19132
19228
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19133
|
-
* Copyright (c) 2013-
|
|
19229
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19134
19230
|
*/
|
|
19135
19231
|
|
|
19136
19232
|
|
|
@@ -19168,7 +19264,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19168
19264
|
/*!
|
|
19169
19265
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19170
19266
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19171
|
-
* Copyright (c) 2013-
|
|
19267
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19172
19268
|
*/
|
|
19173
19269
|
const ar = __webpack_require__(80078);
|
|
19174
19270
|
const cs_cz = __webpack_require__(16986);
|
|
@@ -19202,7 +19298,7 @@ const zh_tw = __webpack_require__(28765);
|
|
|
19202
19298
|
/*!
|
|
19203
19299
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19204
19300
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19205
|
-
* Copyright (c) 2013-
|
|
19301
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19206
19302
|
*/
|
|
19207
19303
|
|
|
19208
19304
|
/* harmony default export */ __webpack_exports__["Z"] = ([
|
|
@@ -19239,7 +19335,7 @@ const zh_tw = __webpack_require__(28765);
|
|
|
19239
19335
|
/*!
|
|
19240
19336
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19241
19337
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19242
|
-
* Copyright (c) 2013-
|
|
19338
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19243
19339
|
*/
|
|
19244
19340
|
|
|
19245
19341
|
|
|
@@ -19373,7 +19469,7 @@ const cmd = (control) => control.args && (0,jodit_core_helpers_checker__WEBPACK_
|
|
|
19373
19469
|
/*!
|
|
19374
19470
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19375
19471
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19376
|
-
* Copyright (c) 2013-
|
|
19472
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19377
19473
|
*/
|
|
19378
19474
|
|
|
19379
19475
|
/* harmony default export */ __webpack_exports__["Z"] = ([
|
|
@@ -19404,7 +19500,7 @@ const cmd = (control) => control.args && (0,jodit_core_helpers_checker__WEBPACK_
|
|
|
19404
19500
|
/*!
|
|
19405
19501
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19406
19502
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19407
|
-
* Copyright (c) 2013-
|
|
19503
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19408
19504
|
*/
|
|
19409
19505
|
|
|
19410
19506
|
|
|
@@ -19483,7 +19579,7 @@ const align = {
|
|
|
19483
19579
|
/*!
|
|
19484
19580
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19485
19581
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19486
|
-
* Copyright (c) 2013-
|
|
19582
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19487
19583
|
*/
|
|
19488
19584
|
/* harmony default export */ __webpack_exports__["Z"] = ([
|
|
19489
19585
|
'bold',
|
|
@@ -19545,7 +19641,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19545
19641
|
/*!
|
|
19546
19642
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19547
19643
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19548
|
-
* Copyright (c) 2013-
|
|
19644
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19549
19645
|
*/
|
|
19550
19646
|
const ar = __webpack_require__(47762);
|
|
19551
19647
|
const cs_cz = __webpack_require__(97495);
|
|
@@ -19600,7 +19696,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19600
19696
|
/*!
|
|
19601
19697
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19602
19698
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19603
|
-
* Copyright (c) 2013-
|
|
19699
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19604
19700
|
*/
|
|
19605
19701
|
const ar = __webpack_require__(5586);
|
|
19606
19702
|
const cs_cz = __webpack_require__(66023);
|
|
@@ -19655,7 +19751,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19655
19751
|
/*!
|
|
19656
19752
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19657
19753
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19658
|
-
* Copyright (c) 2013-
|
|
19754
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19659
19755
|
*/
|
|
19660
19756
|
const ar = __webpack_require__(54261);
|
|
19661
19757
|
const cs_cz = __webpack_require__(60425);
|
|
@@ -19687,7 +19783,7 @@ const zh_tw = __webpack_require__(32210);
|
|
|
19687
19783
|
/*!
|
|
19688
19784
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19689
19785
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19690
|
-
* Copyright (c) 2013-
|
|
19786
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19691
19787
|
*/
|
|
19692
19788
|
|
|
19693
19789
|
module.exports = {
|
|
@@ -19703,7 +19799,7 @@ module.exports = {
|
|
|
19703
19799
|
/*!
|
|
19704
19800
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19705
19801
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19706
|
-
* Copyright (c) 2013-
|
|
19802
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19707
19803
|
*/
|
|
19708
19804
|
|
|
19709
19805
|
module.exports = {
|
|
@@ -19719,7 +19815,7 @@ module.exports = {
|
|
|
19719
19815
|
/*!
|
|
19720
19816
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19721
19817
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19722
|
-
* Copyright (c) 2013-
|
|
19818
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19723
19819
|
*/
|
|
19724
19820
|
|
|
19725
19821
|
module.exports = {
|
|
@@ -19735,7 +19831,7 @@ module.exports = {
|
|
|
19735
19831
|
/*!
|
|
19736
19832
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19737
19833
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19738
|
-
* Copyright (c) 2013-
|
|
19834
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19739
19835
|
*/
|
|
19740
19836
|
|
|
19741
19837
|
module.exports = {
|
|
@@ -19751,7 +19847,7 @@ module.exports = {
|
|
|
19751
19847
|
/*!
|
|
19752
19848
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19753
19849
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19754
|
-
* Copyright (c) 2013-
|
|
19850
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19755
19851
|
*/
|
|
19756
19852
|
|
|
19757
19853
|
module.exports = {
|
|
@@ -19767,7 +19863,7 @@ module.exports = {
|
|
|
19767
19863
|
/*!
|
|
19768
19864
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19769
19865
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19770
|
-
* Copyright (c) 2013-
|
|
19866
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19771
19867
|
*/
|
|
19772
19868
|
|
|
19773
19869
|
module.exports = {
|
|
@@ -19783,7 +19879,7 @@ module.exports = {
|
|
|
19783
19879
|
/*!
|
|
19784
19880
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19785
19881
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19786
|
-
* Copyright (c) 2013-
|
|
19882
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19787
19883
|
*/
|
|
19788
19884
|
|
|
19789
19885
|
module.exports = {
|
|
@@ -19799,7 +19895,7 @@ module.exports = {
|
|
|
19799
19895
|
/*!
|
|
19800
19896
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19801
19897
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19802
|
-
* Copyright (c) 2013-
|
|
19898
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19803
19899
|
*/
|
|
19804
19900
|
|
|
19805
19901
|
module.exports = {
|
|
@@ -19815,7 +19911,7 @@ module.exports = {
|
|
|
19815
19911
|
/*!
|
|
19816
19912
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19817
19913
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19818
|
-
* Copyright (c) 2013-
|
|
19914
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19819
19915
|
*/
|
|
19820
19916
|
|
|
19821
19917
|
module.exports = {
|
|
@@ -19831,7 +19927,7 @@ module.exports = {
|
|
|
19831
19927
|
/*!
|
|
19832
19928
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19833
19929
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19834
|
-
* Copyright (c) 2013-
|
|
19930
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19835
19931
|
*/
|
|
19836
19932
|
|
|
19837
19933
|
module.exports = {
|
|
@@ -19847,7 +19943,7 @@ module.exports = {
|
|
|
19847
19943
|
/*!
|
|
19848
19944
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19849
19945
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19850
|
-
* Copyright (c) 2013-
|
|
19946
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19851
19947
|
*/
|
|
19852
19948
|
|
|
19853
19949
|
module.exports = {
|
|
@@ -19863,7 +19959,7 @@ module.exports = {
|
|
|
19863
19959
|
/*!
|
|
19864
19960
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19865
19961
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19866
|
-
* Copyright (c) 2013-
|
|
19962
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19867
19963
|
*/
|
|
19868
19964
|
|
|
19869
19965
|
module.exports = {
|
|
@@ -19879,7 +19975,7 @@ module.exports = {
|
|
|
19879
19975
|
/*!
|
|
19880
19976
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19881
19977
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19882
|
-
* Copyright (c) 2013-
|
|
19978
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19883
19979
|
*/
|
|
19884
19980
|
|
|
19885
19981
|
module.exports = {
|
|
@@ -19895,7 +19991,7 @@ module.exports = {
|
|
|
19895
19991
|
/*!
|
|
19896
19992
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19897
19993
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19898
|
-
* Copyright (c) 2013-
|
|
19994
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19899
19995
|
*/
|
|
19900
19996
|
|
|
19901
19997
|
module.exports = {
|
|
@@ -19911,7 +20007,7 @@ module.exports = {
|
|
|
19911
20007
|
/*!
|
|
19912
20008
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19913
20009
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19914
|
-
* Copyright (c) 2013-
|
|
20010
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19915
20011
|
*/
|
|
19916
20012
|
|
|
19917
20013
|
module.exports = {
|
|
@@ -19927,7 +20023,7 @@ module.exports = {
|
|
|
19927
20023
|
/*!
|
|
19928
20024
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19929
20025
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19930
|
-
* Copyright (c) 2013-
|
|
20026
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19931
20027
|
*/
|
|
19932
20028
|
|
|
19933
20029
|
module.exports = {
|
|
@@ -19943,7 +20039,7 @@ module.exports = {
|
|
|
19943
20039
|
/*!
|
|
19944
20040
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19945
20041
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19946
|
-
* Copyright (c) 2013-
|
|
20042
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19947
20043
|
*/
|
|
19948
20044
|
|
|
19949
20045
|
module.exports = {
|
|
@@ -19959,7 +20055,7 @@ module.exports = {
|
|
|
19959
20055
|
/*!
|
|
19960
20056
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19961
20057
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19962
|
-
* Copyright (c) 2013-
|
|
20058
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19963
20059
|
*/
|
|
19964
20060
|
|
|
19965
20061
|
module.exports = {
|
|
@@ -19975,7 +20071,7 @@ module.exports = {
|
|
|
19975
20071
|
/*!
|
|
19976
20072
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19977
20073
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19978
|
-
* Copyright (c) 2013-
|
|
20074
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19979
20075
|
*/
|
|
19980
20076
|
|
|
19981
20077
|
module.exports = {
|
|
@@ -19991,7 +20087,7 @@ module.exports = {
|
|
|
19991
20087
|
/*!
|
|
19992
20088
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
19993
20089
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
19994
|
-
* Copyright (c) 2013-
|
|
20090
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
19995
20091
|
*/
|
|
19996
20092
|
|
|
19997
20093
|
module.exports = {
|
|
@@ -20007,7 +20103,7 @@ module.exports = {
|
|
|
20007
20103
|
/*!
|
|
20008
20104
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20009
20105
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20010
|
-
* Copyright (c) 2013-
|
|
20106
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20011
20107
|
*/
|
|
20012
20108
|
|
|
20013
20109
|
module.exports = {
|
|
@@ -20023,7 +20119,7 @@ module.exports = {
|
|
|
20023
20119
|
/*!
|
|
20024
20120
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20025
20121
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20026
|
-
* Copyright (c) 2013-
|
|
20122
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20027
20123
|
*/
|
|
20028
20124
|
|
|
20029
20125
|
module.exports = {
|
|
@@ -20039,7 +20135,7 @@ module.exports = {
|
|
|
20039
20135
|
/*!
|
|
20040
20136
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20041
20137
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20042
|
-
* Copyright (c) 2013-
|
|
20138
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20043
20139
|
*/
|
|
20044
20140
|
|
|
20045
20141
|
module.exports = {
|
|
@@ -20055,7 +20151,7 @@ module.exports = {
|
|
|
20055
20151
|
/*!
|
|
20056
20152
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20057
20153
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20058
|
-
* Copyright (c) 2013-
|
|
20154
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20059
20155
|
*/
|
|
20060
20156
|
|
|
20061
20157
|
module.exports = {
|
|
@@ -20071,7 +20167,7 @@ module.exports = {
|
|
|
20071
20167
|
/*!
|
|
20072
20168
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20073
20169
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20074
|
-
* Copyright (c) 2013-
|
|
20170
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20075
20171
|
*/
|
|
20076
20172
|
|
|
20077
20173
|
module.exports = {
|
|
@@ -20087,7 +20183,7 @@ module.exports = {
|
|
|
20087
20183
|
/*!
|
|
20088
20184
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20089
20185
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20090
|
-
* Copyright (c) 2013-
|
|
20186
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20091
20187
|
*/
|
|
20092
20188
|
|
|
20093
20189
|
module.exports = {
|
|
@@ -20103,7 +20199,7 @@ module.exports = {
|
|
|
20103
20199
|
/*!
|
|
20104
20200
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20105
20201
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20106
|
-
* Copyright (c) 2013-
|
|
20202
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20107
20203
|
*/
|
|
20108
20204
|
|
|
20109
20205
|
module.exports = {
|
|
@@ -20119,7 +20215,7 @@ module.exports = {
|
|
|
20119
20215
|
/*!
|
|
20120
20216
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20121
20217
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20122
|
-
* Copyright (c) 2013-
|
|
20218
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20123
20219
|
*/
|
|
20124
20220
|
|
|
20125
20221
|
module.exports = {
|
|
@@ -20135,7 +20231,7 @@ module.exports = {
|
|
|
20135
20231
|
/*!
|
|
20136
20232
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20137
20233
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20138
|
-
* Copyright (c) 2013-
|
|
20234
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20139
20235
|
*/
|
|
20140
20236
|
|
|
20141
20237
|
module.exports = {
|
|
@@ -20151,7 +20247,7 @@ module.exports = {
|
|
|
20151
20247
|
/*!
|
|
20152
20248
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20153
20249
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20154
|
-
* Copyright (c) 2013-
|
|
20250
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20155
20251
|
*/
|
|
20156
20252
|
|
|
20157
20253
|
module.exports = {
|
|
@@ -20167,7 +20263,7 @@ module.exports = {
|
|
|
20167
20263
|
/*!
|
|
20168
20264
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20169
20265
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20170
|
-
* Copyright (c) 2013-
|
|
20266
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20171
20267
|
*/
|
|
20172
20268
|
|
|
20173
20269
|
module.exports = {
|
|
@@ -20183,7 +20279,7 @@ module.exports = {
|
|
|
20183
20279
|
/*!
|
|
20184
20280
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20185
20281
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20186
|
-
* Copyright (c) 2013-
|
|
20282
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20187
20283
|
*/
|
|
20188
20284
|
|
|
20189
20285
|
module.exports = {
|
|
@@ -20199,7 +20295,7 @@ module.exports = {
|
|
|
20199
20295
|
/*!
|
|
20200
20296
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20201
20297
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20202
|
-
* Copyright (c) 2013-
|
|
20298
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20203
20299
|
*/
|
|
20204
20300
|
|
|
20205
20301
|
module.exports = {
|
|
@@ -20215,7 +20311,7 @@ module.exports = {
|
|
|
20215
20311
|
/*!
|
|
20216
20312
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20217
20313
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20218
|
-
* Copyright (c) 2013-
|
|
20314
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20219
20315
|
*/
|
|
20220
20316
|
|
|
20221
20317
|
module.exports = {
|
|
@@ -20231,7 +20327,7 @@ module.exports = {
|
|
|
20231
20327
|
/*!
|
|
20232
20328
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20233
20329
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20234
|
-
* Copyright (c) 2013-
|
|
20330
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20235
20331
|
*/
|
|
20236
20332
|
|
|
20237
20333
|
module.exports = {
|
|
@@ -20247,7 +20343,7 @@ module.exports = {
|
|
|
20247
20343
|
/*!
|
|
20248
20344
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20249
20345
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20250
|
-
* Copyright (c) 2013-
|
|
20346
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20251
20347
|
*/
|
|
20252
20348
|
|
|
20253
20349
|
module.exports = {
|
|
@@ -20263,7 +20359,7 @@ module.exports = {
|
|
|
20263
20359
|
/*!
|
|
20264
20360
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20265
20361
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20266
|
-
* Copyright (c) 2013-
|
|
20362
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20267
20363
|
*/
|
|
20268
20364
|
|
|
20269
20365
|
module.exports = {
|
|
@@ -20279,7 +20375,7 @@ module.exports = {
|
|
|
20279
20375
|
/*!
|
|
20280
20376
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20281
20377
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20282
|
-
* Copyright (c) 2013-
|
|
20378
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20283
20379
|
*/
|
|
20284
20380
|
|
|
20285
20381
|
module.exports = {
|
|
@@ -20295,7 +20391,7 @@ module.exports = {
|
|
|
20295
20391
|
/*!
|
|
20296
20392
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20297
20393
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20298
|
-
* Copyright (c) 2013-
|
|
20394
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20299
20395
|
*/
|
|
20300
20396
|
|
|
20301
20397
|
module.exports = {
|
|
@@ -20311,7 +20407,7 @@ module.exports = {
|
|
|
20311
20407
|
/*!
|
|
20312
20408
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20313
20409
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20314
|
-
* Copyright (c) 2013-
|
|
20410
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20315
20411
|
*/
|
|
20316
20412
|
|
|
20317
20413
|
module.exports = {
|
|
@@ -20327,7 +20423,7 @@ module.exports = {
|
|
|
20327
20423
|
/*!
|
|
20328
20424
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20329
20425
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20330
|
-
* Copyright (c) 2013-
|
|
20426
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20331
20427
|
*/
|
|
20332
20428
|
|
|
20333
20429
|
module.exports = {
|
|
@@ -20343,7 +20439,7 @@ module.exports = {
|
|
|
20343
20439
|
/*!
|
|
20344
20440
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20345
20441
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20346
|
-
* Copyright (c) 2013-
|
|
20442
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20347
20443
|
*/
|
|
20348
20444
|
|
|
20349
20445
|
module.exports = {
|
|
@@ -20359,7 +20455,7 @@ module.exports = {
|
|
|
20359
20455
|
/*!
|
|
20360
20456
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20361
20457
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20362
|
-
* Copyright (c) 2013-
|
|
20458
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20363
20459
|
*/
|
|
20364
20460
|
|
|
20365
20461
|
module.exports = {
|
|
@@ -20375,7 +20471,7 @@ module.exports = {
|
|
|
20375
20471
|
/*!
|
|
20376
20472
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20377
20473
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20378
|
-
* Copyright (c) 2013-
|
|
20474
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20379
20475
|
*/
|
|
20380
20476
|
|
|
20381
20477
|
module.exports = {
|
|
@@ -20391,7 +20487,7 @@ module.exports = {
|
|
|
20391
20487
|
/*!
|
|
20392
20488
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20393
20489
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20394
|
-
* Copyright (c) 2013-
|
|
20490
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20395
20491
|
*/
|
|
20396
20492
|
|
|
20397
20493
|
module.exports = {
|
|
@@ -20407,7 +20503,7 @@ module.exports = {
|
|
|
20407
20503
|
/*!
|
|
20408
20504
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20409
20505
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20410
|
-
* Copyright (c) 2013-
|
|
20506
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20411
20507
|
*/
|
|
20412
20508
|
|
|
20413
20509
|
module.exports = {
|
|
@@ -20423,7 +20519,7 @@ module.exports = {
|
|
|
20423
20519
|
/*!
|
|
20424
20520
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20425
20521
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20426
|
-
* Copyright (c) 2013-
|
|
20522
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20427
20523
|
*/
|
|
20428
20524
|
|
|
20429
20525
|
module.exports = {
|
|
@@ -20439,7 +20535,7 @@ module.exports = {
|
|
|
20439
20535
|
/*!
|
|
20440
20536
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20441
20537
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20442
|
-
* Copyright (c) 2013-
|
|
20538
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20443
20539
|
*/
|
|
20444
20540
|
|
|
20445
20541
|
module.exports = {
|
|
@@ -20455,7 +20551,7 @@ module.exports = {
|
|
|
20455
20551
|
/*!
|
|
20456
20552
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20457
20553
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20458
|
-
* Copyright (c) 2013-
|
|
20554
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20459
20555
|
*/
|
|
20460
20556
|
|
|
20461
20557
|
module.exports = {
|
|
@@ -20471,7 +20567,7 @@ module.exports = {
|
|
|
20471
20567
|
/*!
|
|
20472
20568
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20473
20569
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20474
|
-
* Copyright (c) 2013-
|
|
20570
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20475
20571
|
*/
|
|
20476
20572
|
|
|
20477
20573
|
module.exports = {
|
|
@@ -20487,7 +20583,7 @@ module.exports = {
|
|
|
20487
20583
|
/*!
|
|
20488
20584
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20489
20585
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20490
|
-
* Copyright (c) 2013-
|
|
20586
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20491
20587
|
*/
|
|
20492
20588
|
|
|
20493
20589
|
module.exports = {
|
|
@@ -20503,7 +20599,7 @@ module.exports = {
|
|
|
20503
20599
|
/*!
|
|
20504
20600
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20505
20601
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20506
|
-
* Copyright (c) 2013-
|
|
20602
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20507
20603
|
*/
|
|
20508
20604
|
|
|
20509
20605
|
module.exports = {
|
|
@@ -20519,7 +20615,7 @@ module.exports = {
|
|
|
20519
20615
|
/*!
|
|
20520
20616
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20521
20617
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20522
|
-
* Copyright (c) 2013-
|
|
20618
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20523
20619
|
*/
|
|
20524
20620
|
|
|
20525
20621
|
module.exports = {
|
|
@@ -20535,7 +20631,7 @@ module.exports = {
|
|
|
20535
20631
|
/*!
|
|
20536
20632
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20537
20633
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20538
|
-
* Copyright (c) 2013-
|
|
20634
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20539
20635
|
*/
|
|
20540
20636
|
|
|
20541
20637
|
module.exports = {
|
|
@@ -20551,7 +20647,7 @@ module.exports = {
|
|
|
20551
20647
|
/*!
|
|
20552
20648
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20553
20649
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20554
|
-
* Copyright (c) 2013-
|
|
20650
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20555
20651
|
*/
|
|
20556
20652
|
|
|
20557
20653
|
module.exports = {
|
|
@@ -20567,7 +20663,7 @@ module.exports = {
|
|
|
20567
20663
|
/*!
|
|
20568
20664
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20569
20665
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20570
|
-
* Copyright (c) 2013-
|
|
20666
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20571
20667
|
*/
|
|
20572
20668
|
|
|
20573
20669
|
module.exports = {
|
|
@@ -20583,7 +20679,7 @@ module.exports = {
|
|
|
20583
20679
|
/*!
|
|
20584
20680
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20585
20681
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20586
|
-
* Copyright (c) 2013-
|
|
20682
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20587
20683
|
*/
|
|
20588
20684
|
|
|
20589
20685
|
module.exports = {
|
|
@@ -20599,7 +20695,7 @@ module.exports = {
|
|
|
20599
20695
|
/*!
|
|
20600
20696
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20601
20697
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20602
|
-
* Copyright (c) 2013-
|
|
20698
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20603
20699
|
*/
|
|
20604
20700
|
|
|
20605
20701
|
module.exports = {
|
|
@@ -20615,7 +20711,7 @@ module.exports = {
|
|
|
20615
20711
|
/*!
|
|
20616
20712
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20617
20713
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20618
|
-
* Copyright (c) 2013-
|
|
20714
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20619
20715
|
*/
|
|
20620
20716
|
|
|
20621
20717
|
module.exports = {
|
|
@@ -20631,7 +20727,7 @@ module.exports = {
|
|
|
20631
20727
|
/*!
|
|
20632
20728
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20633
20729
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20634
|
-
* Copyright (c) 2013-
|
|
20730
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20635
20731
|
*/
|
|
20636
20732
|
|
|
20637
20733
|
module.exports = {
|
|
@@ -20647,7 +20743,7 @@ module.exports = {
|
|
|
20647
20743
|
/*!
|
|
20648
20744
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20649
20745
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20650
|
-
* Copyright (c) 2013-
|
|
20746
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20651
20747
|
*/
|
|
20652
20748
|
|
|
20653
20749
|
module.exports = {
|
|
@@ -20663,7 +20759,7 @@ module.exports = {
|
|
|
20663
20759
|
/*!
|
|
20664
20760
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20665
20761
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20666
|
-
* Copyright (c) 2013-
|
|
20762
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20667
20763
|
*/
|
|
20668
20764
|
|
|
20669
20765
|
module.exports = {
|
|
@@ -20679,7 +20775,7 @@ module.exports = {
|
|
|
20679
20775
|
/*!
|
|
20680
20776
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20681
20777
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20682
|
-
* Copyright (c) 2013-
|
|
20778
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20683
20779
|
*/
|
|
20684
20780
|
|
|
20685
20781
|
module.exports = {
|
|
@@ -20695,7 +20791,7 @@ module.exports = {
|
|
|
20695
20791
|
/*!
|
|
20696
20792
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20697
20793
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20698
|
-
* Copyright (c) 2013-
|
|
20794
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20699
20795
|
*/
|
|
20700
20796
|
|
|
20701
20797
|
module.exports = {
|
|
@@ -20711,7 +20807,7 @@ module.exports = {
|
|
|
20711
20807
|
/*!
|
|
20712
20808
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20713
20809
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20714
|
-
* Copyright (c) 2013-
|
|
20810
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20715
20811
|
*/
|
|
20716
20812
|
|
|
20717
20813
|
module.exports = {
|
|
@@ -20727,7 +20823,7 @@ module.exports = {
|
|
|
20727
20823
|
/*!
|
|
20728
20824
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20729
20825
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20730
|
-
* Copyright (c) 2013-
|
|
20826
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20731
20827
|
*/
|
|
20732
20828
|
|
|
20733
20829
|
module.exports = {
|
|
@@ -20743,7 +20839,7 @@ module.exports = {
|
|
|
20743
20839
|
/*!
|
|
20744
20840
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20745
20841
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20746
|
-
* Copyright (c) 2013-
|
|
20842
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20747
20843
|
*/
|
|
20748
20844
|
|
|
20749
20845
|
module.exports = {
|
|
@@ -20759,7 +20855,7 @@ module.exports = {
|
|
|
20759
20855
|
/*!
|
|
20760
20856
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20761
20857
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20762
|
-
* Copyright (c) 2013-
|
|
20858
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20763
20859
|
*/
|
|
20764
20860
|
|
|
20765
20861
|
module.exports = {
|
|
@@ -20775,7 +20871,7 @@ module.exports = {
|
|
|
20775
20871
|
/*!
|
|
20776
20872
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20777
20873
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20778
|
-
* Copyright (c) 2013-
|
|
20874
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20779
20875
|
*/
|
|
20780
20876
|
|
|
20781
20877
|
module.exports = {
|
|
@@ -20791,7 +20887,7 @@ module.exports = {
|
|
|
20791
20887
|
/*!
|
|
20792
20888
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20793
20889
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20794
|
-
* Copyright (c) 2013-
|
|
20890
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20795
20891
|
*/
|
|
20796
20892
|
|
|
20797
20893
|
module.exports = {
|
|
@@ -20807,7 +20903,7 @@ module.exports = {
|
|
|
20807
20903
|
/*!
|
|
20808
20904
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20809
20905
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20810
|
-
* Copyright (c) 2013-
|
|
20906
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20811
20907
|
*/
|
|
20812
20908
|
|
|
20813
20909
|
module.exports = {
|
|
@@ -20823,7 +20919,7 @@ module.exports = {
|
|
|
20823
20919
|
/*!
|
|
20824
20920
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20825
20921
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20826
|
-
* Copyright (c) 2013-
|
|
20922
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20827
20923
|
*/
|
|
20828
20924
|
|
|
20829
20925
|
module.exports = {
|
|
@@ -20839,7 +20935,7 @@ module.exports = {
|
|
|
20839
20935
|
/*!
|
|
20840
20936
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20841
20937
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20842
|
-
* Copyright (c) 2013-
|
|
20938
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20843
20939
|
*/
|
|
20844
20940
|
|
|
20845
20941
|
module.exports = {
|
|
@@ -20855,7 +20951,7 @@ module.exports = {
|
|
|
20855
20951
|
/*!
|
|
20856
20952
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20857
20953
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20858
|
-
* Copyright (c) 2013-
|
|
20954
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20859
20955
|
*/
|
|
20860
20956
|
|
|
20861
20957
|
module.exports = {
|
|
@@ -20871,7 +20967,7 @@ module.exports = {
|
|
|
20871
20967
|
/*!
|
|
20872
20968
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20873
20969
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20874
|
-
* Copyright (c) 2013-
|
|
20970
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20875
20971
|
*/
|
|
20876
20972
|
|
|
20877
20973
|
module.exports = {
|
|
@@ -20887,7 +20983,7 @@ module.exports = {
|
|
|
20887
20983
|
/*!
|
|
20888
20984
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
20889
20985
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
20890
|
-
* Copyright (c) 2013-
|
|
20986
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
20891
20987
|
*/
|
|
20892
20988
|
|
|
20893
20989
|
module.exports = {
|
|
@@ -21162,7 +21258,7 @@ var request = __webpack_require__(12709);
|
|
|
21162
21258
|
/*!
|
|
21163
21259
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
21164
21260
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
21165
|
-
* Copyright (c) 2013-
|
|
21261
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
21166
21262
|
*/
|
|
21167
21263
|
var Jodit_1;
|
|
21168
21264
|
|
|
@@ -22097,7 +22193,7 @@ var checker = __webpack_require__(78411);
|
|
|
22097
22193
|
/*!
|
|
22098
22194
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22099
22195
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22100
|
-
* Copyright (c) 2013-
|
|
22196
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22101
22197
|
*/
|
|
22102
22198
|
|
|
22103
22199
|
let exp = {};
|
|
@@ -22222,7 +22318,7 @@ var valign = __webpack_require__(2304);
|
|
|
22222
22318
|
/*!
|
|
22223
22319
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22224
22320
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22225
|
-
* Copyright (c) 2013-
|
|
22321
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22226
22322
|
*/
|
|
22227
22323
|
|
|
22228
22324
|
|
|
@@ -22259,7 +22355,7 @@ var icon = __webpack_require__(77904);
|
|
|
22259
22355
|
/*!
|
|
22260
22356
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22261
22357
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22262
|
-
* Copyright (c) 2013-
|
|
22358
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22263
22359
|
*/
|
|
22264
22360
|
|
|
22265
22361
|
|
|
@@ -22311,7 +22407,7 @@ var ui = __webpack_require__(93801);
|
|
|
22311
22407
|
/*!
|
|
22312
22408
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22313
22409
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22314
|
-
* Copyright (c) 2013-
|
|
22410
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22315
22411
|
*/
|
|
22316
22412
|
|
|
22317
22413
|
|
|
@@ -22332,7 +22428,7 @@ ui/* Icon.set */.JO.set('enter', __webpack_require__(11257));
|
|
|
22332
22428
|
/*!
|
|
22333
22429
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22334
22430
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22335
|
-
* Copyright (c) 2013-
|
|
22431
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22336
22432
|
*/
|
|
22337
22433
|
|
|
22338
22434
|
|
|
@@ -22555,7 +22651,7 @@ var utils = __webpack_require__(67309);
|
|
|
22555
22651
|
/*!
|
|
22556
22652
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22557
22653
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22558
|
-
* Copyright (c) 2013-
|
|
22654
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22559
22655
|
*/
|
|
22560
22656
|
|
|
22561
22657
|
function findMostNestedNeighbor(node, right, root, onlyInlide = false) {
|
|
@@ -22584,7 +22680,7 @@ function getMoveFilter(jodit) {
|
|
|
22584
22680
|
/*!
|
|
22585
22681
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22586
22682
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22587
|
-
* Copyright (c) 2013-
|
|
22683
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22588
22684
|
*/
|
|
22589
22685
|
|
|
22590
22686
|
|
|
@@ -22612,7 +22708,7 @@ function checkJoinTwoLists(jodit, fakeNode, backspace) {
|
|
|
22612
22708
|
/*!
|
|
22613
22709
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22614
22710
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22615
|
-
* Copyright (c) 2013-
|
|
22711
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22616
22712
|
*/
|
|
22617
22713
|
|
|
22618
22714
|
|
|
@@ -22655,7 +22751,7 @@ function checkRemoveEmptyParent(jodit, fakeNode, backspace) {
|
|
|
22655
22751
|
/*!
|
|
22656
22752
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22657
22753
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22658
|
-
* Copyright (c) 2013-
|
|
22754
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22659
22755
|
*/
|
|
22660
22756
|
|
|
22661
22757
|
|
|
@@ -22682,7 +22778,7 @@ function checkRemoveUnbreakableElement(jodit, fakeNode, backspace) {
|
|
|
22682
22778
|
/*!
|
|
22683
22779
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22684
22780
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22685
|
-
* Copyright (c) 2013-
|
|
22781
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22686
22782
|
*/
|
|
22687
22783
|
|
|
22688
22784
|
|
|
@@ -22709,7 +22805,7 @@ function checkRemoveContentNotEditable(jodit, fakeNode, backspace) {
|
|
|
22709
22805
|
/*!
|
|
22710
22806
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22711
22807
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22712
|
-
* Copyright (c) 2013-
|
|
22808
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22713
22809
|
*/
|
|
22714
22810
|
|
|
22715
22811
|
|
|
@@ -22835,7 +22931,7 @@ function addBRInsideEmptyBlock(jodit, node) {
|
|
|
22835
22931
|
/*!
|
|
22836
22932
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22837
22933
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22838
|
-
* Copyright (c) 2013-
|
|
22934
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22839
22935
|
*/
|
|
22840
22936
|
|
|
22841
22937
|
function checkTableCell(jodit, fakeNode) {
|
|
@@ -22850,7 +22946,7 @@ function checkTableCell(jodit, fakeNode) {
|
|
|
22850
22946
|
/*!
|
|
22851
22947
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22852
22948
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22853
|
-
* Copyright (c) 2013-
|
|
22949
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22854
22950
|
*/
|
|
22855
22951
|
|
|
22856
22952
|
function checkRemoveEmptyNeighbor(jodit, fakeNode, backspace) {
|
|
@@ -22871,7 +22967,7 @@ function checkRemoveEmptyNeighbor(jodit, fakeNode, backspace) {
|
|
|
22871
22967
|
/*!
|
|
22872
22968
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22873
22969
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22874
|
-
* Copyright (c) 2013-
|
|
22970
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22875
22971
|
*/
|
|
22876
22972
|
|
|
22877
22973
|
|
|
@@ -22929,7 +23025,7 @@ var helpers_utils = __webpack_require__(76502);
|
|
|
22929
23025
|
/*!
|
|
22930
23026
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22931
23027
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22932
|
-
* Copyright (c) 2013-
|
|
23028
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22933
23029
|
*/
|
|
22934
23030
|
|
|
22935
23031
|
|
|
@@ -22958,7 +23054,7 @@ function checkUnwrapFirstListItem(jodit, fakeNode, backspace) {
|
|
|
22958
23054
|
/*!
|
|
22959
23055
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22960
23056
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22961
|
-
* Copyright (c) 2013-
|
|
23057
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22962
23058
|
*/
|
|
22963
23059
|
|
|
22964
23060
|
|
|
@@ -22985,7 +23081,7 @@ const cases = [
|
|
|
22985
23081
|
/*!
|
|
22986
23082
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
22987
23083
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
22988
|
-
* Copyright (c) 2013-
|
|
23084
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
22989
23085
|
*/
|
|
22990
23086
|
function checkNotCollapsed(jodit) {
|
|
22991
23087
|
if (!jodit.s.isCollapsed()) {
|
|
@@ -22999,7 +23095,7 @@ function checkNotCollapsed(jodit) {
|
|
|
22999
23095
|
/*!
|
|
23000
23096
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23001
23097
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23002
|
-
* Copyright (c) 2013-
|
|
23098
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23003
23099
|
*/
|
|
23004
23100
|
|
|
23005
23101
|
config/* Config.prototype.delete */.D.prototype["delete"] = {
|
|
@@ -23017,7 +23113,7 @@ config/* Config.prototype.delete */.D.prototype["delete"] = {
|
|
|
23017
23113
|
/*!
|
|
23018
23114
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23019
23115
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23020
|
-
* Copyright (c) 2013-
|
|
23116
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23021
23117
|
*/
|
|
23022
23118
|
|
|
23023
23119
|
|
|
@@ -23158,7 +23254,7 @@ global/* pluginSystem.add */.pw.add('backspace', backspace);
|
|
|
23158
23254
|
/*!
|
|
23159
23255
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23160
23256
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23161
|
-
* Copyright (c) 2013-
|
|
23257
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23162
23258
|
*/
|
|
23163
23259
|
|
|
23164
23260
|
config/* Config.prototype.controls.subscript */.D.prototype.controls.subscript = {
|
|
@@ -23206,7 +23302,7 @@ config/* Config.prototype.controls.strikethrough */.D.prototype.controls.striket
|
|
|
23206
23302
|
/*!
|
|
23207
23303
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23208
23304
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23209
|
-
* Copyright (c) 2013-
|
|
23305
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23210
23306
|
*/
|
|
23211
23307
|
|
|
23212
23308
|
|
|
@@ -23281,7 +23377,7 @@ icon/* Icon.set */.J.set('bold', __webpack_require__(25141))
|
|
|
23281
23377
|
/*!
|
|
23282
23378
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23283
23379
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23284
|
-
* Copyright (c) 2013-
|
|
23380
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23285
23381
|
*/
|
|
23286
23382
|
|
|
23287
23383
|
|
|
@@ -23369,7 +23465,7 @@ var is_string = __webpack_require__(24421);
|
|
|
23369
23465
|
/*!
|
|
23370
23466
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23371
23467
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23372
|
-
* Copyright (c) 2013-
|
|
23468
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23373
23469
|
*/
|
|
23374
23470
|
|
|
23375
23471
|
|
|
@@ -23416,7 +23512,7 @@ function getHash(tags) {
|
|
|
23416
23512
|
/*!
|
|
23417
23513
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23418
23514
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23419
|
-
* Copyright (c) 2013-
|
|
23515
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23420
23516
|
*/
|
|
23421
23517
|
|
|
23422
23518
|
|
|
@@ -23455,7 +23551,7 @@ function isInlineBlock(node) {
|
|
|
23455
23551
|
/*!
|
|
23456
23552
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23457
23553
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23458
|
-
* Copyright (c) 2013-
|
|
23554
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23459
23555
|
*/
|
|
23460
23556
|
|
|
23461
23557
|
|
|
@@ -23506,7 +23602,7 @@ function removeFormatForSelection(jodit) {
|
|
|
23506
23602
|
/*!
|
|
23507
23603
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23508
23604
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23509
|
-
* Copyright (c) 2013-
|
|
23605
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23510
23606
|
*/
|
|
23511
23607
|
|
|
23512
23608
|
function replaceOldTags(jodit, nodeElm, hadEffect) {
|
|
@@ -23532,7 +23628,7 @@ function replaceIfMatched(jodit, oldParent, list) {
|
|
|
23532
23628
|
/*!
|
|
23533
23629
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23534
23630
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23535
|
-
* Copyright (c) 2013-
|
|
23631
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23536
23632
|
*/
|
|
23537
23633
|
|
|
23538
23634
|
function allowAttributes(jodit, nodeElm, hadEffect, allow) {
|
|
@@ -23561,7 +23657,7 @@ function allowAttributes(jodit, nodeElm, hadEffect, allow) {
|
|
|
23561
23657
|
/*!
|
|
23562
23658
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23563
23659
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23564
|
-
* Copyright (c) 2013-
|
|
23660
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23565
23661
|
*/
|
|
23566
23662
|
|
|
23567
23663
|
|
|
@@ -23580,7 +23676,7 @@ function fillEmptyParagraph(jodit, nodeElm, hadEffect) {
|
|
|
23580
23676
|
/*!
|
|
23581
23677
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23582
23678
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23583
|
-
* Copyright (c) 2013-
|
|
23679
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23584
23680
|
*/
|
|
23585
23681
|
|
|
23586
23682
|
|
|
@@ -23609,7 +23705,7 @@ function isRemovableNode(jodit, node, current, allow, deny) {
|
|
|
23609
23705
|
/*!
|
|
23610
23706
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23611
23707
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23612
|
-
* Copyright (c) 2013-
|
|
23708
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23613
23709
|
*/
|
|
23614
23710
|
|
|
23615
23711
|
function removeEmptyTextNode(jodit, node, hadEffect, arg, argi, currentNode) {
|
|
@@ -23627,7 +23723,7 @@ function removeEmptyTextNode(jodit, node, hadEffect, arg, argi, currentNode) {
|
|
|
23627
23723
|
/*!
|
|
23628
23724
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23629
23725
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23630
|
-
* Copyright (c) 2013-
|
|
23726
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23631
23727
|
*/
|
|
23632
23728
|
|
|
23633
23729
|
|
|
@@ -23652,7 +23748,7 @@ function removeInvTextNodes(jodit, node, hadEffect, arg, argi, currentNode) {
|
|
|
23652
23748
|
/*!
|
|
23653
23749
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23654
23750
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23655
|
-
* Copyright (c) 2013-
|
|
23751
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23656
23752
|
*/
|
|
23657
23753
|
|
|
23658
23754
|
|
|
@@ -23671,7 +23767,7 @@ function sanitizeAttributes(jodit, nodeElm, hadEffect) {
|
|
|
23671
23767
|
/*!
|
|
23672
23768
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23673
23769
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23674
|
-
* Copyright (c) 2013-
|
|
23770
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23675
23771
|
*/
|
|
23676
23772
|
|
|
23677
23773
|
|
|
@@ -23685,7 +23781,7 @@ function sanitizeAttributes(jodit, nodeElm, hadEffect) {
|
|
|
23685
23781
|
/*!
|
|
23686
23782
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23687
23783
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23688
|
-
* Copyright (c) 2013-
|
|
23784
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23689
23785
|
*/
|
|
23690
23786
|
|
|
23691
23787
|
const visit_node_walker_keys = Object.keys(filters_namespaceObject);
|
|
@@ -23711,7 +23807,7 @@ function visitNodeWalker(jodit, nodeElm, allowTags, denyTags, currentSelectionNo
|
|
|
23711
23807
|
/*!
|
|
23712
23808
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23713
23809
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23714
|
-
* Copyright (c) 2013-
|
|
23810
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23715
23811
|
*/
|
|
23716
23812
|
|
|
23717
23813
|
|
|
@@ -23722,7 +23818,7 @@ function visitNodeWalker(jodit, nodeElm, allowTags, denyTags, currentSelectionNo
|
|
|
23722
23818
|
/*!
|
|
23723
23819
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23724
23820
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23725
|
-
* Copyright (c) 2013-
|
|
23821
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23726
23822
|
*/
|
|
23727
23823
|
|
|
23728
23824
|
|
|
@@ -23752,7 +23848,7 @@ icon/* Icon.set */.J.set('eraser', __webpack_require__(66911));
|
|
|
23752
23848
|
/*!
|
|
23753
23849
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23754
23850
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23755
|
-
* Copyright (c) 2013-
|
|
23851
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23756
23852
|
*/
|
|
23757
23853
|
|
|
23758
23854
|
|
|
@@ -23853,7 +23949,7 @@ global/* pluginSystem.add */.pw.add('cleanHtml', cleanHtml);
|
|
|
23853
23949
|
/*!
|
|
23854
23950
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23855
23951
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23856
|
-
* Copyright (c) 2013-
|
|
23952
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23857
23953
|
*/
|
|
23858
23954
|
|
|
23859
23955
|
|
|
@@ -23881,7 +23977,7 @@ icon/* Icon.set */.J.set('copy', __webpack_require__(50018))
|
|
|
23881
23977
|
/*!
|
|
23882
23978
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23883
23979
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23884
|
-
* Copyright (c) 2013-
|
|
23980
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23885
23981
|
*/
|
|
23886
23982
|
|
|
23887
23983
|
|
|
@@ -23951,7 +24047,7 @@ var widget = __webpack_require__(74331);
|
|
|
23951
24047
|
/*!
|
|
23952
24048
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
23953
24049
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
23954
|
-
* Copyright (c) 2013-
|
|
24050
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
23955
24051
|
*/
|
|
23956
24052
|
|
|
23957
24053
|
|
|
@@ -24070,7 +24166,7 @@ config/* Config.prototype.controls.brush */.D.prototype.controls.brush = {
|
|
|
24070
24166
|
/*!
|
|
24071
24167
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24072
24168
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24073
|
-
* Copyright (c) 2013-
|
|
24169
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24074
24170
|
*/
|
|
24075
24171
|
|
|
24076
24172
|
|
|
@@ -24109,7 +24205,7 @@ var css = __webpack_require__(26911);
|
|
|
24109
24205
|
/*!
|
|
24110
24206
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24111
24207
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24112
|
-
* Copyright (c) 2013-
|
|
24208
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24113
24209
|
*/
|
|
24114
24210
|
|
|
24115
24211
|
|
|
@@ -24215,7 +24311,7 @@ var file_browser = __webpack_require__(8649);
|
|
|
24215
24311
|
/*!
|
|
24216
24312
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24217
24313
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24218
|
-
* Copyright (c) 2013-
|
|
24314
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24219
24315
|
*/
|
|
24220
24316
|
|
|
24221
24317
|
|
|
@@ -24380,7 +24476,7 @@ global/* pluginSystem.add */.pw.add('dragAndDrop', dragAndDrop);
|
|
|
24380
24476
|
/*!
|
|
24381
24477
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24382
24478
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24383
|
-
* Copyright (c) 2013-
|
|
24479
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24384
24480
|
*/
|
|
24385
24481
|
|
|
24386
24482
|
config/* Config.prototype.draggableTags */.D.prototype.draggableTags = ['img', 'jodit-media', 'jodit'];
|
|
@@ -24389,7 +24485,7 @@ config/* Config.prototype.draggableTags */.D.prototype.draggableTags = ['img', '
|
|
|
24389
24485
|
/*!
|
|
24390
24486
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24391
24487
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24392
|
-
* Copyright (c) 2013-
|
|
24488
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24393
24489
|
*/
|
|
24394
24490
|
|
|
24395
24491
|
|
|
@@ -24567,7 +24663,7 @@ var scroll_into_view = __webpack_require__(9005);
|
|
|
24567
24663
|
/*!
|
|
24568
24664
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24569
24665
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24570
|
-
* Copyright (c) 2013-
|
|
24666
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24571
24667
|
*/
|
|
24572
24668
|
|
|
24573
24669
|
|
|
@@ -24597,7 +24693,7 @@ function checkBR(jodit, current, shiftKeyPressed) {
|
|
|
24597
24693
|
/*!
|
|
24598
24694
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24599
24695
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24600
|
-
* Copyright (c) 2013-
|
|
24696
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24601
24697
|
*/
|
|
24602
24698
|
|
|
24603
24699
|
function checkUnsplittableBox(jodit, currentBox) {
|
|
@@ -24617,7 +24713,7 @@ var selector = __webpack_require__(54188);
|
|
|
24617
24713
|
/*!
|
|
24618
24714
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24619
24715
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24620
|
-
* Copyright (c) 2013-
|
|
24716
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24621
24717
|
*/
|
|
24622
24718
|
|
|
24623
24719
|
|
|
@@ -24648,7 +24744,7 @@ function insertParagraph(editor, fake, wrapperTag, style) {
|
|
|
24648
24744
|
/*!
|
|
24649
24745
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24650
24746
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24651
|
-
* Copyright (c) 2013-
|
|
24747
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24652
24748
|
*/
|
|
24653
24749
|
|
|
24654
24750
|
|
|
@@ -24686,7 +24782,7 @@ function processEmptyLILeaf(jodit, li) {
|
|
|
24686
24782
|
/*!
|
|
24687
24783
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24688
24784
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24689
|
-
* Copyright (c) 2013-
|
|
24785
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24690
24786
|
*/
|
|
24691
24787
|
|
|
24692
24788
|
|
|
@@ -24713,7 +24809,7 @@ function getBlockWrapper(jodit, current, tagReg = constants.IS_BLOCK) {
|
|
|
24713
24809
|
/*!
|
|
24714
24810
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24715
24811
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24716
|
-
* Copyright (c) 2013-
|
|
24812
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24717
24813
|
*/
|
|
24718
24814
|
|
|
24719
24815
|
function hasPreviousBlock(jodit, current) {
|
|
@@ -24724,7 +24820,7 @@ function hasPreviousBlock(jodit, current) {
|
|
|
24724
24820
|
/*!
|
|
24725
24821
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24726
24822
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24727
|
-
* Copyright (c) 2013-
|
|
24823
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24728
24824
|
*/
|
|
24729
24825
|
|
|
24730
24826
|
|
|
@@ -24758,7 +24854,7 @@ function splitFragment(jodit, currentBox) {
|
|
|
24758
24854
|
/*!
|
|
24759
24855
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24760
24856
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24761
|
-
* Copyright (c) 2013-
|
|
24857
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24762
24858
|
*/
|
|
24763
24859
|
|
|
24764
24860
|
function wrapText(jodit, current) {
|
|
@@ -24781,7 +24877,7 @@ function wrapText(jodit, current) {
|
|
|
24781
24877
|
/*!
|
|
24782
24878
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24783
24879
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24784
|
-
* Copyright (c) 2013-
|
|
24880
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24785
24881
|
*/
|
|
24786
24882
|
|
|
24787
24883
|
function moveCursorOutFromSpecialTags(jodit, current, tags) {
|
|
@@ -24801,7 +24897,7 @@ function moveCursorOutFromSpecialTags(jodit, current, tags) {
|
|
|
24801
24897
|
/*!
|
|
24802
24898
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24803
24899
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24804
|
-
* Copyright (c) 2013-
|
|
24900
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24805
24901
|
*/
|
|
24806
24902
|
|
|
24807
24903
|
|
|
@@ -24817,7 +24913,7 @@ function moveCursorOutFromSpecialTags(jodit, current, tags) {
|
|
|
24817
24913
|
/*!
|
|
24818
24914
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24819
24915
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24820
|
-
* Copyright (c) 2013-
|
|
24916
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24821
24917
|
*/
|
|
24822
24918
|
|
|
24823
24919
|
|
|
@@ -24909,7 +25005,7 @@ global/* pluginSystem.add */.pw.add('enter', enter);
|
|
|
24909
25005
|
/*!
|
|
24910
25006
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24911
25007
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24912
|
-
* Copyright (c) 2013-
|
|
25008
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24913
25009
|
*/
|
|
24914
25010
|
|
|
24915
25011
|
|
|
@@ -24962,7 +25058,7 @@ global/* pluginSystem.add */.pw.add('file', file_file);
|
|
|
24962
25058
|
/*!
|
|
24963
25059
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
24964
25060
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
24965
|
-
* Copyright (c) 2013-
|
|
25061
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
24966
25062
|
*/
|
|
24967
25063
|
|
|
24968
25064
|
|
|
@@ -25025,7 +25121,7 @@ global/* pluginSystem.add */.pw.add('focus', focus_focus);
|
|
|
25025
25121
|
/*!
|
|
25026
25122
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25027
25123
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25028
|
-
* Copyright (c) 2013-
|
|
25124
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25029
25125
|
*/
|
|
25030
25126
|
|
|
25031
25127
|
|
|
@@ -25126,7 +25222,7 @@ config/* Config.prototype.controls.font */.D.prototype.controls.font = {
|
|
|
25126
25222
|
/*!
|
|
25127
25223
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25128
25224
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25129
|
-
* Copyright (c) 2013-
|
|
25225
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25130
25226
|
*/
|
|
25131
25227
|
|
|
25132
25228
|
|
|
@@ -25167,7 +25263,7 @@ global/* pluginSystem.add */.pw.add('font', font);
|
|
|
25167
25263
|
/*!
|
|
25168
25264
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25169
25265
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25170
|
-
* Copyright (c) 2013-
|
|
25266
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25171
25267
|
*/
|
|
25172
25268
|
|
|
25173
25269
|
|
|
@@ -25258,7 +25354,7 @@ var is_jodit_object = __webpack_require__(77892);
|
|
|
25258
25354
|
/*!
|
|
25259
25355
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25260
25356
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25261
|
-
* Copyright (c) 2013-
|
|
25357
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25262
25358
|
*/
|
|
25263
25359
|
|
|
25264
25360
|
|
|
@@ -25289,7 +25385,7 @@ config/* Config.prototype.controls.fullsize */.D.prototype.controls.fullsize = {
|
|
|
25289
25385
|
/*!
|
|
25290
25386
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25291
25387
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25292
|
-
* Copyright (c) 2013-
|
|
25388
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25293
25389
|
*/
|
|
25294
25390
|
|
|
25295
25391
|
|
|
@@ -25378,7 +25474,7 @@ global/* pluginSystem.add */.pw.add('fullsize', fullsize);
|
|
|
25378
25474
|
/*!
|
|
25379
25475
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25380
25476
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25381
|
-
* Copyright (c) 2013-
|
|
25477
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25382
25478
|
*/
|
|
25383
25479
|
|
|
25384
25480
|
config/* Config.prototype.commandToHotkeys */.D.prototype.commandToHotkeys = {
|
|
@@ -25392,7 +25488,7 @@ config/* Config.prototype.commandToHotkeys */.D.prototype.commandToHotkeys = {
|
|
|
25392
25488
|
/*!
|
|
25393
25489
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25394
25490
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25395
|
-
* Copyright (c) 2013-
|
|
25491
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25396
25492
|
*/
|
|
25397
25493
|
|
|
25398
25494
|
|
|
@@ -25531,7 +25627,7 @@ global/* pluginSystem.add */.pw.add('hotkeys', hotkeys);
|
|
|
25531
25627
|
/*!
|
|
25532
25628
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25533
25629
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25534
|
-
* Copyright (c) 2013-
|
|
25630
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25535
25631
|
*/
|
|
25536
25632
|
|
|
25537
25633
|
|
|
@@ -25571,7 +25667,7 @@ global/* pluginSystem.add */.pw.add('hr', hr);
|
|
|
25571
25667
|
/*!
|
|
25572
25668
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25573
25669
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25574
|
-
* Copyright (c) 2013-
|
|
25670
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25575
25671
|
*/
|
|
25576
25672
|
|
|
25577
25673
|
config/* Config.prototype.iframeBaseUrl */.D.prototype.iframeBaseUrl = '';
|
|
@@ -25650,7 +25746,7 @@ config/* Config.prototype.iframeCSSLinks */.D.prototype.iframeCSSLinks = [];
|
|
|
25650
25746
|
/*!
|
|
25651
25747
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25652
25748
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25653
|
-
* Copyright (c) 2013-
|
|
25749
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25654
25750
|
*/
|
|
25655
25751
|
|
|
25656
25752
|
|
|
@@ -25824,7 +25920,7 @@ global/* pluginSystem.add */.pw.add('iframe', iframe);
|
|
|
25824
25920
|
/*!
|
|
25825
25921
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25826
25922
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25827
|
-
* Copyright (c) 2013-
|
|
25923
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25828
25924
|
*/
|
|
25829
25925
|
|
|
25830
25926
|
|
|
@@ -25883,7 +25979,7 @@ global/* pluginSystem.add */.pw.add('image', image_image);
|
|
|
25883
25979
|
/*!
|
|
25884
25980
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25885
25981
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25886
|
-
* Copyright (c) 2013-
|
|
25982
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25887
25983
|
*/
|
|
25888
25984
|
|
|
25889
25985
|
config/* Config.prototype.imageProcessor */.D.prototype.imageProcessor = {
|
|
@@ -25894,7 +25990,7 @@ config/* Config.prototype.imageProcessor */.D.prototype.imageProcessor = {
|
|
|
25894
25990
|
/*!
|
|
25895
25991
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
25896
25992
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
25897
|
-
* Copyright (c) 2013-
|
|
25993
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
25898
25994
|
*/
|
|
25899
25995
|
|
|
25900
25996
|
|
|
@@ -26007,7 +26103,7 @@ var image_editor = __webpack_require__(99583);
|
|
|
26007
26103
|
/*!
|
|
26008
26104
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26009
26105
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26010
|
-
* Copyright (c) 2013-
|
|
26106
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26011
26107
|
*/
|
|
26012
26108
|
|
|
26013
26109
|
function form_form(editor) {
|
|
@@ -26035,7 +26131,7 @@ function form_form(editor) {
|
|
|
26035
26131
|
/*!
|
|
26036
26132
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26037
26133
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26038
|
-
* Copyright (c) 2013-
|
|
26134
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26039
26135
|
*/
|
|
26040
26136
|
|
|
26041
26137
|
function mainTab(editor) {
|
|
@@ -26084,7 +26180,7 @@ function mainTab(editor) {
|
|
|
26084
26180
|
/*!
|
|
26085
26181
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26086
26182
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26087
|
-
* Copyright (c) 2013-
|
|
26183
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26088
26184
|
*/
|
|
26089
26185
|
|
|
26090
26186
|
function positionTab(editor) {
|
|
@@ -26152,7 +26248,7 @@ function positionTab(editor) {
|
|
|
26152
26248
|
/*!
|
|
26153
26249
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26154
26250
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26155
|
-
* Copyright (c) 2013-
|
|
26251
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26156
26252
|
*/
|
|
26157
26253
|
|
|
26158
26254
|
config/* Config.prototype.image */.D.prototype.image = {
|
|
@@ -26179,7 +26275,7 @@ config/* Config.prototype.image */.D.prototype.image = {
|
|
|
26179
26275
|
/*!
|
|
26180
26276
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26181
26277
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26182
|
-
* Copyright (c) 2013-
|
|
26278
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26183
26279
|
*/
|
|
26184
26280
|
|
|
26185
26281
|
|
|
@@ -26633,7 +26729,7 @@ global/* pluginSystem.add */.pw.add('imageProperties', imageProperties);
|
|
|
26633
26729
|
/*!
|
|
26634
26730
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26635
26731
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26636
|
-
* Copyright (c) 2013-
|
|
26732
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26637
26733
|
*/
|
|
26638
26734
|
|
|
26639
26735
|
const getKey = (direction, box) => `${dom_dom/* Dom.isCell */.i.isCell(box) ? 'padding' : 'margin'}${direction === 'rtl' ? 'Right' : 'Left'}`;
|
|
@@ -26642,7 +26738,7 @@ const getKey = (direction, box) => `${dom_dom/* Dom.isCell */.i.isCell(box) ? 'p
|
|
|
26642
26738
|
/*!
|
|
26643
26739
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26644
26740
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26645
|
-
* Copyright (c) 2013-
|
|
26741
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26646
26742
|
*/
|
|
26647
26743
|
|
|
26648
26744
|
|
|
@@ -26673,7 +26769,7 @@ config/* Config.prototype.indentMargin */.D.prototype.indentMargin = 10;
|
|
|
26673
26769
|
/*!
|
|
26674
26770
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26675
26771
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26676
|
-
* Copyright (c) 2013-
|
|
26772
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26677
26773
|
*/
|
|
26678
26774
|
|
|
26679
26775
|
|
|
@@ -26744,7 +26840,7 @@ var popup = __webpack_require__(35799);
|
|
|
26744
26840
|
/*!
|
|
26745
26841
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26746
26842
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26747
|
-
* Copyright (c) 2013-
|
|
26843
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26748
26844
|
*/
|
|
26749
26845
|
|
|
26750
26846
|
|
|
@@ -26791,7 +26887,7 @@ config/* Config.prototype.popup */.D.prototype.popup = {
|
|
|
26791
26887
|
/*!
|
|
26792
26888
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26793
26889
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26794
|
-
* Copyright (c) 2013-
|
|
26890
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26795
26891
|
*/
|
|
26796
26892
|
|
|
26797
26893
|
|
|
@@ -27012,7 +27108,7 @@ var align = __webpack_require__(60303);
|
|
|
27012
27108
|
/*!
|
|
27013
27109
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27014
27110
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27015
|
-
* Copyright (c) 2013-
|
|
27111
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27016
27112
|
*/
|
|
27017
27113
|
|
|
27018
27114
|
|
|
@@ -27120,7 +27216,7 @@ global/* pluginSystem.add */.pw.add('justify', justify);
|
|
|
27120
27216
|
/*!
|
|
27121
27217
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27122
27218
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27123
|
-
* Copyright (c) 2013-
|
|
27219
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27124
27220
|
*/
|
|
27125
27221
|
|
|
27126
27222
|
|
|
@@ -27158,7 +27254,7 @@ global/* pluginSystem.add */.pw.add('keyArrowOutside', keyArrowOutside);
|
|
|
27158
27254
|
/*!
|
|
27159
27255
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27160
27256
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27161
|
-
* Copyright (c) 2013-
|
|
27257
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27162
27258
|
*/
|
|
27163
27259
|
|
|
27164
27260
|
config/* Config.prototype.limitWords */.D.prototype.limitWords = false;
|
|
@@ -27169,7 +27265,7 @@ config/* Config.prototype.limitHTML */.D.prototype.limitHTML = false;
|
|
|
27169
27265
|
/*!
|
|
27170
27266
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27171
27267
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27172
|
-
* Copyright (c) 2013-
|
|
27268
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27173
27269
|
*/
|
|
27174
27270
|
|
|
27175
27271
|
|
|
@@ -27256,7 +27352,7 @@ global/* pluginSystem.add */.pw.add('limit', limit);
|
|
|
27256
27352
|
/*!
|
|
27257
27353
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27258
27354
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27259
|
-
* Copyright (c) 2013-
|
|
27355
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27260
27356
|
*/
|
|
27261
27357
|
|
|
27262
27358
|
|
|
@@ -27275,7 +27371,7 @@ config/* Config.prototype.controls.lineHeight */.D.prototype.controls.lineHeight
|
|
|
27275
27371
|
/*!
|
|
27276
27372
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27277
27373
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27278
|
-
* Copyright (c) 2013-
|
|
27374
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27279
27375
|
*/
|
|
27280
27376
|
|
|
27281
27377
|
|
|
@@ -27351,7 +27447,7 @@ var ui_form = __webpack_require__(80567);
|
|
|
27351
27447
|
/*!
|
|
27352
27448
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27353
27449
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27354
|
-
* Copyright (c) 2013-
|
|
27450
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27355
27451
|
*/
|
|
27356
27452
|
|
|
27357
27453
|
|
|
@@ -27437,7 +27533,7 @@ const formTemplate = (editor) => {
|
|
|
27437
27533
|
/*!
|
|
27438
27534
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27439
27535
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27440
|
-
* Copyright (c) 2013-
|
|
27536
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27441
27537
|
*/
|
|
27442
27538
|
|
|
27443
27539
|
|
|
@@ -27484,7 +27580,7 @@ config/* Config.prototype.controls.link */.D.prototype.controls.link = {
|
|
|
27484
27580
|
/*!
|
|
27485
27581
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27486
27582
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27487
|
-
* Copyright (c) 2013-
|
|
27583
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27488
27584
|
*/
|
|
27489
27585
|
|
|
27490
27586
|
|
|
@@ -27782,7 +27878,7 @@ global/* pluginSystem.add */.pw.add('link', link_link);
|
|
|
27782
27878
|
/*!
|
|
27783
27879
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27784
27880
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27785
|
-
* Copyright (c) 2013-
|
|
27881
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27786
27882
|
*/
|
|
27787
27883
|
|
|
27788
27884
|
config/* Config.prototype.mediaFakeTag */.D.prototype.mediaFakeTag = 'jodit-media';
|
|
@@ -27793,7 +27889,7 @@ config/* Config.prototype.mediaBlocks */.D.prototype.mediaBlocks = ['video', 'au
|
|
|
27793
27889
|
/*!
|
|
27794
27890
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27795
27891
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27796
|
-
* Copyright (c) 2013-
|
|
27892
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27797
27893
|
*/
|
|
27798
27894
|
|
|
27799
27895
|
|
|
@@ -27864,7 +27960,7 @@ var collection = __webpack_require__(72719);
|
|
|
27864
27960
|
/*!
|
|
27865
27961
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27866
27962
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27867
|
-
* Copyright (c) 2013-
|
|
27963
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27868
27964
|
*/
|
|
27869
27965
|
|
|
27870
27966
|
|
|
@@ -27905,7 +28001,7 @@ config/* Config.prototype.controls.dots */.D.prototype.controls.dots = {
|
|
|
27905
28001
|
/*!
|
|
27906
28002
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27907
28003
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27908
|
-
* Copyright (c) 2013-
|
|
28004
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27909
28005
|
*/
|
|
27910
28006
|
|
|
27911
28007
|
|
|
@@ -27976,7 +28072,7 @@ var data_bind = __webpack_require__(63122);
|
|
|
27976
28072
|
/*!
|
|
27977
28073
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
27978
28074
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
27979
|
-
* Copyright (c) 2013-
|
|
28075
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
27980
28076
|
*/
|
|
27981
28077
|
|
|
27982
28078
|
|
|
@@ -28020,7 +28116,7 @@ config/* Config.prototype.controls.ol */.D.prototype.controls.ol = {
|
|
|
28020
28116
|
/*!
|
|
28021
28117
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28022
28118
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28023
|
-
* Copyright (c) 2013-
|
|
28119
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28024
28120
|
*/
|
|
28025
28121
|
|
|
28026
28122
|
|
|
@@ -28068,7 +28164,7 @@ var button_button = __webpack_require__(96031);
|
|
|
28068
28164
|
/*!
|
|
28069
28165
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28070
28166
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28071
|
-
* Copyright (c) 2013-
|
|
28167
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28072
28168
|
*/
|
|
28073
28169
|
|
|
28074
28170
|
|
|
@@ -28155,7 +28251,7 @@ function askInsertTypeDialog(jodit, msg, title, callback, buttonList) {
|
|
|
28155
28251
|
/*!
|
|
28156
28252
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28157
28253
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28158
|
-
* Copyright (c) 2013-
|
|
28254
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28159
28255
|
*/
|
|
28160
28256
|
|
|
28161
28257
|
|
|
@@ -28233,7 +28329,7 @@ config/* Config.prototype.controls.paste */.D.prototype.controls.paste = {
|
|
|
28233
28329
|
/*!
|
|
28234
28330
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28235
28331
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28236
|
-
* Copyright (c) 2013-
|
|
28332
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28237
28333
|
*/
|
|
28238
28334
|
|
|
28239
28335
|
|
|
@@ -28374,7 +28470,7 @@ global/* pluginSystem.add */.pw.add('paste', paste);
|
|
|
28374
28470
|
/*!
|
|
28375
28471
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28376
28472
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28377
|
-
* Copyright (c) 2013-
|
|
28473
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28378
28474
|
*/
|
|
28379
28475
|
|
|
28380
28476
|
|
|
@@ -28391,7 +28487,7 @@ config/* Config.prototype.pasteFromWordActionList */.D.prototype.pasteFromWordAc
|
|
|
28391
28487
|
/*!
|
|
28392
28488
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28393
28489
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28394
|
-
* Copyright (c) 2013-
|
|
28490
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28395
28491
|
*/
|
|
28396
28492
|
|
|
28397
28493
|
|
|
@@ -28456,7 +28552,7 @@ global/* pluginSystem.add */.pw.add('pasteFromWord', pasteFromWord);
|
|
|
28456
28552
|
/*!
|
|
28457
28553
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28458
28554
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28459
|
-
* Copyright (c) 2013-
|
|
28555
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28460
28556
|
*/
|
|
28461
28557
|
|
|
28462
28558
|
|
|
@@ -28622,7 +28718,7 @@ var is_marker = __webpack_require__(37204);
|
|
|
28622
28718
|
/*!
|
|
28623
28719
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28624
28720
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28625
|
-
* Copyright (c) 2013-
|
|
28721
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28626
28722
|
*/
|
|
28627
28723
|
|
|
28628
28724
|
config/* Config.prototype.showPlaceholder */.D.prototype.showPlaceholder = true;
|
|
@@ -28633,7 +28729,7 @@ config/* Config.prototype.useInputsPlaceholder */.D.prototype.useInputsPlacehold
|
|
|
28633
28729
|
/*!
|
|
28634
28730
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28635
28731
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28636
|
-
* Copyright (c) 2013-
|
|
28732
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28637
28733
|
*/
|
|
28638
28734
|
|
|
28639
28735
|
|
|
@@ -28782,7 +28878,7 @@ global/* pluginSystem.add */.pw.add('placeholder', placeholder);
|
|
|
28782
28878
|
/*!
|
|
28783
28879
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28784
28880
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28785
|
-
* Copyright (c) 2013-
|
|
28881
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28786
28882
|
*/
|
|
28787
28883
|
|
|
28788
28884
|
function poweredByJodit(jodit) {
|
|
@@ -28812,7 +28908,7 @@ var print = __webpack_require__(21498);
|
|
|
28812
28908
|
/*!
|
|
28813
28909
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28814
28910
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28815
|
-
* Copyright (c) 2013-
|
|
28911
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28816
28912
|
*/
|
|
28817
28913
|
|
|
28818
28914
|
|
|
@@ -28848,7 +28944,7 @@ var to_array = __webpack_require__(1853);
|
|
|
28848
28944
|
/*!
|
|
28849
28945
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28850
28946
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28851
|
-
* Copyright (c) 2013-
|
|
28947
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28852
28948
|
*/
|
|
28853
28949
|
|
|
28854
28950
|
function generateCriticalCSS(jodit) {
|
|
@@ -28948,7 +29044,7 @@ function generateCriticalCSS(jodit) {
|
|
|
28948
29044
|
/*!
|
|
28949
29045
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
28950
29046
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
28951
|
-
* Copyright (c) 2013-
|
|
29047
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
28952
29048
|
*/
|
|
28953
29049
|
|
|
28954
29050
|
|
|
@@ -29019,7 +29115,7 @@ global/* pluginSystem.add */.pw.add('print', print_print);
|
|
|
29019
29115
|
/*!
|
|
29020
29116
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29021
29117
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29022
|
-
* Copyright (c) 2013-
|
|
29118
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29023
29119
|
*/
|
|
29024
29120
|
|
|
29025
29121
|
|
|
@@ -29074,7 +29170,7 @@ global/* pluginSystem.add */.pw.add('redoUndo', redoUndo);
|
|
|
29074
29170
|
/*!
|
|
29075
29171
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29076
29172
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29077
|
-
* Copyright (c) 2013-
|
|
29173
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29078
29174
|
*/
|
|
29079
29175
|
|
|
29080
29176
|
config/* Config.prototype.tableAllowCellResize */.D.prototype.tableAllowCellResize = true;
|
|
@@ -29083,7 +29179,7 @@ config/* Config.prototype.tableAllowCellResize */.D.prototype.tableAllowCellResi
|
|
|
29083
29179
|
/*!
|
|
29084
29180
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29085
29181
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29086
|
-
* Copyright (c) 2013-
|
|
29182
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29087
29183
|
*/
|
|
29088
29184
|
|
|
29089
29185
|
|
|
@@ -29345,7 +29441,7 @@ global/* pluginSystem.add */.pw.add('resizeCells', resizeCells);
|
|
|
29345
29441
|
/*!
|
|
29346
29442
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29347
29443
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29348
|
-
* Copyright (c) 2013-
|
|
29444
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29349
29445
|
*/
|
|
29350
29446
|
|
|
29351
29447
|
config/* Config.prototype.allowResizeX */.D.prototype.allowResizeX = false;
|
|
@@ -29355,7 +29451,7 @@ config/* Config.prototype.allowResizeY */.D.prototype.allowResizeY = true;
|
|
|
29355
29451
|
/*!
|
|
29356
29452
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29357
29453
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29358
|
-
* Copyright (c) 2013-
|
|
29454
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29359
29455
|
*/
|
|
29360
29456
|
|
|
29361
29457
|
|
|
@@ -29441,7 +29537,7 @@ global/* pluginSystem.add */.pw.add('resizeHandler', resizeHandler);
|
|
|
29441
29537
|
/*!
|
|
29442
29538
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29443
29539
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29444
|
-
* Copyright (c) 2013-
|
|
29540
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29445
29541
|
*/
|
|
29446
29542
|
|
|
29447
29543
|
config/* Config.prototype.allowResizeTags */.D.prototype.allowResizeTags = ['img', 'iframe', 'table', 'jodit'];
|
|
@@ -29458,7 +29554,7 @@ config/* Config.prototype.resizer */.D.prototype.resizer = {
|
|
|
29458
29554
|
/*!
|
|
29459
29555
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29460
29556
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29461
|
-
* Copyright (c) 2013-
|
|
29557
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29462
29558
|
*/
|
|
29463
29559
|
|
|
29464
29560
|
|
|
@@ -29885,7 +29981,7 @@ global/* pluginSystem.add */.pw.add('resizer', resizer);
|
|
|
29885
29981
|
/*!
|
|
29886
29982
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
29887
29983
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
29888
|
-
* Copyright (c) 2013-
|
|
29984
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
29889
29985
|
*/
|
|
29890
29986
|
|
|
29891
29987
|
|
|
@@ -30087,7 +30183,7 @@ var fuzzy_search_index = __webpack_require__(93163);
|
|
|
30087
30183
|
/*!
|
|
30088
30184
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30089
30185
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30090
|
-
* Copyright (c) 2013-
|
|
30186
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30091
30187
|
*/
|
|
30092
30188
|
|
|
30093
30189
|
class SentenceFinder {
|
|
@@ -30149,7 +30245,7 @@ class SentenceFinder {
|
|
|
30149
30245
|
/*!
|
|
30150
30246
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30151
30247
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30152
|
-
* Copyright (c) 2013-
|
|
30248
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30153
30249
|
*/
|
|
30154
30250
|
|
|
30155
30251
|
|
|
@@ -30233,7 +30329,7 @@ function isSelectionWrapper(node) {
|
|
|
30233
30329
|
/*!
|
|
30234
30330
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30235
30331
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30236
|
-
* Copyright (c) 2013-
|
|
30332
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30237
30333
|
*/
|
|
30238
30334
|
|
|
30239
30335
|
|
|
@@ -30242,7 +30338,7 @@ function isSelectionWrapper(node) {
|
|
|
30242
30338
|
/*!
|
|
30243
30339
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30244
30340
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30245
|
-
* Copyright (c) 2013-
|
|
30341
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30246
30342
|
*/
|
|
30247
30343
|
|
|
30248
30344
|
|
|
@@ -30284,7 +30380,7 @@ config/* Config.prototype.controls.find */.D.prototype.controls.find = {
|
|
|
30284
30380
|
/*!
|
|
30285
30381
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30286
30382
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30287
|
-
* Copyright (c) 2013-
|
|
30383
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30288
30384
|
*/
|
|
30289
30385
|
|
|
30290
30386
|
|
|
@@ -30614,7 +30710,7 @@ var camel_case = __webpack_require__(26596);
|
|
|
30614
30710
|
/*!
|
|
30615
30711
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30616
30712
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30617
|
-
* Copyright (c) 2013-
|
|
30713
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30618
30714
|
*/
|
|
30619
30715
|
|
|
30620
30716
|
config/* Config.prototype.select */.D.prototype.select = {
|
|
@@ -30625,7 +30721,7 @@ config/* Config.prototype.select */.D.prototype.select = {
|
|
|
30625
30721
|
/*!
|
|
30626
30722
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30627
30723
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30628
|
-
* Copyright (c) 2013-
|
|
30724
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30629
30725
|
*/
|
|
30630
30726
|
|
|
30631
30727
|
|
|
@@ -30718,7 +30814,7 @@ global/* pluginSystem.add */.pw.add('select', select_select);
|
|
|
30718
30814
|
/*!
|
|
30719
30815
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30720
30816
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30721
|
-
* Copyright (c) 2013-
|
|
30817
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30722
30818
|
*/
|
|
30723
30819
|
|
|
30724
30820
|
config/* Config.prototype.tableAllowCellSelection */.D.prototype.tableAllowCellSelection = true;
|
|
@@ -30727,7 +30823,7 @@ config/* Config.prototype.tableAllowCellSelection */.D.prototype.tableAllowCellS
|
|
|
30727
30823
|
/*!
|
|
30728
30824
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
30729
30825
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
30730
|
-
* Copyright (c) 2013-
|
|
30826
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
30731
30827
|
*/
|
|
30732
30828
|
|
|
30733
30829
|
|
|
@@ -31016,7 +31112,7 @@ global/* pluginSystem.add */.pw.add('selectCells', selectCells);
|
|
|
31016
31112
|
/*!
|
|
31017
31113
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31018
31114
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31019
|
-
* Copyright (c) 2013-
|
|
31115
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31020
31116
|
*/
|
|
31021
31117
|
|
|
31022
31118
|
config/* Config.prototype.minWidth */.D.prototype.minWidth = 200;
|
|
@@ -31029,7 +31125,7 @@ config/* Config.prototype.saveHeightInStorage */.D.prototype.saveHeightInStorage
|
|
|
31029
31125
|
/*!
|
|
31030
31126
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31031
31127
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31032
|
-
* Copyright (c) 2013-
|
|
31128
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31033
31129
|
*/
|
|
31034
31130
|
|
|
31035
31131
|
|
|
@@ -31160,7 +31256,7 @@ global/* pluginSystem.add */.pw.add('size', size);
|
|
|
31160
31256
|
/*!
|
|
31161
31257
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31162
31258
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31163
|
-
* Copyright (c) 2013-
|
|
31259
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31164
31260
|
*/
|
|
31165
31261
|
class SourceEditor {
|
|
31166
31262
|
constructor(jodit, container, toWYSIWYG, fromWYSIWYG) {
|
|
@@ -31194,7 +31290,7 @@ class SourceEditor {
|
|
|
31194
31290
|
/*!
|
|
31195
31291
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31196
31292
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31197
|
-
* Copyright (c) 2013-
|
|
31293
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31198
31294
|
*/
|
|
31199
31295
|
|
|
31200
31296
|
|
|
@@ -31299,7 +31395,7 @@ class TextAreaEditor extends SourceEditor {
|
|
|
31299
31395
|
/*!
|
|
31300
31396
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31301
31397
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31302
|
-
* Copyright (c) 2013-
|
|
31398
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31303
31399
|
*/
|
|
31304
31400
|
|
|
31305
31401
|
|
|
@@ -31505,7 +31601,7 @@ class AceEditor extends SourceEditor {
|
|
|
31505
31601
|
/*!
|
|
31506
31602
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31507
31603
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31508
|
-
* Copyright (c) 2013-
|
|
31604
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31509
31605
|
*/
|
|
31510
31606
|
|
|
31511
31607
|
|
|
@@ -31514,7 +31610,7 @@ class AceEditor extends SourceEditor {
|
|
|
31514
31610
|
/*!
|
|
31515
31611
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31516
31612
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31517
|
-
* Copyright (c) 2013-
|
|
31613
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31518
31614
|
*/
|
|
31519
31615
|
|
|
31520
31616
|
|
|
@@ -31545,7 +31641,7 @@ function createSourceEditor(type, editor, container, toWYSIWYG, fromWYSIWYG) {
|
|
|
31545
31641
|
/*!
|
|
31546
31642
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31547
31643
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31548
|
-
* Copyright (c) 2013-
|
|
31644
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31549
31645
|
*/
|
|
31550
31646
|
|
|
31551
31647
|
|
|
@@ -31582,7 +31678,7 @@ config/* Config.prototype.controls.source */.D.prototype.controls.source = {
|
|
|
31582
31678
|
/*!
|
|
31583
31679
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31584
31680
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31585
|
-
* Copyright (c) 2013-
|
|
31681
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31586
31682
|
*/
|
|
31587
31683
|
|
|
31588
31684
|
|
|
@@ -31887,7 +31983,7 @@ global/* pluginSystem.add */.pw.add('source', source);
|
|
|
31887
31983
|
/*!
|
|
31888
31984
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31889
31985
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31890
|
-
* Copyright (c) 2013-
|
|
31986
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31891
31987
|
*/
|
|
31892
31988
|
|
|
31893
31989
|
|
|
@@ -31907,7 +32003,7 @@ config/* Config.prototype.controls.spellcheck */.D.prototype.controls.spellcheck
|
|
|
31907
32003
|
/*!
|
|
31908
32004
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31909
32005
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31910
|
-
* Copyright (c) 2013-
|
|
32006
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31911
32007
|
*/
|
|
31912
32008
|
|
|
31913
32009
|
|
|
@@ -31949,7 +32045,7 @@ global/* pluginSystem.add */.pw.add('spellcheck', spellcheck);
|
|
|
31949
32045
|
/*!
|
|
31950
32046
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31951
32047
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31952
|
-
* Copyright (c) 2013-
|
|
32048
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31953
32049
|
*/
|
|
31954
32050
|
|
|
31955
32051
|
config/* Config.prototype.showCharsCounter */.D.prototype.showCharsCounter = true;
|
|
@@ -31960,7 +32056,7 @@ config/* Config.prototype.showWordsCounter */.D.prototype.showWordsCounter = tru
|
|
|
31960
32056
|
/*!
|
|
31961
32057
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
31962
32058
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
31963
|
-
* Copyright (c) 2013-
|
|
32059
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
31964
32060
|
*/
|
|
31965
32061
|
|
|
31966
32062
|
|
|
@@ -32018,7 +32114,7 @@ global/* pluginSystem.add */.pw.add('stat', stat);
|
|
|
32018
32114
|
/*!
|
|
32019
32115
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32020
32116
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32021
|
-
* Copyright (c) 2013-
|
|
32117
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32022
32118
|
*/
|
|
32023
32119
|
|
|
32024
32120
|
config/* Config.prototype.toolbarSticky */.D.prototype.toolbarSticky = true;
|
|
@@ -32029,7 +32125,7 @@ config/* Config.prototype.toolbarStickyOffset */.D.prototype.toolbarStickyOffset
|
|
|
32029
32125
|
/*!
|
|
32030
32126
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32031
32127
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32032
|
-
* Copyright (c) 2013-
|
|
32128
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32033
32129
|
*/
|
|
32034
32130
|
|
|
32035
32131
|
|
|
@@ -32120,7 +32216,7 @@ global/* pluginSystem.add */.pw.add('sticky', sticky);
|
|
|
32120
32216
|
/*!
|
|
32121
32217
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32122
32218
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32123
|
-
* Copyright (c) 2013-
|
|
32219
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32124
32220
|
*/
|
|
32125
32221
|
|
|
32126
32222
|
|
|
@@ -32366,7 +32462,7 @@ config/* Config.prototype.controls.symbols */.D.prototype.controls.symbols = {
|
|
|
32366
32462
|
/*!
|
|
32367
32463
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32368
32464
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32369
|
-
* Copyright (c) 2013-
|
|
32465
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32370
32466
|
*/
|
|
32371
32467
|
|
|
32372
32468
|
|
|
@@ -32492,7 +32588,7 @@ var assert = __webpack_require__(603);
|
|
|
32492
32588
|
/*!
|
|
32493
32589
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32494
32590
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32495
|
-
* Copyright (c) 2013-
|
|
32591
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32496
32592
|
*/
|
|
32497
32593
|
|
|
32498
32594
|
|
|
@@ -32594,7 +32690,7 @@ function removeNestedList(jodit, list, li) {
|
|
|
32594
32690
|
/*!
|
|
32595
32691
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32596
32692
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32597
|
-
* Copyright (c) 2013-
|
|
32693
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32598
32694
|
*/
|
|
32599
32695
|
|
|
32600
32696
|
|
|
@@ -32602,7 +32698,7 @@ function removeNestedList(jodit, list, li) {
|
|
|
32602
32698
|
/*!
|
|
32603
32699
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32604
32700
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32605
|
-
* Copyright (c) 2013-
|
|
32701
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32606
32702
|
*/
|
|
32607
32703
|
|
|
32608
32704
|
config/* Config.prototype.tab */.D.prototype.tab = {
|
|
@@ -32613,7 +32709,7 @@ config/* Config.prototype.tab */.D.prototype.tab = {
|
|
|
32613
32709
|
/*!
|
|
32614
32710
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32615
32711
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32616
|
-
* Copyright (c) 2013-
|
|
32712
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32617
32713
|
*/
|
|
32618
32714
|
|
|
32619
32715
|
|
|
@@ -32656,7 +32752,7 @@ global/* pluginSystem.add */.pw.add('tab', tab);
|
|
|
32656
32752
|
/*!
|
|
32657
32753
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32658
32754
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32659
|
-
* Copyright (c) 2013-
|
|
32755
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32660
32756
|
*/
|
|
32661
32757
|
|
|
32662
32758
|
|
|
@@ -32801,7 +32897,7 @@ config/* Config.prototype.controls.table */.D.prototype.controls.table = {
|
|
|
32801
32897
|
/*!
|
|
32802
32898
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32803
32899
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32804
|
-
* Copyright (c) 2013-
|
|
32900
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32805
32901
|
*/
|
|
32806
32902
|
|
|
32807
32903
|
|
|
@@ -32820,7 +32916,7 @@ var table_table = __webpack_require__(25120);
|
|
|
32820
32916
|
/*!
|
|
32821
32917
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32822
32918
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32823
|
-
* Copyright (c) 2013-
|
|
32919
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32824
32920
|
*/
|
|
32825
32921
|
|
|
32826
32922
|
|
|
@@ -32936,7 +33032,7 @@ global/* pluginSystem.add */.pw.add('tableKeyboardNavigation', tableKeyboardNavi
|
|
|
32936
33032
|
/*!
|
|
32937
33033
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
32938
33034
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
32939
|
-
* Copyright (c) 2013-
|
|
33035
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
32940
33036
|
*/
|
|
32941
33037
|
|
|
32942
33038
|
|
|
@@ -33002,7 +33098,7 @@ config/* Config.prototype.controls.video */.D.prototype.controls.video = {
|
|
|
33002
33098
|
/*!
|
|
33003
33099
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33004
33100
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33005
|
-
* Copyright (c) 2013-
|
|
33101
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33006
33102
|
*/
|
|
33007
33103
|
|
|
33008
33104
|
|
|
@@ -33018,7 +33114,7 @@ global/* pluginSystem.add */.pw.add('video', video);
|
|
|
33018
33114
|
/*!
|
|
33019
33115
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33020
33116
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33021
|
-
* Copyright (c) 2013-
|
|
33117
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33022
33118
|
*/
|
|
33023
33119
|
|
|
33024
33120
|
config/* Config.prototype.wrapNodes */.D.prototype.wrapNodes = {
|
|
@@ -33030,7 +33126,7 @@ config/* Config.prototype.wrapNodes */.D.prototype.wrapNodes = {
|
|
|
33030
33126
|
/*!
|
|
33031
33127
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33032
33128
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33033
|
-
* Copyright (c) 2013-
|
|
33129
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33034
33130
|
*/
|
|
33035
33131
|
|
|
33036
33132
|
|
|
@@ -33144,7 +33240,7 @@ var watch = __webpack_require__(46163);
|
|
|
33144
33240
|
/*!
|
|
33145
33241
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33146
33242
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33147
|
-
* Copyright (c) 2013-
|
|
33243
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33148
33244
|
*/
|
|
33149
33245
|
|
|
33150
33246
|
config/* Config.prototype.dtd */.D.prototype.dtd = {
|
|
@@ -33185,7 +33281,7 @@ config/* Config.prototype.dtd */.D.prototype.dtd = {
|
|
|
33185
33281
|
/*!
|
|
33186
33282
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33187
33283
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33188
|
-
* Copyright (c) 2013-
|
|
33284
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33189
33285
|
*/
|
|
33190
33286
|
|
|
33191
33287
|
function checkBlockNesting(jodit, node) {
|
|
@@ -33207,7 +33303,7 @@ function checkBlockNesting(jodit, node) {
|
|
|
33207
33303
|
/*!
|
|
33208
33304
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33209
33305
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33210
|
-
* Copyright (c) 2013-
|
|
33306
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33211
33307
|
*/
|
|
33212
33308
|
|
|
33213
33309
|
|
|
@@ -33215,7 +33311,7 @@ function checkBlockNesting(jodit, node) {
|
|
|
33215
33311
|
/*!
|
|
33216
33312
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33217
33313
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33218
|
-
* Copyright (c) 2013-
|
|
33314
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33219
33315
|
*/
|
|
33220
33316
|
|
|
33221
33317
|
function removeExtraBr(jodit, node) {
|
|
@@ -33239,7 +33335,7 @@ function removeExtraBr(jodit, node) {
|
|
|
33239
33335
|
/*!
|
|
33240
33336
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33241
33337
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33242
|
-
* Copyright (c) 2013-
|
|
33338
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33243
33339
|
*/
|
|
33244
33340
|
|
|
33245
33341
|
|
|
@@ -33247,7 +33343,7 @@ function removeExtraBr(jodit, node) {
|
|
|
33247
33343
|
/*!
|
|
33248
33344
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33249
33345
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33250
|
-
* Copyright (c) 2013-
|
|
33346
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33251
33347
|
*/
|
|
33252
33348
|
|
|
33253
33349
|
|
|
@@ -33286,7 +33382,7 @@ var context_menu = __webpack_require__(60403);
|
|
|
33286
33382
|
/*!
|
|
33287
33383
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33288
33384
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33289
|
-
* Copyright (c) 2013-
|
|
33385
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33290
33386
|
*/
|
|
33291
33387
|
|
|
33292
33388
|
config/* Config.prototype.showXPathInStatusbar */.D.prototype.showXPathInStatusbar = true;
|
|
@@ -33295,7 +33391,7 @@ config/* Config.prototype.showXPathInStatusbar */.D.prototype.showXPathInStatusb
|
|
|
33295
33391
|
/*!
|
|
33296
33392
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33297
33393
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33298
|
-
* Copyright (c) 2013-
|
|
33394
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33299
33395
|
*/
|
|
33300
33396
|
|
|
33301
33397
|
|
|
@@ -33446,7 +33542,7 @@ global/* pluginSystem.add */.pw.add('xpath', xpath);
|
|
|
33446
33542
|
/*!
|
|
33447
33543
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33448
33544
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33449
|
-
* Copyright (c) 2013-
|
|
33545
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33450
33546
|
*/
|
|
33451
33547
|
|
|
33452
33548
|
|
|
@@ -33513,7 +33609,7 @@ global/* pluginSystem.add */.pw.add('xpath', xpath);
|
|
|
33513
33609
|
/*!
|
|
33514
33610
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
33515
33611
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
33516
|
-
* Copyright (c) 2013-
|
|
33612
|
+
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
33517
33613
|
*/
|
|
33518
33614
|
|
|
33519
33615
|
if (false) {}
|