jodit 3.12.3 → 3.13.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/.idea/stylesheetLinters/stylelint.xml +6 -0
- package/.idea/workspace.xml +306 -288
- package/CHANGELOG.MD +82 -10
- package/README.md +107 -78
- package/build/jodit.css +112 -70
- package/build/jodit.es2018.css +107 -64
- package/build/jodit.es2018.en.css +107 -64
- package/build/jodit.es2018.en.js +1065 -892
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +1101 -928
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +4886 -2306
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/index.html +1 -0
- package/package.json +35 -35
- package/src/config.ts +18 -0
- package/src/core/async/async.ts +2 -2
- package/src/core/component/README.md +2 -2
- package/src/core/component/component.ts +16 -6
- package/src/core/component/view-component.ts +1 -1
- package/src/core/constants.ts +45 -1
- package/src/core/create/create.ts +4 -4
- package/src/core/decorators/cache/cache.ts +2 -2
- package/src/core/decorators/component/component.ts +1 -1
- package/src/core/decorators/debounce/debounce.ts +4 -4
- package/src/core/decorators/hook/hook.ts +4 -4
- package/src/core/decorators/idle/idle.ts +3 -3
- package/src/core/decorators/persistent/persistent.ts +3 -3
- package/src/core/decorators/wait/wait.ts +3 -3
- package/src/core/decorators/watch/watch.ts +48 -45
- package/src/core/dom/README.md +2 -0
- package/src/core/dom/dom.ts +5 -5
- package/src/core/event-emitter/event-emitter.ts +5 -5
- package/src/core/event-emitter/index.ts +1 -1
- package/src/core/event-emitter/observable.ts +192 -0
- package/src/core/event-emitter/store.ts +1 -1
- package/src/core/global.ts +1 -1
- package/src/core/helpers/README.md +31 -1
- package/src/core/helpers/checker/is-equal.ts +1 -1
- package/src/core/helpers/checker/is-imp-interface.ts +2 -2
- package/src/core/helpers/checker/is-jodit-object.ts +1 -1
- package/src/core/helpers/checker/is-plain-object.ts +1 -1
- package/src/core/helpers/html/apply-styles.ts +2 -2
- package/src/core/helpers/html/clean-from-word.ts +3 -3
- package/src/core/helpers/html/nl2br.ts +1 -1
- package/src/core/helpers/html/strip-tags.ts +5 -5
- package/src/core/helpers/normalize/normalize-key-aliases.ts +3 -3
- package/src/core/helpers/normalize/normalize-node.ts +2 -2
- package/src/core/helpers/size/get-scroll-parent.ts +3 -3
- 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.ts +1 -1
- package/src/core/helpers/string/i18n.ts +10 -6
- package/src/core/helpers/string/stringify.ts +1 -1
- package/src/core/helpers/string/trim.ts +1 -1
- package/src/core/helpers/utils/append-script.ts +1 -1
- package/src/core/helpers/utils/assert.ts +25 -0
- package/src/core/helpers/utils/build-query.ts +1 -1
- package/src/core/helpers/utils/config-proto.ts +2 -2
- package/src/core/helpers/utils/css.ts +1 -1
- package/src/core/helpers/utils/data-bind.ts +2 -2
- 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/index.ts +1 -0
- package/src/core/helpers/utils/parse-query.ts +1 -1
- package/src/core/helpers/utils/selector.ts +8 -9
- 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/plugin/README.md +13 -0
- package/src/core/plugin/plugin-system.ts +58 -17
- package/src/core/plugin/plugin.ts +3 -3
- package/src/core/request/ajax.ts +3 -3
- package/src/core/request/config.ts +3 -3
- package/src/core/request/response.ts +1 -1
- package/src/core/selection/select.ts +6 -6
- package/src/core/selection/style/api/element-has-same-style.ts +3 -3
- package/src/core/selection/style/api/extract.ts +3 -3
- package/src/core/selection/style/api/finite-state-machine.ts +1 -1
- package/src/core/selection/style/api/get-suit-child.ts +2 -2
- package/src/core/selection/style/api/get-suit-parent.ts +2 -2
- package/src/core/selection/style/api/is-inside-invisible-element.ts +1 -1
- package/src/core/selection/style/api/is-normal-node.ts +2 -2
- package/src/core/selection/style/api/is-suit-element.ts +3 -3
- package/src/core/selection/style/api/toggle/toggle-css.ts +6 -6
- package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +2 -2
- package/src/core/selection/style/api/toggle-commit-styles.ts +1 -1
- package/src/core/selection/style/api/unwrap-children.ts +3 -3
- package/src/core/selection/style/api/wrap-and-commit-style.ts +3 -3
- package/src/core/selection/style/api/wrap-ordered-list.ts +2 -2
- package/src/core/selection/style/api/wrap-unwrapped-text.ts +2 -2
- package/src/core/selection/style/apply-style.ts +3 -3
- package/src/core/selection/style/commit-style.ts +2 -2
- package/src/core/storage/engines/local-storage-provider.ts +1 -5
- package/src/core/storage/engines/memory-storage-provider.ts +1 -1
- package/src/core/storage/storage.ts +1 -1
- package/src/core/traits/elms.ts +6 -7
- package/src/core/traits/mods.ts +11 -14
- package/src/core/ui/button/button/button.ts +8 -8
- package/src/core/ui/button/group/group.ts +6 -3
- package/src/core/ui/element.ts +12 -12
- package/src/core/ui/form/block/block.ts +4 -4
- package/src/core/ui/form/form.ts +4 -5
- package/src/core/ui/form/inputs/area/area.ts +3 -3
- package/src/core/ui/form/inputs/checkbox/checkbox.ts +5 -5
- package/src/core/ui/form/inputs/file/file.ts +4 -4
- package/src/core/ui/form/inputs/input/input.ts +8 -8
- package/src/core/ui/form/inputs/select/select.ts +8 -5
- package/src/core/ui/form/validators/input.ts +2 -2
- package/src/core/ui/form/validators/select.ts +2 -2
- package/src/core/ui/group/group.ts +8 -6
- package/src/core/ui/group/list.less +1 -1
- package/src/core/ui/group/list.ts +15 -11
- package/src/core/ui/group/separator.ts +3 -4
- package/src/core/ui/group/spacer.ts +3 -3
- package/src/core/ui/helpers/buttons.ts +2 -2
- package/src/core/ui/helpers/get-control-type.ts +3 -3
- package/src/core/ui/helpers/get-strong-control-types.ts +4 -4
- package/src/core/ui/icon.ts +2 -2
- package/src/core/ui/popup/popup.ts +7 -7
- package/src/core/ui/progress-bar/progress-bar.ts +2 -2
- package/src/core/view/view-with-toolbar.ts +5 -5
- package/src/core/view/view.ts +6 -6
- package/src/langs/README.md +124 -1
- package/src/langs/index.ts +1 -1
- package/src/modules/context-menu/context-menu.less +1 -1
- package/src/modules/context-menu/context-menu.ts +4 -4
- package/src/modules/dialog/alert.ts +3 -3
- package/src/modules/dialog/confirm.ts +3 -3
- package/src/modules/dialog/dialog.less +5 -0
- package/src/modules/dialog/dialog.ts +49 -32
- package/src/modules/dialog/prompt.ts +3 -3
- package/src/modules/file-browser/builders/context-menu.ts +22 -14
- package/src/modules/file-browser/builders/elements-map.ts +31 -0
- package/src/modules/file-browser/builders/item.ts +2 -2
- package/src/modules/file-browser/config.ts +5 -5
- package/src/modules/file-browser/data-provider.ts +5 -5
- package/src/modules/file-browser/factories.ts +1 -1
- package/src/modules/file-browser/fetch/delete-file.ts +27 -0
- package/src/modules/file-browser/fetch/load-items.ts +32 -0
- package/src/modules/file-browser/fetch/load-tree.ts +49 -0
- package/src/modules/file-browser/file-browser.ts +59 -120
- package/src/modules/file-browser/listeners/native-listeners.ts +14 -14
- package/src/modules/file-browser/listeners/self-listeners.ts +23 -18
- package/src/modules/file-browser/listeners/state-listeners.ts +17 -12
- package/src/modules/file-browser/styles/file-browser.less +24 -18
- package/src/modules/file-browser/ui/files/files.less +5 -0
- package/src/modules/file-browser/ui/files/files.ts +1 -1
- package/src/modules/file-browser/ui/tree/tree.less +16 -6
- package/src/modules/file-browser/ui/tree/tree.ts +1 -1
- package/src/modules/image-editor/image-editor.ts +9 -52
- package/src/modules/image-editor/templates/form.ts +4 -4
- package/src/modules/observer/command.ts +1 -1
- package/src/modules/observer/observer.ts +5 -5
- package/src/modules/observer/snapshot.ts +3 -3
- package/src/modules/observer/stack.ts +1 -1
- package/src/modules/status-bar/status-bar.ts +7 -7
- package/src/modules/table/table.ts +8 -8
- package/src/modules/toolbar/button/button.less +1 -1
- package/src/modules/toolbar/button/button.ts +57 -15
- package/src/modules/toolbar/button/content.less +1 -1
- package/src/modules/toolbar/button/content.ts +5 -5
- package/src/modules/toolbar/collection/collection.less +1 -1
- package/src/modules/toolbar/collection/collection.ts +5 -31
- package/src/modules/toolbar/collection/editor-collection.ts +5 -9
- package/src/modules/toolbar/factory.ts +2 -2
- package/src/modules/uploader/uploader.ts +9 -9
- package/src/modules/widget/color-picker/color-picker.ts +4 -4
- package/src/modules/widget/file-selector/file-selector.ts +4 -4
- package/src/modules/widget/tabs/tabs.ts +3 -3
- package/src/plugins/about/about.ts +5 -5
- package/src/plugins/add-new-line/add-new-line.ts +5 -5
- package/src/plugins/bold/bold.ts +3 -3
- package/src/plugins/class-span/class-span.ts +5 -5
- package/src/plugins/clipboard/clipboard.ts +4 -4
- package/src/plugins/clipboard/config.ts +29 -5
- package/src/plugins/clipboard/copy-format.ts +4 -4
- package/src/plugins/clipboard/drag-and-drop-element.ts +6 -6
- package/src/plugins/clipboard/drag-and-drop.ts +7 -7
- package/src/plugins/clipboard/paste/CHANGELOG.md +17 -0
- package/src/plugins/clipboard/paste/README.md +8 -0
- package/src/plugins/clipboard/paste/helpers.ts +5 -5
- package/src/plugins/clipboard/paste/paste.ts +24 -20
- package/src/plugins/clipboard/paste-storage/paste-storage.ts +6 -6
- package/src/plugins/color/color.ts +5 -5
- package/src/plugins/error-messages/error-messages.ts +5 -5
- package/src/plugins/fix/clean-html.ts +10 -10
- package/src/plugins/fix/wrap-text-nodes.ts +5 -5
- package/src/plugins/focus/focus.ts +4 -4
- package/src/plugins/font/font.ts +5 -5
- package/src/plugins/format-block/CHANGELOG.md +16 -0
- package/src/plugins/format-block/README.md +40 -0
- package/src/plugins/format-block/format-block.ts +8 -5
- package/src/plugins/fullsize/fullsize.ts +5 -5
- package/src/plugins/iframe/iframe.ts +6 -6
- package/src/plugins/image/helpers.ts +1 -1
- package/src/plugins/image/image-processor.ts +2 -2
- package/src/plugins/image/image-properties/image-properties.ts +12 -9
- package/src/plugins/image/image-properties/templates/form.ts +1 -1
- package/src/plugins/image/image-properties/templates/main-tab.ts +1 -1
- package/src/plugins/image/image-properties/templates/position-tab.ts +1 -1
- package/src/plugins/image/image.ts +5 -5
- package/src/plugins/indent/indent.ts +6 -6
- package/src/plugins/inline-popup/config/config.ts +3 -3
- 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/inline-popup.ts +6 -6
- package/src/plugins/insert/hr.ts +3 -3
- package/src/plugins/justify/justify.ts +4 -4
- package/src/plugins/keyboard/backspace/backspace.ts +6 -6
- package/src/plugins/keyboard/backspace/cases/check-join-neighbors.ts +3 -3
- package/src/plugins/keyboard/backspace/cases/check-join-two-lists.ts +1 -1
- package/src/plugins/keyboard/backspace/cases/check-not-collapsed.ts +1 -1
- package/src/plugins/keyboard/backspace/cases/check-remove-char.ts +9 -6
- package/src/plugins/keyboard/backspace/cases/check-remove-content-not-editable.ts +4 -4
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.ts +3 -3
- package/src/plugins/keyboard/backspace/cases/check-remove-empty-parent.ts +5 -5
- package/src/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.ts +1 -1
- package/src/plugins/keyboard/backspace/cases/check-table-cell.ts +1 -1
- package/src/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.ts +3 -3
- package/src/plugins/keyboard/backspace/config.ts +2 -2
- package/src/plugins/keyboard/enter.ts +6 -6
- package/src/plugins/keyboard/helpers.ts +5 -5
- package/src/plugins/keyboard/hotkeys.ts +6 -6
- package/src/plugins/keyboard/key-arrow-outside.ts +5 -5
- package/src/plugins/limit/limit.ts +7 -7
- package/src/plugins/link/link.ts +7 -7
- package/src/plugins/link/template.ts +3 -3
- package/src/plugins/media/file.ts +4 -4
- package/src/plugins/media/media.ts +6 -6
- package/src/plugins/media/video/config.ts +6 -6
- package/src/plugins/media/video/index.ts +1 -1
- package/src/plugins/mobile/mobile.ts +9 -9
- package/src/plugins/ordered-list/ordered-list.ts +6 -6
- package/src/plugins/placeholder/placeholder.ts +9 -9
- package/src/plugins/powered-by-jodit/powered-by-jodit.ts +2 -2
- package/src/plugins/print/preview.ts +4 -4
- package/src/plugins/print/print.ts +6 -6
- package/src/plugins/redo-undo/redo-undo.ts +4 -4
- package/src/plugins/resizer/resizer.ts +18 -16
- package/src/plugins/search/search.ts +11 -11
- package/src/plugins/select/select.ts +6 -6
- package/src/plugins/size/config.ts +2 -2
- package/src/plugins/size/resize-handler.ts +5 -5
- package/src/plugins/size/size.ts +4 -4
- package/src/plugins/source/config.ts +5 -5
- 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/factory.ts +2 -2
- package/src/plugins/source/editor/sourceEditor.ts +1 -1
- package/src/plugins/source/source.ts +8 -8
- package/src/plugins/stat/stat.ts +6 -6
- package/src/plugins/sticky/sticky.ts +6 -6
- package/src/plugins/symbols/config.ts +4 -4
- package/src/plugins/symbols/symbols.ts +3 -3
- package/src/plugins/table/config.ts +5 -5
- package/src/plugins/table/resize-cells.ts +4 -4
- package/src/plugins/table/select-cells.ts +5 -5
- package/src/plugins/table/table-keyboard-navigation.ts +3 -3
- package/src/plugins/table/table.ts +1 -1
- package/src/plugins/tooltip/tooltip.ts +6 -6
- package/src/plugins/xpath/xpath.ts +10 -10
- package/src/polyfills.ts +9 -1
- package/src/styles/form.less +1 -1
- package/src/styles/icons/README.md +151 -1
- package/src/types/file-browser.d.ts +1 -10
- package/src/types/jodit.d.ts +1 -1
- package/src/types/observer.d.ts +1 -2
- package/src/types/traits.d.ts +10 -5
- package/src/types/types.d.ts +39 -0
- package/src/types/ui.d.ts +8 -17
- package/tsconfig.json +8 -2
- package/types/config.d.ts +16 -0
- package/types/core/async/async.d.ts +1 -1
- package/types/core/component/component.d.ts +1 -1
- package/types/core/component/view-component.d.ts +1 -1
- package/types/core/constants.d.ts +42 -1
- package/types/core/create/create.d.ts +1 -1
- package/types/core/decorators/debounce/debounce.d.ts +1 -1
- package/types/core/decorators/hook/hook.d.ts +2 -2
- package/types/core/decorators/idle/idle.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/event-emitter/event-emitter.d.ts +1 -1
- package/types/core/event-emitter/index.d.ts +1 -1
- package/types/core/event-emitter/observable.d.ts +45 -0
- package/types/core/event-emitter/store.d.ts +1 -1
- package/types/core/global.d.ts +1 -1
- package/types/core/helpers/checker/is-imp-interface.d.ts +1 -1
- package/types/core/helpers/checker/is-jodit-object.d.ts +1 -1
- package/types/core/helpers/checker/is-plain-object.d.ts +1 -1
- package/types/core/helpers/size/get-scroll-parent.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/i18n.d.ts +2 -2
- package/types/core/helpers/utils/append-script.d.ts +1 -1
- package/types/core/helpers/utils/assert.d.ts +8 -0
- package/types/core/helpers/utils/build-query.d.ts +1 -1
- package/types/core/helpers/utils/config-proto.d.ts +1 -1
- package/types/core/helpers/utils/css.d.ts +1 -1
- package/types/core/helpers/utils/data-bind.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/index.d.ts +1 -0
- package/types/core/helpers/utils/parse-query.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 +2 -2
- package/types/core/plugin/plugin-system.d.ts +3 -2
- 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 +2 -2
- package/types/core/request/response.d.ts +1 -1
- package/types/core/selection/select.d.ts +1 -1
- package/types/core/selection/style/api/element-has-same-style.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/is-normal-node.d.ts +1 -1
- package/types/core/selection/style/api/is-suit-element.d.ts +2 -2
- package/types/core/selection/style/api/toggle/toggle-css.d.ts +2 -2
- package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +1 -1
- package/types/core/selection/style/api/wrap-and-commit-style.d.ts +1 -1
- package/types/core/selection/style/api/wrap-ordered-list.d.ts +1 -1
- package/types/core/selection/style/api/wrap-unwrapped-text.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/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/storage.d.ts +1 -1
- package/types/core/traits/elms.d.ts +3 -3
- package/types/core/traits/mods.d.ts +6 -6
- package/types/core/ui/button/button/button.d.ts +2 -2
- package/types/core/ui/button/group/group.d.ts +1 -1
- package/types/core/ui/element.d.ts +7 -7
- package/types/core/ui/form/block/block.d.ts +2 -2
- package/types/core/ui/form/form.d.ts +2 -2
- package/types/core/ui/form/inputs/area/area.d.ts +2 -2
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +2 -2
- package/types/core/ui/form/inputs/file/file.d.ts +2 -2
- package/types/core/ui/form/inputs/input/input.d.ts +2 -2
- package/types/core/ui/form/inputs/select/select.d.ts +2 -2
- package/types/core/ui/form/validators/input.d.ts +1 -1
- package/types/core/ui/form/validators/select.d.ts +2 -2
- package/types/core/ui/group/group.d.ts +2 -2
- package/types/core/ui/group/list.d.ts +2 -2
- package/types/core/ui/group/separator.d.ts +1 -2
- 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/popup/popup.d.ts +2 -2
- 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 +4 -4
- package/types/langs/index.d.ts +1 -1
- package/types/modules/context-menu/context-menu.d.ts +2 -2
- package/types/modules/dialog/confirm.d.ts +1 -1
- package/types/modules/dialog/dialog.d.ts +3 -3
- 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 +18 -0
- package/types/modules/file-browser/builders/item.d.ts +1 -1
- package/types/modules/file-browser/config.d.ts +2 -2
- 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 +13 -0
- package/types/modules/file-browser/fetch/load-items.d.ts +13 -0
- package/types/modules/file-browser/fetch/load-tree.d.ts +13 -0
- package/types/modules/file-browser/file-browser.d.ts +5 -12
- 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/tree/tree.d.ts +1 -1
- package/types/modules/image-editor/image-editor.d.ts +4 -6
- package/types/modules/image-editor/templates/form.d.ts +1 -1
- package/types/modules/observer/command.d.ts +1 -1
- package/types/modules/observer/observer.d.ts +3 -3
- package/types/modules/observer/snapshot.d.ts +2 -2
- package/types/modules/observer/stack.d.ts +1 -1
- package/types/modules/status-bar/status-bar.d.ts +5 -5
- package/types/modules/table/table.d.ts +3 -3
- package/types/modules/toolbar/button/button.d.ts +13 -5
- package/types/modules/toolbar/button/content.d.ts +2 -2
- package/types/modules/toolbar/collection/collection.d.ts +3 -3
- package/types/modules/toolbar/collection/editor-collection.d.ts +1 -1
- package/types/modules/toolbar/factory.d.ts +1 -1
- package/types/modules/uploader/uploader.d.ts +3 -3
- 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/tabs/tabs.d.ts +2 -2
- package/types/plugins/about/about.d.ts +1 -1
- package/types/plugins/add-new-line/add-new-line.d.ts +3 -3
- package/types/plugins/bold/bold.d.ts +1 -1
- package/types/plugins/class-span/class-span.d.ts +2 -2
- package/types/plugins/clipboard/clipboard.d.ts +2 -2
- package/types/plugins/clipboard/config.d.ts +22 -2
- package/types/plugins/clipboard/copy-format.d.ts +1 -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/paste/helpers.d.ts +2 -2
- package/types/plugins/clipboard/paste/paste.d.ts +6 -10
- package/types/plugins/clipboard/paste-storage/paste-storage.d.ts +1 -1
- package/types/plugins/color/color.d.ts +1 -1
- package/types/plugins/error-messages/error-messages.d.ts +2 -2
- package/types/plugins/fix/clean-html.d.ts +3 -3
- package/types/plugins/fix/wrap-text-nodes.d.ts +2 -2
- package/types/plugins/focus/focus.d.ts +2 -2
- package/types/plugins/font/font.d.ts +2 -2
- package/types/plugins/format-block/format-block.d.ts +3 -1
- package/types/plugins/fullsize/fullsize.d.ts +2 -2
- package/types/plugins/iframe/iframe.d.ts +2 -2
- package/types/plugins/image/image-processor.d.ts +1 -1
- package/types/plugins/image/image-properties/image-properties.d.ts +2 -2
- package/types/plugins/image/image-properties/templates/form.d.ts +1 -1
- package/types/plugins/image/image-properties/templates/main-tab.d.ts +1 -1
- package/types/plugins/image/image-properties/templates/position-tab.d.ts +1 -1
- package/types/plugins/image/image.d.ts +1 -1
- package/types/plugins/indent/indent.d.ts +2 -2
- package/types/plugins/inline-popup/config/config.d.ts +2 -2
- package/types/plugins/inline-popup/inline-popup.d.ts +2 -2
- package/types/plugins/insert/hr.d.ts +1 -1
- package/types/plugins/justify/justify.d.ts +1 -1
- package/types/plugins/keyboard/backspace/backspace.d.ts +2 -2
- package/types/plugins/keyboard/backspace/cases/check-join-neighbors.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-join-two-lists.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-not-collapsed.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-char.d.ts +2 -2
- package/types/plugins/keyboard/backspace/cases/check-remove-content-not-editable.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-neighbor.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-empty-parent.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-remove-unbreakable-element.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-table-cell.d.ts +1 -1
- package/types/plugins/keyboard/backspace/cases/check-unwrap-first-list-item.d.ts +1 -1
- package/types/plugins/keyboard/backspace/config.d.ts +1 -1
- package/types/plugins/keyboard/enter.d.ts +2 -2
- package/types/plugins/keyboard/helpers.d.ts +1 -1
- package/types/plugins/keyboard/hotkeys.d.ts +3 -3
- package/types/plugins/keyboard/key-arrow-outside.d.ts +2 -2
- package/types/plugins/limit/limit.d.ts +3 -3
- package/types/plugins/link/link.d.ts +3 -3
- package/types/plugins/link/template.d.ts +1 -1
- package/types/plugins/media/file.d.ts +1 -1
- package/types/plugins/media/media.d.ts +2 -2
- package/types/plugins/media/video/index.d.ts +1 -1
- package/types/plugins/mobile/mobile.d.ts +2 -2
- package/types/plugins/ordered-list/ordered-list.d.ts +2 -2
- package/types/plugins/placeholder/placeholder.d.ts +3 -3
- package/types/plugins/powered-by-jodit/powered-by-jodit.d.ts +2 -2
- package/types/plugins/print/preview.d.ts +1 -1
- package/types/plugins/print/print.d.ts +1 -1
- package/types/plugins/redo-undo/redo-undo.d.ts +2 -2
- package/types/plugins/resizer/resizer.d.ts +4 -4
- package/types/plugins/search/search.d.ts +3 -3
- package/types/plugins/select/select.d.ts +2 -2
- package/types/plugins/size/config.d.ts +1 -1
- package/types/plugins/size/resize-handler.d.ts +2 -2
- package/types/plugins/size/size.d.ts +2 -2
- package/types/plugins/source/config.d.ts +2 -2
- 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/factory.d.ts +1 -1
- package/types/plugins/source/editor/sourceEditor.d.ts +1 -1
- package/types/plugins/source/source.d.ts +2 -2
- package/types/plugins/stat/stat.d.ts +2 -2
- package/types/plugins/sticky/sticky.d.ts +2 -2
- package/types/plugins/symbols/config.d.ts +1 -1
- package/types/plugins/symbols/symbols.d.ts +1 -1
- package/types/plugins/table/resize-cells.d.ts +1 -1
- package/types/plugins/table/select-cells.d.ts +2 -2
- package/types/plugins/table/table-keyboard-navigation.d.ts +1 -1
- package/types/plugins/table/table.d.ts +1 -1
- package/types/plugins/tooltip/tooltip.d.ts +2 -2
- package/types/plugins/xpath/xpath.d.ts +3 -3
- package/types/types/{types/ajax.d.ts → ajax.d.ts} +0 -0
- package/types/types/{types/async.d.ts → async.d.ts} +0 -0
- package/types/types/{types/context.d.ts → context.d.ts} +0 -0
- package/types/types/{types/core.ts → core.ts} +0 -0
- package/types/types/{types/create.d.ts → create.d.ts} +0 -0
- package/types/types/{types/dialog.d.ts → dialog.d.ts} +0 -0
- package/types/types/{types/events.d.ts → events.d.ts} +0 -0
- package/types/types/{types/file-browser.d.ts → file-browser.d.ts} +1 -10
- package/types/types/{types/form.d.ts → form.d.ts} +0 -0
- package/types/types/{types/index.d.ts → index.d.ts} +0 -0
- package/types/types/{types/jodit.d.ts → jodit.d.ts} +1 -1
- package/types/types/{types/observer.d.ts → observer.d.ts} +1 -2
- package/types/types/{types/plugin.d.ts → plugin.d.ts} +0 -0
- package/types/types/{types/popup.d.ts → popup.d.ts} +0 -0
- package/types/types/{types/select.d.ts → select.d.ts} +0 -0
- package/types/types/{types/source.d.ts → source.d.ts} +0 -0
- package/types/types/{types/storage.ts → storage.ts} +0 -0
- package/types/types/{types/style.d.ts → style.d.ts} +0 -0
- package/types/types/{types/toolbar.d.ts → toolbar.d.ts} +0 -0
- package/types/types/{types/traits.d.ts → traits.d.ts} +10 -5
- package/types/types/{types/types.d.ts → types.d.ts} +39 -0
- package/types/types/{types/ui.d.ts → ui.d.ts} +8 -17
- package/types/types/{types/uploader.d.ts → uploader.d.ts} +0 -0
- package/types/types/{types/view.d.ts → view.d.ts} +0 -0
- package/src/core/event-emitter/observe-object.ts +0 -157
- package/types/core/event-emitter/observe-object.d.ts +0 -24
package/build/jodit.es2018.en.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.
|
|
4
|
+
* Version: v3.13.2
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -36,6 +36,8 @@ return /******/ (function() { // webpackBootstrap
|
|
|
36
36
|
class Config {
|
|
37
37
|
constructor() {
|
|
38
38
|
this.namespace = '';
|
|
39
|
+
this.safeMode = false;
|
|
40
|
+
this.safePluginsList = ['about', 'enter', 'backspace'];
|
|
39
41
|
this.iframe = false;
|
|
40
42
|
this.license = '';
|
|
41
43
|
this.preset = 'custom';
|
|
@@ -520,8 +522,8 @@ const TEMP_ATTR = 'data-jodit-temp';
|
|
|
520
522
|
__webpack_require__.d(__webpack_exports__, {
|
|
521
523
|
"vp": function() { return /* reexport */ EventEmitter; },
|
|
522
524
|
"DG": function() { return /* reexport */ EventHandlersStore; },
|
|
523
|
-
"
|
|
524
|
-
"
|
|
525
|
+
"rO": function() { return /* reexport */ defaultNameSpace; },
|
|
526
|
+
"LO": function() { return /* reexport */ observable; }
|
|
525
527
|
});
|
|
526
528
|
|
|
527
529
|
;// CONCATENATED MODULE: ./src/core/event-emitter/store.ts
|
|
@@ -974,13 +976,11 @@ class EventEmitter {
|
|
|
974
976
|
}
|
|
975
977
|
}
|
|
976
978
|
|
|
977
|
-
// EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
|
|
978
|
-
var tslib_es6 = __webpack_require__(25);
|
|
979
979
|
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 16 modules
|
|
980
980
|
var helpers = __webpack_require__(8);
|
|
981
981
|
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
982
982
|
var decorators = __webpack_require__(17);
|
|
983
|
-
;// CONCATENATED MODULE: ./src/core/event-emitter/
|
|
983
|
+
;// CONCATENATED MODULE: ./src/core/event-emitter/observable.ts
|
|
984
984
|
/*!
|
|
985
985
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
986
986
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -988,30 +988,76 @@ var decorators = __webpack_require__(17);
|
|
|
988
988
|
*/
|
|
989
989
|
|
|
990
990
|
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
991
|
+
const OBSERVABLE_OBJECT = Symbol('observable-object');
|
|
992
|
+
function isObservableObject(obj) {
|
|
993
|
+
return obj[OBSERVABLE_OBJECT] !== undefined;
|
|
994
|
+
}
|
|
995
|
+
function observable(obj) {
|
|
996
|
+
if (isObservableObject(obj)) {
|
|
997
|
+
return obj;
|
|
998
|
+
}
|
|
999
|
+
const __lockEvent = {};
|
|
1000
|
+
const __onEvents = {};
|
|
1001
|
+
const on = (event, callback) => {
|
|
1002
|
+
if ((0,helpers.isArray)(event)) {
|
|
1003
|
+
event.map(e => on(e, callback));
|
|
1004
|
+
return obj;
|
|
1005
|
+
}
|
|
1006
|
+
if (!__onEvents[event]) {
|
|
1007
|
+
__onEvents[event] = [];
|
|
1008
|
+
}
|
|
1009
|
+
__onEvents[event].push(callback);
|
|
1010
|
+
return obj;
|
|
1011
|
+
};
|
|
1012
|
+
const fire = (event, ...attr) => {
|
|
1013
|
+
if ((0,helpers.isArray)(event)) {
|
|
1014
|
+
event.map(e => fire(e, ...attr));
|
|
1015
|
+
return;
|
|
1016
|
+
}
|
|
1017
|
+
try {
|
|
1018
|
+
if (!__lockEvent[event] && __onEvents[event]) {
|
|
1019
|
+
__lockEvent[event] = true;
|
|
1020
|
+
__onEvents[event].forEach(clb => clb.call(obj, ...attr));
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
finally {
|
|
1024
|
+
__lockEvent[event] = false;
|
|
1025
|
+
}
|
|
1026
|
+
};
|
|
1027
|
+
const initAccessors = (dict, prefixes = []) => {
|
|
1028
|
+
const store = {};
|
|
1029
|
+
if (isObservableObject(dict)) {
|
|
1030
|
+
return;
|
|
1031
|
+
}
|
|
1032
|
+
Object.defineProperty(dict, OBSERVABLE_OBJECT, {
|
|
1033
|
+
enumerable: false,
|
|
1034
|
+
value: true
|
|
1035
|
+
});
|
|
1036
|
+
Object.keys(dict).forEach(_key => {
|
|
1037
|
+
const key = _key;
|
|
1038
|
+
const prefix = prefixes.concat(key).filter(a => a.length);
|
|
1039
|
+
store[key] = dict[key];
|
|
1040
|
+
const descriptor = (0,decorators.getPropertyDescriptor)(dict, key);
|
|
1041
|
+
Object.defineProperty(dict, key, {
|
|
1001
1042
|
set: (value) => {
|
|
1002
1043
|
var _a;
|
|
1003
|
-
const oldValue =
|
|
1004
|
-
if (!(0,helpers.isFastEqual)(
|
|
1005
|
-
|
|
1044
|
+
const oldValue = store[key];
|
|
1045
|
+
if (!(0,helpers.isFastEqual)(store[key], value)) {
|
|
1046
|
+
fire([
|
|
1006
1047
|
'beforeChange',
|
|
1007
1048
|
`beforeChange.${prefix.join('.')}`
|
|
1008
1049
|
], key, value);
|
|
1009
1050
|
if ((0,helpers.isPlainObject)(value)) {
|
|
1010
|
-
|
|
1051
|
+
initAccessors(value, prefix);
|
|
1052
|
+
}
|
|
1053
|
+
if (descriptor && descriptor.set) {
|
|
1054
|
+
descriptor.set.call(obj, value);
|
|
1055
|
+
}
|
|
1056
|
+
else {
|
|
1057
|
+
store[key] = value;
|
|
1011
1058
|
}
|
|
1012
|
-
data[key] = value;
|
|
1013
1059
|
const sum = [];
|
|
1014
|
-
|
|
1060
|
+
fire([
|
|
1015
1061
|
'change',
|
|
1016
1062
|
...prefix.reduce((rs, p) => {
|
|
1017
1063
|
sum.push(p);
|
|
@@ -1024,67 +1070,25 @@ class ObservableObject {
|
|
|
1024
1070
|
}
|
|
1025
1071
|
},
|
|
1026
1072
|
get: () => {
|
|
1027
|
-
|
|
1073
|
+
if (descriptor && descriptor.get) {
|
|
1074
|
+
return descriptor.get.call(obj);
|
|
1075
|
+
}
|
|
1076
|
+
return store[key];
|
|
1028
1077
|
},
|
|
1029
1078
|
enumerable: true,
|
|
1030
1079
|
configurable: true
|
|
1031
1080
|
});
|
|
1032
|
-
if ((0,helpers.isPlainObject)(
|
|
1033
|
-
|
|
1081
|
+
if ((0,helpers.isPlainObject)(store[key])) {
|
|
1082
|
+
initAccessors(store[key], prefix);
|
|
1034
1083
|
}
|
|
1035
1084
|
});
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
}
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
}
|
|
1043
|
-
on(event, callback) {
|
|
1044
|
-
if ((0,helpers.isArray)(event)) {
|
|
1045
|
-
event.map(e => this.on(e, callback));
|
|
1046
|
-
return this;
|
|
1047
|
-
}
|
|
1048
|
-
if (!this.__onEvents[event]) {
|
|
1049
|
-
this.__onEvents[event] = [];
|
|
1050
|
-
}
|
|
1051
|
-
this.__onEvents[event].push(callback);
|
|
1052
|
-
return this;
|
|
1053
|
-
}
|
|
1054
|
-
fire(event, ...attr) {
|
|
1055
|
-
if ((0,helpers.isArray)(event)) {
|
|
1056
|
-
event.map(e => this.fire(e, ...attr));
|
|
1057
|
-
return;
|
|
1058
|
-
}
|
|
1059
|
-
try {
|
|
1060
|
-
if (!this.__lockEvent[event] && this.__onEvents[event]) {
|
|
1061
|
-
this.__lockEvent[event] = true;
|
|
1062
|
-
this.__onEvents[event].forEach(clb => clb.call(this, ...attr));
|
|
1063
|
-
}
|
|
1064
|
-
}
|
|
1065
|
-
finally {
|
|
1066
|
-
this.__lockEvent[event] = false;
|
|
1067
|
-
}
|
|
1068
|
-
}
|
|
1069
|
-
static create(data, prefix = []) {
|
|
1070
|
-
if (data instanceof ObservableObject) {
|
|
1071
|
-
return data;
|
|
1072
|
-
}
|
|
1073
|
-
return new ObservableObject(data, prefix);
|
|
1074
|
-
}
|
|
1085
|
+
Object.defineProperty(obj, 'on', {
|
|
1086
|
+
value: on
|
|
1087
|
+
});
|
|
1088
|
+
};
|
|
1089
|
+
initAccessors(obj);
|
|
1090
|
+
return obj;
|
|
1075
1091
|
}
|
|
1076
|
-
(0,tslib_es6/* __decorate */.gn)([
|
|
1077
|
-
decorators.nonenumerable
|
|
1078
|
-
], ObservableObject.prototype, "__data", void 0);
|
|
1079
|
-
(0,tslib_es6/* __decorate */.gn)([
|
|
1080
|
-
decorators.nonenumerable
|
|
1081
|
-
], ObservableObject.prototype, "__prefix", void 0);
|
|
1082
|
-
(0,tslib_es6/* __decorate */.gn)([
|
|
1083
|
-
decorators.nonenumerable
|
|
1084
|
-
], ObservableObject.prototype, "__onEvents", void 0);
|
|
1085
|
-
(0,tslib_es6/* __decorate */.gn)([
|
|
1086
|
-
decorators.nonenumerable
|
|
1087
|
-
], ObservableObject.prototype, "__lockEvent", void 0);
|
|
1088
1092
|
|
|
1089
1093
|
;// CONCATENATED MODULE: ./src/core/event-emitter/index.ts
|
|
1090
1094
|
/*!
|
|
@@ -1189,6 +1193,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1189
1193
|
"appendStyleAsync": function() { return /* reexport */ utils/* appendStyleAsync */.Nf; },
|
|
1190
1194
|
"applyStyles": function() { return /* reexport */ applyStyles; },
|
|
1191
1195
|
"asArray": function() { return /* reexport */ array/* asArray */._2; },
|
|
1196
|
+
"assert": function() { return /* reexport */ utils/* assert */.hu; },
|
|
1192
1197
|
"attr": function() { return /* reexport */ utils/* attr */.Lj; },
|
|
1193
1198
|
"browser": function() { return /* reexport */ utils/* browser */.Xh; },
|
|
1194
1199
|
"buildQuery": function() { return /* reexport */ utils/* buildQuery */.XP; },
|
|
@@ -1287,10 +1292,10 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1287
1292
|
"val": function() { return /* reexport */ utils/* val */.P0; }
|
|
1288
1293
|
});
|
|
1289
1294
|
|
|
1290
|
-
// EXTERNAL MODULE: ./src/core/helpers/utils/index.ts +
|
|
1295
|
+
// EXTERNAL MODULE: ./src/core/helpers/utils/index.ts + 18 modules
|
|
1291
1296
|
var utils = __webpack_require__(9);
|
|
1292
1297
|
// EXTERNAL MODULE: ./src/core/helpers/array/index.ts + 1 modules
|
|
1293
|
-
var array = __webpack_require__(
|
|
1298
|
+
var array = __webpack_require__(33);
|
|
1294
1299
|
;// CONCATENATED MODULE: ./src/core/helpers/async/set-timeout.ts
|
|
1295
1300
|
/*!
|
|
1296
1301
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1321,7 +1326,7 @@ function set_timeout_clearTimeout(timer) {
|
|
|
1321
1326
|
// EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
|
|
1322
1327
|
var checker = __webpack_require__(18);
|
|
1323
1328
|
// EXTERNAL MODULE: ./src/core/helpers/color/color-to-hex.ts
|
|
1324
|
-
var color_to_hex = __webpack_require__(
|
|
1329
|
+
var color_to_hex = __webpack_require__(31);
|
|
1325
1330
|
;// CONCATENATED MODULE: ./src/core/helpers/color/index.ts
|
|
1326
1331
|
/*!
|
|
1327
1332
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1332,7 +1337,7 @@ var color_to_hex = __webpack_require__(30);
|
|
|
1332
1337
|
|
|
1333
1338
|
// EXTERNAL MODULE: ./src/core/dom/index.ts + 1 modules
|
|
1334
1339
|
var dom = __webpack_require__(15);
|
|
1335
|
-
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts +
|
|
1340
|
+
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts + 4 modules
|
|
1336
1341
|
var string = __webpack_require__(27);
|
|
1337
1342
|
;// CONCATENATED MODULE: ./src/core/helpers/html/apply-styles.ts
|
|
1338
1343
|
/*!
|
|
@@ -1417,6 +1422,10 @@ function applyStyles(html) {
|
|
|
1417
1422
|
.replace(/<!--[^>]*>/g, ''));
|
|
1418
1423
|
}
|
|
1419
1424
|
|
|
1425
|
+
// EXTERNAL MODULE: ./src/core/helpers/string/trim.ts
|
|
1426
|
+
var trim = __webpack_require__(28);
|
|
1427
|
+
// EXTERNAL MODULE: ./src/core/helpers/array/to-array.ts
|
|
1428
|
+
var to_array = __webpack_require__(34);
|
|
1420
1429
|
;// CONCATENATED MODULE: ./src/core/helpers/html/clean-from-word.ts
|
|
1421
1430
|
/*!
|
|
1422
1431
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1455,7 +1464,7 @@ function cleanFromWord(html) {
|
|
|
1455
1464
|
dom/* Dom.unwrap */.i.unwrap(node);
|
|
1456
1465
|
break;
|
|
1457
1466
|
default:
|
|
1458
|
-
(0,
|
|
1467
|
+
(0,to_array/* toArray */.q)(node.attributes).forEach((attr) => {
|
|
1459
1468
|
if ([
|
|
1460
1469
|
'src',
|
|
1461
1470
|
'href',
|
|
@@ -1481,7 +1490,7 @@ function cleanFromWord(html) {
|
|
|
1481
1490
|
if (convertedString) {
|
|
1482
1491
|
html = convertedString;
|
|
1483
1492
|
}
|
|
1484
|
-
html = html.split(/(\n)/).filter(
|
|
1493
|
+
html = html.split(/(\n)/).filter(trim/* trim */.f).join('\n');
|
|
1485
1494
|
return html
|
|
1486
1495
|
.replace(/<(\/)?(html|colgroup|col|o:p)[^>]*>/g, '')
|
|
1487
1496
|
.replace(/<!--[^>]*>/g, '');
|
|
@@ -1499,6 +1508,8 @@ function htmlspecialchars(html) {
|
|
|
1499
1508
|
return tmp.innerHTML;
|
|
1500
1509
|
}
|
|
1501
1510
|
|
|
1511
|
+
// EXTERNAL MODULE: ./src/core/helpers/checker/is-string.ts
|
|
1512
|
+
var is_string = __webpack_require__(5);
|
|
1502
1513
|
;// CONCATENATED MODULE: ./src/core/helpers/html/strip-tags.ts
|
|
1503
1514
|
/*!
|
|
1504
1515
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1512,7 +1523,7 @@ function htmlspecialchars(html) {
|
|
|
1512
1523
|
|
|
1513
1524
|
function stripTags(html, doc = document) {
|
|
1514
1525
|
const tmp = doc.createElement('div');
|
|
1515
|
-
if ((0,
|
|
1526
|
+
if ((0,is_string/* isString */.H)(html)) {
|
|
1516
1527
|
tmp.innerHTML = html;
|
|
1517
1528
|
}
|
|
1518
1529
|
else {
|
|
@@ -1531,7 +1542,7 @@ function stripTags(html, doc = document) {
|
|
|
1531
1542
|
pr.insertBefore(doc.createTextNode(' '), nx);
|
|
1532
1543
|
}
|
|
1533
1544
|
});
|
|
1534
|
-
return (0,
|
|
1545
|
+
return (0,trim/* trim */.f)(tmp.innerText) || '';
|
|
1535
1546
|
}
|
|
1536
1547
|
function safeHTML(box, options) {
|
|
1537
1548
|
if (!dom/* Dom.isElement */.i.isElement(box)) {
|
|
@@ -1560,7 +1571,7 @@ function safeHTML(box, options) {
|
|
|
1560
1571
|
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1561
1572
|
*/
|
|
1562
1573
|
function nl2br(html) {
|
|
1563
|
-
return html.replace(
|
|
1574
|
+
return html.replace(/\r\n|\r|\n/g, '<br/>');
|
|
1564
1575
|
}
|
|
1565
1576
|
|
|
1566
1577
|
;// CONCATENATED MODULE: ./src/core/helpers/html/index.ts
|
|
@@ -1576,7 +1587,7 @@ function nl2br(html) {
|
|
|
1576
1587
|
|
|
1577
1588
|
|
|
1578
1589
|
// EXTERNAL MODULE: ./src/core/helpers/normalize/index.ts + 9 modules
|
|
1579
|
-
var normalize = __webpack_require__(
|
|
1590
|
+
var normalize = __webpack_require__(30);
|
|
1580
1591
|
;// CONCATENATED MODULE: ./src/core/helpers/size/get-content-width.ts
|
|
1581
1592
|
/*!
|
|
1582
1593
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1757,6 +1768,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1757
1768
|
"uR": function() { return /* reexport */ appendScript; },
|
|
1758
1769
|
"JL": function() { return /* reexport */ appendScriptAsync; },
|
|
1759
1770
|
"Nf": function() { return /* reexport */ appendStyleAsync; },
|
|
1771
|
+
"hu": function() { return /* reexport */ assert; },
|
|
1760
1772
|
"Lj": function() { return /* reexport */ utils/* attr */.Lj; },
|
|
1761
1773
|
"Xh": function() { return /* reexport */ browser; },
|
|
1762
1774
|
"XP": function() { return /* reexport */ buildQuery; },
|
|
@@ -1797,6 +1809,25 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1797
1809
|
"P0": function() { return /* reexport */ val; }
|
|
1798
1810
|
});
|
|
1799
1811
|
|
|
1812
|
+
;// CONCATENATED MODULE: ./src/core/helpers/utils/assert.ts
|
|
1813
|
+
/*!
|
|
1814
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1815
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1816
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1817
|
+
*/
|
|
1818
|
+
class AssertionError extends Error {
|
|
1819
|
+
constructor(message) {
|
|
1820
|
+
super(message);
|
|
1821
|
+
this.name = 'AssertionError';
|
|
1822
|
+
}
|
|
1823
|
+
}
|
|
1824
|
+
function assert(condition, message) {
|
|
1825
|
+
if (!condition) {
|
|
1826
|
+
throw new AssertionError(`Assertion failed: ${message}`);
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
|
|
1800
1831
|
;// CONCATENATED MODULE: ./src/core/helpers/utils/mark-deprecated.ts
|
|
1801
1832
|
/*!
|
|
1802
1833
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1815,7 +1846,7 @@ function markDeprecated(method, names = [''], ctx = null) {
|
|
|
1815
1846
|
// EXTERNAL MODULE: ./src/core/helpers/utils/utils.ts
|
|
1816
1847
|
var utils = __webpack_require__(10);
|
|
1817
1848
|
// EXTERNAL MODULE: ./src/core/helpers/utils/get.ts
|
|
1818
|
-
var get = __webpack_require__(
|
|
1849
|
+
var get = __webpack_require__(32);
|
|
1819
1850
|
// EXTERNAL MODULE: ./src/core/helpers/checker/is-string.ts
|
|
1820
1851
|
var is_string = __webpack_require__(5);
|
|
1821
1852
|
// EXTERNAL MODULE: ./src/core/helpers/checker/is-numeric.ts
|
|
@@ -2162,7 +2193,7 @@ const convertMediaUrlToVideoEmbed = (url, width = 400, height = 345) => {
|
|
|
2162
2193
|
};
|
|
2163
2194
|
|
|
2164
2195
|
// EXTERNAL MODULE: ./src/core/helpers/utils/css.ts
|
|
2165
|
-
var css = __webpack_require__(
|
|
2196
|
+
var css = __webpack_require__(29);
|
|
2166
2197
|
;// CONCATENATED MODULE: ./src/core/helpers/utils/ctrl-key.ts
|
|
2167
2198
|
/*!
|
|
2168
2199
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -2256,16 +2287,14 @@ const scrollIntoViewIfNeeded = (elm, root, doc) => {
|
|
|
2256
2287
|
|
|
2257
2288
|
// EXTERNAL MODULE: ./src/core/constants.ts
|
|
2258
2289
|
var constants = __webpack_require__(2);
|
|
2259
|
-
// EXTERNAL MODULE: ./src/core/helpers/utils/error.ts
|
|
2260
|
-
var error = __webpack_require__(4);
|
|
2261
2290
|
// EXTERNAL MODULE: ./src/core/dom/index.ts + 1 modules
|
|
2262
2291
|
var dom = __webpack_require__(15);
|
|
2263
|
-
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts +
|
|
2292
|
+
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts + 4 modules
|
|
2264
2293
|
var string = __webpack_require__(27);
|
|
2265
2294
|
// EXTERNAL MODULE: ./src/core/helpers/array/index.ts + 1 modules
|
|
2266
|
-
var array = __webpack_require__(
|
|
2295
|
+
var array = __webpack_require__(33);
|
|
2267
2296
|
// EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
|
|
2268
|
-
var ui = __webpack_require__(
|
|
2297
|
+
var ui = __webpack_require__(35);
|
|
2269
2298
|
;// CONCATENATED MODULE: ./src/core/helpers/utils/selector.ts
|
|
2270
2299
|
/*!
|
|
2271
2300
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -2279,7 +2308,6 @@ var ui = __webpack_require__(34);
|
|
|
2279
2308
|
|
|
2280
2309
|
|
|
2281
2310
|
|
|
2282
|
-
|
|
2283
2311
|
let temp = 1;
|
|
2284
2312
|
const $$temp = () => {
|
|
2285
2313
|
temp++;
|
|
@@ -2371,6 +2399,8 @@ function resolveElement(element, od) {
|
|
|
2371
2399
|
return resolved;
|
|
2372
2400
|
}
|
|
2373
2401
|
|
|
2402
|
+
// EXTERNAL MODULE: ./src/core/helpers/utils/error.ts
|
|
2403
|
+
var error = __webpack_require__(4);
|
|
2374
2404
|
;// CONCATENATED MODULE: ./src/core/helpers/utils/val.ts
|
|
2375
2405
|
/*!
|
|
2376
2406
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -2417,6 +2447,7 @@ const val = (elm, selector, value) => {
|
|
|
2417
2447
|
|
|
2418
2448
|
|
|
2419
2449
|
|
|
2450
|
+
|
|
2420
2451
|
|
|
2421
2452
|
|
|
2422
2453
|
/***/ }),
|
|
@@ -2436,11 +2467,11 @@ const val = (elm, selector, value) => {
|
|
|
2436
2467
|
/* harmony export */ });
|
|
2437
2468
|
/* harmony import */ var _checker_is_function__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(6);
|
|
2438
2469
|
/* harmony import */ var _checker_is_promise__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(23);
|
|
2439
|
-
/* harmony import */ var _get__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
2470
|
+
/* harmony import */ var _get__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(32);
|
|
2440
2471
|
/* harmony import */ var _data_bind__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(11);
|
|
2441
2472
|
/* harmony import */ var _checker_is_void__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(20);
|
|
2442
2473
|
/* harmony import */ var _checker__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18);
|
|
2443
|
-
/* harmony import */ var _css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
2474
|
+
/* harmony import */ var _css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(29);
|
|
2444
2475
|
/* harmony import */ var _string__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(27);
|
|
2445
2476
|
/*!
|
|
2446
2477
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -2583,7 +2614,7 @@ const memorizeExec = (editor, _, { control }, preProcessValue) => {
|
|
|
2583
2614
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2584
2615
|
/* harmony export */ "q": function() { return /* binding */ dataBind; }
|
|
2585
2616
|
/* harmony export */ });
|
|
2586
|
-
/* harmony import */ var
|
|
2617
|
+
/* harmony import */ var jodit_core_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(12);
|
|
2587
2618
|
/* harmony import */ var _checker__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18);
|
|
2588
2619
|
/*!
|
|
2589
2620
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -2599,7 +2630,7 @@ const dataBind = (elm, key, value) => {
|
|
|
2599
2630
|
itemStore = {};
|
|
2600
2631
|
store.set(elm, itemStore);
|
|
2601
2632
|
let e = null;
|
|
2602
|
-
if (elm instanceof
|
|
2633
|
+
if (elm instanceof jodit_core_component__WEBPACK_IMPORTED_MODULE_0__/* .ViewComponent */ .Hr) {
|
|
2603
2634
|
e = elm.j.e;
|
|
2604
2635
|
}
|
|
2605
2636
|
if ((0,_checker__WEBPACK_IMPORTED_MODULE_1__/* .isViewObject */ .f2)(elm)) {
|
|
@@ -2667,7 +2698,9 @@ class Component {
|
|
|
2667
2698
|
get componentName() {
|
|
2668
2699
|
if (!this.__componentName) {
|
|
2669
2700
|
this.__componentName =
|
|
2670
|
-
'jodit-' +
|
|
2701
|
+
'jodit-' +
|
|
2702
|
+
(0,helpers.kebabCase)(((0,helpers.isFunction)(this.className) ? this.className() : '') ||
|
|
2703
|
+
(0,helpers.getClassName)(this));
|
|
2671
2704
|
}
|
|
2672
2705
|
return this.__componentName;
|
|
2673
2706
|
}
|
|
@@ -2906,7 +2939,7 @@ const eventEmitter = new _event_emitter__WEBPACK_IMPORTED_MODULE_2__/* .EventEmi
|
|
|
2906
2939
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2907
2940
|
/* harmony export */ "h": function() { return /* binding */ PluginSystem; }
|
|
2908
2941
|
/* harmony export */ });
|
|
2909
|
-
/* harmony import */ var
|
|
2942
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8);
|
|
2910
2943
|
/*!
|
|
2911
2944
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2912
2945
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -2915,22 +2948,29 @@ const eventEmitter = new _event_emitter__WEBPACK_IMPORTED_MODULE_2__/* .EventEmi
|
|
|
2915
2948
|
|
|
2916
2949
|
class PluginSystem {
|
|
2917
2950
|
constructor() {
|
|
2918
|
-
this.
|
|
2951
|
+
this._items = new Map();
|
|
2919
2952
|
}
|
|
2920
2953
|
normalizeName(name) {
|
|
2921
|
-
return (0,
|
|
2954
|
+
return (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.kebabCase)(name).toLowerCase();
|
|
2955
|
+
}
|
|
2956
|
+
items(filter) {
|
|
2957
|
+
const results = [];
|
|
2958
|
+
this._items.forEach((plugin, name) => {
|
|
2959
|
+
results.push([name, plugin]);
|
|
2960
|
+
});
|
|
2961
|
+
return results.filter(([name]) => !filter || filter.includes(name));
|
|
2922
2962
|
}
|
|
2923
2963
|
add(name, plugin) {
|
|
2924
|
-
this.
|
|
2964
|
+
this._items.set(this.normalizeName(name), plugin);
|
|
2925
2965
|
}
|
|
2926
2966
|
get(name) {
|
|
2927
|
-
return this.
|
|
2967
|
+
return this._items.get(this.normalizeName(name));
|
|
2928
2968
|
}
|
|
2929
2969
|
remove(name) {
|
|
2930
|
-
this.
|
|
2970
|
+
this._items.delete(this.normalizeName(name));
|
|
2931
2971
|
}
|
|
2932
2972
|
init(jodit) {
|
|
2933
|
-
const extrasList = jodit.o.extraPlugins.map(s => (0,
|
|
2973
|
+
const extrasList = jodit.o.extraPlugins.map(s => (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.isString)(s) ? { name: s } : s), disableList = (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.splitArray)(jodit.o.disablePlugins).map(s => this.normalizeName(s)), doneList = [], promiseList = {}, plugins = [], pluginsMap = {}, makeAndInit = ([name, plugin]) => {
|
|
2934
2974
|
var _a;
|
|
2935
2975
|
if (disableList.includes(name) ||
|
|
2936
2976
|
doneList.includes(name) ||
|
|
@@ -2939,21 +2979,25 @@ class PluginSystem {
|
|
|
2939
2979
|
}
|
|
2940
2980
|
const requires = (_a = plugin) === null || _a === void 0 ? void 0 : _a.requires;
|
|
2941
2981
|
if (requires &&
|
|
2942
|
-
(0,
|
|
2982
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.isArray)(requires) &&
|
|
2943
2983
|
this.hasDisabledRequires(disableList, requires)) {
|
|
2944
2984
|
return;
|
|
2945
2985
|
}
|
|
2946
2986
|
const instance = PluginSystem.makePluginInstance(jodit, plugin);
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2987
|
+
if (instance) {
|
|
2988
|
+
this.initOrWait(jodit, name, instance, doneList, promiseList);
|
|
2989
|
+
plugins.push(instance);
|
|
2990
|
+
pluginsMap[name] = instance;
|
|
2991
|
+
}
|
|
2950
2992
|
};
|
|
2951
2993
|
const resultLoadExtras = this.loadExtras(jodit, extrasList);
|
|
2952
|
-
return (0,
|
|
2994
|
+
return (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.callPromise)(resultLoadExtras, () => {
|
|
2953
2995
|
if (jodit.isInDestruct) {
|
|
2954
2996
|
return;
|
|
2955
2997
|
}
|
|
2956
|
-
this.items.
|
|
2998
|
+
this.items(jodit.o.safeMode
|
|
2999
|
+
? jodit.o.safePluginsList.concat(extrasList.map(s => s.name))
|
|
3000
|
+
: null).forEach(makeAndInit);
|
|
2957
3001
|
this.addListenerOnBeforeDestruct(jodit, plugins);
|
|
2958
3002
|
jodit.__plugins = pluginsMap;
|
|
2959
3003
|
});
|
|
@@ -2963,15 +3007,28 @@ class PluginSystem {
|
|
|
2963
3007
|
disableList.some(disabled => requires.includes(disabled)));
|
|
2964
3008
|
}
|
|
2965
3009
|
static makePluginInstance(jodit, plugin) {
|
|
2966
|
-
|
|
3010
|
+
try {
|
|
3011
|
+
return (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.isFunction)(plugin) ? new plugin(jodit) : plugin;
|
|
3012
|
+
}
|
|
3013
|
+
catch (e) {
|
|
3014
|
+
console.error(e);
|
|
3015
|
+
if (false) {}
|
|
3016
|
+
}
|
|
3017
|
+
return null;
|
|
2967
3018
|
}
|
|
2968
3019
|
initOrWait(jodit, pluginName, instance, doneList, promiseList) {
|
|
2969
3020
|
const initPlugin = (name, plugin) => {
|
|
2970
|
-
if ((0,
|
|
3021
|
+
if ((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.isInitable)(plugin)) {
|
|
2971
3022
|
const req = plugin.requires;
|
|
2972
3023
|
if (!(req === null || req === void 0 ? void 0 : req.length) ||
|
|
2973
3024
|
req.every(name => doneList.includes(name))) {
|
|
2974
|
-
|
|
3025
|
+
try {
|
|
3026
|
+
plugin.init(jodit);
|
|
3027
|
+
}
|
|
3028
|
+
catch (e) {
|
|
3029
|
+
console.error(e);
|
|
3030
|
+
if (false) {}
|
|
3031
|
+
}
|
|
2975
3032
|
doneList.push(name);
|
|
2976
3033
|
}
|
|
2977
3034
|
else {
|
|
@@ -3002,7 +3059,7 @@ class PluginSystem {
|
|
|
3002
3059
|
addListenerOnBeforeDestruct(jodit, plugins) {
|
|
3003
3060
|
jodit.e.on('beforeDestruct', () => {
|
|
3004
3061
|
plugins.forEach(instance => {
|
|
3005
|
-
if ((0,
|
|
3062
|
+
if ((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.isDestructable)(instance)) {
|
|
3006
3063
|
instance.destruct(jodit);
|
|
3007
3064
|
}
|
|
3008
3065
|
});
|
|
@@ -3015,7 +3072,7 @@ class PluginSystem {
|
|
|
3015
3072
|
return Promise.all(pluginList.map(extra => {
|
|
3016
3073
|
const url = extra.url ||
|
|
3017
3074
|
PluginSystem.getFullUrl(jodit, extra.name, true);
|
|
3018
|
-
return reflect((0,
|
|
3075
|
+
return reflect((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.appendScriptAsync)(jodit, url));
|
|
3019
3076
|
}));
|
|
3020
3077
|
}
|
|
3021
3078
|
static async loadStyle(jodit, pluginName) {
|
|
@@ -3024,10 +3081,10 @@ class PluginSystem {
|
|
|
3024
3081
|
return;
|
|
3025
3082
|
}
|
|
3026
3083
|
this.styles.add(url);
|
|
3027
|
-
return (0,
|
|
3084
|
+
return (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.appendStyleAsync)(jodit, url);
|
|
3028
3085
|
}
|
|
3029
3086
|
static getFullUrl(jodit, name, js) {
|
|
3030
|
-
name = (0,
|
|
3087
|
+
name = (0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.kebabCase)(name);
|
|
3031
3088
|
return (jodit.basePath +
|
|
3032
3089
|
'plugins/' +
|
|
3033
3090
|
name +
|
|
@@ -3039,7 +3096,7 @@ class PluginSystem {
|
|
|
3039
3096
|
loadExtras(jodit, extrasList) {
|
|
3040
3097
|
if (extrasList && extrasList.length) {
|
|
3041
3098
|
try {
|
|
3042
|
-
const needLoadExtras = extrasList.filter(extra => !this.
|
|
3099
|
+
const needLoadExtras = extrasList.filter(extra => !this._items.has(this.normalizeName(extra.name)));
|
|
3043
3100
|
if (needLoadExtras.length) {
|
|
3044
3101
|
return this.load(jodit, needLoadExtras);
|
|
3045
3102
|
}
|
|
@@ -5427,43 +5484,37 @@ function watch(observeFields, context) {
|
|
|
5427
5484
|
});
|
|
5428
5485
|
return;
|
|
5429
5486
|
}
|
|
5430
|
-
const parts = field.split('.'), [key] = parts;
|
|
5487
|
+
const parts = field.split('.'), [key] = parts, teil = parts.slice(1);
|
|
5431
5488
|
let value = component[key];
|
|
5432
|
-
if (
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
else if ((0,checker/* isPlainObject */.PO)(value) && parts.length > 1) {
|
|
5436
|
-
const observe = event_emitter/* ObservableObject.create */.Tf.create(value, [key]);
|
|
5437
|
-
observe.on(`change.${field}`, callback);
|
|
5438
|
-
component[key] = observe;
|
|
5489
|
+
if ((0,checker/* isPlainObject */.PO)(value)) {
|
|
5490
|
+
const observableValue = (0,event_emitter/* observable */.LO)(value);
|
|
5491
|
+
observableValue.on(`change.${teil.join('.')}`, callback);
|
|
5439
5492
|
}
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
|
|
5443
|
-
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
return;
|
|
5448
|
-
}
|
|
5449
|
-
value = v;
|
|
5450
|
-
if (descriptor && descriptor.set) {
|
|
5451
|
-
descriptor.set.call(component, v);
|
|
5452
|
-
}
|
|
5453
|
-
if ((0,checker/* isPlainObject */.PO)(value)) {
|
|
5454
|
-
value = event_emitter/* ObservableObject.create */.Tf.create(value, [key]);
|
|
5455
|
-
value.on('change.' + field, callback);
|
|
5456
|
-
}
|
|
5457
|
-
callback(key, oldValue, value);
|
|
5458
|
-
},
|
|
5459
|
-
get() {
|
|
5460
|
-
if (descriptor && descriptor.get) {
|
|
5461
|
-
return descriptor.get.call(component);
|
|
5462
|
-
}
|
|
5463
|
-
return value;
|
|
5493
|
+
const descriptor = getPropertyDescriptor(target, key);
|
|
5494
|
+
Object.defineProperty(component, key, {
|
|
5495
|
+
configurable: true,
|
|
5496
|
+
set(v) {
|
|
5497
|
+
const oldValue = value;
|
|
5498
|
+
if (oldValue === v) {
|
|
5499
|
+
return;
|
|
5464
5500
|
}
|
|
5465
|
-
|
|
5466
|
-
|
|
5501
|
+
value = v;
|
|
5502
|
+
if (descriptor && descriptor.set) {
|
|
5503
|
+
descriptor.set.call(component, v);
|
|
5504
|
+
}
|
|
5505
|
+
if ((0,checker/* isPlainObject */.PO)(value)) {
|
|
5506
|
+
value = (0,event_emitter/* observable */.LO)(value);
|
|
5507
|
+
value.on(`change.${teil.join('.')}`, callback);
|
|
5508
|
+
}
|
|
5509
|
+
callback(key, oldValue, value);
|
|
5510
|
+
},
|
|
5511
|
+
get() {
|
|
5512
|
+
if (descriptor && descriptor.get) {
|
|
5513
|
+
return descriptor.get.call(component);
|
|
5514
|
+
}
|
|
5515
|
+
return value;
|
|
5516
|
+
}
|
|
5517
|
+
});
|
|
5467
5518
|
});
|
|
5468
5519
|
};
|
|
5469
5520
|
if ((0,checker/* isFunction */.mf)(target.hookStatus)) {
|
|
@@ -6363,8 +6414,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
6363
6414
|
"GL": function() { return /* reexport */ kebabCase; },
|
|
6364
6415
|
"gB": function() { return /* reexport */ sprintf; },
|
|
6365
6416
|
"Pz": function() { return /* reexport */ stringify/* stringify */.P; },
|
|
6366
|
-
"fy": function() { return /* reexport */ trim; },
|
|
6367
|
-
"as": function() { return /* reexport */ trimInv; },
|
|
6417
|
+
"fy": function() { return /* reexport */ trim/* trim */.f; },
|
|
6418
|
+
"as": function() { return /* reexport */ trim/* trimInv */.a; },
|
|
6368
6419
|
"Ps": function() { return /* reexport */ ucfirst; }
|
|
6369
6420
|
});
|
|
6370
6421
|
|
|
@@ -6402,26 +6453,8 @@ const CamelCaseToKebabCase = (key) => {
|
|
|
6402
6453
|
.toLowerCase();
|
|
6403
6454
|
};
|
|
6404
6455
|
|
|
6405
|
-
// EXTERNAL MODULE: ./src/core/
|
|
6406
|
-
var
|
|
6407
|
-
;// CONCATENATED MODULE: ./src/core/helpers/string/trim.ts
|
|
6408
|
-
/*!
|
|
6409
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6410
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6411
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6412
|
-
*/
|
|
6413
|
-
|
|
6414
|
-
function trim(value) {
|
|
6415
|
-
return value
|
|
6416
|
-
.replace((0,constants.SPACE_REG_EXP_END)(), '')
|
|
6417
|
-
.replace((0,constants.SPACE_REG_EXP_START)(), '');
|
|
6418
|
-
}
|
|
6419
|
-
function trimInv(value) {
|
|
6420
|
-
return value
|
|
6421
|
-
.replace((0,constants.INVISIBLE_SPACE_REG_EXP_END)(), '')
|
|
6422
|
-
.replace((0,constants.INVISIBLE_SPACE_REG_EXP_START)(), '');
|
|
6423
|
-
}
|
|
6424
|
-
|
|
6456
|
+
// EXTERNAL MODULE: ./src/core/helpers/string/trim.ts
|
|
6457
|
+
var trim = __webpack_require__(28);
|
|
6425
6458
|
;// CONCATENATED MODULE: ./src/core/helpers/string/ucfirst.ts
|
|
6426
6459
|
/*!
|
|
6427
6460
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -6437,10 +6470,10 @@ function ucfirst(value) {
|
|
|
6437
6470
|
|
|
6438
6471
|
// EXTERNAL MODULE: ./src/config.ts
|
|
6439
6472
|
var config = __webpack_require__(1);
|
|
6440
|
-
// EXTERNAL MODULE: ./src/core/helpers/utils/index.ts +
|
|
6473
|
+
// EXTERNAL MODULE: ./src/core/helpers/utils/index.ts + 18 modules
|
|
6441
6474
|
var utils = __webpack_require__(9);
|
|
6442
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
6443
|
-
var
|
|
6475
|
+
// EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
|
|
6476
|
+
var checker = __webpack_require__(18);
|
|
6444
6477
|
// EXTERNAL MODULE: ./src/core/global.ts
|
|
6445
6478
|
var global = __webpack_require__(13);
|
|
6446
6479
|
;// CONCATENATED MODULE: ./src/core/helpers/string/i18n.ts
|
|
@@ -6453,6 +6486,7 @@ var global = __webpack_require__(13);
|
|
|
6453
6486
|
|
|
6454
6487
|
|
|
6455
6488
|
|
|
6489
|
+
|
|
6456
6490
|
const sprintf = (str, args) => {
|
|
6457
6491
|
if (!args || !args.length) {
|
|
6458
6492
|
return str;
|
|
@@ -6468,8 +6502,8 @@ const sprintf = (str, args) => {
|
|
|
6468
6502
|
return res;
|
|
6469
6503
|
};
|
|
6470
6504
|
const i18n = (key, params, options) => {
|
|
6471
|
-
if (!(0,
|
|
6472
|
-
throw (0,
|
|
6505
|
+
if (!(0,checker/* isString */.HD)(key)) {
|
|
6506
|
+
throw (0,utils/* error */.vU)('i18n: Need string in first argument');
|
|
6473
6507
|
}
|
|
6474
6508
|
if (!key.length) {
|
|
6475
6509
|
return key;
|
|
@@ -6480,15 +6514,15 @@ const i18n = (key, params, options) => {
|
|
|
6480
6514
|
if (!store) {
|
|
6481
6515
|
return;
|
|
6482
6516
|
}
|
|
6483
|
-
if ((0,
|
|
6517
|
+
if ((0,checker/* isString */.HD)(store[key])) {
|
|
6484
6518
|
return parse(store[key]);
|
|
6485
6519
|
}
|
|
6486
6520
|
const lcKey = key.toLowerCase();
|
|
6487
|
-
if ((0,
|
|
6521
|
+
if ((0,checker/* isString */.HD)(store[lcKey])) {
|
|
6488
6522
|
return parse(store[lcKey]);
|
|
6489
6523
|
}
|
|
6490
|
-
const ucfKey =
|
|
6491
|
-
if ((0,
|
|
6524
|
+
const ucfKey = ucfirst(key);
|
|
6525
|
+
if ((0,checker/* isString */.HD)(store[ucfKey])) {
|
|
6492
6526
|
return parse(store[ucfKey]);
|
|
6493
6527
|
}
|
|
6494
6528
|
return;
|
|
@@ -6515,7 +6549,7 @@ const i18n = (key, params, options) => {
|
|
|
6515
6549
|
if (result) {
|
|
6516
6550
|
return result;
|
|
6517
6551
|
}
|
|
6518
|
-
if (global/* lang.en */.KQ.en && (0,
|
|
6552
|
+
if (global/* lang.en */.KQ.en && (0,checker/* isString */.HD)(global/* lang.en */.KQ.en[key]) && global/* lang.en */.KQ.en[key]) {
|
|
6519
6553
|
return parse(global/* lang.en */.KQ.en[key]);
|
|
6520
6554
|
}
|
|
6521
6555
|
if (debug) {
|
|
@@ -6543,13 +6577,41 @@ const i18n = (key, params, options) => {
|
|
|
6543
6577
|
/* 28 */
|
|
6544
6578
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6545
6579
|
|
|
6580
|
+
"use strict";
|
|
6581
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6582
|
+
/* harmony export */ "f": function() { return /* binding */ trim; },
|
|
6583
|
+
/* harmony export */ "a": function() { return /* binding */ trimInv; }
|
|
6584
|
+
/* harmony export */ });
|
|
6585
|
+
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
6586
|
+
/*!
|
|
6587
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6588
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6589
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6590
|
+
*/
|
|
6591
|
+
|
|
6592
|
+
function trim(value) {
|
|
6593
|
+
return value
|
|
6594
|
+
.replace((0,jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.SPACE_REG_EXP_END)(), '')
|
|
6595
|
+
.replace((0,jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.SPACE_REG_EXP_START)(), '');
|
|
6596
|
+
}
|
|
6597
|
+
function trimInv(value) {
|
|
6598
|
+
return value
|
|
6599
|
+
.replace((0,jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.INVISIBLE_SPACE_REG_EXP_END)(), '')
|
|
6600
|
+
.replace((0,jodit_core_constants__WEBPACK_IMPORTED_MODULE_0__.INVISIBLE_SPACE_REG_EXP_START)(), '');
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6603
|
+
|
|
6604
|
+
/***/ }),
|
|
6605
|
+
/* 29 */
|
|
6606
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6607
|
+
|
|
6546
6608
|
"use strict";
|
|
6547
6609
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6548
6610
|
/* harmony export */ "i": function() { return /* binding */ css; },
|
|
6549
6611
|
/* harmony export */ "b": function() { return /* binding */ clearCenterAlign; }
|
|
6550
6612
|
/* harmony export */ });
|
|
6551
6613
|
/* harmony import */ var _checker___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(18);
|
|
6552
|
-
/* harmony import */ var _normalize___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
6614
|
+
/* harmony import */ var _normalize___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(30);
|
|
6553
6615
|
/* harmony import */ var _string___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
6554
6616
|
/*!
|
|
6555
6617
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -6617,7 +6679,7 @@ const clearCenterAlign = (image) => {
|
|
|
6617
6679
|
|
|
6618
6680
|
|
|
6619
6681
|
/***/ }),
|
|
6620
|
-
/*
|
|
6682
|
+
/* 30 */
|
|
6621
6683
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6622
6684
|
|
|
6623
6685
|
"use strict";
|
|
@@ -6635,7 +6697,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
6635
6697
|
"D5": function() { return /* reexport */ normalizeUrl; }
|
|
6636
6698
|
});
|
|
6637
6699
|
|
|
6638
|
-
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts +
|
|
6700
|
+
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts + 4 modules
|
|
6639
6701
|
var string = __webpack_require__(27);
|
|
6640
6702
|
// EXTERNAL MODULE: ./src/core/constants.ts
|
|
6641
6703
|
var constants = __webpack_require__(2);
|
|
@@ -6787,7 +6849,7 @@ const normalizeUrl = (...urls) => {
|
|
|
6787
6849
|
// EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
|
|
6788
6850
|
var checker = __webpack_require__(18);
|
|
6789
6851
|
// EXTERNAL MODULE: ./src/core/helpers/color/color-to-hex.ts
|
|
6790
|
-
var color_to_hex = __webpack_require__(
|
|
6852
|
+
var color_to_hex = __webpack_require__(31);
|
|
6791
6853
|
;// CONCATENATED MODULE: ./src/core/helpers/normalize/normalize-css-value.ts
|
|
6792
6854
|
/*!
|
|
6793
6855
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -6866,7 +6928,7 @@ const normalizeColor = (colorInput) => {
|
|
|
6866
6928
|
|
|
6867
6929
|
|
|
6868
6930
|
/***/ }),
|
|
6869
|
-
/*
|
|
6931
|
+
/* 31 */
|
|
6870
6932
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6871
6933
|
|
|
6872
6934
|
"use strict";
|
|
@@ -6903,7 +6965,7 @@ const colorToHex = (color) => {
|
|
|
6903
6965
|
|
|
6904
6966
|
|
|
6905
6967
|
/***/ }),
|
|
6906
|
-
/*
|
|
6968
|
+
/* 32 */
|
|
6907
6969
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6908
6970
|
|
|
6909
6971
|
"use strict";
|
|
@@ -6939,7 +7001,7 @@ function get(chain, obj) {
|
|
|
6939
7001
|
|
|
6940
7002
|
|
|
6941
7003
|
/***/ }),
|
|
6942
|
-
/*
|
|
7004
|
+
/* 33 */
|
|
6943
7005
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6944
7006
|
|
|
6945
7007
|
"use strict";
|
|
@@ -6965,7 +7027,7 @@ const asArray = (a) => ((0,is_array/* isArray */.k)(a) ? a : [a]);
|
|
|
6965
7027
|
// EXTERNAL MODULE: ./src/core/helpers/array/split-array.ts
|
|
6966
7028
|
var split_array = __webpack_require__(24);
|
|
6967
7029
|
// EXTERNAL MODULE: ./src/core/helpers/array/to-array.ts
|
|
6968
|
-
var to_array = __webpack_require__(
|
|
7030
|
+
var to_array = __webpack_require__(34);
|
|
6969
7031
|
;// CONCATENATED MODULE: ./src/core/helpers/array/index.ts
|
|
6970
7032
|
/*!
|
|
6971
7033
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -6978,7 +7040,7 @@ var to_array = __webpack_require__(33);
|
|
|
6978
7040
|
|
|
6979
7041
|
|
|
6980
7042
|
/***/ }),
|
|
6981
|
-
/*
|
|
7043
|
+
/* 34 */
|
|
6982
7044
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6983
7045
|
|
|
6984
7046
|
"use strict";
|
|
@@ -7004,7 +7066,7 @@ const toArray = function toArray(...args) {
|
|
|
7004
7066
|
|
|
7005
7067
|
|
|
7006
7068
|
/***/ }),
|
|
7007
|
-
/*
|
|
7069
|
+
/* 35 */
|
|
7008
7070
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7009
7071
|
|
|
7010
7072
|
"use strict";
|
|
@@ -7024,24 +7086,25 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
7024
7086
|
"qe": function() { return /* reexport */ group/* UIGroup */.qe; },
|
|
7025
7087
|
"u3": function() { return /* reexport */ ui_form/* UIInput */.u3; },
|
|
7026
7088
|
"bz": function() { return /* reexport */ group/* UIList */.bz; },
|
|
7089
|
+
"Cj": function() { return /* reexport */ ui_form/* UISelect */.Cj; },
|
|
7027
7090
|
"lU": function() { return /* reexport */ group/* UISeparator */.lU; },
|
|
7028
7091
|
"GJ": function() { return /* reexport */ ui_form/* UITextArea */.GJ; }
|
|
7029
7092
|
});
|
|
7030
7093
|
|
|
7031
|
-
// UNUSED EXPORTS: UIButtonGroup, UIButtonState,
|
|
7094
|
+
// UNUSED EXPORTS: UIButtonGroup, UIButtonState, UISpacer
|
|
7032
7095
|
|
|
7033
7096
|
// EXTERNAL MODULE: ./src/core/ui/element.ts
|
|
7034
|
-
var ui_element = __webpack_require__(
|
|
7035
|
-
// EXTERNAL MODULE: ./src/core/ui/button/index.ts +
|
|
7036
|
-
var ui_button = __webpack_require__(
|
|
7097
|
+
var ui_element = __webpack_require__(36);
|
|
7098
|
+
// EXTERNAL MODULE: ./src/core/ui/button/index.ts + 1 modules
|
|
7099
|
+
var ui_button = __webpack_require__(39);
|
|
7037
7100
|
// EXTERNAL MODULE: ./src/core/ui/popup/index.ts + 1 modules
|
|
7038
|
-
var popup = __webpack_require__(
|
|
7101
|
+
var popup = __webpack_require__(44);
|
|
7039
7102
|
// EXTERNAL MODULE: ./src/core/ui/group/index.ts + 5 modules
|
|
7040
|
-
var group = __webpack_require__(
|
|
7103
|
+
var group = __webpack_require__(41);
|
|
7041
7104
|
// EXTERNAL MODULE: ./src/core/ui/form/index.ts + 11 modules
|
|
7042
|
-
var ui_form = __webpack_require__(
|
|
7105
|
+
var ui_form = __webpack_require__(45);
|
|
7043
7106
|
// EXTERNAL MODULE: ./src/core/ui/icon.ts
|
|
7044
|
-
var icon = __webpack_require__(
|
|
7107
|
+
var icon = __webpack_require__(38);
|
|
7045
7108
|
// EXTERNAL MODULE: ./src/core/dom/index.ts + 1 modules
|
|
7046
7109
|
var dom = __webpack_require__(15);
|
|
7047
7110
|
;// CONCATENATED MODULE: ./src/core/ui/progress-bar/progress-bar.ts
|
|
@@ -7095,18 +7158,18 @@ class ProgressBar extends ui_element/* UIElement */.u {
|
|
|
7095
7158
|
|
|
7096
7159
|
|
|
7097
7160
|
/***/ }),
|
|
7098
|
-
/*
|
|
7161
|
+
/* 36 */
|
|
7099
7162
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7100
7163
|
|
|
7101
7164
|
"use strict";
|
|
7102
7165
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7103
7166
|
/* harmony export */ "u": function() { return /* binding */ UIElement; }
|
|
7104
7167
|
/* harmony export */ });
|
|
7105
|
-
/* harmony import */ var
|
|
7106
|
-
/* harmony import */ var
|
|
7107
|
-
/* harmony import */ var
|
|
7108
|
-
/* harmony import */ var
|
|
7109
|
-
/* harmony import */ var
|
|
7168
|
+
/* harmony import */ var jodit_core_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(12);
|
|
7169
|
+
/* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(15);
|
|
7170
|
+
/* harmony import */ var jodit_core_traits__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(37);
|
|
7171
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(8);
|
|
7172
|
+
/* harmony import */ var jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(38);
|
|
7110
7173
|
/*!
|
|
7111
7174
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7112
7175
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7117,7 +7180,7 @@ class ProgressBar extends ui_element/* UIElement */.u {
|
|
|
7117
7180
|
|
|
7118
7181
|
|
|
7119
7182
|
|
|
7120
|
-
class UIElement extends
|
|
7183
|
+
class UIElement extends jodit_core_component__WEBPACK_IMPORTED_MODULE_0__/* .ViewComponent */ .Hr {
|
|
7121
7184
|
constructor(jodit, options) {
|
|
7122
7185
|
super(jodit);
|
|
7123
7186
|
this.name = '';
|
|
@@ -7174,7 +7237,7 @@ class UIElement extends _component__WEBPACK_IMPORTED_MODULE_0__/* .ViewComponent
|
|
|
7174
7237
|
return null;
|
|
7175
7238
|
}
|
|
7176
7239
|
static closestElement(node, type) {
|
|
7177
|
-
const elm =
|
|
7240
|
+
const elm = jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__/* .Dom.up */ .i.up(node, elm => {
|
|
7178
7241
|
if (elm) {
|
|
7179
7242
|
const { component } = elm;
|
|
7180
7243
|
return component && component instanceof type;
|
|
@@ -7184,17 +7247,17 @@ class UIElement extends _component__WEBPACK_IMPORTED_MODULE_0__/* .ViewComponent
|
|
|
7184
7247
|
return elm ? elm === null || elm === void 0 ? void 0 : elm.component : null;
|
|
7185
7248
|
}
|
|
7186
7249
|
setMod(name, value, container = this.container) {
|
|
7187
|
-
|
|
7250
|
+
jodit_core_traits__WEBPACK_IMPORTED_MODULE_2__/* .Mods.setMod.call */ .$.setMod.call(this, name, value, container);
|
|
7188
7251
|
return this;
|
|
7189
7252
|
}
|
|
7190
7253
|
getMod(name) {
|
|
7191
|
-
return
|
|
7254
|
+
return jodit_core_traits__WEBPACK_IMPORTED_MODULE_2__/* .Mods.getMod.call */ .$.getMod.call(this, name);
|
|
7192
7255
|
}
|
|
7193
7256
|
getElm(elementName) {
|
|
7194
|
-
return
|
|
7257
|
+
return jodit_core_traits__WEBPACK_IMPORTED_MODULE_2__/* .Elms.getElm.call */ .F.getElm.call(this, elementName);
|
|
7195
7258
|
}
|
|
7196
7259
|
getElms(elementName) {
|
|
7197
|
-
return
|
|
7260
|
+
return jodit_core_traits__WEBPACK_IMPORTED_MODULE_2__/* .Elms.getElms.call */ .F.getElms.call(this, elementName);
|
|
7198
7261
|
}
|
|
7199
7262
|
update() {
|
|
7200
7263
|
}
|
|
@@ -7210,9 +7273,9 @@ class UIElement extends _component__WEBPACK_IMPORTED_MODULE_0__/* .ViewComponent
|
|
|
7210
7273
|
}
|
|
7211
7274
|
createContainer(options) {
|
|
7212
7275
|
const result = this.render(options);
|
|
7213
|
-
if ((0,
|
|
7276
|
+
if ((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_3__.isString)(result)) {
|
|
7214
7277
|
const elm = this.j.c.fromHTML(result
|
|
7215
|
-
.replace(/\*([^*]+?)\*/g, (_, name) =>
|
|
7278
|
+
.replace(/\*([^*]+?)\*/g, (_, name) => jodit_core_ui_icon__WEBPACK_IMPORTED_MODULE_4__/* .Icon.get */ .J.get(name) || '')
|
|
7216
7279
|
.replace(/&__/g, this.componentName + '__')
|
|
7217
7280
|
.replace(/~([^~]+?)~/g, (_, s) => this.i18n(s)));
|
|
7218
7281
|
elm.classList.add(this.componentName);
|
|
@@ -7221,7 +7284,7 @@ class UIElement extends _component__WEBPACK_IMPORTED_MODULE_0__/* .ViewComponent
|
|
|
7221
7284
|
return result;
|
|
7222
7285
|
}
|
|
7223
7286
|
destruct() {
|
|
7224
|
-
|
|
7287
|
+
jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__/* .Dom.safeRemove */ .i.safeRemove(this.container);
|
|
7225
7288
|
this.parentElement = null;
|
|
7226
7289
|
return super.destruct();
|
|
7227
7290
|
}
|
|
@@ -7229,7 +7292,7 @@ class UIElement extends _component__WEBPACK_IMPORTED_MODULE_0__/* .ViewComponent
|
|
|
7229
7292
|
|
|
7230
7293
|
|
|
7231
7294
|
/***/ }),
|
|
7232
|
-
/*
|
|
7295
|
+
/* 37 */
|
|
7233
7296
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7234
7297
|
|
|
7235
7298
|
"use strict";
|
|
@@ -7241,7 +7304,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
7241
7304
|
});
|
|
7242
7305
|
|
|
7243
7306
|
// EXTERNAL MODULE: ./src/core/helpers/array/to-array.ts
|
|
7244
|
-
var to_array = __webpack_require__(
|
|
7307
|
+
var to_array = __webpack_require__(34);
|
|
7245
7308
|
;// CONCATENATED MODULE: ./src/core/traits/elms.ts
|
|
7246
7309
|
/*!
|
|
7247
7310
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -7258,6 +7321,8 @@ class Elms {
|
|
|
7258
7321
|
}
|
|
7259
7322
|
}
|
|
7260
7323
|
|
|
7324
|
+
// EXTERNAL MODULE: ./src/core/helpers/checker/is-void.ts
|
|
7325
|
+
var is_void = __webpack_require__(20);
|
|
7261
7326
|
;// CONCATENATED MODULE: ./src/core/traits/mods.ts
|
|
7262
7327
|
/*!
|
|
7263
7328
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -7265,6 +7330,7 @@ class Elms {
|
|
|
7265
7330
|
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7266
7331
|
*/
|
|
7267
7332
|
|
|
7333
|
+
|
|
7268
7334
|
class Mods {
|
|
7269
7335
|
static setMod(name, value, container) {
|
|
7270
7336
|
name = name.toLowerCase();
|
|
@@ -7277,7 +7343,7 @@ class Mods {
|
|
|
7277
7343
|
cl.remove(className);
|
|
7278
7344
|
}
|
|
7279
7345
|
});
|
|
7280
|
-
|
|
7346
|
+
!(0,is_void/* isVoid */.n)(value) &&
|
|
7281
7347
|
value !== '' &&
|
|
7282
7348
|
cl.add(`${mod}_${value.toString().toLowerCase()}`);
|
|
7283
7349
|
this.mods[name] = value;
|
|
@@ -7299,14 +7365,14 @@ class Mods {
|
|
|
7299
7365
|
|
|
7300
7366
|
|
|
7301
7367
|
/***/ }),
|
|
7302
|
-
/*
|
|
7368
|
+
/* 38 */
|
|
7303
7369
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7304
7370
|
|
|
7305
7371
|
"use strict";
|
|
7306
7372
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7307
7373
|
/* harmony export */ "J": function() { return /* binding */ Icon; }
|
|
7308
7374
|
/* harmony export */ });
|
|
7309
|
-
/* harmony import */ var
|
|
7375
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8);
|
|
7310
7376
|
/*!
|
|
7311
7377
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7312
7378
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7340,7 +7406,7 @@ class Icon {
|
|
|
7340
7406
|
const clearName = icon.name.replace(/[^a-zA-Z0-9]/g, '_');
|
|
7341
7407
|
if (icon.iconURL) {
|
|
7342
7408
|
iconElement = jodit.c.span();
|
|
7343
|
-
(0,
|
|
7409
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.css)(iconElement, 'backgroundImage', 'url(' +
|
|
7344
7410
|
icon.iconURL.replace('{basePath}', (jodit === null || jodit === void 0 ? void 0 : jodit.basePath) || '') +
|
|
7345
7411
|
')');
|
|
7346
7412
|
}
|
|
@@ -7367,37 +7433,31 @@ Icon.icons = {};
|
|
|
7367
7433
|
|
|
7368
7434
|
|
|
7369
7435
|
/***/ }),
|
|
7370
|
-
/*
|
|
7436
|
+
/* 39 */
|
|
7371
7437
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7372
7438
|
|
|
7373
7439
|
"use strict";
|
|
7374
7440
|
|
|
7375
7441
|
// EXPORTS
|
|
7376
7442
|
__webpack_require__.d(__webpack_exports__, {
|
|
7377
|
-
"zx": function() { return /* reexport */ Button; },
|
|
7378
|
-
"y3": function() { return /* reexport */ UIButton; },
|
|
7379
|
-
"Yc": function() { return /* reexport */ UIButtonState; }
|
|
7443
|
+
"zx": function() { return /* reexport */ button_button/* Button */.zx; },
|
|
7444
|
+
"y3": function() { return /* reexport */ button_button/* UIButton */.y3; },
|
|
7445
|
+
"Yc": function() { return /* reexport */ button_button/* UIButtonState */.Yc; }
|
|
7380
7446
|
});
|
|
7381
7447
|
|
|
7382
7448
|
// UNUSED EXPORTS: UIButtonGroup
|
|
7383
7449
|
|
|
7450
|
+
// EXTERNAL MODULE: ./src/core/ui/button/button/button.ts
|
|
7451
|
+
var button_button = __webpack_require__(40);
|
|
7384
7452
|
// EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
|
|
7385
7453
|
var tslib_es6 = __webpack_require__(25);
|
|
7386
|
-
// EXTERNAL MODULE: ./src/core/ui/element.ts
|
|
7387
|
-
var ui_element = __webpack_require__(35);
|
|
7388
|
-
// EXTERNAL MODULE: ./src/core/dom/index.ts + 1 modules
|
|
7389
|
-
var dom = __webpack_require__(15);
|
|
7390
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 16 modules
|
|
7391
|
-
var helpers = __webpack_require__(8);
|
|
7392
|
-
// EXTERNAL MODULE: ./src/core/ui/icon.ts
|
|
7393
|
-
var icon = __webpack_require__(37);
|
|
7394
7454
|
// EXTERNAL MODULE: ./src/core/ui/group/index.ts + 5 modules
|
|
7395
|
-
var group = __webpack_require__(
|
|
7455
|
+
var group = __webpack_require__(41);
|
|
7396
7456
|
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
7397
7457
|
var decorators = __webpack_require__(17);
|
|
7398
|
-
// EXTERNAL MODULE: ./src/core/
|
|
7399
|
-
var
|
|
7400
|
-
;// CONCATENATED MODULE: ./src/core/ui/button/
|
|
7458
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 16 modules
|
|
7459
|
+
var helpers = __webpack_require__(8);
|
|
7460
|
+
;// CONCATENATED MODULE: ./src/core/ui/button/group/group.ts
|
|
7401
7461
|
/*!
|
|
7402
7462
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7403
7463
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7409,99 +7469,194 @@ var component = __webpack_require__(12);
|
|
|
7409
7469
|
|
|
7410
7470
|
|
|
7411
7471
|
|
|
7412
|
-
|
|
7413
|
-
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
|
-
|
|
7422
|
-
activated: false,
|
|
7423
|
-
icon: {
|
|
7424
|
-
name: 'empty',
|
|
7425
|
-
fill: '',
|
|
7426
|
-
iconURL: ''
|
|
7427
|
-
},
|
|
7428
|
-
tooltip: '',
|
|
7429
|
-
text: '',
|
|
7430
|
-
tabIndex: undefined
|
|
7431
|
-
});
|
|
7432
|
-
let UIButton = class UIButton extends ui_element/* UIElement */.u {
|
|
7433
|
-
constructor(jodit, state) {
|
|
7434
|
-
super(jodit);
|
|
7435
|
-
this.isButton = true;
|
|
7436
|
-
this.state = UIButtonState();
|
|
7437
|
-
this.actionHandlers = [];
|
|
7438
|
-
this.updateSize();
|
|
7439
|
-
this.onChangeSize();
|
|
7440
|
-
this.onChangeStatus();
|
|
7441
|
-
if (state) {
|
|
7442
|
-
this.hookStatus(component/* STATUSES.ready */.n$.ready, () => {
|
|
7443
|
-
this.setState(state);
|
|
7472
|
+
let UIButtonGroup = class UIButtonGroup extends group/* UIGroup */.qe {
|
|
7473
|
+
constructor(jodit, options = {
|
|
7474
|
+
radio: true
|
|
7475
|
+
}) {
|
|
7476
|
+
var _a, _b;
|
|
7477
|
+
super(jodit, (_a = options.options) === null || _a === void 0 ? void 0 : _a.map(opt => {
|
|
7478
|
+
const btn = new button_button/* UIButton */.y3(jodit, {
|
|
7479
|
+
text: opt.text,
|
|
7480
|
+
value: opt.value,
|
|
7481
|
+
variant: 'primary'
|
|
7444
7482
|
});
|
|
7445
|
-
|
|
7483
|
+
btn.onAction(() => {
|
|
7484
|
+
this.select(opt.value);
|
|
7485
|
+
});
|
|
7486
|
+
return btn;
|
|
7487
|
+
}), options);
|
|
7488
|
+
this.options = options;
|
|
7489
|
+
this.select((_b = options.value) !== null && _b !== void 0 ? _b : 0);
|
|
7446
7490
|
}
|
|
7447
7491
|
className() {
|
|
7448
|
-
return '
|
|
7449
|
-
}
|
|
7450
|
-
setState(state) {
|
|
7451
|
-
Object.assign(this.state, state);
|
|
7452
|
-
return this;
|
|
7453
|
-
}
|
|
7454
|
-
onChangeSize() {
|
|
7455
|
-
this.setMod('size', this.state.size);
|
|
7456
|
-
}
|
|
7457
|
-
onChangeType() {
|
|
7458
|
-
(0,helpers.attr)(this.container, 'type', this.state.type);
|
|
7459
|
-
}
|
|
7460
|
-
updateSize() {
|
|
7461
|
-
const pe = this.closest(group/* UIList */.bz);
|
|
7462
|
-
if (pe) {
|
|
7463
|
-
this.state.size = pe.buttonSize;
|
|
7464
|
-
return;
|
|
7465
|
-
}
|
|
7492
|
+
return 'UIButtonGroup';
|
|
7466
7493
|
}
|
|
7467
|
-
|
|
7468
|
-
|
|
7494
|
+
render(options) {
|
|
7495
|
+
return `<div>
|
|
7496
|
+
<div class="&__label">~${options.label}~</div>
|
|
7497
|
+
<div class="&__options"></div>
|
|
7498
|
+
</div>`;
|
|
7469
7499
|
}
|
|
7470
|
-
|
|
7471
|
-
|
|
7500
|
+
appendChildToContainer(childContainer) {
|
|
7501
|
+
const options = this.getElm('options');
|
|
7502
|
+
(0,helpers.assert)(options != null, 'Options does not exist');
|
|
7503
|
+
options.appendChild(childContainer);
|
|
7504
|
+
}
|
|
7505
|
+
select(indexOrValue) {
|
|
7506
|
+
var _a, _b;
|
|
7507
|
+
this.elements.forEach((elm, index) => {
|
|
7508
|
+
if (index === indexOrValue || elm.state.value === indexOrValue) {
|
|
7509
|
+
elm.state.activated = true;
|
|
7510
|
+
}
|
|
7511
|
+
else if (this.options.radio) {
|
|
7512
|
+
elm.state.activated = false;
|
|
7513
|
+
}
|
|
7514
|
+
});
|
|
7515
|
+
const result = this.elements
|
|
7516
|
+
.filter(elm => elm.state.activated)
|
|
7517
|
+
.map(elm => ({
|
|
7518
|
+
text: elm.state.text,
|
|
7519
|
+
value: elm.state.value
|
|
7520
|
+
}));
|
|
7521
|
+
this.jodit.e.fire(this, 'select', result);
|
|
7522
|
+
(_b = (_a = this.options).onChange) === null || _b === void 0 ? void 0 : _b.call(_a, result);
|
|
7523
|
+
}
|
|
7524
|
+
};
|
|
7525
|
+
UIButtonGroup = (0,tslib_es6/* __decorate */.gn)([
|
|
7526
|
+
decorators.component
|
|
7527
|
+
], UIButtonGroup);
|
|
7528
|
+
|
|
7529
|
+
|
|
7530
|
+
;// CONCATENATED MODULE: ./src/core/ui/button/index.ts
|
|
7531
|
+
/*!
|
|
7532
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7533
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7534
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7535
|
+
*/
|
|
7536
|
+
|
|
7537
|
+
|
|
7538
|
+
|
|
7539
|
+
|
|
7540
|
+
/***/ }),
|
|
7541
|
+
/* 40 */
|
|
7542
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7543
|
+
|
|
7544
|
+
"use strict";
|
|
7545
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7546
|
+
/* harmony export */ "Yc": function() { return /* binding */ UIButtonState; },
|
|
7547
|
+
/* harmony export */ "y3": function() { return /* binding */ UIButton; },
|
|
7548
|
+
/* harmony export */ "zx": function() { return /* binding */ Button; }
|
|
7549
|
+
/* harmony export */ });
|
|
7550
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(25);
|
|
7551
|
+
/* harmony import */ var jodit_core_ui__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(35);
|
|
7552
|
+
/* harmony import */ var jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(15);
|
|
7553
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(8);
|
|
7554
|
+
/* harmony import */ var jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(17);
|
|
7555
|
+
/* harmony import */ var jodit_core_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(12);
|
|
7556
|
+
/*!
|
|
7557
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7558
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7559
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7560
|
+
*/
|
|
7561
|
+
|
|
7562
|
+
|
|
7563
|
+
|
|
7564
|
+
|
|
7565
|
+
|
|
7566
|
+
|
|
7567
|
+
|
|
7568
|
+
|
|
7569
|
+
|
|
7570
|
+
const UIButtonState = () => ({
|
|
7571
|
+
size: 'middle',
|
|
7572
|
+
type: 'button',
|
|
7573
|
+
name: '',
|
|
7574
|
+
value: '',
|
|
7575
|
+
variant: 'initial',
|
|
7576
|
+
disabled: false,
|
|
7577
|
+
activated: false,
|
|
7578
|
+
icon: {
|
|
7579
|
+
name: 'empty',
|
|
7580
|
+
fill: '',
|
|
7581
|
+
iconURL: ''
|
|
7582
|
+
},
|
|
7583
|
+
tooltip: '',
|
|
7584
|
+
text: '',
|
|
7585
|
+
tabIndex: undefined
|
|
7586
|
+
});
|
|
7587
|
+
let UIButton = class UIButton extends jodit_core_ui__WEBPACK_IMPORTED_MODULE_0__/* .UIElement */ .u1 {
|
|
7588
|
+
constructor(jodit, state) {
|
|
7589
|
+
super(jodit);
|
|
7590
|
+
this.isButton = true;
|
|
7591
|
+
this.state = UIButtonState();
|
|
7592
|
+
this.actionHandlers = [];
|
|
7593
|
+
this.updateSize();
|
|
7594
|
+
this.onChangeSize();
|
|
7595
|
+
this.onChangeStatus();
|
|
7596
|
+
if (state) {
|
|
7597
|
+
this.hookStatus(jodit_core_component__WEBPACK_IMPORTED_MODULE_4__/* .STATUSES.ready */ .n$.ready, () => {
|
|
7598
|
+
this.setState(state);
|
|
7599
|
+
});
|
|
7600
|
+
}
|
|
7601
|
+
}
|
|
7602
|
+
className() {
|
|
7603
|
+
return 'UIButton';
|
|
7604
|
+
}
|
|
7605
|
+
setState(state) {
|
|
7606
|
+
Object.assign(this.state, state);
|
|
7607
|
+
return this;
|
|
7608
|
+
}
|
|
7609
|
+
onChangeSize() {
|
|
7610
|
+
this.setMod('size', this.state.size);
|
|
7611
|
+
}
|
|
7612
|
+
onChangeType() {
|
|
7613
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'type', this.state.type);
|
|
7614
|
+
}
|
|
7615
|
+
updateSize() {
|
|
7616
|
+
const pe = this.closest(jodit_core_ui__WEBPACK_IMPORTED_MODULE_0__/* .UIList */ .bz);
|
|
7617
|
+
if (pe) {
|
|
7618
|
+
this.state.size = pe.buttonSize;
|
|
7619
|
+
return;
|
|
7620
|
+
}
|
|
7621
|
+
}
|
|
7622
|
+
onChangeStatus() {
|
|
7623
|
+
this.setMod('variant', this.state.variant);
|
|
7624
|
+
}
|
|
7625
|
+
onChangeText() {
|
|
7626
|
+
this.text.textContent = this.jodit.i18n(this.state.text);
|
|
7472
7627
|
}
|
|
7473
7628
|
onChangeTextSetMode() {
|
|
7474
7629
|
this.setMod('text-icons', Boolean(this.state.text.trim().length));
|
|
7475
7630
|
}
|
|
7476
7631
|
onChangeDisabled() {
|
|
7477
|
-
(0,
|
|
7632
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'disabled', this.state.disabled || null);
|
|
7478
7633
|
}
|
|
7479
7634
|
onChangeActivated() {
|
|
7480
|
-
(0,
|
|
7635
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'aria-pressed', this.state.activated);
|
|
7481
7636
|
}
|
|
7482
7637
|
onChangeName() {
|
|
7483
7638
|
this.container.classList.add(`${this.componentName}_${this.clearName(this.state.name)}`);
|
|
7484
7639
|
this.name = this.state.name;
|
|
7485
|
-
(0,
|
|
7486
|
-
(0,
|
|
7640
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'data-ref', this.state.name);
|
|
7641
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'ref', this.state.name);
|
|
7487
7642
|
}
|
|
7488
7643
|
onChangeTooltip() {
|
|
7489
7644
|
if (this.get('j.o.useNativeTooltip')) {
|
|
7490
|
-
(0,
|
|
7645
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'title', this.state.tooltip);
|
|
7491
7646
|
}
|
|
7492
|
-
(0,
|
|
7647
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'aria-label', this.state.tooltip);
|
|
7493
7648
|
}
|
|
7494
7649
|
onChangeTabIndex() {
|
|
7495
|
-
(0,
|
|
7650
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.attr)(this.container, 'tabindex', this.state.tabIndex);
|
|
7496
7651
|
}
|
|
7497
7652
|
onChangeIcon() {
|
|
7498
7653
|
const textIcons = this.get('j.o.textIcons');
|
|
7499
7654
|
if (textIcons === true ||
|
|
7500
|
-
((0,
|
|
7655
|
+
((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.isFunction)(textIcons) && textIcons(this.state.name))) {
|
|
7501
7656
|
return;
|
|
7502
7657
|
}
|
|
7503
|
-
|
|
7504
|
-
const iconElement =
|
|
7658
|
+
jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__/* .Dom.detach */ .i.detach(this.icon);
|
|
7659
|
+
const iconElement = jodit_core_ui__WEBPACK_IMPORTED_MODULE_0__/* .Icon.makeIcon */ .JO.makeIcon(this.j, this.state.icon);
|
|
7505
7660
|
iconElement && this.icon.appendChild(iconElement);
|
|
7506
7661
|
}
|
|
7507
7662
|
focus() {
|
|
@@ -7509,7 +7664,7 @@ let UIButton = class UIButton extends ui_element/* UIElement */.u {
|
|
|
7509
7664
|
}
|
|
7510
7665
|
isFocused() {
|
|
7511
7666
|
const { activeElement } = this.od;
|
|
7512
|
-
return Boolean(activeElement &&
|
|
7667
|
+
return Boolean(activeElement && jodit_core_dom__WEBPACK_IMPORTED_MODULE_1__/* .Dom.isOrContains */ .i.isOrContains(this.container, activeElement));
|
|
7513
7668
|
}
|
|
7514
7669
|
createContainer() {
|
|
7515
7670
|
const cn = this.componentName;
|
|
@@ -7541,53 +7696,53 @@ let UIButton = class UIButton extends ui_element/* UIElement */.u {
|
|
|
7541
7696
|
this.actionHandlers.forEach(callback => callback.call(this, e));
|
|
7542
7697
|
}
|
|
7543
7698
|
};
|
|
7544
|
-
(0,
|
|
7545
|
-
(0,
|
|
7699
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7700
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.size')
|
|
7546
7701
|
], UIButton.prototype, "onChangeSize", null);
|
|
7547
|
-
(0,
|
|
7548
|
-
(0,
|
|
7702
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7703
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.type')
|
|
7549
7704
|
], UIButton.prototype, "onChangeType", null);
|
|
7550
|
-
(0,
|
|
7551
|
-
(0,
|
|
7705
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7706
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('parentElement')
|
|
7552
7707
|
], UIButton.prototype, "updateSize", null);
|
|
7553
|
-
(0,
|
|
7554
|
-
(0,
|
|
7708
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7709
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.variant')
|
|
7555
7710
|
], UIButton.prototype, "onChangeStatus", null);
|
|
7556
|
-
(0,
|
|
7557
|
-
(0,
|
|
7711
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7712
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.text')
|
|
7558
7713
|
], UIButton.prototype, "onChangeText", null);
|
|
7559
|
-
(0,
|
|
7560
|
-
(0,
|
|
7714
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7715
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.text')
|
|
7561
7716
|
], UIButton.prototype, "onChangeTextSetMode", null);
|
|
7562
|
-
(0,
|
|
7563
|
-
(0,
|
|
7717
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7718
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.disabled')
|
|
7564
7719
|
], UIButton.prototype, "onChangeDisabled", null);
|
|
7565
|
-
(0,
|
|
7566
|
-
(0,
|
|
7720
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7721
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.activated')
|
|
7567
7722
|
], UIButton.prototype, "onChangeActivated", null);
|
|
7568
|
-
(0,
|
|
7569
|
-
(0,
|
|
7723
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7724
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.name')
|
|
7570
7725
|
], UIButton.prototype, "onChangeName", null);
|
|
7571
|
-
(0,
|
|
7572
|
-
(0,
|
|
7726
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7727
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.tooltip')
|
|
7573
7728
|
], UIButton.prototype, "onChangeTooltip", null);
|
|
7574
|
-
(0,
|
|
7575
|
-
(0,
|
|
7729
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7730
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.tabIndex')
|
|
7576
7731
|
], UIButton.prototype, "onChangeTabIndex", null);
|
|
7577
|
-
(0,
|
|
7578
|
-
(0,
|
|
7732
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7733
|
+
(0,jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.watch)('state.icon')
|
|
7579
7734
|
], UIButton.prototype, "onChangeIcon", null);
|
|
7580
|
-
(0,
|
|
7581
|
-
|
|
7735
|
+
(0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7736
|
+
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.autobind
|
|
7582
7737
|
], UIButton.prototype, "onActionFire", null);
|
|
7583
|
-
UIButton = (0,
|
|
7584
|
-
|
|
7738
|
+
UIButton = (0,tslib__WEBPACK_IMPORTED_MODULE_5__/* .__decorate */ .gn)([
|
|
7739
|
+
jodit_core_decorators__WEBPACK_IMPORTED_MODULE_3__.component
|
|
7585
7740
|
], UIButton);
|
|
7586
7741
|
|
|
7587
7742
|
function Button(jodit, stateOrText, text, variant) {
|
|
7588
7743
|
const button = new UIButton(jodit);
|
|
7589
7744
|
button.state.tabIndex = jodit.o.allowTabNavigation ? 0 : -1;
|
|
7590
|
-
if ((0,
|
|
7745
|
+
if ((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_2__.isString)(stateOrText)) {
|
|
7591
7746
|
button.state.icon.name = stateOrText;
|
|
7592
7747
|
button.state.name = stateOrText;
|
|
7593
7748
|
if (variant) {
|
|
@@ -7603,85 +7758,9 @@ function Button(jodit, stateOrText, text, variant) {
|
|
|
7603
7758
|
return button;
|
|
7604
7759
|
}
|
|
7605
7760
|
|
|
7606
|
-
;// CONCATENATED MODULE: ./src/core/ui/button/group/group.ts
|
|
7607
|
-
/*!
|
|
7608
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7609
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7610
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7611
|
-
*/
|
|
7612
|
-
|
|
7613
|
-
|
|
7614
|
-
|
|
7615
|
-
|
|
7616
|
-
|
|
7617
|
-
let UIButtonGroup = class UIButtonGroup extends group/* UIGroup */.qe {
|
|
7618
|
-
constructor(jodit, options = {
|
|
7619
|
-
radio: true
|
|
7620
|
-
}) {
|
|
7621
|
-
var _a, _b;
|
|
7622
|
-
super(jodit, (_a = options.options) === null || _a === void 0 ? void 0 : _a.map(opt => {
|
|
7623
|
-
const btn = new UIButton(jodit, {
|
|
7624
|
-
text: opt.text,
|
|
7625
|
-
value: opt.value,
|
|
7626
|
-
variant: 'primary'
|
|
7627
|
-
});
|
|
7628
|
-
btn.onAction(() => {
|
|
7629
|
-
this.select(opt.value);
|
|
7630
|
-
});
|
|
7631
|
-
return btn;
|
|
7632
|
-
}), options);
|
|
7633
|
-
this.options = options;
|
|
7634
|
-
this.select((_b = options.value) !== null && _b !== void 0 ? _b : 0);
|
|
7635
|
-
}
|
|
7636
|
-
className() {
|
|
7637
|
-
return 'UIButtonGroup';
|
|
7638
|
-
}
|
|
7639
|
-
render(options) {
|
|
7640
|
-
return `<div>
|
|
7641
|
-
<div class="&__label">~${options.label}~</div>
|
|
7642
|
-
<div class="&__options"></div>
|
|
7643
|
-
</div>`;
|
|
7644
|
-
}
|
|
7645
|
-
appendChildToContainer(childContainer) {
|
|
7646
|
-
this.getElm('options').appendChild(childContainer);
|
|
7647
|
-
}
|
|
7648
|
-
select(indexOrValue) {
|
|
7649
|
-
var _a, _b;
|
|
7650
|
-
this.elements.forEach((elm, index) => {
|
|
7651
|
-
if (index === indexOrValue || elm.state.value === indexOrValue) {
|
|
7652
|
-
elm.state.activated = true;
|
|
7653
|
-
}
|
|
7654
|
-
else if (this.options.radio) {
|
|
7655
|
-
elm.state.activated = false;
|
|
7656
|
-
}
|
|
7657
|
-
});
|
|
7658
|
-
const result = this.elements
|
|
7659
|
-
.filter(elm => elm.state.activated)
|
|
7660
|
-
.map(elm => ({
|
|
7661
|
-
text: elm.state.text,
|
|
7662
|
-
value: elm.state.value
|
|
7663
|
-
}));
|
|
7664
|
-
this.jodit.e.fire(this, 'select', result);
|
|
7665
|
-
(_b = (_a = this.options).onChange) === null || _b === void 0 ? void 0 : _b.call(_a, result);
|
|
7666
|
-
}
|
|
7667
|
-
};
|
|
7668
|
-
UIButtonGroup = (0,tslib_es6/* __decorate */.gn)([
|
|
7669
|
-
decorators.component
|
|
7670
|
-
], UIButtonGroup);
|
|
7671
|
-
|
|
7672
|
-
|
|
7673
|
-
;// CONCATENATED MODULE: ./src/core/ui/button/index.ts
|
|
7674
|
-
/*!
|
|
7675
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7676
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7677
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7678
|
-
*/
|
|
7679
|
-
|
|
7680
|
-
|
|
7681
|
-
|
|
7682
7761
|
|
|
7683
7762
|
/***/ }),
|
|
7684
|
-
/*
|
|
7763
|
+
/* 41 */
|
|
7685
7764
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7686
7765
|
|
|
7687
7766
|
"use strict";
|
|
@@ -7698,7 +7777,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
7698
7777
|
// EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
|
|
7699
7778
|
var tslib_es6 = __webpack_require__(25);
|
|
7700
7779
|
// EXTERNAL MODULE: ./src/core/ui/element.ts
|
|
7701
|
-
var ui_element = __webpack_require__(
|
|
7780
|
+
var ui_element = __webpack_require__(36);
|
|
7702
7781
|
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
7703
7782
|
var decorators = __webpack_require__(17);
|
|
7704
7783
|
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 16 modules
|
|
@@ -7766,7 +7845,9 @@ let UIGroup = UIGroup_1 = class UIGroup extends ui_element/* UIElement */.u {
|
|
|
7766
7845
|
elm.container.classList.add(this.getFullElName(elm.name));
|
|
7767
7846
|
}
|
|
7768
7847
|
if (distElement) {
|
|
7769
|
-
this.getElm(distElement)
|
|
7848
|
+
const distElm = this.getElm(distElement);
|
|
7849
|
+
(0,helpers.assert)(distElm != null, 'Element does not exist');
|
|
7850
|
+
distElm.appendChild(elm.container);
|
|
7770
7851
|
}
|
|
7771
7852
|
else {
|
|
7772
7853
|
this.appendChildToContainer(elm.container);
|
|
@@ -7811,10 +7892,8 @@ UIGroup = UIGroup_1 = (0,tslib_es6/* __decorate */.gn)([
|
|
|
7811
7892
|
], UIGroup);
|
|
7812
7893
|
|
|
7813
7894
|
|
|
7814
|
-
// EXTERNAL MODULE: ./src/core/ui/button/index.ts + 2 modules
|
|
7815
|
-
var ui_button = __webpack_require__(38);
|
|
7816
7895
|
// EXTERNAL MODULE: ./src/core/ui/helpers/get-control-type.ts
|
|
7817
|
-
var get_control_type = __webpack_require__(
|
|
7896
|
+
var get_control_type = __webpack_require__(42);
|
|
7818
7897
|
// EXTERNAL MODULE: ./src/config.ts
|
|
7819
7898
|
var config = __webpack_require__(1);
|
|
7820
7899
|
// EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
|
|
@@ -7839,7 +7918,7 @@ function getStrongControlTypes(items, controls) {
|
|
|
7839
7918
|
return elements.map(item => (0,get_control_type/* getControlType */.Y)(item, controls || config/* Config.defaultOptions.controls */.D.defaultOptions.controls));
|
|
7840
7919
|
}
|
|
7841
7920
|
|
|
7842
|
-
;// CONCATENATED MODULE: ./src/core/ui/group/
|
|
7921
|
+
;// CONCATENATED MODULE: ./src/core/ui/group/separator.ts
|
|
7843
7922
|
/*!
|
|
7844
7923
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7845
7924
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7848,17 +7927,19 @@ function getStrongControlTypes(items, controls) {
|
|
|
7848
7927
|
|
|
7849
7928
|
|
|
7850
7929
|
|
|
7851
|
-
let
|
|
7930
|
+
let UISeparator = class UISeparator extends ui_element/* UIElement */.u {
|
|
7852
7931
|
className() {
|
|
7853
|
-
return '
|
|
7932
|
+
return 'UISeparator';
|
|
7854
7933
|
}
|
|
7855
7934
|
};
|
|
7856
|
-
|
|
7935
|
+
UISeparator = (0,tslib_es6/* __decorate */.gn)([
|
|
7857
7936
|
decorators.component
|
|
7858
|
-
],
|
|
7937
|
+
], UISeparator);
|
|
7859
7938
|
|
|
7860
7939
|
|
|
7861
|
-
|
|
7940
|
+
// EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
|
|
7941
|
+
var ui = __webpack_require__(35);
|
|
7942
|
+
;// CONCATENATED MODULE: ./src/core/ui/group/spacer.ts
|
|
7862
7943
|
/*!
|
|
7863
7944
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7864
7945
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -7867,18 +7948,22 @@ UISpacer = (0,tslib_es6/* __decorate */.gn)([
|
|
|
7867
7948
|
|
|
7868
7949
|
|
|
7869
7950
|
|
|
7870
|
-
let
|
|
7951
|
+
let UISpacer = class UISpacer extends ui/* UIElement */.u1 {
|
|
7871
7952
|
className() {
|
|
7872
|
-
return '
|
|
7953
|
+
return 'UISpacer';
|
|
7873
7954
|
}
|
|
7874
7955
|
};
|
|
7875
|
-
|
|
7956
|
+
UISpacer = (0,tslib_es6/* __decorate */.gn)([
|
|
7876
7957
|
decorators.component
|
|
7877
|
-
],
|
|
7958
|
+
], UISpacer);
|
|
7878
7959
|
|
|
7879
7960
|
|
|
7961
|
+
// EXTERNAL MODULE: ./src/core/ui/button/button/button.ts
|
|
7962
|
+
var button_button = __webpack_require__(40);
|
|
7880
7963
|
// EXTERNAL MODULE: ./src/core/ui/helpers/buttons.ts
|
|
7881
|
-
var buttons = __webpack_require__(
|
|
7964
|
+
var buttons = __webpack_require__(43);
|
|
7965
|
+
// EXTERNAL MODULE: ./src/core/helpers/array/index.ts + 1 modules
|
|
7966
|
+
var array = __webpack_require__(33);
|
|
7882
7967
|
;// CONCATENATED MODULE: ./src/core/ui/group/list.ts
|
|
7883
7968
|
/*!
|
|
7884
7969
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -7913,11 +7998,11 @@ let UIList = class UIList extends UIGroup {
|
|
|
7913
7998
|
return new UIGroup(this.jodit);
|
|
7914
7999
|
}
|
|
7915
8000
|
get buttons() {
|
|
7916
|
-
return this.allChildren.filter(elm => elm instanceof
|
|
8001
|
+
return this.allChildren.filter(elm => elm instanceof button_button/* UIButton */.y3);
|
|
7917
8002
|
}
|
|
7918
8003
|
getButtonsNames() {
|
|
7919
8004
|
return this.buttons
|
|
7920
|
-
.map(a => (a instanceof
|
|
8005
|
+
.map(a => (a instanceof button_button/* UIButton */.y3 && a.state.name) || '')
|
|
7921
8006
|
.filter(a => a !== '');
|
|
7922
8007
|
}
|
|
7923
8008
|
setRemoveButtons(removeButtons) {
|
|
@@ -7925,7 +8010,7 @@ let UIList = class UIList extends UIGroup {
|
|
|
7925
8010
|
return this;
|
|
7926
8011
|
}
|
|
7927
8012
|
build(items, target = null) {
|
|
7928
|
-
items = (0,
|
|
8013
|
+
items = (0,array/* splitArray */.C1)(items);
|
|
7929
8014
|
this.clear();
|
|
7930
8015
|
let lastBtnSeparator = false;
|
|
7931
8016
|
let line = this.makeGroup();
|
|
@@ -7983,6 +8068,10 @@ let UIList = class UIList extends UIGroup {
|
|
|
7983
8068
|
}
|
|
7984
8069
|
}
|
|
7985
8070
|
else {
|
|
8071
|
+
if (!group) {
|
|
8072
|
+
group = this.makeGroup();
|
|
8073
|
+
line.append(group);
|
|
8074
|
+
}
|
|
7986
8075
|
const control = (0,get_control_type/* getControlType */.Y)(item, this.j.o.controls);
|
|
7987
8076
|
isNotRemoved(control) && addButton(control);
|
|
7988
8077
|
}
|
|
@@ -7991,7 +8080,7 @@ let UIList = class UIList extends UIGroup {
|
|
|
7991
8080
|
return this;
|
|
7992
8081
|
}
|
|
7993
8082
|
makeButton(control, target) {
|
|
7994
|
-
return new
|
|
8083
|
+
return new button_button/* UIButton */.y3(this.j);
|
|
7995
8084
|
}
|
|
7996
8085
|
};
|
|
7997
8086
|
(0,tslib_es6/* __decorate */.gn)([
|
|
@@ -8015,7 +8104,7 @@ UIList = (0,tslib_es6/* __decorate */.gn)([
|
|
|
8015
8104
|
|
|
8016
8105
|
|
|
8017
8106
|
/***/ }),
|
|
8018
|
-
/*
|
|
8107
|
+
/* 42 */
|
|
8019
8108
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8020
8109
|
|
|
8021
8110
|
"use strict";
|
|
@@ -8023,8 +8112,8 @@ UIList = (0,tslib_es6/* __decorate */.gn)([
|
|
|
8023
8112
|
/* harmony export */ "Y": function() { return /* binding */ getControlType; },
|
|
8024
8113
|
/* harmony export */ "z": function() { return /* binding */ findControlType; }
|
|
8025
8114
|
/* harmony export */ });
|
|
8026
|
-
/* harmony import */ var
|
|
8027
|
-
/* harmony import */ var
|
|
8115
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8);
|
|
8116
|
+
/* harmony import */ var jodit_config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
8028
8117
|
/*!
|
|
8029
8118
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8030
8119
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -8035,14 +8124,14 @@ UIList = (0,tslib_es6/* __decorate */.gn)([
|
|
|
8035
8124
|
function getControlType(button, controls) {
|
|
8036
8125
|
let buttonControl;
|
|
8037
8126
|
if (!controls) {
|
|
8038
|
-
controls =
|
|
8127
|
+
controls = jodit_config__WEBPACK_IMPORTED_MODULE_1__/* .Config.defaultOptions.controls */ .D.defaultOptions.controls;
|
|
8039
8128
|
}
|
|
8040
|
-
if (!(0,
|
|
8041
|
-
buttonControl = { name: 'empty', ...(0,
|
|
8129
|
+
if (!(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.isString)(button)) {
|
|
8130
|
+
buttonControl = { name: 'empty', ...(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.ConfigFlatten)(button) };
|
|
8042
8131
|
if (controls[buttonControl.name] !== undefined) {
|
|
8043
8132
|
buttonControl = {
|
|
8044
|
-
...(0,
|
|
8045
|
-
...(0,
|
|
8133
|
+
...(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.ConfigFlatten)(controls[buttonControl.name]),
|
|
8134
|
+
...(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.ConfigFlatten)(buttonControl)
|
|
8046
8135
|
};
|
|
8047
8136
|
}
|
|
8048
8137
|
}
|
|
@@ -8069,14 +8158,14 @@ function findControlType(path, controls) {
|
|
|
8069
8158
|
return store[key]
|
|
8070
8159
|
? {
|
|
8071
8160
|
name: key,
|
|
8072
|
-
...(0,
|
|
8161
|
+
...(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.ConfigFlatten)(store[key])
|
|
8073
8162
|
}
|
|
8074
8163
|
: undefined;
|
|
8075
8164
|
}
|
|
8076
8165
|
|
|
8077
8166
|
|
|
8078
8167
|
/***/ }),
|
|
8079
|
-
/*
|
|
8168
|
+
/* 43 */
|
|
8080
8169
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8081
8170
|
|
|
8082
8171
|
"use strict";
|
|
@@ -8084,7 +8173,7 @@ function findControlType(path, controls) {
|
|
|
8084
8173
|
/* harmony export */ "A": function() { return /* binding */ isButtonGroup; },
|
|
8085
8174
|
/* harmony export */ "q": function() { return /* binding */ flatButtonsSet; }
|
|
8086
8175
|
/* harmony export */ });
|
|
8087
|
-
/* harmony import */ var
|
|
8176
|
+
/* harmony import */ var jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(18);
|
|
8088
8177
|
/*!
|
|
8089
8178
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8090
8179
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -8092,7 +8181,7 @@ function findControlType(path, controls) {
|
|
|
8092
8181
|
*/
|
|
8093
8182
|
|
|
8094
8183
|
const isButtonGroup = (item) => {
|
|
8095
|
-
return (0,
|
|
8184
|
+
return (0,jodit_core_helpers_checker__WEBPACK_IMPORTED_MODULE_0__/* .isArray */ .kJ)(item.buttons);
|
|
8096
8185
|
};
|
|
8097
8186
|
function flatButtonsSet(buttons, jodit) {
|
|
8098
8187
|
const groups = jodit.getRegisteredButtonGroups();
|
|
@@ -8113,7 +8202,7 @@ function flatButtonsSet(buttons, jodit) {
|
|
|
8113
8202
|
|
|
8114
8203
|
|
|
8115
8204
|
/***/ }),
|
|
8116
|
-
/*
|
|
8205
|
+
/* 44 */
|
|
8117
8206
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8118
8207
|
|
|
8119
8208
|
"use strict";
|
|
@@ -8131,8 +8220,8 @@ var dom = __webpack_require__(15);
|
|
|
8131
8220
|
var helpers = __webpack_require__(8);
|
|
8132
8221
|
// EXTERNAL MODULE: ./src/core/global.ts
|
|
8133
8222
|
var global = __webpack_require__(13);
|
|
8134
|
-
// EXTERNAL MODULE: ./src/core/ui/
|
|
8135
|
-
var
|
|
8223
|
+
// EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
|
|
8224
|
+
var ui = __webpack_require__(35);
|
|
8136
8225
|
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
8137
8226
|
var decorators = __webpack_require__(17);
|
|
8138
8227
|
;// CONCATENATED MODULE: ./src/core/ui/popup/popup.ts
|
|
@@ -8148,7 +8237,7 @@ var decorators = __webpack_require__(17);
|
|
|
8148
8237
|
|
|
8149
8238
|
|
|
8150
8239
|
|
|
8151
|
-
class Popup extends
|
|
8240
|
+
class Popup extends ui/* UIElement */.u1 {
|
|
8152
8241
|
constructor(jodit, smart = true) {
|
|
8153
8242
|
super(jodit);
|
|
8154
8243
|
this.smart = smart;
|
|
@@ -8186,7 +8275,7 @@ class Popup extends ui_element/* UIElement */.u {
|
|
|
8186
8275
|
dom/* Dom.detach */.i.detach(this.container);
|
|
8187
8276
|
const box = this.j.c.div(`${this.componentName}__content`);
|
|
8188
8277
|
let elm;
|
|
8189
|
-
if (content instanceof
|
|
8278
|
+
if (content instanceof ui/* UIElement */.u1) {
|
|
8190
8279
|
elm = content.container;
|
|
8191
8280
|
content.parentElement = this;
|
|
8192
8281
|
}
|
|
@@ -8242,7 +8331,7 @@ class Popup extends ui_element/* UIElement */.u {
|
|
|
8242
8331
|
return;
|
|
8243
8332
|
}
|
|
8244
8333
|
if (!pe.parentElement && pe.container.parentElement) {
|
|
8245
|
-
const elm =
|
|
8334
|
+
const elm = ui/* UIElement.closestElement */.u1.closestElement(pe.container.parentElement, ui/* UIElement */.u1);
|
|
8246
8335
|
if (elm) {
|
|
8247
8336
|
pe = elm;
|
|
8248
8337
|
continue;
|
|
@@ -8347,16 +8436,15 @@ class Popup extends ui_element/* UIElement */.u {
|
|
|
8347
8436
|
return this;
|
|
8348
8437
|
}
|
|
8349
8438
|
closeOnOutsideClick(e) {
|
|
8350
|
-
var _a;
|
|
8351
8439
|
if (!this.isOpened) {
|
|
8352
8440
|
return;
|
|
8353
8441
|
}
|
|
8354
|
-
const target = (
|
|
8442
|
+
const target = ((0,helpers.isFunction)(e.composedPath) && e.composedPath()[0]) || e.target;
|
|
8355
8443
|
if (!target) {
|
|
8356
8444
|
this.close();
|
|
8357
8445
|
return;
|
|
8358
8446
|
}
|
|
8359
|
-
const box =
|
|
8447
|
+
const box = ui/* UIElement.closestElement */.u1.closestElement(target, Popup);
|
|
8360
8448
|
if (box && (this === box || box.closest(this))) {
|
|
8361
8449
|
return;
|
|
8362
8450
|
}
|
|
@@ -8432,7 +8520,7 @@ class Popup extends ui_element/* UIElement */.u {
|
|
|
8432
8520
|
|
|
8433
8521
|
|
|
8434
8522
|
/***/ }),
|
|
8435
|
-
/*
|
|
8523
|
+
/* 45 */
|
|
8436
8524
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8437
8525
|
|
|
8438
8526
|
"use strict";
|
|
@@ -8458,18 +8546,84 @@ __webpack_require__.d(input_namespaceObject, {
|
|
|
8458
8546
|
|
|
8459
8547
|
// EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
|
|
8460
8548
|
var tslib_es6 = __webpack_require__(25);
|
|
8461
|
-
// EXTERNAL MODULE: ./src/core/ui/
|
|
8462
|
-
var
|
|
8549
|
+
// EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
|
|
8550
|
+
var ui = __webpack_require__(35);
|
|
8551
|
+
// EXTERNAL MODULE: ./src/core/helpers/utils/index.ts + 18 modules
|
|
8552
|
+
var utils = __webpack_require__(9);
|
|
8553
|
+
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
8554
|
+
var decorators = __webpack_require__(17);
|
|
8555
|
+
;// CONCATENATED MODULE: ./src/core/ui/form/form.ts
|
|
8556
|
+
/*!
|
|
8557
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8558
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8559
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8560
|
+
*/
|
|
8561
|
+
|
|
8562
|
+
|
|
8563
|
+
|
|
8564
|
+
|
|
8565
|
+
let UIForm = class UIForm extends ui/* UIGroup */.qe {
|
|
8566
|
+
constructor(...args) {
|
|
8567
|
+
var _a, _b;
|
|
8568
|
+
super(...args);
|
|
8569
|
+
if ((_a = this.options) === null || _a === void 0 ? void 0 : _a.className) {
|
|
8570
|
+
this.container.classList.add((_b = this.options) === null || _b === void 0 ? void 0 : _b.className);
|
|
8571
|
+
}
|
|
8572
|
+
}
|
|
8573
|
+
className() {
|
|
8574
|
+
return 'UIForm';
|
|
8575
|
+
}
|
|
8576
|
+
submit() {
|
|
8577
|
+
this.j.e.fire(this.container, 'submit');
|
|
8578
|
+
}
|
|
8579
|
+
validate() {
|
|
8580
|
+
const inputs = this.allChildren.filter(elm => elm instanceof ui/* UIInput */.u3);
|
|
8581
|
+
for (const input of inputs) {
|
|
8582
|
+
if (!input.validate()) {
|
|
8583
|
+
return false;
|
|
8584
|
+
}
|
|
8585
|
+
}
|
|
8586
|
+
const selects = this.allChildren.filter(elm => elm instanceof ui/* UISelect */.Cj);
|
|
8587
|
+
for (const select of selects) {
|
|
8588
|
+
if (!select.validate()) {
|
|
8589
|
+
return false;
|
|
8590
|
+
}
|
|
8591
|
+
}
|
|
8592
|
+
return true;
|
|
8593
|
+
}
|
|
8594
|
+
onSubmit(handler) {
|
|
8595
|
+
this.j.e.on(this.container, 'submit', () => {
|
|
8596
|
+
const inputs = this.allChildren.filter(elm => elm instanceof ui/* UIInput */.u3);
|
|
8597
|
+
if (!this.validate()) {
|
|
8598
|
+
return false;
|
|
8599
|
+
}
|
|
8600
|
+
handler(inputs.reduce((res, item) => {
|
|
8601
|
+
res[item.state.name] = item.value;
|
|
8602
|
+
return res;
|
|
8603
|
+
}, {}));
|
|
8604
|
+
return false;
|
|
8605
|
+
});
|
|
8606
|
+
}
|
|
8607
|
+
createContainer() {
|
|
8608
|
+
const form = this.j.c.element('form');
|
|
8609
|
+
form.classList.add(this.componentName);
|
|
8610
|
+
(0,utils/* attr */.Lj)(form, 'dir', this.j.o.direction || 'auto');
|
|
8611
|
+
return form;
|
|
8612
|
+
}
|
|
8613
|
+
};
|
|
8614
|
+
UIForm = (0,tslib_es6/* __decorate */.gn)([
|
|
8615
|
+
decorators.component
|
|
8616
|
+
], UIForm);
|
|
8617
|
+
|
|
8618
|
+
|
|
8463
8619
|
// EXTERNAL MODULE: ./src/core/ui/element.ts
|
|
8464
|
-
var ui_element = __webpack_require__(
|
|
8620
|
+
var ui_element = __webpack_require__(36);
|
|
8465
8621
|
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 16 modules
|
|
8466
8622
|
var helpers = __webpack_require__(8);
|
|
8467
8623
|
// EXTERNAL MODULE: ./src/core/dom/index.ts + 1 modules
|
|
8468
8624
|
var dom = __webpack_require__(15);
|
|
8469
|
-
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
8470
|
-
var decorators = __webpack_require__(17);
|
|
8471
8625
|
// EXTERNAL MODULE: ./src/core/ui/icon.ts
|
|
8472
|
-
var ui_icon = __webpack_require__(
|
|
8626
|
+
var ui_icon = __webpack_require__(38);
|
|
8473
8627
|
;// CONCATENATED MODULE: ./src/core/ui/form/validators/input.ts
|
|
8474
8628
|
/*!
|
|
8475
8629
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -8902,8 +9056,8 @@ UISelect = UISelect_1 = (0,tslib_es6/* __decorate */.gn)([
|
|
|
8902
9056
|
], UISelect);
|
|
8903
9057
|
|
|
8904
9058
|
|
|
8905
|
-
// EXTERNAL MODULE: ./src/core/ui/button/index.ts +
|
|
8906
|
-
var ui_button = __webpack_require__(
|
|
9059
|
+
// EXTERNAL MODULE: ./src/core/ui/button/index.ts + 1 modules
|
|
9060
|
+
var ui_button = __webpack_require__(39);
|
|
8907
9061
|
;// CONCATENATED MODULE: ./src/core/ui/form/inputs/file/file.ts
|
|
8908
9062
|
/*!
|
|
8909
9063
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -8973,73 +9127,8 @@ UIFileInput = (0,tslib_es6/* __decorate */.gn)([
|
|
|
8973
9127
|
|
|
8974
9128
|
|
|
8975
9129
|
|
|
8976
|
-
// EXTERNAL MODULE: ./src/core/
|
|
8977
|
-
var
|
|
8978
|
-
;// CONCATENATED MODULE: ./src/core/ui/form/form.ts
|
|
8979
|
-
/*!
|
|
8980
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
8981
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
8982
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
8983
|
-
*/
|
|
8984
|
-
|
|
8985
|
-
|
|
8986
|
-
|
|
8987
|
-
|
|
8988
|
-
|
|
8989
|
-
let UIForm = class UIForm extends group/* UIGroup */.qe {
|
|
8990
|
-
constructor(...args) {
|
|
8991
|
-
var _a, _b;
|
|
8992
|
-
super(...args);
|
|
8993
|
-
if ((_a = this.options) === null || _a === void 0 ? void 0 : _a.className) {
|
|
8994
|
-
this.container.classList.add((_b = this.options) === null || _b === void 0 ? void 0 : _b.className);
|
|
8995
|
-
}
|
|
8996
|
-
}
|
|
8997
|
-
className() {
|
|
8998
|
-
return 'UIForm';
|
|
8999
|
-
}
|
|
9000
|
-
submit() {
|
|
9001
|
-
this.j.e.fire(this.container, 'submit');
|
|
9002
|
-
}
|
|
9003
|
-
validate() {
|
|
9004
|
-
const inputs = this.allChildren.filter(elm => elm instanceof UIInput);
|
|
9005
|
-
for (const input of inputs) {
|
|
9006
|
-
if (!input.validate()) {
|
|
9007
|
-
return false;
|
|
9008
|
-
}
|
|
9009
|
-
}
|
|
9010
|
-
const selects = this.allChildren.filter(elm => elm instanceof UISelect);
|
|
9011
|
-
for (const select of selects) {
|
|
9012
|
-
if (!select.validate()) {
|
|
9013
|
-
return false;
|
|
9014
|
-
}
|
|
9015
|
-
}
|
|
9016
|
-
return true;
|
|
9017
|
-
}
|
|
9018
|
-
onSubmit(handler) {
|
|
9019
|
-
this.j.e.on(this.container, 'submit', () => {
|
|
9020
|
-
const inputs = this.allChildren.filter(elm => elm instanceof UIInput);
|
|
9021
|
-
if (!this.validate()) {
|
|
9022
|
-
return false;
|
|
9023
|
-
}
|
|
9024
|
-
handler(inputs.reduce((res, item) => {
|
|
9025
|
-
res[item.state.name] = item.value;
|
|
9026
|
-
return res;
|
|
9027
|
-
}, {}));
|
|
9028
|
-
return false;
|
|
9029
|
-
});
|
|
9030
|
-
}
|
|
9031
|
-
createContainer() {
|
|
9032
|
-
const form = this.j.c.element('form');
|
|
9033
|
-
form.classList.add(this.componentName);
|
|
9034
|
-
(0,utils/* attr */.Lj)(form, 'dir', this.j.o.direction || 'auto');
|
|
9035
|
-
return form;
|
|
9036
|
-
}
|
|
9037
|
-
};
|
|
9038
|
-
UIForm = (0,tslib_es6/* __decorate */.gn)([
|
|
9039
|
-
decorators.component
|
|
9040
|
-
], UIForm);
|
|
9041
|
-
|
|
9042
|
-
|
|
9130
|
+
// EXTERNAL MODULE: ./src/core/ui/group/index.ts + 5 modules
|
|
9131
|
+
var group = __webpack_require__(41);
|
|
9043
9132
|
;// CONCATENATED MODULE: ./src/core/ui/form/block/block.ts
|
|
9044
9133
|
/*!
|
|
9045
9134
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -9084,7 +9173,7 @@ UIBlock = (0,tslib_es6/* __decorate */.gn)([
|
|
|
9084
9173
|
|
|
9085
9174
|
|
|
9086
9175
|
/***/ }),
|
|
9087
|
-
/*
|
|
9176
|
+
/* 46 */
|
|
9088
9177
|
/***/ (function(module) {
|
|
9089
9178
|
|
|
9090
9179
|
/*!
|
|
@@ -9101,13 +9190,13 @@ module.exports = {
|
|
|
9101
9190
|
|
|
9102
9191
|
|
|
9103
9192
|
/***/ }),
|
|
9104
|
-
/*
|
|
9193
|
+
/* 47 */
|
|
9105
9194
|
/***/ (function(module) {
|
|
9106
9195
|
|
|
9107
9196
|
module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M36 4h-24c-2.21 0-4 1.79-4 4v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-32c0-2.21-1.79-4-4-4zm-24 4h10v16l-5-3-5 3v-16z\"/> </svg>"
|
|
9108
9197
|
|
|
9109
9198
|
/***/ }),
|
|
9110
|
-
/*
|
|
9199
|
+
/* 48 */
|
|
9111
9200
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9112
9201
|
|
|
9113
9202
|
"use strict";
|
|
@@ -9122,7 +9211,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
9122
9211
|
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 16 modules
|
|
9123
9212
|
var helpers = __webpack_require__(8);
|
|
9124
9213
|
// EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
|
|
9125
|
-
var ui = __webpack_require__(
|
|
9214
|
+
var ui = __webpack_require__(35);
|
|
9126
9215
|
// EXTERNAL MODULE: ./src/core/dom/index.ts + 1 modules
|
|
9127
9216
|
var dom = __webpack_require__(15);
|
|
9128
9217
|
;// CONCATENATED MODULE: ./src/modules/widget/color-picker/color-picker.ts
|
|
@@ -9376,14 +9465,14 @@ const FileSelectorWidget = (editor, callbacks, elm, close, isImage = true) => {
|
|
|
9376
9465
|
|
|
9377
9466
|
|
|
9378
9467
|
/***/ }),
|
|
9379
|
-
/*
|
|
9468
|
+
/* 49 */
|
|
9380
9469
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9381
9470
|
|
|
9382
9471
|
"use strict";
|
|
9383
9472
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9384
9473
|
/* harmony export */ "z": function() { return /* binding */ hAlignElement; }
|
|
9385
9474
|
/* harmony export */ });
|
|
9386
|
-
/* harmony import */ var
|
|
9475
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8);
|
|
9387
9476
|
/*!
|
|
9388
9477
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9389
9478
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -9393,11 +9482,11 @@ const FileSelectorWidget = (editor, callbacks, elm, close, isImage = true) => {
|
|
|
9393
9482
|
const hAlignElement = (image, align) => {
|
|
9394
9483
|
if (align && align !== 'normal') {
|
|
9395
9484
|
if (align !== 'center') {
|
|
9396
|
-
(0,
|
|
9397
|
-
(0,
|
|
9485
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.css)(image, 'float', align);
|
|
9486
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.clearCenterAlign)(image);
|
|
9398
9487
|
}
|
|
9399
9488
|
else {
|
|
9400
|
-
(0,
|
|
9489
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.css)(image, {
|
|
9401
9490
|
float: '',
|
|
9402
9491
|
display: 'block',
|
|
9403
9492
|
marginLeft: 'auto',
|
|
@@ -9406,17 +9495,17 @@ const hAlignElement = (image, align) => {
|
|
|
9406
9495
|
}
|
|
9407
9496
|
}
|
|
9408
9497
|
else {
|
|
9409
|
-
if ((0,
|
|
9410
|
-
['right', 'left'].indexOf((0,
|
|
9411
|
-
(0,
|
|
9498
|
+
if ((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.css)(image, 'float') &&
|
|
9499
|
+
['right', 'left'].indexOf((0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.css)(image, 'float').toString().toLowerCase()) !== -1) {
|
|
9500
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.css)(image, 'float', '');
|
|
9412
9501
|
}
|
|
9413
|
-
(0,
|
|
9502
|
+
(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_0__.clearCenterAlign)(image);
|
|
9414
9503
|
}
|
|
9415
9504
|
};
|
|
9416
9505
|
|
|
9417
9506
|
|
|
9418
9507
|
/***/ }),
|
|
9419
|
-
/*
|
|
9508
|
+
/* 50 */
|
|
9420
9509
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9421
9510
|
|
|
9422
9511
|
"use strict";
|
|
@@ -9450,7 +9539,7 @@ const hAlignElement = (image, align) => {
|
|
|
9450
9539
|
|
|
9451
9540
|
|
|
9452
9541
|
/***/ }),
|
|
9453
|
-
/*
|
|
9542
|
+
/* 51 */
|
|
9454
9543
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9455
9544
|
|
|
9456
9545
|
"use strict";
|
|
@@ -9460,7 +9549,7 @@ const hAlignElement = (image, align) => {
|
|
|
9460
9549
|
/* harmony import */ var _core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(15);
|
|
9461
9550
|
/* harmony import */ var _core_helpers_checker__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(18);
|
|
9462
9551
|
/* harmony import */ var _core_helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(8);
|
|
9463
|
-
/* harmony import */ var _image_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
9552
|
+
/* harmony import */ var _image_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(49);
|
|
9464
9553
|
/*!
|
|
9465
9554
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9466
9555
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -9535,13 +9624,13 @@ const align = {
|
|
|
9535
9624
|
|
|
9536
9625
|
|
|
9537
9626
|
/***/ }),
|
|
9538
|
-
/*
|
|
9627
|
+
/* 52 */
|
|
9539
9628
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9540
9629
|
|
|
9541
9630
|
"use strict";
|
|
9542
9631
|
/* harmony import */ var _core_helpers_checker__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(18);
|
|
9543
9632
|
/* harmony import */ var _core_helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8);
|
|
9544
|
-
/* harmony import */ var _modules_widget__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
9633
|
+
/* harmony import */ var _modules_widget__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(48);
|
|
9545
9634
|
/*!
|
|
9546
9635
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9547
9636
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -9670,7 +9759,7 @@ const cmd = (control) => control.args && (0,_core_helpers_checker__WEBPACK_IMPOR
|
|
|
9670
9759
|
|
|
9671
9760
|
|
|
9672
9761
|
/***/ }),
|
|
9673
|
-
/*
|
|
9762
|
+
/* 53 */
|
|
9674
9763
|
/***/ (function(__unused_webpack_module, __webpack_exports__) {
|
|
9675
9764
|
|
|
9676
9765
|
"use strict";
|
|
@@ -9709,11 +9798,11 @@ const cmd = (control) => control.args && (0,_core_helpers_checker__WEBPACK_IMPOR
|
|
|
9709
9798
|
|
|
9710
9799
|
|
|
9711
9800
|
/***/ }),
|
|
9712
|
-
/*
|
|
9801
|
+
/* 54 */
|
|
9713
9802
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9714
9803
|
|
|
9715
9804
|
"use strict";
|
|
9716
|
-
/* harmony import */ var _img__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
9805
|
+
/* harmony import */ var _img__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(51);
|
|
9717
9806
|
/*!
|
|
9718
9807
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
9719
9808
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -9733,493 +9822,493 @@ const cmd = (control) => control.args && (0,_core_helpers_checker__WEBPACK_IMPOR
|
|
|
9733
9822
|
|
|
9734
9823
|
|
|
9735
9824
|
/***/ }),
|
|
9736
|
-
/*
|
|
9825
|
+
/* 55 */
|
|
9737
9826
|
/***/ (function(module) {
|
|
9738
9827
|
|
|
9739
9828
|
module.exports = "<svg viewBox=\"0 0 1792 1792\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M1088 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zm316-600q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z\"/> </svg>"
|
|
9740
9829
|
|
|
9741
9830
|
/***/ }),
|
|
9742
|
-
/*
|
|
9831
|
+
/* 56 */
|
|
9743
9832
|
/***/ (function(module) {
|
|
9744
9833
|
|
|
9745
9834
|
module.exports = "<svg viewBox=\"0 0 18.151 18.151\" xmlns=\"http://www.w3.org/2000/svg\"> <g> <path stroke-width=\"0\" d=\"M6.237,16.546H3.649V1.604h5.916v5.728c0.474-0.122,0.968-0.194,1.479-0.194 c0.042,0,0.083,0.006,0.125,0.006V0H2.044v18.15h5.934C7.295,17.736,6.704,17.19,6.237,16.546z\"/> <path stroke-width=\"0\" d=\"M11.169,8.275c-2.723,0-4.938,2.215-4.938,4.938s2.215,4.938,4.938,4.938s4.938-2.215,4.938-4.938 S13.892,8.275,11.169,8.275z M11.169,16.81c-1.983,0-3.598-1.612-3.598-3.598c0-1.983,1.614-3.597,3.598-3.597 s3.597,1.613,3.597,3.597C14.766,15.198,13.153,16.81,11.169,16.81z\"/> <polygon stroke-width=\"0\" points=\"11.792,11.073 10.502,11.073 10.502,12.578 9.03,12.578 9.03,13.868 10.502,13.868 10.502,15.352 11.792,15.352 11.792,13.868 13.309,13.868 13.309,12.578 11.792,12.578 \"/> </g> </svg>"
|
|
9746
9835
|
|
|
9747
9836
|
/***/ }),
|
|
9748
|
-
/*
|
|
9837
|
+
/* 57 */
|
|
9749
9838
|
/***/ (function(module) {
|
|
9750
9839
|
|
|
9751
9840
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 432 432\"> <g> <polygon points=\"203.688,96 0,96 0,144 155.688,144 \"/> <polygon points=\"155.719,288 0,288 0,336 203.719,336 \"/> <path d=\"M97.844,230.125c-3.701-3.703-5.856-8.906-5.856-14.141s2.154-10.438,5.856-14.141l9.844-9.844H0v48h107.719 L97.844,230.125z\"/> <polygon points=\"232,176 232,96 112,216 232,336 232,256 432,256 432,176\"/> </g> </svg>"
|
|
9752
9841
|
|
|
9753
9842
|
/***/ }),
|
|
9754
|
-
/*
|
|
9843
|
+
/* 58 */
|
|
9755
9844
|
/***/ (function(module) {
|
|
9756
9845
|
|
|
9757
9846
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z\"/> </svg>"
|
|
9758
9847
|
|
|
9759
9848
|
/***/ }),
|
|
9760
|
-
/*
|
|
9849
|
+
/* 59 */
|
|
9761
9850
|
/***/ (function(module) {
|
|
9762
9851
|
|
|
9763
9852
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1203 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z\"/> </svg>"
|
|
9764
9853
|
|
|
9765
9854
|
/***/ }),
|
|
9766
|
-
/*
|
|
9855
|
+
/* 60 */
|
|
9767
9856
|
/***/ (function(module) {
|
|
9768
9857
|
|
|
9769
9858
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1171 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z\"/> </svg>"
|
|
9770
9859
|
|
|
9771
9860
|
/***/ }),
|
|
9772
|
-
/*
|
|
9861
|
+
/* 61 */
|
|
9773
9862
|
/***/ (function(module) {
|
|
9774
9863
|
|
|
9775
9864
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z\"/> </svg>"
|
|
9776
9865
|
|
|
9777
9866
|
/***/ }),
|
|
9778
|
-
/*
|
|
9867
|
+
/* 62 */
|
|
9779
9868
|
/***/ (function(module) {
|
|
9780
9869
|
|
|
9781
9870
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1411 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z\"/> </svg>"
|
|
9782
9871
|
|
|
9783
9872
|
/***/ }),
|
|
9784
|
-
/*
|
|
9873
|
+
/* 63 */
|
|
9785
9874
|
/***/ (function(module) {
|
|
9786
9875
|
|
|
9787
9876
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z\"/> </svg>"
|
|
9788
9877
|
|
|
9789
9878
|
/***/ }),
|
|
9790
|
-
/*
|
|
9879
|
+
/* 64 */
|
|
9791
9880
|
/***/ (function(module) {
|
|
9792
9881
|
|
|
9793
9882
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1596 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z\"/> </svg>"
|
|
9794
9883
|
|
|
9795
9884
|
/***/ }),
|
|
9796
|
-
/*
|
|
9885
|
+
/* 65 */
|
|
9797
9886
|
/***/ (function(module) {
|
|
9798
9887
|
|
|
9799
9888
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M704 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm-544-992h448l-48-117q-7-9-17-11h-317q-10 2-17 11zm928 32v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z\"/> </svg>"
|
|
9800
9889
|
|
|
9801
9890
|
/***/ }),
|
|
9802
|
-
/*
|
|
9891
|
+
/* 66 */
|
|
9803
9892
|
/***/ (function(module) {
|
|
9804
9893
|
|
|
9805
9894
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M747 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-.5 159t-.5 158q0 8-1 67.5t-.5 96.5 4.5 83.5 12 66.5zm-14-746q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-.5 80t-.5 79q0 46 1 69zm-541 889l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5.5-34v-65.5q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68.5.5t67.5.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z\"/> </svg>"
|
|
9806
9895
|
|
|
9807
9896
|
/***/ }),
|
|
9808
|
-
/*
|
|
9897
|
+
/* 67 */
|
|
9809
9898
|
/***/ (function(module) {
|
|
9810
9899
|
|
|
9811
9900
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M896 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zm512-128q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z\"/> </svg>"
|
|
9812
9901
|
|
|
9813
9902
|
/***/ }),
|
|
9814
|
-
/*
|
|
9903
|
+
/* 68 */
|
|
9815
9904
|
/***/ (function(module) {
|
|
9816
9905
|
|
|
9817
9906
|
module.exports = "<svg viewBox=\"0 0 14 14\" xmlns=\"http://www.w3.org/2000/svg\"> <g stroke=\"none\" stroke-width=\"1\"> <path d=\"M14,1.4 L12.6,0 L7,5.6 L1.4,0 L0,1.4 L5.6,7 L0,12.6 L1.4,14 L7,8.4 L12.6,14 L14,12.6 L8.4,7 L14,1.4 Z\"/> </g> </svg>"
|
|
9818
9907
|
|
|
9819
9908
|
/***/ }),
|
|
9820
|
-
/*
|
|
9909
|
+
/* 69 */
|
|
9821
9910
|
/***/ (function(module) {
|
|
9822
9911
|
|
|
9823
9912
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z\"/> </svg>"
|
|
9824
9913
|
|
|
9825
9914
|
/***/ }),
|
|
9826
|
-
/*
|
|
9915
|
+
/* 70 */
|
|
9827
9916
|
/***/ (function(module) {
|
|
9828
9917
|
|
|
9829
9918
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z\"/> </svg>"
|
|
9830
9919
|
|
|
9831
9920
|
/***/ }),
|
|
9832
|
-
/*
|
|
9921
|
+
/* 71 */
|
|
9833
9922
|
/***/ (function(module) {
|
|
9834
9923
|
|
|
9835
9924
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1472 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zm231-489l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z\"/> </svg>"
|
|
9836
9925
|
|
|
9837
9926
|
/***/ }),
|
|
9838
|
-
/*
|
|
9927
|
+
/* 72 */
|
|
9839
9928
|
/***/ (function(module) {
|
|
9840
9929
|
|
|
9841
9930
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M813 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zm851-883v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z\"/></svg>"
|
|
9842
9931
|
|
|
9843
9932
|
/***/ }),
|
|
9844
|
-
/*
|
|
9933
|
+
/* 73 */
|
|
9845
9934
|
/***/ (function(module) {
|
|
9846
9935
|
|
|
9847
9936
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 10 10\"> <path d=\"M.941 4.523a.75.75 0 1 1 1.06-1.06l3.006 3.005 3.005-3.005a.75.75 0 1 1 1.06 1.06l-3.549 3.55a.75.75 0 0 1-1.168-.136L.941 4.523z\"/> </svg>"
|
|
9848
9937
|
|
|
9849
9938
|
/***/ }),
|
|
9850
|
-
/*
|
|
9939
|
+
/* 74 */
|
|
9851
9940
|
/***/ (function(module) {
|
|
9852
9941
|
|
|
9853
9942
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 16 16\"> <path stroke-width=\"0\" d=\"M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z\"/> </svg>"
|
|
9854
9943
|
|
|
9855
9944
|
/***/ }),
|
|
9856
|
-
/*
|
|
9945
|
+
/* 75 */
|
|
9857
9946
|
/***/ (function(module) {
|
|
9858
9947
|
|
|
9859
9948
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M621 1280h595v-595zm-45-45l595-595h-595v595zm1152 77v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z\"/> </svg>"
|
|
9860
9949
|
|
|
9861
9950
|
/***/ }),
|
|
9862
|
-
/*
|
|
9951
|
+
/* 76 */
|
|
9863
9952
|
/***/ (function(module) {
|
|
9864
9953
|
|
|
9865
9954
|
module.exports = "<svg viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M24.89,6.61H22.31V4.47A2.47,2.47,0,0,0,19.84,2H6.78A2.47,2.47,0,0,0,4.31,4.47V22.92a2.47,2.47,0,0,0,2.47,2.47H9.69V27.2a2.8,2.8,0,0,0,2.8,2.8h12.4a2.8,2.8,0,0,0,2.8-2.8V9.41A2.8,2.8,0,0,0,24.89,6.61ZM6.78,23.52a.61.61,0,0,1-.61-.6V4.47a.61.61,0,0,1,.61-.6H19.84a.61.61,0,0,1,.61.6V6.61h-8a2.8,2.8,0,0,0-2.8,2.8V23.52Zm19,3.68a.94.94,0,0,1-.94.93H12.49a.94.94,0,0,1-.94-.93V9.41a.94.94,0,0,1,.94-.93h12.4a.94.94,0,0,1,.94.93Z\"/> <path d=\"M23.49,13.53h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z\"/> <path d=\"M23.49,17.37h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z\"/> <path d=\"M23.49,21.22h-9.6a.93.93,0,1,0,0,1.86h9.6a.93.93,0,1,0,0-1.86Z\"/> </svg>"
|
|
9866
9955
|
|
|
9867
9956
|
/***/ }),
|
|
9868
|
-
/*
|
|
9957
|
+
/* 77 */
|
|
9869
9958
|
/***/ (function(module) {
|
|
9870
9959
|
|
|
9871
9960
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zm300 64l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zm-681-260q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zm-85 745q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zm178-613l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zm224 224l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zm704 416l128-64-520-408-177 138q-2 3-13 7z\"/> </svg>"
|
|
9872
9961
|
|
|
9873
9962
|
/***/ }),
|
|
9874
|
-
/*
|
|
9963
|
+
/* 78 */
|
|
9875
9964
|
/***/ (function(module) {
|
|
9876
9965
|
|
|
9877
9966
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
|
|
9878
9967
|
|
|
9879
9968
|
/***/ }),
|
|
9880
|
-
/*
|
|
9969
|
+
/* 79 */
|
|
9881
9970
|
/***/ (function(module) {
|
|
9882
9971
|
|
|
9883
9972
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\" > <circle cx=\"12\" cy=\"12\" r=\"2.2\"/> <circle cx=\"12\" cy=\"5\" r=\"2.2\"/> <circle cx=\"12\" cy=\"19\" r=\"2.2\"/> </svg>"
|
|
9884
9973
|
|
|
9885
9974
|
/***/ }),
|
|
9886
|
-
/*
|
|
9975
|
+
/* 80 */
|
|
9887
9976
|
/***/ (function(module) {
|
|
9888
9977
|
|
|
9889
9978
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 128 128\" xml:space=\"preserve\"> <polygon points=\"112.4560547,23.3203125 112.4560547,75.8154297 31.4853516,75.8154297 31.4853516,61.953125 16.0131836,72.6357422 0.5410156,83.3164063 16.0131836,93.9990234 31.4853516,104.6796875 31.4853516,90.8183594 112.4560547,90.8183594 112.4560547,90.8339844 127.4589844,90.8339844 127.4589844,23.3203125\"/> </svg>"
|
|
9890
9979
|
|
|
9891
9980
|
/***/ }),
|
|
9892
|
-
/*
|
|
9981
|
+
/* 81 */
|
|
9893
9982
|
/***/ (function(module) {
|
|
9894
9983
|
|
|
9895
9984
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M832 1408l336-384h-768l-336 384h768zm1013-1077q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z\"/> </svg>"
|
|
9896
9985
|
|
|
9897
9986
|
/***/ }),
|
|
9898
|
-
/*
|
|
9987
|
+
/* 82 */
|
|
9899
9988
|
/***/ (function(module) {
|
|
9900
9989
|
|
|
9901
9990
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zm-720-384q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z\"/> </svg>"
|
|
9902
9991
|
|
|
9903
9992
|
/***/ }),
|
|
9904
|
-
/*
|
|
9993
|
+
/* 83 */
|
|
9905
9994
|
/***/ (function(module) {
|
|
9906
9995
|
|
|
9907
9996
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1152 512v-472q22 14 36 28l408 408q14 14 28 36h-472zm-128 32q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z\"/> </svg>"
|
|
9908
9997
|
|
|
9909
9998
|
/***/ }),
|
|
9910
|
-
/*
|
|
9999
|
+
/* 84 */
|
|
9911
10000
|
/***/ (function(module) {
|
|
9912
10001
|
|
|
9913
10002
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1728 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z\"/> </svg>"
|
|
9914
10003
|
|
|
9915
10004
|
/***/ }),
|
|
9916
|
-
/*
|
|
10005
|
+
/* 85 */
|
|
9917
10006
|
/***/ (function(module) {
|
|
9918
10007
|
|
|
9919
10008
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M789 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zm-725 1105l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h128q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 4-.5 13t-.5 13q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z\"/> </svg>"
|
|
9920
10009
|
|
|
9921
10010
|
/***/ }),
|
|
9922
|
-
/*
|
|
10011
|
+
/* 86 */
|
|
9923
10012
|
/***/ (function(module) {
|
|
9924
10013
|
|
|
9925
10014
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zm-1663-1279l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5.5t107.5.5h293q6 0 21 .5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 .5t14 .5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-.5-16.5.5q-17 0-66.5-.5t-74.5-.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 .5-15.5t.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z\"/> </svg>"
|
|
9926
10015
|
|
|
9927
10016
|
/***/ }),
|
|
9928
|
-
/*
|
|
10017
|
+
/* 87 */
|
|
9929
10018
|
/***/ (function(module) {
|
|
9930
10019
|
|
|
9931
10020
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\"> <path stroke-width=\"0\" d=\"M22,20.6L3.4,2H8V0H0v8h2V3.4L20.6,22H16v2h8v-8h-2V20.6z M16,0v2h4.7l-6.3,6.3l1.4,1.4L22,3.5V8h2V0H16z M8.3,14.3L2,20.6V16H0v8h8v-2H3.5l6.3-6.3L8.3,14.3z\"/> </svg>"
|
|
9932
10021
|
|
|
9933
10022
|
/***/ }),
|
|
9934
|
-
/*
|
|
10023
|
+
/* 88 */
|
|
9935
10024
|
/***/ (function(module) {
|
|
9936
10025
|
|
|
9937
10026
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1600 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"/> </svg>"
|
|
9938
10027
|
|
|
9939
10028
|
/***/ }),
|
|
9940
|
-
/*
|
|
10029
|
+
/* 89 */
|
|
9941
10030
|
/***/ (function(module) {
|
|
9942
10031
|
|
|
9943
10032
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M576 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1024 384v448h-1408v-192l320-320 160 160 512-512zm96-704h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zm160 32v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z\"/> </svg>"
|
|
9944
10033
|
|
|
9945
10034
|
/***/ }),
|
|
9946
|
-
/*
|
|
10035
|
+
/* 90 */
|
|
9947
10036
|
/***/ (function(module) {
|
|
9948
10037
|
|
|
9949
10038
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zm1440 480v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
|
|
9950
10039
|
|
|
9951
10040
|
/***/ }),
|
|
9952
|
-
/*
|
|
10041
|
+
/* 91 */
|
|
9953
10042
|
/***/ (function(module) {
|
|
9954
10043
|
|
|
9955
10044
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1152 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z\"/> </svg>"
|
|
9956
10045
|
|
|
9957
10046
|
/***/ }),
|
|
9958
|
-
/*
|
|
10047
|
+
/* 92 */
|
|
9959
10048
|
/***/ (function(module) {
|
|
9960
10049
|
|
|
9961
10050
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 1662l17-85q6-2 81.5-21.5t111.5-37.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z\"/> </svg>"
|
|
9962
10051
|
|
|
9963
10052
|
/***/ }),
|
|
9964
|
-
/*
|
|
10053
|
+
/* 93 */
|
|
9965
10054
|
/***/ (function(module) {
|
|
9966
10055
|
|
|
9967
10056
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z\"/> </svg>"
|
|
9968
10057
|
|
|
9969
10058
|
/***/ }),
|
|
9970
|
-
/*
|
|
10059
|
+
/* 94 */
|
|
9971
10060
|
/***/ (function(module) {
|
|
9972
10061
|
|
|
9973
10062
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z\"/> </svg>"
|
|
9974
10063
|
|
|
9975
10064
|
/***/ }),
|
|
9976
|
-
/*
|
|
10065
|
+
/* 95 */
|
|
9977
10066
|
/***/ (function(module) {
|
|
9978
10067
|
|
|
9979
10068
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1520 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zm-703-705q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zm895 705q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z\"/> </svg>"
|
|
9980
10069
|
|
|
9981
10070
|
/***/ }),
|
|
9982
|
-
/*
|
|
10071
|
+
/* 96 */
|
|
9983
10072
|
/***/ (function(module) {
|
|
9984
10073
|
|
|
9985
10074
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M640 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zm832 96v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z\"/></svg>"
|
|
9986
10075
|
|
|
9987
10076
|
/***/ }),
|
|
9988
|
-
/*
|
|
10077
|
+
/* 97 */
|
|
9989
10078
|
/***/ (function(module) {
|
|
9990
10079
|
|
|
9991
10080
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1664 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z\"/></svg>"
|
|
9992
10081
|
|
|
9993
10082
|
/***/ }),
|
|
9994
|
-
/*
|
|
10083
|
+
/* 98 */
|
|
9995
10084
|
/***/ (function(module) {
|
|
9996
10085
|
|
|
9997
10086
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 312 312\"> <g transform=\"translate(0.000000,312.000000) scale(0.100000,-0.100000)\" stroke=\"none\"> <path d=\"M50 3109 c0 -7 -11 -22 -25 -35 l-25 -23 0 -961 0 -961 32 -29 32 -30 501 -2 500 -3 3 -502 2 -502 31 -30 31 -31 958 0 958 0 23 25 c13 13 30 25 37 25 9 0 12 199 12 960 0 686 -3 960 -11 960 -6 0 -24 12 -40 28 l-29 27 -503 5 -502 5 -5 502 -5 503 -28 29 c-15 16 -27 34 -27 40 0 8 -274 11 -960 11 -710 0 -960 -3 -960 -11z m1738 -698 l2 -453 -40 -40 c-22 -22 -40 -43 -40 -47 0 -4 36 -42 79 -85 88 -87 82 -87 141 -23 l26 27 455 -2 454 -3 0 -775 0 -775 -775 0 -775 0 -3 450 -2 449 47 48 47 48 -82 80 c-44 44 -84 80 -87 80 -3 0 -25 -18 -48 -40 l-41 -40 -456 2 -455 3 -3 765 c-1 421 0 771 3 778 3 10 164 12 777 10 l773 -3 3 -454z\"/> <path d=\"M607 2492 c-42 -42 -77 -82 -77 -87 0 -6 86 -96 190 -200 105 -104 190 -197 190 -205 0 -8 -41 -56 -92 -107 -65 -65 -87 -94 -77 -98 8 -3 138 -4 289 -3 l275 3 3 275 c1 151 0 281 -3 289 -4 10 -35 -14 -103 -82 -54 -53 -103 -97 -109 -97 -7 0 -99 88 -206 195 -107 107 -196 195 -198 195 -3 0 -39 -35 -82 -78z\"/> <path d=\"M1470 1639 c-47 -49 -87 -91 -89 -94 -5 -6 149 -165 160 -165 9 0 189 179 189 188 0 12 -154 162 -165 161 -6 0 -48 -41 -95 -90z\"/> <path d=\"M1797 1303 c-9 -8 -9 -568 0 -576 4 -4 50 36 103 88 54 52 101 95 106 95 5 0 95 -85 199 -190 104 -104 194 -190 200 -190 6 0 46 36 90 80 l79 79 -197 196 c-108 108 -197 199 -197 203 0 4 45 52 99 106 55 55 98 103 95 108 -6 10 -568 11 -577 1z\"/> </g> </svg>"
|
|
9998
10087
|
|
|
9999
10088
|
/***/ }),
|
|
10000
|
-
/*
|
|
10089
|
+
/* 99 */
|
|
10001
10090
|
/***/ (function(module) {
|
|
10002
10091
|
|
|
10003
10092
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 32 32\"> <path d=\"M27 4l-15 15-7-7-5 5 12 12 20-20z\"/> </svg>"
|
|
10004
10093
|
|
|
10005
10094
|
/***/ }),
|
|
10006
|
-
/*
|
|
10095
|
+
/* 100 */
|
|
10007
10096
|
/***/ (function(module) {
|
|
10008
10097
|
|
|
10009
10098
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path stroke-width=\"0\" d=\"M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zm2-627v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zm1409 319v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm-1408-899v99h-335v-99h107q0-41 .5-122t.5-121v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zm1408 387v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
|
|
10010
10099
|
|
|
10011
10100
|
/***/ }),
|
|
10012
|
-
/*
|
|
10101
|
+
/* 101 */
|
|
10013
10102
|
/***/ (function(module) {
|
|
10014
10103
|
|
|
10015
10104
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 270 270\"> <path d=\"m240.443652,220.45085l-47.410809,0l0,-10.342138c13.89973,-8.43655 25.752896,-19.844464 34.686646,-33.469923c11.445525,-17.455846 17.496072,-37.709239 17.496072,-58.570077c0,-59.589197 -49.208516,-108.068714 -109.693558,-108.068714s-109.69263,48.479517 -109.69263,108.069628c0,20.860839 6.050547,41.113316 17.497001,58.570077c8.93375,13.625459 20.787845,25.032458 34.686646,33.469008l0,10.342138l-47.412666,0c-10.256959,0 -18.571354,8.191376 -18.571354,18.296574c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.98402,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574l0,-39.496814c0,-7.073455 -4.137698,-13.51202 -10.626529,-16.537358c-25.24497,-11.772016 -41.557118,-37.145704 -41.557118,-64.643625c0,-39.411735 32.545369,-71.476481 72.549922,-71.476481c40.004553,0 72.550851,32.064746 72.550851,71.476481c0,27.497006 -16.312149,52.87161 -41.557118,64.643625c-6.487902,3.026253 -10.6256,9.464818 -10.6256,16.537358l0,39.496814c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.982163,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574c0,-10.105198 -8.314395,-18.296574 -18.571354,-18.296574z\"/> </svg>"
|
|
10016
10105
|
|
|
10017
10106
|
/***/ }),
|
|
10018
|
-
/*
|
|
10107
|
+
/* 102 */
|
|
10019
10108
|
/***/ (function(module) {
|
|
10020
10109
|
|
|
10021
10110
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
|
|
10022
10111
|
|
|
10023
10112
|
/***/ }),
|
|
10024
|
-
/*
|
|
10113
|
+
/* 103 */
|
|
10025
10114
|
/***/ (function(module) {
|
|
10026
10115
|
|
|
10027
10116
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' x=\"0px\" y=\"0px\" viewBox=\"0 0 459 459\"> <g> <path d=\"M229.5,0C102,0,0,102,0,229.5S102,459,229.5,459c20.4,0,38.25-17.85,38.25-38.25c0-10.2-2.55-17.85-10.2-25.5 c-5.1-7.65-10.2-15.3-10.2-25.5c0-20.4,17.851-38.25,38.25-38.25h45.9c71.4,0,127.5-56.1,127.5-127.5C459,91.8,357,0,229.5,0z M89.25,229.5c-20.4,0-38.25-17.85-38.25-38.25S68.85,153,89.25,153s38.25,17.85,38.25,38.25S109.65,229.5,89.25,229.5z M165.75,127.5c-20.4,0-38.25-17.85-38.25-38.25S145.35,51,165.75,51S204,68.85,204,89.25S186.15,127.5,165.75,127.5z M293.25,127.5c-20.4,0-38.25-17.85-38.25-38.25S272.85,51,293.25,51s38.25,17.85,38.25,38.25S313.65,127.5,293.25,127.5z M369.75,229.5c-20.4,0-38.25-17.85-38.25-38.25S349.35,153,369.75,153S408,170.85,408,191.25S390.15,229.5,369.75,229.5z\" /> </g> </svg>"
|
|
10028
10117
|
|
|
10029
10118
|
/***/ }),
|
|
10030
|
-
/*
|
|
10119
|
+
/* 104 */
|
|
10031
10120
|
/***/ (function(module) {
|
|
10032
10121
|
|
|
10033
10122
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1534 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z\"/></svg>"
|
|
10034
10123
|
|
|
10035
10124
|
/***/ }),
|
|
10036
|
-
/*
|
|
10125
|
+
/* 105 */
|
|
10037
10126
|
/***/ (function(module) {
|
|
10038
10127
|
|
|
10039
10128
|
module.exports = "<svg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"> <path stroke-width=\"0\" d=\"M10.5 20H2a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h1V3l2.03-.4a3 3 0 0 1 5.94 0L13 3v1h1a2 2 0 0 1 2 2v1h-2V6h-1v1H3V6H2v12h5v2h3.5zM8 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm2 4h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2zm0 2v8h8v-8h-8z\"/> </svg>"
|
|
10040
10129
|
|
|
10041
10130
|
/***/ }),
|
|
10042
|
-
/*
|
|
10131
|
+
/* 106 */
|
|
10043
10132
|
/***/ (function(module) {
|
|
10044
10133
|
|
|
10045
10134
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z\"/></svg>"
|
|
10046
10135
|
|
|
10047
10136
|
/***/ }),
|
|
10048
|
-
/*
|
|
10137
|
+
/* 107 */
|
|
10049
10138
|
/***/ (function(module) {
|
|
10050
10139
|
|
|
10051
10140
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1600 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"/></svg>"
|
|
10052
10141
|
|
|
10053
10142
|
/***/ }),
|
|
10054
|
-
/*
|
|
10143
|
+
/* 108 */
|
|
10055
10144
|
/***/ (function(module) {
|
|
10056
10145
|
|
|
10057
10146
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M448 1536h896v-256h-896v256zm0-640h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zm1152 64q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128 0v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z\"/> </svg>"
|
|
10058
10147
|
|
|
10059
10148
|
/***/ }),
|
|
10060
|
-
/*
|
|
10149
|
+
/* 109 */
|
|
10061
10150
|
/***/ (function(module) {
|
|
10062
10151
|
|
|
10063
10152
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 14 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z\"/> </svg>"
|
|
10064
10153
|
|
|
10065
10154
|
/***/ }),
|
|
10066
|
-
/*
|
|
10155
|
+
/* 110 */
|
|
10067
10156
|
/***/ (function(module) {
|
|
10068
10157
|
|
|
10069
10158
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\"> <g transform=\"translate(-251.000000, -443.000000)\"> <g transform=\"translate(215.000000, 119.000000)\"/> <path d=\"M252,448 L256,448 L256,444 L252,444 L252,448 Z M257,448 L269,448 L269,446 L257,446 L257,448 Z M257,464 L269,464 L269,462 L257,462 L257,464 Z M270,444 L270,448 L274,448 L274,444 L270,444 Z M252,462 L252,466 L256,466 L256,462 L252,462 Z M270,462 L270,466 L274,466 L274,462 L270,462 Z M254,461 L256,461 L256,449 L254,449 L254,461 Z M270,461 L272,461 L272,449 L270,449 L270,461 Z\"/> </g> </svg>"
|
|
10070
10159
|
|
|
10071
10160
|
/***/ }),
|
|
10072
|
-
/*
|
|
10161
|
+
/* 111 */
|
|
10073
10162
|
/***/ (function(module) {
|
|
10074
10163
|
|
|
10075
10164
|
module.exports = "<svg viewBox=\"0 0 13 13\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.9814 11.8049C5.59087 11.4144 5.59087 10.7812 5.9814 10.3907L10.224 6.14806C10.6146 5.75754 11.2477 5.75754 11.6383 6.14806C12.0288 6.53859 12.0288 7.17175 11.6383 7.56228L7.39561 11.8049C7.00509 12.1954 6.37192 12.1954 5.9814 11.8049Z\"/> <path d=\"M0.707107 12.0208C0.316582 11.6303 0.316582 10.9971 0.707107 10.6066L10.6066 0.707121C10.9971 0.316597 11.6303 0.316596 12.0208 0.707121C12.4113 1.09764 12.4113 1.73081 12.0208 2.12133L2.12132 12.0208C1.7308 12.4114 1.09763 12.4114 0.707107 12.0208Z\"/> </svg>"
|
|
10076
10165
|
|
|
10077
10166
|
/***/ }),
|
|
10078
|
-
/*
|
|
10167
|
+
/* 112 */
|
|
10079
10168
|
/***/ (function(module) {
|
|
10080
10169
|
|
|
10081
10170
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M844 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zm-342 483q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zm394-27q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zm239-211q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zm432-104q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z\"/> </svg>"
|
|
10082
10171
|
|
|
10083
10172
|
/***/ }),
|
|
10084
|
-
/*
|
|
10173
|
+
/* 113 */
|
|
10085
10174
|
/***/ (function(module) {
|
|
10086
10175
|
|
|
10087
10176
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z\"/> </svg>"
|
|
10088
10177
|
|
|
10089
10178
|
/***/ }),
|
|
10090
|
-
/*
|
|
10179
|
+
/* 114 */
|
|
10091
10180
|
/***/ (function(module) {
|
|
10092
10181
|
|
|
10093
10182
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1536h768v-384h-768v384zm896 0h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zm-384-928v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zm640 32v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z\"/> </svg>"
|
|
10094
10183
|
|
|
10095
10184
|
/***/ }),
|
|
10096
|
-
/*
|
|
10185
|
+
/* 115 */
|
|
10097
10186
|
/***/ (function(module) {
|
|
10098
10187
|
|
|
10099
10188
|
module.exports = "<svg viewBox=\"0 0 500 500\" xmlns=\"http://www.w3.org/2000/svg\"> <path clip-rule=\"evenodd\" d=\"M306.39,154.09c19.628,4.543,35.244,21.259,39.787,39.523 c1.551,8.54,8.998,14.989,17.904,14.989c9.991,0,18.168-8.175,18.168-18.17c0-13.083-10.991-32.98-25.985-47.881 c-14.719-14.537-32.252-24.802-46.695-24.802c-9.991,0-18.172,8.45-18.172,18.446C291.396,145.094,297.847,152.546,306.39,154.09z M56.629,392.312c-14.09,14.08-14.09,36.979,0,51.059c14.08,14.092,36.981,14.092,50.965,0l104.392-104.303 c24.347,15.181,53.062,23.991,83.953,23.991c87.857,0,158.995-71.142,158.995-158.999c0-87.854-71.138-158.995-158.995-158.995 c-87.856,0-158.995,71.141-158.995,158.995c0,30.802,8.819,59.606,23.992,83.953L56.629,392.312z M182.371,204.06 c0-62.687,50.875-113.568,113.568-113.568s113.569,50.881,113.569,113.568c0,62.694-50.876,113.569-113.569,113.569 S182.371,266.754,182.371,204.06z\" fill-rule=\"evenodd\"/> </svg>"
|
|
10100
10189
|
|
|
10101
10190
|
/***/ }),
|
|
10102
|
-
/*
|
|
10191
|
+
/* 116 */
|
|
10103
10192
|
/***/ (function(module) {
|
|
10104
10193
|
|
|
10105
10194
|
module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"> <path stroke=\"null\" d=\"m42.276011,26.302547c0.098397,-0.76605 0.172194,-1.54407 0.172194,-2.33406s-0.073797,-1.56801 -0.172194,-2.33406l5.202718,-3.961917c0.467384,-0.359086 0.602679,-1.005441 0.29519,-1.532101l-4.919828,-8.29489c-0.307489,-0.51469 -0.947067,-0.730142 -1.500548,-0.51469l-6.125186,2.405877c-1.266856,-0.945594 -2.656707,-1.747553 -4.157255,-2.357999l-0.922468,-6.343855c-0.110696,-0.562568 -0.614979,-1.005441 -1.229957,-1.005441l-9.839656,0c-0.614979,0 -1.119261,0.442873 -1.217657,1.005441l-0.922468,6.343855c-1.500548,0.610446 -2.890399,1.400436 -4.157255,2.357999l-6.125186,-2.405877c-0.553481,-0.203482 -1.193058,0 -1.500548,0.51469l-4.919828,8.29489c-0.307489,0.51469 -0.172194,1.161045 0.29519,1.532101l5.190419,3.961917c-0.098397,0.76605 -0.172194,1.54407 -0.172194,2.33406s0.073797,1.56801 0.172194,2.33406l-5.190419,3.961917c-0.467384,0.359086 -0.602679,1.005441 -0.29519,1.532101l4.919828,8.29489c0.307489,0.51469 0.947067,0.730142 1.500548,0.51469l6.125186,-2.405877c1.266856,0.945594 2.656707,1.747553 4.157255,2.357999l0.922468,6.343855c0.098397,0.562568 0.602679,1.005441 1.217657,1.005441l9.839656,0c0.614979,0 1.119261,-0.442873 1.217657,-1.005441l0.922468,-6.343855c1.500548,-0.610446 2.890399,-1.400436 4.157255,-2.357999l6.125186,2.405877c0.553481,0.203482 1.193058,0 1.500548,-0.51469l4.919828,-8.29489c0.307489,-0.51469 0.172194,-1.161045 -0.29519,-1.532101l-5.190419,-3.961917zm-18.277162,6.044617c-4.759934,0 -8.609699,-3.746465 -8.609699,-8.378677s3.849766,-8.378677 8.609699,-8.378677s8.609699,3.746465 8.609699,8.378677s-3.849766,8.378677 -8.609699,8.378677z\"/> </svg>"
|
|
10106
10195
|
|
|
10107
10196
|
/***/ }),
|
|
10108
|
-
/*
|
|
10197
|
+
/* 117 */
|
|
10109
10198
|
/***/ (function(module) {
|
|
10110
10199
|
|
|
10111
10200
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 18 18\"> <g fill-rule=\"evenodd\" stroke=\"none\" stroke-width=\"1\"> <g transform=\"translate(-381.000000, -381.000000)\"> <g transform=\"translate(381.000000, 381.000000)\"> <path d=\"M0,2 L2,2 L2,0 C0.9,0 0,0.9 0,2 L0,2 Z M0,10 L2,10 L2,8 L0,8 L0,10 L0,10 Z M4,18 L6,18 L6,16 L4,16 L4,18 L4,18 Z M0,6 L2,6 L2,4 L0,4 L0,6 L0,6 Z M10,0 L8,0 L8,2 L10,2 L10,0 L10,0 Z M16,0 L16,2 L18,2 C18,0.9 17.1,0 16,0 L16,0 Z M2,18 L2,16 L0,16 C0,17.1 0.9,18 2,18 L2,18 Z M0,14 L2,14 L2,12 L0,12 L0,14 L0,14 Z M6,0 L4,0 L4,2 L6,2 L6,0 L6,0 Z M8,18 L10,18 L10,16 L8,16 L8,18 L8,18 Z M16,10 L18,10 L18,8 L16,8 L16,10 L16,10 Z M16,18 C17.1,18 18,17.1 18,16 L16,16 L16,18 L16,18 Z M16,6 L18,6 L18,4 L16,4 L16,6 L16,6 Z M16,14 L18,14 L18,12 L16,12 L16,14 L16,14 Z M12,18 L14,18 L14,16 L12,16 L12,18 L12,18 Z M12,2 L14,2 L14,0 L12,0 L12,2 L12,2 Z M4,14 L14,14 L14,4 L4,4 L4,14 L4,14 Z M6,6 L12,6 L12,12 L6,12 L6,6 L6,6 Z\"/> </g> </g> </g> </svg>"
|
|
10112
10201
|
|
|
10113
10202
|
/***/ }),
|
|
10114
|
-
/*
|
|
10203
|
+
/* 118 */
|
|
10115
10204
|
/***/ (function(module) {
|
|
10116
10205
|
|
|
10117
10206
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M896 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zm755-672q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z\"/> </svg>"
|
|
10118
10207
|
|
|
10119
10208
|
/***/ }),
|
|
10120
|
-
/*
|
|
10209
|
+
/* 119 */
|
|
10121
10210
|
/***/ (function(module) {
|
|
10122
10211
|
|
|
10123
10212
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M553 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zm591-1067l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zm657 651l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z\"/> </svg>"
|
|
10124
10213
|
|
|
10125
10214
|
/***/ }),
|
|
10126
|
-
/*
|
|
10215
|
+
/* 120 */
|
|
10127
10216
|
/***/ (function(module) {
|
|
10128
10217
|
|
|
10129
10218
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 48 48\"> <path d=\"M6 42h4v-4h-4v4zm4-28h-4v4h4v-4zm-4 20h4v-4h-4v4zm8 8h4v-4h-4v4zm-4-36h-4v4h4v-4zm8 0h-4v4h4v-4zm16 0h-4v4h4v-4zm-8 8h-4v4h4v-4zm0-8h-4v4h4v-4zm12 28h4v-4h-4v4zm-16 8h4v-4h-4v4zm-16-16h36v-4h-36v4zm32-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-16 16h4v-4h-4v4zm8 8h4v-4h-4v4zm8 0h4v-4h-4v4z\"/> <path d=\"M0 0h48v48h-48z\" fill=\"none\"/> </svg>"
|
|
10130
10219
|
|
|
10131
10220
|
/***/ }),
|
|
10132
|
-
/*
|
|
10221
|
+
/* 121 */
|
|
10133
10222
|
/***/ (function(module) {
|
|
10134
10223
|
|
|
10135
10224
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 48 48\"> <path d=\"M6 18h4v-4h-4v4zm0-8h4v-4h-4v4zm8 32h4v-4h-4v4zm0-16h4v-4h-4v4zm-8 0h4v-4h-4v4zm0 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8-24h4v-4h-4v4zm24 24h4v-4h-4v4zm-16 8h4v-36h-4v36zm16 0h4v-4h-4v4zm0-16h4v-4h-4v4zm0-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-8-8h4v-4h-4v4zm0 32h4v-4h-4v4zm0-16h4v-4h-4v4z\"/> <path d=\"M0 0h48v48h-48z\" fill=\"none\"/> </svg>"
|
|
10136
10225
|
|
|
10137
10226
|
/***/ }),
|
|
10138
|
-
/*
|
|
10227
|
+
/* 122 */
|
|
10139
10228
|
/***/ (function(module) {
|
|
10140
10229
|
|
|
10141
10230
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zm-1277-64q-28-35-51-80-48-97-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zm507 256h411q7 39 7 92 0 111-41 212-23 55-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z\"/> </svg>"
|
|
10142
10231
|
|
|
10143
10232
|
/***/ }),
|
|
10144
|
-
/*
|
|
10233
|
+
/* 123 */
|
|
10145
10234
|
/***/ (function(module) {
|
|
10146
10235
|
|
|
10147
10236
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm639 217v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z\"/> </svg>"
|
|
10148
10237
|
|
|
10149
10238
|
/***/ }),
|
|
10150
|
-
/*
|
|
10239
|
+
/* 124 */
|
|
10151
10240
|
/***/ (function(module) {
|
|
10152
10241
|
|
|
10153
10242
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm637-679v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z\"/> </svg>"
|
|
10154
10243
|
|
|
10155
10244
|
/***/ }),
|
|
10156
|
-
/*
|
|
10245
|
+
/* 125 */
|
|
10157
10246
|
/***/ (function(module) {
|
|
10158
10247
|
|
|
10159
10248
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M576 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm128-320v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z\"/> </svg>"
|
|
10160
10249
|
|
|
10161
10250
|
/***/ }),
|
|
10162
|
-
/*
|
|
10251
|
+
/* 126 */
|
|
10163
10252
|
/***/ (function(module) {
|
|
10164
10253
|
|
|
10165
10254
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z\"/> </svg>"
|
|
10166
10255
|
|
|
10167
10256
|
/***/ }),
|
|
10168
|
-
/*
|
|
10257
|
+
/* 127 */
|
|
10169
10258
|
/***/ (function(module) {
|
|
10170
10259
|
|
|
10171
10260
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm-1280-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z\"/> </svg>"
|
|
10172
10261
|
|
|
10173
10262
|
/***/ }),
|
|
10174
|
-
/*
|
|
10263
|
+
/* 128 */
|
|
10175
10264
|
/***/ (function(module) {
|
|
10176
10265
|
|
|
10177
10266
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path stroke-width=\"0\" d=\"M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm-1408-928q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
|
|
10178
10267
|
|
|
10179
10268
|
/***/ }),
|
|
10180
|
-
/*
|
|
10269
|
+
/* 129 */
|
|
10181
10270
|
/***/ (function(module) {
|
|
10182
10271
|
|
|
10183
10272
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M176 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 .5 32.5t.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zm1488 1409v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z\"/> </svg>"
|
|
10184
10273
|
|
|
10185
10274
|
/***/ }),
|
|
10186
|
-
/*
|
|
10275
|
+
/* 130 */
|
|
10187
10276
|
/***/ (function(module) {
|
|
10188
10277
|
|
|
10189
10278
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z\"/> </svg>"
|
|
10190
10279
|
|
|
10191
10280
|
/***/ }),
|
|
10192
|
-
/*
|
|
10281
|
+
/* 131 */
|
|
10193
10282
|
/***/ (function(module) {
|
|
10194
10283
|
|
|
10195
10284
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z\"/> </svg>"
|
|
10196
10285
|
|
|
10197
10286
|
/***/ }),
|
|
10198
|
-
/*
|
|
10287
|
+
/* 132 */
|
|
10199
10288
|
/***/ (function(module) {
|
|
10200
10289
|
|
|
10201
10290
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1728 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z\"/> </svg>"
|
|
10202
10291
|
|
|
10203
10292
|
/***/ }),
|
|
10204
|
-
/*
|
|
10293
|
+
/* 133 */
|
|
10205
10294
|
/***/ (function(module) {
|
|
10206
10295
|
|
|
10207
10296
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1639 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zm25-800v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z\"/> </svg>"
|
|
10208
10297
|
|
|
10209
10298
|
/***/ }),
|
|
10210
|
-
/*
|
|
10299
|
+
/* 134 */
|
|
10211
10300
|
/***/ (function(module) {
|
|
10212
10301
|
|
|
10213
10302
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1344 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm256 0q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128-224v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zm-325-648q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z\"/> </svg>"
|
|
10214
10303
|
|
|
10215
10304
|
/***/ }),
|
|
10216
|
-
/*
|
|
10305
|
+
/* 135 */
|
|
10217
10306
|
/***/ (function(module) {
|
|
10218
10307
|
|
|
10219
10308
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1216 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z\"/> </svg>"
|
|
10220
10309
|
|
|
10221
10310
|
/***/ }),
|
|
10222
|
-
/*
|
|
10311
|
+
/* 136 */
|
|
10223
10312
|
/***/ (function(module) {
|
|
10224
10313
|
|
|
10225
10314
|
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 352v1088q0 42-39 59-13 5-25 5-27 0-45-19l-403-403v166q0 119-84.5 203.5t-203.5 84.5h-704q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h704q119 0 203.5 84.5t84.5 203.5v165l403-402q18-19 45-19 12 0 25 5 39 17 39 59z\"/> </svg>"
|
|
@@ -10313,7 +10402,6 @@ __webpack_require__.d(modules_namespaceObject, {
|
|
|
10313
10402
|
"Helpers": function() { return helpers; },
|
|
10314
10403
|
"Icon": function() { return ui/* Icon */.JO; },
|
|
10315
10404
|
"ImageEditor": function() { return ImageEditor; },
|
|
10316
|
-
"ObservableObject": function() { return event_emitter/* ObservableObject */.Tf; },
|
|
10317
10405
|
"Observer": function() { return Observer; },
|
|
10318
10406
|
"Plugin": function() { return Plugin; },
|
|
10319
10407
|
"PluginSystem": function() { return plugin_system/* PluginSystem */.h; },
|
|
@@ -10345,7 +10433,8 @@ __webpack_require__.d(modules_namespaceObject, {
|
|
|
10345
10433
|
"ViewComponent": function() { return component/* ViewComponent */.Hr; },
|
|
10346
10434
|
"ViewWithToolbar": function() { return ViewWithToolbar; },
|
|
10347
10435
|
"defaultNameSpace": function() { return event_emitter/* defaultNameSpace */.rO; },
|
|
10348
|
-
"isFileBrowserFilesItem": function() { return isFileBrowserFilesItem; }
|
|
10436
|
+
"isFileBrowserFilesItem": function() { return isFileBrowserFilesItem; },
|
|
10437
|
+
"observable": function() { return event_emitter/* observable */.LO; }
|
|
10349
10438
|
});
|
|
10350
10439
|
|
|
10351
10440
|
// NAMESPACE OBJECT: ./src/plugins/index.ts
|
|
@@ -10910,9 +10999,9 @@ Ajax.log = [];
|
|
|
10910
10999
|
// EXTERNAL MODULE: ./src/core/component/index.ts + 3 modules
|
|
10911
11000
|
var component = __webpack_require__(12);
|
|
10912
11001
|
// EXTERNAL MODULE: ./src/core/ui/popup/index.ts + 1 modules
|
|
10913
|
-
var ui_popup = __webpack_require__(
|
|
10914
|
-
// EXTERNAL MODULE: ./src/core/ui/button/index.ts +
|
|
10915
|
-
var ui_button = __webpack_require__(
|
|
11002
|
+
var ui_popup = __webpack_require__(44);
|
|
11003
|
+
// EXTERNAL MODULE: ./src/core/ui/button/index.ts + 1 modules
|
|
11004
|
+
var ui_button = __webpack_require__(39);
|
|
10916
11005
|
// EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
|
|
10917
11006
|
var checker = __webpack_require__(18);
|
|
10918
11007
|
;// CONCATENATED MODULE: ./src/modules/context-menu/context-menu.ts
|
|
@@ -11115,7 +11204,7 @@ var global = __webpack_require__(13);
|
|
|
11115
11204
|
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
11116
11205
|
var decorators = __webpack_require__(17);
|
|
11117
11206
|
// EXTERNAL MODULE: ./src/core/traits/index.ts + 2 modules
|
|
11118
|
-
var traits = __webpack_require__(
|
|
11207
|
+
var traits = __webpack_require__(37);
|
|
11119
11208
|
;// CONCATENATED MODULE: ./src/core/view/view.ts
|
|
11120
11209
|
/*!
|
|
11121
11210
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -11139,7 +11228,7 @@ class View extends component/* Component */.wA {
|
|
|
11139
11228
|
this.isView = true;
|
|
11140
11229
|
this.mods = {};
|
|
11141
11230
|
this.components = new Set();
|
|
11142
|
-
this.version = "3.
|
|
11231
|
+
this.version = "3.13.2";
|
|
11143
11232
|
this.async = new Async();
|
|
11144
11233
|
this.buffer = Storage.makeStorage();
|
|
11145
11234
|
this.storage = Storage.makeStorage(true, this.componentName);
|
|
@@ -11158,7 +11247,7 @@ class View extends component/* Component */.wA {
|
|
|
11158
11247
|
this.container.classList.add('jodit');
|
|
11159
11248
|
this.progressbar = new ui/* ProgressBar */.ko(this);
|
|
11160
11249
|
}
|
|
11161
|
-
setMod(name, value) {
|
|
11250
|
+
setMod(...[name, value]) {
|
|
11162
11251
|
traits/* Mods.setMod.call */.$.setMod.call(this, name, value);
|
|
11163
11252
|
return this;
|
|
11164
11253
|
}
|
|
@@ -11237,10 +11326,10 @@ class View extends component/* Component */.wA {
|
|
|
11237
11326
|
return this.__isFullSize;
|
|
11238
11327
|
}
|
|
11239
11328
|
getVersion() {
|
|
11240
|
-
return "3.
|
|
11329
|
+
return "3.13.2";
|
|
11241
11330
|
}
|
|
11242
11331
|
static getVersion() {
|
|
11243
|
-
return "3.
|
|
11332
|
+
return "3.13.2";
|
|
11244
11333
|
}
|
|
11245
11334
|
initOptions(options) {
|
|
11246
11335
|
this.options = (0,helpers.ConfigProto)(options || {}, (0,helpers.ConfigProto)(this.options || {}, View.defaultOptions));
|
|
@@ -11323,7 +11412,7 @@ View.defaultOptions = {
|
|
|
11323
11412
|
// EXTERNAL MODULE: ./src/core/dom/index.ts + 1 modules
|
|
11324
11413
|
var dom = __webpack_require__(15);
|
|
11325
11414
|
// EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
|
|
11326
|
-
var ui = __webpack_require__(
|
|
11415
|
+
var ui = __webpack_require__(35);
|
|
11327
11416
|
;// CONCATENATED MODULE: ./src/modules/toolbar/collection/collection.ts
|
|
11328
11417
|
/*!
|
|
11329
11418
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -11355,25 +11444,10 @@ let ToolbarCollection = class ToolbarCollection extends ui/* UIList */.bz {
|
|
|
11355
11444
|
return makeButton(this.j, control, target);
|
|
11356
11445
|
}
|
|
11357
11446
|
shouldBeActive(button) {
|
|
11358
|
-
if ((0,helpers.isFunction)(button.control.isActive)) {
|
|
11359
|
-
return button.control.isActive(this.j, button.control, button);
|
|
11360
|
-
}
|
|
11361
11447
|
return undefined;
|
|
11362
11448
|
}
|
|
11363
11449
|
shouldBeDisabled(button) {
|
|
11364
|
-
|
|
11365
|
-
return true;
|
|
11366
|
-
}
|
|
11367
|
-
if (this.j.o.readonly &&
|
|
11368
|
-
(!this.j.o.activeButtonsInReadOnly ||
|
|
11369
|
-
!this.j.o.activeButtonsInReadOnly.includes(button.control.name))) {
|
|
11370
|
-
return true;
|
|
11371
|
-
}
|
|
11372
|
-
let isDisabled;
|
|
11373
|
-
if ((0,helpers.isFunction)(button.control.isDisabled)) {
|
|
11374
|
-
isDisabled = button.control.isDisabled(this.j, button.control, button);
|
|
11375
|
-
}
|
|
11376
|
-
return isDisabled;
|
|
11450
|
+
return undefined;
|
|
11377
11451
|
}
|
|
11378
11452
|
getTarget(button) {
|
|
11379
11453
|
return button.target || null;
|
|
@@ -11478,9 +11552,6 @@ let ToolbarEditorCollection = class ToolbarEditorCollection extends ToolbarColle
|
|
|
11478
11552
|
return !(mode === constants.MODE_SPLIT || mode === this.j.getRealMode());
|
|
11479
11553
|
}
|
|
11480
11554
|
shouldBeActive(button) {
|
|
11481
|
-
if ((0,helpers.isJoditObject)(this.j) && !this.j.editorIsActive) {
|
|
11482
|
-
return false;
|
|
11483
|
-
}
|
|
11484
11555
|
const active = super.shouldBeActive(button);
|
|
11485
11556
|
if (active !== undefined) {
|
|
11486
11557
|
return active;
|
|
@@ -11545,7 +11616,7 @@ ToolbarEditorCollection = (0,tslib_es6/* __decorate */.gn)([
|
|
|
11545
11616
|
|
|
11546
11617
|
|
|
11547
11618
|
// EXTERNAL MODULE: ./src/core/ui/helpers/get-control-type.ts
|
|
11548
|
-
var get_control_type = __webpack_require__(
|
|
11619
|
+
var get_control_type = __webpack_require__(42);
|
|
11549
11620
|
;// CONCATENATED MODULE: ./src/modules/toolbar/button/button.ts
|
|
11550
11621
|
/*!
|
|
11551
11622
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -11594,15 +11665,38 @@ let ToolbarButton = class ToolbarButton extends ui_button/* UIButton */.y3 {
|
|
|
11594
11665
|
}
|
|
11595
11666
|
update() {
|
|
11596
11667
|
const { control, state } = this, tc = this.closest(ToolbarCollection);
|
|
11597
|
-
|
|
11598
|
-
|
|
11599
|
-
state.activated = Boolean(tc.shouldBeActive(this));
|
|
11600
|
-
}
|
|
11668
|
+
state.disabled = this.calculateDisabledStatus(tc);
|
|
11669
|
+
state.activated = this.calculateActivatedStatus(tc);
|
|
11601
11670
|
if ((0,helpers.isFunction)(control.update)) {
|
|
11602
11671
|
control.update(this);
|
|
11603
11672
|
}
|
|
11604
11673
|
super.update();
|
|
11605
11674
|
}
|
|
11675
|
+
calculateActivatedStatus(tc) {
|
|
11676
|
+
if ((0,helpers.isJoditObject)(this.j) && !this.j.editorIsActive) {
|
|
11677
|
+
return false;
|
|
11678
|
+
}
|
|
11679
|
+
if ((0,helpers.isFunction)(this.control.isActive) &&
|
|
11680
|
+
this.control.isActive(this.j, this.control, this)) {
|
|
11681
|
+
return true;
|
|
11682
|
+
}
|
|
11683
|
+
return Boolean(tc && tc.shouldBeActive(this));
|
|
11684
|
+
}
|
|
11685
|
+
calculateDisabledStatus(tc) {
|
|
11686
|
+
if (this.j.o.disabled) {
|
|
11687
|
+
return true;
|
|
11688
|
+
}
|
|
11689
|
+
if (this.j.o.readonly &&
|
|
11690
|
+
(!this.j.o.activeButtonsInReadOnly ||
|
|
11691
|
+
!this.j.o.activeButtonsInReadOnly.includes(this.control.name))) {
|
|
11692
|
+
return true;
|
|
11693
|
+
}
|
|
11694
|
+
if ((0,helpers.isFunction)(this.control.isDisabled) &&
|
|
11695
|
+
this.control.isDisabled(this.j, this.control, this)) {
|
|
11696
|
+
return true;
|
|
11697
|
+
}
|
|
11698
|
+
return Boolean(tc && tc.shouldBeDisabled(this));
|
|
11699
|
+
}
|
|
11606
11700
|
onChangeActivated() {
|
|
11607
11701
|
(0,helpers.attr)(this.button, 'aria-pressed', this.state.activated);
|
|
11608
11702
|
super.onChangeActivated();
|
|
@@ -11903,7 +11997,7 @@ function makeButton(jodit, control, target = null) {
|
|
|
11903
11997
|
}
|
|
11904
11998
|
|
|
11905
11999
|
// EXTERNAL MODULE: ./src/core/ui/helpers/buttons.ts
|
|
11906
|
-
var helpers_buttons = __webpack_require__(
|
|
12000
|
+
var helpers_buttons = __webpack_require__(43);
|
|
11907
12001
|
;// CONCATENATED MODULE: ./src/core/view/view-with-toolbar.ts
|
|
11908
12002
|
/*!
|
|
11909
12003
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -12099,32 +12193,40 @@ let Dialog = class Dialog extends ViewWithToolbar {
|
|
|
12099
12193
|
</div>
|
|
12100
12194
|
<div class="${n('content')}"></div>
|
|
12101
12195
|
<div class="${n('footer')}"></div>
|
|
12102
|
-
${
|
|
12103
|
-
? `<div class="${n('resizer')}">${ui/* Icon.get */.JO.get('resize_handler')}</div>`
|
|
12104
|
-
: ''}
|
|
12196
|
+
<div class="${n('resizer')}">${ui/* Icon.get */.JO.get('resize_handler')}</div>
|
|
12105
12197
|
</div>
|
|
12106
12198
|
</div>`);
|
|
12107
12199
|
(0,helpers.attr)(self.container, 'role', 'dialog');
|
|
12108
12200
|
Object.defineProperty(self.container, 'component', {
|
|
12109
12201
|
value: this
|
|
12110
12202
|
});
|
|
12111
|
-
self.setMod('theme', self.o.theme || 'default');
|
|
12112
|
-
|
|
12203
|
+
self.setMod('theme', self.o.theme || 'default').setMod('resizable', Boolean(self.o.resizable));
|
|
12204
|
+
const dialog = self.getElm('panel');
|
|
12205
|
+
(0,helpers.assert)(dialog != null, 'Panel element does not exist');
|
|
12206
|
+
const resizer = self.getElm('resizer');
|
|
12207
|
+
(0,helpers.assert)(resizer != null, 'Resizer element does not exist');
|
|
12208
|
+
const dialogbox_header = self.getElm('header-title');
|
|
12209
|
+
(0,helpers.assert)(dialogbox_header != null, 'header-title element does not exist');
|
|
12210
|
+
const dialogbox_content = self.getElm('content');
|
|
12211
|
+
(0,helpers.assert)(dialogbox_content != null, 'Content element does not exist');
|
|
12212
|
+
const dialogbox_footer = self.getElm('footer');
|
|
12213
|
+
(0,helpers.assert)(dialogbox_footer != null, 'Footer element does not exist');
|
|
12214
|
+
const dialogbox_toolbar = self.getElm('header-toolbar');
|
|
12215
|
+
(0,helpers.assert)(dialogbox_toolbar != null, 'header-toolbar element does not exist');
|
|
12216
|
+
self.dialog = dialog;
|
|
12217
|
+
self.resizer = resizer;
|
|
12218
|
+
self.dialogbox_header = dialogbox_header;
|
|
12219
|
+
self.dialogbox_content = dialogbox_content;
|
|
12220
|
+
self.dialogbox_footer = dialogbox_footer;
|
|
12221
|
+
self.dialogbox_toolbar = dialogbox_toolbar;
|
|
12113
12222
|
(0,helpers.css)(self.dialog, {
|
|
12114
12223
|
maxWidth: self.options.maxWidth,
|
|
12115
12224
|
minHeight: self.options.minHeight,
|
|
12116
12225
|
minWidth: self.options.minWidth
|
|
12117
12226
|
});
|
|
12118
|
-
self.resizer = self.getElm('resizer');
|
|
12119
|
-
self.dialogbox_header = self.getElm('header-title');
|
|
12120
|
-
self.dialogbox_content = self.getElm('content');
|
|
12121
|
-
self.dialogbox_footer = self.getElm('footer');
|
|
12122
|
-
self.dialogbox_toolbar = self.getElm('header-toolbar');
|
|
12123
12227
|
const headerBox = self.getElm('header');
|
|
12124
12228
|
headerBox && self.e.on(headerBox, 'mousedown', self.onHeaderMouseDown);
|
|
12125
|
-
|
|
12126
|
-
self.e.on(self.resizer, 'mousedown', self.onResizerMouseDown);
|
|
12127
|
-
}
|
|
12229
|
+
self.e.on(self.resizer, 'mousedown', self.onResizerMouseDown);
|
|
12128
12230
|
const fullSize = global/* pluginSystem.get */.pw.get('fullsize');
|
|
12129
12231
|
(0,helpers.isFunction)(fullSize) && fullSize(self);
|
|
12130
12232
|
this.e
|
|
@@ -13438,7 +13540,81 @@ function makeContextMenu(parent) {
|
|
|
13438
13540
|
}
|
|
13439
13541
|
|
|
13440
13542
|
// EXTERNAL MODULE: ./src/core/helpers/normalize/index.ts + 9 modules
|
|
13441
|
-
var normalize = __webpack_require__(
|
|
13543
|
+
var normalize = __webpack_require__(30);
|
|
13544
|
+
;// CONCATENATED MODULE: ./src/modules/file-browser/builders/elements-map.ts
|
|
13545
|
+
/*!
|
|
13546
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13547
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
13548
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13549
|
+
*/
|
|
13550
|
+
const map = new WeakMap();
|
|
13551
|
+
const elementsMap = (view) => {
|
|
13552
|
+
let result = map.get(view);
|
|
13553
|
+
if (!result) {
|
|
13554
|
+
result = {};
|
|
13555
|
+
map.set(view, result);
|
|
13556
|
+
}
|
|
13557
|
+
return result;
|
|
13558
|
+
};
|
|
13559
|
+
|
|
13560
|
+
// EXTERNAL MODULE: ./src/core/helpers/utils/error.ts
|
|
13561
|
+
var error = __webpack_require__(4);
|
|
13562
|
+
;// CONCATENATED MODULE: ./src/modules/file-browser/fetch/load-items.ts
|
|
13563
|
+
/*!
|
|
13564
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13565
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
13566
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13567
|
+
*/
|
|
13568
|
+
async function loadItems(fb) {
|
|
13569
|
+
fb.files.setMod('active', true);
|
|
13570
|
+
fb.files.setMod('loading', true);
|
|
13571
|
+
return fb.dataProvider
|
|
13572
|
+
.items(fb.state.currentPath, fb.state.currentSource, {
|
|
13573
|
+
sortBy: fb.state.sortBy,
|
|
13574
|
+
onlyImages: fb.state.onlyImages,
|
|
13575
|
+
filterWord: fb.state.filterWord
|
|
13576
|
+
})
|
|
13577
|
+
.then(resp => {
|
|
13578
|
+
fb.state.elements = resp;
|
|
13579
|
+
fb.state.activeElements = [];
|
|
13580
|
+
})
|
|
13581
|
+
.catch(fb.status)
|
|
13582
|
+
.finally(() => fb.files.setMod('loading', false));
|
|
13583
|
+
}
|
|
13584
|
+
|
|
13585
|
+
;// CONCATENATED MODULE: ./src/modules/file-browser/fetch/load-tree.ts
|
|
13586
|
+
/*!
|
|
13587
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13588
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
13589
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13590
|
+
*/
|
|
13591
|
+
|
|
13592
|
+
|
|
13593
|
+
|
|
13594
|
+
async function loadTree(fb) {
|
|
13595
|
+
const errorUni = (e) => {
|
|
13596
|
+
throw e instanceof Error ? e : (0,error/* error */.v)(e);
|
|
13597
|
+
};
|
|
13598
|
+
fb.tree.setMod('active', true);
|
|
13599
|
+
dom/* Dom.detach */.i.detach(fb.tree.container);
|
|
13600
|
+
const items = loadItems(fb);
|
|
13601
|
+
if (fb.o.showFoldersPanel) {
|
|
13602
|
+
fb.tree.setMod('loading', true);
|
|
13603
|
+
const tree = fb.dataProvider
|
|
13604
|
+
.tree(fb.state.currentPath, fb.state.currentSource)
|
|
13605
|
+
.then(resp => {
|
|
13606
|
+
fb.state.sources = resp;
|
|
13607
|
+
})
|
|
13608
|
+
.catch(e => {
|
|
13609
|
+
errorUni(e);
|
|
13610
|
+
})
|
|
13611
|
+
.finally(() => fb.tree.setMod('loading', false));
|
|
13612
|
+
return Promise.all([tree, items]).catch(error/* error */.v);
|
|
13613
|
+
}
|
|
13614
|
+
fb.tree.setMod('active', false);
|
|
13615
|
+
return items.catch(error/* error */.v);
|
|
13616
|
+
}
|
|
13617
|
+
|
|
13442
13618
|
;// CONCATENATED MODULE: ./src/modules/file-browser/listeners/state-listeners.ts
|
|
13443
13619
|
/*!
|
|
13444
13620
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -13448,20 +13624,23 @@ var normalize = __webpack_require__(29);
|
|
|
13448
13624
|
|
|
13449
13625
|
|
|
13450
13626
|
|
|
13627
|
+
|
|
13628
|
+
|
|
13451
13629
|
const state_listeners_DEFAULT_SOURCE_NAME = 'default';
|
|
13452
13630
|
function stateListeners() {
|
|
13453
|
-
const
|
|
13631
|
+
const elmMap = elementsMap(this);
|
|
13632
|
+
const { state, files, create, options } = this, getDomElement = (item) => {
|
|
13454
13633
|
const key = item.uniqueHashKey;
|
|
13455
|
-
if (
|
|
13456
|
-
return
|
|
13634
|
+
if (elmMap[key]) {
|
|
13635
|
+
return elmMap[key].elm;
|
|
13457
13636
|
}
|
|
13458
13637
|
const elm = create.fromHTML(options.getThumbTemplate.call(this, item, item.source, item.sourceName.toString()));
|
|
13459
13638
|
elm.dataset.key = key;
|
|
13460
|
-
|
|
13639
|
+
elmMap[key] = {
|
|
13461
13640
|
item,
|
|
13462
13641
|
elm
|
|
13463
13642
|
};
|
|
13464
|
-
return
|
|
13643
|
+
return elmMap[key].elm;
|
|
13465
13644
|
};
|
|
13466
13645
|
state
|
|
13467
13646
|
.on(['change.currentPath', 'change.currentSource'], this.async.debounce(() => {
|
|
@@ -13471,11 +13650,11 @@ function stateListeners() {
|
|
|
13471
13650
|
.set('currentPath', this.state.currentPath)
|
|
13472
13651
|
.set('currentSource', this.state.currentSource);
|
|
13473
13652
|
}
|
|
13474
|
-
this.
|
|
13653
|
+
loadTree(this).catch(this.status);
|
|
13475
13654
|
}, this.defaultTimeout))
|
|
13476
13655
|
.on('beforeChange.activeElements', () => {
|
|
13477
13656
|
state.activeElements.forEach(item => {
|
|
13478
|
-
const key = item.uniqueHashKey, { elm } =
|
|
13657
|
+
const key = item.uniqueHashKey, { elm } = elmMap[key];
|
|
13479
13658
|
elm &&
|
|
13480
13659
|
elm.classList.remove(files.getFullElName('item', 'active', true));
|
|
13481
13660
|
});
|
|
@@ -13483,7 +13662,7 @@ function stateListeners() {
|
|
|
13483
13662
|
.on('change.activeElements', () => {
|
|
13484
13663
|
this.e.fire('changeSelection');
|
|
13485
13664
|
state.activeElements.forEach(item => {
|
|
13486
|
-
const key = item.uniqueHashKey, { elm } =
|
|
13665
|
+
const key = item.uniqueHashKey, { elm } = elmMap[key];
|
|
13487
13666
|
elm &&
|
|
13488
13667
|
elm.classList.add(files.getFullElName('item', 'active', true));
|
|
13489
13668
|
});
|
|
@@ -13595,9 +13774,9 @@ const form_form = (editor, o) => {
|
|
|
13595
13774
|
const switcher = (label, ref, active = true) => `<div class="jodit-form__group">
|
|
13596
13775
|
<label>${i(label)}</label>
|
|
13597
13776
|
|
|
13598
|
-
<label class='
|
|
13777
|
+
<label class='jodit-switcher'>
|
|
13599
13778
|
<input ${act(active, 'checked')} data-ref="${ref}" type="checkbox"/>
|
|
13600
|
-
<span class="
|
|
13779
|
+
<span class="jodit-switcher__slider"></span>
|
|
13601
13780
|
</label>
|
|
13602
13781
|
</div>`;
|
|
13603
13782
|
return editor.create.fromHTML(`<form class="${jie} jodit-properties">
|
|
@@ -14222,6 +14401,21 @@ function openImageEditor(href, name, path, source, onSuccess, onFailed) {
|
|
|
14222
14401
|
});
|
|
14223
14402
|
}
|
|
14224
14403
|
|
|
14404
|
+
;// CONCATENATED MODULE: ./src/modules/file-browser/fetch/delete-file.ts
|
|
14405
|
+
/*!
|
|
14406
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14407
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14408
|
+
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14409
|
+
*/
|
|
14410
|
+
function deleteFile(fb, name, source) {
|
|
14411
|
+
return fb.dataProvider
|
|
14412
|
+
.fileRemove(fb.state.currentPath, name, source)
|
|
14413
|
+
.then(message => {
|
|
14414
|
+
fb.status(message || fb.i18n('File "%s" was deleted', name), true);
|
|
14415
|
+
})
|
|
14416
|
+
.catch(fb.status);
|
|
14417
|
+
}
|
|
14418
|
+
|
|
14225
14419
|
;// CONCATENATED MODULE: ./src/modules/file-browser/builders/context-menu.ts
|
|
14226
14420
|
/*!
|
|
14227
14421
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -14235,6 +14429,9 @@ function openImageEditor(href, name, path, source, onSuccess, onFailed) {
|
|
|
14235
14429
|
|
|
14236
14430
|
|
|
14237
14431
|
|
|
14432
|
+
|
|
14433
|
+
|
|
14434
|
+
|
|
14238
14435
|
const CLASS_PREVIEW = 'jodit-filebrowser-preview', preview_tpl_next = (next = 'next', right = 'right') => `<div class="${CLASS_PREVIEW}__navigation ${CLASS_PREVIEW}__navigation_arrow_${next}">` +
|
|
14239
14436
|
'' +
|
|
14240
14437
|
ui/* Icon.get */.JO.get('angle-' + right) +
|
|
@@ -14245,14 +14442,14 @@ const CLASS_PREVIEW = 'jodit-filebrowser-preview', preview_tpl_next = (next = 'n
|
|
|
14245
14442
|
}
|
|
14246
14443
|
const contextmenu = makeContextMenu(self);
|
|
14247
14444
|
return (e) => {
|
|
14248
|
-
const a = getItem(e.target, self.
|
|
14445
|
+
const a = getItem(e.target, self.container);
|
|
14249
14446
|
if (!a) {
|
|
14250
14447
|
return;
|
|
14251
14448
|
}
|
|
14252
14449
|
let item = a;
|
|
14253
14450
|
const opt = self.options, ga = (key) => (0,helpers.attr)(item, key) || '';
|
|
14254
14451
|
self.async.setTimeout(() => {
|
|
14255
|
-
const selectedItem = elementToItem(a, self
|
|
14452
|
+
const selectedItem = elementToItem(a, elementsMap(self));
|
|
14256
14453
|
if (!selectedItem) {
|
|
14257
14454
|
return;
|
|
14258
14455
|
}
|
|
@@ -14284,9 +14481,14 @@ const CLASS_PREVIEW = 'jodit-filebrowser-preview', preview_tpl_next = (next = 'n
|
|
|
14284
14481
|
icon: 'bin',
|
|
14285
14482
|
title: 'Delete',
|
|
14286
14483
|
exec: async () => {
|
|
14287
|
-
|
|
14484
|
+
try {
|
|
14485
|
+
await deleteFile(self, ga('data-name'), ga('data-source'));
|
|
14486
|
+
}
|
|
14487
|
+
catch (e) {
|
|
14488
|
+
return self.status(e);
|
|
14489
|
+
}
|
|
14288
14490
|
self.state.activeElements = [];
|
|
14289
|
-
return self.
|
|
14491
|
+
return loadTree(self).catch(self.status);
|
|
14290
14492
|
}
|
|
14291
14493
|
}
|
|
14292
14494
|
: false,
|
|
@@ -14371,7 +14573,9 @@ const CLASS_PREVIEW = 'jodit-filebrowser-preview', preview_tpl_next = (next = 'n
|
|
|
14371
14573
|
}
|
|
14372
14574
|
]);
|
|
14373
14575
|
}, self.defaultTimeout);
|
|
14374
|
-
self
|
|
14576
|
+
self.e
|
|
14577
|
+
.on('beforeClose', () => contextmenu.close())
|
|
14578
|
+
.on('beforeDestruct', () => contextmenu.destruct());
|
|
14375
14579
|
e.stopPropagation();
|
|
14376
14580
|
e.preventDefault();
|
|
14377
14581
|
return false;
|
|
@@ -14387,6 +14591,8 @@ const CLASS_PREVIEW = 'jodit-filebrowser-preview', preview_tpl_next = (next = 'n
|
|
|
14387
14591
|
|
|
14388
14592
|
|
|
14389
14593
|
|
|
14594
|
+
|
|
14595
|
+
|
|
14390
14596
|
const getItem = (node, root, tag = 'a') => dom/* Dom.closest */.i.closest(node, elm => dom/* Dom.isTag */.i.isTag(elm, tag), root);
|
|
14391
14597
|
const elementToItem = (elm, elementsMap) => {
|
|
14392
14598
|
const { key } = elm.dataset, { item } = elementsMap[key || ''];
|
|
@@ -14394,10 +14600,11 @@ const elementToItem = (elm, elementsMap) => {
|
|
|
14394
14600
|
};
|
|
14395
14601
|
function nativeListeners() {
|
|
14396
14602
|
let dragElement = false;
|
|
14603
|
+
const elmMap = elementsMap(this);
|
|
14397
14604
|
const self = this;
|
|
14398
14605
|
self.e
|
|
14399
14606
|
.on(self.tree.container, 'dragstart', (e) => {
|
|
14400
|
-
const a = getItem(e.target, self.
|
|
14607
|
+
const a = getItem(e.target, self.container);
|
|
14401
14608
|
if (!a) {
|
|
14402
14609
|
return;
|
|
14403
14610
|
}
|
|
@@ -14418,15 +14625,14 @@ function nativeListeners() {
|
|
|
14418
14625
|
return false;
|
|
14419
14626
|
}
|
|
14420
14627
|
}
|
|
14421
|
-
const a = getItem(e.target, self.
|
|
14628
|
+
const a = getItem(e.target, self.container);
|
|
14422
14629
|
if (!a) {
|
|
14423
14630
|
return;
|
|
14424
14631
|
}
|
|
14425
14632
|
self.dataProvider
|
|
14426
14633
|
.move(path, (0,helpers.attr)(a, '-path') || '', (0,helpers.attr)(a, '-source') || '', dragElement.classList.contains(this.files.getFullElName('item')))
|
|
14427
|
-
.then(() =>
|
|
14428
|
-
self.
|
|
14429
|
-
}, self.status);
|
|
14634
|
+
.then(() => loadTree(this))
|
|
14635
|
+
.catch(self.status);
|
|
14430
14636
|
dragElement = false;
|
|
14431
14637
|
}
|
|
14432
14638
|
})
|
|
@@ -14437,11 +14643,11 @@ function nativeListeners() {
|
|
|
14437
14643
|
}
|
|
14438
14644
|
})
|
|
14439
14645
|
.on(self.files.container, 'click', (e) => {
|
|
14440
|
-
const a = getItem(e.target, self.
|
|
14646
|
+
const a = getItem(e.target, self.container);
|
|
14441
14647
|
if (!a) {
|
|
14442
14648
|
return;
|
|
14443
14649
|
}
|
|
14444
|
-
const item = elementToItem(a,
|
|
14650
|
+
const item = elementToItem(a, elmMap);
|
|
14445
14651
|
if (!item) {
|
|
14446
14652
|
return;
|
|
14447
14653
|
}
|
|
@@ -14459,14 +14665,14 @@ function nativeListeners() {
|
|
|
14459
14665
|
})
|
|
14460
14666
|
.on(self.files.container, 'dragstart', (e) => {
|
|
14461
14667
|
if (self.o.moveFile) {
|
|
14462
|
-
const a = getItem(e.target, self.
|
|
14668
|
+
const a = getItem(e.target, self.container);
|
|
14463
14669
|
if (!a) {
|
|
14464
14670
|
return;
|
|
14465
14671
|
}
|
|
14466
14672
|
dragElement = a;
|
|
14467
14673
|
}
|
|
14468
14674
|
})
|
|
14469
|
-
.on(self.
|
|
14675
|
+
.on(self.container, 'drop', (e) => e.preventDefault());
|
|
14470
14676
|
}
|
|
14471
14677
|
|
|
14472
14678
|
;// CONCATENATED MODULE: ./src/modules/file-browser/listeners/self-listeners.ts
|
|
@@ -14480,6 +14686,9 @@ function nativeListeners() {
|
|
|
14480
14686
|
|
|
14481
14687
|
|
|
14482
14688
|
|
|
14689
|
+
|
|
14690
|
+
|
|
14691
|
+
|
|
14483
14692
|
function selfListeners() {
|
|
14484
14693
|
const state = this.state, dp = this.dataProvider, self = this;
|
|
14485
14694
|
self.e
|
|
@@ -14491,13 +14700,13 @@ function selfListeners() {
|
|
|
14491
14700
|
.on('sort.filebrowser', (value) => {
|
|
14492
14701
|
if (value !== state.sortBy) {
|
|
14493
14702
|
state.sortBy = value;
|
|
14494
|
-
self.
|
|
14703
|
+
loadItems(self).catch(self.status);
|
|
14495
14704
|
}
|
|
14496
14705
|
})
|
|
14497
14706
|
.on('filter.filebrowser', (value) => {
|
|
14498
14707
|
if (value !== state.filterWord) {
|
|
14499
14708
|
state.filterWord = value;
|
|
14500
|
-
self.
|
|
14709
|
+
loadItems(self).catch(self.status);
|
|
14501
14710
|
}
|
|
14502
14711
|
})
|
|
14503
14712
|
.on('openFolder.filebrowser', (data) => {
|
|
@@ -14522,7 +14731,7 @@ function selfListeners() {
|
|
|
14522
14731
|
dp.folderRemove(data.path, data.name, data.source)
|
|
14523
14732
|
.then(message => {
|
|
14524
14733
|
self.status(message, true);
|
|
14525
|
-
|
|
14734
|
+
return loadTree(self);
|
|
14526
14735
|
})
|
|
14527
14736
|
.catch(self.status);
|
|
14528
14737
|
}
|
|
@@ -14538,7 +14747,7 @@ function selfListeners() {
|
|
|
14538
14747
|
.then(message => {
|
|
14539
14748
|
self.state.activeElements = [];
|
|
14540
14749
|
self.status(message, true);
|
|
14541
|
-
|
|
14750
|
+
return loadTree(self);
|
|
14542
14751
|
})
|
|
14543
14752
|
.catch(self.status);
|
|
14544
14753
|
return;
|
|
@@ -14546,9 +14755,9 @@ function selfListeners() {
|
|
|
14546
14755
|
})
|
|
14547
14756
|
.on('addFolder.filebrowser', (data) => {
|
|
14548
14757
|
Prompt(self.i18n('Enter Directory name'), self.i18n('Create directory'), (name) => {
|
|
14549
|
-
dp.createFolder(name, data.path, data.source)
|
|
14550
|
-
|
|
14551
|
-
|
|
14758
|
+
dp.createFolder(name, data.path, data.source)
|
|
14759
|
+
.then(() => loadTree(self))
|
|
14760
|
+
.catch(self.status);
|
|
14552
14761
|
}, self.i18n('type name')).bindDestruct(self);
|
|
14553
14762
|
})
|
|
14554
14763
|
.on('fileRemove.filebrowser', () => {
|
|
@@ -14557,12 +14766,10 @@ function selfListeners() {
|
|
|
14557
14766
|
if (yes) {
|
|
14558
14767
|
const promises = [];
|
|
14559
14768
|
self.state.activeElements.forEach(item => {
|
|
14560
|
-
promises.push(
|
|
14769
|
+
promises.push(deleteFile(self, item.file || item.name || '', item.sourceName));
|
|
14561
14770
|
});
|
|
14562
14771
|
self.state.activeElements = [];
|
|
14563
|
-
Promise.all(promises).then(() =>
|
|
14564
|
-
return self.loadTree();
|
|
14565
|
-
});
|
|
14772
|
+
Promise.all(promises).then(() => loadTree(self).catch(self.status), self.status);
|
|
14566
14773
|
}
|
|
14567
14774
|
}).bindDestruct(self);
|
|
14568
14775
|
}
|
|
@@ -14584,7 +14791,7 @@ function selfListeners() {
|
|
|
14584
14791
|
.then(message => {
|
|
14585
14792
|
self.state.activeElements = [];
|
|
14586
14793
|
self.status(message, true);
|
|
14587
|
-
self.
|
|
14794
|
+
loadItems(self).catch(self.status);
|
|
14588
14795
|
})
|
|
14589
14796
|
.catch(self.status);
|
|
14590
14797
|
return;
|
|
@@ -14592,7 +14799,7 @@ function selfListeners() {
|
|
|
14592
14799
|
}
|
|
14593
14800
|
})
|
|
14594
14801
|
.on('update.filebrowser', () => {
|
|
14595
|
-
|
|
14802
|
+
loadTree(this).then(this.status);
|
|
14596
14803
|
});
|
|
14597
14804
|
}
|
|
14598
14805
|
|
|
@@ -14656,17 +14863,19 @@ class FileBrowserTree extends ui/* UIGroup */.qe {
|
|
|
14656
14863
|
|
|
14657
14864
|
|
|
14658
14865
|
|
|
14866
|
+
|
|
14867
|
+
|
|
14868
|
+
|
|
14659
14869
|
|
|
14660
14870
|
class FileBrowser extends ViewWithToolbar {
|
|
14661
14871
|
constructor(options) {
|
|
14662
14872
|
var _a;
|
|
14663
14873
|
super(options);
|
|
14664
|
-
this.loader = this.c.div(this.getFullElName('loader'), '<div class="jodit-icon_loader"></div>');
|
|
14665
14874
|
this.browser = this.c.div(this.componentName);
|
|
14666
14875
|
this.status_line = this.c.div(this.getFullElName('status'));
|
|
14667
14876
|
this.tree = new FileBrowserTree(this);
|
|
14668
14877
|
this.files = new FileBrowserFiles(this);
|
|
14669
|
-
this.state = event_emitter/*
|
|
14878
|
+
this.state = (0,event_emitter/* observable */.LO)({
|
|
14670
14879
|
currentPath: '',
|
|
14671
14880
|
currentSource: DEFAULT_SOURCE_NAME,
|
|
14672
14881
|
currentBaseUrl: '',
|
|
@@ -14690,7 +14899,6 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
14690
14899
|
this.close = () => {
|
|
14691
14900
|
this.dialog.close();
|
|
14692
14901
|
};
|
|
14693
|
-
this.elementsMap = {};
|
|
14694
14902
|
this.attachEvents(options);
|
|
14695
14903
|
const self = this;
|
|
14696
14904
|
self.options = (0,helpers.ConfigProto)(options || {}, config/* Config.defaultOptions.filebrowser */.D.defaultOptions.filebrowser);
|
|
@@ -14706,12 +14914,9 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
14706
14914
|
minHeight: 300,
|
|
14707
14915
|
buttons: (_a = this.o.headerButtons) !== null && _a !== void 0 ? _a : ['fullsize', 'dialog.close']
|
|
14708
14916
|
});
|
|
14709
|
-
|
|
14710
|
-
self.dialog.events.on(self.dialog, proxyEvent, () => {
|
|
14711
|
-
this.e.fire(proxyEvent);
|
|
14712
|
-
});
|
|
14713
|
-
});
|
|
14917
|
+
this.proxyDialogEvents(self);
|
|
14714
14918
|
self.browser.component = this;
|
|
14919
|
+
self.container = self.browser;
|
|
14715
14920
|
if (self.o.showFoldersPanel) {
|
|
14716
14921
|
self.browser.appendChild(self.tree.container);
|
|
14717
14922
|
}
|
|
@@ -14754,7 +14959,7 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
14754
14959
|
else {
|
|
14755
14960
|
self.state.view = self.o.view === 'list' ? 'list' : 'tiles';
|
|
14756
14961
|
}
|
|
14757
|
-
|
|
14962
|
+
self.files.setMod('view', self.state.view);
|
|
14758
14963
|
const sortBy = storeSortBy && self.storage.get('sortBy');
|
|
14759
14964
|
if (sortBy) {
|
|
14760
14965
|
const parts = sortBy.split('-');
|
|
@@ -14771,62 +14976,11 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
14771
14976
|
self.state.currentSource = currentSource !== null && currentSource !== void 0 ? currentSource : '';
|
|
14772
14977
|
}
|
|
14773
14978
|
self.initUploader(self);
|
|
14979
|
+
self.setStatus(component/* STATUSES.ready */.n$.ready);
|
|
14774
14980
|
}
|
|
14775
14981
|
className() {
|
|
14776
14982
|
return 'Filebrowser';
|
|
14777
14983
|
}
|
|
14778
|
-
async loadItems() {
|
|
14779
|
-
this.files.setMod('active', true);
|
|
14780
|
-
this.files.container.appendChild(this.loader.cloneNode(true));
|
|
14781
|
-
return this.dataProvider
|
|
14782
|
-
.items(this.state.currentPath, this.state.currentSource, {
|
|
14783
|
-
sortBy: this.state.sortBy,
|
|
14784
|
-
onlyImages: this.state.onlyImages,
|
|
14785
|
-
filterWord: this.state.filterWord
|
|
14786
|
-
})
|
|
14787
|
-
.then(resp => {
|
|
14788
|
-
this.state.elements = resp;
|
|
14789
|
-
this.state.activeElements = [];
|
|
14790
|
-
})
|
|
14791
|
-
.catch(this.status);
|
|
14792
|
-
}
|
|
14793
|
-
async loadTree() {
|
|
14794
|
-
const errorUni = (e) => {
|
|
14795
|
-
throw e instanceof Error ? e : (0,helpers.error)(e);
|
|
14796
|
-
};
|
|
14797
|
-
if (this.uploader) {
|
|
14798
|
-
this.uploader.setPath(this.state.currentPath);
|
|
14799
|
-
this.uploader.setSource(this.state.currentSource);
|
|
14800
|
-
}
|
|
14801
|
-
this.tree.setMod('active', true);
|
|
14802
|
-
dom/* Dom.detach */.i.detach(this.tree.container);
|
|
14803
|
-
this.tree.container.appendChild(this.loader.cloneNode(true));
|
|
14804
|
-
const items = this.loadItems();
|
|
14805
|
-
if (this.o.showFoldersPanel) {
|
|
14806
|
-
const tree = this.dataProvider
|
|
14807
|
-
.tree(this.state.currentPath, this.state.currentSource)
|
|
14808
|
-
.then(resp => {
|
|
14809
|
-
this.state.sources = resp;
|
|
14810
|
-
})
|
|
14811
|
-
.catch(e => {
|
|
14812
|
-
this.errorHandler(errorUni(this.i18n('Error on load folders')));
|
|
14813
|
-
errorUni(e);
|
|
14814
|
-
});
|
|
14815
|
-
return Promise.all([tree, items]).catch(helpers.error);
|
|
14816
|
-
}
|
|
14817
|
-
else {
|
|
14818
|
-
this.tree.setMod('active', false);
|
|
14819
|
-
}
|
|
14820
|
-
return items.catch(helpers.error);
|
|
14821
|
-
}
|
|
14822
|
-
deleteFile(name, source) {
|
|
14823
|
-
return this.dataProvider
|
|
14824
|
-
.fileRemove(this.state.currentPath, name, source)
|
|
14825
|
-
.then(message => {
|
|
14826
|
-
this.status(message || this.i18n('File "%s" was deleted', name), true);
|
|
14827
|
-
})
|
|
14828
|
-
.catch(this.status);
|
|
14829
|
-
}
|
|
14830
14984
|
onSelect(callback) {
|
|
14831
14985
|
return () => {
|
|
14832
14986
|
if (this.state.activeElements.length) {
|
|
@@ -14860,6 +15014,9 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
14860
15014
|
if (!(0,helpers.isString)(message)) {
|
|
14861
15015
|
message = message.message;
|
|
14862
15016
|
}
|
|
15017
|
+
if (!(0,helpers.isString)(message) || !(0,helpers.trim)(message).length) {
|
|
15018
|
+
return;
|
|
15019
|
+
}
|
|
14863
15020
|
const successClass = this.getFullElName('status', 'success', true), activeClass = this.getFullElName('status', 'active', true);
|
|
14864
15021
|
this.status_line.classList.remove(successClass);
|
|
14865
15022
|
this.status_line.classList.add(activeClass);
|
|
@@ -14902,23 +15059,32 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
14902
15059
|
this.toolbar.build((_a = this.o.buttons) !== null && _a !== void 0 ? _a : []).appendTo(header);
|
|
14903
15060
|
this.dialog.open(this.browser, header);
|
|
14904
15061
|
this.e.fire('sort.filebrowser', this.state.sortBy);
|
|
14905
|
-
|
|
15062
|
+
loadTree(this).then(resolve, reject);
|
|
14906
15063
|
});
|
|
14907
15064
|
}
|
|
14908
15065
|
initUploader(editor) {
|
|
14909
15066
|
var _a;
|
|
14910
15067
|
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);
|
|
14911
|
-
const uploadHandler = () =>
|
|
14912
|
-
return this.loadItems();
|
|
14913
|
-
};
|
|
15068
|
+
const uploadHandler = () => loadItems(this);
|
|
14914
15069
|
self.uploader = self.getInstance('Uploader', uploaderOptions);
|
|
14915
15070
|
self.uploader.setPath(self.state.currentPath);
|
|
14916
15071
|
self.uploader.setSource(self.state.currentSource);
|
|
14917
15072
|
self.uploader.bind(self.browser, uploadHandler, self.errorHandler);
|
|
15073
|
+
this.state.on(['change.currentPath', 'change.currentSource'], () => {
|
|
15074
|
+
this.uploader.setPath(this.state.currentPath);
|
|
15075
|
+
this.uploader.setSource(this.state.currentSource);
|
|
15076
|
+
});
|
|
14918
15077
|
self.e.on('bindUploader.filebrowser', (button) => {
|
|
14919
15078
|
self.uploader.bind(button, uploadHandler, self.errorHandler);
|
|
14920
15079
|
});
|
|
14921
15080
|
}
|
|
15081
|
+
proxyDialogEvents(self) {
|
|
15082
|
+
['afterClose', 'beforeOpen'].forEach(proxyEvent => {
|
|
15083
|
+
self.dialog.events.on(self.dialog, proxyEvent, () => {
|
|
15084
|
+
this.e.fire(proxyEvent);
|
|
15085
|
+
});
|
|
15086
|
+
});
|
|
15087
|
+
}
|
|
14922
15088
|
destruct() {
|
|
14923
15089
|
if (this.isInDestruct) {
|
|
14924
15090
|
return;
|
|
@@ -17263,7 +17429,7 @@ Jodit.core = {
|
|
|
17263
17429
|
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
17264
17430
|
*/
|
|
17265
17431
|
|
|
17266
|
-
const en = __webpack_require__(
|
|
17432
|
+
const en = __webpack_require__(46);
|
|
17267
17433
|
let exp = {
|
|
17268
17434
|
en
|
|
17269
17435
|
};
|
|
@@ -17601,7 +17767,7 @@ function focus_focus(editor) {
|
|
|
17601
17767
|
|
|
17602
17768
|
config/* Config.prototype.controls.classSpan */.D.prototype.controls.classSpan = {
|
|
17603
17769
|
command: 'applyClassName',
|
|
17604
|
-
icon: __webpack_require__(
|
|
17770
|
+
icon: __webpack_require__(47),
|
|
17605
17771
|
exec: helpers.memorizeExec,
|
|
17606
17772
|
list: [
|
|
17607
17773
|
'enabled',
|
|
@@ -17664,9 +17830,9 @@ class classSpan extends Plugin {
|
|
|
17664
17830
|
beforeDestruct() { }
|
|
17665
17831
|
}
|
|
17666
17832
|
|
|
17667
|
-
// EXTERNAL MODULE: ./src/core/helpers/utils/index.ts +
|
|
17833
|
+
// EXTERNAL MODULE: ./src/core/helpers/utils/index.ts + 18 modules
|
|
17668
17834
|
var utils = __webpack_require__(9);
|
|
17669
|
-
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts +
|
|
17835
|
+
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts + 4 modules
|
|
17670
17836
|
var string = __webpack_require__(27);
|
|
17671
17837
|
;// CONCATENATED MODULE: ./src/plugins/keyboard/helpers.ts
|
|
17672
17838
|
/*!
|
|
@@ -18063,13 +18229,13 @@ function checkUnwrapFirstListItem(jodit, fakeNode, backspace) {
|
|
|
18063
18229
|
s.cursorInTheEdge(backspace, li)) {
|
|
18064
18230
|
const ul = li.parentElement;
|
|
18065
18231
|
const p = jodit.createInside.element(jodit.o.enterBlock);
|
|
18066
|
-
(0,
|
|
18232
|
+
(0,utils/* call */.RE)(backspace ? dom/* Dom.before */.i.before : dom/* Dom.after */.i.after, ul, p);
|
|
18067
18233
|
dom/* Dom.moveContent */.i.moveContent(li, p);
|
|
18068
18234
|
dom/* Dom.safeRemove */.i.safeRemove(li);
|
|
18069
18235
|
if (dom/* Dom.isEmpty */.i.isEmpty(ul)) {
|
|
18070
18236
|
dom/* Dom.safeRemove */.i.safeRemove(ul);
|
|
18071
18237
|
}
|
|
18072
|
-
(0,
|
|
18238
|
+
(0,utils/* call */.RE)(backspace ? s.setCursorBefore : s.setCursorAfter, fakeNode);
|
|
18073
18239
|
return true;
|
|
18074
18240
|
}
|
|
18075
18241
|
return false;
|
|
@@ -18905,6 +19071,7 @@ class clipboard {
|
|
|
18905
19071
|
config/* Config.prototype.askBeforePasteHTML */.D.prototype.askBeforePasteHTML = true;
|
|
18906
19072
|
config/* Config.prototype.processPasteHTML */.D.prototype.processPasteHTML = true;
|
|
18907
19073
|
config/* Config.prototype.askBeforePasteFromWord */.D.prototype.askBeforePasteFromWord = true;
|
|
19074
|
+
config/* Config.prototype.memorizeChoiceWhenPasteFragment */.D.prototype.memorizeChoiceWhenPasteFragment = false;
|
|
18908
19075
|
config/* Config.prototype.processPasteFromWord */.D.prototype.processPasteFromWord = true;
|
|
18909
19076
|
config/* Config.prototype.nl2brInPlainText */.D.prototype.nl2brInPlainText = true;
|
|
18910
19077
|
config/* Config.prototype.defaultActionOnPaste */.D.prototype.defaultActionOnPaste = constants.INSERT_AS_HTML;
|
|
@@ -19074,10 +19241,12 @@ class paste extends Plugin {
|
|
|
19074
19241
|
}
|
|
19075
19242
|
processHTML(e, html) {
|
|
19076
19243
|
if (this.j.o.askBeforePasteHTML) {
|
|
19077
|
-
|
|
19078
|
-
|
|
19079
|
-
|
|
19080
|
-
|
|
19244
|
+
if (this.j.o.memorizeChoiceWhenPasteFragment) {
|
|
19245
|
+
const cached = this.pasteStack.find(cachedItem => cachedItem.html === html);
|
|
19246
|
+
if (cached) {
|
|
19247
|
+
this.insertByType(e, html, cached.action || this.j.o.defaultActionOnPaste);
|
|
19248
|
+
return true;
|
|
19249
|
+
}
|
|
19081
19250
|
}
|
|
19082
19251
|
this.askInsertTypeDialog('Your code is similar to HTML. Keep as HTML?', 'Paste as HTML', (insertType) => {
|
|
19083
19252
|
this.insertByType(e, html, insertType);
|
|
@@ -19468,7 +19637,7 @@ function copyFormat(editor) {
|
|
|
19468
19637
|
|
|
19469
19638
|
|
|
19470
19639
|
// EXTERNAL MODULE: ./src/modules/widget/index.ts + 3 modules
|
|
19471
|
-
var widget = __webpack_require__(
|
|
19640
|
+
var widget = __webpack_require__(48);
|
|
19472
19641
|
;// CONCATENATED MODULE: ./src/plugins/color/color.ts
|
|
19473
19642
|
/*!
|
|
19474
19643
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -20380,7 +20549,8 @@ config/* Config.prototype.controls.paragraph */.D.prototype.controls.paragraph =
|
|
|
20380
20549
|
h2: 'Heading 2',
|
|
20381
20550
|
h3: 'Heading 3',
|
|
20382
20551
|
h4: 'Heading 4',
|
|
20383
|
-
blockquote: 'Quote'
|
|
20552
|
+
blockquote: 'Quote',
|
|
20553
|
+
pre: 'Code'
|
|
20384
20554
|
},
|
|
20385
20555
|
isChildActive: (editor, control) => {
|
|
20386
20556
|
const current = editor.s.current();
|
|
@@ -21037,7 +21207,7 @@ function positionTab(editor) {
|
|
|
21037
21207
|
|
|
21038
21208
|
|
|
21039
21209
|
// EXTERNAL MODULE: ./src/plugins/image/helpers.ts
|
|
21040
|
-
var image_helpers = __webpack_require__(
|
|
21210
|
+
var image_helpers = __webpack_require__(49);
|
|
21041
21211
|
;// CONCATENATED MODULE: ./src/plugins/image/image-properties/image-properties.ts
|
|
21042
21212
|
/*!
|
|
21043
21213
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -21123,6 +21293,8 @@ class imageProperties extends Plugin {
|
|
|
21123
21293
|
(0,helpers.markOwner)(this.j, this.dialog.container);
|
|
21124
21294
|
this.state.marginIsLocked = true;
|
|
21125
21295
|
this.state.sizeIsLocked = true;
|
|
21296
|
+
this.onChangeMarginIsLocked();
|
|
21297
|
+
this.onChangeSizeIsLocked();
|
|
21126
21298
|
this.updateValues();
|
|
21127
21299
|
this.dialog.open().setModal(true).setPosition();
|
|
21128
21300
|
return false;
|
|
@@ -21738,12 +21910,12 @@ config/* Config.prototype.toolbarInlineForSelection */.D.prototype.toolbarInline
|
|
|
21738
21910
|
config/* Config.prototype.toolbarInlineDisableFor */.D.prototype.toolbarInlineDisableFor = [];
|
|
21739
21911
|
config/* Config.prototype.toolbarInlineDisabledButtons */.D.prototype.toolbarInlineDisabledButtons = ['source'];
|
|
21740
21912
|
config/* Config.prototype.popup */.D.prototype.popup = {
|
|
21741
|
-
a: (__webpack_require__(
|
|
21742
|
-
img: (__webpack_require__(
|
|
21743
|
-
cells: (__webpack_require__(
|
|
21744
|
-
toolbar: (__webpack_require__(
|
|
21745
|
-
jodit: (__webpack_require__(
|
|
21746
|
-
'jodit-media': (__webpack_require__(
|
|
21913
|
+
a: (__webpack_require__(50)/* ["default"] */ .Z),
|
|
21914
|
+
img: (__webpack_require__(51)/* ["default"] */ .Z),
|
|
21915
|
+
cells: (__webpack_require__(52)/* ["default"] */ .Z),
|
|
21916
|
+
toolbar: (__webpack_require__(53)/* ["default"] */ .Z),
|
|
21917
|
+
jodit: (__webpack_require__(54)/* ["default"] */ .Z),
|
|
21918
|
+
'jodit-media': (__webpack_require__(54)/* ["default"] */ .Z),
|
|
21747
21919
|
selection: [
|
|
21748
21920
|
'bold',
|
|
21749
21921
|
'underline',
|
|
@@ -22187,7 +22359,7 @@ class limit extends Plugin {
|
|
|
22187
22359
|
], limit.prototype, "checkPreventChanging", null);
|
|
22188
22360
|
|
|
22189
22361
|
// EXTERNAL MODULE: ./src/core/ui/form/index.ts + 11 modules
|
|
22190
|
-
var ui_form = __webpack_require__(
|
|
22362
|
+
var ui_form = __webpack_require__(45);
|
|
22191
22363
|
;// CONCATENATED MODULE: ./src/plugins/link/template.ts
|
|
22192
22364
|
/*!
|
|
22193
22365
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -22640,7 +22812,7 @@ function media(editor) {
|
|
|
22640
22812
|
if (mediaInFakeBlock) {
|
|
22641
22813
|
editor.e
|
|
22642
22814
|
.on('afterGetValueFromEditor', (data) => {
|
|
22643
|
-
const rxp = new RegExp(`<${mediaFakeTag}[^>]+data-${keyFake}[^>]+>(
|
|
22815
|
+
const rxp = new RegExp(`<${mediaFakeTag}[^>]+data-${keyFake}[^>]+>([^]+?)</${mediaFakeTag}>`, 'ig');
|
|
22644
22816
|
if (rxp.test(data.value)) {
|
|
22645
22817
|
data.value = data.value.replace(rxp, '$1');
|
|
22646
22818
|
}
|
|
@@ -23530,14 +23702,15 @@ class resizer extends Plugin {
|
|
|
23530
23702
|
(0,helpers.$$)('iframe', this.j.editor).forEach(this.bind);
|
|
23531
23703
|
}
|
|
23532
23704
|
bind(element) {
|
|
23533
|
-
if (element
|
|
23705
|
+
if (!dom/* Dom.isHTMLElement */.i.isHTMLElement(element) || (0,helpers.dataBind)(element, keyBInd)) {
|
|
23534
23706
|
return;
|
|
23535
23707
|
}
|
|
23536
|
-
element
|
|
23708
|
+
(0,helpers.dataBind)(element, keyBInd, true);
|
|
23537
23709
|
let wrapper;
|
|
23538
23710
|
if (dom/* Dom.isTag */.i.isTag(element, 'iframe')) {
|
|
23539
23711
|
const iframe = element;
|
|
23540
|
-
if (
|
|
23712
|
+
if (dom/* Dom.isHTMLElement */.i.isHTMLElement(element.parentNode) &&
|
|
23713
|
+
(0,helpers.attr)(element.parentNode, '-jodit_iframe_wrapper')) {
|
|
23541
23714
|
element = element.parentNode;
|
|
23542
23715
|
}
|
|
23543
23716
|
else {
|
|
@@ -24882,7 +25055,7 @@ class source extends Plugin {
|
|
|
24882
25055
|
this.__oldMirrorValue = value;
|
|
24883
25056
|
}
|
|
24884
25057
|
getNormalPosition(pos, str) {
|
|
24885
|
-
str = str.replace(/<(script|style|iframe)[^>]
|
|
25058
|
+
str = str.replace(/<(script|style|iframe)[^>]*>[^]*?<\/\1>/im, m => {
|
|
24886
25059
|
let res = '';
|
|
24887
25060
|
for (let i = 0; i < m.length; i += 1) {
|
|
24888
25061
|
res += constants.INVISIBLE_SPACE;
|
|
@@ -26908,169 +27081,169 @@ class xpath extends Plugin {
|
|
|
26908
27081
|
|
|
26909
27082
|
|
|
26910
27083
|
// EXTERNAL MODULE: ./src/styles/icons/about.svg
|
|
26911
|
-
var icons_about = __webpack_require__(
|
|
27084
|
+
var icons_about = __webpack_require__(55);
|
|
26912
27085
|
// EXTERNAL MODULE: ./src/styles/icons/addcolumn.svg
|
|
26913
|
-
var addcolumn = __webpack_require__(
|
|
27086
|
+
var addcolumn = __webpack_require__(56);
|
|
26914
27087
|
// EXTERNAL MODULE: ./src/styles/icons/addrow.svg
|
|
26915
|
-
var addrow = __webpack_require__(
|
|
27088
|
+
var addrow = __webpack_require__(57);
|
|
26916
27089
|
// EXTERNAL MODULE: ./src/styles/icons/angle-down.svg
|
|
26917
|
-
var angle_down = __webpack_require__(
|
|
27090
|
+
var angle_down = __webpack_require__(58);
|
|
26918
27091
|
// EXTERNAL MODULE: ./src/styles/icons/angle-left.svg
|
|
26919
|
-
var angle_left = __webpack_require__(
|
|
27092
|
+
var angle_left = __webpack_require__(59);
|
|
26920
27093
|
// EXTERNAL MODULE: ./src/styles/icons/angle-right.svg
|
|
26921
|
-
var angle_right = __webpack_require__(
|
|
27094
|
+
var angle_right = __webpack_require__(60);
|
|
26922
27095
|
// EXTERNAL MODULE: ./src/styles/icons/angle-up.svg
|
|
26923
|
-
var angle_up = __webpack_require__(
|
|
27096
|
+
var angle_up = __webpack_require__(61);
|
|
26924
27097
|
// EXTERNAL MODULE: ./src/styles/icons/arrows-alt.svg
|
|
26925
|
-
var arrows_alt = __webpack_require__(
|
|
27098
|
+
var arrows_alt = __webpack_require__(62);
|
|
26926
27099
|
// EXTERNAL MODULE: ./src/styles/icons/arrows-h.svg
|
|
26927
|
-
var arrows_h = __webpack_require__(
|
|
27100
|
+
var arrows_h = __webpack_require__(63);
|
|
26928
27101
|
// EXTERNAL MODULE: ./src/styles/icons/attachment.svg
|
|
26929
|
-
var attachment = __webpack_require__(
|
|
27102
|
+
var attachment = __webpack_require__(64);
|
|
26930
27103
|
// EXTERNAL MODULE: ./src/styles/icons/bin.svg
|
|
26931
|
-
var bin = __webpack_require__(
|
|
27104
|
+
var bin = __webpack_require__(65);
|
|
26932
27105
|
// EXTERNAL MODULE: ./src/styles/icons/bold.svg
|
|
26933
|
-
var icons_bold = __webpack_require__(
|
|
27106
|
+
var icons_bold = __webpack_require__(66);
|
|
26934
27107
|
// EXTERNAL MODULE: ./src/styles/icons/brush.svg
|
|
26935
|
-
var brush = __webpack_require__(
|
|
27108
|
+
var brush = __webpack_require__(67);
|
|
26936
27109
|
// EXTERNAL MODULE: ./src/styles/icons/cancel.svg
|
|
26937
|
-
var cancel = __webpack_require__(
|
|
27110
|
+
var cancel = __webpack_require__(68);
|
|
26938
27111
|
// EXTERNAL MODULE: ./src/styles/icons/center.svg
|
|
26939
|
-
var center = __webpack_require__(
|
|
27112
|
+
var center = __webpack_require__(69);
|
|
26940
27113
|
// EXTERNAL MODULE: ./src/styles/icons/chain-broken.svg
|
|
26941
|
-
var chain_broken = __webpack_require__(
|
|
27114
|
+
var chain_broken = __webpack_require__(70);
|
|
26942
27115
|
// EXTERNAL MODULE: ./src/styles/icons/check.svg
|
|
26943
|
-
var check = __webpack_require__(
|
|
27116
|
+
var check = __webpack_require__(71);
|
|
26944
27117
|
// EXTERNAL MODULE: ./src/styles/icons/check-square.svg
|
|
26945
|
-
var check_square = __webpack_require__(
|
|
27118
|
+
var check_square = __webpack_require__(72);
|
|
26946
27119
|
// EXTERNAL MODULE: ./src/styles/icons/chevron.svg
|
|
26947
|
-
var chevron = __webpack_require__(
|
|
27120
|
+
var chevron = __webpack_require__(73);
|
|
26948
27121
|
// EXTERNAL MODULE: ./src/styles/icons/copyformat.svg
|
|
26949
|
-
var copyformat = __webpack_require__(
|
|
27122
|
+
var copyformat = __webpack_require__(74);
|
|
26950
27123
|
// EXTERNAL MODULE: ./src/styles/icons/crop.svg
|
|
26951
|
-
var crop = __webpack_require__(
|
|
27124
|
+
var crop = __webpack_require__(75);
|
|
26952
27125
|
// EXTERNAL MODULE: ./src/styles/icons/copy.svg
|
|
26953
|
-
var copy = __webpack_require__(
|
|
27126
|
+
var copy = __webpack_require__(76);
|
|
26954
27127
|
// EXTERNAL MODULE: ./src/styles/icons/cut.svg
|
|
26955
|
-
var cut = __webpack_require__(
|
|
27128
|
+
var cut = __webpack_require__(77);
|
|
26956
27129
|
// EXTERNAL MODULE: ./src/styles/icons/dedent.svg
|
|
26957
|
-
var dedent = __webpack_require__(
|
|
27130
|
+
var dedent = __webpack_require__(78);
|
|
26958
27131
|
// EXTERNAL MODULE: ./src/styles/icons/dots.svg
|
|
26959
|
-
var dots = __webpack_require__(
|
|
27132
|
+
var dots = __webpack_require__(79);
|
|
26960
27133
|
// EXTERNAL MODULE: ./src/styles/icons/enter.svg
|
|
26961
|
-
var icons_enter = __webpack_require__(
|
|
27134
|
+
var icons_enter = __webpack_require__(80);
|
|
26962
27135
|
// EXTERNAL MODULE: ./src/styles/icons/eraser.svg
|
|
26963
|
-
var eraser = __webpack_require__(
|
|
27136
|
+
var eraser = __webpack_require__(81);
|
|
26964
27137
|
// EXTERNAL MODULE: ./src/styles/icons/eye.svg
|
|
26965
|
-
var eye = __webpack_require__(
|
|
27138
|
+
var eye = __webpack_require__(82);
|
|
26966
27139
|
// EXTERNAL MODULE: ./src/styles/icons/file.svg
|
|
26967
|
-
var icons_file = __webpack_require__(
|
|
27140
|
+
var icons_file = __webpack_require__(83);
|
|
26968
27141
|
// EXTERNAL MODULE: ./src/styles/icons/folder.svg
|
|
26969
|
-
var folder = __webpack_require__(
|
|
27142
|
+
var folder = __webpack_require__(84);
|
|
26970
27143
|
// EXTERNAL MODULE: ./src/styles/icons/font.svg
|
|
26971
|
-
var icons_font = __webpack_require__(
|
|
27144
|
+
var icons_font = __webpack_require__(85);
|
|
26972
27145
|
// EXTERNAL MODULE: ./src/styles/icons/fontsize.svg
|
|
26973
|
-
var fontsize = __webpack_require__(
|
|
27146
|
+
var fontsize = __webpack_require__(86);
|
|
26974
27147
|
// EXTERNAL MODULE: ./src/styles/icons/fullsize.svg
|
|
26975
|
-
var icons_fullsize = __webpack_require__(
|
|
27148
|
+
var icons_fullsize = __webpack_require__(87);
|
|
26976
27149
|
// EXTERNAL MODULE: ./src/styles/icons/hr.svg
|
|
26977
|
-
var icons_hr = __webpack_require__(
|
|
27150
|
+
var icons_hr = __webpack_require__(88);
|
|
26978
27151
|
// EXTERNAL MODULE: ./src/styles/icons/image.svg
|
|
26979
|
-
var icons_image = __webpack_require__(
|
|
27152
|
+
var icons_image = __webpack_require__(89);
|
|
26980
27153
|
// EXTERNAL MODULE: ./src/styles/icons/indent.svg
|
|
26981
|
-
var icons_indent = __webpack_require__(
|
|
27154
|
+
var icons_indent = __webpack_require__(90);
|
|
26982
27155
|
// EXTERNAL MODULE: ./src/styles/icons/info-circle.svg
|
|
26983
|
-
var info_circle = __webpack_require__(
|
|
27156
|
+
var info_circle = __webpack_require__(91);
|
|
26984
27157
|
// EXTERNAL MODULE: ./src/styles/icons/italic.svg
|
|
26985
|
-
var italic = __webpack_require__(
|
|
27158
|
+
var italic = __webpack_require__(92);
|
|
26986
27159
|
// EXTERNAL MODULE: ./src/styles/icons/justify.svg
|
|
26987
|
-
var icons_justify = __webpack_require__(
|
|
27160
|
+
var icons_justify = __webpack_require__(93);
|
|
26988
27161
|
// EXTERNAL MODULE: ./src/styles/icons/left.svg
|
|
26989
|
-
var left = __webpack_require__(
|
|
27162
|
+
var left = __webpack_require__(94);
|
|
26990
27163
|
// EXTERNAL MODULE: ./src/styles/icons/link.svg
|
|
26991
|
-
var icons_link = __webpack_require__(
|
|
27164
|
+
var icons_link = __webpack_require__(95);
|
|
26992
27165
|
// EXTERNAL MODULE: ./src/styles/icons/lock.svg
|
|
26993
|
-
var lock = __webpack_require__(
|
|
27166
|
+
var lock = __webpack_require__(96);
|
|
26994
27167
|
// EXTERNAL MODULE: ./src/styles/icons/menu.svg
|
|
26995
|
-
var menu = __webpack_require__(
|
|
27168
|
+
var menu = __webpack_require__(97);
|
|
26996
27169
|
// EXTERNAL MODULE: ./src/styles/icons/merge.svg
|
|
26997
|
-
var merge = __webpack_require__(
|
|
27170
|
+
var merge = __webpack_require__(98);
|
|
26998
27171
|
// EXTERNAL MODULE: ./src/styles/icons/ok.svg
|
|
26999
|
-
var ok = __webpack_require__(
|
|
27172
|
+
var ok = __webpack_require__(99);
|
|
27000
27173
|
// EXTERNAL MODULE: ./src/styles/icons/ol.svg
|
|
27001
|
-
var ol = __webpack_require__(
|
|
27174
|
+
var ol = __webpack_require__(100);
|
|
27002
27175
|
// EXTERNAL MODULE: ./src/styles/icons/omega.svg
|
|
27003
|
-
var omega = __webpack_require__(
|
|
27176
|
+
var omega = __webpack_require__(101);
|
|
27004
27177
|
// EXTERNAL MODULE: ./src/styles/icons/outdent.svg
|
|
27005
|
-
var outdent = __webpack_require__(
|
|
27178
|
+
var outdent = __webpack_require__(102);
|
|
27006
27179
|
// EXTERNAL MODULE: ./src/styles/icons/palette.svg
|
|
27007
|
-
var palette = __webpack_require__(
|
|
27180
|
+
var palette = __webpack_require__(103);
|
|
27008
27181
|
// EXTERNAL MODULE: ./src/styles/icons/paragraph.svg
|
|
27009
|
-
var paragraph = __webpack_require__(
|
|
27182
|
+
var paragraph = __webpack_require__(104);
|
|
27010
27183
|
// EXTERNAL MODULE: ./src/styles/icons/paste.svg
|
|
27011
|
-
var icons_paste = __webpack_require__(
|
|
27184
|
+
var icons_paste = __webpack_require__(105);
|
|
27012
27185
|
// EXTERNAL MODULE: ./src/styles/icons/pencil.svg
|
|
27013
|
-
var pencil = __webpack_require__(
|
|
27186
|
+
var pencil = __webpack_require__(106);
|
|
27014
27187
|
// EXTERNAL MODULE: ./src/styles/icons/plus.svg
|
|
27015
|
-
var plus = __webpack_require__(
|
|
27188
|
+
var plus = __webpack_require__(107);
|
|
27016
27189
|
// EXTERNAL MODULE: ./src/styles/icons/print.svg
|
|
27017
|
-
var icons_print = __webpack_require__(
|
|
27190
|
+
var icons_print = __webpack_require__(108);
|
|
27018
27191
|
// EXTERNAL MODULE: ./src/styles/icons/redo.svg
|
|
27019
|
-
var redo = __webpack_require__(
|
|
27192
|
+
var redo = __webpack_require__(109);
|
|
27020
27193
|
// EXTERNAL MODULE: ./src/styles/icons/resize.svg
|
|
27021
|
-
var resize = __webpack_require__(
|
|
27194
|
+
var resize = __webpack_require__(110);
|
|
27022
27195
|
// EXTERNAL MODULE: ./src/styles/icons/resize-handler.svg
|
|
27023
|
-
var resize_handler = __webpack_require__(
|
|
27196
|
+
var resize_handler = __webpack_require__(111);
|
|
27024
27197
|
// EXTERNAL MODULE: ./src/styles/icons/resizer.svg
|
|
27025
|
-
var icons_resizer = __webpack_require__(
|
|
27198
|
+
var icons_resizer = __webpack_require__(112);
|
|
27026
27199
|
// EXTERNAL MODULE: ./src/styles/icons/right.svg
|
|
27027
|
-
var right = __webpack_require__(
|
|
27200
|
+
var right = __webpack_require__(113);
|
|
27028
27201
|
// EXTERNAL MODULE: ./src/styles/icons/save.svg
|
|
27029
|
-
var save = __webpack_require__(
|
|
27202
|
+
var save = __webpack_require__(114);
|
|
27030
27203
|
// EXTERNAL MODULE: ./src/styles/icons/search.svg
|
|
27031
|
-
var icons_search = __webpack_require__(
|
|
27204
|
+
var icons_search = __webpack_require__(115);
|
|
27032
27205
|
// EXTERNAL MODULE: ./src/styles/icons/settings.svg
|
|
27033
|
-
var settings = __webpack_require__(
|
|
27206
|
+
var settings = __webpack_require__(116);
|
|
27034
27207
|
// EXTERNAL MODULE: ./src/styles/icons/select-all.svg
|
|
27035
|
-
var select_all = __webpack_require__(
|
|
27208
|
+
var select_all = __webpack_require__(117);
|
|
27036
27209
|
// EXTERNAL MODULE: ./src/styles/icons/shrink.svg
|
|
27037
|
-
var shrink = __webpack_require__(
|
|
27210
|
+
var shrink = __webpack_require__(118);
|
|
27038
27211
|
// EXTERNAL MODULE: ./src/styles/icons/source.svg
|
|
27039
|
-
var icons_source = __webpack_require__(
|
|
27212
|
+
var icons_source = __webpack_require__(119);
|
|
27040
27213
|
// EXTERNAL MODULE: ./src/styles/icons/splitg.svg
|
|
27041
|
-
var splitg = __webpack_require__(
|
|
27214
|
+
var splitg = __webpack_require__(120);
|
|
27042
27215
|
// EXTERNAL MODULE: ./src/styles/icons/splitv.svg
|
|
27043
|
-
var splitv = __webpack_require__(
|
|
27216
|
+
var splitv = __webpack_require__(121);
|
|
27044
27217
|
// EXTERNAL MODULE: ./src/styles/icons/strikethrough.svg
|
|
27045
|
-
var strikethrough = __webpack_require__(
|
|
27218
|
+
var strikethrough = __webpack_require__(122);
|
|
27046
27219
|
// EXTERNAL MODULE: ./src/styles/icons/subscript.svg
|
|
27047
|
-
var subscript = __webpack_require__(
|
|
27220
|
+
var subscript = __webpack_require__(123);
|
|
27048
27221
|
// EXTERNAL MODULE: ./src/styles/icons/superscript.svg
|
|
27049
|
-
var superscript = __webpack_require__(
|
|
27222
|
+
var superscript = __webpack_require__(124);
|
|
27050
27223
|
// EXTERNAL MODULE: ./src/styles/icons/table.svg
|
|
27051
|
-
var icons_table = __webpack_require__(
|
|
27224
|
+
var icons_table = __webpack_require__(125);
|
|
27052
27225
|
// EXTERNAL MODULE: ./src/styles/icons/th.svg
|
|
27053
|
-
var th = __webpack_require__(
|
|
27226
|
+
var th = __webpack_require__(126);
|
|
27054
27227
|
// EXTERNAL MODULE: ./src/styles/icons/th-list.svg
|
|
27055
|
-
var th_list = __webpack_require__(
|
|
27228
|
+
var th_list = __webpack_require__(127);
|
|
27056
27229
|
// EXTERNAL MODULE: ./src/styles/icons/ul.svg
|
|
27057
|
-
var ul = __webpack_require__(
|
|
27230
|
+
var ul = __webpack_require__(128);
|
|
27058
27231
|
// EXTERNAL MODULE: ./src/styles/icons/underline.svg
|
|
27059
|
-
var underline = __webpack_require__(
|
|
27232
|
+
var underline = __webpack_require__(129);
|
|
27060
27233
|
// EXTERNAL MODULE: ./src/styles/icons/undo.svg
|
|
27061
|
-
var undo = __webpack_require__(
|
|
27234
|
+
var undo = __webpack_require__(130);
|
|
27062
27235
|
// EXTERNAL MODULE: ./src/styles/icons/unlink.svg
|
|
27063
|
-
var unlink = __webpack_require__(
|
|
27236
|
+
var unlink = __webpack_require__(131);
|
|
27064
27237
|
// EXTERNAL MODULE: ./src/styles/icons/unlock.svg
|
|
27065
|
-
var unlock = __webpack_require__(
|
|
27238
|
+
var unlock = __webpack_require__(132);
|
|
27066
27239
|
// EXTERNAL MODULE: ./src/styles/icons/update.svg
|
|
27067
|
-
var update = __webpack_require__(
|
|
27240
|
+
var update = __webpack_require__(133);
|
|
27068
27241
|
// EXTERNAL MODULE: ./src/styles/icons/upload.svg
|
|
27069
|
-
var upload = __webpack_require__(
|
|
27242
|
+
var upload = __webpack_require__(134);
|
|
27070
27243
|
// EXTERNAL MODULE: ./src/styles/icons/valign.svg
|
|
27071
|
-
var valign = __webpack_require__(
|
|
27244
|
+
var valign = __webpack_require__(135);
|
|
27072
27245
|
// EXTERNAL MODULE: ./src/styles/icons/video.svg
|
|
27073
|
-
var icons_video = __webpack_require__(
|
|
27246
|
+
var icons_video = __webpack_require__(136);
|
|
27074
27247
|
;// CONCATENATED MODULE: ./src/styles/icons/index.ts
|
|
27075
27248
|
/*!
|
|
27076
27249
|
* Jodit Editor (https://xdsoft.net/jodit/)
|