jodit 3.10.2 → 3.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/docs.yml +16 -0
- package/.github/workflows/tests.yml +1 -2
- package/.idea/dictionaries/v_chupurnov.xml +1 -0
- package/.idea/workspace.xml +303 -269
- package/CHANGELOG.MD +63 -7
- package/LICENSE.txt +1 -1
- package/README.md +6 -4
- package/build/jodit.css +85 -85
- package/build/jodit.es2018.css +74 -74
- package/build/jodit.es2018.en.css +74 -74
- package/build/jodit.es2018.en.js +2933 -2707
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +2807 -2581
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +3864 -3537
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/index.d.ts +1 -1
- package/package.json +14 -2
- package/src/README.md +55 -0
- package/src/config.ts +5 -1
- package/src/core/async/README.md +147 -0
- package/src/core/{async.ts → async/async.ts} +16 -7
- package/src/core/async/index.ts +11 -0
- package/src/core/component/README.md +110 -0
- package/src/core/component/component.ts +7 -1
- package/src/core/component/index.ts +5 -1
- package/src/core/component/statuses.ts +5 -1
- package/src/core/component/view-component.ts +5 -1
- package/src/core/constants.ts +5 -1
- package/src/core/create/README.md +57 -0
- package/src/core/{create.ts → create/create.ts} +11 -5
- package/src/core/create/index.ts +11 -0
- package/src/core/decorators/README.md +4 -0
- package/src/core/decorators/cache/README.md +17 -0
- package/src/core/decorators/{cache.ts → cache/cache.ts} +9 -3
- package/src/core/decorators/component/README.md +65 -0
- package/src/core/decorators/{component.ts → component/component.ts} +8 -2
- package/src/core/decorators/debounce/README.md +44 -0
- package/src/core/decorators/{debounce.ts → debounce/debounce.ts} +11 -8
- package/src/core/decorators/hook/README.md +16 -0
- package/src/core/decorators/{hook.ts → hook/hook.ts} +11 -4
- package/src/core/decorators/idle/README.md +1 -0
- package/src/core/decorators/{idle.ts → idle/idle.ts} +11 -7
- package/src/core/decorators/index.ts +16 -10
- package/src/core/decorators/nonenumerable/README.md +15 -0
- package/src/core/decorators/{nonenumerable.ts → nonenumerable/nonenumerable.ts} +5 -2
- package/src/core/decorators/persistent/README.md +23 -0
- package/src/core/decorators/{persistent.ts → persistent/persistent.ts} +9 -6
- package/src/core/decorators/wait/README.md +20 -0
- package/src/core/decorators/{wait.ts → wait/wait.ts} +9 -6
- package/src/core/decorators/watch/README.md +125 -0
- package/src/core/decorators/{watch.ts → watch/watch.ts} +16 -14
- package/src/core/dom/README.md +13 -0
- package/src/core/{dom.ts → dom/dom.ts} +31 -10
- package/src/core/dom/index.ts +11 -0
- package/src/core/event-emitter/README.md +39 -0
- package/src/core/{events → event-emitter}/event-emitter.ts +9 -9
- package/src/core/{events → event-emitter}/index.ts +5 -1
- package/src/core/{events → event-emitter}/observe-object.ts +17 -8
- package/src/core/{events → event-emitter}/store.ts +5 -1
- package/src/core/global.ts +12 -12
- package/src/core/helpers/README.md +1 -0
- package/src/core/helpers/array/as-array.ts +5 -1
- package/src/core/helpers/array/index.ts +5 -1
- package/src/core/helpers/array/split-array.ts +5 -1
- package/src/core/helpers/array/to-array.ts +5 -1
- package/src/core/helpers/async/index.ts +5 -1
- package/src/core/helpers/async/set-timeout.ts +5 -1
- package/src/core/helpers/checker/has-browser-color-picker.ts +5 -1
- package/src/core/helpers/checker/index.ts +5 -1
- package/src/core/helpers/checker/is-array.ts +5 -1
- package/src/core/helpers/checker/is-boolean.ts +5 -1
- package/src/core/helpers/checker/is-equal.ts +5 -1
- package/src/core/helpers/checker/is-function.ts +5 -1
- package/src/core/helpers/checker/is-html-from-word.ts +5 -1
- package/src/core/helpers/checker/is-html.ts +5 -1
- package/src/core/helpers/checker/is-imp-interface.ts +5 -1
- package/src/core/helpers/checker/is-int.ts +5 -1
- package/src/core/helpers/checker/is-jodit-object.ts +5 -1
- package/src/core/helpers/checker/is-license.ts +5 -1
- package/src/core/helpers/checker/is-native-function.ts +5 -1
- package/src/core/helpers/checker/is-number.ts +5 -1
- package/src/core/helpers/checker/is-numeric.ts +5 -1
- package/src/core/helpers/checker/is-plain-object.ts +5 -1
- package/src/core/helpers/checker/is-promise.ts +5 -1
- package/src/core/helpers/checker/is-string.ts +5 -1
- package/src/core/helpers/checker/is-url.ts +5 -1
- package/src/core/helpers/checker/is-valid-name.ts +5 -1
- package/src/core/helpers/checker/is-void.ts +5 -1
- package/src/core/helpers/checker/is-window.ts +5 -1
- package/src/core/helpers/color/color-to-hex.ts +5 -1
- package/src/core/helpers/color/index.ts +5 -1
- package/src/core/helpers/html/apply-styles.ts +6 -2
- package/src/core/helpers/html/clean-from-word.ts +5 -1
- package/src/core/helpers/html/htmlspecialchars.ts +5 -1
- package/src/core/helpers/html/index.ts +5 -1
- package/src/core/helpers/html/nl2br.ts +6 -2
- package/src/core/helpers/html/strip-tags.ts +6 -2
- package/src/core/helpers/index.ts +7 -22
- package/src/core/helpers/normalize/index.ts +5 -1
- package/src/core/helpers/normalize/normalize-color.ts +5 -1
- package/src/core/helpers/normalize/normalize-css-value.ts +5 -1
- package/src/core/helpers/normalize/normalize-key-aliases.ts +5 -1
- package/src/core/helpers/normalize/normalize-license.ts +5 -1
- package/src/core/helpers/normalize/normalize-node.ts +5 -1
- package/src/core/helpers/normalize/normalize-path.ts +5 -1
- package/src/core/helpers/normalize/normalize-relative-path.ts +5 -1
- package/src/core/helpers/normalize/normalize-size.ts +5 -1
- package/src/core/helpers/normalize/normalize-url.ts +5 -1
- package/src/core/helpers/size/get-content-width.ts +3 -2
- package/src/core/helpers/size/get-scroll-parent.ts +11 -5
- package/src/core/helpers/size/index.ts +5 -1
- package/src/core/helpers/size/inner-width.ts +5 -1
- package/src/core/helpers/size/object-size.ts +5 -1
- package/src/core/helpers/size/offset.ts +5 -1
- package/src/core/helpers/size/position.ts +5 -1
- package/src/core/helpers/string/camel-case.ts +5 -1
- package/src/core/helpers/string/i18n.ts +6 -2
- package/src/core/helpers/string/index.ts +5 -1
- package/src/core/helpers/string/kebab-case.ts +5 -1
- package/src/core/helpers/string/stringify.ts +5 -1
- package/src/core/helpers/string/trim.ts +5 -1
- package/src/core/helpers/string/ucfirst.ts +5 -1
- package/src/core/helpers/{append-script.ts → utils/append-script.ts} +7 -3
- package/src/core/helpers/{browser.ts → utils/browser.ts} +5 -1
- package/src/core/helpers/{build-query.ts → utils/build-query.ts} +7 -3
- package/src/core/helpers/{complete-url.ts → utils/complete-url.ts} +5 -1
- package/src/core/helpers/{config-proto.ts → utils/config-proto.ts} +8 -4
- package/src/core/helpers/{convert-media-url-to-video-embed.ts → utils/convert-media-url-to-video-embed.ts} +6 -2
- package/src/core/helpers/{css.ts → utils/css.ts} +9 -5
- package/src/core/helpers/{ctrl-key.ts → utils/ctrl-key.ts} +5 -1
- package/src/core/helpers/{data-bind.ts → utils/data-bind.ts} +8 -4
- package/src/core/helpers/{default-language.ts → utils/default-language.ts} +6 -2
- package/src/core/helpers/{type.ts → utils/error.ts} +5 -1
- package/src/core/helpers/{extend.ts → utils/extend.ts} +6 -2
- package/src/core/helpers/utils/get-class-name.ts +5 -1
- package/src/core/helpers/utils/get.ts +5 -1
- package/src/core/helpers/{human-size-to-bytes.ts → utils/human-size-to-bytes.ts} +5 -1
- package/src/core/helpers/utils/index.ts +22 -1
- package/src/core/helpers/utils/mark-deprecated.ts +5 -1
- package/src/core/helpers/{parse-query.ts → utils/parse-query.ts} +6 -2
- package/src/core/helpers/{scroll-into-view.ts → utils/scroll-into-view.ts} +5 -1
- package/src/core/helpers/{selector.ts → utils/selector.ts} +13 -9
- package/src/core/helpers/utils/set.ts +5 -1
- package/src/core/helpers/utils/stack.ts +6 -1
- package/src/core/helpers/utils/utils.ts +7 -3
- package/src/core/helpers/{val.ts → utils/val.ts} +5 -1
- package/src/core/plugin/README.md +133 -0
- package/src/core/plugin/index.ts +12 -0
- package/src/core/{plugin-system.ts → plugin/plugin-system.ts} +7 -3
- package/src/core/{plugin.ts → plugin/plugin.ts} +11 -5
- package/src/core/request/README.md +11 -0
- package/src/core/request/ajax.ts +23 -14
- package/src/core/request/config.ts +5 -1
- package/src/core/request/index.ts +5 -1
- package/src/core/request/response.ts +13 -5
- package/src/core/selection/README.md +20 -0
- package/src/core/selection/index.ts +5 -1
- package/src/core/selection/select.ts +8 -2
- package/src/core/selection/style/api/element-has-same-style.ts +2 -1
- package/src/core/selection/style/api/extract.ts +2 -1
- package/src/core/selection/style/api/finite-state-machine.ts +1 -1
- package/src/core/selection/style/api/get-suit-child.ts +2 -1
- package/src/core/selection/style/api/get-suit-parent.ts +2 -1
- package/src/core/selection/style/api/index.ts +1 -1
- package/src/core/selection/style/api/is-inside-invisible-element.ts +2 -1
- package/src/core/selection/style/api/is-normal-node.ts +2 -1
- package/src/core/selection/style/api/is-suit-element.ts +2 -1
- package/src/core/selection/style/api/toggle/toggle-css.ts +3 -2
- package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +2 -1
- package/src/core/selection/style/api/toggle-commit-styles.ts +2 -1
- package/src/core/selection/style/api/unwrap-children.ts +2 -1
- package/src/core/selection/style/api/wrap-and-commit-style.ts +2 -1
- package/src/core/selection/style/api/wrap-ordered-list.ts +2 -1
- package/src/core/selection/style/api/wrap-unwrapped-text.ts +2 -1
- package/src/core/selection/style/apply-style.ts +5 -1
- package/src/core/selection/style/commit-style.ts +5 -1
- package/src/core/storage/README.md +13 -0
- package/src/core/storage/engines/local-storage-provider.ts +5 -1
- package/src/core/storage/engines/memory-storage-provider.ts +5 -1
- package/src/core/storage/index.ts +5 -1
- package/src/core/storage/storage.ts +7 -1
- package/src/core/traits/elms.ts +5 -1
- package/src/core/traits/index.ts +5 -1
- package/src/core/traits/mods.ts +5 -1
- package/src/core/ui/README.md +51 -0
- package/src/core/ui/button/README.md +3 -0
- package/src/core/ui/button/button/button.less +1 -1
- package/src/core/ui/button/button/button.ts +6 -2
- package/src/core/ui/button/group/group.ts +6 -2
- package/src/core/ui/button/index.ts +7 -1
- package/src/core/ui/element.ts +5 -1
- package/src/core/ui/form/README.md +22 -0
- package/src/core/ui/form/block/block.ts +6 -2
- package/src/core/ui/form/form.ts +8 -2
- package/src/core/ui/form/index.ts +5 -1
- package/src/core/ui/form/inputs/area/area.ts +5 -1
- package/src/core/ui/form/inputs/checkbox/checkbox.ts +5 -1
- package/src/core/ui/form/inputs/file/file.ts +5 -1
- package/src/core/ui/form/inputs/index.ts +5 -1
- package/src/core/ui/form/inputs/input/input.ts +5 -1
- package/src/core/ui/form/inputs/select/select.ts +5 -1
- package/src/core/ui/form/validators/index.ts +5 -1
- package/src/core/ui/form/validators/input.ts +5 -1
- package/src/core/ui/form/validators/select.ts +5 -1
- package/src/core/ui/group/README.md +1 -0
- package/src/core/ui/{list → group}/group.less +1 -1
- package/src/core/ui/{list → group}/group.ts +7 -1
- package/src/core/ui/{list → group}/index.ts +5 -1
- package/src/core/ui/{list → group}/list.less +1 -1
- package/src/core/ui/{list → group}/list.ts +5 -1
- package/src/core/ui/{list → group}/separator.ts +5 -1
- package/src/core/ui/{list → group}/spacer.ts +5 -1
- package/src/core/ui/helpers/buttons.ts +5 -1
- package/src/core/ui/helpers/get-control-type.ts +5 -1
- package/src/core/ui/helpers/get-strong-control-types.ts +5 -1
- package/src/core/ui/icon.ts +6 -2
- package/src/core/ui/index.ts +8 -2
- package/src/core/ui/popup/README.md +15 -0
- package/src/core/ui/popup/index.ts +5 -1
- package/src/core/ui/popup/popup.less +1 -1
- package/src/core/ui/popup/popup.ts +13 -3
- package/src/core/ui/progress-bar/README.md +1 -0
- package/src/core/ui/progress-bar/progress-bar.less +1 -1
- package/src/core/ui/progress-bar/progress-bar.ts +7 -1
- package/src/core/view/README.md +24 -0
- package/src/core/view/view-with-toolbar.less +1 -1
- package/src/core/view/view-with-toolbar.ts +5 -1
- package/src/core/view/view.ts +11 -4
- package/src/header.js +1 -1
- package/src/index.ts +7 -1
- package/src/jodit.ts +7 -1
- package/src/langs/README.md +1 -0
- package/src/langs/ar.js +1 -1
- package/src/langs/cs_cz.js +1 -1
- package/src/langs/de.js +1 -1
- package/src/langs/en.js +1 -1
- package/src/langs/es.js +1 -1
- package/src/langs/fa.js +1 -1
- package/src/langs/fr.js +1 -1
- package/src/langs/he.js +1 -1
- package/src/langs/hu.js +1 -1
- package/src/langs/id.js +1 -1
- package/src/langs/index.ts +8 -1
- package/src/langs/it.js +1 -1
- package/src/langs/ja.js +1 -1
- package/src/langs/ko.js +1 -1
- package/src/langs/nl.js +1 -1
- package/src/langs/pl.js +1 -1
- package/src/langs/pt_br.js +1 -1
- package/src/langs/ru.js +1 -1
- package/src/langs/tr.js +1 -1
- package/src/langs/zh_cn.js +1 -1
- package/src/langs/zh_tw.js +1 -1
- package/src/modules/README.md +1 -0
- package/src/modules/context-menu/README.md +1 -0
- package/src/modules/context-menu/context-menu.less +1 -1
- package/src/modules/context-menu/context-menu.ts +7 -1
- package/src/modules/dialog/README.md +45 -0
- package/src/modules/dialog/alert.ts +5 -1
- package/src/modules/dialog/confirm.ts +5 -1
- package/src/modules/dialog/dialog.less +1 -1
- package/src/modules/dialog/dialog.ts +5 -1
- package/src/modules/dialog/index.ts +7 -1
- package/src/modules/dialog/prompt.ts +5 -1
- package/src/modules/file-browser/{README.MD → README.md} +173 -63
- package/src/modules/file-browser/builders/context-menu.ts +7 -3
- package/src/modules/file-browser/builders/item.ts +5 -1
- package/src/modules/file-browser/config.ts +5 -1
- package/src/modules/file-browser/data-provider.ts +5 -1
- package/src/modules/file-browser/factories.ts +5 -1
- package/src/modules/file-browser/file-browser.ts +36 -17
- package/src/modules/file-browser/index.ts +13 -0
- package/src/modules/file-browser/listeners/native-listeners.ts +8 -4
- package/src/modules/file-browser/listeners/self-listeners.ts +7 -4
- package/src/modules/file-browser/listeners/state-listeners.ts +7 -4
- 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 +5 -1
- package/src/modules/file-browser/ui/tree/tree.ts +1 -1
- package/src/modules/image-editor/README.md +1 -0
- package/src/modules/image-editor/image-editor.less +1 -1
- package/src/modules/image-editor/image-editor.ts +12 -11
- package/src/modules/image-editor/templates/form.ts +5 -1
- package/src/modules/index.ts +12 -6
- package/src/modules/observer/README.md +0 -0
- package/src/modules/observer/command.ts +5 -1
- package/src/modules/observer/observer.ts +7 -1
- package/src/modules/observer/snapshot.ts +5 -1
- package/src/modules/observer/stack.ts +5 -1
- package/src/modules/status-bar/README.md +1 -0
- package/src/modules/status-bar/status-bar.less +1 -1
- package/src/modules/status-bar/status-bar.ts +7 -1
- package/src/modules/table/README.md +3 -0
- package/src/modules/{table.ts → table/table.ts} +20 -13
- package/src/modules/toolbar/README.md +1 -0
- package/src/modules/toolbar/button/README.md +1 -0
- package/src/modules/toolbar/button/button.less +1 -1
- package/src/modules/toolbar/button/button.ts +7 -1
- package/src/modules/toolbar/button/content.less +1 -1
- package/src/modules/toolbar/button/content.ts +5 -1
- package/src/modules/toolbar/button/index.ts +5 -1
- package/src/modules/toolbar/collection/README.md +1 -0
- package/src/modules/toolbar/collection/collection.less +2 -2
- package/src/modules/toolbar/collection/collection.ts +7 -1
- package/src/modules/toolbar/collection/editor-collection.ts +5 -1
- package/src/modules/toolbar/factory.ts +7 -1
- package/src/modules/uploader/README.md +1 -0
- package/src/modules/uploader/uploader.less +1 -1
- package/src/modules/uploader/uploader.ts +7 -1
- package/src/modules/widget/README.md +1 -0
- package/src/modules/widget/color-picker/README.md +1 -0
- package/src/modules/widget/color-picker/color-picker.less +1 -1
- package/src/modules/widget/color-picker/color-picker.ts +7 -1
- package/src/modules/widget/file-selector/README.md +1 -0
- package/src/modules/widget/file-selector/file-selector.ts +7 -1
- package/src/modules/widget/index.ts +7 -1
- package/src/modules/widget/tabs/README.md +1 -0
- package/src/modules/widget/tabs/tabs.less +1 -1
- package/src/modules/widget/tabs/tabs.ts +7 -1
- package/src/modules/widget/widget.less +1 -1
- package/src/plugins/README.md +3 -0
- package/src/plugins/about/about.less +1 -1
- package/src/plugins/about/about.ts +5 -1
- package/src/plugins/add-new-line/README.md +6 -0
- package/src/plugins/add-new-line/add-new-line.less +1 -1
- package/src/plugins/add-new-line/add-new-line.ts +13 -1
- package/src/plugins/{bold.ts → bold/bold.ts} +9 -5
- package/src/plugins/class-span/class-span.ts +5 -1
- package/src/plugins/clipboard/clipboard.ts +5 -1
- package/src/plugins/clipboard/config.ts +5 -1
- package/src/plugins/clipboard/copy-format.ts +5 -1
- package/src/plugins/clipboard/drag-and-drop-element.ts +5 -1
- package/src/plugins/clipboard/drag-and-drop.ts +7 -8
- package/src/plugins/clipboard/index.ts +5 -1
- package/src/plugins/clipboard/paste/helpers.ts +5 -1
- package/src/plugins/clipboard/paste/paste.ts +5 -1
- package/src/plugins/clipboard/paste-storage/paste-storage.less +1 -1
- package/src/plugins/clipboard/paste-storage/paste-storage.ts +5 -1
- package/src/plugins/{color.ts → color/color.ts} +10 -6
- package/src/plugins/error-messages/error-messages.ts +5 -1
- package/src/plugins/error-messages/errors-messages.less +1 -1
- package/src/plugins/fix/clean-html.ts +5 -1
- package/src/plugins/fix/wrap-text-nodes.ts +5 -1
- package/src/plugins/focus/README.md +3 -0
- package/src/plugins/{focus.ts → focus/focus.ts} +11 -8
- package/src/plugins/{font.ts → font/font.ts} +10 -6
- package/src/plugins/{format-block.ts → format-block/format-block.ts} +14 -5
- package/src/plugins/fullsize/fullsize.less +1 -1
- package/src/plugins/fullsize/fullsize.ts +5 -1
- package/src/plugins/{iframe.ts → iframe/iframe.ts} +11 -7
- package/src/plugins/image/helpers.ts +5 -1
- package/src/plugins/image/image-processor.ts +5 -1
- package/src/plugins/image/image-properties/image-properties.less +1 -1
- package/src/plugins/image/image-properties/image-properties.ts +5 -1
- package/src/plugins/image/image-properties/templates/form.ts +5 -1
- package/src/plugins/image/image-properties/templates/index.ts +7 -3
- package/src/plugins/image/image-properties/templates/{mainTab.ts → main-tab.ts} +5 -1
- package/src/plugins/image/image-properties/templates/{positionTab.ts → position-tab.ts} +5 -1
- package/src/plugins/image/image.ts +5 -1
- package/src/plugins/image/index.ts +5 -1
- package/src/plugins/{indent.ts → indent/indent.ts} +11 -7
- package/src/plugins/index.ts +23 -17
- package/src/plugins/inline-popup/config/config.ts +5 -1
- package/src/plugins/inline-popup/config/items/a.ts +5 -1
- package/src/plugins/inline-popup/config/items/cells.ts +5 -1
- package/src/plugins/inline-popup/config/items/iframe.ts +5 -1
- package/src/plugins/inline-popup/config/items/img.ts +5 -1
- package/src/plugins/inline-popup/config/items/toolbar.ts +5 -1
- package/src/plugins/inline-popup/inline-popup.less +1 -1
- package/src/plugins/inline-popup/inline-popup.ts +5 -1
- package/src/plugins/insert/hr.ts +5 -1
- package/src/plugins/insert/index.ts +5 -1
- package/src/plugins/{justify.ts → justify/justify.ts} +9 -5
- package/src/plugins/keyboard/backspace/backspace.ts +187 -0
- package/src/plugins/keyboard/backspace/cases/check-join-neighbors.ts +117 -0
- package/src/plugins/keyboard/backspace/cases/check-join-two-lists.ts +56 -0
- package/src/plugins/keyboard/backspace/cases/check-not-collapsed.ts +28 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-char.ts +192 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-content-not-editable.ts +47 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.ts +44 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-parent.ts +82 -0
- package/src/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.ts +48 -0
- package/src/plugins/keyboard/backspace/cases/check-table-cell.ts +32 -0
- package/src/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.ts +59 -0
- package/src/plugins/keyboard/backspace/cases/index.ts +27 -0
- package/src/plugins/keyboard/backspace/config.ts +37 -0
- package/src/plugins/keyboard/backspace/interface.d.ts +11 -0
- package/src/plugins/keyboard/enter.ts +5 -1
- package/src/plugins/keyboard/helpers.ts +13 -4
- package/src/plugins/keyboard/hotkeys.ts +5 -1
- package/src/plugins/keyboard/key-arrow-outside.ts +6 -1
- package/src/plugins/{limit.ts → limit/limit.ts} +12 -8
- package/src/plugins/link/link.ts +5 -1
- package/src/plugins/link/template.ts +5 -1
- package/src/plugins/media/file.ts +5 -1
- package/src/plugins/media/index.ts +5 -1
- package/src/plugins/media/media.ts +5 -1
- package/src/plugins/media/video/config.ts +5 -1
- package/src/plugins/media/video/index.ts +5 -1
- package/src/plugins/{mobile.ts → mobile/mobile.ts} +14 -10
- package/src/plugins/{ordered-list.ts → ordered-list/ordered-list.ts} +11 -7
- package/src/plugins/placeholder/placeholder.less +1 -1
- package/src/plugins/placeholder/placeholder.ts +5 -1
- package/src/plugins/{powered-by-jodit.ts → powered-by-jodit/powered-by-jodit.ts} +10 -3
- package/src/plugins/print/index.ts +5 -1
- package/src/plugins/print/preview.ts +5 -1
- package/src/plugins/print/print.ts +5 -1
- package/src/plugins/{redo-undo.ts → redo-undo/redo-undo.ts} +9 -5
- package/src/plugins/resizer/resizer.less +1 -1
- package/src/plugins/resizer/resizer.ts +12 -3
- package/src/plugins/search/search.less +1 -1
- package/src/plugins/search/search.ts +5 -1
- package/src/plugins/{select.ts → select/select.ts} +11 -8
- package/src/plugins/size/config.ts +6 -1
- package/src/plugins/size/index.ts +5 -1
- package/src/plugins/size/resize-handler.ts +5 -1
- package/src/plugins/size/size.less +1 -1
- package/src/plugins/size/size.ts +5 -1
- package/src/plugins/source/README.md +60 -0
- package/src/plugins/source/config.ts +18 -3
- package/src/plugins/source/const.ts +5 -1
- package/src/plugins/source/editor/engines/ace.ts +5 -1
- package/src/plugins/source/editor/engines/area.ts +5 -1
- package/src/plugins/source/editor/engines/custom.ts +5 -1
- package/src/plugins/source/editor/engines/index.ts +5 -1
- package/src/plugins/source/editor/factory.ts +25 -16
- package/src/plugins/source/editor/sourceEditor.ts +5 -1
- package/src/plugins/source/index.ts +7 -1
- package/src/plugins/source/source.less +1 -1
- package/src/plugins/source/source.ts +5 -1
- package/src/plugins/{stat.ts → stat/stat.ts} +11 -7
- package/src/plugins/sticky/sticky.less +1 -1
- package/src/plugins/sticky/sticky.ts +5 -1
- package/src/plugins/symbols/config.ts +5 -1
- package/src/plugins/symbols/symbols.less +1 -1
- package/src/plugins/symbols/symbols.ts +5 -1
- package/src/plugins/table/config.ts +5 -1
- package/src/plugins/table/index.ts +5 -1
- package/src/plugins/table/resize-cells.ts +5 -1
- package/src/plugins/table/select-cells.ts +6 -2
- package/src/plugins/table/table-keyboard-navigation.ts +5 -1
- package/src/plugins/table/table.less +1 -1
- package/src/plugins/table/table.ts +5 -1
- package/src/plugins/tooltip/tooltip.less +1 -1
- package/src/plugins/tooltip/tooltip.ts +5 -1
- package/src/plugins/xpath/xpath.less +1 -1
- package/src/plugins/xpath/xpath.ts +5 -1
- package/src/polyfills.ts +1 -1
- package/src/styles/form.less +1 -1
- package/src/styles/icons/README.md +1 -0
- package/src/styles/icons/index.ts +7 -1
- package/src/styles/index.less +1 -1
- package/src/styles/jodit.less +1 -1
- package/src/styles/mixins.less +1 -1
- package/src/styles/modules/button-group.less +1 -1
- package/src/styles/modules/grid.less +1 -1
- package/src/styles/modules/icon.less +1 -1
- package/src/styles/modules/texticons.less +1 -1
- package/src/styles/reset.less +1 -1
- package/src/styles/themes/dark.less +1 -1
- package/src/styles/variables.less +1 -1
- package/src/types/ajax.d.ts +8 -1
- package/src/types/async.d.ts +7 -1
- package/src/types/context.d.ts +5 -1
- package/src/types/core.ts +5 -1
- package/src/types/create.d.ts +5 -1
- package/src/types/dialog.d.ts +5 -1
- package/src/types/events.d.ts +9 -5
- package/src/types/file-browser.d.ts +21 -5
- package/src/types/form.d.ts +5 -1
- package/src/types/index.d.ts +6 -2
- package/src/types/jodit.d.ts +5 -1
- package/src/types/{observe.d.ts → observer.d.ts} +7 -5
- package/src/types/plugin.d.ts +5 -1
- package/src/types/popup.d.ts +5 -1
- package/src/types/select.d.ts +5 -1
- package/src/types/source.d.ts +5 -1
- package/src/types/storage.ts +5 -1
- package/src/types/style.d.ts +5 -1
- package/src/types/toolbar.d.ts +5 -1
- package/src/types/traits.d.ts +5 -1
- package/src/types/types.d.ts +5 -1
- package/src/types/ui.d.ts +5 -1
- package/src/types/uploader.d.ts +4 -2
- package/src/types/view.d.ts +5 -1
- package/src/typings.d.ts +5 -1
- package/tsdoc.json +20 -0
- package/types/config.d.ts +4 -1
- package/types/core/{async.d.ts → async/async.d.ts} +11 -6
- package/types/core/async/index.d.ts +9 -0
- package/types/core/component/component.d.ts +6 -1
- package/types/core/component/index.d.ts +4 -1
- package/types/core/component/statuses.d.ts +4 -1
- package/types/core/component/view-component.d.ts +4 -1
- package/types/core/constants.d.ts +4 -1
- package/types/core/{create.d.ts → create/create.d.ts} +7 -2
- package/types/core/create/index.d.ts +9 -0
- package/types/core/decorators/{cache.d.ts → cache/cache.d.ts} +1 -1
- package/types/core/decorators/{component.d.ts → component/component.d.ts} +1 -1
- package/types/core/decorators/{debounce.d.ts → debounce/debounce.d.ts} +5 -3
- package/types/core/decorators/{hook.d.ts → hook/hook.d.ts} +8 -3
- package/types/core/decorators/{idle.d.ts → idle/idle.d.ts} +5 -3
- package/types/core/decorators/index.d.ts +15 -10
- package/types/core/decorators/{nonenumerable.d.ts → nonenumerable/nonenumerable.d.ts} +4 -2
- package/types/core/decorators/{persistent.d.ts → persistent/persistent.d.ts} +5 -3
- package/types/core/decorators/{wait.d.ts → wait/wait.d.ts} +5 -3
- package/types/core/decorators/{watch.d.ts → watch/watch.d.ts} +7 -2
- package/types/core/{dom.d.ts → dom/dom.d.ts} +12 -3
- package/types/core/dom/index.d.ts +9 -0
- package/types/core/{events → event-emitter}/event-emitter.d.ts +7 -7
- package/types/core/{events → event-emitter}/index.d.ts +4 -1
- package/types/core/{events → event-emitter}/observe-object.d.ts +7 -4
- package/types/core/{events → event-emitter}/store.d.ts +4 -1
- package/types/core/global.d.ts +7 -4
- package/types/core/helpers/array/as-array.d.ts +1 -1
- package/types/core/helpers/array/index.d.ts +4 -1
- package/types/core/helpers/array/split-array.d.ts +1 -1
- package/types/core/helpers/array/to-array.d.ts +1 -1
- package/types/core/helpers/async/index.d.ts +4 -1
- package/types/core/helpers/async/set-timeout.d.ts +4 -1
- package/types/core/helpers/checker/has-browser-color-picker.d.ts +4 -1
- package/types/core/helpers/checker/index.d.ts +4 -1
- package/types/core/helpers/checker/is-array.d.ts +4 -1
- package/types/core/helpers/checker/is-boolean.d.ts +4 -1
- package/types/core/helpers/checker/is-equal.d.ts +1 -1
- package/types/core/helpers/checker/is-function.d.ts +4 -1
- package/types/core/helpers/checker/is-html-from-word.d.ts +4 -1
- package/types/core/helpers/checker/is-html.d.ts +1 -1
- package/types/core/helpers/checker/is-imp-interface.d.ts +4 -1
- package/types/core/helpers/checker/is-int.d.ts +1 -1
- package/types/core/helpers/checker/is-jodit-object.d.ts +4 -1
- package/types/core/helpers/checker/is-license.d.ts +1 -1
- package/types/core/helpers/checker/is-native-function.d.ts +4 -1
- package/types/core/helpers/checker/is-number.d.ts +4 -1
- package/types/core/helpers/checker/is-numeric.d.ts +1 -1
- package/types/core/helpers/checker/is-plain-object.d.ts +4 -1
- package/types/core/helpers/checker/is-promise.d.ts +4 -1
- package/types/core/helpers/checker/is-string.d.ts +4 -1
- package/types/core/helpers/checker/is-url.d.ts +4 -1
- package/types/core/helpers/checker/is-valid-name.d.ts +4 -1
- package/types/core/helpers/checker/is-void.d.ts +4 -1
- package/types/core/helpers/checker/is-window.d.ts +4 -1
- package/types/core/helpers/color/color-to-hex.d.ts +4 -1
- package/types/core/helpers/color/index.d.ts +4 -1
- package/types/core/helpers/html/apply-styles.d.ts +1 -1
- package/types/core/helpers/html/clean-from-word.d.ts +1 -1
- package/types/core/helpers/html/htmlspecialchars.d.ts +4 -1
- package/types/core/helpers/html/index.d.ts +4 -1
- package/types/core/helpers/html/nl2br.d.ts +4 -1
- package/types/core/helpers/html/strip-tags.d.ts +1 -1
- package/types/core/helpers/index.d.ts +6 -19
- package/types/core/helpers/normalize/index.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-color.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-css-value.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-key-aliases.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-license.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-node.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-path.d.ts +1 -1
- package/types/core/helpers/normalize/normalize-relative-path.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-size.d.ts +4 -1
- package/types/core/helpers/normalize/normalize-url.d.ts +4 -1
- package/types/core/helpers/size/get-content-width.d.ts +2 -2
- package/types/core/helpers/size/get-scroll-parent.d.ts +4 -1
- package/types/core/helpers/size/index.d.ts +4 -1
- package/types/core/helpers/size/inner-width.d.ts +4 -1
- package/types/core/helpers/size/object-size.d.ts +1 -1
- package/types/core/helpers/size/offset.d.ts +4 -1
- package/types/core/helpers/size/position.d.ts +4 -1
- package/types/core/helpers/string/camel-case.d.ts +4 -1
- package/types/core/helpers/string/i18n.d.ts +4 -1
- package/types/core/helpers/string/index.d.ts +4 -1
- package/types/core/helpers/string/kebab-case.d.ts +4 -1
- package/types/core/helpers/string/stringify.d.ts +1 -1
- package/types/core/helpers/string/trim.d.ts +1 -1
- package/types/core/helpers/string/ucfirst.d.ts +4 -1
- package/types/core/helpers/{append-script.d.ts → utils/append-script.d.ts} +5 -2
- package/types/core/helpers/{browser.d.ts → utils/browser.d.ts} +4 -1
- package/types/core/helpers/{build-query.d.ts → utils/build-query.d.ts} +5 -2
- package/types/core/helpers/{complete-url.d.ts → utils/complete-url.d.ts} +4 -1
- package/types/core/helpers/{config-proto.d.ts → utils/config-proto.d.ts} +5 -2
- package/types/core/helpers/{convert-media-url-to-video-embed.d.ts → utils/convert-media-url-to-video-embed.d.ts} +1 -1
- package/types/core/helpers/{css.d.ts → utils/css.d.ts} +5 -2
- package/types/core/helpers/{ctrl-key.d.ts → utils/ctrl-key.d.ts} +4 -1
- package/types/core/helpers/{data-bind.d.ts → utils/data-bind.d.ts} +5 -2
- package/types/core/helpers/{default-language.d.ts → utils/default-language.d.ts} +1 -1
- package/types/core/helpers/{type.d.ts → utils/error.d.ts} +4 -1
- package/types/core/helpers/{extend.d.ts → utils/extend.d.ts} +1 -1
- package/types/core/helpers/utils/get-class-name.d.ts +4 -1
- package/types/core/helpers/utils/get.d.ts +4 -1
- package/types/core/helpers/{human-size-to-bytes.d.ts → utils/human-size-to-bytes.d.ts} +4 -1
- package/types/core/helpers/utils/index.d.ts +21 -1
- package/types/core/helpers/utils/mark-deprecated.d.ts +4 -1
- package/types/core/helpers/{parse-query.d.ts → utils/parse-query.d.ts} +5 -2
- package/types/core/helpers/{scroll-into-view.d.ts → utils/scroll-into-view.d.ts} +4 -1
- package/types/core/helpers/{selector.d.ts → utils/selector.d.ts} +5 -2
- package/types/core/helpers/utils/set.d.ts +4 -1
- package/types/core/helpers/utils/stack.d.ts +4 -1
- package/types/core/helpers/utils/utils.d.ts +4 -1
- package/types/core/helpers/{val.d.ts → utils/val.d.ts} +4 -1
- package/types/core/plugin/index.d.ts +10 -0
- package/types/core/{plugin-system.d.ts → plugin/plugin-system.d.ts} +5 -2
- package/types/core/{plugin.d.ts → plugin/plugin.d.ts} +8 -3
- package/types/core/request/ajax.d.ts +7 -2
- package/types/core/request/config.d.ts +4 -1
- package/types/core/request/index.d.ts +4 -1
- package/types/core/request/response.d.ts +6 -2
- package/types/core/selection/index.d.ts +4 -1
- package/types/core/selection/select.d.ts +6 -1
- package/types/core/selection/style/api/element-has-same-style.d.ts +2 -1
- package/types/core/selection/style/api/extract.d.ts +2 -1
- package/types/core/selection/style/api/finite-state-machine.d.ts +1 -1
- package/types/core/selection/style/api/get-suit-child.d.ts +2 -1
- package/types/core/selection/style/api/get-suit-parent.d.ts +2 -1
- package/types/core/selection/style/api/index.d.ts +1 -1
- package/types/core/selection/style/api/is-inside-invisible-element.d.ts +2 -1
- package/types/core/selection/style/api/is-normal-node.d.ts +2 -1
- package/types/core/selection/style/api/is-suit-element.d.ts +2 -1
- package/types/core/selection/style/api/toggle/toggle-css.d.ts +2 -1
- package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +2 -1
- package/types/core/selection/style/api/toggle-commit-styles.d.ts +2 -1
- package/types/core/selection/style/api/unwrap-children.d.ts +2 -1
- package/types/core/selection/style/api/wrap-and-commit-style.d.ts +2 -1
- package/types/core/selection/style/api/wrap-ordered-list.d.ts +2 -1
- package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +2 -1
- package/types/core/selection/style/apply-style.d.ts +4 -1
- package/types/core/selection/style/commit-style.d.ts +4 -1
- package/types/core/storage/engines/local-storage-provider.d.ts +4 -1
- package/types/core/storage/engines/memory-storage-provider.d.ts +4 -1
- package/types/core/storage/index.d.ts +4 -1
- package/types/core/storage/storage.d.ts +6 -1
- package/types/core/traits/elms.d.ts +4 -1
- package/types/core/traits/index.d.ts +4 -1
- package/types/core/traits/mods.d.ts +4 -1
- package/types/core/ui/button/button/button.d.ts +4 -1
- package/types/core/ui/button/group/group.d.ts +5 -2
- package/types/core/ui/button/index.d.ts +6 -1
- package/types/core/ui/element.d.ts +4 -1
- package/types/core/ui/form/block/block.d.ts +5 -2
- package/types/core/ui/form/form.d.ts +7 -2
- package/types/core/ui/form/index.d.ts +4 -1
- package/types/core/ui/form/inputs/area/area.d.ts +4 -1
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +4 -1
- package/types/core/ui/form/inputs/file/file.d.ts +4 -1
- package/types/core/ui/form/inputs/index.d.ts +4 -1
- package/types/core/ui/form/inputs/input/input.d.ts +4 -1
- package/types/core/ui/form/inputs/select/select.d.ts +4 -1
- package/types/core/ui/form/validators/index.d.ts +4 -1
- package/types/core/ui/form/validators/input.d.ts +4 -1
- package/types/core/ui/form/validators/select.d.ts +4 -1
- package/types/core/ui/{list → group}/group.d.ts +6 -1
- package/types/core/ui/{list → group}/index.d.ts +4 -1
- package/types/core/ui/{list → group}/list.d.ts +4 -1
- package/types/core/ui/{list → group}/separator.d.ts +4 -1
- package/types/core/ui/{list → group}/spacer.d.ts +4 -1
- package/types/core/ui/helpers/buttons.d.ts +4 -1
- package/types/core/ui/helpers/get-control-type.d.ts +4 -1
- package/types/core/ui/helpers/get-strong-control-types.d.ts +4 -1
- package/types/core/ui/icon.d.ts +4 -1
- package/types/core/ui/index.d.ts +7 -2
- package/types/core/ui/popup/index.d.ts +4 -1
- package/types/core/ui/popup/popup.d.ts +6 -1
- package/types/core/ui/progress-bar/progress-bar.d.ts +6 -1
- package/types/core/view/view-with-toolbar.d.ts +4 -1
- package/types/core/view/view.d.ts +9 -4
- package/types/index.d.ts +6 -1
- package/types/jodit.d.ts +6 -1
- package/types/langs/index.d.ts +6 -1
- package/types/modules/context-menu/context-menu.d.ts +6 -1
- package/types/modules/dialog/alert.d.ts +4 -1
- package/types/modules/dialog/confirm.d.ts +4 -1
- package/types/modules/dialog/dialog.d.ts +4 -1
- package/types/modules/dialog/index.d.ts +6 -1
- package/types/modules/dialog/prompt.d.ts +4 -1
- package/types/modules/file-browser/builders/context-menu.d.ts +6 -3
- package/types/modules/file-browser/builders/item.d.ts +4 -1
- package/types/modules/file-browser/config.d.ts +1 -1
- package/types/modules/file-browser/data-provider.d.ts +4 -1
- package/types/modules/file-browser/factories.d.ts +4 -1
- package/types/modules/file-browser/file-browser.d.ts +10 -4
- package/types/modules/file-browser/index.d.ts +11 -0
- package/types/modules/file-browser/listeners/native-listeners.d.ts +6 -4
- package/types/modules/file-browser/listeners/self-listeners.d.ts +6 -3
- package/types/modules/file-browser/listeners/state-listeners.d.ts +6 -3
- package/types/modules/file-browser/ui/files/files.d.ts +1 -1
- package/types/modules/file-browser/ui/index.d.ts +4 -1
- package/types/modules/file-browser/ui/tree/tree.d.ts +1 -1
- package/types/modules/image-editor/image-editor.d.ts +12 -10
- package/types/modules/image-editor/templates/form.d.ts +4 -1
- package/types/modules/index.d.ts +11 -6
- package/types/modules/observer/command.d.ts +4 -1
- package/types/modules/observer/observer.d.ts +6 -1
- package/types/modules/observer/snapshot.d.ts +4 -1
- package/types/modules/observer/stack.d.ts +4 -1
- package/types/modules/status-bar/status-bar.d.ts +6 -1
- package/types/modules/{table.d.ts → table/table.d.ts} +7 -7
- package/types/modules/toolbar/button/button.d.ts +6 -1
- package/types/modules/toolbar/button/content.d.ts +4 -1
- package/types/modules/toolbar/button/index.d.ts +4 -1
- package/types/modules/toolbar/collection/collection.d.ts +6 -1
- package/types/modules/toolbar/collection/editor-collection.d.ts +4 -1
- package/types/modules/toolbar/factory.d.ts +6 -1
- package/types/modules/uploader/uploader.d.ts +6 -1
- package/types/modules/widget/color-picker/color-picker.d.ts +6 -1
- package/types/modules/widget/file-selector/file-selector.d.ts +6 -1
- package/types/modules/widget/index.d.ts +6 -1
- package/types/modules/widget/tabs/tabs.d.ts +6 -1
- package/types/plugins/about/about.d.ts +4 -1
- package/types/plugins/add-new-line/add-new-line.d.ts +12 -1
- package/types/plugins/{bold.d.ts → bold/bold.d.ts} +6 -3
- package/types/plugins/class-span/class-span.d.ts +4 -1
- package/types/plugins/clipboard/clipboard.d.ts +4 -1
- package/types/plugins/clipboard/config.d.ts +1 -1
- package/types/plugins/clipboard/copy-format.d.ts +4 -1
- package/types/plugins/clipboard/drag-and-drop-element.d.ts +1 -1
- package/types/plugins/clipboard/drag-and-drop.d.ts +1 -1
- package/types/plugins/clipboard/index.d.ts +4 -1
- package/types/plugins/clipboard/paste/helpers.d.ts +4 -1
- package/types/plugins/clipboard/paste/paste.d.ts +4 -1
- package/types/plugins/clipboard/paste-storage/paste-storage.d.ts +4 -1
- package/types/plugins/{color.d.ts → color/color.d.ts} +5 -2
- package/types/plugins/error-messages/error-messages.d.ts +4 -1
- package/types/plugins/fix/clean-html.d.ts +4 -1
- package/types/plugins/fix/wrap-text-nodes.d.ts +4 -1
- package/types/plugins/{focus.d.ts → focus/focus.d.ts} +8 -6
- package/types/plugins/{font.d.ts → font/font.d.ts} +6 -3
- package/types/plugins/{format-block.d.ts → format-block/format-block.d.ts} +5 -2
- package/types/plugins/fullsize/fullsize.d.ts +4 -1
- package/types/plugins/{iframe.d.ts → iframe/iframe.d.ts} +6 -3
- package/types/plugins/image/helpers.d.ts +1 -1
- package/types/plugins/image/image-processor.d.ts +4 -1
- package/types/plugins/image/image-properties/image-properties.d.ts +4 -1
- package/types/plugins/image/image-properties/templates/form.d.ts +4 -1
- package/types/plugins/image/image-properties/templates/index.d.ts +6 -3
- package/types/plugins/image/image-properties/templates/{mainTab.d.ts → main-tab.d.ts} +4 -1
- package/types/plugins/image/image-properties/templates/{positionTab.d.ts → position-tab.d.ts} +4 -1
- package/types/plugins/image/image.d.ts +4 -1
- package/types/plugins/image/index.d.ts +4 -1
- package/types/plugins/{indent.d.ts → indent/indent.d.ts} +6 -3
- package/types/plugins/index.d.ts +22 -17
- package/types/plugins/inline-popup/config/config.d.ts +4 -1
- package/types/plugins/inline-popup/inline-popup.d.ts +4 -1
- package/types/plugins/insert/hr.d.ts +4 -1
- package/types/plugins/insert/index.d.ts +4 -1
- package/types/plugins/{justify.d.ts → justify/justify.d.ts} +5 -2
- package/types/plugins/keyboard/backspace/backspace.d.ts +31 -0
- package/types/plugins/keyboard/backspace/cases/check-join-neighbors.d.ts +10 -0
- package/types/plugins/keyboard/backspace/cases/check-join-two-lists.d.ts +20 -0
- package/types/plugins/keyboard/backspace/cases/check-not-collapsed.d.ts +20 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-char.d.ts +21 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-content-not-editable.d.ts +11 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.d.ts +20 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-parent.d.ts +21 -0
- package/types/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.d.ts +21 -0
- package/types/plugins/keyboard/backspace/cases/check-table-cell.d.ts +21 -0
- package/types/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.d.ts +21 -0
- package/types/plugins/keyboard/backspace/cases/index.d.ts +8 -0
- package/types/plugins/keyboard/backspace/config.d.ts +20 -0
- package/types/plugins/keyboard/enter.d.ts +4 -1
- package/types/plugins/keyboard/helpers.d.ts +6 -3
- package/types/plugins/keyboard/hotkeys.d.ts +4 -1
- package/types/plugins/keyboard/key-arrow-outside.d.ts +4 -1
- package/types/plugins/{limit.d.ts → limit/limit.d.ts} +7 -4
- package/types/plugins/link/link.d.ts +4 -1
- package/types/plugins/link/template.d.ts +4 -1
- package/types/plugins/media/file.d.ts +4 -1
- package/types/plugins/media/index.d.ts +4 -1
- package/types/plugins/media/media.d.ts +4 -1
- package/types/plugins/media/video/config.d.ts +1 -1
- package/types/plugins/media/video/index.d.ts +4 -1
- package/types/plugins/{mobile.d.ts → mobile/mobile.d.ts} +6 -3
- package/types/plugins/{ordered-list.d.ts → ordered-list/ordered-list.d.ts} +6 -3
- package/types/plugins/placeholder/placeholder.d.ts +4 -1
- package/types/plugins/{powered-by-jodit.d.ts → powered-by-jodit/powered-by-jodit.d.ts} +9 -3
- package/types/plugins/print/index.d.ts +4 -1
- package/types/plugins/print/preview.d.ts +4 -1
- package/types/plugins/print/print.d.ts +4 -1
- package/types/plugins/{redo-undo.d.ts → redo-undo/redo-undo.d.ts} +6 -3
- package/types/plugins/resizer/resizer.d.ts +4 -1
- package/types/plugins/search/search.d.ts +4 -1
- package/types/plugins/{select.d.ts → select/select.d.ts} +6 -4
- package/types/plugins/size/config.d.ts +5 -0
- package/types/plugins/size/index.d.ts +4 -1
- package/types/plugins/size/resize-handler.d.ts +4 -1
- package/types/plugins/size/size.d.ts +4 -1
- package/types/plugins/source/config.d.ts +16 -3
- package/types/plugins/source/const.d.ts +4 -1
- package/types/plugins/source/editor/engines/ace.d.ts +4 -1
- package/types/plugins/source/editor/engines/area.d.ts +4 -1
- package/types/plugins/source/editor/engines/index.d.ts +4 -1
- package/types/plugins/source/editor/factory.d.ts +5 -2
- package/types/plugins/source/editor/sourceEditor.d.ts +4 -1
- package/types/plugins/source/index.d.ts +6 -1
- package/types/plugins/source/source.d.ts +4 -1
- package/types/plugins/{stat.d.ts → stat/stat.d.ts} +3 -3
- package/types/plugins/sticky/sticky.d.ts +4 -1
- package/types/plugins/symbols/config.d.ts +1 -1
- package/types/plugins/symbols/symbols.d.ts +4 -1
- package/types/plugins/table/config.d.ts +1 -1
- package/types/plugins/table/index.d.ts +4 -1
- package/types/plugins/table/resize-cells.d.ts +4 -1
- package/types/plugins/table/select-cells.d.ts +4 -1
- package/types/plugins/table/table-keyboard-navigation.d.ts +4 -1
- package/types/plugins/table/table.d.ts +4 -1
- package/types/plugins/tooltip/tooltip.d.ts +4 -1
- package/types/plugins/xpath/xpath.d.ts +4 -1
- package/types/styles/icons/index.d.ts +6 -1
- package/types/types/core.d.ts +4 -1
- package/types/types/storage.d.ts +4 -1
- package/types/types/types/ajax.d.ts +8 -1
- package/types/types/types/async.d.ts +7 -1
- package/types/types/types/context.d.ts +5 -1
- package/types/types/types/core.ts +5 -1
- package/types/types/types/create.d.ts +5 -1
- package/types/types/types/dialog.d.ts +5 -1
- package/types/types/types/events.d.ts +9 -5
- package/types/types/types/file-browser.d.ts +21 -5
- package/types/types/types/form.d.ts +5 -1
- package/types/types/types/index.d.ts +6 -2
- package/types/types/types/jodit.d.ts +5 -1
- package/types/types/types/{observe.d.ts → observer.d.ts} +7 -5
- package/types/types/types/plugin.d.ts +5 -1
- package/types/types/types/popup.d.ts +5 -1
- package/types/types/types/select.d.ts +5 -1
- package/types/types/types/source.d.ts +5 -1
- package/types/types/types/storage.ts +5 -1
- package/types/types/types/style.d.ts +5 -1
- package/types/types/types/toolbar.d.ts +5 -1
- package/types/types/types/traits.d.ts +5 -1
- package/types/types/types/types.d.ts +5 -1
- package/types/types/types/ui.d.ts +5 -1
- package/types/types/types/uploader.d.ts +4 -2
- package/types/types/types/view.d.ts +5 -1
- package/src/core/decorators/spy.ts +0 -55
- package/src/core/helpers/each.ts +0 -61
- package/src/plugins/keyboard/delete.ts +0 -768
- package/types/core/helpers/each.d.ts +0 -20
- package/types/plugins/keyboard/delete.d.ts +0 -163
package/.idea/workspace.xml
CHANGED
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
</component>
|
|
13
13
|
<component name="ChangeListManager">
|
|
14
14
|
<list default="true" id="5da7ff7f-03a8-49de-9fbb-8f8640d83b83" name="Default Changelist" comment="">
|
|
15
|
-
<change beforePath="$PROJECT_DIR$/
|
|
16
|
-
<change beforePath="$PROJECT_DIR$/src/
|
|
17
|
-
<change beforePath="$PROJECT_DIR$/
|
|
18
|
-
<change beforePath="$PROJECT_DIR$/
|
|
15
|
+
<change beforePath="$PROJECT_DIR$/src/core/ui/progress-bar/progress-bar.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/core/ui/progress-bar/progress-bar.ts" afterDir="false" />
|
|
16
|
+
<change beforePath="$PROJECT_DIR$/src/modules/image-editor/image-editor.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/modules/image-editor/image-editor.ts" afterDir="false" />
|
|
17
|
+
<change beforePath="$PROJECT_DIR$/test/tests/acceptance/clipboardTest.js" beforeDir="false" afterPath="$PROJECT_DIR$/test/tests/acceptance/clipboardTest.js" afterDir="false" />
|
|
18
|
+
<change beforePath="$PROJECT_DIR$/tsdoc.json" beforeDir="false" afterPath="$PROJECT_DIR$/tsdoc.json" afterDir="false" />
|
|
19
19
|
</list>
|
|
20
20
|
<list id="5049e1d4-15bc-4e3a-b46b-d2ce7537fc13" name="Revert "Some small fixes"" comment="Revert "Some small fixes" This reverts commit bc391ec6" />
|
|
21
21
|
<option name="SHOW_DIALOG" value="false" />
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
</component>
|
|
53
53
|
<component name="HighlightingSettingsPerFile">
|
|
54
54
|
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/toolbarTest.js" root0="FORCE_HIGHLIGHTING" />
|
|
55
|
-
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/plugins/link.js" root0="FORCE_HIGHLIGHTING" />
|
|
56
55
|
<setting file="file://$PROJECT_DIR$/src/jodit.ts" root0="FORCE_HIGHLIGHTING" />
|
|
56
|
+
<setting file="file://$PROJECT_DIR$/test/tests/acceptance/plugins/link.js" root0="FORCE_HIGHLIGHTING" />
|
|
57
57
|
</component>
|
|
58
58
|
<component name="JsFlowSettings">
|
|
59
59
|
<service-enabled>true</service-enabled>
|
|
@@ -66,6 +66,9 @@
|
|
|
66
66
|
<scroll-view-position x="0" y="0" />
|
|
67
67
|
</layout>
|
|
68
68
|
</component>
|
|
69
|
+
<component name="MarkdownSettingsMigration">
|
|
70
|
+
<option name="stateVersion" value="1" />
|
|
71
|
+
</component>
|
|
69
72
|
<component name="PackageJsonUpdateNotifier">
|
|
70
73
|
<dismissed value="$PROJECT_DIR$/package.json" />
|
|
71
74
|
</component>
|
|
@@ -87,7 +90,7 @@
|
|
|
87
90
|
<property name="SearchEverywhereHistoryKey" value="inde	FILE	file:///Users/v-chupurnov/WebstormProjects/pet/jodit/index.html index	FILE	file:///Users/v-chupurnov/WebstormProjects/pet/jodit/index.html Sele	FILE	file:///Users/v-chupurnov/WebstormProjects/jodit/src/modules/Selection.ts" />
|
|
88
91
|
<property name="TERMINAL_CUSTOM_COMMANDS_GOT_IT" value="true" />
|
|
89
92
|
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
90
|
-
<property name="add_unversioned_files" value="true /Users/v-chupurnov/WebstormProjects/pet/jodit/test.html /Users/v-chupurnov/WebstormProjects/pet/jodit/types/core/ui/button/button/button.d.ts" />
|
|
93
|
+
<property name="add_unversioned_files" value="true /Users/v-chupurnov/WebstormProjects/pet/jodit/test.html /Users/v-chupurnov/WebstormProjects/pet/jodit/types/core/ui/button/button/button.d.ts /Users/v-chupurnov/WebstormProjects/pet/jodit/src/types/observer.d.ts" />
|
|
91
94
|
<property name="editor.config.ad.shown" value="true" />
|
|
92
95
|
<property name="javascript.nodejs.core.library.configured.version" value="14.6.0" />
|
|
93
96
|
<property name="javascript.nodejs.core.library.typings.version" value="14.6.0" />
|
|
@@ -95,7 +98,7 @@
|
|
|
95
98
|
<property name="js.linters.configure.manually.selectedeslint" value="true" />
|
|
96
99
|
<property name="jsx.switch.disabled" value="true" />
|
|
97
100
|
<property name="last.edited.regexp" value="Sample Text" />
|
|
98
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR
|
|
101
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$/.github/workflows" />
|
|
99
102
|
<property name="node.js.detected.package.eslint" value="true" />
|
|
100
103
|
<property name="node.js.detected.package.jscs" value="true" />
|
|
101
104
|
<property name="node.js.detected.package.standard" value="true" />
|
|
@@ -121,25 +124,25 @@
|
|
|
121
124
|
<property name="nodejs_package_manager_path" value="npm" />
|
|
122
125
|
<property name="prettierjs.PrettierConfiguration.Package" value="$PROJECT_DIR$/node_modules/prettier" />
|
|
123
126
|
<property name="run.code.analysis.last.selected.profile" value="pProject Default" />
|
|
124
|
-
<property name="settings.editor.selected.configurable" value="
|
|
127
|
+
<property name="settings.editor.selected.configurable" value="copyright" />
|
|
125
128
|
<property name="ts.external.directory.path" value="$PROJECT_DIR$/node_modules/typescript/lib" />
|
|
126
129
|
<property name="typescript-compiler-editor-notification" value="false" />
|
|
127
130
|
<property name="vue.rearranger.settings.migration" value="true" />
|
|
128
131
|
</component>
|
|
129
132
|
<component name="RecentsManager">
|
|
130
133
|
<key name="CopyFile.RECENT_KEYS">
|
|
131
|
-
<recent name="$PROJECT_DIR
|
|
132
|
-
<recent name="$PROJECT_DIR$/src/
|
|
133
|
-
<recent name="$PROJECT_DIR$/src/
|
|
134
|
-
<recent name="$PROJECT_DIR$/src/
|
|
135
|
-
<recent name="$PROJECT_DIR$/src/
|
|
134
|
+
<recent name="$PROJECT_DIR$/.github/workflows" />
|
|
135
|
+
<recent name="$PROJECT_DIR$/src/modules/widget/tabs" />
|
|
136
|
+
<recent name="$PROJECT_DIR$/src/modules/widget/file-selector" />
|
|
137
|
+
<recent name="$PROJECT_DIR$/src/modules/widget/color-picker" />
|
|
138
|
+
<recent name="$PROJECT_DIR$/src/modules/widget" />
|
|
136
139
|
</key>
|
|
137
140
|
<key name="MoveFile.RECENT_KEYS">
|
|
138
|
-
<recent name="$PROJECT_DIR$/src/
|
|
139
|
-
<recent name="$PROJECT_DIR$/src/
|
|
140
|
-
<recent name="$PROJECT_DIR$/src/
|
|
141
|
-
<recent name="$PROJECT_DIR$/src/
|
|
142
|
-
<recent name="$PROJECT_DIR$/src/
|
|
141
|
+
<recent name="$PROJECT_DIR$/src/core/helpers/utils" />
|
|
142
|
+
<recent name="$PROJECT_DIR$/src/modules/file-browser" />
|
|
143
|
+
<recent name="$PROJECT_DIR$/src/modules/file-browser/builders" />
|
|
144
|
+
<recent name="$PROJECT_DIR$/src/modules/image-editor" />
|
|
145
|
+
<recent name="$PROJECT_DIR$/src/modules/file-browser/ui" />
|
|
143
146
|
</key>
|
|
144
147
|
</component>
|
|
145
148
|
<component name="RunManager" selected="Shell Script.build">
|
|
@@ -740,224 +743,34 @@
|
|
|
740
743
|
<workItem from="1637613757864" duration="11973000" />
|
|
741
744
|
<workItem from="1637706424442" duration="13503000" />
|
|
742
745
|
<workItem from="1637778244979" duration="138000" />
|
|
743
|
-
<workItem from="1637781146492" duration="
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
<
|
|
747
|
-
<
|
|
748
|
-
<
|
|
749
|
-
<
|
|
750
|
-
<
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
<
|
|
754
|
-
<
|
|
755
|
-
<
|
|
756
|
-
<
|
|
757
|
-
<
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
<
|
|
761
|
-
<
|
|
762
|
-
<
|
|
763
|
-
<
|
|
764
|
-
<
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
<
|
|
768
|
-
<
|
|
769
|
-
<
|
|
770
|
-
<
|
|
771
|
-
<updated>1635265019780</updated>
|
|
772
|
-
</task>
|
|
773
|
-
<task id="LOCAL-00861" summary="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728">
|
|
774
|
-
<created>1635265058570</created>
|
|
775
|
-
<option name="number" value="00861" />
|
|
776
|
-
<option name="presentableId" value="LOCAL-00861" />
|
|
777
|
-
<option name="project" value="LOCAL" />
|
|
778
|
-
<updated>1635265058570</updated>
|
|
779
|
-
</task>
|
|
780
|
-
<task id="LOCAL-00862" summary="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728">
|
|
781
|
-
<created>1635265116373</created>
|
|
782
|
-
<option name="number" value="00862" />
|
|
783
|
-
<option name="presentableId" value="LOCAL-00862" />
|
|
784
|
-
<option name="project" value="LOCAL" />
|
|
785
|
-
<updated>1635265116373</updated>
|
|
786
|
-
</task>
|
|
787
|
-
<task id="LOCAL-00863" summary="cleanHTML replaceOldTags doesn't seem to do anything #728 Issue: https://github.com/xdan/jodit/issues/728">
|
|
788
|
-
<created>1635265314052</created>
|
|
789
|
-
<option name="number" value="00863" />
|
|
790
|
-
<option name="presentableId" value="LOCAL-00863" />
|
|
791
|
-
<option name="project" value="LOCAL" />
|
|
792
|
-
<updated>1635265314052</updated>
|
|
793
|
-
</task>
|
|
794
|
-
<task id="LOCAL-00864" summary="Up">
|
|
795
|
-
<created>1635265778599</created>
|
|
796
|
-
<option name="number" value="00864" />
|
|
797
|
-
<option name="presentableId" value="LOCAL-00864" />
|
|
798
|
-
<option name="project" value="LOCAL" />
|
|
799
|
-
<updated>1635265778599</updated>
|
|
800
|
-
</task>
|
|
801
|
-
<task id="LOCAL-00865" summary="Added test for issue https://github.com/xdan/jodit/issues/522">
|
|
802
|
-
<created>1635265918713</created>
|
|
803
|
-
<option name="number" value="00865" />
|
|
804
|
-
<option name="presentableId" value="LOCAL-00865" />
|
|
805
|
-
<option name="project" value="LOCAL" />
|
|
806
|
-
<updated>1635265918713</updated>
|
|
807
|
-
</task>
|
|
808
|
-
<task id="LOCAL-00866" summary="Goodbye Travis! You were a good helper">
|
|
809
|
-
<created>1635266766439</created>
|
|
810
|
-
<option name="number" value="00866" />
|
|
811
|
-
<option name="presentableId" value="LOCAL-00866" />
|
|
812
|
-
<option name="project" value="LOCAL" />
|
|
813
|
-
<updated>1635266766439</updated>
|
|
814
|
-
</task>
|
|
815
|
-
<task id="LOCAL-00867" summary="Fixed tests in FF">
|
|
816
|
-
<created>1635267402759</created>
|
|
817
|
-
<option name="number" value="00867" />
|
|
818
|
-
<option name="presentableId" value="LOCAL-00867" />
|
|
819
|
-
<option name="project" value="LOCAL" />
|
|
820
|
-
<updated>1635267402759</updated>
|
|
821
|
-
</task>
|
|
822
|
-
<task id="LOCAL-00868" summary="Fixed tests in FF">
|
|
823
|
-
<created>1635267507492</created>
|
|
824
|
-
<option name="number" value="00868" />
|
|
825
|
-
<option name="presentableId" value="LOCAL-00868" />
|
|
826
|
-
<option name="project" value="LOCAL" />
|
|
827
|
-
<updated>1635267507492</updated>
|
|
828
|
-
</task>
|
|
829
|
-
<task id="LOCAL-00869" summary="Remove gitter">
|
|
830
|
-
<created>1635268743480</created>
|
|
831
|
-
<option name="number" value="00869" />
|
|
832
|
-
<option name="presentableId" value="LOCAL-00869" />
|
|
833
|
-
<option name="project" value="LOCAL" />
|
|
834
|
-
<updated>1635268743480</updated>
|
|
835
|
-
</task>
|
|
836
|
-
<task id="LOCAL-00870" summary="Fixed tables resizing">
|
|
837
|
-
<created>1635278972581</created>
|
|
838
|
-
<option name="number" value="00870" />
|
|
839
|
-
<option name="presentableId" value="LOCAL-00870" />
|
|
840
|
-
<option name="project" value="LOCAL" />
|
|
841
|
-
<updated>1635278972581</updated>
|
|
842
|
-
</task>
|
|
843
|
-
<task id="LOCAL-00871" summary="- Changed style resize rectangle for resize image or table - Added link `POWERED BY JODIT` in statusbar - Changed icon for resize handle in the bottom right corner - Fixed popup color for dark theme">
|
|
844
|
-
<created>1635350607682</created>
|
|
845
|
-
<option name="number" value="00871" />
|
|
846
|
-
<option name="presentableId" value="LOCAL-00871" />
|
|
847
|
-
<option name="project" value="LOCAL" />
|
|
848
|
-
<updated>1635350607682</updated>
|
|
849
|
-
</task>
|
|
850
|
-
<task id="LOCAL-00872" summary="Added test for issue: https://github.com/xdan/jodit/issues/738">
|
|
851
|
-
<created>1635350805292</created>
|
|
852
|
-
<option name="number" value="00872" />
|
|
853
|
-
<option name="presentableId" value="LOCAL-00872" />
|
|
854
|
-
<option name="project" value="LOCAL" />
|
|
855
|
-
<updated>1635350805292</updated>
|
|
856
|
-
</task>
|
|
857
|
-
<task id="LOCAL-00873" summary="Fixed unsupported fonts preview">
|
|
858
|
-
<created>1635542179550</created>
|
|
859
|
-
<option name="number" value="00873" />
|
|
860
|
-
<option name="presentableId" value="LOCAL-00873" />
|
|
861
|
-
<option name="project" value="LOCAL" />
|
|
862
|
-
<updated>1635542179550</updated>
|
|
863
|
-
</task>
|
|
864
|
-
<task id="LOCAL-00874" summary="Small facelift">
|
|
865
|
-
<created>1635542254580</created>
|
|
866
|
-
<option name="number" value="00874" />
|
|
867
|
-
<option name="presentableId" value="LOCAL-00874" />
|
|
868
|
-
<option name="project" value="LOCAL" />
|
|
869
|
-
<updated>1635542254580</updated>
|
|
870
|
-
</task>
|
|
871
|
-
<task id="LOCAL-00875" summary="Big apply style system - refactoring">
|
|
872
|
-
<created>1635553640358</created>
|
|
873
|
-
<option name="number" value="00875" />
|
|
874
|
-
<option name="presentableId" value="LOCAL-00875" />
|
|
875
|
-
<option name="project" value="LOCAL" />
|
|
876
|
-
<updated>1635553640358</updated>
|
|
877
|
-
</task>
|
|
878
|
-
<task id="LOCAL-00876" summary="Fixed dots supplementary buttons shown incorrectly #692 Issue: https://github.com/xdan/jodit/issues/692">
|
|
879
|
-
<created>1635870623738</created>
|
|
880
|
-
<option name="number" value="00876" />
|
|
881
|
-
<option name="presentableId" value="LOCAL-00876" />
|
|
882
|
-
<option name="project" value="LOCAL" />
|
|
883
|
-
<updated>1635870623738</updated>
|
|
884
|
-
</task>
|
|
885
|
-
<task id="LOCAL-00877" summary="Fixed dots supplementary buttons shown incorrectly #692 Issue: https://github.com/xdan/jodit/issues/692">
|
|
886
|
-
<created>1635870712545</created>
|
|
887
|
-
<option name="number" value="00877" />
|
|
888
|
-
<option name="presentableId" value="LOCAL-00877" />
|
|
889
|
-
<option name="project" value="LOCAL" />
|
|
890
|
-
<updated>1635870712545</updated>
|
|
891
|
-
</task>
|
|
892
|
-
<task id="LOCAL-00878" summary="Change html tags when list style on/off #738 Issue: https://github.com/xdan/jodit/issues/738 order list/unorder list in source view #732 Issue: https://github.com/xdan/jodit/issues/732">
|
|
893
|
-
<created>1635870787537</created>
|
|
894
|
-
<option name="number" value="00878" />
|
|
895
|
-
<option name="presentableId" value="LOCAL-00878" />
|
|
896
|
-
<option name="project" value="LOCAL" />
|
|
897
|
-
<updated>1635870787537</updated>
|
|
898
|
-
</task>
|
|
899
|
-
<task id="LOCAL-00879" summary="Change html tags when list style on/off #738 Issue: https://github.com/xdan/jodit/issues/738 order list/unorder list in source view #732 Issue: https://github.com/xdan/jodit/issues/732">
|
|
900
|
-
<created>1635870816925</created>
|
|
901
|
-
<option name="number" value="00879" />
|
|
902
|
-
<option name="presentableId" value="LOCAL-00879" />
|
|
903
|
-
<option name="project" value="LOCAL" />
|
|
904
|
-
<updated>1635870816925</updated>
|
|
905
|
-
</task>
|
|
906
|
-
<task id="LOCAL-00880" summary="Fix condition for Jodit power">
|
|
907
|
-
<created>1635870854517</created>
|
|
908
|
-
<option name="number" value="00880" />
|
|
909
|
-
<option name="presentableId" value="LOCAL-00880" />
|
|
910
|
-
<option name="project" value="LOCAL" />
|
|
911
|
-
<updated>1635870854517</updated>
|
|
912
|
-
</task>
|
|
913
|
-
<task id="LOCAL-00881" summary="Fix test for new resizer style">
|
|
914
|
-
<created>1635870874106</created>
|
|
915
|
-
<option name="number" value="00881" />
|
|
916
|
-
<option name="presentableId" value="LOCAL-00881" />
|
|
917
|
-
<option name="project" value="LOCAL" />
|
|
918
|
-
<updated>1635870874106</updated>
|
|
919
|
-
</task>
|
|
920
|
-
<task id="LOCAL-00882" summary="Fix lints">
|
|
921
|
-
<created>1635870925572</created>
|
|
922
|
-
<option name="number" value="00882" />
|
|
923
|
-
<option name="presentableId" value="LOCAL-00882" />
|
|
924
|
-
<option name="project" value="LOCAL" />
|
|
925
|
-
<updated>1635870925572</updated>
|
|
926
|
-
</task>
|
|
927
|
-
<task id="LOCAL-00883" summary="Jodit adds unexpected <span> tag when user lefts cursor inside <script> tag #687 Issue: https://github.com/xdan/jodit/issues/687">
|
|
928
|
-
<created>1635872495161</created>
|
|
929
|
-
<option name="number" value="00883" />
|
|
930
|
-
<option name="presentableId" value="LOCAL-00883" />
|
|
931
|
-
<option name="project" value="LOCAL" />
|
|
932
|
-
<updated>1635872495161</updated>
|
|
933
|
-
</task>
|
|
934
|
-
<task id="LOCAL-00884" summary="Jodit adds unexpected <span> tag when user lefts cursor inside <script> tag #687 Issue: https://github.com/xdan/jodit/issues/687">
|
|
935
|
-
<created>1635872918386</created>
|
|
936
|
-
<option name="number" value="00884" />
|
|
937
|
-
<option name="presentableId" value="LOCAL-00884" />
|
|
938
|
-
<option name="project" value="LOCAL" />
|
|
939
|
-
<updated>1635872918386</updated>
|
|
940
|
-
</task>
|
|
941
|
-
<task id="LOCAL-00885" summary="Allow use prototype as component name">
|
|
942
|
-
<created>1636657049441</created>
|
|
943
|
-
<option name="number" value="00885" />
|
|
944
|
-
<option name="presentableId" value="LOCAL-00885" />
|
|
945
|
-
<option name="project" value="LOCAL" />
|
|
946
|
-
<updated>1636657049441</updated>
|
|
947
|
-
</task>
|
|
948
|
-
<task id="LOCAL-00886" summary="Allow use prototype as component name">
|
|
949
|
-
<created>1636657219708</created>
|
|
950
|
-
<option name="number" value="00886" />
|
|
951
|
-
<option name="presentableId" value="LOCAL-00886" />
|
|
952
|
-
<option name="project" value="LOCAL" />
|
|
953
|
-
<updated>1636657219708</updated>
|
|
954
|
-
</task>
|
|
955
|
-
<task id="LOCAL-00887" summary="Spacer in Button Toolbar Issue: https://github.com/xdan/jodit/issues/713">
|
|
956
|
-
<created>1636657301732</created>
|
|
957
|
-
<option name="number" value="00887" />
|
|
958
|
-
<option name="presentableId" value="LOCAL-00887" />
|
|
959
|
-
<option name="project" value="LOCAL" />
|
|
960
|
-
<updated>1636657301732</updated>
|
|
746
|
+
<workItem from="1637781146492" duration="3100000" />
|
|
747
|
+
<workItem from="1638129676572" duration="342000" />
|
|
748
|
+
<workItem from="1638196445558" duration="991000" />
|
|
749
|
+
<workItem from="1638435714457" duration="947000" />
|
|
750
|
+
<workItem from="1638438421755" duration="2870000" />
|
|
751
|
+
<workItem from="1638474546947" duration="598000" />
|
|
752
|
+
<workItem from="1638478664583" duration="2065000" />
|
|
753
|
+
<workItem from="1638745527539" duration="683000" />
|
|
754
|
+
<workItem from="1638782582242" duration="2836000" />
|
|
755
|
+
<workItem from="1638785436431" duration="4634000" />
|
|
756
|
+
<workItem from="1638812171565" duration="15697000" />
|
|
757
|
+
<workItem from="1638879074260" duration="737000" />
|
|
758
|
+
<workItem from="1638907228732" duration="10877000" />
|
|
759
|
+
<workItem from="1639080352090" duration="9388000" />
|
|
760
|
+
<workItem from="1639130152242" duration="3352000" />
|
|
761
|
+
<workItem from="1639391497250" duration="2175000" />
|
|
762
|
+
<workItem from="1639395109015" duration="7365000" />
|
|
763
|
+
<workItem from="1639410004380" duration="675000" />
|
|
764
|
+
<workItem from="1639431098386" duration="5388000" />
|
|
765
|
+
<workItem from="1639499934020" duration="722000" />
|
|
766
|
+
<workItem from="1639562828122" duration="712000" />
|
|
767
|
+
<workItem from="1639582946793" duration="1797000" />
|
|
768
|
+
<workItem from="1639741402413" duration="1316000" />
|
|
769
|
+
<workItem from="1640276654917" duration="13114000" />
|
|
770
|
+
<workItem from="1640638481739" duration="2174000" />
|
|
771
|
+
<workItem from="1640699751808" duration="46000" />
|
|
772
|
+
<workItem from="1640699886093" duration="20891000" />
|
|
773
|
+
<workItem from="1641385651473" duration="8402000" />
|
|
961
774
|
</task>
|
|
962
775
|
<task id="LOCAL-00888" summary="Changed IStorage signature">
|
|
963
776
|
<created>1636657342609</created>
|
|
@@ -1085,7 +898,224 @@
|
|
|
1085
898
|
<option name="project" value="LOCAL" />
|
|
1086
899
|
<updated>1637778269041</updated>
|
|
1087
900
|
</task>
|
|
1088
|
-
<
|
|
901
|
+
<task id="LOCAL-00906" summary="Added `delete.hotkeys.deleteSentence` and `delete.hotkeys.backspaceSentence` options">
|
|
902
|
+
<created>1637783013839</created>
|
|
903
|
+
<option name="number" value="00906" />
|
|
904
|
+
<option name="presentableId" value="LOCAL-00906" />
|
|
905
|
+
<option name="project" value="LOCAL" />
|
|
906
|
+
<updated>1637783013839</updated>
|
|
907
|
+
</task>
|
|
908
|
+
<task id="LOCAL-00907" summary="Backspace refactoring">
|
|
909
|
+
<created>1638815569175</created>
|
|
910
|
+
<option name="number" value="00907" />
|
|
911
|
+
<option name="presentableId" value="LOCAL-00907" />
|
|
912
|
+
<option name="project" value="LOCAL" />
|
|
913
|
+
<updated>1638815569175</updated>
|
|
914
|
+
</task>
|
|
915
|
+
<task id="LOCAL-00908" summary="Backspace refactoring">
|
|
916
|
+
<created>1638818024843</created>
|
|
917
|
+
<option name="number" value="00908" />
|
|
918
|
+
<option name="presentableId" value="LOCAL-00908" />
|
|
919
|
+
<option name="project" value="LOCAL" />
|
|
920
|
+
<updated>1638818024843</updated>
|
|
921
|
+
</task>
|
|
922
|
+
<task id="LOCAL-00909" summary="Fixed es2018 build don't works properly starting from jodit 3.9.4 #758 Issue: https://github.com/xdan/jodit/issues/758">
|
|
923
|
+
<created>1638818065422</created>
|
|
924
|
+
<option name="number" value="00909" />
|
|
925
|
+
<option name="presentableId" value="LOCAL-00909" />
|
|
926
|
+
<option name="project" value="LOCAL" />
|
|
927
|
+
<updated>1638818065423</updated>
|
|
928
|
+
</task>
|
|
929
|
+
<task id="LOCAL-00910" summary="Fixed shadow dom support only partly fixed #746 Issue: https://github.com/xdan/jodit/issues/746">
|
|
930
|
+
<created>1638823963689</created>
|
|
931
|
+
<option name="number" value="00910" />
|
|
932
|
+
<option name="presentableId" value="LOCAL-00910" />
|
|
933
|
+
<option name="project" value="LOCAL" />
|
|
934
|
+
<updated>1638823963689</updated>
|
|
935
|
+
</task>
|
|
936
|
+
<task id="LOCAL-00911" summary="Open localhost on `npm start`">
|
|
937
|
+
<created>1638824353578</created>
|
|
938
|
+
<option name="number" value="00911" />
|
|
939
|
+
<option name="presentableId" value="LOCAL-00911" />
|
|
940
|
+
<option name="project" value="LOCAL" />
|
|
941
|
+
<updated>1638824353578</updated>
|
|
942
|
+
</task>
|
|
943
|
+
<task id="LOCAL-00912" summary="Open localhost on `npm start`">
|
|
944
|
+
<created>1638824426725</created>
|
|
945
|
+
<option name="number" value="00912" />
|
|
946
|
+
<option name="presentableId" value="LOCAL-00912" />
|
|
947
|
+
<option name="project" value="LOCAL" />
|
|
948
|
+
<updated>1638824426725</updated>
|
|
949
|
+
</task>
|
|
950
|
+
<task id="LOCAL-00913" summary="- Added `Async.prototype.delay` method - Added `Ajax.options.responseType` option `XMLHttpRequestResponseType` - Added `Response.prototype.blob()` method">
|
|
951
|
+
<created>1638824726203</created>
|
|
952
|
+
<option name="number" value="00913" />
|
|
953
|
+
<option name="presentableId" value="LOCAL-00913" />
|
|
954
|
+
<option name="project" value="LOCAL" />
|
|
955
|
+
<updated>1638824726203</updated>
|
|
956
|
+
</task>
|
|
957
|
+
<task id="LOCAL-00914" summary="Added documentation for Async module">
|
|
958
|
+
<created>1639082248454</created>
|
|
959
|
+
<option name="number" value="00914" />
|
|
960
|
+
<option name="presentableId" value="LOCAL-00914" />
|
|
961
|
+
<option name="project" value="LOCAL" />
|
|
962
|
+
<updated>1639082248454</updated>
|
|
963
|
+
</task>
|
|
964
|
+
<task id="LOCAL-00915" summary="Added docs for several modules">
|
|
965
|
+
<created>1639410047085</created>
|
|
966
|
+
<option name="number" value="00915" />
|
|
967
|
+
<option name="presentableId" value="LOCAL-00915" />
|
|
968
|
+
<option name="project" value="LOCAL" />
|
|
969
|
+
<updated>1639410047085</updated>
|
|
970
|
+
</task>
|
|
971
|
+
<task id="LOCAL-00916" summary="Added docs for several modules">
|
|
972
|
+
<created>1640299389525</created>
|
|
973
|
+
<option name="number" value="00916" />
|
|
974
|
+
<option name="presentableId" value="LOCAL-00916" />
|
|
975
|
+
<option name="project" value="LOCAL" />
|
|
976
|
+
<updated>1640299389525</updated>
|
|
977
|
+
</task>
|
|
978
|
+
<task id="LOCAL-00917" summary="Added docs for several modules">
|
|
979
|
+
<created>1640700320442</created>
|
|
980
|
+
<option name="number" value="00917" />
|
|
981
|
+
<option name="presentableId" value="LOCAL-00917" />
|
|
982
|
+
<option name="project" value="LOCAL" />
|
|
983
|
+
<updated>1640700320442</updated>
|
|
984
|
+
</task>
|
|
985
|
+
<task id="LOCAL-00918" summary="Added docs for several modules">
|
|
986
|
+
<created>1640700332393</created>
|
|
987
|
+
<option name="number" value="00918" />
|
|
988
|
+
<option name="presentableId" value="LOCAL-00918" />
|
|
989
|
+
<option name="project" value="LOCAL" />
|
|
990
|
+
<updated>1640700332393</updated>
|
|
991
|
+
</task>
|
|
992
|
+
<task id="LOCAL-00919" summary="Added docs for several modules">
|
|
993
|
+
<created>1640713599628</created>
|
|
994
|
+
<option name="number" value="00919" />
|
|
995
|
+
<option name="presentableId" value="LOCAL-00919" />
|
|
996
|
+
<option name="project" value="LOCAL" />
|
|
997
|
+
<updated>1640713599628</updated>
|
|
998
|
+
</task>
|
|
999
|
+
<task id="LOCAL-00920" summary="Rename observe to observer">
|
|
1000
|
+
<created>1640918335296</created>
|
|
1001
|
+
<option name="number" value="00920" />
|
|
1002
|
+
<option name="presentableId" value="LOCAL-00920" />
|
|
1003
|
+
<option name="project" value="LOCAL" />
|
|
1004
|
+
<updated>1640918335296</updated>
|
|
1005
|
+
</task>
|
|
1006
|
+
<task id="LOCAL-00921" summary="Fix docs">
|
|
1007
|
+
<created>1640918580178</created>
|
|
1008
|
+
<option name="number" value="00921" />
|
|
1009
|
+
<option name="presentableId" value="LOCAL-00921" />
|
|
1010
|
+
<option name="project" value="LOCAL" />
|
|
1011
|
+
<updated>1640918580178</updated>
|
|
1012
|
+
</task>
|
|
1013
|
+
<task id="LOCAL-00922" summary="Small focus refactoring">
|
|
1014
|
+
<created>1641386438950</created>
|
|
1015
|
+
<option name="number" value="00922" />
|
|
1016
|
+
<option name="presentableId" value="LOCAL-00922" />
|
|
1017
|
+
<option name="project" value="LOCAL" />
|
|
1018
|
+
<updated>1641386438950</updated>
|
|
1019
|
+
</task>
|
|
1020
|
+
<task id="LOCAL-00923" summary="Fixed tests">
|
|
1021
|
+
<created>1641388305085</created>
|
|
1022
|
+
<option name="number" value="00923" />
|
|
1023
|
+
<option name="presentableId" value="LOCAL-00923" />
|
|
1024
|
+
<option name="project" value="LOCAL" />
|
|
1025
|
+
<updated>1641388305085</updated>
|
|
1026
|
+
</task>
|
|
1027
|
+
<task id="LOCAL-00924" summary="Added documentation for `plugin/source` module">
|
|
1028
|
+
<created>1641389895576</created>
|
|
1029
|
+
<option name="number" value="00924" />
|
|
1030
|
+
<option name="presentableId" value="LOCAL-00924" />
|
|
1031
|
+
<option name="project" value="LOCAL" />
|
|
1032
|
+
<updated>1641389895576</updated>
|
|
1033
|
+
</task>
|
|
1034
|
+
<task id="LOCAL-00925" summary="Fixed documentation">
|
|
1035
|
+
<created>1641390475090</created>
|
|
1036
|
+
<option name="number" value="00925" />
|
|
1037
|
+
<option name="presentableId" value="LOCAL-00925" />
|
|
1038
|
+
<option name="project" value="LOCAL" />
|
|
1039
|
+
<updated>1641390475090</updated>
|
|
1040
|
+
</task>
|
|
1041
|
+
<task id="LOCAL-00926" summary="Added build documentation action">
|
|
1042
|
+
<created>1641391008361</created>
|
|
1043
|
+
<option name="number" value="00926" />
|
|
1044
|
+
<option name="presentableId" value="LOCAL-00926" />
|
|
1045
|
+
<option name="project" value="LOCAL" />
|
|
1046
|
+
<updated>1641391008361</updated>
|
|
1047
|
+
</task>
|
|
1048
|
+
<task id="LOCAL-00927" summary="Added build documentation action">
|
|
1049
|
+
<created>1641391135760</created>
|
|
1050
|
+
<option name="number" value="00927" />
|
|
1051
|
+
<option name="presentableId" value="LOCAL-00927" />
|
|
1052
|
+
<option name="project" value="LOCAL" />
|
|
1053
|
+
<updated>1641391135760</updated>
|
|
1054
|
+
</task>
|
|
1055
|
+
<task id="LOCAL-00928" summary="Added build documentation action">
|
|
1056
|
+
<created>1641391192111</created>
|
|
1057
|
+
<option name="number" value="00928" />
|
|
1058
|
+
<option name="presentableId" value="LOCAL-00928" />
|
|
1059
|
+
<option name="project" value="LOCAL" />
|
|
1060
|
+
<updated>1641391192111</updated>
|
|
1061
|
+
</task>
|
|
1062
|
+
<task id="LOCAL-00929" summary="Added build documentation action">
|
|
1063
|
+
<created>1641391343825</created>
|
|
1064
|
+
<option name="number" value="00929" />
|
|
1065
|
+
<option name="presentableId" value="LOCAL-00929" />
|
|
1066
|
+
<option name="project" value="LOCAL" />
|
|
1067
|
+
<updated>1641391343825</updated>
|
|
1068
|
+
</task>
|
|
1069
|
+
<task id="LOCAL-00930" summary="Fixed doc hook">
|
|
1070
|
+
<created>1641391954015</created>
|
|
1071
|
+
<option name="number" value="00930" />
|
|
1072
|
+
<option name="presentableId" value="LOCAL-00930" />
|
|
1073
|
+
<option name="project" value="LOCAL" />
|
|
1074
|
+
<updated>1641391954015</updated>
|
|
1075
|
+
</task>
|
|
1076
|
+
<task id="LOCAL-00931" summary="Fixed docs link">
|
|
1077
|
+
<created>1641392078670</created>
|
|
1078
|
+
<option name="number" value="00931" />
|
|
1079
|
+
<option name="presentableId" value="LOCAL-00931" />
|
|
1080
|
+
<option name="project" value="LOCAL" />
|
|
1081
|
+
<updated>1641392078670</updated>
|
|
1082
|
+
</task>
|
|
1083
|
+
<task id="LOCAL-00932" summary="Added Jodit documentation">
|
|
1084
|
+
<created>1641392793863</created>
|
|
1085
|
+
<option name="number" value="00932" />
|
|
1086
|
+
<option name="presentableId" value="LOCAL-00932" />
|
|
1087
|
+
<option name="project" value="LOCAL" />
|
|
1088
|
+
<updated>1641392793863</updated>
|
|
1089
|
+
</task>
|
|
1090
|
+
<task id="LOCAL-00933" summary="Added Jodit documentation">
|
|
1091
|
+
<created>1641392964595</created>
|
|
1092
|
+
<option name="number" value="00933" />
|
|
1093
|
+
<option name="presentableId" value="LOCAL-00933" />
|
|
1094
|
+
<option name="project" value="LOCAL" />
|
|
1095
|
+
<updated>1641392964595</updated>
|
|
1096
|
+
</task>
|
|
1097
|
+
<task id="LOCAL-00934" summary="Change year in copyright">
|
|
1098
|
+
<created>1641393559836</created>
|
|
1099
|
+
<option name="number" value="00934" />
|
|
1100
|
+
<option name="presentableId" value="LOCAL-00934" />
|
|
1101
|
+
<option name="project" value="LOCAL" />
|
|
1102
|
+
<updated>1641393559836</updated>
|
|
1103
|
+
</task>
|
|
1104
|
+
<task id="LOCAL-00935" summary="Fixed action name">
|
|
1105
|
+
<created>1641393604640</created>
|
|
1106
|
+
<option name="number" value="00935" />
|
|
1107
|
+
<option name="presentableId" value="LOCAL-00935" />
|
|
1108
|
+
<option name="project" value="LOCAL" />
|
|
1109
|
+
<updated>1641393604640</updated>
|
|
1110
|
+
</task>
|
|
1111
|
+
<task id="LOCAL-00936" summary="Added example in doc">
|
|
1112
|
+
<created>1641393891950</created>
|
|
1113
|
+
<option name="number" value="00936" />
|
|
1114
|
+
<option name="presentableId" value="LOCAL-00936" />
|
|
1115
|
+
<option name="project" value="LOCAL" />
|
|
1116
|
+
<updated>1641393891950</updated>
|
|
1117
|
+
</task>
|
|
1118
|
+
<option name="localTasksCounter" value="937" />
|
|
1089
1119
|
<servers />
|
|
1090
1120
|
</component>
|
|
1091
1121
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -1222,43 +1252,42 @@
|
|
|
1222
1252
|
</entry>
|
|
1223
1253
|
</map>
|
|
1224
1254
|
</option>
|
|
1225
|
-
<option name="oldMeFiltersMigrated" value="true" />
|
|
1226
1255
|
</component>
|
|
1227
1256
|
<component name="VcsManagerConfiguration">
|
|
1228
1257
|
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
1229
|
-
<MESSAGE value="Added test for issue: https://github.com/xdan/jodit/issues/738" />
|
|
1230
|
-
<MESSAGE value="Fixed unsupported fonts preview" />
|
|
1231
|
-
<MESSAGE value="Small facelift" />
|
|
1232
|
-
<MESSAGE value="Big apply style system - refactoring" />
|
|
1233
|
-
<MESSAGE value="Change html tags when list style on/off #738 Issue: https://github.com/xdan/jodit/issues/738 order list/unorder list in source view #732 Issue: https://github.com/xdan/jodit/issues/732" />
|
|
1234
|
-
<MESSAGE value="Fix condition for Jodit power" />
|
|
1235
|
-
<MESSAGE value="Fix test for new resizer style" />
|
|
1236
|
-
<MESSAGE value="Fix lints" />
|
|
1237
|
-
<MESSAGE value="Jodit adds unexpected <span> tag when user lefts cursor inside <script> tag #687 Issue: https://github.com/xdan/jodit/issues/687" />
|
|
1238
|
-
<MESSAGE value="Fixed dots supplementary buttons shown incorrectly #692 Issue: https://github.com/xdan/jodit/issues/692" />
|
|
1239
|
-
<MESSAGE value="Allow use prototype as component name" />
|
|
1240
|
-
<MESSAGE value="Spacer in Button Toolbar Issue: https://github.com/xdan/jodit/issues/713" />
|
|
1241
|
-
<MESSAGE value="Changed IStorage signature" />
|
|
1242
|
-
<MESSAGE value="Remember last opened folder with FileBrowser #675 Issue: https://github.com/xdan/jodit/issues/675" />
|
|
1243
|
-
<MESSAGE value="Feature request: Open the inline toolbar without having to highlight text. #600 Inline: https://github.com/xdan/jodit/issues/600" />
|
|
1244
|
-
<MESSAGE value="Added boolean in build system" />
|
|
1245
|
-
<MESSAGE value="Changed status to varian name" />
|
|
1246
|
-
<MESSAGE value="Added `loadNextStyle` helper" />
|
|
1247
|
-
<MESSAGE value="Reformat" />
|
|
1248
|
-
<MESSAGE value="Fixed input change value bug" />
|
|
1249
|
-
<MESSAGE value="Fixed ui inherits. Added preventing closing in dialog system" />
|
|
1250
1258
|
<MESSAGE value="Added command `preview`" />
|
|
1251
1259
|
<MESSAGE value="Added source information for `afterGetValueFromEditor` event" />
|
|
1252
1260
|
<MESSAGE value="Fixed source plugin" />
|
|
1253
1261
|
<MESSAGE value="Added switch mod in checkbox" />
|
|
1254
|
-
<
|
|
1262
|
+
<MESSAGE value="Added `delete.hotkeys.deleteSentence` and `delete.hotkeys.backspaceSentence` options" />
|
|
1263
|
+
<MESSAGE value="Backspace refactoring" />
|
|
1264
|
+
<MESSAGE value="Fixed shadow dom support only partly fixed #746 Issue: https://github.com/xdan/jodit/issues/746" />
|
|
1265
|
+
<MESSAGE value="Fixed es2018 build don't works properly starting from jodit 3.9.4 #758 Issue: https://github.com/xdan/jodit/issues/758" />
|
|
1266
|
+
<MESSAGE value="Open localhost on `npm start`" />
|
|
1267
|
+
<MESSAGE value="- Added `Async.prototype.delay` method - Added `Ajax.options.responseType` option `XMLHttpRequestResponseType` - Added `Response.prototype.blob()` method" />
|
|
1268
|
+
<MESSAGE value="Added documentation for Async module" />
|
|
1269
|
+
<MESSAGE value="Added docs for several modules" />
|
|
1270
|
+
<MESSAGE value="Rename observe to observer" />
|
|
1271
|
+
<MESSAGE value="Fix docs" />
|
|
1272
|
+
<MESSAGE value="Small focus refactoring" />
|
|
1273
|
+
<MESSAGE value="Fixed tests" />
|
|
1274
|
+
<MESSAGE value="Added documentation for `plugin/source` module" />
|
|
1275
|
+
<MESSAGE value="Fixed documentation" />
|
|
1276
|
+
<MESSAGE value="Added build documentation action" />
|
|
1277
|
+
<MESSAGE value="Fixed doc hook" />
|
|
1278
|
+
<MESSAGE value="Fixed docs link" />
|
|
1279
|
+
<MESSAGE value="Added Jodit documentation" />
|
|
1280
|
+
<MESSAGE value="Change year in copyright" />
|
|
1281
|
+
<MESSAGE value="Fixed action name" />
|
|
1282
|
+
<MESSAGE value="Added example in doc" />
|
|
1283
|
+
<option name="LAST_COMMIT_MESSAGE" value="Added example in doc" />
|
|
1255
1284
|
</component>
|
|
1256
1285
|
<component name="XDebuggerManager">
|
|
1257
1286
|
<breakpoint-manager>
|
|
1258
1287
|
<breakpoints>
|
|
1259
1288
|
<line-breakpoint enabled="true" type="javascript">
|
|
1260
1289
|
<url>file://$PROJECT_DIR$/src/types/uploader.d.ts</url>
|
|
1261
|
-
<line>
|
|
1290
|
+
<line>14</line>
|
|
1262
1291
|
<option name="timeStamp" value="9" />
|
|
1263
1292
|
</line-breakpoint>
|
|
1264
1293
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1278,7 +1307,7 @@
|
|
|
1278
1307
|
</line-breakpoint>
|
|
1279
1308
|
<line-breakpoint enabled="true" type="javascript">
|
|
1280
1309
|
<url>file://$PROJECT_DIR$/src/modules/widget/index.ts</url>
|
|
1281
|
-
<line>
|
|
1310
|
+
<line>15</line>
|
|
1282
1311
|
<option name="timeStamp" value="32" />
|
|
1283
1312
|
</line-breakpoint>
|
|
1284
1313
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1288,32 +1317,32 @@
|
|
|
1288
1317
|
</line-breakpoint>
|
|
1289
1318
|
<line-breakpoint enabled="true" type="javascript">
|
|
1290
1319
|
<url>file://$PROJECT_DIR$/src/modules/image-editor/templates/form.ts</url>
|
|
1291
|
-
<line>
|
|
1320
|
+
<line>69</line>
|
|
1292
1321
|
<option name="timeStamp" value="37" />
|
|
1293
1322
|
</line-breakpoint>
|
|
1294
1323
|
<line-breakpoint enabled="true" type="javascript">
|
|
1295
1324
|
<url>file://$PROJECT_DIR$/src/core/helpers/string/stringify.ts</url>
|
|
1296
|
-
<line>
|
|
1325
|
+
<line>21</line>
|
|
1297
1326
|
<option name="timeStamp" value="42" />
|
|
1298
1327
|
</line-breakpoint>
|
|
1299
1328
|
<line-breakpoint enabled="true" type="javascript">
|
|
1300
1329
|
<url>file://$PROJECT_DIR$/src/plugins/resizer/resizer.ts</url>
|
|
1301
|
-
<line>
|
|
1330
|
+
<line>389</line>
|
|
1302
1331
|
<option name="timeStamp" value="43" />
|
|
1303
1332
|
</line-breakpoint>
|
|
1304
1333
|
<line-breakpoint enabled="true" type="javascript">
|
|
1305
1334
|
<url>file://$PROJECT_DIR$/node_modules/postcss/lib/processor.js</url>
|
|
1306
|
-
<line>
|
|
1335
|
+
<line>53</line>
|
|
1307
1336
|
<option name="timeStamp" value="48" />
|
|
1308
1337
|
</line-breakpoint>
|
|
1309
1338
|
<line-breakpoint enabled="true" type="javascript">
|
|
1310
|
-
<url>file://$PROJECT_DIR$/src/plugins/color.ts</url>
|
|
1311
|
-
<line>
|
|
1339
|
+
<url>file://$PROJECT_DIR$/src/plugins/color/color.ts</url>
|
|
1340
|
+
<line>117</line>
|
|
1312
1341
|
<option name="timeStamp" value="50" />
|
|
1313
1342
|
</line-breakpoint>
|
|
1314
1343
|
<line-breakpoint enabled="true" type="javascript">
|
|
1315
1344
|
<url>file://$PROJECT_DIR$/src/plugins/class-span/class-span.ts</url>
|
|
1316
|
-
<line>
|
|
1345
|
+
<line>31</line>
|
|
1317
1346
|
<option name="timeStamp" value="51" />
|
|
1318
1347
|
</line-breakpoint>
|
|
1319
1348
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1321,6 +1350,11 @@
|
|
|
1321
1350
|
<line>60</line>
|
|
1322
1351
|
<option name="timeStamp" value="52" />
|
|
1323
1352
|
</line-breakpoint>
|
|
1353
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
1354
|
+
<url>file://$PROJECT_DIR$/src/plugins/keyboard/backspace/cases/check-remove-char.ts</url>
|
|
1355
|
+
<line>183</line>
|
|
1356
|
+
<option name="timeStamp" value="53" />
|
|
1357
|
+
</line-breakpoint>
|
|
1324
1358
|
</breakpoints>
|
|
1325
1359
|
</breakpoint-manager>
|
|
1326
1360
|
</component>
|