jodit 3.8.7 → 3.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/tests.yml +23 -0
- package/.idea/dictionaries/v_chupurnov.xml +1 -0
- package/.idea/workspace.xml +340 -298
- package/CHANGELOG.MD +132 -24
- package/README.md +3 -4
- package/build/jodit.css +92 -34
- package/build/jodit.es2018.css +65 -30
- package/build/jodit.es2018.en.css +65 -30
- package/build/jodit.es2018.en.js +1214 -693
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +1214 -693
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +2271 -1628
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/index.d.ts +10 -0
- package/package.json +14 -13
- package/src/config.ts +1 -1
- package/src/core/async.ts +7 -5
- package/src/core/constants.ts +2 -0
- package/src/core/dom.ts +123 -102
- package/src/core/events/{events-native.ts → event-emitter.ts} +14 -9
- package/src/core/events/index.ts +1 -1
- package/src/core/global.ts +2 -2
- package/src/core/helpers/array/to-array.ts +1 -0
- package/src/core/helpers/data-bind.ts +2 -2
- package/src/core/helpers/size/index.ts +1 -0
- package/src/core/helpers/size/object-size.ts +22 -0
- package/src/core/helpers/utils/utils.ts +20 -4
- package/src/core/request/ajax.ts +212 -0
- package/src/core/request/config.ts +37 -0
- package/{build-system/minimizer/index.js → src/core/request/index.ts} +2 -1
- package/src/core/request/response.ts +39 -0
- package/src/core/selection/select.ts +60 -27
- package/src/core/selection/style/api/element-has-same-style.ts +13 -0
- package/src/core/selection/style/api/{get-closest-wrapper.ts → extract.ts} +26 -43
- package/src/core/selection/style/api/finite-state-machine.ts +66 -0
- package/src/core/selection/style/api/get-suit-parent.ts +1 -1
- package/src/core/selection/style/api/index.ts +12 -5
- package/src/core/selection/style/api/{check-special-elements.ts → is-inside-invisible-element.ts} +1 -1
- package/src/core/selection/style/api/is-suit-element.ts +36 -5
- package/src/core/selection/style/api/toggle/toggle-css.ts +134 -0
- package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +49 -0
- package/src/core/selection/style/api/toggle-commit-styles.ts +27 -0
- package/src/core/selection/style/api/unwrap-children.ts +45 -16
- package/src/core/selection/style/api/wrap-and-commit-style.ts +68 -0
- package/src/core/selection/style/api/wrap-ordered-list.ts +37 -0
- package/src/core/selection/style/api/wrap-unwrapped-text.ts +29 -27
- package/src/core/selection/style/apply-style.ts +161 -91
- package/src/core/selection/style/commit-style.ts +13 -0
- package/src/core/traits/elms.ts +1 -0
- package/src/core/ui/button/button/button.less +2 -0
- package/src/core/ui/helpers/buttons.ts +14 -6
- package/src/core/ui/helpers/get-control-type.ts +3 -1
- package/src/core/ui/list/list.less +1 -0
- package/src/core/ui/popup/popup.less +5 -3
- package/src/core/view/view-with-toolbar.ts +4 -0
- package/src/core/view/view.ts +3 -3
- package/src/modules/context-menu/context-menu.ts +1 -1
- package/src/modules/file-browser/README.MD +1 -1
- package/src/modules/file-browser/data-provider.ts +22 -42
- package/src/modules/file-browser/file-browser.ts +3 -0
- package/src/modules/index.ts +1 -1
- package/src/modules/status-bar/status-bar.less +27 -1
- package/src/modules/status-bar/status-bar.ts +15 -1
- package/src/modules/table.ts +197 -168
- package/src/modules/uploader/uploader.ts +4 -3
- package/src/modules/widget/tabs/tabs.less +1 -0
- package/src/plugins/bold.ts +2 -2
- package/src/plugins/fix/clean-html.ts +37 -16
- package/src/plugins/font.ts +11 -1
- package/src/plugins/indent.ts +25 -18
- package/src/plugins/index.ts +1 -0
- package/src/plugins/mobile.ts +10 -14
- package/src/plugins/ordered-list.ts +40 -1
- package/src/plugins/powered-by-jodit.ts +39 -0
- package/src/plugins/print/preview.ts +9 -2
- package/src/plugins/resizer/resizer.less +10 -7
- package/src/plugins/resizer/resizer.ts +12 -14
- package/src/plugins/size/assests/resize-handler.svg +4 -0
- package/src/plugins/size/resize-handler.ts +5 -5
- package/src/plugins/size/size.less +6 -8
- package/src/plugins/size/size.ts +1 -3
- package/src/plugins/source/source.ts +16 -2
- package/src/plugins/table/config.ts +3 -1
- package/src/plugins/table/select-cells.ts +23 -5
- package/src/plugins/table/table.less +0 -1
- package/src/styles/themes/dark.less +11 -1
- package/src/types/ajax.d.ts +15 -6
- package/src/types/async.d.ts +5 -4
- package/src/types/events.d.ts +12 -12
- package/src/types/style.d.ts +2 -0
- package/src/types/toolbar.d.ts +2 -1
- package/src/types/view.d.ts +3 -2
- package/types/core/async.d.ts +3 -3
- package/types/core/constants.d.ts +1 -0
- package/types/core/dom.d.ts +27 -20
- package/types/core/events/{events-native.d.ts → event-emitter.d.ts} +8 -3
- package/types/core/events/index.d.ts +1 -1
- package/types/core/global.d.ts +2 -2
- package/types/core/helpers/size/index.d.ts +1 -0
- package/{src/types/core.js → types/core/helpers/size/object-size.d.ts} +2 -3
- package/types/core/helpers/utils/utils.d.ts +12 -4
- package/types/core/{ajax.d.ts → request/ajax.d.ts} +5 -15
- package/types/core/request/config.d.ts +14 -0
- package/{build-system/rules/css.js → types/core/request/index.d.ts} +2 -7
- package/types/core/request/response.d.ts +16 -0
- package/types/core/selection/style/api/element-has-same-style.d.ts +4 -0
- package/types/core/selection/style/api/{get-closest-wrapper.d.ts → extract.d.ts} +6 -5
- package/types/core/selection/style/api/finite-state-machine.d.ts +21 -0
- package/types/core/selection/style/api/index.d.ts +12 -5
- package/types/core/selection/style/api/{check-special-elements.d.ts → is-inside-invisible-element.d.ts} +1 -1
- package/types/core/selection/style/api/is-suit-element.d.ts +10 -0
- package/types/core/selection/style/api/toggle/toggle-css.d.ts +11 -0
- package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +11 -0
- package/types/core/selection/style/api/{toggle-styles.d.ts → toggle-commit-styles.d.ts} +1 -3
- package/types/core/selection/style/api/{post-process-list-element.d.ts → wrap-and-commit-style.d.ts} +3 -3
- package/types/core/selection/style/api/wrap-ordered-list.d.ts +12 -0
- package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +2 -2
- package/types/core/selection/style/apply-style.d.ts +1 -4
- package/types/core/selection/style/commit-style.d.ts +7 -0
- package/types/core/ui/helpers/buttons.d.ts +2 -2
- package/types/core/view/view-with-toolbar.d.ts +2 -1
- package/types/core/view/view.d.ts +2 -2
- package/types/modules/file-browser/data-provider.d.ts +1 -1
- package/types/modules/index.d.ts +1 -1
- package/types/modules/status-bar/status-bar.d.ts +6 -1
- package/types/modules/table.d.ts +2 -2
- package/types/plugins/fix/clean-html.d.ts +4 -0
- package/types/plugins/index.d.ts +1 -0
- package/types/plugins/ordered-list.d.ts +8 -1
- package/{build-system/plugins/banner.js → types/plugins/powered-by-jodit.d.ts} +7 -10
- package/types/plugins/size/resize-handler.d.ts +1 -1
- package/types/plugins/source/source.d.ts +1 -1
- package/types/types/ajax.d.ts +15 -6
- package/types/types/async.d.ts +5 -4
- package/types/types/events.d.ts +12 -12
- package/types/types/style.d.ts +2 -0
- package/types/types/toolbar.d.ts +2 -1
- package/types/types/view.d.ts +3 -2
- package/.editorconfig +0 -15
- package/.eslintignore +0 -3
- package/.eslintrc.js +0 -109
- package/.prettierrc.json +0 -9
- package/.stylelintrc.json +0 -16
- package/app.css +0 -112
- package/build-system/index.js +0 -78
- package/build-system/loaders/css-variables-prefixes.js +0 -12
- package/build-system/loaders/lang-loader.js +0 -57
- package/build-system/loaders/style.js +0 -31
- package/build-system/loaders/svg-loader.js +0 -21
- package/build-system/minimizer/css.js +0 -20
- package/build-system/minimizer/js.js +0 -41
- package/build-system/plugins/define.js +0 -22
- package/build-system/plugins/extract-css.js +0 -21
- package/build-system/plugins/index.js +0 -31
- package/build-system/plugins/post-build.js +0 -52
- package/build-system/rules/extra-typescript.js +0 -22
- package/build-system/rules/index.js +0 -17
- package/build-system/rules/internal-typescript.js +0 -23
- package/build-system/rules/langs.js +0 -20
- package/build-system/rules/svg.js +0 -16
- package/build-system/utils/filename.js +0 -14
- package/build-system/utils/post-build.js +0 -28
- package/build-system/variables.js +0 -51
- package/composer.json +0 -12
- package/src/core/ajax.ts +0 -269
- package/src/core/selection/style/api/post-process-list-element.ts +0 -33
- package/src/core/selection/style/api/toggle-styles.ts +0 -74
- package/src/types/core.d.ts +0 -7
- package/src/types/core.js.map +0 -1
- package/src/types/storage.d.ts +0 -13
- package/src/types/storage.js +0 -8
- package/src/types/storage.js.map +0 -1
- package/types/types/core.js +0 -8
- package/types/types/core.js.map +0 -1
- package/types/types/storage.js +0 -8
- package/types/types/storage.js.map +0 -1
package/build/jodit.es2018.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
|
|
4
|
-
* Version: v3.
|
|
4
|
+
* Version: v3.9.4
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -203,7 +203,7 @@ class Config {
|
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
group: 'list',
|
|
206
|
-
buttons: [
|
|
206
|
+
buttons: []
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
group: 'indent',
|
|
@@ -395,7 +395,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
395
395
|
/* harmony export */ "SAFE_COUNT_CHANGE_CALL": function() { return /* binding */ SAFE_COUNT_CHANGE_CALL; },
|
|
396
396
|
/* harmony export */ "IS_MAC": function() { return /* binding */ IS_MAC; },
|
|
397
397
|
/* harmony export */ "KEY_ALIASES": function() { return /* binding */ KEY_ALIASES; },
|
|
398
|
-
/* harmony export */ "BASE_PATH": function() { return /* binding */ BASE_PATH; }
|
|
398
|
+
/* harmony export */ "BASE_PATH": function() { return /* binding */ BASE_PATH; },
|
|
399
|
+
/* harmony export */ "TEMP_ATTR": function() { return /* binding */ TEMP_ATTR; }
|
|
399
400
|
/* harmony export */ });
|
|
400
401
|
/*!
|
|
401
402
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -507,6 +508,7 @@ const BASE_PATH = (() => {
|
|
|
507
508
|
}
|
|
508
509
|
return window.location.href;
|
|
509
510
|
})();
|
|
511
|
+
const TEMP_ATTR = 'data-jodit-temp';
|
|
510
512
|
|
|
511
513
|
|
|
512
514
|
/***/ }),
|
|
@@ -517,6 +519,7 @@ const BASE_PATH = (() => {
|
|
|
517
519
|
|
|
518
520
|
// EXPORTS
|
|
519
521
|
__webpack_require__.d(__webpack_exports__, {
|
|
522
|
+
"vp": function() { return /* reexport */ EventEmitter; },
|
|
520
523
|
"DG": function() { return /* reexport */ EventHandlersStore; },
|
|
521
524
|
"ng": function() { return /* reexport */ EventsNative; },
|
|
522
525
|
"P5": function() { return /* reexport */ ObserveObject; },
|
|
@@ -586,7 +589,7 @@ var is_function = __webpack_require__(6);
|
|
|
586
589
|
var is_array = __webpack_require__(7);
|
|
587
590
|
// EXTERNAL MODULE: ./src/core/helpers/type.ts
|
|
588
591
|
var type = __webpack_require__(4);
|
|
589
|
-
;// CONCATENATED MODULE: ./src/core/events/
|
|
592
|
+
;// CONCATENATED MODULE: ./src/core/events/event-emitter.ts
|
|
590
593
|
/*!
|
|
591
594
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
592
595
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -597,10 +600,10 @@ var type = __webpack_require__(4);
|
|
|
597
600
|
|
|
598
601
|
|
|
599
602
|
|
|
600
|
-
class
|
|
603
|
+
class EventEmitter {
|
|
601
604
|
constructor(doc) {
|
|
602
605
|
this.mutedEvents = new Set();
|
|
603
|
-
this.__key = '
|
|
606
|
+
this.__key = '__JoditEventEmitterNamespaces';
|
|
604
607
|
this.doc = document;
|
|
605
608
|
this.prepareEvent = (event) => {
|
|
606
609
|
if (event.cancelBubble) {
|
|
@@ -972,10 +975,12 @@ class EventsNative {
|
|
|
972
975
|
delete this[this.__key];
|
|
973
976
|
}
|
|
974
977
|
}
|
|
978
|
+
class EventsNative extends EventEmitter {
|
|
979
|
+
}
|
|
975
980
|
|
|
976
981
|
// EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
|
|
977
982
|
var tslib_es6 = __webpack_require__(18);
|
|
978
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
983
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
979
984
|
var helpers = __webpack_require__(8);
|
|
980
985
|
// EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
|
|
981
986
|
var decorators = __webpack_require__(17);
|
|
@@ -1274,6 +1279,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1274
1279
|
"scrollIntoViewIfNeeded": function() { return /* reexport */ scrollIntoViewIfNeeded; },
|
|
1275
1280
|
"set": function() { return /* reexport */ utils/* set */.t8; },
|
|
1276
1281
|
"setTimeout": function() { return /* reexport */ set_timeout_setTimeout; },
|
|
1282
|
+
"size": function() { return /* reexport */ size; },
|
|
1277
1283
|
"splitArray": function() { return /* reexport */ splitArray; },
|
|
1278
1284
|
"sprintf": function() { return /* reexport */ string/* sprintf */.gB; },
|
|
1279
1285
|
"stringify": function() { return /* reexport */ string/* stringify */.Pz; },
|
|
@@ -1915,6 +1921,23 @@ function position(elm, jodit, recurse = false) {
|
|
|
1915
1921
|
};
|
|
1916
1922
|
}
|
|
1917
1923
|
|
|
1924
|
+
;// CONCATENATED MODULE: ./src/core/helpers/size/object-size.ts
|
|
1925
|
+
/*!
|
|
1926
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1927
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1928
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1929
|
+
*/
|
|
1930
|
+
|
|
1931
|
+
function size(subject) {
|
|
1932
|
+
if ((0,checker/* isString */.HD)(subject) || (0,checker/* isArray */.kJ)(subject)) {
|
|
1933
|
+
return subject.length;
|
|
1934
|
+
}
|
|
1935
|
+
if ((0,checker/* isPlainObject */.PO)(subject)) {
|
|
1936
|
+
return Object.keys(subject).length;
|
|
1937
|
+
}
|
|
1938
|
+
return 0;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1918
1941
|
;// CONCATENATED MODULE: ./src/core/helpers/size/index.ts
|
|
1919
1942
|
/*!
|
|
1920
1943
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1927,6 +1950,7 @@ function position(elm, jodit, recurse = false) {
|
|
|
1927
1950
|
|
|
1928
1951
|
|
|
1929
1952
|
|
|
1953
|
+
|
|
1930
1954
|
;// CONCATENATED MODULE: ./src/core/helpers/complete-url.ts
|
|
1931
1955
|
/*!
|
|
1932
1956
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -2648,7 +2672,7 @@ var STATUSES;
|
|
|
2648
2672
|
STATUSES["destructed"] = "destructed";
|
|
2649
2673
|
})(STATUSES || (STATUSES = {}));
|
|
2650
2674
|
|
|
2651
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
2675
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
2652
2676
|
var helpers = __webpack_require__(8);
|
|
2653
2677
|
// EXTERNAL MODULE: ./src/core/global.ts
|
|
2654
2678
|
var global = __webpack_require__(13);
|
|
@@ -2887,7 +2911,7 @@ function getContainer(jodit, classFunc, tag = 'div', createInsideEditor = false)
|
|
|
2887
2911
|
data[key].classList.add(`jodit_theme_${view.o.theme || 'default'}`);
|
|
2888
2912
|
return data[key];
|
|
2889
2913
|
}
|
|
2890
|
-
const eventEmitter = new _events__WEBPACK_IMPORTED_MODULE_3__/* .
|
|
2914
|
+
const eventEmitter = new _events__WEBPACK_IMPORTED_MODULE_3__/* .EventEmitter */ .vp();
|
|
2891
2915
|
|
|
2892
2916
|
|
|
2893
2917
|
/***/ }),
|
|
@@ -3064,6 +3088,7 @@ PluginSystem.styles = new Set();
|
|
|
3064
3088
|
|
|
3065
3089
|
|
|
3066
3090
|
|
|
3091
|
+
|
|
3067
3092
|
class Dom {
|
|
3068
3093
|
static detach(node) {
|
|
3069
3094
|
while (node.firstChild) {
|
|
@@ -3124,22 +3149,6 @@ class Dom {
|
|
|
3124
3149
|
Dom.safeRemove(node);
|
|
3125
3150
|
}
|
|
3126
3151
|
}
|
|
3127
|
-
static each(elm, callback) {
|
|
3128
|
-
let node = elm.firstChild;
|
|
3129
|
-
if (node) {
|
|
3130
|
-
while (node) {
|
|
3131
|
-
const next = Dom.next(node, Boolean, elm);
|
|
3132
|
-
if (callback(node) === false) {
|
|
3133
|
-
return false;
|
|
3134
|
-
}
|
|
3135
|
-
if (node.parentNode && !Dom.each(node, callback)) {
|
|
3136
|
-
return false;
|
|
3137
|
-
}
|
|
3138
|
-
node = next;
|
|
3139
|
-
}
|
|
3140
|
-
}
|
|
3141
|
-
return true;
|
|
3142
|
-
}
|
|
3143
3152
|
static between(start, end, callback) {
|
|
3144
3153
|
let next = start;
|
|
3145
3154
|
while (next && next !== end) {
|
|
@@ -3178,8 +3187,12 @@ class Dom {
|
|
|
3178
3187
|
static isEmptyTextNode(node) {
|
|
3179
3188
|
return (Dom.isText(node) &&
|
|
3180
3189
|
(!node.nodeValue ||
|
|
3181
|
-
node.nodeValue
|
|
3182
|
-
.
|
|
3190
|
+
node.nodeValue
|
|
3191
|
+
.replace(_constants__WEBPACK_IMPORTED_MODULE_0__.INVISIBLE_SPACE_REG_EXP(), '')
|
|
3192
|
+
.trim().length === 0));
|
|
3193
|
+
}
|
|
3194
|
+
static isEmptyContent(node) {
|
|
3195
|
+
return Dom.each(node, (elm) => Dom.isEmptyTextNode(elm));
|
|
3183
3196
|
}
|
|
3184
3197
|
static isEmpty(node, condNoEmptyElement = /^(img|svg|canvas|input|textarea|form)$/) {
|
|
3185
3198
|
if (!node) {
|
|
@@ -3282,10 +3295,10 @@ class Dom {
|
|
|
3282
3295
|
return null;
|
|
3283
3296
|
}
|
|
3284
3297
|
static prev(node, condition, root, withChild = true) {
|
|
3285
|
-
return Dom.find(node, condition, root, false,
|
|
3298
|
+
return Dom.find(node, condition, root, false, withChild);
|
|
3286
3299
|
}
|
|
3287
3300
|
static next(node, condition, root, withChild = true) {
|
|
3288
|
-
return Dom.find(node, condition, root,
|
|
3301
|
+
return Dom.find(node, condition, root, true, withChild);
|
|
3289
3302
|
}
|
|
3290
3303
|
static prevWithClass(node, className) {
|
|
3291
3304
|
return Dom.prev(node, node => {
|
|
@@ -3295,28 +3308,63 @@ class Dom {
|
|
|
3295
3308
|
static nextWithClass(node, className) {
|
|
3296
3309
|
return Dom.next(node, elm => Dom.isElement(elm) && elm.classList.contains(className), node.parentNode);
|
|
3297
3310
|
}
|
|
3298
|
-
static find(node, condition, root,
|
|
3299
|
-
|
|
3300
|
-
|
|
3311
|
+
static find(node, condition, root, leftToRight = true, withChild = true) {
|
|
3312
|
+
const gen = this.nextGen(node, root, leftToRight, withChild);
|
|
3313
|
+
let item = gen.next();
|
|
3314
|
+
while (!item.done) {
|
|
3315
|
+
if (condition(item.value)) {
|
|
3316
|
+
return item.value;
|
|
3317
|
+
}
|
|
3318
|
+
item = gen.next();
|
|
3301
3319
|
}
|
|
3302
|
-
|
|
3320
|
+
return null;
|
|
3321
|
+
}
|
|
3322
|
+
static *nextGen(start, root, leftToRight = true, withChild = true) {
|
|
3323
|
+
const stack = [];
|
|
3324
|
+
let currentNode = start;
|
|
3303
3325
|
do {
|
|
3304
|
-
next =
|
|
3305
|
-
|
|
3306
|
-
|
|
3326
|
+
let next = leftToRight
|
|
3327
|
+
? currentNode.nextSibling
|
|
3328
|
+
: currentNode.previousSibling;
|
|
3329
|
+
while (next) {
|
|
3330
|
+
stack.unshift(next);
|
|
3331
|
+
next = leftToRight ? next.nextSibling : next.previousSibling;
|
|
3332
|
+
}
|
|
3333
|
+
yield* this.runInStack(start, stack, leftToRight, withChild);
|
|
3334
|
+
currentNode = currentNode.parentNode;
|
|
3335
|
+
} while (currentNode !== root);
|
|
3336
|
+
return null;
|
|
3337
|
+
}
|
|
3338
|
+
static each(elm, callback, leftToRight = true) {
|
|
3339
|
+
const gen = this.eachGen(elm, leftToRight);
|
|
3340
|
+
let item = gen.next();
|
|
3341
|
+
while (!item.done) {
|
|
3342
|
+
if (callback(item.value) === false) {
|
|
3343
|
+
return false;
|
|
3307
3344
|
}
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3345
|
+
item = gen.next();
|
|
3346
|
+
}
|
|
3347
|
+
return true;
|
|
3348
|
+
}
|
|
3349
|
+
static eachGen(root, leftToRight = true) {
|
|
3350
|
+
return this.runInStack(root, [root], leftToRight);
|
|
3351
|
+
}
|
|
3352
|
+
static *runInStack(start, stack, leftToRight, withChild = true) {
|
|
3353
|
+
while (stack.length) {
|
|
3354
|
+
const item = stack.pop();
|
|
3355
|
+
if (start !== item) {
|
|
3356
|
+
yield item;
|
|
3313
3357
|
}
|
|
3314
|
-
if (
|
|
3315
|
-
|
|
3358
|
+
if (withChild) {
|
|
3359
|
+
let child = leftToRight ? item.lastChild : item.firstChild;
|
|
3360
|
+
while (child) {
|
|
3361
|
+
stack.push(child);
|
|
3362
|
+
child = leftToRight
|
|
3363
|
+
? child.previousSibling
|
|
3364
|
+
: child.nextSibling;
|
|
3365
|
+
}
|
|
3316
3366
|
}
|
|
3317
|
-
|
|
3318
|
-
} while (start && start !== root);
|
|
3319
|
-
return null;
|
|
3367
|
+
}
|
|
3320
3368
|
}
|
|
3321
3369
|
static findWithCurrent(node, condition, root, sibling = 'nextSibling', child = 'firstChild') {
|
|
3322
3370
|
let next = node;
|
|
@@ -3495,21 +3543,20 @@ class Dom {
|
|
|
3495
3543
|
}
|
|
3496
3544
|
static markTemporary(element, attributes) {
|
|
3497
3545
|
attributes && (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.attr)(element, attributes);
|
|
3498
|
-
(0,_helpers__WEBPACK_IMPORTED_MODULE_1__.attr)(element,
|
|
3546
|
+
(0,_helpers__WEBPACK_IMPORTED_MODULE_1__.attr)(element, _constants__WEBPACK_IMPORTED_MODULE_0__.TEMP_ATTR, true);
|
|
3499
3547
|
return element;
|
|
3500
3548
|
}
|
|
3501
3549
|
static isTemporary(element) {
|
|
3502
3550
|
if (!Dom.isElement(element)) {
|
|
3503
3551
|
return false;
|
|
3504
3552
|
}
|
|
3505
|
-
return
|
|
3506
|
-
(0,_helpers__WEBPACK_IMPORTED_MODULE_1__.attr)(element, 'data-jodit-temp') === 'true');
|
|
3553
|
+
return _selection__WEBPACK_IMPORTED_MODULE_2__/* .Select.isMarker */ .Ph.isMarker(element) || (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.attr)(element, _constants__WEBPACK_IMPORTED_MODULE_0__.TEMP_ATTR) === 'true';
|
|
3507
3554
|
}
|
|
3508
3555
|
static replaceTemporaryFromString(value) {
|
|
3509
3556
|
return value.replace(/<([a-z]+)[^>]+data-jodit-temp[^>]+>(.+?)<\/\1>/gi, '$2');
|
|
3510
3557
|
}
|
|
3511
3558
|
static temporaryList(root) {
|
|
3512
|
-
return (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.$$)(
|
|
3559
|
+
return (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.$$)(`[${_constants__WEBPACK_IMPORTED_MODULE_0__.TEMP_ATTR}]`, root);
|
|
3513
3560
|
}
|
|
3514
3561
|
}
|
|
3515
3562
|
|
|
@@ -3522,28 +3569,21 @@ class Dom {
|
|
|
3522
3569
|
|
|
3523
3570
|
// EXPORTS
|
|
3524
3571
|
__webpack_require__.d(__webpack_exports__, {
|
|
3525
|
-
"
|
|
3526
|
-
"
|
|
3572
|
+
"RP": function() { return /* reexport */ CommitStyle; },
|
|
3573
|
+
"Ph": function() { return /* reexport */ Select; }
|
|
3527
3574
|
});
|
|
3528
3575
|
|
|
3576
|
+
// UNUSED EXPORTS: CHANGE, INITIAL, REPLACE, UNSET, UNWRAP, WRAP
|
|
3577
|
+
|
|
3529
3578
|
// EXTERNAL MODULE: ./src/core/constants.ts
|
|
3530
3579
|
var constants = __webpack_require__(2);
|
|
3580
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
3581
|
+
var helpers = __webpack_require__(8);
|
|
3531
3582
|
// EXTERNAL MODULE: ./src/core/dom.ts
|
|
3532
3583
|
var dom = __webpack_require__(15);
|
|
3533
|
-
// EXTERNAL MODULE: ./src/core/
|
|
3534
|
-
var
|
|
3535
|
-
;// CONCATENATED MODULE: ./src/core/selection/style/api/
|
|
3536
|
-
/*!
|
|
3537
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3538
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3539
|
-
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3540
|
-
*/
|
|
3541
|
-
|
|
3542
|
-
function isNormalNode(elm) {
|
|
3543
|
-
return Boolean(elm && !dom/* Dom.isEmptyTextNode */.i.isEmptyTextNode(elm) && !dom/* Dom.isTemporary */.i.isTemporary(elm));
|
|
3544
|
-
}
|
|
3545
|
-
|
|
3546
|
-
;// CONCATENATED MODULE: ./src/core/selection/style/api/element-has-same-style.ts
|
|
3584
|
+
// EXTERNAL MODULE: ./src/core/global.ts
|
|
3585
|
+
var global = __webpack_require__(13);
|
|
3586
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/toggle/toggle-css.ts
|
|
3547
3587
|
/*!
|
|
3548
3588
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3549
3589
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -3551,97 +3591,77 @@ function isNormalNode(elm) {
|
|
|
3551
3591
|
*/
|
|
3552
3592
|
|
|
3553
3593
|
|
|
3554
|
-
function elementHasSameStyle(elm, rules) {
|
|
3555
|
-
return Boolean(!dom/* Dom.isTag */.i.isTag(elm, 'font') &&
|
|
3556
|
-
dom/* Dom.isHTMLElement */.i.isHTMLElement(elm) &&
|
|
3557
|
-
Object.keys(rules).every(property => {
|
|
3558
|
-
const value = (0,helpers.css)(elm, property, true);
|
|
3559
|
-
return (!(0,helpers.isVoid)(value) &&
|
|
3560
|
-
value !== '' &&
|
|
3561
|
-
!(0,helpers.isVoid)(rules[property]) &&
|
|
3562
|
-
(0,helpers.normalizeCssValue)(property, rules[property])
|
|
3563
|
-
.toString()
|
|
3564
|
-
.toLowerCase() === value.toString().toLowerCase());
|
|
3565
|
-
}));
|
|
3566
|
-
}
|
|
3567
|
-
|
|
3568
|
-
;// CONCATENATED MODULE: ./src/core/selection/style/api/is-suit-element.ts
|
|
3569
|
-
|
|
3570
3594
|
|
|
3571
3595
|
|
|
3572
|
-
function
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3596
|
+
function toggleCSS(commitStyle, elm, jodit, mode, dry = false) {
|
|
3597
|
+
const { style, className } = commitStyle.options;
|
|
3598
|
+
if (style && (0,helpers.size)(style) > 0) {
|
|
3599
|
+
Object.keys(style).forEach((rule) => {
|
|
3600
|
+
const inlineValue = elm.style.getPropertyValue((0,helpers.kebabCase)(rule));
|
|
3601
|
+
if (inlineValue === '' && style[rule] == null) {
|
|
3602
|
+
return;
|
|
3603
|
+
}
|
|
3604
|
+
if (getNativeCSSValue(jodit, elm, rule) ===
|
|
3605
|
+
(0,helpers.normalizeCssValue)(rule, style[rule])) {
|
|
3606
|
+
!dry && (0,helpers.css)(elm, rule, null);
|
|
3607
|
+
mode = UNSET;
|
|
3608
|
+
mode = removeExtraCSS(commitStyle, elm, mode);
|
|
3609
|
+
return;
|
|
3610
|
+
}
|
|
3611
|
+
mode = CHANGE;
|
|
3612
|
+
!dry && (0,helpers.css)(elm, rule, style[rule]);
|
|
3613
|
+
});
|
|
3585
3614
|
}
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
function getSuitParent(style, node, root) {
|
|
3599
|
-
const { parentNode } = node;
|
|
3600
|
-
if (parentNode &&
|
|
3601
|
-
!dom/* Dom.next */.i.next(node, isNormalNode, parentNode) &&
|
|
3602
|
-
!dom/* Dom.prev */.i.prev(node, isNormalNode, parentNode) &&
|
|
3603
|
-
isSuitElement(style, parentNode, false) &&
|
|
3604
|
-
parentNode !== root &&
|
|
3605
|
-
(!dom/* Dom.isBlock */.i.isBlock(parentNode) || style.elementIsBlock)) {
|
|
3606
|
-
return parentNode;
|
|
3615
|
+
if (className) {
|
|
3616
|
+
if (elm.classList.contains(className)) {
|
|
3617
|
+
elm.classList.remove(className);
|
|
3618
|
+
mode = UNSET;
|
|
3619
|
+
}
|
|
3620
|
+
else {
|
|
3621
|
+
elm.classList.add(className);
|
|
3622
|
+
mode = CHANGE;
|
|
3623
|
+
}
|
|
3607
3624
|
}
|
|
3608
|
-
return
|
|
3625
|
+
return mode;
|
|
3609
3626
|
}
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
*/
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
function getSuitChild(style, font) {
|
|
3621
|
-
let { firstChild: child } = font;
|
|
3622
|
-
while (child && !isNormalNode(child)) {
|
|
3623
|
-
child = child.nextSibling;
|
|
3624
|
-
if (!child) {
|
|
3625
|
-
return null;
|
|
3627
|
+
function removeExtraCSS(commitStyle, elm, mode) {
|
|
3628
|
+
if (!(0,helpers.attr)(elm, 'style')) {
|
|
3629
|
+
(0,helpers.attr)(elm, 'style', null);
|
|
3630
|
+
if (elm.tagName.toLowerCase() === commitStyle.defaultTag) {
|
|
3631
|
+
dom/* Dom.unwrap */.i.unwrap(elm);
|
|
3632
|
+
mode = UNWRAP;
|
|
3626
3633
|
}
|
|
3627
3634
|
}
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3635
|
+
return mode;
|
|
3636
|
+
}
|
|
3637
|
+
function getShadowRoot(jodit) {
|
|
3638
|
+
var _a;
|
|
3639
|
+
if ((0,helpers.dataBind)(jodit, 'shadowRoot') !== undefined) {
|
|
3640
|
+
return (0,helpers.dataBind)(jodit, 'shadowRoot');
|
|
3632
3641
|
}
|
|
3633
|
-
|
|
3642
|
+
const container = (0,global/* getContainer */.ZO)(jodit, function Utils() { });
|
|
3643
|
+
const iframe = document.createElement('iframe');
|
|
3644
|
+
(0,helpers.css)(iframe, {
|
|
3645
|
+
width: 0,
|
|
3646
|
+
height: 0,
|
|
3647
|
+
position: 'absolute',
|
|
3648
|
+
border: 0
|
|
3649
|
+
});
|
|
3650
|
+
iframe.src = 'about:blank';
|
|
3651
|
+
container.appendChild(iframe);
|
|
3652
|
+
const doc = (_a = iframe.contentWindow) === null || _a === void 0 ? void 0 : _a.document;
|
|
3653
|
+
const shadowRoot = !doc ? jodit.od.body : doc.body;
|
|
3654
|
+
(0,helpers.dataBind)(jodit, 'shadowRoot', shadowRoot);
|
|
3655
|
+
return shadowRoot;
|
|
3634
3656
|
}
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
function checkSpecialElements(font, root) {
|
|
3644
|
-
return Boolean(dom/* Dom.closest */.i.closest(font, ['style', 'script'], root));
|
|
3657
|
+
function getNativeCSSValue(jodit, elm, key) {
|
|
3658
|
+
const newElm = jodit.create.element(elm.tagName.toLowerCase());
|
|
3659
|
+
newElm.style.cssText = elm.style.cssText;
|
|
3660
|
+
const root = getShadowRoot(jodit);
|
|
3661
|
+
root.appendChild(newElm);
|
|
3662
|
+
const result = (0,helpers.css)(newElm, key);
|
|
3663
|
+
dom/* Dom.safeRemove */.i.safeRemove(newElm);
|
|
3664
|
+
return result;
|
|
3645
3665
|
}
|
|
3646
3666
|
|
|
3647
3667
|
// EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
|
|
@@ -4090,24 +4110,48 @@ class Select {
|
|
|
4090
4110
|
this.j.e.fire('afterInsertImage', image);
|
|
4091
4111
|
}
|
|
4092
4112
|
eachSelection(callback) {
|
|
4113
|
+
var _a;
|
|
4093
4114
|
const sel = this.sel;
|
|
4094
4115
|
if (sel && sel.rangeCount) {
|
|
4095
4116
|
const range = sel.getRangeAt(0);
|
|
4096
|
-
|
|
4097
|
-
|
|
4117
|
+
let root = range.commonAncestorContainer;
|
|
4118
|
+
if (!dom/* Dom.isHTMLElement */.i.isHTMLElement(root)) {
|
|
4119
|
+
root = root.parentElement;
|
|
4120
|
+
}
|
|
4121
|
+
const nodes = [], startOffset = range.startOffset, length = root.childNodes.length, elementOffset = startOffset < length ? startOffset : length - 1;
|
|
4122
|
+
let start = range.startContainer === this.area
|
|
4123
|
+
? root.childNodes[elementOffset]
|
|
4098
4124
|
: range.startContainer, end = range.endContainer === this.area
|
|
4099
|
-
?
|
|
4125
|
+
? root.childNodes[range.endOffset - 1]
|
|
4100
4126
|
: range.endContainer;
|
|
4101
|
-
dom/* Dom.
|
|
4127
|
+
if (dom/* Dom.isText */.i.isText(start) &&
|
|
4128
|
+
start === range.startContainer &&
|
|
4129
|
+
range.startOffset === ((_a = start.nodeValue) === null || _a === void 0 ? void 0 : _a.length) &&
|
|
4130
|
+
start.nextSibling) {
|
|
4131
|
+
start = start.nextSibling;
|
|
4132
|
+
}
|
|
4133
|
+
if (dom/* Dom.isText */.i.isText(end) &&
|
|
4134
|
+
end === range.endContainer &&
|
|
4135
|
+
range.endOffset === 0 &&
|
|
4136
|
+
end.previousSibling) {
|
|
4137
|
+
end = end.previousSibling;
|
|
4138
|
+
}
|
|
4139
|
+
const checkElm = (node) => {
|
|
4102
4140
|
if (node &&
|
|
4103
|
-
node !==
|
|
4141
|
+
node !== root &&
|
|
4104
4142
|
!dom/* Dom.isEmptyTextNode */.i.isEmptyTextNode(node) &&
|
|
4105
4143
|
!Select.isMarker(node)) {
|
|
4106
4144
|
nodes.push(node);
|
|
4107
4145
|
}
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4146
|
+
};
|
|
4147
|
+
checkElm(start);
|
|
4148
|
+
if (start !== end) {
|
|
4149
|
+
dom/* Dom.find */.i.find(start, node => {
|
|
4150
|
+
checkElm(node);
|
|
4151
|
+
return (node === end ||
|
|
4152
|
+
(node && node.contains && node.contains(end)));
|
|
4153
|
+
}, root, true, false);
|
|
4154
|
+
}
|
|
4111
4155
|
const forEvery = (current) => {
|
|
4112
4156
|
if (!dom/* Dom.isOrContains */.i.isOrContains(this.j.editor, current, true)) {
|
|
4113
4157
|
return;
|
|
@@ -4430,6 +4474,9 @@ class Select {
|
|
|
4430
4474
|
return currentBox.previousElementSibling;
|
|
4431
4475
|
}
|
|
4432
4476
|
}
|
|
4477
|
+
(0,tslib_es6/* __decorate */.gn)([
|
|
4478
|
+
decorators.autobind
|
|
4479
|
+
], Select.prototype, "createRange", null);
|
|
4433
4480
|
(0,tslib_es6/* __decorate */.gn)([
|
|
4434
4481
|
decorators.autobind
|
|
4435
4482
|
], Select.prototype, "focus", null);
|
|
@@ -4443,7 +4490,7 @@ class Select {
|
|
|
4443
4490
|
decorators.autobind
|
|
4444
4491
|
], Select.prototype, "setCursorIn", null);
|
|
4445
4492
|
|
|
4446
|
-
;// CONCATENATED MODULE: ./src/core/selection/style/api/
|
|
4493
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/extract.ts
|
|
4447
4494
|
/*!
|
|
4448
4495
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4449
4496
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -4452,29 +4499,20 @@ class Select {
|
|
|
4452
4499
|
|
|
4453
4500
|
|
|
4454
4501
|
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
const
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
const rightEdge = Select.isMarker(font.nextSibling)
|
|
4470
|
-
? font.nextSibling
|
|
4471
|
-
: font;
|
|
4472
|
-
range.setStartAfter(rightEdge);
|
|
4473
|
-
range.setEndAfter(wrapper);
|
|
4474
|
-
extractAndMove(wrapper, range, false);
|
|
4475
|
-
return wrapper;
|
|
4476
|
-
}
|
|
4477
|
-
return null;
|
|
4502
|
+
function extractSelectedPart(wrapper, font, jodit) {
|
|
4503
|
+
const range = jodit.s.createRange();
|
|
4504
|
+
const leftEdge = Select.isMarker(font.previousSibling)
|
|
4505
|
+
? font.previousSibling
|
|
4506
|
+
: font;
|
|
4507
|
+
range.setStartBefore(wrapper);
|
|
4508
|
+
range.setEndBefore(leftEdge);
|
|
4509
|
+
extractAndMove(wrapper, range, true);
|
|
4510
|
+
const rightEdge = Select.isMarker(font.nextSibling)
|
|
4511
|
+
? font.nextSibling
|
|
4512
|
+
: font;
|
|
4513
|
+
range.setStartAfter(rightEdge);
|
|
4514
|
+
range.setEndAfter(wrapper);
|
|
4515
|
+
extractAndMove(wrapper, range, false);
|
|
4478
4516
|
}
|
|
4479
4517
|
function extractAndMove(wrapper, range, left) {
|
|
4480
4518
|
const fragment = range.extractContents();
|
|
@@ -4487,6 +4525,225 @@ function extractAndMove(wrapper, range, left) {
|
|
|
4487
4525
|
}
|
|
4488
4526
|
}
|
|
4489
4527
|
|
|
4528
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/toggle/toggle-ordered-list.ts
|
|
4529
|
+
/*!
|
|
4530
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4531
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4532
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4533
|
+
*/
|
|
4534
|
+
|
|
4535
|
+
|
|
4536
|
+
|
|
4537
|
+
|
|
4538
|
+
function toggleOrderedList(style, li, jodit, mode) {
|
|
4539
|
+
if (!li) {
|
|
4540
|
+
return mode;
|
|
4541
|
+
}
|
|
4542
|
+
const list = li.parentElement;
|
|
4543
|
+
if (!list) {
|
|
4544
|
+
return mode;
|
|
4545
|
+
}
|
|
4546
|
+
if (list.tagName.toLowerCase() !== style.element) {
|
|
4547
|
+
const newList = dom/* Dom.replace */.i.replace(list, style.element, jodit.createInside);
|
|
4548
|
+
toggleCSS(style, newList, jodit, mode);
|
|
4549
|
+
return REPLACE;
|
|
4550
|
+
}
|
|
4551
|
+
if (toggleCSS(style, li.parentElement, jodit, INITIAL, true) === CHANGE) {
|
|
4552
|
+
return toggleCSS(style, li.parentElement, jodit, mode);
|
|
4553
|
+
}
|
|
4554
|
+
extractSelectedPart(list, li, jodit);
|
|
4555
|
+
dom/* Dom.unwrap */.i.unwrap(li.parentElement);
|
|
4556
|
+
dom/* Dom.replace */.i.replace(li, jodit.o.enter, jodit.createInside);
|
|
4557
|
+
return mode;
|
|
4558
|
+
}
|
|
4559
|
+
|
|
4560
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/element-has-same-style.ts
|
|
4561
|
+
/*!
|
|
4562
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4563
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4564
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4565
|
+
*/
|
|
4566
|
+
|
|
4567
|
+
|
|
4568
|
+
function elementHasSameStyle(elm, rules) {
|
|
4569
|
+
return Boolean(!dom/* Dom.isTag */.i.isTag(elm, 'font') &&
|
|
4570
|
+
dom/* Dom.isHTMLElement */.i.isHTMLElement(elm) &&
|
|
4571
|
+
Object.keys(rules).every(property => {
|
|
4572
|
+
const value = (0,helpers.css)(elm, property, true);
|
|
4573
|
+
return (!(0,helpers.isVoid)(value) &&
|
|
4574
|
+
value !== '' &&
|
|
4575
|
+
!(0,helpers.isVoid)(rules[property]) &&
|
|
4576
|
+
(0,helpers.normalizeCssValue)(property, rules[property])
|
|
4577
|
+
.toString()
|
|
4578
|
+
.toLowerCase() === value.toString().toLowerCase());
|
|
4579
|
+
}));
|
|
4580
|
+
}
|
|
4581
|
+
function elementHasSameStyleKeys(elm, rules) {
|
|
4582
|
+
return Boolean(!dom/* Dom.isTag */.i.isTag(elm, 'font') &&
|
|
4583
|
+
dom/* Dom.isHTMLElement */.i.isHTMLElement(elm) &&
|
|
4584
|
+
Object.keys(rules).every(property => !(0,helpers.isVoid)((0,helpers.css)(elm, property, true))));
|
|
4585
|
+
}
|
|
4586
|
+
|
|
4587
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/finite-state-machine.ts
|
|
4588
|
+
/*!
|
|
4589
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4590
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4591
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4592
|
+
*/
|
|
4593
|
+
class FiniteStateMachine {
|
|
4594
|
+
constructor(state, transitions) {
|
|
4595
|
+
this.state = state;
|
|
4596
|
+
this.transitions = transitions;
|
|
4597
|
+
this.subState = '';
|
|
4598
|
+
this.silent = true;
|
|
4599
|
+
}
|
|
4600
|
+
setState(state, subState) {
|
|
4601
|
+
this.state = state;
|
|
4602
|
+
if (subState != null) {
|
|
4603
|
+
this.subState = subState;
|
|
4604
|
+
}
|
|
4605
|
+
}
|
|
4606
|
+
getState() {
|
|
4607
|
+
return this.state;
|
|
4608
|
+
}
|
|
4609
|
+
getSubState() {
|
|
4610
|
+
return this.subState;
|
|
4611
|
+
}
|
|
4612
|
+
disableSilent() {
|
|
4613
|
+
this.silent = false;
|
|
4614
|
+
}
|
|
4615
|
+
dispatch(actionName, ...attrs) {
|
|
4616
|
+
const action = this.transitions[this.state][actionName];
|
|
4617
|
+
if (action) {
|
|
4618
|
+
if (!this.silent) {
|
|
4619
|
+
console.log('State: ' + this.state, 'Action: ' + actionName);
|
|
4620
|
+
}
|
|
4621
|
+
const res = action.call(this, ...attrs);
|
|
4622
|
+
if (!this.silent) {
|
|
4623
|
+
console.log('State: ' + this.state);
|
|
4624
|
+
}
|
|
4625
|
+
return res;
|
|
4626
|
+
}
|
|
4627
|
+
if (!this.silent) {
|
|
4628
|
+
throw new Error('invalid action: ' + this.state + '.' + actionName);
|
|
4629
|
+
}
|
|
4630
|
+
return;
|
|
4631
|
+
}
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4634
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/is-normal-node.ts
|
|
4635
|
+
/*!
|
|
4636
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4637
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4638
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4639
|
+
*/
|
|
4640
|
+
|
|
4641
|
+
function isNormalNode(elm) {
|
|
4642
|
+
return Boolean(elm && !dom/* Dom.isEmptyTextNode */.i.isEmptyTextNode(elm) && !dom/* Dom.isTemporary */.i.isTemporary(elm));
|
|
4643
|
+
}
|
|
4644
|
+
|
|
4645
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/is-suit-element.ts
|
|
4646
|
+
|
|
4647
|
+
|
|
4648
|
+
|
|
4649
|
+
function isSuitElement(commitStyle, elm, strict) {
|
|
4650
|
+
if (!elm) {
|
|
4651
|
+
return false;
|
|
4652
|
+
}
|
|
4653
|
+
const { element, elementIsDefault, options } = commitStyle;
|
|
4654
|
+
const elmHasSameStyle = Boolean(options.style && elementHasSameStyle(elm, options.style));
|
|
4655
|
+
const elmIsSame = elm.nodeName.toLowerCase() === element ||
|
|
4656
|
+
(dom/* Dom.isTag */.i.isTag(elm, ['ul', 'ol']) && commitStyle.elementIsList);
|
|
4657
|
+
if (((!elementIsDefault || !strict) && elmIsSame) ||
|
|
4658
|
+
(elmHasSameStyle && isNormalNode(elm))) {
|
|
4659
|
+
return true;
|
|
4660
|
+
}
|
|
4661
|
+
return Boolean(!elmIsSame && !strict && elementIsDefault && dom/* Dom.isInlineBlock */.i.isInlineBlock(elm));
|
|
4662
|
+
}
|
|
4663
|
+
function isSameStyleChild(commitStyle, elm) {
|
|
4664
|
+
const { element, options } = commitStyle;
|
|
4665
|
+
if (!elm || !isNormalNode(elm)) {
|
|
4666
|
+
return false;
|
|
4667
|
+
}
|
|
4668
|
+
const elmIsSame = elm.nodeName.toLowerCase() === element;
|
|
4669
|
+
const elmHasSameStyle = Boolean(options.style && elementHasSameStyleKeys(elm, options.style));
|
|
4670
|
+
return elmIsSame && elmHasSameStyle;
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/get-suit-child.ts
|
|
4674
|
+
/*!
|
|
4675
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4676
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4677
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4678
|
+
*/
|
|
4679
|
+
|
|
4680
|
+
|
|
4681
|
+
|
|
4682
|
+
function getSuitChild(style, font) {
|
|
4683
|
+
let { firstChild: child } = font;
|
|
4684
|
+
while (child && !isNormalNode(child)) {
|
|
4685
|
+
child = child.nextSibling;
|
|
4686
|
+
if (!child) {
|
|
4687
|
+
return null;
|
|
4688
|
+
}
|
|
4689
|
+
}
|
|
4690
|
+
if (child &&
|
|
4691
|
+
!dom/* Dom.next */.i.next(child, isNormalNode, font) &&
|
|
4692
|
+
isSuitElement(style, child, false)) {
|
|
4693
|
+
return child;
|
|
4694
|
+
}
|
|
4695
|
+
return null;
|
|
4696
|
+
}
|
|
4697
|
+
|
|
4698
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/get-suit-parent.ts
|
|
4699
|
+
/*!
|
|
4700
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4701
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4702
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4703
|
+
*/
|
|
4704
|
+
|
|
4705
|
+
|
|
4706
|
+
|
|
4707
|
+
function getSuitParent(style, node, root) {
|
|
4708
|
+
const { parentNode } = node;
|
|
4709
|
+
if (dom/* Dom.isHTMLElement */.i.isHTMLElement(parentNode) &&
|
|
4710
|
+
!dom/* Dom.next */.i.next(node, isNormalNode, parentNode) &&
|
|
4711
|
+
!dom/* Dom.prev */.i.prev(node, isNormalNode, parentNode) &&
|
|
4712
|
+
isSuitElement(style, parentNode, false) &&
|
|
4713
|
+
parentNode !== root &&
|
|
4714
|
+
(!dom/* Dom.isBlock */.i.isBlock(parentNode) || style.elementIsBlock)) {
|
|
4715
|
+
return parentNode;
|
|
4716
|
+
}
|
|
4717
|
+
return null;
|
|
4718
|
+
}
|
|
4719
|
+
|
|
4720
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/is-inside-invisible-element.ts
|
|
4721
|
+
/*!
|
|
4722
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4723
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4724
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4725
|
+
*/
|
|
4726
|
+
|
|
4727
|
+
function isInsideInvisibleElement(font, root) {
|
|
4728
|
+
return Boolean(dom/* Dom.closest */.i.closest(font, ['style', 'script'], root));
|
|
4729
|
+
}
|
|
4730
|
+
|
|
4731
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/toggle-commit-styles.ts
|
|
4732
|
+
/*!
|
|
4733
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4734
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4735
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4736
|
+
*/
|
|
4737
|
+
|
|
4738
|
+
function toggleCommitStyles(commitStyle, elm) {
|
|
4739
|
+
if (commitStyle.elementIsBlock ||
|
|
4740
|
+
(dom/* Dom.isTag */.i.isTag(elm, commitStyle.element) && !commitStyle.elementIsDefault)) {
|
|
4741
|
+
dom/* Dom.unwrap */.i.unwrap(elm);
|
|
4742
|
+
return true;
|
|
4743
|
+
}
|
|
4744
|
+
return false;
|
|
4745
|
+
}
|
|
4746
|
+
|
|
4490
4747
|
;// CONCATENATED MODULE: ./src/core/selection/style/api/unwrap-children.ts
|
|
4491
4748
|
/*!
|
|
4492
4749
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -4495,47 +4752,53 @@ function extractAndMove(wrapper, range, left) {
|
|
|
4495
4752
|
*/
|
|
4496
4753
|
|
|
4497
4754
|
|
|
4755
|
+
|
|
4498
4756
|
function unwrapChildren(style, font) {
|
|
4499
4757
|
const needUnwrap = [];
|
|
4758
|
+
const needChangeStyle = [];
|
|
4500
4759
|
let firstElementSuit;
|
|
4760
|
+
const cssStyle = style.options.style;
|
|
4501
4761
|
if (font.firstChild) {
|
|
4502
|
-
dom/* Dom.
|
|
4503
|
-
|
|
4762
|
+
const gen = dom/* Dom.eachGen */.i.eachGen(font);
|
|
4763
|
+
let item = gen.next();
|
|
4764
|
+
while (!item.done) {
|
|
4765
|
+
const elm = item.value;
|
|
4766
|
+
if (isSuitElement(style, elm, true)) {
|
|
4504
4767
|
if (firstElementSuit === undefined) {
|
|
4505
4768
|
firstElementSuit = true;
|
|
4506
4769
|
}
|
|
4507
4770
|
needUnwrap.push(elm);
|
|
4508
4771
|
}
|
|
4509
|
-
else {
|
|
4772
|
+
else if (cssStyle && isSameStyleChild(style, elm)) {
|
|
4773
|
+
if (firstElementSuit === undefined) {
|
|
4774
|
+
firstElementSuit = false;
|
|
4775
|
+
}
|
|
4776
|
+
needChangeStyle.push(() => {
|
|
4777
|
+
(0,helpers.css)(elm, Object.keys(cssStyle).reduce((acc, key) => {
|
|
4778
|
+
acc[key] = null;
|
|
4779
|
+
return acc;
|
|
4780
|
+
}, {}));
|
|
4781
|
+
if (!(0,helpers.attr)(elm, 'style')) {
|
|
4782
|
+
(0,helpers.attr)(elm, 'style', null);
|
|
4783
|
+
}
|
|
4784
|
+
if (elm.nodeName.toLowerCase() === style.element) {
|
|
4785
|
+
needUnwrap.push(elm);
|
|
4786
|
+
}
|
|
4787
|
+
});
|
|
4788
|
+
}
|
|
4789
|
+
else if (!dom/* Dom.isEmptyTextNode */.i.isEmptyTextNode(elm)) {
|
|
4510
4790
|
if (firstElementSuit === undefined) {
|
|
4511
4791
|
firstElementSuit = false;
|
|
4512
4792
|
}
|
|
4513
4793
|
}
|
|
4514
|
-
|
|
4515
|
-
}
|
|
4794
|
+
item = gen.next();
|
|
4795
|
+
}
|
|
4516
4796
|
}
|
|
4797
|
+
needChangeStyle.forEach(clb => clb());
|
|
4517
4798
|
needUnwrap.forEach(dom/* Dom.unwrap */.i.unwrap);
|
|
4518
4799
|
return Boolean(firstElementSuit);
|
|
4519
4800
|
}
|
|
4520
4801
|
|
|
4521
|
-
;// CONCATENATED MODULE: ./src/core/selection/style/api/post-process-list-element.ts
|
|
4522
|
-
/*!
|
|
4523
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4524
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4525
|
-
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4526
|
-
*/
|
|
4527
|
-
|
|
4528
|
-
function postProcessListElement(style, wrapper, ci) {
|
|
4529
|
-
if (/^(OL|UL)$/i.test(style.element) &&
|
|
4530
|
-
!dom/* Dom.isTag */.i.isTag(wrapper.firstElementChild, 'li')) {
|
|
4531
|
-
const li = dom/* Dom.replace */.i.replace(wrapper, 'li', ci), ul = dom/* Dom.wrap */.i.wrap(li, style.element, ci);
|
|
4532
|
-
if (ul) {
|
|
4533
|
-
return ul;
|
|
4534
|
-
}
|
|
4535
|
-
}
|
|
4536
|
-
return wrapper;
|
|
4537
|
-
}
|
|
4538
|
-
|
|
4539
4802
|
;// CONCATENATED MODULE: ./src/core/selection/style/api/wrap-unwrapped-text.ts
|
|
4540
4803
|
/*!
|
|
4541
4804
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -4543,11 +4806,13 @@ function postProcessListElement(style, wrapper, ci) {
|
|
|
4543
4806
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4544
4807
|
*/
|
|
4545
4808
|
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
const edge = (n, key = 'previousSibling') => {
|
|
4809
|
+
function wrapUnwrappedText(style, elm, jodit, getRange) {
|
|
4810
|
+
const root = jodit.editor, ci = jodit.createInside, edge = (n, key = 'previousSibling') => {
|
|
4549
4811
|
let edgeNode = n, node = n;
|
|
4550
4812
|
while (node) {
|
|
4813
|
+
if (dom/* Dom.isTag */.i.isTag(node, jodit.o.enter)) {
|
|
4814
|
+
break;
|
|
4815
|
+
}
|
|
4551
4816
|
edgeNode = node;
|
|
4552
4817
|
if (node[key]) {
|
|
4553
4818
|
node = node[key];
|
|
@@ -4571,11 +4836,10 @@ function wrapUnwrappedText(style, elm, root, ci, getRange) {
|
|
|
4571
4836
|
range.setStartBefore(start);
|
|
4572
4837
|
range.setEndAfter(end);
|
|
4573
4838
|
const fragment = range.extractContents();
|
|
4574
|
-
|
|
4839
|
+
const wrapper = ci.element(style.element);
|
|
4575
4840
|
wrapper.appendChild(fragment);
|
|
4576
4841
|
range.insertNode(wrapper);
|
|
4577
4842
|
if (style.elementIsBlock) {
|
|
4578
|
-
wrapper = postProcessListElement(style, wrapper, ci);
|
|
4579
4843
|
if (dom/* Dom.isEmpty */.i.isEmpty(wrapper) &&
|
|
4580
4844
|
!dom/* Dom.isTag */.i.isTag(wrapper.firstElementChild, 'br')) {
|
|
4581
4845
|
wrapper.appendChild(ci.element('br'));
|
|
@@ -4584,46 +4848,67 @@ function wrapUnwrappedText(style, elm, root, ci, getRange) {
|
|
|
4584
4848
|
return wrapper;
|
|
4585
4849
|
}
|
|
4586
4850
|
|
|
4587
|
-
;// CONCATENATED MODULE: ./src/core/selection/style/api/
|
|
4851
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/wrap-ordered-list.ts
|
|
4588
4852
|
/*!
|
|
4589
4853
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4590
4854
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4591
4855
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4592
4856
|
*/
|
|
4593
4857
|
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
if (wrap === false ||
|
|
4601
|
-
(0,helpers.css)(elm, rule) ===
|
|
4602
|
-
(0,helpers.normalizeCssValue)(rule, styles[rule])) {
|
|
4603
|
-
(0,helpers.css)(elm, rule, '');
|
|
4604
|
-
if (wrap == null) {
|
|
4605
|
-
wrap = false;
|
|
4606
|
-
}
|
|
4607
|
-
}
|
|
4608
|
-
else {
|
|
4609
|
-
(0,helpers.css)(elm, rule, styles[rule]);
|
|
4610
|
-
if (wrap == null) {
|
|
4611
|
-
wrap = true;
|
|
4612
|
-
}
|
|
4613
|
-
}
|
|
4614
|
-
});
|
|
4858
|
+
function wrapOrderedList(commitStyle, wrapper, jodit) {
|
|
4859
|
+
const newWrapper = dom/* Dom.replace */.i.replace(wrapper, 'li', jodit.createInside);
|
|
4860
|
+
let list = newWrapper.previousElementSibling || newWrapper.nextElementSibling;
|
|
4861
|
+
if (!dom/* Dom.isTag */.i.isTag(list, ['ul', 'ol'])) {
|
|
4862
|
+
list = jodit.createInside.element(commitStyle.element);
|
|
4863
|
+
dom/* Dom.before */.i.before(newWrapper, list);
|
|
4615
4864
|
}
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4865
|
+
if (newWrapper.previousElementSibling === list) {
|
|
4866
|
+
dom/* Dom.append */.i.append(list, newWrapper);
|
|
4867
|
+
}
|
|
4868
|
+
else {
|
|
4869
|
+
dom/* Dom.prepend */.i.prepend(list, newWrapper);
|
|
4870
|
+
}
|
|
4871
|
+
return list;
|
|
4872
|
+
}
|
|
4873
|
+
|
|
4874
|
+
;// CONCATENATED MODULE: ./src/core/selection/style/api/wrap-and-commit-style.ts
|
|
4875
|
+
/*!
|
|
4876
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4877
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4878
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4879
|
+
*/
|
|
4880
|
+
|
|
4881
|
+
|
|
4882
|
+
|
|
4883
|
+
|
|
4884
|
+
function wrapAndCommitStyle(commitStyle, font, jodit) {
|
|
4885
|
+
const wrapper = findOrCreateWrapper(commitStyle, font, jodit);
|
|
4886
|
+
return commitStyle.elementIsList
|
|
4887
|
+
? wrapOrderedList(commitStyle, wrapper, jodit)
|
|
4888
|
+
: dom/* Dom.replace */.i.replace(wrapper, commitStyle.element, jodit.createInside, true);
|
|
4889
|
+
}
|
|
4890
|
+
function findOrCreateWrapper(commitStyle, font, jodit) {
|
|
4891
|
+
if (commitStyle.elementIsBlock) {
|
|
4892
|
+
const box = dom/* Dom.up */.i.up(font, node => dom/* Dom.isBlock */.i.isBlock(node) &&
|
|
4893
|
+
!dom/* Dom.isTag */.i.isTag(node, [
|
|
4894
|
+
'td',
|
|
4895
|
+
'th',
|
|
4896
|
+
'tr',
|
|
4897
|
+
'tbody',
|
|
4898
|
+
'table',
|
|
4899
|
+
'li',
|
|
4900
|
+
'ul',
|
|
4901
|
+
'ol'
|
|
4902
|
+
]), jodit.editor);
|
|
4903
|
+
if (box) {
|
|
4904
|
+
return box;
|
|
4624
4905
|
}
|
|
4625
4906
|
}
|
|
4626
|
-
|
|
4907
|
+
if (commitStyle.elementIsBlock) {
|
|
4908
|
+
return wrapUnwrappedText(commitStyle, font, jodit, jodit.s.createRange);
|
|
4909
|
+
}
|
|
4910
|
+
(0,helpers.attr)(font, 'size', null);
|
|
4911
|
+
return font;
|
|
4627
4912
|
}
|
|
4628
4913
|
|
|
4629
4914
|
;// CONCATENATED MODULE: ./src/core/selection/style/api/index.ts
|
|
@@ -4641,6 +4926,13 @@ function toggleStyles(style, elm, wrap) {
|
|
|
4641
4926
|
|
|
4642
4927
|
|
|
4643
4928
|
|
|
4929
|
+
|
|
4930
|
+
|
|
4931
|
+
|
|
4932
|
+
|
|
4933
|
+
|
|
4934
|
+
|
|
4935
|
+
|
|
4644
4936
|
;// CONCATENATED MODULE: ./src/core/selection/style/apply-style.ts
|
|
4645
4937
|
/*!
|
|
4646
4938
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -4650,69 +4942,137 @@ function toggleStyles(style, elm, wrap) {
|
|
|
4650
4942
|
|
|
4651
4943
|
|
|
4652
4944
|
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
sel
|
|
4657
|
-
(
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
}
|
|
4679
|
-
if (wrap == null) {
|
|
4680
|
-
wrap = true;
|
|
4681
|
-
}
|
|
4682
|
-
if (!wrap) {
|
|
4683
|
-
return wrap;
|
|
4684
|
-
}
|
|
4685
|
-
let wrapper = font;
|
|
4686
|
-
if (style.elementIsBlock) {
|
|
4687
|
-
const ulReg = /^(ul|ol|li|td|th|tr|tbody|table)$/i;
|
|
4688
|
-
const box = dom/* Dom.up */.i.up(font, node => {
|
|
4689
|
-
if (dom/* Dom.isBlock */.i.isBlock(node)) {
|
|
4690
|
-
if (ulReg.test(style.element) ||
|
|
4691
|
-
!ulReg.test(node.nodeName)) {
|
|
4692
|
-
return true;
|
|
4945
|
+
|
|
4946
|
+
|
|
4947
|
+
function ApplyStyle(jodit, cs) {
|
|
4948
|
+
const { s: sel, editor } = jodit;
|
|
4949
|
+
const fsm = new FiniteStateMachine('start', {
|
|
4950
|
+
start: {
|
|
4951
|
+
start() {
|
|
4952
|
+
sel.save();
|
|
4953
|
+
(0,helpers.normalizeNode)(editor.firstChild);
|
|
4954
|
+
this.setState('generator');
|
|
4955
|
+
}
|
|
4956
|
+
},
|
|
4957
|
+
generator: {
|
|
4958
|
+
initGenerator() {
|
|
4959
|
+
return jodit.s.wrapInTagGen();
|
|
4960
|
+
},
|
|
4961
|
+
nextFont(gen) {
|
|
4962
|
+
const font = gen.next();
|
|
4963
|
+
if (font.done) {
|
|
4964
|
+
this.setState('end');
|
|
4965
|
+
return;
|
|
4966
|
+
}
|
|
4967
|
+
if (isInsideInvisibleElement(font.value, editor) ||
|
|
4968
|
+
dom/* Dom.isEmptyContent */.i.isEmptyContent(font.value)) {
|
|
4969
|
+
return;
|
|
4693
4970
|
}
|
|
4971
|
+
this.setState('check');
|
|
4972
|
+
return font.value;
|
|
4973
|
+
}
|
|
4974
|
+
},
|
|
4975
|
+
check: {
|
|
4976
|
+
work(font) {
|
|
4977
|
+
let elm = getSuitParent(cs, font, jodit.editor) ||
|
|
4978
|
+
getSuitChild(cs, font);
|
|
4979
|
+
if (elm) {
|
|
4980
|
+
this.setState('wholeElement');
|
|
4981
|
+
return elm;
|
|
4982
|
+
}
|
|
4983
|
+
elm = dom/* Dom.closest */.i.closest(font, node => isSuitElement(cs, node, true), jodit.editor);
|
|
4984
|
+
if (elm) {
|
|
4985
|
+
if (!cs.elementIsBlock) {
|
|
4986
|
+
extractSelectedPart(elm, font, jodit);
|
|
4987
|
+
}
|
|
4988
|
+
}
|
|
4989
|
+
if (cs.elementIsList && dom/* Dom.isTag */.i.isTag(elm, ['ul', 'ol'])) {
|
|
4990
|
+
this.setState('orderList');
|
|
4991
|
+
return font;
|
|
4992
|
+
}
|
|
4993
|
+
if (elm) {
|
|
4994
|
+
this.setState('wholeElement');
|
|
4995
|
+
return elm;
|
|
4996
|
+
}
|
|
4997
|
+
if (unwrapChildren(cs, font)) {
|
|
4998
|
+
this.setState('endProcess');
|
|
4999
|
+
return null;
|
|
5000
|
+
}
|
|
5001
|
+
this.setState('wrap');
|
|
5002
|
+
return font;
|
|
5003
|
+
}
|
|
5004
|
+
},
|
|
5005
|
+
wholeElement: {
|
|
5006
|
+
toggleStyles(toggleElm) {
|
|
5007
|
+
let mode = INITIAL;
|
|
5008
|
+
if (toggleCommitStyles(cs, toggleElm)) {
|
|
5009
|
+
mode = UNWRAP;
|
|
5010
|
+
}
|
|
5011
|
+
else {
|
|
5012
|
+
mode = toggleCSS(cs, toggleElm, jodit, mode);
|
|
5013
|
+
}
|
|
5014
|
+
this.setState('generator', mode);
|
|
5015
|
+
}
|
|
5016
|
+
},
|
|
5017
|
+
orderList: {
|
|
5018
|
+
toggleStyles(font) {
|
|
5019
|
+
let mode = INITIAL;
|
|
5020
|
+
const li = dom/* Dom.closest */.i.closest(font, 'li', jodit.editor);
|
|
5021
|
+
if (!li) {
|
|
5022
|
+
this.setState('generator');
|
|
5023
|
+
return;
|
|
5024
|
+
}
|
|
5025
|
+
const ul = dom/* Dom.closest */.i.closest(font, ['ul', 'ol'], jodit.editor);
|
|
5026
|
+
if (!ul) {
|
|
5027
|
+
this.setState('generator');
|
|
5028
|
+
return;
|
|
5029
|
+
}
|
|
5030
|
+
mode = toggleOrderedList(cs, li, jodit, mode);
|
|
5031
|
+
if (mode === REPLACE || mode === UNWRAP || mode === CHANGE) {
|
|
5032
|
+
this.setState('endWhile');
|
|
5033
|
+
return;
|
|
5034
|
+
}
|
|
5035
|
+
this.setState('generator');
|
|
5036
|
+
}
|
|
5037
|
+
},
|
|
5038
|
+
wrap: {
|
|
5039
|
+
toggleStyles(font) {
|
|
5040
|
+
if (this.getSubState() !== 'unwrap') {
|
|
5041
|
+
const toggleElm = wrapAndCommitStyle(cs, font, jodit);
|
|
5042
|
+
toggleCSS(cs, toggleElm, jodit, WRAP);
|
|
5043
|
+
}
|
|
5044
|
+
this.setState('generator');
|
|
5045
|
+
}
|
|
5046
|
+
},
|
|
5047
|
+
endWhile: {
|
|
5048
|
+
nextFont(gen) {
|
|
5049
|
+
const font = gen.next();
|
|
5050
|
+
if (font.done) {
|
|
5051
|
+
this.setState('end');
|
|
5052
|
+
}
|
|
5053
|
+
}
|
|
5054
|
+
},
|
|
5055
|
+
endProcess: {
|
|
5056
|
+
toggleStyles() {
|
|
5057
|
+
this.setState('generator');
|
|
5058
|
+
}
|
|
5059
|
+
},
|
|
5060
|
+
end: {
|
|
5061
|
+
finalize() {
|
|
5062
|
+
sel.restore();
|
|
4694
5063
|
}
|
|
4695
|
-
return false;
|
|
4696
|
-
}, root);
|
|
4697
|
-
if (box) {
|
|
4698
|
-
wrapper = box;
|
|
4699
5064
|
}
|
|
4700
|
-
|
|
4701
|
-
|
|
5065
|
+
});
|
|
5066
|
+
fsm.dispatch('start');
|
|
5067
|
+
const gen = fsm.dispatch('initGenerator');
|
|
5068
|
+
while (fsm.getState() !== 'end') {
|
|
5069
|
+
const font = fsm.dispatch('nextFont', gen);
|
|
5070
|
+
if (font) {
|
|
5071
|
+
const wrapper = fsm.dispatch('work', font);
|
|
5072
|
+
fsm.dispatch('toggleStyles', wrapper);
|
|
4702
5073
|
}
|
|
4703
5074
|
}
|
|
4704
|
-
|
|
4705
|
-
(0,helpers.attr)(newWrapper, 'size', null);
|
|
4706
|
-
if (style.elementIsBlock) {
|
|
4707
|
-
postProcessListElement(style, newWrapper, ci);
|
|
4708
|
-
}
|
|
4709
|
-
if (style.options.style && style.elementIsDefault) {
|
|
4710
|
-
(0,helpers.css)(newWrapper, style.options.style);
|
|
4711
|
-
}
|
|
4712
|
-
if (style.options.className) {
|
|
4713
|
-
newWrapper.classList.toggle(style.options.className);
|
|
4714
|
-
}
|
|
4715
|
-
return wrap;
|
|
5075
|
+
fsm.dispatch('finalize', gen);
|
|
4716
5076
|
}
|
|
4717
5077
|
|
|
4718
5078
|
;// CONCATENATED MODULE: ./src/core/selection/style/commit-style.ts
|
|
@@ -4723,10 +5083,19 @@ function applyToElement(style, font, root, range, ci, wrap) {
|
|
|
4723
5083
|
*/
|
|
4724
5084
|
|
|
4725
5085
|
|
|
5086
|
+
const WRAP = 'wrap';
|
|
5087
|
+
const UNWRAP = 'unwrap';
|
|
5088
|
+
const CHANGE = 'change';
|
|
5089
|
+
const UNSET = 'unset';
|
|
5090
|
+
const INITIAL = 'initial';
|
|
5091
|
+
const REPLACE = 'replace';
|
|
4726
5092
|
class CommitStyle {
|
|
4727
5093
|
constructor(options) {
|
|
4728
5094
|
this.options = options;
|
|
4729
5095
|
}
|
|
5096
|
+
get elementIsList() {
|
|
5097
|
+
return Boolean(this.options.element && ['ul', 'ol'].includes(this.options.element));
|
|
5098
|
+
}
|
|
4730
5099
|
get element() {
|
|
4731
5100
|
return this.options.element || this.defaultTag;
|
|
4732
5101
|
}
|
|
@@ -4781,7 +5150,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
4781
5150
|
"watch": function() { return /* reexport */ watch; }
|
|
4782
5151
|
});
|
|
4783
5152
|
|
|
4784
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
5153
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
4785
5154
|
var helpers = __webpack_require__(8);
|
|
4786
5155
|
;// CONCATENATED MODULE: ./src/core/decorators/cache.ts
|
|
4787
5156
|
/*!
|
|
@@ -6321,7 +6690,7 @@ function ucfirst(value) {
|
|
|
6321
6690
|
var config = __webpack_require__(1);
|
|
6322
6691
|
// EXTERNAL MODULE: ./src/core/helpers/default-language.ts
|
|
6323
6692
|
var default_language = __webpack_require__(28);
|
|
6324
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
6693
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
6325
6694
|
var helpers = __webpack_require__(8);
|
|
6326
6695
|
// EXTERNAL MODULE: ./src/core/global.ts
|
|
6327
6696
|
var global = __webpack_require__(13);
|
|
@@ -6937,7 +7306,7 @@ var tslib_es6 = __webpack_require__(18);
|
|
|
6937
7306
|
var ui_element = __webpack_require__(33);
|
|
6938
7307
|
// EXTERNAL MODULE: ./src/core/dom.ts
|
|
6939
7308
|
var dom = __webpack_require__(15);
|
|
6940
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
7309
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
6941
7310
|
var helpers = __webpack_require__(8);
|
|
6942
7311
|
// EXTERNAL MODULE: ./src/core/ui/icon.ts
|
|
6943
7312
|
var icon = __webpack_require__(35);
|
|
@@ -7253,7 +7622,7 @@ var get_control_type = __webpack_require__(38);
|
|
|
7253
7622
|
var config = __webpack_require__(1);
|
|
7254
7623
|
// EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
|
|
7255
7624
|
var checker = __webpack_require__(19);
|
|
7256
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
7625
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
7257
7626
|
var helpers = __webpack_require__(8);
|
|
7258
7627
|
;// CONCATENATED MODULE: ./src/core/ui/helpers/get-strong-control-types.ts
|
|
7259
7628
|
/*!
|
|
@@ -7415,8 +7784,9 @@ UIList = (0,tslib_es6/* __decorate */.gn)([
|
|
|
7415
7784
|
|
|
7416
7785
|
function getControlType(button, controls) {
|
|
7417
7786
|
let buttonControl;
|
|
7418
|
-
if (!controls)
|
|
7787
|
+
if (!controls) {
|
|
7419
7788
|
controls = _config__WEBPACK_IMPORTED_MODULE_1__/* .Config.defaultOptions.controls */ .D.defaultOptions.controls;
|
|
7789
|
+
}
|
|
7420
7790
|
if (!(0,_helpers__WEBPACK_IMPORTED_MODULE_0__.isString)(button)) {
|
|
7421
7791
|
buttonControl = { name: 'empty', ...(0,_helpers__WEBPACK_IMPORTED_MODULE_0__.ConfigFlatten)(button) };
|
|
7422
7792
|
if (controls[buttonControl.name] !== undefined) {
|
|
@@ -7622,15 +7992,22 @@ UISeparator = (0,tslib__WEBPACK_IMPORTED_MODULE_2__/* .__decorate */ .gn)([
|
|
|
7622
7992
|
const isButtonGroup = (item) => {
|
|
7623
7993
|
return (0,_helpers_checker__WEBPACK_IMPORTED_MODULE_0__/* .isArray */ .kJ)(item.buttons);
|
|
7624
7994
|
};
|
|
7625
|
-
|
|
7626
|
-
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
|
|
7632
|
-
|
|
7633
|
-
|
|
7995
|
+
function flatButtonsSet(buttons, jodit) {
|
|
7996
|
+
const groups = jodit.getRegisteredButtonGroups();
|
|
7997
|
+
return new Set(buttons.reduce((acc, item) => {
|
|
7998
|
+
var _a;
|
|
7999
|
+
if (isButtonGroup(item)) {
|
|
8000
|
+
acc = acc.concat([
|
|
8001
|
+
...item.buttons,
|
|
8002
|
+
...((_a = groups[item.group]) !== null && _a !== void 0 ? _a : [])
|
|
8003
|
+
]);
|
|
8004
|
+
}
|
|
8005
|
+
else {
|
|
8006
|
+
acc.push(item);
|
|
8007
|
+
}
|
|
8008
|
+
return acc;
|
|
8009
|
+
}, []));
|
|
8010
|
+
}
|
|
7634
8011
|
|
|
7635
8012
|
|
|
7636
8013
|
/***/ }),
|
|
@@ -7648,7 +8025,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
7648
8025
|
var tslib_es6 = __webpack_require__(18);
|
|
7649
8026
|
// EXTERNAL MODULE: ./src/core/dom.ts
|
|
7650
8027
|
var dom = __webpack_require__(15);
|
|
7651
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
8028
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
7652
8029
|
var helpers = __webpack_require__(8);
|
|
7653
8030
|
// EXTERNAL MODULE: ./src/core/global.ts
|
|
7654
8031
|
var global = __webpack_require__(13);
|
|
@@ -7946,7 +8323,7 @@ var tslib_es6 = __webpack_require__(18);
|
|
|
7946
8323
|
var group = __webpack_require__(39);
|
|
7947
8324
|
// EXTERNAL MODULE: ./src/core/ui/element.ts
|
|
7948
8325
|
var ui_element = __webpack_require__(33);
|
|
7949
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
8326
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
7950
8327
|
var helpers = __webpack_require__(8);
|
|
7951
8328
|
// EXTERNAL MODULE: ./src/core/dom.ts
|
|
7952
8329
|
var dom = __webpack_require__(15);
|
|
@@ -12727,7 +13104,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
12727
13104
|
"IL": function() { return /* reexport */ TabsWidget; }
|
|
12728
13105
|
});
|
|
12729
13106
|
|
|
12730
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
13107
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
12731
13108
|
var helpers = __webpack_require__(8);
|
|
12732
13109
|
// EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
|
|
12733
13110
|
var ui = __webpack_require__(32);
|
|
@@ -13305,484 +13682,490 @@ const cmd = (control) => control.args && (0,_core_helpers_checker__WEBPACK_IMPOR
|
|
|
13305
13682
|
/* 70 */
|
|
13306
13683
|
/***/ (function(module) {
|
|
13307
13684
|
|
|
13308
|
-
module.exports = "<svg viewBox=\"0 0
|
|
13685
|
+
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>"
|
|
13309
13686
|
|
|
13310
13687
|
/***/ }),
|
|
13311
13688
|
/* 71 */
|
|
13312
13689
|
/***/ (function(module) {
|
|
13313
13690
|
|
|
13314
|
-
module.exports = "<svg viewBox=\"0 0
|
|
13691
|
+
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>"
|
|
13315
13692
|
|
|
13316
13693
|
/***/ }),
|
|
13317
13694
|
/* 72 */
|
|
13318
13695
|
/***/ (function(module) {
|
|
13319
13696
|
|
|
13320
|
-
module.exports = "<svg xmlns
|
|
13697
|
+
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>"
|
|
13321
13698
|
|
|
13322
13699
|
/***/ }),
|
|
13323
13700
|
/* 73 */
|
|
13324
13701
|
/***/ (function(module) {
|
|
13325
13702
|
|
|
13326
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0
|
|
13703
|
+
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>"
|
|
13327
13704
|
|
|
13328
13705
|
/***/ }),
|
|
13329
13706
|
/* 74 */
|
|
13330
13707
|
/***/ (function(module) {
|
|
13331
13708
|
|
|
13332
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13709
|
+
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>"
|
|
13333
13710
|
|
|
13334
13711
|
/***/ }),
|
|
13335
13712
|
/* 75 */
|
|
13336
13713
|
/***/ (function(module) {
|
|
13337
13714
|
|
|
13338
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13715
|
+
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>"
|
|
13339
13716
|
|
|
13340
13717
|
/***/ }),
|
|
13341
13718
|
/* 76 */
|
|
13342
13719
|
/***/ (function(module) {
|
|
13343
13720
|
|
|
13344
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13721
|
+
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>"
|
|
13345
13722
|
|
|
13346
13723
|
/***/ }),
|
|
13347
13724
|
/* 77 */
|
|
13348
13725
|
/***/ (function(module) {
|
|
13349
13726
|
|
|
13350
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13727
|
+
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>"
|
|
13351
13728
|
|
|
13352
13729
|
/***/ }),
|
|
13353
13730
|
/* 78 */
|
|
13354
13731
|
/***/ (function(module) {
|
|
13355
13732
|
|
|
13356
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13733
|
+
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>"
|
|
13357
13734
|
|
|
13358
13735
|
/***/ }),
|
|
13359
13736
|
/* 79 */
|
|
13360
13737
|
/***/ (function(module) {
|
|
13361
13738
|
|
|
13362
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13739
|
+
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>"
|
|
13363
13740
|
|
|
13364
13741
|
/***/ }),
|
|
13365
13742
|
/* 80 */
|
|
13366
13743
|
/***/ (function(module) {
|
|
13367
13744
|
|
|
13368
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13745
|
+
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>"
|
|
13369
13746
|
|
|
13370
13747
|
/***/ }),
|
|
13371
13748
|
/* 81 */
|
|
13372
13749
|
/***/ (function(module) {
|
|
13373
13750
|
|
|
13374
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13751
|
+
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>"
|
|
13375
13752
|
|
|
13376
13753
|
/***/ }),
|
|
13377
13754
|
/* 82 */
|
|
13378
13755
|
/***/ (function(module) {
|
|
13379
13756
|
|
|
13380
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13757
|
+
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>"
|
|
13381
13758
|
|
|
13382
13759
|
/***/ }),
|
|
13383
13760
|
/* 83 */
|
|
13384
13761
|
/***/ (function(module) {
|
|
13385
13762
|
|
|
13386
|
-
module.exports = "<svg
|
|
13763
|
+
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>"
|
|
13387
13764
|
|
|
13388
13765
|
/***/ }),
|
|
13389
13766
|
/* 84 */
|
|
13390
13767
|
/***/ (function(module) {
|
|
13391
13768
|
|
|
13392
|
-
module.exports = "<svg xmlns
|
|
13769
|
+
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>"
|
|
13393
13770
|
|
|
13394
13771
|
/***/ }),
|
|
13395
13772
|
/* 85 */
|
|
13396
13773
|
/***/ (function(module) {
|
|
13397
13774
|
|
|
13398
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13775
|
+
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>"
|
|
13399
13776
|
|
|
13400
13777
|
/***/ }),
|
|
13401
13778
|
/* 86 */
|
|
13402
13779
|
/***/ (function(module) {
|
|
13403
13780
|
|
|
13404
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13781
|
+
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>"
|
|
13405
13782
|
|
|
13406
13783
|
/***/ }),
|
|
13407
13784
|
/* 87 */
|
|
13408
13785
|
/***/ (function(module) {
|
|
13409
13786
|
|
|
13410
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"
|
|
13787
|
+
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>"
|
|
13411
13788
|
|
|
13412
13789
|
/***/ }),
|
|
13413
13790
|
/* 88 */
|
|
13414
13791
|
/***/ (function(module) {
|
|
13415
13792
|
|
|
13416
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0
|
|
13793
|
+
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>"
|
|
13417
13794
|
|
|
13418
13795
|
/***/ }),
|
|
13419
13796
|
/* 89 */
|
|
13420
13797
|
/***/ (function(module) {
|
|
13421
13798
|
|
|
13422
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0
|
|
13799
|
+
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>"
|
|
13423
13800
|
|
|
13424
13801
|
/***/ }),
|
|
13425
13802
|
/* 90 */
|
|
13426
13803
|
/***/ (function(module) {
|
|
13427
13804
|
|
|
13428
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0
|
|
13805
|
+
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>"
|
|
13429
13806
|
|
|
13430
13807
|
/***/ }),
|
|
13431
13808
|
/* 91 */
|
|
13432
13809
|
/***/ (function(module) {
|
|
13433
13810
|
|
|
13434
|
-
module.exports = "<svg
|
|
13811
|
+
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>"
|
|
13435
13812
|
|
|
13436
13813
|
/***/ }),
|
|
13437
13814
|
/* 92 */
|
|
13438
13815
|
/***/ (function(module) {
|
|
13439
13816
|
|
|
13440
|
-
module.exports = "<svg xmlns
|
|
13817
|
+
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>"
|
|
13441
13818
|
|
|
13442
13819
|
/***/ }),
|
|
13443
13820
|
/* 93 */
|
|
13444
13821
|
/***/ (function(module) {
|
|
13445
13822
|
|
|
13446
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"
|
|
13823
|
+
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>"
|
|
13447
13824
|
|
|
13448
13825
|
/***/ }),
|
|
13449
13826
|
/* 94 */
|
|
13450
13827
|
/***/ (function(module) {
|
|
13451
13828
|
|
|
13452
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0
|
|
13829
|
+
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>"
|
|
13453
13830
|
|
|
13454
13831
|
/***/ }),
|
|
13455
13832
|
/* 95 */
|
|
13456
13833
|
/***/ (function(module) {
|
|
13457
13834
|
|
|
13458
|
-
module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0
|
|
13835
|
+
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>"
|
|
13459
13836
|
|
|
13460
13837
|
/***/ }),
|
|
13461
13838
|
/* 96 */
|
|
13462
13839
|
/***/ (function(module) {
|
|
13463
13840
|
|
|
13841
|
+
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>"
|
|
13842
|
+
|
|
13843
|
+
/***/ }),
|
|
13844
|
+
/* 97 */
|
|
13845
|
+
/***/ (function(module) {
|
|
13846
|
+
|
|
13464
13847
|
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>"
|
|
13465
13848
|
|
|
13466
13849
|
/***/ }),
|
|
13467
|
-
/*
|
|
13850
|
+
/* 98 */
|
|
13468
13851
|
/***/ (function(module) {
|
|
13469
13852
|
|
|
13470
13853
|
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>"
|
|
13471
13854
|
|
|
13472
13855
|
/***/ }),
|
|
13473
|
-
/*
|
|
13856
|
+
/* 99 */
|
|
13474
13857
|
/***/ (function(module) {
|
|
13475
13858
|
|
|
13476
13859
|
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>"
|
|
13477
13860
|
|
|
13478
13861
|
/***/ }),
|
|
13479
|
-
/*
|
|
13862
|
+
/* 100 */
|
|
13480
13863
|
/***/ (function(module) {
|
|
13481
13864
|
|
|
13482
13865
|
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>"
|
|
13483
13866
|
|
|
13484
13867
|
/***/ }),
|
|
13485
|
-
/*
|
|
13868
|
+
/* 101 */
|
|
13486
13869
|
/***/ (function(module) {
|
|
13487
13870
|
|
|
13488
13871
|
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>"
|
|
13489
13872
|
|
|
13490
13873
|
/***/ }),
|
|
13491
|
-
/*
|
|
13874
|
+
/* 102 */
|
|
13492
13875
|
/***/ (function(module) {
|
|
13493
13876
|
|
|
13494
13877
|
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>"
|
|
13495
13878
|
|
|
13496
13879
|
/***/ }),
|
|
13497
|
-
/*
|
|
13880
|
+
/* 103 */
|
|
13498
13881
|
/***/ (function(module) {
|
|
13499
13882
|
|
|
13500
13883
|
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>"
|
|
13501
13884
|
|
|
13502
13885
|
/***/ }),
|
|
13503
|
-
/*
|
|
13886
|
+
/* 104 */
|
|
13504
13887
|
/***/ (function(module) {
|
|
13505
13888
|
|
|
13506
13889
|
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>"
|
|
13507
13890
|
|
|
13508
13891
|
/***/ }),
|
|
13509
|
-
/*
|
|
13892
|
+
/* 105 */
|
|
13510
13893
|
/***/ (function(module) {
|
|
13511
13894
|
|
|
13512
13895
|
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>"
|
|
13513
13896
|
|
|
13514
13897
|
/***/ }),
|
|
13515
|
-
/*
|
|
13898
|
+
/* 106 */
|
|
13516
13899
|
/***/ (function(module) {
|
|
13517
13900
|
|
|
13518
13901
|
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>"
|
|
13519
13902
|
|
|
13520
13903
|
/***/ }),
|
|
13521
|
-
/*
|
|
13904
|
+
/* 107 */
|
|
13522
13905
|
/***/ (function(module) {
|
|
13523
13906
|
|
|
13524
13907
|
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>"
|
|
13525
13908
|
|
|
13526
13909
|
/***/ }),
|
|
13527
|
-
/*
|
|
13910
|
+
/* 108 */
|
|
13528
13911
|
/***/ (function(module) {
|
|
13529
13912
|
|
|
13530
13913
|
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>"
|
|
13531
13914
|
|
|
13532
13915
|
/***/ }),
|
|
13533
|
-
/*
|
|
13916
|
+
/* 109 */
|
|
13534
13917
|
/***/ (function(module) {
|
|
13535
13918
|
|
|
13536
13919
|
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>"
|
|
13537
13920
|
|
|
13538
13921
|
/***/ }),
|
|
13539
|
-
/*
|
|
13922
|
+
/* 110 */
|
|
13540
13923
|
/***/ (function(module) {
|
|
13541
13924
|
|
|
13542
13925
|
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>"
|
|
13543
13926
|
|
|
13544
13927
|
/***/ }),
|
|
13545
|
-
/*
|
|
13928
|
+
/* 111 */
|
|
13546
13929
|
/***/ (function(module) {
|
|
13547
13930
|
|
|
13548
13931
|
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>"
|
|
13549
13932
|
|
|
13550
13933
|
/***/ }),
|
|
13551
|
-
/*
|
|
13934
|
+
/* 112 */
|
|
13552
13935
|
/***/ (function(module) {
|
|
13553
13936
|
|
|
13554
13937
|
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>"
|
|
13555
13938
|
|
|
13556
13939
|
/***/ }),
|
|
13557
|
-
/*
|
|
13940
|
+
/* 113 */
|
|
13558
13941
|
/***/ (function(module) {
|
|
13559
13942
|
|
|
13560
13943
|
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>"
|
|
13561
13944
|
|
|
13562
13945
|
/***/ }),
|
|
13563
|
-
/*
|
|
13946
|
+
/* 114 */
|
|
13564
13947
|
/***/ (function(module) {
|
|
13565
13948
|
|
|
13566
13949
|
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>"
|
|
13567
13950
|
|
|
13568
13951
|
/***/ }),
|
|
13569
|
-
/*
|
|
13952
|
+
/* 115 */
|
|
13570
13953
|
/***/ (function(module) {
|
|
13571
13954
|
|
|
13572
13955
|
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>"
|
|
13573
13956
|
|
|
13574
13957
|
/***/ }),
|
|
13575
|
-
/*
|
|
13958
|
+
/* 116 */
|
|
13576
13959
|
/***/ (function(module) {
|
|
13577
13960
|
|
|
13578
13961
|
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>"
|
|
13579
13962
|
|
|
13580
13963
|
/***/ }),
|
|
13581
|
-
/*
|
|
13964
|
+
/* 117 */
|
|
13582
13965
|
/***/ (function(module) {
|
|
13583
13966
|
|
|
13584
13967
|
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>"
|
|
13585
13968
|
|
|
13586
13969
|
/***/ }),
|
|
13587
|
-
/*
|
|
13970
|
+
/* 118 */
|
|
13588
13971
|
/***/ (function(module) {
|
|
13589
13972
|
|
|
13590
13973
|
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>"
|
|
13591
13974
|
|
|
13592
13975
|
/***/ }),
|
|
13593
|
-
/*
|
|
13976
|
+
/* 119 */
|
|
13594
13977
|
/***/ (function(module) {
|
|
13595
13978
|
|
|
13596
13979
|
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>"
|
|
13597
13980
|
|
|
13598
13981
|
/***/ }),
|
|
13599
|
-
/*
|
|
13982
|
+
/* 120 */
|
|
13600
13983
|
/***/ (function(module) {
|
|
13601
13984
|
|
|
13602
13985
|
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>"
|
|
13603
13986
|
|
|
13604
13987
|
/***/ }),
|
|
13605
|
-
/*
|
|
13988
|
+
/* 121 */
|
|
13606
13989
|
/***/ (function(module) {
|
|
13607
13990
|
|
|
13608
13991
|
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>"
|
|
13609
13992
|
|
|
13610
13993
|
/***/ }),
|
|
13611
|
-
/*
|
|
13994
|
+
/* 122 */
|
|
13612
13995
|
/***/ (function(module) {
|
|
13613
13996
|
|
|
13614
13997
|
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>"
|
|
13615
13998
|
|
|
13616
13999
|
/***/ }),
|
|
13617
|
-
/*
|
|
14000
|
+
/* 123 */
|
|
13618
14001
|
/***/ (function(module) {
|
|
13619
14002
|
|
|
13620
14003
|
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>"
|
|
13621
14004
|
|
|
13622
14005
|
/***/ }),
|
|
13623
|
-
/*
|
|
14006
|
+
/* 124 */
|
|
13624
14007
|
/***/ (function(module) {
|
|
13625
14008
|
|
|
13626
14009
|
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>"
|
|
13627
14010
|
|
|
13628
14011
|
/***/ }),
|
|
13629
|
-
/*
|
|
14012
|
+
/* 125 */
|
|
13630
14013
|
/***/ (function(module) {
|
|
13631
14014
|
|
|
13632
14015
|
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>"
|
|
13633
14016
|
|
|
13634
14017
|
/***/ }),
|
|
13635
|
-
/*
|
|
14018
|
+
/* 126 */
|
|
13636
14019
|
/***/ (function(module) {
|
|
13637
14020
|
|
|
13638
14021
|
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>"
|
|
13639
14022
|
|
|
13640
14023
|
/***/ }),
|
|
13641
|
-
/*
|
|
14024
|
+
/* 127 */
|
|
13642
14025
|
/***/ (function(module) {
|
|
13643
14026
|
|
|
13644
14027
|
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>"
|
|
13645
14028
|
|
|
13646
14029
|
/***/ }),
|
|
13647
|
-
/*
|
|
14030
|
+
/* 128 */
|
|
13648
14031
|
/***/ (function(module) {
|
|
13649
14032
|
|
|
13650
14033
|
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>"
|
|
13651
14034
|
|
|
13652
14035
|
/***/ }),
|
|
13653
|
-
/*
|
|
14036
|
+
/* 129 */
|
|
13654
14037
|
/***/ (function(module) {
|
|
13655
14038
|
|
|
13656
14039
|
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>"
|
|
13657
14040
|
|
|
13658
14041
|
/***/ }),
|
|
13659
|
-
/*
|
|
14042
|
+
/* 130 */
|
|
13660
14043
|
/***/ (function(module) {
|
|
13661
14044
|
|
|
13662
14045
|
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>"
|
|
13663
14046
|
|
|
13664
14047
|
/***/ }),
|
|
13665
|
-
/*
|
|
14048
|
+
/* 131 */
|
|
13666
14049
|
/***/ (function(module) {
|
|
13667
14050
|
|
|
13668
14051
|
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>"
|
|
13669
14052
|
|
|
13670
14053
|
/***/ }),
|
|
13671
|
-
/*
|
|
14054
|
+
/* 132 */
|
|
13672
14055
|
/***/ (function(module) {
|
|
13673
14056
|
|
|
13674
14057
|
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>"
|
|
13675
14058
|
|
|
13676
14059
|
/***/ }),
|
|
13677
|
-
/*
|
|
14060
|
+
/* 133 */
|
|
13678
14061
|
/***/ (function(module) {
|
|
13679
14062
|
|
|
13680
14063
|
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>"
|
|
13681
14064
|
|
|
13682
14065
|
/***/ }),
|
|
13683
|
-
/*
|
|
14066
|
+
/* 134 */
|
|
13684
14067
|
/***/ (function(module) {
|
|
13685
14068
|
|
|
13686
14069
|
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>"
|
|
13687
14070
|
|
|
13688
14071
|
/***/ }),
|
|
13689
|
-
/*
|
|
14072
|
+
/* 135 */
|
|
13690
14073
|
/***/ (function(module) {
|
|
13691
14074
|
|
|
13692
14075
|
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>"
|
|
13693
14076
|
|
|
13694
14077
|
/***/ }),
|
|
13695
|
-
/*
|
|
14078
|
+
/* 136 */
|
|
13696
14079
|
/***/ (function(module) {
|
|
13697
14080
|
|
|
13698
14081
|
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>"
|
|
13699
14082
|
|
|
13700
14083
|
/***/ }),
|
|
13701
|
-
/*
|
|
14084
|
+
/* 137 */
|
|
13702
14085
|
/***/ (function(module) {
|
|
13703
14086
|
|
|
13704
14087
|
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>"
|
|
13705
14088
|
|
|
13706
14089
|
/***/ }),
|
|
13707
|
-
/*
|
|
14090
|
+
/* 138 */
|
|
13708
14091
|
/***/ (function(module) {
|
|
13709
14092
|
|
|
13710
14093
|
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>"
|
|
13711
14094
|
|
|
13712
14095
|
/***/ }),
|
|
13713
|
-
/*
|
|
14096
|
+
/* 139 */
|
|
13714
14097
|
/***/ (function(module) {
|
|
13715
14098
|
|
|
13716
14099
|
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>"
|
|
13717
14100
|
|
|
13718
14101
|
/***/ }),
|
|
13719
|
-
/*
|
|
14102
|
+
/* 140 */
|
|
13720
14103
|
/***/ (function(module) {
|
|
13721
14104
|
|
|
13722
14105
|
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>"
|
|
13723
14106
|
|
|
13724
14107
|
/***/ }),
|
|
13725
|
-
/*
|
|
14108
|
+
/* 141 */
|
|
13726
14109
|
/***/ (function(module) {
|
|
13727
14110
|
|
|
13728
14111
|
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>"
|
|
13729
14112
|
|
|
13730
14113
|
/***/ }),
|
|
13731
|
-
/*
|
|
14114
|
+
/* 142 */
|
|
13732
14115
|
/***/ (function(module) {
|
|
13733
14116
|
|
|
13734
14117
|
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>"
|
|
13735
14118
|
|
|
13736
14119
|
/***/ }),
|
|
13737
|
-
/*
|
|
14120
|
+
/* 143 */
|
|
13738
14121
|
/***/ (function(module) {
|
|
13739
14122
|
|
|
13740
14123
|
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>"
|
|
13741
14124
|
|
|
13742
14125
|
/***/ }),
|
|
13743
|
-
/*
|
|
14126
|
+
/* 144 */
|
|
13744
14127
|
/***/ (function(module) {
|
|
13745
14128
|
|
|
13746
14129
|
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>"
|
|
13747
14130
|
|
|
13748
14131
|
/***/ }),
|
|
13749
|
-
/*
|
|
14132
|
+
/* 145 */
|
|
13750
14133
|
/***/ (function(module) {
|
|
13751
14134
|
|
|
13752
14135
|
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>"
|
|
13753
14136
|
|
|
13754
14137
|
/***/ }),
|
|
13755
|
-
/*
|
|
14138
|
+
/* 146 */
|
|
13756
14139
|
/***/ (function(module) {
|
|
13757
14140
|
|
|
13758
14141
|
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>"
|
|
13759
14142
|
|
|
13760
14143
|
/***/ }),
|
|
13761
|
-
/*
|
|
14144
|
+
/* 147 */
|
|
13762
14145
|
/***/ (function(module) {
|
|
13763
14146
|
|
|
13764
14147
|
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>"
|
|
13765
14148
|
|
|
13766
14149
|
/***/ }),
|
|
13767
|
-
/*
|
|
14150
|
+
/* 148 */
|
|
13768
14151
|
/***/ (function(module) {
|
|
13769
14152
|
|
|
13770
14153
|
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>"
|
|
13771
14154
|
|
|
13772
14155
|
/***/ }),
|
|
13773
|
-
/*
|
|
14156
|
+
/* 149 */
|
|
13774
14157
|
/***/ (function(module) {
|
|
13775
14158
|
|
|
13776
14159
|
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>"
|
|
13777
14160
|
|
|
13778
14161
|
/***/ }),
|
|
13779
|
-
/*
|
|
14162
|
+
/* 150 */
|
|
13780
14163
|
/***/ (function(module) {
|
|
13781
14164
|
|
|
13782
14165
|
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>"
|
|
13783
14166
|
|
|
13784
14167
|
/***/ }),
|
|
13785
|
-
/*
|
|
14168
|
+
/* 151 */
|
|
13786
14169
|
/***/ (function(module) {
|
|
13787
14170
|
|
|
13788
14171
|
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>"
|
|
@@ -13863,13 +14246,14 @@ __webpack_require__.d(modules_namespaceObject, {
|
|
|
13863
14246
|
"Ajax": function() { return Ajax; },
|
|
13864
14247
|
"Alert": function() { return Alert; },
|
|
13865
14248
|
"Async": function() { return Async; },
|
|
13866
|
-
"CommitStyle": function() { return selection/* CommitStyle */.
|
|
14249
|
+
"CommitStyle": function() { return selection/* CommitStyle */.RP; },
|
|
13867
14250
|
"Component": function() { return component/* Component */.wA; },
|
|
13868
14251
|
"Confirm": function() { return Confirm; },
|
|
13869
14252
|
"ContextMenu": function() { return ContextMenu; },
|
|
13870
14253
|
"Create": function() { return Create; },
|
|
13871
14254
|
"Dialog": function() { return Dialog; },
|
|
13872
14255
|
"Dom": function() { return dom/* Dom */.i; },
|
|
14256
|
+
"EventEmitter": function() { return events/* EventEmitter */.vp; },
|
|
13873
14257
|
"EventHandlersStore": function() { return events/* EventHandlersStore */.DG; },
|
|
13874
14258
|
"EventsNative": function() { return events/* EventsNative */.ng; },
|
|
13875
14259
|
"FileBrowser": function() { return FileBrowser; },
|
|
@@ -13883,8 +14267,9 @@ __webpack_require__.d(modules_namespaceObject, {
|
|
|
13883
14267
|
"Popup": function() { return ui/* Popup */.GI; },
|
|
13884
14268
|
"ProgressBar": function() { return ui/* ProgressBar */.ko; },
|
|
13885
14269
|
"Prompt": function() { return Prompt; },
|
|
14270
|
+
"Response": function() { return response_Response; },
|
|
13886
14271
|
"STATUSES": function() { return component/* STATUSES */.n$; },
|
|
13887
|
-
"Select": function() { return selection/* Select */.
|
|
14272
|
+
"Select": function() { return selection/* Select */.Ph; },
|
|
13888
14273
|
"Snapshot": function() { return Snapshot; },
|
|
13889
14274
|
"StatusBar": function() { return StatusBar; },
|
|
13890
14275
|
"Table": function() { return Table; },
|
|
@@ -13950,6 +14335,7 @@ __webpack_require__.d(plugins_namespaceObject, {
|
|
|
13950
14335
|
"paste": function() { return paste; },
|
|
13951
14336
|
"pasteStorage": function() { return pasteStorage; },
|
|
13952
14337
|
"placeholder": function() { return placeholder; },
|
|
14338
|
+
"poweredByJodit": function() { return poweredByJodit; },
|
|
13953
14339
|
"preview": function() { return preview; },
|
|
13954
14340
|
"print": function() { return print; },
|
|
13955
14341
|
"redoUndo": function() { return redoUndo; },
|
|
@@ -14066,7 +14452,7 @@ var config = __webpack_require__(1);
|
|
|
14066
14452
|
var constants = __webpack_require__(2);
|
|
14067
14453
|
// EXTERNAL MODULE: ./src/core/events/index.ts + 3 modules
|
|
14068
14454
|
var events = __webpack_require__(3);
|
|
14069
|
-
// EXTERNAL MODULE: ./src/core/helpers/index.ts +
|
|
14455
|
+
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
14070
14456
|
var helpers = __webpack_require__(8);
|
|
14071
14457
|
;// CONCATENATED MODULE: ./src/core/async.ts
|
|
14072
14458
|
/*!
|
|
@@ -14231,7 +14617,7 @@ class Async {
|
|
|
14231
14617
|
return request;
|
|
14232
14618
|
}
|
|
14233
14619
|
requestIdlePromise() {
|
|
14234
|
-
return
|
|
14620
|
+
return this.promise(res => {
|
|
14235
14621
|
const request = this.requestIdleCallback(() => res(request));
|
|
14236
14622
|
});
|
|
14237
14623
|
}
|
|
@@ -14258,15 +14644,39 @@ class Async {
|
|
|
14258
14644
|
}
|
|
14259
14645
|
}
|
|
14260
14646
|
|
|
14261
|
-
;// CONCATENATED MODULE: ./src/core/
|
|
14647
|
+
;// CONCATENATED MODULE: ./src/core/request/response.ts
|
|
14262
14648
|
/*!
|
|
14263
14649
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14264
14650
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14265
14651
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14266
14652
|
*/
|
|
14653
|
+
class response_Response {
|
|
14654
|
+
constructor(request, status, statusText, body) {
|
|
14655
|
+
this.request = request;
|
|
14656
|
+
this.status = status;
|
|
14657
|
+
this.statusText = statusText;
|
|
14658
|
+
this.body = body;
|
|
14659
|
+
}
|
|
14660
|
+
get url() {
|
|
14661
|
+
return this.request.url;
|
|
14662
|
+
}
|
|
14663
|
+
async json() {
|
|
14664
|
+
return JSON.parse(this.body);
|
|
14665
|
+
}
|
|
14666
|
+
text() {
|
|
14667
|
+
return Promise.resolve(this.body);
|
|
14668
|
+
}
|
|
14669
|
+
}
|
|
14267
14670
|
|
|
14671
|
+
;// CONCATENATED MODULE: ./src/core/request/config.ts
|
|
14672
|
+
/*!
|
|
14673
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14674
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14675
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14676
|
+
*/
|
|
14268
14677
|
|
|
14269
14678
|
config/* Config.prototype.defaultAjaxOptions */.D.prototype.defaultAjaxOptions = {
|
|
14679
|
+
successStatuses: [200, 201, 202],
|
|
14270
14680
|
dataType: 'json',
|
|
14271
14681
|
method: 'GET',
|
|
14272
14682
|
url: '',
|
|
@@ -14280,19 +14690,25 @@ config/* Config.prototype.defaultAjaxOptions */.D.prototype.defaultAjaxOptions =
|
|
|
14280
14690
|
return new XMLHttpRequest();
|
|
14281
14691
|
}
|
|
14282
14692
|
};
|
|
14693
|
+
|
|
14694
|
+
;// CONCATENATED MODULE: ./src/core/request/ajax.ts
|
|
14695
|
+
/*!
|
|
14696
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14697
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14698
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14699
|
+
*/
|
|
14700
|
+
|
|
14701
|
+
|
|
14702
|
+
|
|
14703
|
+
|
|
14283
14704
|
class Ajax {
|
|
14284
14705
|
constructor(jodit, options) {
|
|
14285
14706
|
this.jodit = jodit;
|
|
14286
|
-
this.success_response_codes = [200, 201, 202];
|
|
14287
14707
|
this.resolved = false;
|
|
14288
14708
|
this.activated = false;
|
|
14289
14709
|
this.options = (0,helpers.ConfigProto)(options || {}, config/* Config.prototype.defaultAjaxOptions */.D.prototype.defaultAjaxOptions);
|
|
14290
14710
|
this.xhr = this.o.xhr ? this.o.xhr() : new XMLHttpRequest();
|
|
14291
|
-
jodit &&
|
|
14292
|
-
jodit.events &&
|
|
14293
|
-
jodit.e.on('beforeDestruct', () => {
|
|
14294
|
-
this.abort();
|
|
14295
|
-
});
|
|
14711
|
+
jodit && jodit.e && jodit.e.on('beforeDestruct', () => this.destruct());
|
|
14296
14712
|
}
|
|
14297
14713
|
__buildParams(obj, prefix) {
|
|
14298
14714
|
if ((0,helpers.isFunction)(this.o.queryBuild)) {
|
|
@@ -14320,33 +14736,22 @@ class Ajax {
|
|
|
14320
14736
|
}
|
|
14321
14737
|
send() {
|
|
14322
14738
|
this.activated = true;
|
|
14323
|
-
|
|
14324
|
-
|
|
14325
|
-
|
|
14326
|
-
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
if (!result) {
|
|
14330
|
-
throw (0,helpers.error)('No JSON format');
|
|
14331
|
-
}
|
|
14332
|
-
return result;
|
|
14333
|
-
};
|
|
14334
|
-
this.xhr.onabort = () => {
|
|
14335
|
-
reject((0,helpers.error)(this.xhr.statusText));
|
|
14336
|
-
};
|
|
14337
|
-
this.xhr.onerror = () => {
|
|
14338
|
-
reject((0,helpers.error)(this.xhr.statusText));
|
|
14339
|
-
};
|
|
14340
|
-
this.xhr.ontimeout = () => {
|
|
14341
|
-
reject((0,helpers.error)(this.xhr.statusText));
|
|
14739
|
+
const { xhr, o } = this;
|
|
14740
|
+
const request = this.prepareRequest();
|
|
14741
|
+
return this.j.async.promise((resolve, reject) => {
|
|
14742
|
+
var _a;
|
|
14743
|
+
const onReject = () => {
|
|
14744
|
+
reject((0,helpers.error)('Connection error'));
|
|
14342
14745
|
};
|
|
14343
|
-
|
|
14344
|
-
this.response = this.xhr.responseText;
|
|
14345
|
-
this.status = this.xhr.status;
|
|
14746
|
+
const onResolve = () => {
|
|
14346
14747
|
this.resolved = true;
|
|
14347
|
-
resolve
|
|
14748
|
+
resolve(new response_Response(request, xhr.status, xhr.statusText, xhr.responseText));
|
|
14348
14749
|
};
|
|
14349
|
-
|
|
14750
|
+
xhr.onabort = onReject;
|
|
14751
|
+
xhr.onerror = onReject;
|
|
14752
|
+
xhr.ontimeout = onReject;
|
|
14753
|
+
xhr.onload = onResolve;
|
|
14754
|
+
xhr.onprogress = (e) => {
|
|
14350
14755
|
var _a, _b;
|
|
14351
14756
|
let percentComplete = 0;
|
|
14352
14757
|
if (e.lengthComputable) {
|
|
@@ -14354,36 +14759,32 @@ class Ajax {
|
|
|
14354
14759
|
}
|
|
14355
14760
|
(_b = (_a = this.options).onProgress) === null || _b === void 0 ? void 0 : _b.call(_a, percentComplete);
|
|
14356
14761
|
};
|
|
14357
|
-
|
|
14762
|
+
xhr.onreadystatechange = () => {
|
|
14358
14763
|
var _a, _b;
|
|
14359
14764
|
(_b = (_a = this.options).onProgress) === null || _b === void 0 ? void 0 : _b.call(_a, 10);
|
|
14360
|
-
if (
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
this.status = this.xhr.status;
|
|
14364
|
-
this.resolved = true;
|
|
14365
|
-
if (this.success_response_codes.indexOf(this.xhr.status) > -1) {
|
|
14366
|
-
resolve.call(this.xhr, __parse(resp));
|
|
14765
|
+
if (xhr.readyState === XMLHttpRequest.DONE) {
|
|
14766
|
+
if (o.successStatuses.includes(xhr.status)) {
|
|
14767
|
+
onResolve();
|
|
14367
14768
|
}
|
|
14368
14769
|
else {
|
|
14369
|
-
reject
|
|
14370
|
-
this.j.i18n('Connection error!')));
|
|
14770
|
+
reject((0,helpers.error)(xhr.statusText || 'Connection error'));
|
|
14371
14771
|
}
|
|
14372
14772
|
}
|
|
14373
14773
|
};
|
|
14374
|
-
|
|
14375
|
-
const { url, data, method } =
|
|
14376
|
-
|
|
14377
|
-
if (
|
|
14378
|
-
|
|
14379
|
-
}
|
|
14380
|
-
|
|
14381
|
-
|
|
14382
|
-
|
|
14774
|
+
xhr.withCredentials = (_a = o.withCredentials) !== null && _a !== void 0 ? _a : false;
|
|
14775
|
+
const { url, data, method } = request;
|
|
14776
|
+
xhr.open(method, url, true);
|
|
14777
|
+
if (o.contentType && xhr.setRequestHeader) {
|
|
14778
|
+
xhr.setRequestHeader('Content-type', o.contentType);
|
|
14779
|
+
}
|
|
14780
|
+
const { headers } = o;
|
|
14781
|
+
if (headers && xhr.setRequestHeader) {
|
|
14782
|
+
Object.keys(headers).forEach(key => {
|
|
14783
|
+
xhr.setRequestHeader(key, headers[key]);
|
|
14383
14784
|
});
|
|
14384
14785
|
}
|
|
14385
|
-
setTimeout(() => {
|
|
14386
|
-
|
|
14786
|
+
this.j.async.setTimeout(() => {
|
|
14787
|
+
xhr.send(data ? this.__buildParams(data) : undefined);
|
|
14387
14788
|
}, 0);
|
|
14388
14789
|
});
|
|
14389
14790
|
}
|
|
@@ -14425,6 +14826,15 @@ class Ajax {
|
|
|
14425
14826
|
}
|
|
14426
14827
|
Ajax.log = [];
|
|
14427
14828
|
|
|
14829
|
+
;// CONCATENATED MODULE: ./src/core/request/index.ts
|
|
14830
|
+
/*!
|
|
14831
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
14832
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
14833
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
14834
|
+
*/
|
|
14835
|
+
|
|
14836
|
+
|
|
14837
|
+
|
|
14428
14838
|
// EXTERNAL MODULE: ./src/core/component/index.ts + 3 modules
|
|
14429
14839
|
var component = __webpack_require__(12);
|
|
14430
14840
|
// EXTERNAL MODULE: ./src/core/ui/popup/index.ts + 1 modules
|
|
@@ -14448,7 +14858,7 @@ class ContextMenu extends ui_popup/* Popup */.G {
|
|
|
14448
14858
|
return 'ContextMenu';
|
|
14449
14859
|
}
|
|
14450
14860
|
show(x, y, actions) {
|
|
14451
|
-
const self = this, content = this.j.c.div('
|
|
14861
|
+
const self = this, content = this.j.c.div(this.getFullElName('actions'));
|
|
14452
14862
|
if (!(0,checker/* isArray */.kJ)(actions)) {
|
|
14453
14863
|
return;
|
|
14454
14864
|
}
|
|
@@ -14647,7 +15057,7 @@ class View extends component/* Component */.wA {
|
|
|
14647
15057
|
this.isView = true;
|
|
14648
15058
|
this.mods = {};
|
|
14649
15059
|
this.components = new Set();
|
|
14650
|
-
this.version = "3.
|
|
15060
|
+
this.version = "3.9.4";
|
|
14651
15061
|
this.async = new Async();
|
|
14652
15062
|
this.buffer = Storage.makeStorage();
|
|
14653
15063
|
this.storage = Storage.makeStorage(true, this.componentName);
|
|
@@ -14660,7 +15070,7 @@ class View extends component/* Component */.wA {
|
|
|
14660
15070
|
this.buffer = Storage.makeStorage();
|
|
14661
15071
|
this.initOptions(options);
|
|
14662
15072
|
this.initOwners();
|
|
14663
|
-
this.events = new events/*
|
|
15073
|
+
this.events = new events/* EventEmitter */.vp(this.od);
|
|
14664
15074
|
this.create = new Create(this.od);
|
|
14665
15075
|
this.container = this.c.div();
|
|
14666
15076
|
this.container.classList.add('jodit');
|
|
@@ -14745,10 +15155,10 @@ class View extends component/* Component */.wA {
|
|
|
14745
15155
|
return this.__isFullSize;
|
|
14746
15156
|
}
|
|
14747
15157
|
getVersion() {
|
|
14748
|
-
return "3.
|
|
15158
|
+
return "3.9.4";
|
|
14749
15159
|
}
|
|
14750
15160
|
static getVersion() {
|
|
14751
|
-
return "3.
|
|
15161
|
+
return "3.9.4";
|
|
14752
15162
|
}
|
|
14753
15163
|
initOptions(options) {
|
|
14754
15164
|
this.options = (0,helpers.ConfigProto)(options || {}, (0,helpers.ConfigProto)(this.options || {}, View.defaultOptions));
|
|
@@ -15442,6 +15852,9 @@ class ViewWithToolbar extends View {
|
|
|
15442
15852
|
.build(buttons.concat(this.o.extraButtons || []))
|
|
15443
15853
|
.appendTo(this.toolbarContainer);
|
|
15444
15854
|
}
|
|
15855
|
+
getRegisteredButtonGroups() {
|
|
15856
|
+
return this.groupToButtons;
|
|
15857
|
+
}
|
|
15445
15858
|
registerButton(btn) {
|
|
15446
15859
|
var _a;
|
|
15447
15860
|
this.registeredButtons.add(btn);
|
|
@@ -16631,7 +17044,7 @@ class DataProvider {
|
|
|
16631
17044
|
get o() {
|
|
16632
17045
|
return this.options;
|
|
16633
17046
|
}
|
|
16634
|
-
get(name
|
|
17047
|
+
get(name) {
|
|
16635
17048
|
const ai = this.ajaxInstances;
|
|
16636
17049
|
if (ai.has(name)) {
|
|
16637
17050
|
const ajax = ai.get(name);
|
|
@@ -16647,25 +17060,21 @@ class DataProvider {
|
|
|
16647
17060
|
opts.data = opts.prepareData.call(this, opts.data);
|
|
16648
17061
|
}
|
|
16649
17062
|
const ajax = new Ajax(this.parent, opts);
|
|
16650
|
-
let promise = ajax.send();
|
|
16651
17063
|
ai.set(name, ajax);
|
|
16652
|
-
promise =
|
|
16653
|
-
|
|
16654
|
-
throw new Error(this.getMessage(resp));
|
|
16655
|
-
}
|
|
16656
|
-
return resp;
|
|
16657
|
-
});
|
|
16658
|
-
if (success) {
|
|
16659
|
-
promise = promise.then(success);
|
|
16660
|
-
}
|
|
16661
|
-
if (error) {
|
|
16662
|
-
promise = promise.catch(error);
|
|
16663
|
-
}
|
|
16664
|
-
return promise.finally(() => {
|
|
17064
|
+
const promise = ajax.send();
|
|
17065
|
+
promise.finally(() => {
|
|
16665
17066
|
ajax.destruct();
|
|
16666
17067
|
ai.delete(name);
|
|
16667
17068
|
this.progressHandler(100);
|
|
16668
17069
|
});
|
|
17070
|
+
return promise
|
|
17071
|
+
.then(resp => resp.json())
|
|
17072
|
+
.then(resp => {
|
|
17073
|
+
if (resp && !this.isSuccess(resp)) {
|
|
17074
|
+
throw new Error(this.getMessage(resp));
|
|
17075
|
+
}
|
|
17076
|
+
return resp;
|
|
17077
|
+
});
|
|
16669
17078
|
}
|
|
16670
17079
|
onProgress(callback) {
|
|
16671
17080
|
this.progressHandler = callback;
|
|
@@ -16767,7 +17176,7 @@ class DataProvider {
|
|
|
16767
17176
|
}
|
|
16768
17177
|
getPathByUrl(url) {
|
|
16769
17178
|
(0,helpers.set)('options.getLocalFileByUrl.data.url', url, this);
|
|
16770
|
-
return this.get('getLocalFileByUrl'
|
|
17179
|
+
return this.get('getLocalFileByUrl').then(resp => {
|
|
16771
17180
|
if (this.isSuccess(resp)) {
|
|
16772
17181
|
return resp.data;
|
|
16773
17182
|
}
|
|
@@ -16819,9 +17228,6 @@ class DataProvider {
|
|
|
16819
17228
|
if (fr.process) {
|
|
16820
17229
|
resp = fr.process.call(this, resp);
|
|
16821
17230
|
}
|
|
16822
|
-
if (!this.isSuccess(resp)) {
|
|
16823
|
-
throw (0,helpers.error)(this.getMessage(resp));
|
|
16824
|
-
}
|
|
16825
17231
|
return this.getMessage(resp);
|
|
16826
17232
|
});
|
|
16827
17233
|
}
|
|
@@ -16844,9 +17250,6 @@ class DataProvider {
|
|
|
16844
17250
|
if (fr.process) {
|
|
16845
17251
|
resp = fr.process.call(self, resp);
|
|
16846
17252
|
}
|
|
16847
|
-
if (!this.isSuccess(resp)) {
|
|
16848
|
-
throw (0,helpers.error)(this.getMessage(resp));
|
|
16849
|
-
}
|
|
16850
17253
|
return this.getMessage(resp);
|
|
16851
17254
|
});
|
|
16852
17255
|
}
|
|
@@ -16875,11 +17278,8 @@ class DataProvider {
|
|
|
16875
17278
|
query.data.path = path;
|
|
16876
17279
|
query.data.name = name;
|
|
16877
17280
|
query.data.source = source;
|
|
16878
|
-
return this.get(type).then(
|
|
16879
|
-
|
|
16880
|
-
return true;
|
|
16881
|
-
}
|
|
16882
|
-
throw (0,helpers.error)(this.getMessage(resp));
|
|
17281
|
+
return this.get(type).then(() => {
|
|
17282
|
+
return true;
|
|
16883
17283
|
});
|
|
16884
17284
|
}
|
|
16885
17285
|
crop(path, source, name, newname, box) {
|
|
@@ -18702,7 +19102,7 @@ class Observer extends component/* ViewComponent */.Hr {
|
|
|
18702
19102
|
(0,decorators.debounce)()
|
|
18703
19103
|
], Observer.prototype, "onChange", null);
|
|
18704
19104
|
|
|
18705
|
-
// EXTERNAL MODULE: ./src/core/selection/index.ts +
|
|
19105
|
+
// EXTERNAL MODULE: ./src/core/selection/index.ts + 19 modules
|
|
18706
19106
|
var selection = __webpack_require__(16);
|
|
18707
19107
|
;// CONCATENATED MODULE: ./src/modules/status-bar/status-bar.ts
|
|
18708
19108
|
/*!
|
|
@@ -18713,10 +19113,12 @@ var selection = __webpack_require__(16);
|
|
|
18713
19113
|
|
|
18714
19114
|
|
|
18715
19115
|
|
|
19116
|
+
|
|
18716
19117
|
class StatusBar extends component/* ViewComponent */.Hr {
|
|
18717
19118
|
constructor(jodit, target) {
|
|
18718
19119
|
super(jodit);
|
|
18719
19120
|
this.target = target;
|
|
19121
|
+
this.mods = {};
|
|
18720
19122
|
this.container = jodit.c.div('jodit-status-bar');
|
|
18721
19123
|
target.appendChild(this.container);
|
|
18722
19124
|
this.hide();
|
|
@@ -18733,6 +19135,13 @@ class StatusBar extends component/* ViewComponent */.Hr {
|
|
|
18733
19135
|
get isShown() {
|
|
18734
19136
|
return !this.container.classList.contains('jodit_hidden');
|
|
18735
19137
|
}
|
|
19138
|
+
setMod(name, value) {
|
|
19139
|
+
traits/* Mods.setMod.call */.$.setMod.call(this, name, value);
|
|
19140
|
+
return this;
|
|
19141
|
+
}
|
|
19142
|
+
getMod(name) {
|
|
19143
|
+
return traits/* Mods.getMod.call */.$.getMod.call(this, name);
|
|
19144
|
+
}
|
|
18736
19145
|
getHeight() {
|
|
18737
19146
|
var _a, _b;
|
|
18738
19147
|
return (_b = (_a = this.container) === null || _a === void 0 ? void 0 : _a.offsetHeight) !== null && _b !== void 0 ? _b : 0;
|
|
@@ -18783,6 +19192,7 @@ class StatusBar extends component/* ViewComponent */.Hr {
|
|
|
18783
19192
|
|
|
18784
19193
|
|
|
18785
19194
|
|
|
19195
|
+
const markedValue = new WeakMap();
|
|
18786
19196
|
class Table extends component/* ViewComponent */.Hr {
|
|
18787
19197
|
constructor() {
|
|
18788
19198
|
super(...arguments);
|
|
@@ -18843,9 +19253,7 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
18843
19253
|
}
|
|
18844
19254
|
static getColumnsCount(table) {
|
|
18845
19255
|
const matrix = Table.formalMatrix(table);
|
|
18846
|
-
return matrix.reduce((max_count, cells) =>
|
|
18847
|
-
return Math.max(max_count, cells.length);
|
|
18848
|
-
}, 0);
|
|
19256
|
+
return matrix.reduce((max_count, cells) => Math.max(max_count, cells.length), 0);
|
|
18849
19257
|
}
|
|
18850
19258
|
static formalMatrix(table, callback) {
|
|
18851
19259
|
const matrix = [[]];
|
|
@@ -18900,6 +19308,7 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
18900
19308
|
return [i, j, width, height];
|
|
18901
19309
|
}
|
|
18902
19310
|
static appendRow(table, line, after, create) {
|
|
19311
|
+
var _a;
|
|
18903
19312
|
let row;
|
|
18904
19313
|
if (!line) {
|
|
18905
19314
|
const columnsCount = Table.getColumnsCount(table);
|
|
@@ -18929,32 +19338,33 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
18929
19338
|
line.parentNode && line.parentNode.insertBefore(row, line);
|
|
18930
19339
|
}
|
|
18931
19340
|
else {
|
|
18932
|
-
((
|
|
19341
|
+
(((_a = table.getElementsByTagName('tbody')) === null || _a === void 0 ? void 0 : _a[0]) || table).appendChild(row);
|
|
18933
19342
|
}
|
|
18934
19343
|
}
|
|
18935
19344
|
static removeRow(table, rowIndex) {
|
|
18936
19345
|
const box = Table.formalMatrix(table);
|
|
18937
19346
|
let dec;
|
|
18938
19347
|
const row = table.rows[rowIndex];
|
|
18939
|
-
|
|
19348
|
+
box[rowIndex].forEach((cell, j) => {
|
|
18940
19349
|
dec = false;
|
|
18941
19350
|
if (rowIndex - 1 >= 0 && box[rowIndex - 1][j] === cell) {
|
|
18942
19351
|
dec = true;
|
|
18943
19352
|
}
|
|
18944
19353
|
else if (box[rowIndex + 1] && box[rowIndex + 1][j] === cell) {
|
|
18945
|
-
if (cell.parentNode === row &&
|
|
18946
|
-
cell.parentNode.nextSibling) {
|
|
19354
|
+
if (cell.parentNode === row && cell.parentNode.nextSibling) {
|
|
18947
19355
|
dec = true;
|
|
18948
19356
|
let nextCell = j + 1;
|
|
18949
19357
|
while (box[rowIndex + 1][nextCell] === cell) {
|
|
18950
19358
|
nextCell += 1;
|
|
18951
19359
|
}
|
|
18952
|
-
const nextRow = dom/* Dom.next */.i.next(cell.parentNode,
|
|
18953
|
-
if (
|
|
18954
|
-
|
|
18955
|
-
|
|
18956
|
-
|
|
18957
|
-
|
|
19360
|
+
const nextRow = dom/* Dom.next */.i.next(cell.parentNode, elm => dom/* Dom.isTag */.i.isTag(elm, 'tr'), table);
|
|
19361
|
+
if (nextRow) {
|
|
19362
|
+
if (box[rowIndex + 1][nextCell]) {
|
|
19363
|
+
nextRow.insertBefore(cell, box[rowIndex + 1][nextCell]);
|
|
19364
|
+
}
|
|
19365
|
+
else {
|
|
19366
|
+
nextRow.appendChild(cell);
|
|
19367
|
+
}
|
|
18958
19368
|
}
|
|
18959
19369
|
}
|
|
18960
19370
|
}
|
|
@@ -18964,7 +19374,7 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
18964
19374
|
if (dec &&
|
|
18965
19375
|
(cell.parentNode === row || cell !== box[rowIndex][j - 1])) {
|
|
18966
19376
|
const rowSpan = cell.rowSpan;
|
|
18967
|
-
(0,helpers.attr)(cell, 'rowspan', rowSpan - 1 > 1 ?
|
|
19377
|
+
(0,helpers.attr)(cell, 'rowspan', rowSpan - 1 > 1 ? rowSpan - 1 : null);
|
|
18968
19378
|
}
|
|
18969
19379
|
});
|
|
18970
19380
|
dom/* Dom.safeRemove */.i.safeRemove(row);
|
|
@@ -18983,8 +19393,7 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
18983
19393
|
if ((box[i] && td && j + 1 >= box[i].length) ||
|
|
18984
19394
|
td !== box[i][j + 1]) {
|
|
18985
19395
|
if (td.nextSibling) {
|
|
18986
|
-
td.
|
|
18987
|
-
td.parentNode.insertBefore(cell, td.nextSibling);
|
|
19396
|
+
dom/* Dom.before */.i.before(td.nextSibling, cell);
|
|
18988
19397
|
}
|
|
18989
19398
|
else {
|
|
18990
19399
|
td.parentNode && td.parentNode.appendChild(cell);
|
|
@@ -18995,20 +19404,19 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
18995
19404
|
else {
|
|
18996
19405
|
if (j - 1 < 0 ||
|
|
18997
19406
|
(box[i][j] !== box[i][j - 1] && box[i][j].parentNode)) {
|
|
18998
|
-
|
|
18999
|
-
td.parentNode.insertBefore(cell, box[i][j]);
|
|
19407
|
+
dom/* Dom.before */.i.before(box[i][j], cell);
|
|
19000
19408
|
added = true;
|
|
19001
19409
|
}
|
|
19002
19410
|
}
|
|
19003
19411
|
if (!added) {
|
|
19004
|
-
box[i][j]
|
|
19412
|
+
(0,helpers.attr)(box[i][j], 'colspan', parseInt((0,helpers.attr)(box[i][j], 'colspan') || '1', 10) + 1);
|
|
19005
19413
|
}
|
|
19006
19414
|
}
|
|
19007
19415
|
}
|
|
19008
19416
|
static removeColumn(table, j) {
|
|
19009
19417
|
const box = Table.formalMatrix(table);
|
|
19010
19418
|
let dec;
|
|
19011
|
-
|
|
19419
|
+
box.forEach((cells, i) => {
|
|
19012
19420
|
const td = cells[j];
|
|
19013
19421
|
dec = false;
|
|
19014
19422
|
if (j - 1 >= 0 && box[i][j - 1] === td) {
|
|
@@ -19093,7 +19501,7 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19093
19501
|
if (box[i][j] === undefined) {
|
|
19094
19502
|
continue;
|
|
19095
19503
|
}
|
|
19096
|
-
Table.
|
|
19504
|
+
Table.mark(box[i][j], 'colspan', box[i][j].colSpan - min + 1, __marked);
|
|
19097
19505
|
}
|
|
19098
19506
|
}
|
|
19099
19507
|
}
|
|
@@ -19115,7 +19523,7 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19115
19523
|
if (box[i][j] === undefined) {
|
|
19116
19524
|
continue;
|
|
19117
19525
|
}
|
|
19118
|
-
Table.
|
|
19526
|
+
Table.mark(box[i][j], 'rowspan', box[i][j].rowSpan - min + 1, __marked);
|
|
19119
19527
|
}
|
|
19120
19528
|
}
|
|
19121
19529
|
}
|
|
@@ -19126,33 +19534,33 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19126
19534
|
}
|
|
19127
19535
|
if (box[i][j].hasAttribute('rowspan') &&
|
|
19128
19536
|
box[i][j].rowSpan === 1) {
|
|
19129
|
-
box[i][j]
|
|
19537
|
+
(0,helpers.attr)(box[i][j], 'rowspan', null);
|
|
19130
19538
|
}
|
|
19131
19539
|
if (box[i][j].hasAttribute('colspan') &&
|
|
19132
19540
|
box[i][j].colSpan === 1) {
|
|
19133
|
-
box[i][j]
|
|
19541
|
+
(0,helpers.attr)(box[i][j], 'colspan', null);
|
|
19134
19542
|
}
|
|
19135
19543
|
if (box[i][j].hasAttribute('class') &&
|
|
19136
19544
|
!(0,helpers.attr)(box[i][j], 'class')) {
|
|
19137
|
-
box[i][j]
|
|
19545
|
+
(0,helpers.attr)(box[i][j], 'class', null);
|
|
19138
19546
|
}
|
|
19139
19547
|
}
|
|
19140
19548
|
}
|
|
19141
|
-
Table.
|
|
19549
|
+
Table.unmark(__marked);
|
|
19142
19550
|
}
|
|
19143
19551
|
static mergeSelected(table, jodit) {
|
|
19144
19552
|
const html = [], bound = Table.getSelectedBound(table, Table.getSelectedCellsByTable(table));
|
|
19145
19553
|
let w = 0, first = null, first_j = 0, td, cols = 0, rows = 0;
|
|
19146
|
-
const __marked = [];
|
|
19554
|
+
const alreadyMerged = new Set(), __marked = [];
|
|
19147
19555
|
if (bound && (bound[0][0] - bound[1][0] || bound[0][1] - bound[1][1])) {
|
|
19148
19556
|
Table.formalMatrix(table, (cell, i, j, cs, rs) => {
|
|
19149
19557
|
if (i >= bound[0][0] && i <= bound[1][0]) {
|
|
19150
19558
|
if (j >= bound[0][1] && j <= bound[1][1]) {
|
|
19151
19559
|
td = cell;
|
|
19152
|
-
if (td
|
|
19560
|
+
if (alreadyMerged.has(td)) {
|
|
19153
19561
|
return;
|
|
19154
19562
|
}
|
|
19155
|
-
td
|
|
19563
|
+
alreadyMerged.add(td);
|
|
19156
19564
|
if (i === bound[0][0] && td.style.width) {
|
|
19157
19565
|
w += td.offsetWidth;
|
|
19158
19566
|
}
|
|
@@ -19170,7 +19578,7 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19170
19578
|
first_j = j;
|
|
19171
19579
|
}
|
|
19172
19580
|
else {
|
|
19173
|
-
Table.
|
|
19581
|
+
Table.mark(td, 'remove', 1, __marked);
|
|
19174
19582
|
instance(jodit).removeSelection(td);
|
|
19175
19583
|
}
|
|
19176
19584
|
}
|
|
@@ -19180,23 +19588,23 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19180
19588
|
rows = bound[1][0] - bound[0][0] + 1;
|
|
19181
19589
|
if (first) {
|
|
19182
19590
|
if (cols > 1) {
|
|
19183
|
-
Table.
|
|
19591
|
+
Table.mark(first, 'colspan', cols, __marked);
|
|
19184
19592
|
}
|
|
19185
19593
|
if (rows > 1) {
|
|
19186
|
-
Table.
|
|
19594
|
+
Table.mark(first, 'rowspan', rows, __marked);
|
|
19187
19595
|
}
|
|
19188
19596
|
if (w) {
|
|
19189
|
-
Table.
|
|
19597
|
+
Table.mark(first, 'width', ((w / table.offsetWidth) * 100).toFixed(constants.ACCURACY) + '%', __marked);
|
|
19190
19598
|
if (first_j) {
|
|
19191
19599
|
Table.setColumnWidthByDelta(table, first_j, 0, true, __marked);
|
|
19192
19600
|
}
|
|
19193
19601
|
}
|
|
19194
19602
|
first.innerHTML = html.join('<br/>');
|
|
19195
19603
|
instance(jodit).addSelection(first);
|
|
19196
|
-
delete
|
|
19197
|
-
Table.
|
|
19604
|
+
alreadyMerged.delete(first);
|
|
19605
|
+
Table.unmark(__marked);
|
|
19198
19606
|
Table.normalizeTable(table);
|
|
19199
|
-
(0,helpers.
|
|
19607
|
+
(0,helpers.toArray)(table.rows).forEach((tr, index) => {
|
|
19200
19608
|
if (!tr.cells.length) {
|
|
19201
19609
|
dom/* Dom.safeRemove */.i.safeRemove(tr);
|
|
19202
19610
|
}
|
|
@@ -19217,14 +19625,14 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19217
19625
|
if (coord[0] === i &&
|
|
19218
19626
|
coord[1] !== j &&
|
|
19219
19627
|
tdElm !== cell) {
|
|
19220
|
-
Table.
|
|
19628
|
+
Table.mark(tdElm, 'rowspan', tdElm.rowSpan + 1, __marked);
|
|
19221
19629
|
}
|
|
19222
19630
|
});
|
|
19223
19631
|
dom/* Dom.after */.i.after(dom/* Dom.closest */.i.closest(cell, 'tr', table), tr);
|
|
19224
19632
|
tr.appendChild(td);
|
|
19225
19633
|
}
|
|
19226
19634
|
else {
|
|
19227
|
-
Table.
|
|
19635
|
+
Table.mark(cell, 'rowspan', cell.rowSpan - 1, __marked);
|
|
19228
19636
|
Table.formalMatrix(table, (tdElm, i, j) => {
|
|
19229
19637
|
if (i > coord[0] &&
|
|
19230
19638
|
i < coord[0] + cell.rowSpan &&
|
|
@@ -19245,9 +19653,9 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19245
19653
|
}
|
|
19246
19654
|
}
|
|
19247
19655
|
if (cell.colSpan > 1) {
|
|
19248
|
-
Table.
|
|
19656
|
+
Table.mark(td, 'colspan', cell.colSpan, __marked);
|
|
19249
19657
|
}
|
|
19250
|
-
Table.
|
|
19658
|
+
Table.unmark(__marked);
|
|
19251
19659
|
instance(jodit).removeSelection(cell);
|
|
19252
19660
|
});
|
|
19253
19661
|
this.normalizeTable(table);
|
|
@@ -19255,88 +19663,93 @@ class Table extends component/* ViewComponent */.Hr {
|
|
|
19255
19663
|
static splitVertical(table, jodit) {
|
|
19256
19664
|
let coord, td, percentage;
|
|
19257
19665
|
const __marked = [];
|
|
19258
|
-
Table.getSelectedCellsByTable(table).forEach(
|
|
19666
|
+
Table.getSelectedCellsByTable(table).forEach(cell => {
|
|
19259
19667
|
coord = Table.formalCoordinate(table, cell);
|
|
19260
19668
|
if (cell.colSpan < 2) {
|
|
19261
19669
|
Table.formalMatrix(table, (tdElm, i, j) => {
|
|
19262
|
-
if (coord[1] === j &&
|
|
19263
|
-
|
|
19264
|
-
tdElm !== cell) {
|
|
19265
|
-
Table.__mark(tdElm, 'colspan', tdElm.colSpan + 1, __marked);
|
|
19670
|
+
if (coord[1] === j && coord[0] !== i && tdElm !== cell) {
|
|
19671
|
+
Table.mark(tdElm, 'colspan', tdElm.colSpan + 1, __marked);
|
|
19266
19672
|
}
|
|
19267
19673
|
});
|
|
19268
19674
|
}
|
|
19269
19675
|
else {
|
|
19270
|
-
Table.
|
|
19676
|
+
Table.mark(cell, 'colspan', cell.colSpan - 1, __marked);
|
|
19271
19677
|
}
|
|
19272
19678
|
td = jodit.createInside.element('td');
|
|
19273
19679
|
td.appendChild(jodit.createInside.element('br'));
|
|
19274
19680
|
if (cell.rowSpan > 1) {
|
|
19275
|
-
Table.
|
|
19681
|
+
Table.mark(td, 'rowspan', cell.rowSpan, __marked);
|
|
19276
19682
|
}
|
|
19277
19683
|
const oldWidth = cell.offsetWidth;
|
|
19278
19684
|
dom/* Dom.after */.i.after(cell, td);
|
|
19279
19685
|
percentage = oldWidth / table.offsetWidth / 2;
|
|
19280
|
-
Table.
|
|
19281
|
-
Table.
|
|
19282
|
-
Table.
|
|
19686
|
+
Table.mark(cell, 'width', (percentage * 100).toFixed(constants.ACCURACY) + '%', __marked);
|
|
19687
|
+
Table.mark(td, 'width', (percentage * 100).toFixed(constants.ACCURACY) + '%', __marked);
|
|
19688
|
+
Table.unmark(__marked);
|
|
19283
19689
|
instance(jodit).removeSelection(cell);
|
|
19284
19690
|
});
|
|
19285
19691
|
Table.normalizeTable(table);
|
|
19286
19692
|
}
|
|
19287
19693
|
static setColumnWidthByDelta(table, column, delta, noUnmark, marked) {
|
|
19288
19694
|
const box = Table.formalMatrix(table);
|
|
19695
|
+
let clearWidthIndex = 0;
|
|
19289
19696
|
for (let i = 0; i < box.length; i += 1) {
|
|
19290
19697
|
const cell = box[i][column];
|
|
19291
|
-
if (cell.colSpan > 1) {
|
|
19698
|
+
if (cell.colSpan > 1 && box.length > 1) {
|
|
19292
19699
|
continue;
|
|
19293
19700
|
}
|
|
19294
19701
|
const w = cell.offsetWidth;
|
|
19295
19702
|
const percent = ((w + delta) / table.offsetWidth) * 100;
|
|
19296
|
-
Table.
|
|
19703
|
+
Table.mark(cell, 'width', percent.toFixed(constants.ACCURACY) + '%', marked);
|
|
19704
|
+
clearWidthIndex = i;
|
|
19705
|
+
break;
|
|
19706
|
+
}
|
|
19707
|
+
for (let i = clearWidthIndex + 1; i < box.length; i += 1) {
|
|
19708
|
+
const cell = box[i][column];
|
|
19709
|
+
Table.mark(cell, 'width', null, marked);
|
|
19297
19710
|
}
|
|
19298
19711
|
if (!noUnmark) {
|
|
19299
|
-
Table.
|
|
19712
|
+
Table.unmark(marked);
|
|
19300
19713
|
}
|
|
19301
19714
|
}
|
|
19302
|
-
static
|
|
19715
|
+
static mark(cell, key, value, marked) {
|
|
19716
|
+
var _a;
|
|
19303
19717
|
marked.push(cell);
|
|
19304
|
-
|
|
19305
|
-
|
|
19306
|
-
|
|
19307
|
-
cell.__marked_value[key] = value === undefined ? 1 : value;
|
|
19718
|
+
const dict = (_a = markedValue.get(cell)) !== null && _a !== void 0 ? _a : {};
|
|
19719
|
+
dict[key] = value === undefined ? 1 : value;
|
|
19720
|
+
markedValue.set(cell, dict);
|
|
19308
19721
|
}
|
|
19309
|
-
static
|
|
19722
|
+
static unmark(marked) {
|
|
19310
19723
|
marked.forEach(cell => {
|
|
19311
|
-
|
|
19312
|
-
|
|
19724
|
+
const dict = markedValue.get(cell);
|
|
19725
|
+
if (dict) {
|
|
19726
|
+
Object.keys(dict).forEach((key) => {
|
|
19727
|
+
const value = dict[key];
|
|
19313
19728
|
switch (key) {
|
|
19314
19729
|
case 'remove':
|
|
19315
19730
|
dom/* Dom.safeRemove */.i.safeRemove(cell);
|
|
19316
19731
|
break;
|
|
19317
19732
|
case 'rowspan':
|
|
19318
|
-
|
|
19319
|
-
cell.setAttribute('rowspan', value.toString());
|
|
19320
|
-
}
|
|
19321
|
-
else {
|
|
19322
|
-
cell.removeAttribute('rowspan');
|
|
19323
|
-
}
|
|
19733
|
+
(0,helpers.attr)(cell, 'rowspan', (0,helpers.isNumber)(value) && value > 1 ? value : null);
|
|
19324
19734
|
break;
|
|
19325
19735
|
case 'colspan':
|
|
19326
|
-
|
|
19327
|
-
|
|
19736
|
+
(0,helpers.attr)(cell, 'colspan', (0,helpers.isNumber)(value) && value > 1 ? value : null);
|
|
19737
|
+
break;
|
|
19738
|
+
case 'width':
|
|
19739
|
+
if (value == null) {
|
|
19740
|
+
cell.style.removeProperty('width');
|
|
19741
|
+
if (!(0,helpers.attr)(cell, 'style')) {
|
|
19742
|
+
(0,helpers.attr)(cell, 'style', null);
|
|
19743
|
+
}
|
|
19328
19744
|
}
|
|
19329
19745
|
else {
|
|
19330
|
-
cell.
|
|
19746
|
+
cell.style.width = value.toString();
|
|
19331
19747
|
}
|
|
19332
19748
|
break;
|
|
19333
|
-
case 'width':
|
|
19334
|
-
cell.style.width = value.toString();
|
|
19335
|
-
break;
|
|
19336
19749
|
}
|
|
19337
|
-
delete
|
|
19750
|
+
delete dict[key];
|
|
19338
19751
|
});
|
|
19339
|
-
delete
|
|
19752
|
+
markedValue.delete(cell);
|
|
19340
19753
|
}
|
|
19341
19754
|
});
|
|
19342
19755
|
}
|
|
@@ -19526,6 +19939,7 @@ class Uploader extends component/* ViewComponent */.Hr {
|
|
|
19526
19939
|
};
|
|
19527
19940
|
return ajax
|
|
19528
19941
|
.send()
|
|
19942
|
+
.then(resp => resp.json())
|
|
19529
19943
|
.then(resp => {
|
|
19530
19944
|
removeAjaxInstanceFromList();
|
|
19531
19945
|
success.call(this, resp);
|
|
@@ -19855,7 +20269,7 @@ class Jodit extends ViewWithToolbar {
|
|
|
19855
20269
|
}
|
|
19856
20270
|
});
|
|
19857
20271
|
this.e.on('prepareWYSIWYGEditor', this.prepareWYSIWYGEditor);
|
|
19858
|
-
this.selection = new selection/* Select */.
|
|
20272
|
+
this.selection = new selection/* Select */.Ph(this);
|
|
19859
20273
|
const beforeInitHookResult = this.beforeInitHook();
|
|
19860
20274
|
(0,helpers.callPromise)(beforeInitHookResult, () => {
|
|
19861
20275
|
this.e.fire('beforeInit', this);
|
|
@@ -21583,7 +21997,7 @@ config/* Config.prototype.controls.underline */.D.prototype.controls.underline =
|
|
|
21583
21997
|
tagRegExp: /^(u)$/i,
|
|
21584
21998
|
tags: ['u'],
|
|
21585
21999
|
css: {
|
|
21586
|
-
'text-decoration': 'underline'
|
|
22000
|
+
'text-decoration-line': 'underline'
|
|
21587
22001
|
},
|
|
21588
22002
|
tooltip: 'Underline'
|
|
21589
22003
|
};
|
|
@@ -21591,7 +22005,7 @@ config/* Config.prototype.controls.strikethrough */.D.prototype.controls.striket
|
|
|
21591
22005
|
tagRegExp: /^(s)$/i,
|
|
21592
22006
|
tags: ['s'],
|
|
21593
22007
|
css: {
|
|
21594
|
-
'text-decoration': 'line-through'
|
|
22008
|
+
'text-decoration-line': 'line-through'
|
|
21595
22009
|
},
|
|
21596
22010
|
tooltip: 'Strike through'
|
|
21597
22011
|
};
|
|
@@ -21687,6 +22101,7 @@ class cleanHtml extends Plugin {
|
|
|
21687
22101
|
if (!nodeElm) {
|
|
21688
22102
|
return work;
|
|
21689
22103
|
}
|
|
22104
|
+
nodeElm = this.replaceIfMatched(nodeElm);
|
|
21690
22105
|
if (this.isRemovableNode(nodeElm, current)) {
|
|
21691
22106
|
remove.push(nodeElm);
|
|
21692
22107
|
return this.visitNode(nodeElm.nextSibling, current, remove);
|
|
@@ -21762,6 +22177,18 @@ class cleanHtml extends Plugin {
|
|
|
21762
22177
|
.on('keyup.cleanHtml', this.onKeyUpCleanUp)
|
|
21763
22178
|
.on('beforeCommand.cleanHtml', this.beforeCommand);
|
|
21764
22179
|
}
|
|
22180
|
+
replaceIfMatched(oldParent) {
|
|
22181
|
+
const replaceOldTags = this.j.o.cleanHTML.replaceOldTags;
|
|
22182
|
+
if (!replaceOldTags || !dom/* Dom.isHTMLElement */.i.isHTMLElement(oldParent)) {
|
|
22183
|
+
return oldParent;
|
|
22184
|
+
}
|
|
22185
|
+
const tagName = replaceOldTags[oldParent.nodeName.toLowerCase()] ||
|
|
22186
|
+
replaceOldTags[oldParent.nodeName];
|
|
22187
|
+
if (tagName) {
|
|
22188
|
+
return dom/* Dom.replace */.i.replace(oldParent, tagName, this.j.createInside, true, false);
|
|
22189
|
+
}
|
|
22190
|
+
return oldParent;
|
|
22191
|
+
}
|
|
21765
22192
|
onChangeCleanHTML() {
|
|
21766
22193
|
if (!this.allowEdit()) {
|
|
21767
22194
|
return;
|
|
@@ -21776,9 +22203,7 @@ class cleanHtml extends Plugin {
|
|
|
21776
22203
|
const oldParent = dom/* Dom.closest */.i.closest(current, tags, editor.editor);
|
|
21777
22204
|
if (oldParent) {
|
|
21778
22205
|
editor.s.save();
|
|
21779
|
-
|
|
21780
|
-
replaceOldTags[oldParent.nodeName];
|
|
21781
|
-
dom/* Dom.replace */.i.replace(oldParent, tagName, editor.createInside, true, false);
|
|
22206
|
+
this.replaceIfMatched(oldParent);
|
|
21782
22207
|
editor.s.restore();
|
|
21783
22208
|
}
|
|
21784
22209
|
}
|
|
@@ -21893,13 +22318,16 @@ class cleanHtml extends Plugin {
|
|
|
21893
22318
|
if (this.isInlineBlock(node)) {
|
|
21894
22319
|
shouldUnwrap.push(node);
|
|
21895
22320
|
}
|
|
22321
|
+
if (dom/* Dom.isElement */.i.isElement(node) && (0,helpers.attr)(node, 'style')) {
|
|
22322
|
+
(0,helpers.attr)(node, 'style', null);
|
|
22323
|
+
}
|
|
21896
22324
|
});
|
|
21897
22325
|
shouldUnwrap.forEach(node => dom/* Dom.unwrap */.i.unwrap(node));
|
|
21898
22326
|
const clearParent = (node, left) => {
|
|
21899
22327
|
if (!findNotEmptySibling(node, left)) {
|
|
21900
22328
|
const pn = node.parentNode;
|
|
21901
|
-
if (pn && pn !== s.area &&
|
|
21902
|
-
|
|
22329
|
+
if (pn && pn !== s.area && (0,helpers.attr)(pn, 'style')) {
|
|
22330
|
+
(0,helpers.attr)(pn, 'style', null);
|
|
21903
22331
|
clearParent(pn, left);
|
|
21904
22332
|
return true;
|
|
21905
22333
|
}
|
|
@@ -23556,7 +23984,14 @@ config/* Config.prototype.controls.font */.D.prototype.controls.font = {
|
|
|
23556
23984
|
'Verdana,Geneva,sans-serif': 'Verdana'
|
|
23557
23985
|
},
|
|
23558
23986
|
childTemplate: (editor, key, value) => {
|
|
23559
|
-
|
|
23987
|
+
let isAvailable = false;
|
|
23988
|
+
try {
|
|
23989
|
+
isAvailable =
|
|
23990
|
+
key.indexOf('dings') === -1 &&
|
|
23991
|
+
document.fonts.check(`16px ${key}`, value);
|
|
23992
|
+
}
|
|
23993
|
+
catch (_a) { }
|
|
23994
|
+
return `<span style="${isAvailable ? `font-family: ${key}!important;` : ''}">${value}</span>`;
|
|
23560
23995
|
},
|
|
23561
23996
|
data: {
|
|
23562
23997
|
cssRule: 'font-family',
|
|
@@ -24869,15 +25304,16 @@ function image_image(editor) {
|
|
|
24869
25304
|
config/* Config.prototype.controls.indent */.D.prototype.controls.indent = {
|
|
24870
25305
|
tooltip: 'Increase Indent'
|
|
24871
25306
|
};
|
|
24872
|
-
const getKey = (direction) => direction === 'rtl' ? '
|
|
25307
|
+
const getKey = (direction, box) => `${dom/* Dom.isCell */.i.isCell(box) ? 'padding' : 'margin'}${direction === 'rtl' ? 'Right' : 'Left'}`;
|
|
24873
25308
|
config/* Config.prototype.controls.outdent */.D.prototype.controls.outdent = {
|
|
24874
25309
|
isDisabled: (editor) => {
|
|
24875
25310
|
const current = editor.s.current();
|
|
24876
25311
|
if (current) {
|
|
24877
25312
|
const currentBox = dom/* Dom.closest */.i.closest(current, dom/* Dom.isBlock */.i.isBlock, editor.editor);
|
|
24878
|
-
|
|
24879
|
-
|
|
24880
|
-
return
|
|
25313
|
+
if (currentBox) {
|
|
25314
|
+
const arrow = getKey(editor.o.direction, currentBox);
|
|
25315
|
+
return (!currentBox.style[arrow] ||
|
|
25316
|
+
parseInt(currentBox.style[arrow], 10) <= 0);
|
|
24881
25317
|
}
|
|
24882
25318
|
}
|
|
24883
25319
|
return true;
|
|
@@ -24886,7 +25322,6 @@ config/* Config.prototype.controls.outdent */.D.prototype.controls.outdent = {
|
|
|
24886
25322
|
};
|
|
24887
25323
|
config/* Config.prototype.indentMargin */.D.prototype.indentMargin = 10;
|
|
24888
25324
|
function indent(editor) {
|
|
24889
|
-
const key = getKey(editor.o.direction);
|
|
24890
25325
|
editor
|
|
24891
25326
|
.registerButton({
|
|
24892
25327
|
name: 'indent',
|
|
@@ -24897,13 +25332,13 @@ function indent(editor) {
|
|
|
24897
25332
|
group: 'indent'
|
|
24898
25333
|
});
|
|
24899
25334
|
const callback = (command) => {
|
|
24900
|
-
const
|
|
25335
|
+
const processedElements = [];
|
|
24901
25336
|
editor.s.eachSelection((current) => {
|
|
24902
25337
|
editor.s.save();
|
|
24903
25338
|
let currentBox = current
|
|
24904
25339
|
? dom/* Dom.up */.i.up(current, dom/* Dom.isBlock */.i.isBlock, editor.editor)
|
|
24905
25340
|
: false;
|
|
24906
|
-
const enter = editor.o
|
|
25341
|
+
const { enter } = editor.o;
|
|
24907
25342
|
if (!currentBox && current) {
|
|
24908
25343
|
currentBox = dom/* Dom.wrapInline */.i.wrapInline(current, enter !== constants.BR ? enter : constants.PARAGRAPH, editor);
|
|
24909
25344
|
}
|
|
@@ -24911,9 +25346,10 @@ function indent(editor) {
|
|
|
24911
25346
|
editor.s.restore();
|
|
24912
25347
|
return false;
|
|
24913
25348
|
}
|
|
24914
|
-
const alreadyIndented =
|
|
24915
|
-
if (currentBox &&
|
|
24916
|
-
|
|
25349
|
+
const alreadyIndented = processedElements.includes(currentBox);
|
|
25350
|
+
if (currentBox && !alreadyIndented) {
|
|
25351
|
+
const key = getKey(editor.o.direction, currentBox);
|
|
25352
|
+
processedElements.push(currentBox);
|
|
24917
25353
|
let value = currentBox.style[key]
|
|
24918
25354
|
? parseInt(currentBox.style[key], 10)
|
|
24919
25355
|
: 0;
|
|
@@ -24921,7 +25357,7 @@ function indent(editor) {
|
|
|
24921
25357
|
editor.o.indentMargin * (command === 'outdent' ? -1 : 1);
|
|
24922
25358
|
currentBox.style[key] = value > 0 ? value + 'px' : '';
|
|
24923
25359
|
if (!(0,helpers.attr)(currentBox, 'style')) {
|
|
24924
|
-
|
|
25360
|
+
(0,helpers.attr)(currentBox, 'style', null);
|
|
24925
25361
|
}
|
|
24926
25362
|
}
|
|
24927
25363
|
editor.s.restore();
|
|
@@ -26099,15 +26535,9 @@ function mobile(editor) {
|
|
|
26099
26535
|
}
|
|
26100
26536
|
editor.e.on('getDiffButtons.mobile', (toolbar) => {
|
|
26101
26537
|
if (toolbar === editor.toolbar) {
|
|
26102
|
-
const buttons = (0,helpers.splitArray)(editor.o.buttons), flatStore = (0,helpers_buttons/* flatButtonsSet */.q)(store);
|
|
26103
|
-
return buttons.reduce((acc, item) => {
|
|
26104
|
-
if ((
|
|
26105
|
-
acc.push({
|
|
26106
|
-
...item,
|
|
26107
|
-
buttons: item.buttons.filter(btn => !flatStore.has(btn))
|
|
26108
|
-
});
|
|
26109
|
-
}
|
|
26110
|
-
else if (!flatStore.has(item)) {
|
|
26538
|
+
const buttons = (0,helpers_buttons/* flatButtonsSet */.q)((0,helpers.splitArray)(editor.o.buttons), editor), flatStore = (0,helpers_buttons/* flatButtonsSet */.q)(store, editor);
|
|
26539
|
+
return (0,helpers.toArray)(buttons).reduce((acc, item) => {
|
|
26540
|
+
if (!flatStore.has(item)) {
|
|
26111
26541
|
acc.push(item);
|
|
26112
26542
|
}
|
|
26113
26543
|
return acc;
|
|
@@ -26154,6 +26584,9 @@ function mobile(editor) {
|
|
|
26154
26584
|
|
|
26155
26585
|
|
|
26156
26586
|
|
|
26587
|
+
|
|
26588
|
+
|
|
26589
|
+
|
|
26157
26590
|
const exec = (jodit, _, { control }) => {
|
|
26158
26591
|
const key = `button${control.command}`;
|
|
26159
26592
|
const value = (control.args && control.args[0]) || (0,helpers.dataBind)(jodit, key);
|
|
@@ -26186,8 +26619,41 @@ config/* Config.prototype.controls.ol */.D.prototype.controls.ol = {
|
|
|
26186
26619
|
},
|
|
26187
26620
|
exec
|
|
26188
26621
|
};
|
|
26189
|
-
|
|
26190
|
-
|
|
26622
|
+
class orderedList extends Plugin {
|
|
26623
|
+
constructor() {
|
|
26624
|
+
super(...arguments);
|
|
26625
|
+
this.buttons = [
|
|
26626
|
+
{
|
|
26627
|
+
name: 'ul',
|
|
26628
|
+
group: 'list'
|
|
26629
|
+
},
|
|
26630
|
+
{
|
|
26631
|
+
name: 'ol',
|
|
26632
|
+
group: 'list'
|
|
26633
|
+
}
|
|
26634
|
+
];
|
|
26635
|
+
}
|
|
26636
|
+
afterInit(jodit) {
|
|
26637
|
+
jodit
|
|
26638
|
+
.registerCommand('insertUnorderedList', this.onCommand)
|
|
26639
|
+
.registerCommand('insertOrderedList', this.onCommand);
|
|
26640
|
+
}
|
|
26641
|
+
onCommand(command, _, type) {
|
|
26642
|
+
this.jodit.s.applyStyle({
|
|
26643
|
+
listStyleType: type !== null && type !== void 0 ? type : null
|
|
26644
|
+
}, {
|
|
26645
|
+
element: command === 'insertunorderedlist' ? 'ul' : 'ol'
|
|
26646
|
+
});
|
|
26647
|
+
this.jodit.setEditorValue();
|
|
26648
|
+
return false;
|
|
26649
|
+
}
|
|
26650
|
+
beforeDestruct(jodit) { }
|
|
26651
|
+
}
|
|
26652
|
+
(0,tslib_es6/* __decorate */.gn)([
|
|
26653
|
+
decorators.autobind
|
|
26654
|
+
], orderedList.prototype, "onCommand", null);
|
|
26655
|
+
function orderedList1(editor) {
|
|
26656
|
+
const isOurCommand = (command) => /insert(un)?orderedlist/i.test(command), getListWrapper = () => Dom.up(editor.s.current(), (tag) => tag && /^UL|OL$/i.test(tag.nodeName), editor.editor), listStyleTypeEqual = (el, listStyleType) => {
|
|
26191
26657
|
const value = el.style.listStyleType;
|
|
26192
26658
|
return (value === listStyleType ||
|
|
26193
26659
|
(!value && listStyleType === 'default'));
|
|
@@ -26204,9 +26670,9 @@ function orderedList(editor) {
|
|
|
26204
26670
|
if (isOurCommand(command) && listStyleType) {
|
|
26205
26671
|
const ul = getListWrapper();
|
|
26206
26672
|
if (ul && !listStyleTypeEqual(ul, listStyleType)) {
|
|
26207
|
-
if ((
|
|
26673
|
+
if ((Dom.isTag(ul, 'ul') &&
|
|
26208
26674
|
/unordered/i.test(command)) ||
|
|
26209
|
-
(
|
|
26675
|
+
(Dom.isTag(ul, 'ol') && !/unordered/i.test(command))) {
|
|
26210
26676
|
setListStyleType(ul, listStyleType);
|
|
26211
26677
|
return false;
|
|
26212
26678
|
}
|
|
@@ -26224,7 +26690,7 @@ function orderedList(editor) {
|
|
|
26224
26690
|
});
|
|
26225
26691
|
}
|
|
26226
26692
|
const unwrapList = [], shouldUnwrap = (elm) => {
|
|
26227
|
-
if (
|
|
26693
|
+
if (Dom.isTag(elm, [
|
|
26228
26694
|
'p',
|
|
26229
26695
|
'h1',
|
|
26230
26696
|
'h2',
|
|
@@ -26241,12 +26707,12 @@ function orderedList(editor) {
|
|
|
26241
26707
|
ul.querySelectorAll('li').forEach(li => shouldUnwrap(li.firstChild));
|
|
26242
26708
|
if (unwrapList.length) {
|
|
26243
26709
|
editor.s.save();
|
|
26244
|
-
|
|
26245
|
-
if (
|
|
26246
|
-
|
|
26710
|
+
toArray(ul.childNodes).forEach(li => {
|
|
26711
|
+
if (Dom.isTag(li.lastChild, 'br')) {
|
|
26712
|
+
Dom.safeRemove(li.lastChild);
|
|
26247
26713
|
}
|
|
26248
26714
|
});
|
|
26249
|
-
unwrapList.forEach(elm =>
|
|
26715
|
+
unwrapList.forEach(elm => Dom.unwrap(elm));
|
|
26250
26716
|
editor.s.restore();
|
|
26251
26717
|
}
|
|
26252
26718
|
}
|
|
@@ -26255,6 +26721,31 @@ function orderedList(editor) {
|
|
|
26255
26721
|
});
|
|
26256
26722
|
}
|
|
26257
26723
|
|
|
26724
|
+
;// CONCATENATED MODULE: ./src/plugins/powered-by-jodit.ts
|
|
26725
|
+
/*!
|
|
26726
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
26727
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
26728
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
26729
|
+
*/
|
|
26730
|
+
function poweredByJodit(jodit) {
|
|
26731
|
+
if (!jodit.o.hidePoweredByJodit &&
|
|
26732
|
+
!jodit.o.inline &&
|
|
26733
|
+
(jodit.o.showCharsCounter ||
|
|
26734
|
+
jodit.o.showWordsCounter ||
|
|
26735
|
+
jodit.o.showXPathInStatusbar)) {
|
|
26736
|
+
jodit.hookStatus('ready', () => {
|
|
26737
|
+
jodit.statusbar.append(jodit.create.fromHTML(`<a
|
|
26738
|
+
tabindex="-1"
|
|
26739
|
+
style="text-transform: uppercase"
|
|
26740
|
+
class="jodit-status-bar-link"
|
|
26741
|
+
target="_blank"
|
|
26742
|
+
href="https://xdsoft.net/jodit/">
|
|
26743
|
+
Powered by Jodit
|
|
26744
|
+
</a>`), true);
|
|
26745
|
+
});
|
|
26746
|
+
}
|
|
26747
|
+
}
|
|
26748
|
+
|
|
26258
26749
|
;// CONCATENATED MODULE: ./src/plugins/placeholder/placeholder.ts
|
|
26259
26750
|
/*!
|
|
26260
26751
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -26486,10 +26977,10 @@ class resizer extends Plugin {
|
|
|
26486
26977
|
this.height = 0;
|
|
26487
26978
|
this.ratio = 0;
|
|
26488
26979
|
this.rect = this.j.c.fromHTML(`<div class="jodit-resizer">
|
|
26489
|
-
<
|
|
26490
|
-
<
|
|
26491
|
-
<
|
|
26492
|
-
<
|
|
26980
|
+
<div class="jodit-resizer__top-left"></div>
|
|
26981
|
+
<div class="jodit-resizer__top-right"></div>
|
|
26982
|
+
<div class="jodit-resizer__bottom-right"></div>
|
|
26983
|
+
<div class="jodit-resizer__bottom-left"></div>
|
|
26493
26984
|
<span>100x100</span>
|
|
26494
26985
|
</div>`);
|
|
26495
26986
|
this.sizeViewer = this.rect.getElementsByTagName('span')[0];
|
|
@@ -26583,7 +27074,7 @@ class resizer extends Plugin {
|
|
|
26583
27074
|
if (this.element && this.rect) {
|
|
26584
27075
|
const workplacePosition = this.getWorkplacePosition();
|
|
26585
27076
|
const pos = (0,helpers.offset)(this.element, this.j, this.j.ed), left = parseInt(this.rect.style.left || '0', 10), top = parseInt(this.rect.style.top || '0', 10), w = this.rect.offsetWidth, h = this.rect.offsetHeight;
|
|
26586
|
-
const newTop = pos.top -
|
|
27077
|
+
const newTop = pos.top - workplacePosition.top, newLeft = pos.left - workplacePosition.left;
|
|
26587
27078
|
if (top !== newTop ||
|
|
26588
27079
|
left !== newLeft ||
|
|
26589
27080
|
w !== this.element.offsetWidth ||
|
|
@@ -26608,7 +27099,7 @@ class resizer extends Plugin {
|
|
|
26608
27099
|
};
|
|
26609
27100
|
}
|
|
26610
27101
|
afterInit(editor) {
|
|
26611
|
-
(0,helpers.$$)('
|
|
27102
|
+
(0,helpers.$$)('div', this.rect).forEach((resizeHandle) => {
|
|
26612
27103
|
editor.e.on(resizeHandle, 'mousedown.resizer touchstart.resizer', this.onClickHandle.bind(this, resizeHandle));
|
|
26613
27104
|
});
|
|
26614
27105
|
global/* eventEmitter.on */.TB.on('hideHelpers', this.hide);
|
|
@@ -27358,6 +27849,8 @@ config/* Config.prototype.minHeight */.D.prototype.minHeight = 200;
|
|
|
27358
27849
|
config/* Config.prototype.maxHeight */.D.prototype.maxHeight = 'auto';
|
|
27359
27850
|
config/* Config.prototype.saveHeightInStorage */.D.prototype.saveHeightInStorage = false;
|
|
27360
27851
|
|
|
27852
|
+
// EXTERNAL MODULE: ./src/plugins/size/assests/resize-handler.svg
|
|
27853
|
+
var resize_handler = __webpack_require__(70);
|
|
27361
27854
|
;// CONCATENATED MODULE: ./src/plugins/size/resize-handler.ts
|
|
27362
27855
|
/*!
|
|
27363
27856
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -27368,6 +27861,7 @@ config/* Config.prototype.saveHeightInStorage */.D.prototype.saveHeightInStorage
|
|
|
27368
27861
|
|
|
27369
27862
|
|
|
27370
27863
|
|
|
27864
|
+
|
|
27371
27865
|
let resizeHandler = class resizeHandler extends Plugin {
|
|
27372
27866
|
constructor() {
|
|
27373
27867
|
super(...arguments);
|
|
@@ -27378,7 +27872,7 @@ let resizeHandler = class resizeHandler extends Plugin {
|
|
|
27378
27872
|
w: 0,
|
|
27379
27873
|
h: 0
|
|
27380
27874
|
};
|
|
27381
|
-
this.handle = this.j.c.div('jodit-editor__resize',
|
|
27875
|
+
this.handle = this.j.c.div('jodit-editor__resize', resize_handler);
|
|
27382
27876
|
}
|
|
27383
27877
|
afterInit(editor) {
|
|
27384
27878
|
const { height, width, allowResizeX } = editor.o;
|
|
@@ -27388,6 +27882,7 @@ let resizeHandler = class resizeHandler extends Plugin {
|
|
|
27388
27882
|
}
|
|
27389
27883
|
if ((height !== 'auto' || width !== 'auto') &&
|
|
27390
27884
|
(allowResizeX || allowResizeY)) {
|
|
27885
|
+
editor.statusbar.setMod('resize-handle', true);
|
|
27391
27886
|
editor.e
|
|
27392
27887
|
.on('toggleFullSize.resizeHandler', () => {
|
|
27393
27888
|
this.handle.style.display = editor.isFullSize
|
|
@@ -27428,7 +27923,7 @@ let resizeHandler = class resizeHandler extends Plugin {
|
|
|
27428
27923
|
this.j.unlock();
|
|
27429
27924
|
}
|
|
27430
27925
|
}
|
|
27431
|
-
beforeDestruct(
|
|
27926
|
+
beforeDestruct() {
|
|
27432
27927
|
dom/* Dom.safeRemove */.i.safeRemove(this.handle);
|
|
27433
27928
|
this.j.e.off(this.j.ow, 'mouseup touchsend', this.onHandleResizeEnd);
|
|
27434
27929
|
}
|
|
@@ -27553,9 +28048,7 @@ let size = class size extends Plugin {
|
|
|
27553
28048
|
}
|
|
27554
28049
|
}
|
|
27555
28050
|
beforeDestruct(jodit) {
|
|
27556
|
-
this.
|
|
27557
|
-
.off(this.j.ow, 'load.size', this.resizeWorkspaces)
|
|
27558
|
-
.off('.size');
|
|
28051
|
+
jodit.e.off(jodit.ow, 'load.size', this.resizeWorkspaces).off('.size');
|
|
27559
28052
|
}
|
|
27560
28053
|
};
|
|
27561
28054
|
size = (0,tslib_es6/* __decorate */.gn)([
|
|
@@ -28041,6 +28534,16 @@ class source extends Plugin {
|
|
|
28041
28534
|
this.__oldMirrorValue = value;
|
|
28042
28535
|
}
|
|
28043
28536
|
getNormalPosition(pos, str) {
|
|
28537
|
+
str = str.replace(/<(script|style|iframe)[^>]*>.*?<\/\1>/is, m => {
|
|
28538
|
+
let res = '';
|
|
28539
|
+
for (let i = 0; i < m.length; i += 1) {
|
|
28540
|
+
res += constants.INVISIBLE_SPACE;
|
|
28541
|
+
}
|
|
28542
|
+
return res;
|
|
28543
|
+
});
|
|
28544
|
+
while (pos > 0 && str[pos] === constants.INVISIBLE_SPACE) {
|
|
28545
|
+
pos--;
|
|
28546
|
+
}
|
|
28044
28547
|
let start = pos;
|
|
28045
28548
|
while (start > 0) {
|
|
28046
28549
|
start--;
|
|
@@ -28210,7 +28713,7 @@ class source extends Plugin {
|
|
|
28210
28713
|
});
|
|
28211
28714
|
}
|
|
28212
28715
|
}
|
|
28213
|
-
beforeDestruct(
|
|
28716
|
+
beforeDestruct() {
|
|
28214
28717
|
if (this.sourceEditor) {
|
|
28215
28718
|
this.sourceEditor.destruct();
|
|
28216
28719
|
delete this.sourceEditor;
|
|
@@ -28872,6 +29375,7 @@ config/* Config.prototype.controls.table */.D.prototype.controls.table = {
|
|
|
28872
29375
|
if (!first_td) {
|
|
28873
29376
|
first_td = td;
|
|
28874
29377
|
}
|
|
29378
|
+
(0,helpers.css)(td, 'width', (100 / cols_count).toFixed(4) + '%');
|
|
28875
29379
|
td.appendChild(crt.element('br'));
|
|
28876
29380
|
tr.appendChild(crt.text('\n'));
|
|
28877
29381
|
tr.appendChild(crt.text('\t'));
|
|
@@ -29400,10 +29904,23 @@ class selectCells extends Plugin {
|
|
|
29400
29904
|
dom/* Dom.safeRemove */.i.safeRemove(table);
|
|
29401
29905
|
break;
|
|
29402
29906
|
case 'binrow':
|
|
29403
|
-
|
|
29907
|
+
new Set(cells.map(td => td.parentNode)).forEach(row => {
|
|
29908
|
+
Table.removeRow(table, row.rowIndex);
|
|
29909
|
+
});
|
|
29404
29910
|
break;
|
|
29405
29911
|
case 'bincolumn':
|
|
29406
|
-
|
|
29912
|
+
{
|
|
29913
|
+
const columnsSet = new Set(), columns = cells.reduce((acc, td) => {
|
|
29914
|
+
if (!columnsSet.has(td.cellIndex)) {
|
|
29915
|
+
acc.push(td);
|
|
29916
|
+
columnsSet.add(td.cellIndex);
|
|
29917
|
+
}
|
|
29918
|
+
return acc;
|
|
29919
|
+
}, []);
|
|
29920
|
+
columns.forEach(td => {
|
|
29921
|
+
Table.removeColumn(table, td.cellIndex);
|
|
29922
|
+
});
|
|
29923
|
+
}
|
|
29407
29924
|
break;
|
|
29408
29925
|
case 'addcolumnafter':
|
|
29409
29926
|
case 'addcolumnbefore':
|
|
@@ -29689,8 +30206,11 @@ config/* Config.prototype.controls.preview */.D.prototype.controls.preview = {
|
|
|
29689
30206
|
});
|
|
29690
30207
|
const div = editor.c.div();
|
|
29691
30208
|
(0,helpers.css)(div, {
|
|
30209
|
+
position: 'relative',
|
|
29692
30210
|
padding: 16
|
|
29693
30211
|
});
|
|
30212
|
+
const value = editor.value ||
|
|
30213
|
+
`<div style='position: absolute;left:50%;top:50%;transform: translateX(-50%) translateY(-50%);color:#ccc;'>${editor.i18n('Empty')}</div>`;
|
|
29694
30214
|
if (editor.iframe) {
|
|
29695
30215
|
const iframe = editor.create.element('iframe');
|
|
29696
30216
|
(0,helpers.css)(iframe, {
|
|
@@ -29703,7 +30223,7 @@ config/* Config.prototype.controls.preview */.D.prototype.controls.preview = {
|
|
|
29703
30223
|
const mywindow = iframe.contentWindow;
|
|
29704
30224
|
if (mywindow) {
|
|
29705
30225
|
editor.e.fire('generateDocumentStructure.iframe', mywindow.document, editor);
|
|
29706
|
-
mywindow.document.body.innerHTML =
|
|
30226
|
+
mywindow.document.body.innerHTML = value;
|
|
29707
30227
|
}
|
|
29708
30228
|
}
|
|
29709
30229
|
else {
|
|
@@ -29712,7 +30232,7 @@ config/* Config.prototype.controls.preview */.D.prototype.controls.preview = {
|
|
|
29712
30232
|
minHeight: 600,
|
|
29713
30233
|
border: 0
|
|
29714
30234
|
});
|
|
29715
|
-
div.innerHTML =
|
|
30235
|
+
div.innerHTML = value;
|
|
29716
30236
|
dialog.open(div, editor.i18n('Preview'));
|
|
29717
30237
|
}
|
|
29718
30238
|
dialog.setModal(true);
|
|
@@ -29992,170 +30512,171 @@ class xpath extends Plugin {
|
|
|
29992
30512
|
|
|
29993
30513
|
|
|
29994
30514
|
|
|
30515
|
+
|
|
29995
30516
|
|
|
29996
30517
|
|
|
29997
30518
|
// EXTERNAL MODULE: ./src/styles/icons/about.svg
|
|
29998
|
-
var icons_about = __webpack_require__(
|
|
30519
|
+
var icons_about = __webpack_require__(71);
|
|
29999
30520
|
// EXTERNAL MODULE: ./src/styles/icons/addcolumn.svg
|
|
30000
|
-
var addcolumn = __webpack_require__(
|
|
30521
|
+
var addcolumn = __webpack_require__(72);
|
|
30001
30522
|
// EXTERNAL MODULE: ./src/styles/icons/addrow.svg
|
|
30002
|
-
var addrow = __webpack_require__(
|
|
30523
|
+
var addrow = __webpack_require__(73);
|
|
30003
30524
|
// EXTERNAL MODULE: ./src/styles/icons/angle-down.svg
|
|
30004
|
-
var angle_down = __webpack_require__(
|
|
30525
|
+
var angle_down = __webpack_require__(74);
|
|
30005
30526
|
// EXTERNAL MODULE: ./src/styles/icons/angle-left.svg
|
|
30006
|
-
var angle_left = __webpack_require__(
|
|
30527
|
+
var angle_left = __webpack_require__(75);
|
|
30007
30528
|
// EXTERNAL MODULE: ./src/styles/icons/angle-right.svg
|
|
30008
|
-
var angle_right = __webpack_require__(
|
|
30529
|
+
var angle_right = __webpack_require__(76);
|
|
30009
30530
|
// EXTERNAL MODULE: ./src/styles/icons/angle-up.svg
|
|
30010
|
-
var angle_up = __webpack_require__(
|
|
30531
|
+
var angle_up = __webpack_require__(77);
|
|
30011
30532
|
// EXTERNAL MODULE: ./src/styles/icons/arrows-alt.svg
|
|
30012
|
-
var arrows_alt = __webpack_require__(
|
|
30533
|
+
var arrows_alt = __webpack_require__(78);
|
|
30013
30534
|
// EXTERNAL MODULE: ./src/styles/icons/arrows-h.svg
|
|
30014
|
-
var arrows_h = __webpack_require__(
|
|
30535
|
+
var arrows_h = __webpack_require__(79);
|
|
30015
30536
|
// EXTERNAL MODULE: ./src/styles/icons/attachment.svg
|
|
30016
|
-
var attachment = __webpack_require__(
|
|
30537
|
+
var attachment = __webpack_require__(80);
|
|
30017
30538
|
// EXTERNAL MODULE: ./src/styles/icons/bin.svg
|
|
30018
|
-
var bin = __webpack_require__(
|
|
30539
|
+
var bin = __webpack_require__(81);
|
|
30019
30540
|
// EXTERNAL MODULE: ./src/styles/icons/bold.svg
|
|
30020
|
-
var icons_bold = __webpack_require__(
|
|
30541
|
+
var icons_bold = __webpack_require__(82);
|
|
30021
30542
|
// EXTERNAL MODULE: ./src/styles/icons/brush.svg
|
|
30022
|
-
var brush = __webpack_require__(
|
|
30543
|
+
var brush = __webpack_require__(83);
|
|
30023
30544
|
// EXTERNAL MODULE: ./src/styles/icons/cancel.svg
|
|
30024
|
-
var cancel = __webpack_require__(
|
|
30545
|
+
var cancel = __webpack_require__(84);
|
|
30025
30546
|
// EXTERNAL MODULE: ./src/styles/icons/center.svg
|
|
30026
|
-
var center = __webpack_require__(
|
|
30547
|
+
var center = __webpack_require__(85);
|
|
30027
30548
|
// EXTERNAL MODULE: ./src/styles/icons/chain-broken.svg
|
|
30028
|
-
var chain_broken = __webpack_require__(
|
|
30549
|
+
var chain_broken = __webpack_require__(86);
|
|
30029
30550
|
// EXTERNAL MODULE: ./src/styles/icons/check.svg
|
|
30030
|
-
var check = __webpack_require__(
|
|
30551
|
+
var check = __webpack_require__(87);
|
|
30031
30552
|
// EXTERNAL MODULE: ./src/styles/icons/check-square.svg
|
|
30032
|
-
var check_square = __webpack_require__(
|
|
30553
|
+
var check_square = __webpack_require__(88);
|
|
30033
30554
|
// EXTERNAL MODULE: ./src/styles/icons/chevron.svg
|
|
30034
|
-
var chevron = __webpack_require__(
|
|
30555
|
+
var chevron = __webpack_require__(89);
|
|
30035
30556
|
// EXTERNAL MODULE: ./src/styles/icons/copyformat.svg
|
|
30036
|
-
var copyformat = __webpack_require__(
|
|
30557
|
+
var copyformat = __webpack_require__(90);
|
|
30037
30558
|
// EXTERNAL MODULE: ./src/styles/icons/crop.svg
|
|
30038
|
-
var crop = __webpack_require__(
|
|
30559
|
+
var crop = __webpack_require__(91);
|
|
30039
30560
|
// EXTERNAL MODULE: ./src/styles/icons/copy.svg
|
|
30040
|
-
var copy = __webpack_require__(
|
|
30561
|
+
var copy = __webpack_require__(92);
|
|
30041
30562
|
// EXTERNAL MODULE: ./src/styles/icons/cut.svg
|
|
30042
|
-
var cut = __webpack_require__(
|
|
30563
|
+
var cut = __webpack_require__(93);
|
|
30043
30564
|
// EXTERNAL MODULE: ./src/styles/icons/dedent.svg
|
|
30044
|
-
var dedent = __webpack_require__(
|
|
30565
|
+
var dedent = __webpack_require__(94);
|
|
30045
30566
|
// EXTERNAL MODULE: ./src/styles/icons/dots.svg
|
|
30046
|
-
var dots = __webpack_require__(
|
|
30567
|
+
var dots = __webpack_require__(95);
|
|
30047
30568
|
// EXTERNAL MODULE: ./src/styles/icons/enter.svg
|
|
30048
|
-
var icons_enter = __webpack_require__(
|
|
30569
|
+
var icons_enter = __webpack_require__(96);
|
|
30049
30570
|
// EXTERNAL MODULE: ./src/styles/icons/eraser.svg
|
|
30050
|
-
var eraser = __webpack_require__(
|
|
30571
|
+
var eraser = __webpack_require__(97);
|
|
30051
30572
|
// EXTERNAL MODULE: ./src/styles/icons/eye.svg
|
|
30052
|
-
var eye = __webpack_require__(
|
|
30573
|
+
var eye = __webpack_require__(98);
|
|
30053
30574
|
// EXTERNAL MODULE: ./src/styles/icons/file.svg
|
|
30054
|
-
var icons_file = __webpack_require__(
|
|
30575
|
+
var icons_file = __webpack_require__(99);
|
|
30055
30576
|
// EXTERNAL MODULE: ./src/styles/icons/folder.svg
|
|
30056
|
-
var folder = __webpack_require__(
|
|
30577
|
+
var folder = __webpack_require__(100);
|
|
30057
30578
|
// EXTERNAL MODULE: ./src/styles/icons/font.svg
|
|
30058
|
-
var icons_font = __webpack_require__(
|
|
30579
|
+
var icons_font = __webpack_require__(101);
|
|
30059
30580
|
// EXTERNAL MODULE: ./src/styles/icons/fontsize.svg
|
|
30060
|
-
var fontsize = __webpack_require__(
|
|
30581
|
+
var fontsize = __webpack_require__(102);
|
|
30061
30582
|
// EXTERNAL MODULE: ./src/styles/icons/fullsize.svg
|
|
30062
|
-
var icons_fullsize = __webpack_require__(
|
|
30583
|
+
var icons_fullsize = __webpack_require__(103);
|
|
30063
30584
|
// EXTERNAL MODULE: ./src/styles/icons/hr.svg
|
|
30064
|
-
var icons_hr = __webpack_require__(
|
|
30585
|
+
var icons_hr = __webpack_require__(104);
|
|
30065
30586
|
// EXTERNAL MODULE: ./src/styles/icons/image.svg
|
|
30066
|
-
var icons_image = __webpack_require__(
|
|
30587
|
+
var icons_image = __webpack_require__(105);
|
|
30067
30588
|
// EXTERNAL MODULE: ./src/styles/icons/indent.svg
|
|
30068
|
-
var icons_indent = __webpack_require__(
|
|
30589
|
+
var icons_indent = __webpack_require__(106);
|
|
30069
30590
|
// EXTERNAL MODULE: ./src/styles/icons/info-circle.svg
|
|
30070
|
-
var info_circle = __webpack_require__(
|
|
30591
|
+
var info_circle = __webpack_require__(107);
|
|
30071
30592
|
// EXTERNAL MODULE: ./src/styles/icons/italic.svg
|
|
30072
|
-
var italic = __webpack_require__(
|
|
30593
|
+
var italic = __webpack_require__(108);
|
|
30073
30594
|
// EXTERNAL MODULE: ./src/styles/icons/justify.svg
|
|
30074
|
-
var icons_justify = __webpack_require__(
|
|
30595
|
+
var icons_justify = __webpack_require__(109);
|
|
30075
30596
|
// EXTERNAL MODULE: ./src/styles/icons/left.svg
|
|
30076
|
-
var left = __webpack_require__(
|
|
30597
|
+
var left = __webpack_require__(110);
|
|
30077
30598
|
// EXTERNAL MODULE: ./src/styles/icons/link.svg
|
|
30078
|
-
var icons_link = __webpack_require__(
|
|
30599
|
+
var icons_link = __webpack_require__(111);
|
|
30079
30600
|
// EXTERNAL MODULE: ./src/styles/icons/lock.svg
|
|
30080
|
-
var lock = __webpack_require__(
|
|
30601
|
+
var lock = __webpack_require__(112);
|
|
30081
30602
|
// EXTERNAL MODULE: ./src/styles/icons/menu.svg
|
|
30082
|
-
var menu = __webpack_require__(
|
|
30603
|
+
var menu = __webpack_require__(113);
|
|
30083
30604
|
// EXTERNAL MODULE: ./src/styles/icons/merge.svg
|
|
30084
|
-
var merge = __webpack_require__(
|
|
30605
|
+
var merge = __webpack_require__(114);
|
|
30085
30606
|
// EXTERNAL MODULE: ./src/styles/icons/ok.svg
|
|
30086
|
-
var ok = __webpack_require__(
|
|
30607
|
+
var ok = __webpack_require__(115);
|
|
30087
30608
|
// EXTERNAL MODULE: ./src/styles/icons/ol.svg
|
|
30088
|
-
var ol = __webpack_require__(
|
|
30609
|
+
var ol = __webpack_require__(116);
|
|
30089
30610
|
// EXTERNAL MODULE: ./src/styles/icons/omega.svg
|
|
30090
|
-
var omega = __webpack_require__(
|
|
30611
|
+
var omega = __webpack_require__(117);
|
|
30091
30612
|
// EXTERNAL MODULE: ./src/styles/icons/outdent.svg
|
|
30092
|
-
var outdent = __webpack_require__(
|
|
30613
|
+
var outdent = __webpack_require__(118);
|
|
30093
30614
|
// EXTERNAL MODULE: ./src/styles/icons/palette.svg
|
|
30094
|
-
var palette = __webpack_require__(
|
|
30615
|
+
var palette = __webpack_require__(119);
|
|
30095
30616
|
// EXTERNAL MODULE: ./src/styles/icons/paragraph.svg
|
|
30096
|
-
var paragraph = __webpack_require__(
|
|
30617
|
+
var paragraph = __webpack_require__(120);
|
|
30097
30618
|
// EXTERNAL MODULE: ./src/styles/icons/paste.svg
|
|
30098
|
-
var icons_paste = __webpack_require__(
|
|
30619
|
+
var icons_paste = __webpack_require__(121);
|
|
30099
30620
|
// EXTERNAL MODULE: ./src/styles/icons/pencil.svg
|
|
30100
|
-
var pencil = __webpack_require__(
|
|
30621
|
+
var pencil = __webpack_require__(122);
|
|
30101
30622
|
// EXTERNAL MODULE: ./src/styles/icons/plus.svg
|
|
30102
|
-
var plus = __webpack_require__(
|
|
30623
|
+
var plus = __webpack_require__(123);
|
|
30103
30624
|
// EXTERNAL MODULE: ./src/styles/icons/print.svg
|
|
30104
|
-
var icons_print = __webpack_require__(
|
|
30625
|
+
var icons_print = __webpack_require__(124);
|
|
30105
30626
|
// EXTERNAL MODULE: ./src/styles/icons/redo.svg
|
|
30106
|
-
var redo = __webpack_require__(
|
|
30627
|
+
var redo = __webpack_require__(125);
|
|
30107
30628
|
// EXTERNAL MODULE: ./src/styles/icons/resize.svg
|
|
30108
|
-
var resize = __webpack_require__(
|
|
30629
|
+
var resize = __webpack_require__(126);
|
|
30109
30630
|
// EXTERNAL MODULE: ./src/styles/icons/resizer.svg
|
|
30110
|
-
var icons_resizer = __webpack_require__(
|
|
30631
|
+
var icons_resizer = __webpack_require__(127);
|
|
30111
30632
|
// EXTERNAL MODULE: ./src/styles/icons/right.svg
|
|
30112
|
-
var right = __webpack_require__(
|
|
30633
|
+
var right = __webpack_require__(128);
|
|
30113
30634
|
// EXTERNAL MODULE: ./src/styles/icons/save.svg
|
|
30114
|
-
var save = __webpack_require__(
|
|
30635
|
+
var save = __webpack_require__(129);
|
|
30115
30636
|
// EXTERNAL MODULE: ./src/styles/icons/search.svg
|
|
30116
|
-
var icons_search = __webpack_require__(
|
|
30637
|
+
var icons_search = __webpack_require__(130);
|
|
30117
30638
|
// EXTERNAL MODULE: ./src/styles/icons/settings.svg
|
|
30118
|
-
var settings = __webpack_require__(
|
|
30639
|
+
var settings = __webpack_require__(131);
|
|
30119
30640
|
// EXTERNAL MODULE: ./src/styles/icons/select-all.svg
|
|
30120
|
-
var select_all = __webpack_require__(
|
|
30641
|
+
var select_all = __webpack_require__(132);
|
|
30121
30642
|
// EXTERNAL MODULE: ./src/styles/icons/shrink.svg
|
|
30122
|
-
var shrink = __webpack_require__(
|
|
30643
|
+
var shrink = __webpack_require__(133);
|
|
30123
30644
|
// EXTERNAL MODULE: ./src/styles/icons/source.svg
|
|
30124
|
-
var icons_source = __webpack_require__(
|
|
30645
|
+
var icons_source = __webpack_require__(134);
|
|
30125
30646
|
// EXTERNAL MODULE: ./src/styles/icons/splitg.svg
|
|
30126
|
-
var splitg = __webpack_require__(
|
|
30647
|
+
var splitg = __webpack_require__(135);
|
|
30127
30648
|
// EXTERNAL MODULE: ./src/styles/icons/splitv.svg
|
|
30128
|
-
var splitv = __webpack_require__(
|
|
30649
|
+
var splitv = __webpack_require__(136);
|
|
30129
30650
|
// EXTERNAL MODULE: ./src/styles/icons/strikethrough.svg
|
|
30130
|
-
var strikethrough = __webpack_require__(
|
|
30651
|
+
var strikethrough = __webpack_require__(137);
|
|
30131
30652
|
// EXTERNAL MODULE: ./src/styles/icons/subscript.svg
|
|
30132
|
-
var subscript = __webpack_require__(
|
|
30653
|
+
var subscript = __webpack_require__(138);
|
|
30133
30654
|
// EXTERNAL MODULE: ./src/styles/icons/superscript.svg
|
|
30134
|
-
var superscript = __webpack_require__(
|
|
30655
|
+
var superscript = __webpack_require__(139);
|
|
30135
30656
|
// EXTERNAL MODULE: ./src/styles/icons/table.svg
|
|
30136
|
-
var icons_table = __webpack_require__(
|
|
30657
|
+
var icons_table = __webpack_require__(140);
|
|
30137
30658
|
// EXTERNAL MODULE: ./src/styles/icons/th.svg
|
|
30138
|
-
var th = __webpack_require__(
|
|
30659
|
+
var th = __webpack_require__(141);
|
|
30139
30660
|
// EXTERNAL MODULE: ./src/styles/icons/th-list.svg
|
|
30140
|
-
var th_list = __webpack_require__(
|
|
30661
|
+
var th_list = __webpack_require__(142);
|
|
30141
30662
|
// EXTERNAL MODULE: ./src/styles/icons/ul.svg
|
|
30142
|
-
var ul = __webpack_require__(
|
|
30663
|
+
var ul = __webpack_require__(143);
|
|
30143
30664
|
// EXTERNAL MODULE: ./src/styles/icons/underline.svg
|
|
30144
|
-
var underline = __webpack_require__(
|
|
30665
|
+
var underline = __webpack_require__(144);
|
|
30145
30666
|
// EXTERNAL MODULE: ./src/styles/icons/undo.svg
|
|
30146
|
-
var undo = __webpack_require__(
|
|
30667
|
+
var undo = __webpack_require__(145);
|
|
30147
30668
|
// EXTERNAL MODULE: ./src/styles/icons/unlink.svg
|
|
30148
|
-
var unlink = __webpack_require__(
|
|
30669
|
+
var unlink = __webpack_require__(146);
|
|
30149
30670
|
// EXTERNAL MODULE: ./src/styles/icons/unlock.svg
|
|
30150
|
-
var unlock = __webpack_require__(
|
|
30671
|
+
var unlock = __webpack_require__(147);
|
|
30151
30672
|
// EXTERNAL MODULE: ./src/styles/icons/update.svg
|
|
30152
|
-
var update = __webpack_require__(
|
|
30673
|
+
var update = __webpack_require__(148);
|
|
30153
30674
|
// EXTERNAL MODULE: ./src/styles/icons/upload.svg
|
|
30154
|
-
var upload = __webpack_require__(
|
|
30675
|
+
var upload = __webpack_require__(149);
|
|
30155
30676
|
// EXTERNAL MODULE: ./src/styles/icons/valign.svg
|
|
30156
|
-
var valign = __webpack_require__(
|
|
30677
|
+
var valign = __webpack_require__(150);
|
|
30157
30678
|
// EXTERNAL MODULE: ./src/styles/icons/video.svg
|
|
30158
|
-
var icons_video = __webpack_require__(
|
|
30679
|
+
var icons_video = __webpack_require__(151);
|
|
30159
30680
|
;// CONCATENATED MODULE: ./src/styles/icons/index.ts
|
|
30160
30681
|
/*!
|
|
30161
30682
|
* Jodit Editor (https://xdsoft.net/jodit/)
|