jodit 4.0.0-beta.40 → 4.0.0-beta.44
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/CHANGELOG.md +12 -6
- package/README.md +54 -12
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.js +5185 -4742
- package/es2015/jodit.min.js +2 -2
- package/es2015/plugins/debug/debug.js +8 -8
- package/es2015/plugins/debug/debug.min.js +2 -2
- package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.js +33 -17
- package/es2015/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es2018/jodit.css +4896 -0
- package/es2018/jodit.js +38811 -0
- package/es2018/jodit.min.css +1 -0
- package/es2018/jodit.min.js +10 -0
- package/es2018/plugins/debug/debug.js +97 -0
- package/es2018/plugins/debug/debug.min.js +10 -0
- package/es2018/plugins/speech-recognize/speech-recognize.css +42 -0
- package/es2018/plugins/speech-recognize/speech-recognize.js +1023 -0
- package/es2018/plugins/speech-recognize/speech-recognize.min.css +1 -0
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +10 -0
- package/es2021/jodit.css +1 -1
- package/es2021/jodit.js +5185 -4742
- package/es2021/jodit.min.js +2 -2
- package/es2021/plugins/debug/debug.js +8 -8
- package/es2021/plugins/debug/debug.min.js +2 -2
- package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.js +33 -17
- package/es2021/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es2021.en/jodit.css +1 -1
- package/es2021.en/jodit.js +5185 -4742
- package/es2021.en/jodit.min.js +2 -2
- package/es2021.en/plugins/debug/debug.js +8 -8
- package/es2021.en/plugins/debug/debug.min.js +2 -2
- package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.js +33 -17
- package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/es5/jodit.css +2 -2
- package/es5/jodit.js +6295 -671
- package/es5/jodit.min.css +1 -1
- package/es5/jodit.min.js +2 -2
- package/es5/plugins/debug/debug.js +9 -9
- package/es5/plugins/debug/debug.min.js +2 -2
- package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.js +35 -19
- package/es5/plugins/speech-recognize/speech-recognize.min.js +2 -2
- package/esm/core/constants.js +2 -1
- package/esm/core/view/view.js +2 -1
- package/esm/index.js +0 -5
- package/esm/langs/index.js +20 -20
- package/esm/plugins/copy-format/langs/index.js +0 -25
- package/esm/plugins/index.js +0 -44
- package/esm/plugins/line-height/langs/index.js +0 -25
- package/esm/plugins/speech-recognize/langs/index.js +0 -25
- package/esm/plugins/spellcheck/langs/index.js +0 -25
- package/esm/plugins/symbols/langs/index.js +0 -25
- package/package.json +3 -6
- package/types/config.d.ts +558 -0
- package/types/core/async/async.d.ts +32 -0
- package/types/core/async/index.d.ts +3 -0
- package/types/core/component/component.d.ts +81 -0
- package/types/core/component/index.d.ts +3 -0
- package/types/core/component/statuses.d.ts +3 -0
- package/types/core/component/view-component.d.ts +13 -0
- package/types/core/constants.d.ts +62 -1
- package/types/core/create/create.d.ts +32 -0
- package/types/core/create/index.d.ts +3 -0
- package/types/core/decorators/cache/cache.d.ts +5 -0
- package/types/core/decorators/component/component.d.ts +9 -0
- package/types/core/decorators/debounce/debounce.d.ts +8 -0
- package/types/core/decorators/hook/hook.d.ts +8 -0
- package/types/core/decorators/idle/idle.d.ts +5 -0
- package/types/core/decorators/index.d.ts +5 -0
- package/types/core/decorators/nonenumerable/nonenumerable.d.ts +5 -0
- package/types/core/decorators/persistent/persistent.d.ts +5 -0
- package/types/core/decorators/wait/wait.d.ts +5 -0
- package/types/core/decorators/watch/watch.d.ts +8 -0
- package/types/core/dom/dom.d.ts +180 -0
- package/types/core/dom/index.d.ts +3 -0
- package/types/core/dom/lazy-walker.d.ts +3 -0
- package/types/core/event-emitter/event-emitter.d.ts +99 -0
- package/types/core/event-emitter/eventify.d.ts +25 -0
- package/types/core/event-emitter/index.d.ts +3 -0
- package/types/core/event-emitter/observable.d.ts +38 -0
- package/types/core/event-emitter/store.d.ts +3 -0
- package/types/core/global.d.ts +12 -0
- package/types/core/helpers/array/as-array.d.ts +3 -0
- package/types/core/helpers/array/index.d.ts +3 -0
- package/types/core/helpers/array/split-array.d.ts +6 -0
- package/types/core/helpers/array/to-array.d.ts +4 -0
- package/types/core/helpers/async/index.d.ts +3 -0
- package/types/core/helpers/async/set-timeout.d.ts +9 -0
- package/types/core/helpers/checker/has-browser-color-picker.d.ts +6 -0
- package/types/core/helpers/checker/index.d.ts +3 -0
- package/types/core/helpers/checker/is-array.d.ts +6 -0
- package/types/core/helpers/checker/is-boolean.d.ts +3 -0
- package/types/core/helpers/checker/is-equal.d.ts +3 -0
- package/types/core/helpers/checker/is-function.d.ts +6 -0
- package/types/core/helpers/checker/is-html-from-word.d.ts +6 -0
- package/types/core/helpers/checker/is-html.d.ts +3 -0
- package/types/core/helpers/checker/is-imp-interface.d.ts +12 -0
- package/types/core/helpers/checker/is-int.d.ts +3 -0
- package/types/core/helpers/checker/is-jodit-object.d.ts +6 -0
- package/types/core/helpers/checker/is-marker.d.ts +3 -0
- package/types/core/helpers/checker/is-native-function.d.ts +6 -0
- package/types/core/helpers/checker/is-number.d.ts +6 -0
- package/types/core/helpers/checker/is-numeric.d.ts +3 -0
- package/types/core/helpers/checker/is-plain-object.d.ts +6 -0
- package/types/core/helpers/checker/is-promise.d.ts +3 -0
- package/types/core/helpers/checker/is-set.d.ts +3 -0
- package/types/core/helpers/checker/is-string.d.ts +6 -0
- package/types/core/helpers/checker/is-url.d.ts +6 -0
- package/types/core/helpers/checker/is-valid-name.d.ts +6 -0
- package/types/core/helpers/checker/is-view-object.d.ts +6 -0
- package/types/core/helpers/checker/is-void.d.ts +6 -0
- package/types/core/helpers/checker/is-window.d.ts +3 -0
- package/types/core/helpers/color/color-to-hex.d.ts +16 -0
- package/types/core/helpers/color/index.d.ts +3 -0
- package/types/core/helpers/html/apply-styles.d.ts +5 -0
- package/types/core/helpers/html/clean-from-word.d.ts +4 -0
- package/types/core/helpers/html/htmlspecialchars.d.ts +7 -0
- package/types/core/helpers/html/index.d.ts +3 -0
- package/types/core/helpers/html/nl2br.d.ts +6 -0
- package/types/core/helpers/html/safe-html.d.ts +3 -0
- package/types/core/helpers/html/strip-tags.d.ts +6 -0
- package/types/core/helpers/index.d.ts +5 -0
- package/types/core/helpers/normalize/index.d.ts +3 -0
- package/types/core/helpers/normalize/normalize-color.d.ts +6 -0
- package/types/core/helpers/normalize/normalize-key-aliases.d.ts +3 -0
- package/types/core/helpers/normalize/normalize-license.d.ts +3 -0
- package/types/core/helpers/normalize/normalize-path.d.ts +3 -0
- package/types/core/helpers/normalize/normalize-relative-path.d.ts +3 -0
- package/types/core/helpers/normalize/normalize-size.d.ts +6 -0
- package/types/core/helpers/normalize/normalize-url.d.ts +3 -0
- package/types/core/helpers/size/get-content-width.d.ts +3 -0
- package/types/core/helpers/size/get-scroll-parent.d.ts +3 -0
- package/types/core/helpers/size/index.d.ts +3 -0
- package/types/core/helpers/size/inner-width.d.ts +3 -0
- package/types/core/helpers/size/object-size.d.ts +3 -0
- package/types/core/helpers/size/offset.d.ts +7 -0
- package/types/core/helpers/size/position.d.ts +3 -0
- package/types/core/helpers/string/camel-case.d.ts +6 -0
- package/types/core/helpers/string/fuzzy-search-index.d.ts +4 -0
- package/types/core/helpers/string/i18n.d.ts +31 -0
- package/types/core/helpers/string/index.d.ts +3 -0
- package/types/core/helpers/string/kebab-case.d.ts +3 -0
- package/types/core/helpers/string/stringify.d.ts +3 -0
- package/types/core/helpers/string/trim.d.ts +7 -0
- package/types/core/helpers/string/ucfirst.d.ts +6 -0
- package/types/core/helpers/utils/align.d.ts +12 -0
- package/types/core/helpers/utils/append-script.d.ts +12 -0
- package/types/core/helpers/utils/assert.d.ts +1 -0
- package/types/core/helpers/utils/attr.d.ts +12 -0
- package/types/core/helpers/utils/browser.d.ts +14 -0
- package/types/core/helpers/utils/build-query.d.ts +6 -0
- package/types/core/helpers/utils/complete-url.d.ts +3 -0
- package/types/core/helpers/utils/config-proto.d.ts +33 -0
- package/types/core/helpers/utils/convert-media-url-to-video-embed.d.ts +3 -0
- package/types/core/helpers/utils/css.d.ts +6 -0
- package/types/core/helpers/utils/ctrl-key.d.ts +7 -0
- package/types/core/helpers/utils/data-bind.d.ts +3 -0
- package/types/core/helpers/utils/default-language.d.ts +3 -0
- package/types/core/helpers/utils/error/error.d.ts +3 -0
- package/types/core/helpers/utils/error/errors/abort-error.d.ts +3 -0
- package/types/core/helpers/utils/error/errors/connection-error.d.ts +3 -0
- package/types/core/helpers/utils/error/errors/index.d.ts +3 -0
- package/types/core/helpers/utils/error/errors/options-error.d.ts +3 -0
- package/types/core/helpers/utils/error/index.d.ts +3 -0
- package/types/core/helpers/utils/get-class-name.d.ts +3 -0
- package/types/core/helpers/utils/get.d.ts +22 -0
- package/types/core/helpers/utils/human-size-to-bytes.d.ts +7 -0
- package/types/core/helpers/utils/index.d.ts +3 -0
- package/types/core/helpers/utils/mark-deprecated.d.ts +10 -0
- package/types/core/helpers/utils/parse-query.d.ts +6 -0
- package/types/core/helpers/utils/print.d.ts +9 -0
- package/types/core/helpers/utils/reset.d.ts +10 -0
- package/types/core/helpers/utils/scroll-into-view.d.ts +6 -0
- package/types/core/helpers/utils/selector.d.ts +29 -0
- package/types/core/helpers/utils/set.d.ts +16 -0
- package/types/core/helpers/utils/stack.d.ts +3 -0
- package/types/core/helpers/utils/utils.d.ts +24 -0
- package/types/core/helpers/utils/val.d.ts +3 -0
- package/types/core/plugin/helpers/init-instance.d.ts +11 -0
- package/types/core/plugin/helpers/load.d.ts +9 -0
- package/types/core/plugin/helpers/make-instance.d.ts +7 -0
- package/types/core/plugin/helpers/utils.d.ts +3 -0
- package/types/core/plugin/index.d.ts +3 -0
- package/types/core/plugin/interface.d.ts +4 -0
- package/types/core/plugin/plugin-system.d.ts +30 -0
- package/types/core/plugin/plugin.d.ts +10 -0
- package/types/core/request/ajax.d.ts +5 -0
- package/types/core/request/config.d.ts +6 -0
- package/types/core/request/index.d.ts +3 -0
- package/types/core/request/response.d.ts +3 -0
- package/types/core/selection/helpers/index.d.ts +3 -0
- package/types/core/selection/helpers/move-node-inside-start.d.ts +8 -0
- package/types/core/selection/helpers/move-the-node-along-the-edge-outward.d.ts +4 -0
- package/types/core/selection/index.d.ts +3 -0
- package/types/core/selection/interface.d.ts +9 -0
- package/types/core/selection/selection.d.ts +196 -0
- package/types/core/selection/style/api/extract.d.ts +16 -0
- package/types/core/selection/style/api/finite-state-machine.d.ts +3 -0
- package/types/core/selection/style/api/get-suit-child.d.ts +8 -0
- package/types/core/selection/style/api/get-suit-parent.d.ts +8 -0
- package/types/core/selection/style/api/has-same-style.d.ts +7 -0
- package/types/core/selection/style/api/is-inside-invisible-element.d.ts +4 -0
- package/types/core/selection/style/api/is-normal-node.d.ts +4 -0
- package/types/core/selection/style/api/is-same-attributes.d.ts +4 -0
- package/types/core/selection/style/api/is-suit-element.d.ts +24 -0
- package/types/core/selection/style/api/list/toggle-ordered-list.d.ts +4 -0
- package/types/core/selection/style/api/list/wrap-list.d.ts +5 -0
- package/types/core/selection/style/api/toggle-attributes.d.ts +4 -0
- package/types/core/selection/style/api/unwrap-children.d.ts +4 -0
- package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +4 -0
- package/types/core/selection/style/api/wrap.d.ts +4 -0
- package/types/core/selection/style/apply-style.d.ts +4 -0
- package/types/core/selection/style/commit-style.d.ts +9 -0
- package/types/core/storage/engines/local-storage-provider.d.ts +9 -0
- package/types/core/storage/engines/memory-storage-provider.d.ts +3 -0
- package/types/core/storage/index.d.ts +3 -0
- package/types/core/storage/storage.d.ts +5 -0
- package/types/core/traits/dlgs.d.ts +3 -0
- package/types/core/traits/elms.d.ts +9 -0
- package/types/core/traits/mods.d.ts +11 -0
- package/types/core/ui/button/button/button.d.ts +35 -0
- package/types/core/ui/button/group/group.d.ts +6 -0
- package/types/core/ui/button/index.d.ts +5 -0
- package/types/core/ui/button/tooltip/tooltip.d.ts +5 -0
- package/types/core/ui/element.d.ts +27 -0
- package/types/core/ui/form/block/block.d.ts +4 -0
- package/types/core/ui/form/form.d.ts +7 -0
- package/types/core/ui/form/index.d.ts +3 -0
- package/types/core/ui/form/inputs/area/area.d.ts +6 -0
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +8 -0
- package/types/core/ui/form/inputs/file/file.d.ts +4 -0
- package/types/core/ui/form/inputs/index.d.ts +3 -0
- package/types/core/ui/form/inputs/input/input.d.ts +18 -0
- package/types/core/ui/form/inputs/select/select.d.ts +10 -0
- package/types/core/ui/form/validators/index.d.ts +3 -0
- package/types/core/ui/form/validators/input.d.ts +9 -0
- package/types/core/ui/form/validators/select.d.ts +6 -0
- package/types/core/ui/group/group.d.ts +32 -0
- package/types/core/ui/group/index.d.ts +3 -0
- package/types/core/ui/group/list.d.ts +16 -0
- package/types/core/ui/group/separator.d.ts +3 -0
- package/types/core/ui/group/spacer.d.ts +3 -0
- package/types/core/ui/helpers/buttons.d.ts +9 -0
- package/types/core/ui/helpers/get-control-type.d.ts +10 -0
- package/types/core/ui/helpers/get-strong-control-types.d.ts +6 -0
- package/types/core/ui/icon.d.ts +15 -0
- package/types/core/ui/index.d.ts +5 -0
- package/types/core/ui/popup/index.d.ts +3 -0
- package/types/core/ui/popup/popup.d.ts +35 -0
- package/types/core/ui/progress-bar/progress-bar.d.ts +10 -0
- package/types/core/view/view-with-toolbar.d.ts +22 -0
- package/types/core/view/view.d.ts +66 -1
- package/types/index.d.ts +5 -0
- package/types/jodit.d.ts +248 -0
- package/types/langs/index.d.ts +5 -0
- package/types/modules/context-menu/context-menu.d.ts +20 -0
- package/types/modules/dialog/alert.d.ts +17 -0
- package/types/modules/dialog/confirm.d.ts +17 -0
- package/types/modules/dialog/dialog.d.ts +115 -0
- package/types/modules/dialog/index.d.ts +5 -0
- package/types/modules/dialog/prompt.d.ts +20 -0
- package/types/modules/file-browser/builders/context-menu.d.ts +3 -0
- package/types/modules/file-browser/builders/elements-map.d.ts +7 -0
- package/types/modules/file-browser/builders/item.d.ts +3 -0
- package/types/modules/file-browser/data-provider.d.ts +72 -0
- package/types/modules/file-browser/factories.d.ts +3 -0
- package/types/modules/file-browser/fetch/delete-file.d.ts +7 -0
- package/types/modules/file-browser/fetch/load-items.d.ts +7 -0
- package/types/modules/file-browser/fetch/load-tree.d.ts +7 -0
- package/types/modules/file-browser/file-browser.d.ts +39 -0
- package/types/modules/file-browser/index.d.ts +5 -0
- package/types/modules/file-browser/listeners/native-listeners.d.ts +12 -0
- package/types/modules/file-browser/listeners/self-listeners.d.ts +6 -0
- package/types/modules/file-browser/listeners/state-listeners.d.ts +7 -0
- package/types/modules/file-browser/ui/index.d.ts +3 -0
- package/types/modules/history/command.d.ts +3 -0
- package/types/modules/history/history.d.ts +37 -0
- package/types/modules/history/snapshot.d.ts +40 -0
- package/types/modules/history/stack.d.ts +3 -0
- package/types/modules/image-editor/image-editor.d.ts +54 -1
- package/types/modules/image-editor/templates/form.d.ts +3 -0
- package/types/modules/index.d.ts +5 -0
- package/types/modules/messages/message.d.ts +3 -0
- package/types/modules/messages/messages.d.ts +8 -0
- package/types/modules/status-bar/status-bar.d.ts +20 -0
- package/types/modules/table/table.d.ts +57 -0
- package/types/modules/toolbar/button/button.d.ts +34 -1
- package/types/modules/toolbar/button/content.d.ts +6 -0
- package/types/modules/toolbar/button/index.d.ts +3 -0
- package/types/modules/toolbar/collection/collection.d.ts +23 -0
- package/types/modules/toolbar/collection/editor-collection.d.ts +19 -0
- package/types/modules/toolbar/factory.d.ts +11 -0
- package/types/modules/uploader/config.d.ts +6 -0
- package/types/modules/uploader/helpers/build-data.d.ts +3 -0
- package/types/modules/uploader/helpers/data-uri-to-blob.d.ts +6 -0
- package/types/modules/uploader/helpers/index.d.ts +3 -0
- package/types/modules/uploader/helpers/process-old-browser-drag.d.ts +3 -0
- package/types/modules/uploader/helpers/send-files.d.ts +6 -0
- package/types/modules/uploader/helpers/send.d.ts +3 -0
- package/types/modules/uploader/uploader.d.ts +35 -0
- package/types/modules/widget/color-picker/color-picker.d.ts +22 -0
- package/types/modules/widget/file-selector/file-selector.d.ts +41 -0
- package/types/modules/widget/index.d.ts +5 -0
- package/types/modules/widget/tabs/tabs.d.ts +22 -0
- package/types/plugins/about/about.d.ts +5 -0
- package/types/plugins/add-new-line/add-new-line.d.ts +9 -0
- package/types/plugins/add-new-line/config.d.ts +22 -0
- package/types/plugins/backspace/backspace.d.ts +11 -0
- package/types/plugins/backspace/cases/check-join-neighbors.d.ts +7 -0
- package/types/plugins/backspace/cases/check-join-two-lists.d.ts +16 -0
- package/types/plugins/backspace/cases/check-not-collapsed.d.ts +16 -0
- package/types/plugins/backspace/cases/check-remove-char.d.ts +16 -0
- package/types/plugins/backspace/cases/check-remove-content-not-editable.d.ts +7 -0
- package/types/plugins/backspace/cases/check-remove-empty-neighbor.d.ts +16 -0
- package/types/plugins/backspace/cases/check-remove-empty-parent.d.ts +17 -0
- package/types/plugins/backspace/cases/check-remove-unbreakable-element.d.ts +17 -0
- package/types/plugins/backspace/cases/check-table-cell.d.ts +17 -0
- package/types/plugins/backspace/cases/check-unwrap-first-list-item.d.ts +17 -0
- package/types/plugins/backspace/cases/index.d.ts +3 -0
- package/types/plugins/backspace/helpers.d.ts +11 -0
- package/types/plugins/backspace/interface.d.ts +27 -0
- package/types/plugins/bold/bold.d.ts +8 -0
- package/types/plugins/bold/interface.d.ts +18 -0
- package/types/plugins/class-span/class-span.d.ts +27 -0
- package/types/plugins/clean-html/clean-html.d.ts +17 -0
- package/types/plugins/clean-html/config.d.ts +73 -0
- package/types/plugins/clean-html/helpers/get-hash.d.ts +6 -0
- package/types/plugins/clean-html/helpers/index.d.ts +3 -0
- package/types/plugins/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.d.ts +11 -0
- package/types/plugins/clean-html/helpers/remove-format/remove-format-for-selection.d.ts +7 -0
- package/types/plugins/clean-html/helpers/visitor/filters/allow-attributes.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/filters/fill-empty-paragraph.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/filters/index.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/filters/remove-empty-text-node.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/filters/remove-inv-text-nodes.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/filters/replace-old-tags.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/filters/sanitize-attributes.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/filters/try-remove-node.d.ts +6 -0
- package/types/plugins/clean-html/helpers/visitor/visit-node-walker.d.ts +6 -0
- package/types/plugins/clipboard/clipboard.d.ts +10 -0
- package/types/plugins/color/color.d.ts +8 -0
- package/types/plugins/copy-format/copy-format.d.ts +5 -0
- package/types/plugins/debug/debug.d.ts +5 -0
- package/types/plugins/delete/delete.d.ts +14 -0
- package/types/plugins/delete/interface.d.ts +3 -0
- package/types/plugins/drag-and-drop/drag-and-drop.d.ts +5 -0
- package/types/plugins/drag-and-drop-element/config.d.ts +3 -0
- package/types/plugins/drag-and-drop-element/drag-and-drop-element.d.ts +26 -0
- package/types/plugins/dtd/after-insert/index.d.ts +4 -0
- package/types/plugins/dtd/after-insert/remove-extra-br.d.ts +9 -0
- package/types/plugins/dtd/before-insert/check-block-nesting.d.ts +9 -0
- package/types/plugins/dtd/before-insert/index.d.ts +4 -0
- package/types/plugins/dtd/config.d.ts +12 -0
- package/types/plugins/enter/enter.d.ts +11 -0
- package/types/plugins/enter/helpers/check-br.d.ts +7 -0
- package/types/plugins/enter/helpers/check-unsplittable-box.d.ts +7 -0
- package/types/plugins/enter/helpers/get-block-wrapper.d.ts +7 -0
- package/types/plugins/enter/helpers/has-previous-block.d.ts +6 -0
- package/types/plugins/enter/helpers/index.d.ts +3 -0
- package/types/plugins/enter/helpers/insert-paragraph.d.ts +7 -0
- package/types/plugins/enter/helpers/move-cursor-out-from-specal-tags.d.ts +7 -0
- package/types/plugins/enter/helpers/process-empty-li-leaf.d.ts +7 -0
- package/types/plugins/enter/helpers/split-fragment.d.ts +8 -0
- package/types/plugins/enter/helpers/wrap-text.d.ts +8 -0
- package/types/plugins/enter/interface.d.ts +20 -0
- package/types/plugins/file/file.d.ts +5 -0
- package/types/plugins/focus/focus.d.ts +5 -0
- package/types/plugins/font/font.d.ts +8 -0
- package/types/plugins/format-block/format-block.d.ts +8 -0
- package/types/plugins/fullsize/config.d.ts +22 -0
- package/types/plugins/fullsize/fullsize.d.ts +8 -0
- package/types/plugins/hotkeys/config.d.ts +3 -0
- package/types/plugins/hotkeys/hotkeys.d.ts +10 -0
- package/types/plugins/hr/hr.d.ts +5 -0
- package/types/plugins/iframe/config.d.ts +49 -0
- package/types/plugins/iframe/iframe.d.ts +9 -0
- package/types/plugins/image/image.d.ts +5 -0
- package/types/plugins/image-processor/config.d.ts +3 -0
- package/types/plugins/image-processor/image-processor.d.ts +8 -0
- package/types/plugins/image-properties/config.d.ts +60 -0
- package/types/plugins/image-properties/image-properties.d.ts +42 -0
- package/types/plugins/image-properties/templates/form.d.ts +3 -0
- package/types/plugins/image-properties/templates/main-tab.d.ts +3 -0
- package/types/plugins/image-properties/templates/position-tab.d.ts +3 -0
- package/types/plugins/indent/config.d.ts +3 -0
- package/types/plugins/indent/helpers.d.ts +4 -0
- package/types/plugins/indent/indent.d.ts +8 -0
- package/types/plugins/index.d.ts +5 -0
- package/types/plugins/inline-popup/config/config.d.ts +3 -0
- package/types/plugins/inline-popup/config/items/a.d.ts +3 -0
- package/types/plugins/inline-popup/config/items/cells.d.ts +3 -0
- package/types/plugins/inline-popup/config/items/iframe.d.ts +3 -0
- package/types/plugins/inline-popup/config/items/img.d.ts +3 -0
- package/types/plugins/inline-popup/config/items/toolbar.d.ts +3 -0
- package/types/plugins/inline-popup/inline-popup.d.ts +36 -0
- package/types/plugins/justify/justify.d.ts +8 -0
- package/types/plugins/key-arrow-outside/key-arrow-outside.d.ts +8 -0
- package/types/plugins/limit/config.d.ts +9 -0
- package/types/plugins/limit/limit.d.ts +22 -0
- package/types/plugins/line-height/config.d.ts +9 -0
- package/types/plugins/line-height/line-height.d.ts +5 -0
- package/types/plugins/link/config.d.ts +33 -0
- package/types/plugins/link/link.d.ts +11 -0
- package/types/plugins/link/template.d.ts +3 -0
- package/types/plugins/media/config.d.ts +9 -0
- package/types/plugins/media/media.d.ts +8 -0
- package/types/plugins/mobile/config.d.ts +6 -0
- package/types/plugins/mobile/mobile.d.ts +8 -0
- package/types/plugins/ordered-list/ordered-list.d.ts +8 -0
- package/types/plugins/paste/config.d.ts +19 -0
- package/types/plugins/paste/helpers.d.ts +15 -0
- package/types/plugins/paste/interface.d.ts +15 -0
- package/types/plugins/paste/paste.d.ts +31 -0
- package/types/plugins/paste-from-word/config.d.ts +21 -0
- package/types/plugins/paste-from-word/paste-from-word.d.ts +11 -0
- package/types/plugins/paste-storage/paste-storage.d.ts +8 -0
- package/types/plugins/placeholder/config.d.ts +31 -0
- package/types/plugins/placeholder/placeholder.d.ts +12 -0
- package/types/plugins/powered-by-jodit/powered-by-jodit.d.ts +8 -0
- package/types/plugins/preview/preview.d.ts +5 -0
- package/types/plugins/print/lib/generate-critical-css.d.ts +6 -0
- package/types/plugins/print/print.d.ts +5 -0
- package/types/plugins/redo-undo/redo-undo.d.ts +9 -0
- package/types/plugins/resize-cells/resize-cells.d.ts +42 -0
- package/types/plugins/resize-handler/resize-handler.d.ts +26 -0
- package/types/plugins/resizer/config.d.ts +31 -0
- package/types/plugins/resizer/resizer.d.ts +22 -0
- package/types/plugins/search/config.d.ts +21 -0
- package/types/plugins/search/helpers/index.d.ts +3 -0
- package/types/plugins/search/helpers/sentence-finder.d.ts +3 -0
- package/types/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.d.ts +18 -0
- package/types/plugins/search/interface.d.ts +23 -0
- package/types/plugins/search/search.d.ts +22 -0
- package/types/plugins/search/ui/search.d.ts +6 -0
- package/types/plugins/select/config.d.ts +8 -0
- package/types/plugins/select/select.d.ts +19 -0
- package/types/plugins/select-cells/select-cells.d.ts +34 -0
- package/types/plugins/size/size.d.ts +27 -0
- package/types/plugins/source/config.d.ts +25 -0
- package/types/plugins/source/editor/engines/ace.d.ts +6 -0
- package/types/plugins/source/editor/engines/area.d.ts +3 -0
- package/types/plugins/source/editor/engines/custom.d.ts +3 -0
- package/types/plugins/source/editor/engines/index.d.ts +3 -0
- package/types/plugins/source/editor/factory.d.ts +3 -0
- package/types/plugins/source/editor/sourceEditor.d.ts +6 -0
- package/types/plugins/source/source.d.ts +17 -0
- package/types/plugins/speech-recognize/config.d.ts +41 -0
- package/types/plugins/speech-recognize/constants.d.ts +4 -0
- package/types/plugins/speech-recognize/helpers/api.d.ts +3 -0
- package/types/plugins/speech-recognize/helpers/exec-spell-command.d.ts +3 -0
- package/types/plugins/speech-recognize/helpers/recognize-manager.d.ts +3 -0
- package/types/plugins/speech-recognize/helpers/sound.d.ts +3 -0
- package/types/plugins/speech-recognize/interface.d.ts +12 -0
- package/types/plugins/speech-recognize/speech-recognize.d.ts +5 -0
- package/types/plugins/spellcheck/config.d.ts +4 -0
- package/types/plugins/spellcheck/spellcheck.d.ts +5 -0
- package/types/plugins/stat/stat.d.ts +5 -0
- package/types/plugins/sticky/config.d.ts +19 -0
- package/types/plugins/sticky/sticky.d.ts +18 -0
- package/types/plugins/symbols/symbols.d.ts +11 -0
- package/types/plugins/tab/cases/index.d.ts +3 -0
- package/types/plugins/tab/cases/on-tab-inside-li.d.ts +8 -0
- package/types/plugins/tab/config.d.ts +3 -0
- package/types/plugins/table/table.d.ts +5 -0
- package/types/plugins/table-keyboard-navigation/table-keyboard-navigation.d.ts +8 -0
- package/types/plugins/wrap-nodes/config.d.ts +13 -0
- package/types/plugins/xpath/xpath.d.ts +5 -0
- package/types/styles/icons/index.d.ts +5 -0
- package/types/tsconfig.json +1 -1
|
@@ -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/jodit/)
|
|
4
|
-
* Version: v4.0.0-beta.
|
|
4
|
+
* Version: v4.0.0-beta.44
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
})(self, function() {
|
|
20
20
|
return (self["webpackChunkjodit"] = self["webpackChunkjodit"] || []).push([[101],{
|
|
21
21
|
|
|
22
|
-
/***/
|
|
22
|
+
/***/ 83780:
|
|
23
23
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
24
24
|
|
|
25
25
|
__webpack_require__.r(__webpack_exports__);
|
|
26
26
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
27
27
|
/* harmony export */ "Debug": function() { return /* binding */ Debug; }
|
|
28
28
|
/* harmony export */ });
|
|
29
|
-
/* harmony import */ var jodit_core_plugin__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
30
|
-
/* harmony import */ var jodit_core_global__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
31
|
-
/* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
32
|
-
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
33
|
-
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
29
|
+
/* harmony import */ var jodit_core_plugin__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7331);
|
|
30
|
+
/* harmony import */ var jodit_core_global__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(79102);
|
|
31
|
+
/* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9162);
|
|
32
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(76974);
|
|
33
|
+
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(62924);
|
|
34
34
|
/*!
|
|
35
35
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
36
36
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -90,7 +90,7 @@ jodit_core_global__WEBPACK_IMPORTED_MODULE_1__/* .pluginSystem.add */ .pw.add('d
|
|
|
90
90
|
},
|
|
91
91
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
|
92
92
|
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
|
|
93
|
-
/******/ var __webpack_exports__ = (__webpack_exec__(
|
|
93
|
+
/******/ var __webpack_exports__ = (__webpack_exec__(83780));
|
|
94
94
|
/******/ return __webpack_exports__;
|
|
95
95
|
/******/ }
|
|
96
96
|
]);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
|
|
4
|
-
* Version: v4.0.0-beta.
|
|
4
|
+
* Version: v4.0.0-beta.44
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
"use strict";!function(e,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define([],n);else{var t=n();for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(self,(function(){return(self.webpackChunkjodit=self.webpackChunkjodit||[]).push([[101],{
|
|
10
|
+
"use strict";!function(e,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define([],n);else{var t=n();for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(self,(function(){return(self.webpackChunkjodit=self.webpackChunkjodit||[]).push([[101],{83780:function(e,n,t){t.r(n),t.d(n,{Debug:function(){return s}});var o=t(7331),r=t(79102),d=t(9162),i=t(76974),a=t(62924);class s extends o.S{afterInit(e){const n=e.create.div(),t=e.create.div(),o=e.create.div();n.appendChild(t),n.appendChild(o),e.workplace.appendChild(n),Object.assign(n.style,{padding:"16px",backgroundColor:"#fcfcfc"}),Object.assign(o.style,{paddingTop:"16px"}),e.e.on("keydown keyup keypress change afterInit updateDebug",(()=>{t.innerHTML=c(e.editor)})).on(e.od,"selectionchange",(()=>{const n=e.selection.range;t.innerHTML=c(e.editor),o.innerHTML=`start ${n.startContainer.nodeName} ${n.startOffset}<br>end ${n.endContainer.nodeName} ${n.endOffset}`}))}beforeDestruct(e){}}function c(e,n=0){return`<div style='padding-left: ${5*n}px'>\n\t\t${e.nodeName} ${d.i.isText(e)?`- ${function(e){return e.nodeValue?(0,i.stripTags)(e.nodeValue.replace((0,a.INVISIBLE_SPACE_REG_EXP)(),"INV")):"<span style='color:red'>empty</span>"}(e)}`:""}\n\t${Array.from(e.childNodes).map((e=>c(e,n+1))).join("")}\n</div>`}r.pw.add("debug",s)}},function(e){return e(e.s=83780)}])}));
|
|
@@ -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/jodit/)
|
|
4
|
-
* Version: v4.0.0-beta.
|
|
4
|
+
* Version: v4.0.0-beta.44
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
})(self, function() {
|
|
19
19
|
return (self["webpackChunkjodit"] = self["webpackChunkjodit"] || []).push([[781],{
|
|
20
20
|
|
|
21
|
-
/***/
|
|
21
|
+
/***/ 29204:
|
|
22
22
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
23
23
|
|
|
24
24
|
"use strict";
|
|
@@ -59,17 +59,17 @@ __webpack_require__.d(langs_namespaceObject, {
|
|
|
59
59
|
// EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
|
|
60
60
|
var tslib_es6 = __webpack_require__(20255);
|
|
61
61
|
// EXTERNAL MODULE: ./src/core/plugin/index.ts
|
|
62
|
-
var core_plugin = __webpack_require__(
|
|
62
|
+
var core_plugin = __webpack_require__(7331);
|
|
63
63
|
// EXTERNAL MODULE: ./src/core/decorators/watch/watch.ts
|
|
64
|
-
var watch = __webpack_require__(
|
|
64
|
+
var watch = __webpack_require__(69082);
|
|
65
65
|
// EXTERNAL MODULE: ./src/core/helpers/utils/utils.ts
|
|
66
|
-
var utils = __webpack_require__(
|
|
66
|
+
var utils = __webpack_require__(87398);
|
|
67
67
|
// EXTERNAL MODULE: ./src/core/global.ts
|
|
68
|
-
var global = __webpack_require__(
|
|
68
|
+
var global = __webpack_require__(79102);
|
|
69
69
|
// EXTERNAL MODULE: ./src/core/dom/dom.ts
|
|
70
|
-
var dom = __webpack_require__(
|
|
70
|
+
var dom = __webpack_require__(9162);
|
|
71
71
|
// EXTERNAL MODULE: ./src/core/decorators/debounce/debounce.ts
|
|
72
|
-
var debounce = __webpack_require__(
|
|
72
|
+
var debounce = __webpack_require__(62294);
|
|
73
73
|
;// CONCATENATED MODULE: ./src/plugins/speech-recognize/helpers/exec-spell-command.ts
|
|
74
74
|
/*!
|
|
75
75
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -150,23 +150,27 @@ var zh_tw = __webpack_require__(97957);
|
|
|
150
150
|
|
|
151
151
|
|
|
152
152
|
// EXTERNAL MODULE: ./src/config.ts
|
|
153
|
-
var config = __webpack_require__(
|
|
153
|
+
var config = __webpack_require__(37446);
|
|
154
154
|
// EXTERNAL MODULE: ./src/core/helpers/utils/data-bind.ts
|
|
155
|
-
var data_bind = __webpack_require__(
|
|
155
|
+
var data_bind = __webpack_require__(25920);
|
|
156
156
|
// EXTERNAL MODULE: ./src/core/helpers/checker/is-boolean.ts
|
|
157
|
-
var is_boolean = __webpack_require__(
|
|
157
|
+
var is_boolean = __webpack_require__(88751);
|
|
158
158
|
// EXTERNAL MODULE: ./src/core/ui/icon.ts
|
|
159
|
-
var icon = __webpack_require__(
|
|
159
|
+
var icon = __webpack_require__(30052);
|
|
160
160
|
// EXTERNAL MODULE: ./src/core/event-emitter/eventify.ts
|
|
161
|
-
var eventify = __webpack_require__(
|
|
161
|
+
var eventify = __webpack_require__(3569);
|
|
162
162
|
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 7 modules
|
|
163
|
-
var decorators = __webpack_require__(
|
|
163
|
+
var decorators = __webpack_require__(90283);
|
|
164
164
|
;// CONCATENATED MODULE: ./src/plugins/speech-recognize/constants.ts
|
|
165
165
|
/*!
|
|
166
166
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
167
167
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
168
168
|
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
169
169
|
*/
|
|
170
|
+
/**
|
|
171
|
+
* @module plugins/speech-recognize
|
|
172
|
+
* @internal
|
|
173
|
+
*/
|
|
170
174
|
const PII = 440;
|
|
171
175
|
const WARN = 940;
|
|
172
176
|
|
|
@@ -176,21 +180,28 @@ const WARN = 940;
|
|
|
176
180
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
177
181
|
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
178
182
|
*/
|
|
183
|
+
/**
|
|
184
|
+
* @module plugins/speech-recognize
|
|
185
|
+
*/
|
|
179
186
|
|
|
187
|
+
/**
|
|
188
|
+
* @internal
|
|
189
|
+
*/
|
|
180
190
|
function sound({ sec = 0.1, frequency = PII, gain = 0.1, type = 'sine' } = {}) {
|
|
181
191
|
if (typeof window.AudioContext === 'undefined' &&
|
|
182
192
|
typeof window.webkitAudioContext === 'undefined') {
|
|
183
193
|
return;
|
|
184
194
|
}
|
|
195
|
+
// one context per document
|
|
185
196
|
const context = new (window.AudioContext ||
|
|
186
197
|
window.webkitAudioContext)();
|
|
187
198
|
const vol = context.createGain();
|
|
188
199
|
const osc = context.createOscillator();
|
|
189
200
|
osc.type = type;
|
|
190
|
-
osc.frequency.value = frequency;
|
|
201
|
+
osc.frequency.value = frequency; // Hz
|
|
191
202
|
osc.connect(vol);
|
|
192
203
|
vol.connect(context.destination);
|
|
193
|
-
osc.start();
|
|
204
|
+
osc.start(); // start the oscillator
|
|
194
205
|
osc.stop(context.currentTime + sec);
|
|
195
206
|
vol.gain.value = gain;
|
|
196
207
|
}
|
|
@@ -470,6 +481,11 @@ config/* Config.prototype.controls.speechRecognize */.D.prototype.controls.speec
|
|
|
470
481
|
* Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
471
482
|
*/
|
|
472
483
|
|
|
484
|
+
/**
|
|
485
|
+
* [[include:plugins/speech-recognize/README.md]]
|
|
486
|
+
* @packageDocumentation
|
|
487
|
+
* @module plugins/speech-recognize
|
|
488
|
+
*/
|
|
473
489
|
|
|
474
490
|
|
|
475
491
|
|
|
@@ -1000,7 +1016,7 @@ module.exports = "<svg viewBox=\"0 0 16 16\" xml:space=\"preserve\" xmlns=\"http
|
|
|
1000
1016
|
},
|
|
1001
1017
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
|
1002
1018
|
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
|
|
1003
|
-
/******/ var __webpack_exports__ = (__webpack_exec__(
|
|
1019
|
+
/******/ var __webpack_exports__ = (__webpack_exec__(29204));
|
|
1004
1020
|
/******/ return __webpack_exports__;
|
|
1005
1021
|
/******/ }
|
|
1006
1022
|
]);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
|
|
4
|
-
* Version: v4.0.0-beta.
|
|
4
|
+
* Version: v4.0.0-beta.44
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var n=t();for(var s in n)("object"==typeof exports?exports:e)[s]=n[s]}}(self,(function(){return(self.webpackChunkjodit=self.webpackChunkjodit||[]).push([[781],{42714:function(e,t,n){"use strict";n.r(t),n.d(t,{SpeechRecognizeNative:function(){return F}});var s={};n.r(s),n.d(s,{ar:function(){return h},cs_cz:function(){return d},de:function(){return m},es:function(){return g},fa:function(){return R},fr:function(){return f},he:function(){return _},hu:function(){return S},id:function(){return w},it:function(){return z},ja:function(){return v},ko:function(){return x},mn:function(){return b},nl:function(){return y},pl:function(){return k},pt_br:function(){return T},ru:function(){return E},tr:function(){return I},zh_cn:function(){return P},zh_tw:function(){return j}});var i,o=n(20255),r=n(57549),c=n(46163),u=n(67309),a=n(17332),l=n(24263),p=n(55773),h=n(5466),d=n(65226),m=n(87541),g=n(87104),R=n(53808),f=n(48954),_=n(14694),S=n(67381),w=n(99549),z=n(28428),v=n(25363),x=n(96929),b=n(26781),y=n(58499),k=n(59430),T=n(70297),E=n(98949),I=n(61232),P=n(56775),j=n(97957),C=n(93166),q=n(63122),V=n(67749),A=n(77904),D=n(73852),H=n(68574);let W=i=class e extends D.a{set lang(e){this._lang=e,this._api.lang=e}get lang(){return this._lang}set continuous(e){this._continuous=e,this._api.continuous=e}get continuous(){return this._continuous}set interimResults(e){this._interimResults=e,this._api.interimResults=e}get interimResults(){return this._interimResults}constructor(e,t){super(),this.async=e,this._continuous=!1,this._interimResults=!1,this.sound=!0,this._isEnabled=!1,this._restartTimeout=0,this._onSpeechStart=e=>{this._isEnabled&&(this.async.clearTimeout(this._restartTimeout),this._restartTimeout=this.async.setTimeout((()=>{this.restart(),this.emit("pulse",!1),this._makeSound(940)}),5e3),this.emit("pulse",!0))},this._progressTimeout=0,this._api=t,i._instances.add(this)}destruct(){this.stop(),i._instances.delete(this),super.destruct()}get isEnabled(){return this._isEnabled}start(){this._isEnabled||(this._isEnabled=!0,i._instances.forEach((e=>{e!==this&&e.stop()})),this._api.start(),this.__on("speechstart",this._onSpeechStart).__on("error",this._onError).__on("result",this._onResult))}stop(){if(this._isEnabled){try{this._api.abort(),this._api.stop()}catch(e){}this.__off("speechstart",this._onSpeechStart).__off("error",this._onError).__off("result",this._onResult),this.async.clearTimeout(this._restartTimeout),this._isEnabled=!1,this.emit("pulse",!1)}}toggle(){this._isEnabled?this.stop():this.start()}restart(){this.stop(),this.start()}__on(e,t){return this._api.addEventListener(e,t),this}__off(e,t){return this._api.removeEventListener(e,t),this}_onResult(e){if(!this._isEnabled)return;this.async.clearTimeout(this._progressTimeout);const t=e.results.item(e.resultIndex),{transcript:n}=t.item(0),s=()=>{try{this.async.clearTimeout(this._restartTimeout),this.emit("result",n)}catch(e){}this.restart(),this.emit("pulse",!1),this._makeSound(440)};if(!1===t.isFinal)return this.emit("progress",n),void(this._progressTimeout=this.async.setTimeout(s,500));s()}_onError(){this._isEnabled&&(this._makeSound(940),this.emit("pulse",!1),this.restart())}_makeSound(e){this.sound&&function({sec:e=.1,frequency:t=440,gain:n=.1,type:s="sine"}={}){if(void 0===window.AudioContext&&void 0===window.webkitAudioContext)return;const i=new(window.AudioContext||window.webkitAudioContext),o=i.createGain(),r=i.createOscillator();r.type=s,r.frequency.value=t,r.connect(o),o.connect(i.destination),r.start(),r.stop(i.currentTime+e),o.gain.value=n}({frequency:e})}};W._instances=new Set,W=i=(0,o.gn)([H.autobind],W);const L=window.SpeechRecognition||window.webkitSpeechRecognition;var M=n(55106),B=n.n(M);C.D.prototype.speechRecognize={api:L,sound:!0,continuous:!0,interimResults:!0,commands:{"newline|enter":"enter","delete|remove word|delete word":"backspaceWordButton",comma:"inserthtml::,",underline:"inserthtml::_",hyphen:"inserthtml::-",space:"inserthtml:: ",question:"inserthtml::?",dot:"inserthtml::.","quote|quotes|open quote":"inserthtml::'","header|header h1":"formatblock::h1","select all":"selectall"}},A.J.set("speech-recognize",B()),C.D.prototype.controls.speechRecognize={isActive(e,t){const n=(0,q.q)(e,"speech");return Boolean(null==n?void 0:n.isEnabled)},isDisabled(e){return!e.o.speechRecognize.api},exec(e,t,{button:n,control:s}){const{api:i,lang:o,continuous:r,interimResults:c,sound:u}=e.o.speechRecognize;if(!i)return void e.alert("Speech recognize API unsupported in your browser");let a=(0,q.q)(e,"speech");if(!a){const t=new i;a=new W(e.async,t),a.lang=o,a.continuous=r,a.interimResults=c,a.sound=u,(0,q.q)(e,"speech",a),a.on("pulse",(e=>{n.setMod("pulse",e)})),a.on("result",(t=>e.e.fire("speechRecognizeResult",t))),a.on("progress",(t=>e.e.fire("speechRecognizeProgressResult",t))),n.hookStatus("beforeDestruct",(()=>{a.destruct()}))}if(s.args){const e=s.args[0];if((0,V.j)(a[e]))return a[e]=!a[e],void(a.isEnabled&&a.restart())}a.toggle(),n.state.activated=a.isEnabled},name:"speechRecognize",command:"toggleSpeechRecognize",tooltip:"Speech Recognize",list:{sound:"Sound",interimResults:"Interim Results"},childTemplate(e,t,n){var s;const i=(0,q.q)(e,"speech");return`<span class='jodit-speech-recognize__list-item'><input ${(null!==(s=null==i?void 0:i[t])&&void 0!==s?s:e.o.speechRecognize[t])?"checked":""} class='jodit-checkbox' type='checkbox'> ${n}</span>`},mods:{stroke:!1}};class F extends r.S{constructor(e){super(e),this._commandToWord={},e.o.speechRecognize.api&&e.registerButton({group:"state",name:"speechRecognize"})}afterInit(e){const{commands:t}=e.o.speechRecognize;t&&((0,a.xl)(s),(0,u.XP)(t,!1).forEach((n=>{n.split("|").forEach((s=>{s=s.trim().toLowerCase(),this._commandToWord[s]=t[n];const i=e.i18n(s);i!==s&&i.split("|").forEach((e=>{this._commandToWord[e.trim().toLowerCase()]=t[n].trim()}))}))})))}beforeDestruct(e){}onSpeechRecognizeProgressResult(e){this.messagePopup||(this.messagePopup=this.j.create.div("jodit-speech-recognize__popup")),this.j.workplace.appendChild(this.messagePopup),this.j.async.setTimeout((()=>{l.i.safeRemove(this.messagePopup)}),{label:"onSpeechRecognizeProgressResult",timeout:1e3}),this.messagePopup.innerText=e+"|"}onSpeechRecognizeResult(e){const{j:t}=this,{s:n}=t;if(l.i.safeRemove(this.messagePopup),!this._checkCommand(e)){const{range:s}=n,i=n.current();if(n.isCollapsed()&&l.i.isText(i)&&l.i.isOrContains(t.editor,i)&&i.nodeValue){const o=i.nodeValue;i.nodeValue=o+(/[\u00A0 ]\uFEFF*$/.test(o)?"":" ")+e,s.setStartAfter(i),n.selectRange(s),t.synchronizeValues()}else n.insertHTML(e)}}_checkCommand(e){return e=e.toLowerCase().replace(/\./g,""),!!this._commandToWord[e]&&(function(e,t){const[n,s]=t.split("::");e.execCommand(n,null,s)}(this.j,this._commandToWord[e]),!0)}}(0,o.gn)([(0,c.YP)(":speechRecognizeProgressResult"),(0,p.D)()],F.prototype,"onSpeechRecognizeProgressResult",null),(0,o.gn)([(0,c.YP)(":speechRecognizeResult")],F.prototype,"onSpeechRecognizeResult",null),"undefined"!=typeof Jodit&&Jodit.plugins.add("speech-recognize",F)},5466:function(e){e.exports={newline:"الخط الجديد",delete:"حذف",space:"الفضاء","Speech Recognize":"التعرف على الكلام",Sound:"الصوت","Interim Results":"النتائج المؤقتة"}},65226:function(e){e.exports={newline:"řádek",delete:"odstranit",space:"prostora","Speech Recognize":"Rozpoznání Řeči",Sound:"Zvuk","Interim Results":"Průběžné Výsledky"}},87541:function(e){e.exports={newline:"Zeilenumbruch",delete:"löschen",space:"Raum","Speech Recognize":"Sprache Erkennen",Sound:"Sound","Interim Results":"Zwischenergebnis"}},87104:function(e){e.exports={newline:"nueva línea",delete:"eliminar",space:"espacio","Speech Recognize":"Reconocimiento de Voz",Sound:"Sonido","Interim Results":"Resultados Provisionales"}},53808:function(e){e.exports={newline:"خط جدید",delete:"حذف",space:"فضا","Speech Recognize":"گفتار را تشخیص دهید",Sound:"صدا","Interim Results":"نتایج موقت"}},48954:function(e){e.exports={newline:"nouvelle ligne",delete:"supprimer",space:"espace","Speech Recognize":"Reconnaissance Vocale",Sound:"Son","Interim Results":"Résultats Intermédiaires"}},14694:function(e){e.exports={newline:"חדשות",delete:"מחק",space:"שטח","Speech Recognize":"דיבור מזהה",Sound:"קול","Interim Results":"תוצאות ביניים"}},67381:function(e){e.exports={newline:"újsor",delete:"törlés",space:"tér","Speech Recognize":"A Beszéd Felismeri",Sound:"Hang","Interim Results":"Időközi Eredmények"}},99549:function(e){e.exports={newline:"newline",delete:"Hapus",space:"ruang","Speech Recognize":"Pidato Mengenali",Sound:"Suara","Interim Results":"Hasil Sementara"}},28428:function(e){e.exports={newline:"nuova riga",delete:"eliminare",space:"spazio","Speech Recognize":"Discorso Riconoscere",Sound:"Suono","Interim Results":"Risultati intermedi"}},25363:function(e){e.exports={newline:"改行",delete:"削除",space:"スペース","Speech Recognize":"音声認識",Sound:"音","Interim Results":"中間結果"}},96929:function(e){e.exports={newline:"줄 바꿈",delete:"삭제",space:"공간","Speech Recognize":"음성 인식",Sound:"소리","Interim Results":"중간 결과"}},26781:function(e){e.exports={newline:"Шинэ мөр",delete:"Устгах",space:"Зай","Speech Recognize":"Дуу хоолой таних",Sound:"Дуу","Interim Results":"Түр зуурын үр дүн"}},58499:function(e){e.exports={newline:"regel",delete:"verwijderen",space:"ruimte","Speech Recognize":"Spraak Herkennen",Sound:"Geluid","Interim Results":"Tussentijdse Resultaten"}},59430:function(e){e.exports={newline:"newline",delete:"usunąć",space:"przestrzeń","Speech Recognize":"Rozpoznawanie Mowy",Sound:"Dźwięk","Interim Results":"Wyniki Okresowe"}},70297:function(e){e.exports={newline:"linha",delete:"excluir",space:"espaco","Speech Recognize":"Discurso Reconhecer",Sound:"Som","Interim Results":"Resultados Provisórios"}},98949:function(e){e.exports={newline:"новая строка|перенос|энтер",delete:"удалить",space:"пробел","Speech Recognize":"Распознавание речи",Sound:"Звук","Interim Results":"Промежуточные результаты"}},61232:function(e){e.exports={newline:"yeni satır",delete:"silmek",space:"uzay","Speech Recognize":"Konuşma Tanıma",Sound:"Ses","Interim Results":"Ara Sonuçlar"}},56775:function(e){e.exports={newline:"新行",delete:"删除",space:"空间","Speech Recognize":"言语识别",Sound:"声音","Interim Results":"中期业绩"}},97957:function(e){e.exports={newline:"นิวไลน์",delete:"ลบ",space:"พื้นที่","Speech Recognize":"การรับรู้คำพูด",Sound:"เสียง","Interim Results":"ผลระหว่างกาล"}},55106:function(e){e.exports='<svg viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> <path d="M8,11c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3S5,1.343,5,3v5C5,9.657,6.343,11,8,11z"/> <path d="M13,8V6h-1l0,1.844c0,1.92-1.282,3.688-3.164,4.071C6.266,12.438,4,10.479,4,8V6H3v2c0,2.414,1.721,4.434,4,4.899V15H5v1h6 v-1H9v-2.101C11.279,12.434,13,10.414,13,8z"/> </svg>'}},function(e){return e(e.s=42714)}])}));
|
|
10
|
+
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var n=t();for(var s in n)("object"==typeof exports?exports:e)[s]=n[s]}}(self,(function(){return(self.webpackChunkjodit=self.webpackChunkjodit||[]).push([[781],{29204:function(e,t,n){"use strict";n.r(t),n.d(t,{SpeechRecognizeNative:function(){return F}});var s={};n.r(s),n.d(s,{ar:function(){return h},cs_cz:function(){return d},de:function(){return m},es:function(){return g},fa:function(){return R},fr:function(){return f},he:function(){return _},hu:function(){return S},id:function(){return w},it:function(){return z},ja:function(){return v},ko:function(){return x},mn:function(){return b},nl:function(){return y},pl:function(){return k},pt_br:function(){return T},ru:function(){return E},tr:function(){return I},zh_cn:function(){return P},zh_tw:function(){return j}});var i,o=n(20255),r=n(7331),c=n(69082),u=n(87398),a=n(79102),l=n(9162),p=n(62294),h=n(5466),d=n(65226),m=n(87541),g=n(87104),R=n(53808),f=n(48954),_=n(14694),S=n(67381),w=n(99549),z=n(28428),v=n(25363),x=n(96929),b=n(26781),y=n(58499),k=n(59430),T=n(70297),E=n(98949),I=n(61232),P=n(56775),j=n(97957),C=n(37446),q=n(25920),V=n(88751),A=n(30052),D=n(3569),H=n(90283);let W=i=class e extends D.a{set lang(e){this._lang=e,this._api.lang=e}get lang(){return this._lang}set continuous(e){this._continuous=e,this._api.continuous=e}get continuous(){return this._continuous}set interimResults(e){this._interimResults=e,this._api.interimResults=e}get interimResults(){return this._interimResults}constructor(e,t){super(),this.async=e,this._continuous=!1,this._interimResults=!1,this.sound=!0,this._isEnabled=!1,this._restartTimeout=0,this._onSpeechStart=e=>{this._isEnabled&&(this.async.clearTimeout(this._restartTimeout),this._restartTimeout=this.async.setTimeout((()=>{this.restart(),this.emit("pulse",!1),this._makeSound(940)}),5e3),this.emit("pulse",!0))},this._progressTimeout=0,this._api=t,i._instances.add(this)}destruct(){this.stop(),i._instances.delete(this),super.destruct()}get isEnabled(){return this._isEnabled}start(){this._isEnabled||(this._isEnabled=!0,i._instances.forEach((e=>{e!==this&&e.stop()})),this._api.start(),this.__on("speechstart",this._onSpeechStart).__on("error",this._onError).__on("result",this._onResult))}stop(){if(this._isEnabled){try{this._api.abort(),this._api.stop()}catch(e){}this.__off("speechstart",this._onSpeechStart).__off("error",this._onError).__off("result",this._onResult),this.async.clearTimeout(this._restartTimeout),this._isEnabled=!1,this.emit("pulse",!1)}}toggle(){this._isEnabled?this.stop():this.start()}restart(){this.stop(),this.start()}__on(e,t){return this._api.addEventListener(e,t),this}__off(e,t){return this._api.removeEventListener(e,t),this}_onResult(e){if(!this._isEnabled)return;this.async.clearTimeout(this._progressTimeout);const t=e.results.item(e.resultIndex),{transcript:n}=t.item(0),s=()=>{try{this.async.clearTimeout(this._restartTimeout),this.emit("result",n)}catch(e){}this.restart(),this.emit("pulse",!1),this._makeSound(440)};if(!1===t.isFinal)return this.emit("progress",n),void(this._progressTimeout=this.async.setTimeout(s,500));s()}_onError(){this._isEnabled&&(this._makeSound(940),this.emit("pulse",!1),this.restart())}_makeSound(e){this.sound&&function({sec:e=.1,frequency:t=440,gain:n=.1,type:s="sine"}={}){if(void 0===window.AudioContext&&void 0===window.webkitAudioContext)return;const i=new(window.AudioContext||window.webkitAudioContext),o=i.createGain(),r=i.createOscillator();r.type=s,r.frequency.value=t,r.connect(o),o.connect(i.destination),r.start(),r.stop(i.currentTime+e),o.gain.value=n}({frequency:e})}};W._instances=new Set,W=i=(0,o.gn)([H.autobind],W);const L=window.SpeechRecognition||window.webkitSpeechRecognition;var M=n(55106),B=n.n(M);C.D.prototype.speechRecognize={api:L,sound:!0,continuous:!0,interimResults:!0,commands:{"newline|enter":"enter","delete|remove word|delete word":"backspaceWordButton",comma:"inserthtml::,",underline:"inserthtml::_",hyphen:"inserthtml::-",space:"inserthtml:: ",question:"inserthtml::?",dot:"inserthtml::.","quote|quotes|open quote":"inserthtml::'","header|header h1":"formatblock::h1","select all":"selectall"}},A.J.set("speech-recognize",B()),C.D.prototype.controls.speechRecognize={isActive(e,t){const n=(0,q.q)(e,"speech");return Boolean(null==n?void 0:n.isEnabled)},isDisabled(e){return!e.o.speechRecognize.api},exec(e,t,{button:n,control:s}){const{api:i,lang:o,continuous:r,interimResults:c,sound:u}=e.o.speechRecognize;if(!i)return void e.alert("Speech recognize API unsupported in your browser");let a=(0,q.q)(e,"speech");if(!a){const t=new i;a=new W(e.async,t),a.lang=o,a.continuous=r,a.interimResults=c,a.sound=u,(0,q.q)(e,"speech",a),a.on("pulse",(e=>{n.setMod("pulse",e)})),a.on("result",(t=>e.e.fire("speechRecognizeResult",t))),a.on("progress",(t=>e.e.fire("speechRecognizeProgressResult",t))),n.hookStatus("beforeDestruct",(()=>{a.destruct()}))}if(s.args){const e=s.args[0];if((0,V.j)(a[e]))return a[e]=!a[e],void(a.isEnabled&&a.restart())}a.toggle(),n.state.activated=a.isEnabled},name:"speechRecognize",command:"toggleSpeechRecognize",tooltip:"Speech Recognize",list:{sound:"Sound",interimResults:"Interim Results"},childTemplate(e,t,n){var s;const i=(0,q.q)(e,"speech");return`<span class='jodit-speech-recognize__list-item'><input ${(null!==(s=null==i?void 0:i[t])&&void 0!==s?s:e.o.speechRecognize[t])?"checked":""} class='jodit-checkbox' type='checkbox'> ${n}</span>`},mods:{stroke:!1}};class F extends r.S{constructor(e){super(e),this._commandToWord={},e.o.speechRecognize.api&&e.registerButton({group:"state",name:"speechRecognize"})}afterInit(e){const{commands:t}=e.o.speechRecognize;t&&((0,a.xl)(s),(0,u.XP)(t,!1).forEach((n=>{n.split("|").forEach((s=>{s=s.trim().toLowerCase(),this._commandToWord[s]=t[n];const i=e.i18n(s);i!==s&&i.split("|").forEach((e=>{this._commandToWord[e.trim().toLowerCase()]=t[n].trim()}))}))})))}beforeDestruct(e){}onSpeechRecognizeProgressResult(e){this.messagePopup||(this.messagePopup=this.j.create.div("jodit-speech-recognize__popup")),this.j.workplace.appendChild(this.messagePopup),this.j.async.setTimeout((()=>{l.i.safeRemove(this.messagePopup)}),{label:"onSpeechRecognizeProgressResult",timeout:1e3}),this.messagePopup.innerText=e+"|"}onSpeechRecognizeResult(e){const{j:t}=this,{s:n}=t;if(l.i.safeRemove(this.messagePopup),!this._checkCommand(e)){const{range:s}=n,i=n.current();if(n.isCollapsed()&&l.i.isText(i)&&l.i.isOrContains(t.editor,i)&&i.nodeValue){const o=i.nodeValue;i.nodeValue=o+(/[\u00A0 ]\uFEFF*$/.test(o)?"":" ")+e,s.setStartAfter(i),n.selectRange(s),t.synchronizeValues()}else n.insertHTML(e)}}_checkCommand(e){return e=e.toLowerCase().replace(/\./g,""),!!this._commandToWord[e]&&(function(e,t){const[n,s]=t.split("::");e.execCommand(n,null,s)}(this.j,this._commandToWord[e]),!0)}}(0,o.gn)([(0,c.YP)(":speechRecognizeProgressResult"),(0,p.D)()],F.prototype,"onSpeechRecognizeProgressResult",null),(0,o.gn)([(0,c.YP)(":speechRecognizeResult")],F.prototype,"onSpeechRecognizeResult",null),"undefined"!=typeof Jodit&&Jodit.plugins.add("speech-recognize",F)},5466:function(e){e.exports={newline:"الخط الجديد",delete:"حذف",space:"الفضاء","Speech Recognize":"التعرف على الكلام",Sound:"الصوت","Interim Results":"النتائج المؤقتة"}},65226:function(e){e.exports={newline:"řádek",delete:"odstranit",space:"prostora","Speech Recognize":"Rozpoznání Řeči",Sound:"Zvuk","Interim Results":"Průběžné Výsledky"}},87541:function(e){e.exports={newline:"Zeilenumbruch",delete:"löschen",space:"Raum","Speech Recognize":"Sprache Erkennen",Sound:"Sound","Interim Results":"Zwischenergebnis"}},87104:function(e){e.exports={newline:"nueva línea",delete:"eliminar",space:"espacio","Speech Recognize":"Reconocimiento de Voz",Sound:"Sonido","Interim Results":"Resultados Provisionales"}},53808:function(e){e.exports={newline:"خط جدید",delete:"حذف",space:"فضا","Speech Recognize":"گفتار را تشخیص دهید",Sound:"صدا","Interim Results":"نتایج موقت"}},48954:function(e){e.exports={newline:"nouvelle ligne",delete:"supprimer",space:"espace","Speech Recognize":"Reconnaissance Vocale",Sound:"Son","Interim Results":"Résultats Intermédiaires"}},14694:function(e){e.exports={newline:"חדשות",delete:"מחק",space:"שטח","Speech Recognize":"דיבור מזהה",Sound:"קול","Interim Results":"תוצאות ביניים"}},67381:function(e){e.exports={newline:"újsor",delete:"törlés",space:"tér","Speech Recognize":"A Beszéd Felismeri",Sound:"Hang","Interim Results":"Időközi Eredmények"}},99549:function(e){e.exports={newline:"newline",delete:"Hapus",space:"ruang","Speech Recognize":"Pidato Mengenali",Sound:"Suara","Interim Results":"Hasil Sementara"}},28428:function(e){e.exports={newline:"nuova riga",delete:"eliminare",space:"spazio","Speech Recognize":"Discorso Riconoscere",Sound:"Suono","Interim Results":"Risultati intermedi"}},25363:function(e){e.exports={newline:"改行",delete:"削除",space:"スペース","Speech Recognize":"音声認識",Sound:"音","Interim Results":"中間結果"}},96929:function(e){e.exports={newline:"줄 바꿈",delete:"삭제",space:"공간","Speech Recognize":"음성 인식",Sound:"소리","Interim Results":"중간 결과"}},26781:function(e){e.exports={newline:"Шинэ мөр",delete:"Устгах",space:"Зай","Speech Recognize":"Дуу хоолой таних",Sound:"Дуу","Interim Results":"Түр зуурын үр дүн"}},58499:function(e){e.exports={newline:"regel",delete:"verwijderen",space:"ruimte","Speech Recognize":"Spraak Herkennen",Sound:"Geluid","Interim Results":"Tussentijdse Resultaten"}},59430:function(e){e.exports={newline:"newline",delete:"usunąć",space:"przestrzeń","Speech Recognize":"Rozpoznawanie Mowy",Sound:"Dźwięk","Interim Results":"Wyniki Okresowe"}},70297:function(e){e.exports={newline:"linha",delete:"excluir",space:"espaco","Speech Recognize":"Discurso Reconhecer",Sound:"Som","Interim Results":"Resultados Provisórios"}},98949:function(e){e.exports={newline:"новая строка|перенос|энтер",delete:"удалить",space:"пробел","Speech Recognize":"Распознавание речи",Sound:"Звук","Interim Results":"Промежуточные результаты"}},61232:function(e){e.exports={newline:"yeni satır",delete:"silmek",space:"uzay","Speech Recognize":"Konuşma Tanıma",Sound:"Ses","Interim Results":"Ara Sonuçlar"}},56775:function(e){e.exports={newline:"新行",delete:"删除",space:"空间","Speech Recognize":"言语识别",Sound:"声音","Interim Results":"中期业绩"}},97957:function(e){e.exports={newline:"นิวไลน์",delete:"ลบ",space:"พื้นที่","Speech Recognize":"การรับรู้คำพูด",Sound:"เสียง","Interim Results":"ผลระหว่างกาล"}},55106:function(e){e.exports='<svg viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> <path d="M8,11c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3S5,1.343,5,3v5C5,9.657,6.343,11,8,11z"/> <path d="M13,8V6h-1l0,1.844c0,1.92-1.282,3.688-3.164,4.071C6.266,12.438,4,10.479,4,8V6H3v2c0,2.414,1.721,4.434,4,4.899V15H5v1h6 v-1H9v-2.101C11.279,12.434,13,10.414,13,8z"/> </svg>'}},function(e){return e(e.s=29204)}])}));
|