jodit 3.9.4 → 3.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/workspace.xml +84 -82
- package/CHANGELOG.MD +109 -5
- package/build/jodit.css +450 -427
- package/build/jodit.es2018.css +298 -283
- package/build/jodit.es2018.en.css +298 -283
- package/build/jodit.es2018.en.js +539 -336
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +575 -372
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +1142 -876
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/package.json +1 -1
- package/src/config.ts +18 -19
- package/src/core/component/component.ts +16 -15
- package/src/core/storage/engines/local-storage-provider.ts +9 -3
- package/src/core/storage/engines/memory-storage-provider.ts +6 -3
- package/src/core/storage/storage.ts +7 -4
- package/src/core/ui/icon.ts +1 -0
- package/src/core/ui/index.ts +1 -3
- package/src/core/ui/list/group.less +8 -2
- package/src/{modules/file-browser/consts.ts → core/ui/list/index.ts} +4 -4
- package/src/core/ui/list/list.less +9 -1
- package/src/core/ui/list/list.ts +20 -3
- package/src/core/ui/{separator.ts → list/separator.ts} +2 -2
- package/src/core/ui/list/spacer.ts +15 -0
- package/src/core/view/view-with-toolbar.ts +2 -1
- package/src/modules/dialog/dialog.less +1 -15
- package/src/modules/dialog/dialog.ts +8 -1
- package/src/modules/file-browser/builders/context-menu.ts +29 -22
- package/src/modules/file-browser/config.ts +10 -2
- package/src/modules/file-browser/file-browser.ts +50 -29
- package/src/modules/file-browser/listeners/native-listeners.ts +37 -19
- package/src/modules/file-browser/listeners/state-listeners.ts +48 -22
- package/src/modules/file-browser/styles/file-browser.less +4 -291
- package/src/modules/file-browser/styles/preview.less +11 -8
- package/src/modules/file-browser/ui/files/files.less +174 -0
- package/src/modules/file-browser/ui/files/files.ts +14 -0
- package/{types/modules/file-browser/consts.d.ts → src/modules/file-browser/ui/index.ts} +3 -3
- package/src/modules/file-browser/ui/tree/tree.less +118 -0
- package/src/modules/file-browser/ui/tree/tree.ts +14 -0
- package/src/modules/toolbar/collection/collection.ts +17 -3
- package/src/modules/toolbar/collection/editor-collection.ts +22 -1
- package/src/plugins/clipboard/drag-and-drop.ts +4 -1
- package/src/plugins/inline-popup/config/config.ts +1 -0
- package/src/plugins/inline-popup/config/items/toolbar.ts +33 -0
- package/src/plugins/inline-popup/inline-popup.ts +17 -0
- package/src/plugins/size/resize-handler.ts +5 -2
- package/src/plugins/size/size.less +2 -17
- package/src/plugins/size/size.ts +6 -1
- package/src/plugins/sticky/sticky.ts +2 -0
- package/src/styles/icons/index.ts +2 -0
- package/src/{plugins/size/assests → styles/icons}/resize-handler.svg +0 -0
- package/src/styles/mixins.less +20 -0
- package/src/types/ajax.d.ts +0 -1
- package/src/types/file-browser.d.ts +13 -1
- package/src/types/jodit.d.ts +7 -1
- package/src/types/select.d.ts +2 -0
- package/src/types/storage.ts +3 -3
- package/src/types/style.d.ts +7 -1
- package/src/types/toolbar.d.ts +7 -1
- package/src/types/types.d.ts +1 -1
- package/src/types/view.d.ts +1 -1
- package/types/core/component/component.d.ts +4 -3
- package/types/core/storage/engines/local-storage-provider.d.ts +3 -3
- package/types/core/storage/engines/memory-storage-provider.d.ts +3 -3
- package/types/core/storage/storage.d.ts +3 -3
- package/types/core/ui/index.d.ts +1 -3
- package/types/core/ui/list/index.d.ts +9 -0
- package/types/core/ui/{separator.d.ts → list/separator.d.ts} +1 -1
- package/types/core/ui/list/spacer.d.ts +9 -0
- package/types/core/view/view-with-toolbar.d.ts +2 -1
- package/types/modules/file-browser/file-browser.d.ts +3 -2
- package/types/modules/file-browser/listeners/native-listeners.d.ts +5 -1
- package/types/modules/file-browser/ui/files/files.d.ts +10 -0
- package/types/modules/file-browser/ui/index.d.ts +7 -0
- package/types/modules/file-browser/ui/tree/tree.d.ts +10 -0
- package/types/modules/toolbar/collection/collection.d.ts +5 -2
- package/types/modules/toolbar/collection/editor-collection.d.ts +9 -1
- package/types/plugins/inline-popup/inline-popup.d.ts +4 -0
- package/types/styles/icons/index.d.ts +2 -1
- package/types/types/ajax.d.ts +0 -1
- package/types/types/file-browser.d.ts +13 -1
- package/types/types/jodit.d.ts +7 -1
- package/types/types/select.d.ts +2 -0
- package/types/types/storage.d.ts +3 -3
- package/types/types/storage.ts +3 -3
- package/types/types/style.d.ts +7 -1
- package/types/types/toolbar.d.ts +7 -1
- package/types/types/types.d.ts +1 -1
- package/types/types/view.d.ts +1 -1
package/build/jodit.es2018.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
|
|
4
|
-
* Version: v3.9.
|
|
4
|
+
* Version: v3.9.6
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -197,10 +197,6 @@ class Config {
|
|
|
197
197
|
group: 'font-style',
|
|
198
198
|
buttons: []
|
|
199
199
|
},
|
|
200
|
-
{
|
|
201
|
-
group: 'script',
|
|
202
|
-
buttons: []
|
|
203
|
-
},
|
|
204
200
|
{
|
|
205
201
|
group: 'list',
|
|
206
202
|
buttons: []
|
|
@@ -217,6 +213,11 @@ class Config {
|
|
|
217
213
|
group: 'color',
|
|
218
214
|
buttons: []
|
|
219
215
|
},
|
|
216
|
+
'---',
|
|
217
|
+
{
|
|
218
|
+
group: 'script',
|
|
219
|
+
buttons: []
|
|
220
|
+
},
|
|
220
221
|
{
|
|
221
222
|
group: 'media',
|
|
222
223
|
buttons: []
|
|
@@ -238,6 +239,7 @@ class Config {
|
|
|
238
239
|
group: 'form',
|
|
239
240
|
buttons: []
|
|
240
241
|
},
|
|
242
|
+
'---',
|
|
241
243
|
{
|
|
242
244
|
group: 'history',
|
|
243
245
|
buttons: []
|
|
@@ -260,8 +262,6 @@ class Config {
|
|
|
260
262
|
}
|
|
261
263
|
];
|
|
262
264
|
this.buttonsMD = [
|
|
263
|
-
'source',
|
|
264
|
-
'|',
|
|
265
265
|
'bold',
|
|
266
266
|
'italic',
|
|
267
267
|
'|',
|
|
@@ -273,24 +273,23 @@ class Config {
|
|
|
273
273
|
'fontsize',
|
|
274
274
|
'brush',
|
|
275
275
|
'paragraph',
|
|
276
|
-
'
|
|
276
|
+
'align',
|
|
277
|
+
'---',
|
|
277
278
|
'image',
|
|
278
279
|
'table',
|
|
279
|
-
'link',
|
|
280
280
|
'|',
|
|
281
|
-
'
|
|
281
|
+
'link',
|
|
282
282
|
'\n',
|
|
283
|
-
'undo',
|
|
284
|
-
'redo',
|
|
285
|
-
'|',
|
|
286
283
|
'hr',
|
|
287
284
|
'copyformat',
|
|
288
285
|
'fullsize',
|
|
286
|
+
'---',
|
|
287
|
+
'undo',
|
|
288
|
+
'redo',
|
|
289
|
+
'|',
|
|
289
290
|
'dots'
|
|
290
291
|
];
|
|
291
292
|
this.buttonsSM = [
|
|
292
|
-
'source',
|
|
293
|
-
'|',
|
|
294
293
|
'bold',
|
|
295
294
|
'italic',
|
|
296
295
|
'|',
|
|
@@ -301,7 +300,7 @@ class Config {
|
|
|
301
300
|
'fontsize',
|
|
302
301
|
'brush',
|
|
303
302
|
'paragraph',
|
|
304
|
-
'
|
|
303
|
+
'---',
|
|
305
304
|
'image',
|
|
306
305
|
'table',
|
|
307
306
|
'\n',
|
|
@@ -314,21 +313,21 @@ class Config {
|
|
|
314
313
|
'|',
|
|
315
314
|
'copyformat',
|
|
316
315
|
'fullsize',
|
|
316
|
+
'---',
|
|
317
317
|
'dots'
|
|
318
318
|
];
|
|
319
319
|
this.buttonsXS = [
|
|
320
320
|
'bold',
|
|
321
|
-
'image',
|
|
322
|
-
'|',
|
|
323
321
|
'brush',
|
|
324
322
|
'paragraph',
|
|
325
323
|
'eraser',
|
|
324
|
+
'---',
|
|
325
|
+
'image',
|
|
326
326
|
'\n',
|
|
327
327
|
'align',
|
|
328
|
-
'|',
|
|
329
328
|
'undo',
|
|
330
329
|
'redo',
|
|
331
|
-
'
|
|
330
|
+
'---',
|
|
332
331
|
'dots'
|
|
333
332
|
];
|
|
334
333
|
this.events = {};
|
|
@@ -1451,7 +1450,7 @@ var constants = __webpack_require__(2);
|
|
|
1451
1450
|
var type = __webpack_require__(4);
|
|
1452
1451
|
// EXTERNAL MODULE: ./src/core/helpers/string/index.ts + 5 modules
|
|
1453
1452
|
var string = __webpack_require__(27);
|
|
1454
|
-
// EXTERNAL MODULE: ./src/core/ui/index.ts +
|
|
1453
|
+
// EXTERNAL MODULE: ./src/core/ui/index.ts + 2 modules
|
|
1455
1454
|
var ui = __webpack_require__(32);
|
|
1456
1455
|
;// CONCATENATED MODULE: ./src/core/helpers/selector.ts
|
|
1457
1456
|
/*!
|
|
@@ -2690,10 +2689,15 @@ class Component {
|
|
|
2690
2689
|
constructor() {
|
|
2691
2690
|
this.ownerWindow = window;
|
|
2692
2691
|
this.__componentStatus = STATUSES.beforeInit;
|
|
2693
|
-
this.componentName =
|
|
2694
|
-
'jodit-' + (0,helpers.kebabCase)(this.className() || (0,helpers.getClassName)(this));
|
|
2695
2692
|
this.uid = 'jodit-uid-' + (0,global/* uniqueUid */.fe)();
|
|
2696
2693
|
}
|
|
2694
|
+
get componentName() {
|
|
2695
|
+
if (!this.__componentName) {
|
|
2696
|
+
this.__componentName =
|
|
2697
|
+
'jodit-' + (0,helpers.kebabCase)(this.className() || (0,helpers.getClassName)(this));
|
|
2698
|
+
}
|
|
2699
|
+
return this.__componentName;
|
|
2700
|
+
}
|
|
2697
2701
|
getFullElName(elementName, mod, modValue) {
|
|
2698
2702
|
const result = [this.componentName];
|
|
2699
2703
|
if (elementName) {
|
|
@@ -2728,14 +2732,8 @@ class Component {
|
|
|
2728
2732
|
return (STATUSES.beforeDestruct === this.componentStatus ||
|
|
2729
2733
|
STATUSES.destructed === this.componentStatus);
|
|
2730
2734
|
}
|
|
2731
|
-
bindDestruct(
|
|
2732
|
-
|
|
2733
|
-
!this.isInDestruct && this.destruct();
|
|
2734
|
-
};
|
|
2735
|
-
jodit.e && jodit.e.on(STATUSES.beforeDestruct, destructMe);
|
|
2736
|
-
this.hookStatus(STATUSES.beforeDestruct, () => {
|
|
2737
|
-
jodit.e && jodit.e.off(STATUSES.beforeDestruct, destructMe);
|
|
2738
|
-
});
|
|
2735
|
+
bindDestruct(component) {
|
|
2736
|
+
component.hookStatus(STATUSES.beforeDestruct, () => !this.isInDestruct && this.destruct());
|
|
2739
2737
|
return this;
|
|
2740
2738
|
}
|
|
2741
2739
|
destruct() {
|
|
@@ -6943,22 +6941,35 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
6943
6941
|
"GJ": function() { return /* reexport */ ui_form/* UITextArea */.GJ; }
|
|
6944
6942
|
});
|
|
6945
6943
|
|
|
6946
|
-
// UNUSED EXPORTS: UIButtonGroup, UIButtonState, UISelect
|
|
6944
|
+
// UNUSED EXPORTS: UIButtonGroup, UIButtonState, UISelect, UISpacer
|
|
6947
6945
|
|
|
6948
6946
|
// EXTERNAL MODULE: ./src/core/ui/element.ts
|
|
6949
6947
|
var ui_element = __webpack_require__(33);
|
|
6950
6948
|
// EXTERNAL MODULE: ./src/core/ui/button/index.ts + 2 modules
|
|
6951
6949
|
var ui_button = __webpack_require__(36);
|
|
6952
6950
|
// EXTERNAL MODULE: ./src/core/ui/popup/index.ts + 1 modules
|
|
6953
|
-
var popup = __webpack_require__(
|
|
6954
|
-
// EXTERNAL MODULE: ./src/core/ui/separator.ts
|
|
6955
|
-
var separator = __webpack_require__(40);
|
|
6951
|
+
var popup = __webpack_require__(43);
|
|
6956
6952
|
// EXTERNAL MODULE: ./src/core/ui/list/group.ts
|
|
6957
6953
|
var group = __webpack_require__(39);
|
|
6958
6954
|
// EXTERNAL MODULE: ./src/core/ui/list/list.ts + 1 modules
|
|
6959
6955
|
var list = __webpack_require__(37);
|
|
6956
|
+
// EXTERNAL MODULE: ./src/core/ui/list/separator.ts
|
|
6957
|
+
var separator = __webpack_require__(41);
|
|
6958
|
+
// EXTERNAL MODULE: ./src/core/ui/list/spacer.ts
|
|
6959
|
+
var spacer = __webpack_require__(40);
|
|
6960
|
+
;// CONCATENATED MODULE: ./src/core/ui/list/index.ts
|
|
6961
|
+
/*!
|
|
6962
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
6963
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
6964
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
6965
|
+
*/
|
|
6966
|
+
|
|
6967
|
+
|
|
6968
|
+
|
|
6969
|
+
|
|
6970
|
+
|
|
6960
6971
|
// EXTERNAL MODULE: ./src/core/ui/form/index.ts + 11 modules
|
|
6961
|
-
var ui_form = __webpack_require__(
|
|
6972
|
+
var ui_form = __webpack_require__(44);
|
|
6962
6973
|
// EXTERNAL MODULE: ./src/core/ui/icon.ts
|
|
6963
6974
|
var icon = __webpack_require__(35);
|
|
6964
6975
|
// EXTERNAL MODULE: ./src/core/dom.ts
|
|
@@ -7013,8 +7024,6 @@ class ProgressBar extends ui_element/* UIElement */.u {
|
|
|
7013
7024
|
|
|
7014
7025
|
|
|
7015
7026
|
|
|
7016
|
-
|
|
7017
|
-
|
|
7018
7027
|
/***/ }),
|
|
7019
7028
|
/* 33 */
|
|
7020
7029
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
@@ -7241,6 +7250,7 @@ class Icon {
|
|
|
7241
7250
|
}
|
|
7242
7251
|
return (Icon.icons[name] ||
|
|
7243
7252
|
Icon.icons[name.replace(/-/g, '_')] ||
|
|
7253
|
+
Icon.icons[name.replace(/_/g, '-')] ||
|
|
7244
7254
|
Icon.icons[name.toLowerCase()]);
|
|
7245
7255
|
}
|
|
7246
7256
|
static exists(name) {
|
|
@@ -7648,10 +7658,12 @@ function getStrongControlTypes(items, controls) {
|
|
|
7648
7658
|
var decorators = __webpack_require__(17);
|
|
7649
7659
|
// EXTERNAL MODULE: ./src/core/ui/list/group.ts
|
|
7650
7660
|
var group = __webpack_require__(39);
|
|
7651
|
-
// EXTERNAL MODULE: ./src/core/ui/
|
|
7652
|
-
var
|
|
7661
|
+
// EXTERNAL MODULE: ./src/core/ui/list/spacer.ts
|
|
7662
|
+
var spacer = __webpack_require__(40);
|
|
7663
|
+
// EXTERNAL MODULE: ./src/core/ui/list/separator.ts
|
|
7664
|
+
var separator = __webpack_require__(41);
|
|
7653
7665
|
// EXTERNAL MODULE: ./src/core/ui/helpers/buttons.ts
|
|
7654
|
-
var buttons = __webpack_require__(
|
|
7666
|
+
var buttons = __webpack_require__(42);
|
|
7655
7667
|
;// CONCATENATED MODULE: ./src/core/ui/list/list.ts
|
|
7656
7668
|
/*!
|
|
7657
7669
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -7668,6 +7680,7 @@ var buttons = __webpack_require__(41);
|
|
|
7668
7680
|
|
|
7669
7681
|
|
|
7670
7682
|
|
|
7683
|
+
|
|
7671
7684
|
let UIList = class UIList extends group/* UIGroup */.q {
|
|
7672
7685
|
constructor(jodit) {
|
|
7673
7686
|
super(jodit);
|
|
@@ -7702,12 +7715,14 @@ let UIList = class UIList extends group/* UIGroup */.q {
|
|
|
7702
7715
|
let lastBtnSeparator = false;
|
|
7703
7716
|
let line = this.makeGroup();
|
|
7704
7717
|
this.append(line);
|
|
7718
|
+
line.setMod('line', true);
|
|
7705
7719
|
let group;
|
|
7706
7720
|
const addButton = (control) => {
|
|
7707
7721
|
let elm = null;
|
|
7708
7722
|
switch (control.name) {
|
|
7709
7723
|
case '\n':
|
|
7710
7724
|
line = this.makeGroup();
|
|
7725
|
+
line.setMod('line', true);
|
|
7711
7726
|
group = this.makeGroup();
|
|
7712
7727
|
line.append(group);
|
|
7713
7728
|
this.append(line);
|
|
@@ -7718,6 +7733,15 @@ let UIList = class UIList extends group/* UIGroup */.q {
|
|
|
7718
7733
|
elm = new separator/* UISeparator */.l(this.j);
|
|
7719
7734
|
}
|
|
7720
7735
|
break;
|
|
7736
|
+
case '---': {
|
|
7737
|
+
group.setMod('before-spacer', true);
|
|
7738
|
+
const space = new spacer/* UISpacer */.W(this.j);
|
|
7739
|
+
line.append(space);
|
|
7740
|
+
group = this.makeGroup();
|
|
7741
|
+
line.append(group);
|
|
7742
|
+
lastBtnSeparator = false;
|
|
7743
|
+
break;
|
|
7744
|
+
}
|
|
7721
7745
|
default:
|
|
7722
7746
|
lastBtnSeparator = false;
|
|
7723
7747
|
elm = this.makeButton(control, target);
|
|
@@ -7736,8 +7760,8 @@ let UIList = class UIList extends group/* UIGroup */.q {
|
|
|
7736
7760
|
const buttons = item.buttons.filter(b => b);
|
|
7737
7761
|
if (buttons.length) {
|
|
7738
7762
|
group = this.makeGroup();
|
|
7739
|
-
line.append(group);
|
|
7740
7763
|
group.setMod('separated', true).setMod('group', item.group);
|
|
7764
|
+
line.append(group);
|
|
7741
7765
|
getStrongControlTypes(buttons, this.j.o.controls)
|
|
7742
7766
|
.filter(isNotRemoved)
|
|
7743
7767
|
.forEach(addButton);
|
|
@@ -7947,6 +7971,36 @@ UIGroup = UIGroup_1 = (0,tslib__WEBPACK_IMPORTED_MODULE_4__/* .__decorate */ .gn
|
|
|
7947
7971
|
/* 40 */
|
|
7948
7972
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7949
7973
|
|
|
7974
|
+
"use strict";
|
|
7975
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7976
|
+
/* harmony export */ "W": function() { return /* binding */ UISpacer; }
|
|
7977
|
+
/* harmony export */ });
|
|
7978
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(18);
|
|
7979
|
+
/* harmony import */ var _element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(33);
|
|
7980
|
+
/* harmony import */ var _decorators__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(17);
|
|
7981
|
+
/*!
|
|
7982
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
7983
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
7984
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
7985
|
+
*/
|
|
7986
|
+
|
|
7987
|
+
|
|
7988
|
+
|
|
7989
|
+
let UISpacer = class UISpacer extends _element__WEBPACK_IMPORTED_MODULE_0__/* .UIElement */ .u {
|
|
7990
|
+
className() {
|
|
7991
|
+
return 'UISpacer';
|
|
7992
|
+
}
|
|
7993
|
+
};
|
|
7994
|
+
UISpacer = (0,tslib__WEBPACK_IMPORTED_MODULE_2__/* .__decorate */ .gn)([
|
|
7995
|
+
_decorators__WEBPACK_IMPORTED_MODULE_1__.component
|
|
7996
|
+
], UISpacer);
|
|
7997
|
+
|
|
7998
|
+
|
|
7999
|
+
|
|
8000
|
+
/***/ }),
|
|
8001
|
+
/* 41 */
|
|
8002
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8003
|
+
|
|
7950
8004
|
"use strict";
|
|
7951
8005
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7952
8006
|
/* harmony export */ "l": function() { return /* binding */ UISeparator; }
|
|
@@ -7974,7 +8028,7 @@ UISeparator = (0,tslib__WEBPACK_IMPORTED_MODULE_2__/* .__decorate */ .gn)([
|
|
|
7974
8028
|
|
|
7975
8029
|
|
|
7976
8030
|
/***/ }),
|
|
7977
|
-
/*
|
|
8031
|
+
/* 42 */
|
|
7978
8032
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7979
8033
|
|
|
7980
8034
|
"use strict";
|
|
@@ -8011,7 +8065,7 @@ function flatButtonsSet(buttons, jodit) {
|
|
|
8011
8065
|
|
|
8012
8066
|
|
|
8013
8067
|
/***/ }),
|
|
8014
|
-
/*
|
|
8068
|
+
/* 43 */
|
|
8015
8069
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8016
8070
|
|
|
8017
8071
|
"use strict";
|
|
@@ -8293,7 +8347,7 @@ class Popup extends ui_element/* UIElement */.u {
|
|
|
8293
8347
|
|
|
8294
8348
|
|
|
8295
8349
|
/***/ }),
|
|
8296
|
-
/*
|
|
8350
|
+
/* 44 */
|
|
8297
8351
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8298
8352
|
|
|
8299
8353
|
"use strict";
|
|
@@ -8875,7 +8929,7 @@ UIBlock = (0,tslib_es6/* __decorate */.gn)([
|
|
|
8875
8929
|
|
|
8876
8930
|
|
|
8877
8931
|
/***/ }),
|
|
8878
|
-
/*
|
|
8932
|
+
/* 45 */
|
|
8879
8933
|
/***/ (function(module) {
|
|
8880
8934
|
|
|
8881
8935
|
/*!
|
|
@@ -8892,7 +8946,7 @@ module.exports = {
|
|
|
8892
8946
|
|
|
8893
8947
|
|
|
8894
8948
|
/***/ }),
|
|
8895
|
-
/*
|
|
8949
|
+
/* 46 */
|
|
8896
8950
|
/***/ (function(module) {
|
|
8897
8951
|
|
|
8898
8952
|
/*!
|
|
@@ -9123,7 +9177,7 @@ module.exports = {
|
|
|
9123
9177
|
|
|
9124
9178
|
|
|
9125
9179
|
/***/ }),
|
|
9126
|
-
/*
|
|
9180
|
+
/* 47 */
|
|
9127
9181
|
/***/ (function(module) {
|
|
9128
9182
|
|
|
9129
9183
|
/*!
|
|
@@ -9356,7 +9410,7 @@ module.exports = {
|
|
|
9356
9410
|
|
|
9357
9411
|
|
|
9358
9412
|
/***/ }),
|
|
9359
|
-
/*
|
|
9413
|
+
/* 48 */
|
|
9360
9414
|
/***/ (function(module) {
|
|
9361
9415
|
|
|
9362
9416
|
/*!
|
|
@@ -9589,7 +9643,7 @@ module.exports = {
|
|
|
9589
9643
|
|
|
9590
9644
|
|
|
9591
9645
|
/***/ }),
|
|
9592
|
-
/*
|
|
9646
|
+
/* 49 */
|
|
9593
9647
|
/***/ (function(module) {
|
|
9594
9648
|
|
|
9595
9649
|
/*!
|
|
@@ -9827,7 +9881,7 @@ module.exports = {
|
|
|
9827
9881
|
|
|
9828
9882
|
|
|
9829
9883
|
/***/ }),
|
|
9830
|
-
/*
|
|
9884
|
+
/* 50 */
|
|
9831
9885
|
/***/ (function(module) {
|
|
9832
9886
|
|
|
9833
9887
|
/*!
|
|
@@ -10055,7 +10109,7 @@ module.exports = {
|
|
|
10055
10109
|
|
|
10056
10110
|
|
|
10057
10111
|
/***/ }),
|
|
10058
|
-
/*
|
|
10112
|
+
/* 51 */
|
|
10059
10113
|
/***/ (function(module) {
|
|
10060
10114
|
|
|
10061
10115
|
/*!
|
|
@@ -10287,7 +10341,7 @@ module.exports = {
|
|
|
10287
10341
|
|
|
10288
10342
|
|
|
10289
10343
|
/***/ }),
|
|
10290
|
-
/*
|
|
10344
|
+
/* 52 */
|
|
10291
10345
|
/***/ (function(module) {
|
|
10292
10346
|
|
|
10293
10347
|
/*!
|
|
@@ -10521,7 +10575,7 @@ module.exports = {
|
|
|
10521
10575
|
|
|
10522
10576
|
|
|
10523
10577
|
/***/ }),
|
|
10524
|
-
/*
|
|
10578
|
+
/* 53 */
|
|
10525
10579
|
/***/ (function(module) {
|
|
10526
10580
|
|
|
10527
10581
|
/*!
|
|
@@ -10754,7 +10808,7 @@ module.exports = {
|
|
|
10754
10808
|
|
|
10755
10809
|
|
|
10756
10810
|
/***/ }),
|
|
10757
|
-
/*
|
|
10811
|
+
/* 54 */
|
|
10758
10812
|
/***/ (function(module) {
|
|
10759
10813
|
|
|
10760
10814
|
/*!
|
|
@@ -10987,7 +11041,7 @@ module.exports = {
|
|
|
10987
11041
|
|
|
10988
11042
|
|
|
10989
11043
|
/***/ }),
|
|
10990
|
-
/*
|
|
11044
|
+
/* 55 */
|
|
10991
11045
|
/***/ (function(module) {
|
|
10992
11046
|
|
|
10993
11047
|
/*!
|
|
@@ -11223,7 +11277,7 @@ module.exports = {
|
|
|
11223
11277
|
|
|
11224
11278
|
|
|
11225
11279
|
/***/ }),
|
|
11226
|
-
/*
|
|
11280
|
+
/* 56 */
|
|
11227
11281
|
/***/ (function(module) {
|
|
11228
11282
|
|
|
11229
11283
|
/*!
|
|
@@ -11454,7 +11508,7 @@ module.exports = {
|
|
|
11454
11508
|
|
|
11455
11509
|
|
|
11456
11510
|
/***/ }),
|
|
11457
|
-
/*
|
|
11511
|
+
/* 57 */
|
|
11458
11512
|
/***/ (function(module) {
|
|
11459
11513
|
|
|
11460
11514
|
/*!
|
|
@@ -11688,7 +11742,7 @@ module.exports = {
|
|
|
11688
11742
|
|
|
11689
11743
|
|
|
11690
11744
|
/***/ }),
|
|
11691
|
-
/*
|
|
11745
|
+
/* 58 */
|
|
11692
11746
|
/***/ (function(module) {
|
|
11693
11747
|
|
|
11694
11748
|
/*!
|
|
@@ -11922,7 +11976,7 @@ module.exports = {
|
|
|
11922
11976
|
|
|
11923
11977
|
|
|
11924
11978
|
/***/ }),
|
|
11925
|
-
/*
|
|
11979
|
+
/* 59 */
|
|
11926
11980
|
/***/ (function(module) {
|
|
11927
11981
|
|
|
11928
11982
|
/*!
|
|
@@ -12160,7 +12214,7 @@ module.exports = {
|
|
|
12160
12214
|
|
|
12161
12215
|
|
|
12162
12216
|
/***/ }),
|
|
12163
|
-
/*
|
|
12217
|
+
/* 60 */
|
|
12164
12218
|
/***/ (function(module) {
|
|
12165
12219
|
|
|
12166
12220
|
/*!
|
|
@@ -12392,7 +12446,7 @@ module.exports = {
|
|
|
12392
12446
|
|
|
12393
12447
|
|
|
12394
12448
|
/***/ }),
|
|
12395
|
-
/*
|
|
12449
|
+
/* 61 */
|
|
12396
12450
|
/***/ (function(module) {
|
|
12397
12451
|
|
|
12398
12452
|
/*!
|
|
@@ -12624,7 +12678,7 @@ module.exports = {
|
|
|
12624
12678
|
|
|
12625
12679
|
|
|
12626
12680
|
/***/ }),
|
|
12627
|
-
/*
|
|
12681
|
+
/* 62 */
|
|
12628
12682
|
/***/ (function(module) {
|
|
12629
12683
|
|
|
12630
12684
|
/*!
|
|
@@ -12856,7 +12910,7 @@ module.exports = {
|
|
|
12856
12910
|
|
|
12857
12911
|
|
|
12858
12912
|
/***/ }),
|
|
12859
|
-
/*
|
|
12913
|
+
/* 63 */
|
|
12860
12914
|
/***/ (function(module) {
|
|
12861
12915
|
|
|
12862
12916
|
/*!
|
|
@@ -13086,13 +13140,13 @@ module.exports = {
|
|
|
13086
13140
|
|
|
13087
13141
|
|
|
13088
13142
|
/***/ }),
|
|
13089
|
-
/*
|
|
13143
|
+
/* 64 */
|
|
13090
13144
|
/***/ (function(module) {
|
|
13091
13145
|
|
|
13092
13146
|
module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M36 4h-24c-2.21 0-4 1.79-4 4v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-32c0-2.21-1.79-4-4-4zm-24 4h10v16l-5-3-5 3v-16z\"/> </svg>"
|
|
13093
13147
|
|
|
13094
13148
|
/***/ }),
|
|
13095
|
-
/*
|
|
13149
|
+
/* 65 */
|
|
13096
13150
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13097
13151
|
|
|
13098
13152
|
"use strict";
|
|
@@ -13106,7 +13160,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
13106
13160
|
|
|
13107
13161
|
// EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
|
|
13108
13162
|
var helpers = __webpack_require__(8);
|
|
13109
|
-
// EXTERNAL MODULE: ./src/core/ui/index.ts +
|
|
13163
|
+
// EXTERNAL MODULE: ./src/core/ui/index.ts + 2 modules
|
|
13110
13164
|
var ui = __webpack_require__(32);
|
|
13111
13165
|
// EXTERNAL MODULE: ./src/core/dom.ts
|
|
13112
13166
|
var dom = __webpack_require__(15);
|
|
@@ -13361,7 +13415,7 @@ const FileSelectorWidget = (editor, callbacks, elm, close, isImage = true) => {
|
|
|
13361
13415
|
|
|
13362
13416
|
|
|
13363
13417
|
/***/ }),
|
|
13364
|
-
/*
|
|
13418
|
+
/* 66 */
|
|
13365
13419
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13366
13420
|
|
|
13367
13421
|
"use strict";
|
|
@@ -13401,7 +13455,7 @@ const hAlignElement = (image, align) => {
|
|
|
13401
13455
|
|
|
13402
13456
|
|
|
13403
13457
|
/***/ }),
|
|
13404
|
-
/*
|
|
13458
|
+
/* 67 */
|
|
13405
13459
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13406
13460
|
|
|
13407
13461
|
"use strict";
|
|
@@ -13435,7 +13489,7 @@ const hAlignElement = (image, align) => {
|
|
|
13435
13489
|
|
|
13436
13490
|
|
|
13437
13491
|
/***/ }),
|
|
13438
|
-
/*
|
|
13492
|
+
/* 68 */
|
|
13439
13493
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13440
13494
|
|
|
13441
13495
|
"use strict";
|
|
@@ -13445,7 +13499,7 @@ const hAlignElement = (image, align) => {
|
|
|
13445
13499
|
/* harmony import */ var _core_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(15);
|
|
13446
13500
|
/* harmony import */ var _core_helpers_checker__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(19);
|
|
13447
13501
|
/* harmony import */ var _core_helpers__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(8);
|
|
13448
|
-
/* harmony import */ var _image_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
13502
|
+
/* harmony import */ var _image_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(66);
|
|
13449
13503
|
/*!
|
|
13450
13504
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13451
13505
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -13520,13 +13574,13 @@ const align = {
|
|
|
13520
13574
|
|
|
13521
13575
|
|
|
13522
13576
|
/***/ }),
|
|
13523
|
-
/*
|
|
13577
|
+
/* 69 */
|
|
13524
13578
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13525
13579
|
|
|
13526
13580
|
"use strict";
|
|
13527
13581
|
/* harmony import */ var _core_helpers_checker__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(19);
|
|
13528
13582
|
/* harmony import */ var _core_helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8);
|
|
13529
|
-
/* harmony import */ var _modules_widget__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
13583
|
+
/* harmony import */ var _modules_widget__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(65);
|
|
13530
13584
|
/*!
|
|
13531
13585
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13532
13586
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -13655,11 +13709,50 @@ const cmd = (control) => control.args && (0,_core_helpers_checker__WEBPACK_IMPOR
|
|
|
13655
13709
|
|
|
13656
13710
|
|
|
13657
13711
|
/***/ }),
|
|
13658
|
-
/*
|
|
13712
|
+
/* 70 */
|
|
13713
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__) {
|
|
13714
|
+
|
|
13715
|
+
"use strict";
|
|
13716
|
+
/*!
|
|
13717
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13718
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
13719
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
13720
|
+
*/
|
|
13721
|
+
/* harmony default export */ __webpack_exports__["Z"] = ([
|
|
13722
|
+
'bold',
|
|
13723
|
+
'italic',
|
|
13724
|
+
'|',
|
|
13725
|
+
'ul',
|
|
13726
|
+
'ol',
|
|
13727
|
+
'eraser',
|
|
13728
|
+
'|',
|
|
13729
|
+
'fontsize',
|
|
13730
|
+
'brush',
|
|
13731
|
+
'paragraph',
|
|
13732
|
+
'---',
|
|
13733
|
+
'image',
|
|
13734
|
+
'table',
|
|
13735
|
+
'\n',
|
|
13736
|
+
'link',
|
|
13737
|
+
'|',
|
|
13738
|
+
'align',
|
|
13739
|
+
'|',
|
|
13740
|
+
'undo',
|
|
13741
|
+
'redo',
|
|
13742
|
+
'|',
|
|
13743
|
+
'copyformat',
|
|
13744
|
+
'fullsize',
|
|
13745
|
+
'---',
|
|
13746
|
+
'dots'
|
|
13747
|
+
]);
|
|
13748
|
+
|
|
13749
|
+
|
|
13750
|
+
/***/ }),
|
|
13751
|
+
/* 71 */
|
|
13659
13752
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13660
13753
|
|
|
13661
13754
|
"use strict";
|
|
13662
|
-
/* harmony import */ var _img__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
13755
|
+
/* harmony import */ var _img__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(68);
|
|
13663
13756
|
/*!
|
|
13664
13757
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
13665
13758
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -13679,493 +13772,493 @@ const cmd = (control) => control.args && (0,_core_helpers_checker__WEBPACK_IMPOR
|
|
|
13679
13772
|
|
|
13680
13773
|
|
|
13681
13774
|
/***/ }),
|
|
13682
|
-
/*
|
|
13683
|
-
/***/ (function(module) {
|
|
13684
|
-
|
|
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>"
|
|
13686
|
-
|
|
13687
|
-
/***/ }),
|
|
13688
|
-
/* 71 */
|
|
13775
|
+
/* 72 */
|
|
13689
13776
|
/***/ (function(module) {
|
|
13690
13777
|
|
|
13691
13778
|
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>"
|
|
13692
13779
|
|
|
13693
13780
|
/***/ }),
|
|
13694
|
-
/*
|
|
13781
|
+
/* 73 */
|
|
13695
13782
|
/***/ (function(module) {
|
|
13696
13783
|
|
|
13697
13784
|
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>"
|
|
13698
13785
|
|
|
13699
13786
|
/***/ }),
|
|
13700
|
-
/*
|
|
13787
|
+
/* 74 */
|
|
13701
13788
|
/***/ (function(module) {
|
|
13702
13789
|
|
|
13703
13790
|
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>"
|
|
13704
13791
|
|
|
13705
13792
|
/***/ }),
|
|
13706
|
-
/*
|
|
13793
|
+
/* 75 */
|
|
13707
13794
|
/***/ (function(module) {
|
|
13708
13795
|
|
|
13709
13796
|
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>"
|
|
13710
13797
|
|
|
13711
13798
|
/***/ }),
|
|
13712
|
-
/*
|
|
13799
|
+
/* 76 */
|
|
13713
13800
|
/***/ (function(module) {
|
|
13714
13801
|
|
|
13715
13802
|
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>"
|
|
13716
13803
|
|
|
13717
13804
|
/***/ }),
|
|
13718
|
-
/*
|
|
13805
|
+
/* 77 */
|
|
13719
13806
|
/***/ (function(module) {
|
|
13720
13807
|
|
|
13721
13808
|
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>"
|
|
13722
13809
|
|
|
13723
13810
|
/***/ }),
|
|
13724
|
-
/*
|
|
13811
|
+
/* 78 */
|
|
13725
13812
|
/***/ (function(module) {
|
|
13726
13813
|
|
|
13727
13814
|
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>"
|
|
13728
13815
|
|
|
13729
13816
|
/***/ }),
|
|
13730
|
-
/*
|
|
13817
|
+
/* 79 */
|
|
13731
13818
|
/***/ (function(module) {
|
|
13732
13819
|
|
|
13733
13820
|
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>"
|
|
13734
13821
|
|
|
13735
13822
|
/***/ }),
|
|
13736
|
-
/*
|
|
13823
|
+
/* 80 */
|
|
13737
13824
|
/***/ (function(module) {
|
|
13738
13825
|
|
|
13739
13826
|
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>"
|
|
13740
13827
|
|
|
13741
13828
|
/***/ }),
|
|
13742
|
-
/*
|
|
13829
|
+
/* 81 */
|
|
13743
13830
|
/***/ (function(module) {
|
|
13744
13831
|
|
|
13745
13832
|
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>"
|
|
13746
13833
|
|
|
13747
13834
|
/***/ }),
|
|
13748
|
-
/*
|
|
13835
|
+
/* 82 */
|
|
13749
13836
|
/***/ (function(module) {
|
|
13750
13837
|
|
|
13751
13838
|
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>"
|
|
13752
13839
|
|
|
13753
13840
|
/***/ }),
|
|
13754
|
-
/*
|
|
13841
|
+
/* 83 */
|
|
13755
13842
|
/***/ (function(module) {
|
|
13756
13843
|
|
|
13757
13844
|
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>"
|
|
13758
13845
|
|
|
13759
13846
|
/***/ }),
|
|
13760
|
-
/*
|
|
13847
|
+
/* 84 */
|
|
13761
13848
|
/***/ (function(module) {
|
|
13762
13849
|
|
|
13763
13850
|
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>"
|
|
13764
13851
|
|
|
13765
13852
|
/***/ }),
|
|
13766
|
-
/*
|
|
13853
|
+
/* 85 */
|
|
13767
13854
|
/***/ (function(module) {
|
|
13768
13855
|
|
|
13769
13856
|
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>"
|
|
13770
13857
|
|
|
13771
13858
|
/***/ }),
|
|
13772
|
-
/*
|
|
13859
|
+
/* 86 */
|
|
13773
13860
|
/***/ (function(module) {
|
|
13774
13861
|
|
|
13775
13862
|
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>"
|
|
13776
13863
|
|
|
13777
13864
|
/***/ }),
|
|
13778
|
-
/*
|
|
13865
|
+
/* 87 */
|
|
13779
13866
|
/***/ (function(module) {
|
|
13780
13867
|
|
|
13781
13868
|
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>"
|
|
13782
13869
|
|
|
13783
13870
|
/***/ }),
|
|
13784
|
-
/*
|
|
13871
|
+
/* 88 */
|
|
13785
13872
|
/***/ (function(module) {
|
|
13786
13873
|
|
|
13787
13874
|
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>"
|
|
13788
13875
|
|
|
13789
13876
|
/***/ }),
|
|
13790
|
-
/*
|
|
13877
|
+
/* 89 */
|
|
13791
13878
|
/***/ (function(module) {
|
|
13792
13879
|
|
|
13793
13880
|
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>"
|
|
13794
13881
|
|
|
13795
13882
|
/***/ }),
|
|
13796
|
-
/*
|
|
13883
|
+
/* 90 */
|
|
13797
13884
|
/***/ (function(module) {
|
|
13798
13885
|
|
|
13799
13886
|
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>"
|
|
13800
13887
|
|
|
13801
13888
|
/***/ }),
|
|
13802
|
-
/*
|
|
13889
|
+
/* 91 */
|
|
13803
13890
|
/***/ (function(module) {
|
|
13804
13891
|
|
|
13805
13892
|
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>"
|
|
13806
13893
|
|
|
13807
13894
|
/***/ }),
|
|
13808
|
-
/*
|
|
13895
|
+
/* 92 */
|
|
13809
13896
|
/***/ (function(module) {
|
|
13810
13897
|
|
|
13811
13898
|
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>"
|
|
13812
13899
|
|
|
13813
13900
|
/***/ }),
|
|
13814
|
-
/*
|
|
13901
|
+
/* 93 */
|
|
13815
13902
|
/***/ (function(module) {
|
|
13816
13903
|
|
|
13817
13904
|
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>"
|
|
13818
13905
|
|
|
13819
13906
|
/***/ }),
|
|
13820
|
-
/*
|
|
13907
|
+
/* 94 */
|
|
13821
13908
|
/***/ (function(module) {
|
|
13822
13909
|
|
|
13823
13910
|
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>"
|
|
13824
13911
|
|
|
13825
13912
|
/***/ }),
|
|
13826
|
-
/*
|
|
13913
|
+
/* 95 */
|
|
13827
13914
|
/***/ (function(module) {
|
|
13828
13915
|
|
|
13829
13916
|
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>"
|
|
13830
13917
|
|
|
13831
13918
|
/***/ }),
|
|
13832
|
-
/*
|
|
13919
|
+
/* 96 */
|
|
13833
13920
|
/***/ (function(module) {
|
|
13834
13921
|
|
|
13835
13922
|
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>"
|
|
13836
13923
|
|
|
13837
13924
|
/***/ }),
|
|
13838
|
-
/*
|
|
13925
|
+
/* 97 */
|
|
13839
13926
|
/***/ (function(module) {
|
|
13840
13927
|
|
|
13841
13928
|
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
13929
|
|
|
13843
13930
|
/***/ }),
|
|
13844
|
-
/*
|
|
13931
|
+
/* 98 */
|
|
13845
13932
|
/***/ (function(module) {
|
|
13846
13933
|
|
|
13847
13934
|
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>"
|
|
13848
13935
|
|
|
13849
13936
|
/***/ }),
|
|
13850
|
-
/*
|
|
13937
|
+
/* 99 */
|
|
13851
13938
|
/***/ (function(module) {
|
|
13852
13939
|
|
|
13853
13940
|
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>"
|
|
13854
13941
|
|
|
13855
13942
|
/***/ }),
|
|
13856
|
-
/*
|
|
13943
|
+
/* 100 */
|
|
13857
13944
|
/***/ (function(module) {
|
|
13858
13945
|
|
|
13859
13946
|
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>"
|
|
13860
13947
|
|
|
13861
13948
|
/***/ }),
|
|
13862
|
-
/*
|
|
13949
|
+
/* 101 */
|
|
13863
13950
|
/***/ (function(module) {
|
|
13864
13951
|
|
|
13865
13952
|
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>"
|
|
13866
13953
|
|
|
13867
13954
|
/***/ }),
|
|
13868
|
-
/*
|
|
13955
|
+
/* 102 */
|
|
13869
13956
|
/***/ (function(module) {
|
|
13870
13957
|
|
|
13871
13958
|
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>"
|
|
13872
13959
|
|
|
13873
13960
|
/***/ }),
|
|
13874
|
-
/*
|
|
13961
|
+
/* 103 */
|
|
13875
13962
|
/***/ (function(module) {
|
|
13876
13963
|
|
|
13877
13964
|
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>"
|
|
13878
13965
|
|
|
13879
13966
|
/***/ }),
|
|
13880
|
-
/*
|
|
13967
|
+
/* 104 */
|
|
13881
13968
|
/***/ (function(module) {
|
|
13882
13969
|
|
|
13883
13970
|
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>"
|
|
13884
13971
|
|
|
13885
13972
|
/***/ }),
|
|
13886
|
-
/*
|
|
13973
|
+
/* 105 */
|
|
13887
13974
|
/***/ (function(module) {
|
|
13888
13975
|
|
|
13889
13976
|
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>"
|
|
13890
13977
|
|
|
13891
13978
|
/***/ }),
|
|
13892
|
-
/*
|
|
13979
|
+
/* 106 */
|
|
13893
13980
|
/***/ (function(module) {
|
|
13894
13981
|
|
|
13895
13982
|
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>"
|
|
13896
13983
|
|
|
13897
13984
|
/***/ }),
|
|
13898
|
-
/*
|
|
13985
|
+
/* 107 */
|
|
13899
13986
|
/***/ (function(module) {
|
|
13900
13987
|
|
|
13901
13988
|
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>"
|
|
13902
13989
|
|
|
13903
13990
|
/***/ }),
|
|
13904
|
-
/*
|
|
13991
|
+
/* 108 */
|
|
13905
13992
|
/***/ (function(module) {
|
|
13906
13993
|
|
|
13907
13994
|
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>"
|
|
13908
13995
|
|
|
13909
13996
|
/***/ }),
|
|
13910
|
-
/*
|
|
13997
|
+
/* 109 */
|
|
13911
13998
|
/***/ (function(module) {
|
|
13912
13999
|
|
|
13913
14000
|
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>"
|
|
13914
14001
|
|
|
13915
14002
|
/***/ }),
|
|
13916
|
-
/*
|
|
14003
|
+
/* 110 */
|
|
13917
14004
|
/***/ (function(module) {
|
|
13918
14005
|
|
|
13919
14006
|
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>"
|
|
13920
14007
|
|
|
13921
14008
|
/***/ }),
|
|
13922
|
-
/*
|
|
14009
|
+
/* 111 */
|
|
13923
14010
|
/***/ (function(module) {
|
|
13924
14011
|
|
|
13925
14012
|
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>"
|
|
13926
14013
|
|
|
13927
14014
|
/***/ }),
|
|
13928
|
-
/*
|
|
14015
|
+
/* 112 */
|
|
13929
14016
|
/***/ (function(module) {
|
|
13930
14017
|
|
|
13931
14018
|
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>"
|
|
13932
14019
|
|
|
13933
14020
|
/***/ }),
|
|
13934
|
-
/*
|
|
14021
|
+
/* 113 */
|
|
13935
14022
|
/***/ (function(module) {
|
|
13936
14023
|
|
|
13937
14024
|
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>"
|
|
13938
14025
|
|
|
13939
14026
|
/***/ }),
|
|
13940
|
-
/*
|
|
14027
|
+
/* 114 */
|
|
13941
14028
|
/***/ (function(module) {
|
|
13942
14029
|
|
|
13943
14030
|
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>"
|
|
13944
14031
|
|
|
13945
14032
|
/***/ }),
|
|
13946
|
-
/*
|
|
14033
|
+
/* 115 */
|
|
13947
14034
|
/***/ (function(module) {
|
|
13948
14035
|
|
|
13949
14036
|
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>"
|
|
13950
14037
|
|
|
13951
14038
|
/***/ }),
|
|
13952
|
-
/*
|
|
14039
|
+
/* 116 */
|
|
13953
14040
|
/***/ (function(module) {
|
|
13954
14041
|
|
|
13955
14042
|
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>"
|
|
13956
14043
|
|
|
13957
14044
|
/***/ }),
|
|
13958
|
-
/*
|
|
14045
|
+
/* 117 */
|
|
13959
14046
|
/***/ (function(module) {
|
|
13960
14047
|
|
|
13961
14048
|
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>"
|
|
13962
14049
|
|
|
13963
14050
|
/***/ }),
|
|
13964
|
-
/*
|
|
14051
|
+
/* 118 */
|
|
13965
14052
|
/***/ (function(module) {
|
|
13966
14053
|
|
|
13967
14054
|
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>"
|
|
13968
14055
|
|
|
13969
14056
|
/***/ }),
|
|
13970
|
-
/*
|
|
14057
|
+
/* 119 */
|
|
13971
14058
|
/***/ (function(module) {
|
|
13972
14059
|
|
|
13973
14060
|
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>"
|
|
13974
14061
|
|
|
13975
14062
|
/***/ }),
|
|
13976
|
-
/*
|
|
14063
|
+
/* 120 */
|
|
13977
14064
|
/***/ (function(module) {
|
|
13978
14065
|
|
|
13979
14066
|
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>"
|
|
13980
14067
|
|
|
13981
14068
|
/***/ }),
|
|
13982
|
-
/*
|
|
14069
|
+
/* 121 */
|
|
13983
14070
|
/***/ (function(module) {
|
|
13984
14071
|
|
|
13985
14072
|
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>"
|
|
13986
14073
|
|
|
13987
14074
|
/***/ }),
|
|
13988
|
-
/*
|
|
14075
|
+
/* 122 */
|
|
13989
14076
|
/***/ (function(module) {
|
|
13990
14077
|
|
|
13991
14078
|
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>"
|
|
13992
14079
|
|
|
13993
14080
|
/***/ }),
|
|
13994
|
-
/*
|
|
14081
|
+
/* 123 */
|
|
13995
14082
|
/***/ (function(module) {
|
|
13996
14083
|
|
|
13997
14084
|
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>"
|
|
13998
14085
|
|
|
13999
14086
|
/***/ }),
|
|
14000
|
-
/*
|
|
14087
|
+
/* 124 */
|
|
14001
14088
|
/***/ (function(module) {
|
|
14002
14089
|
|
|
14003
14090
|
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>"
|
|
14004
14091
|
|
|
14005
14092
|
/***/ }),
|
|
14006
|
-
/*
|
|
14093
|
+
/* 125 */
|
|
14007
14094
|
/***/ (function(module) {
|
|
14008
14095
|
|
|
14009
14096
|
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>"
|
|
14010
14097
|
|
|
14011
14098
|
/***/ }),
|
|
14012
|
-
/*
|
|
14099
|
+
/* 126 */
|
|
14013
14100
|
/***/ (function(module) {
|
|
14014
14101
|
|
|
14015
14102
|
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>"
|
|
14016
14103
|
|
|
14017
14104
|
/***/ }),
|
|
14018
|
-
/*
|
|
14105
|
+
/* 127 */
|
|
14019
14106
|
/***/ (function(module) {
|
|
14020
14107
|
|
|
14021
14108
|
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>"
|
|
14022
14109
|
|
|
14023
14110
|
/***/ }),
|
|
14024
|
-
/*
|
|
14111
|
+
/* 128 */
|
|
14112
|
+
/***/ (function(module) {
|
|
14113
|
+
|
|
14114
|
+
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>"
|
|
14115
|
+
|
|
14116
|
+
/***/ }),
|
|
14117
|
+
/* 129 */
|
|
14025
14118
|
/***/ (function(module) {
|
|
14026
14119
|
|
|
14027
14120
|
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>"
|
|
14028
14121
|
|
|
14029
14122
|
/***/ }),
|
|
14030
|
-
/*
|
|
14123
|
+
/* 130 */
|
|
14031
14124
|
/***/ (function(module) {
|
|
14032
14125
|
|
|
14033
14126
|
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>"
|
|
14034
14127
|
|
|
14035
14128
|
/***/ }),
|
|
14036
|
-
/*
|
|
14129
|
+
/* 131 */
|
|
14037
14130
|
/***/ (function(module) {
|
|
14038
14131
|
|
|
14039
14132
|
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>"
|
|
14040
14133
|
|
|
14041
14134
|
/***/ }),
|
|
14042
|
-
/*
|
|
14135
|
+
/* 132 */
|
|
14043
14136
|
/***/ (function(module) {
|
|
14044
14137
|
|
|
14045
14138
|
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>"
|
|
14046
14139
|
|
|
14047
14140
|
/***/ }),
|
|
14048
|
-
/*
|
|
14141
|
+
/* 133 */
|
|
14049
14142
|
/***/ (function(module) {
|
|
14050
14143
|
|
|
14051
14144
|
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>"
|
|
14052
14145
|
|
|
14053
14146
|
/***/ }),
|
|
14054
|
-
/*
|
|
14147
|
+
/* 134 */
|
|
14055
14148
|
/***/ (function(module) {
|
|
14056
14149
|
|
|
14057
14150
|
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>"
|
|
14058
14151
|
|
|
14059
14152
|
/***/ }),
|
|
14060
|
-
/*
|
|
14153
|
+
/* 135 */
|
|
14061
14154
|
/***/ (function(module) {
|
|
14062
14155
|
|
|
14063
14156
|
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>"
|
|
14064
14157
|
|
|
14065
14158
|
/***/ }),
|
|
14066
|
-
/*
|
|
14159
|
+
/* 136 */
|
|
14067
14160
|
/***/ (function(module) {
|
|
14068
14161
|
|
|
14069
14162
|
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>"
|
|
14070
14163
|
|
|
14071
14164
|
/***/ }),
|
|
14072
|
-
/*
|
|
14165
|
+
/* 137 */
|
|
14073
14166
|
/***/ (function(module) {
|
|
14074
14167
|
|
|
14075
14168
|
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>"
|
|
14076
14169
|
|
|
14077
14170
|
/***/ }),
|
|
14078
|
-
/*
|
|
14171
|
+
/* 138 */
|
|
14079
14172
|
/***/ (function(module) {
|
|
14080
14173
|
|
|
14081
14174
|
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>"
|
|
14082
14175
|
|
|
14083
14176
|
/***/ }),
|
|
14084
|
-
/*
|
|
14177
|
+
/* 139 */
|
|
14085
14178
|
/***/ (function(module) {
|
|
14086
14179
|
|
|
14087
14180
|
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>"
|
|
14088
14181
|
|
|
14089
14182
|
/***/ }),
|
|
14090
|
-
/*
|
|
14183
|
+
/* 140 */
|
|
14091
14184
|
/***/ (function(module) {
|
|
14092
14185
|
|
|
14093
14186
|
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>"
|
|
14094
14187
|
|
|
14095
14188
|
/***/ }),
|
|
14096
|
-
/*
|
|
14189
|
+
/* 141 */
|
|
14097
14190
|
/***/ (function(module) {
|
|
14098
14191
|
|
|
14099
14192
|
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>"
|
|
14100
14193
|
|
|
14101
14194
|
/***/ }),
|
|
14102
|
-
/*
|
|
14195
|
+
/* 142 */
|
|
14103
14196
|
/***/ (function(module) {
|
|
14104
14197
|
|
|
14105
14198
|
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>"
|
|
14106
14199
|
|
|
14107
14200
|
/***/ }),
|
|
14108
|
-
/*
|
|
14201
|
+
/* 143 */
|
|
14109
14202
|
/***/ (function(module) {
|
|
14110
14203
|
|
|
14111
14204
|
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>"
|
|
14112
14205
|
|
|
14113
14206
|
/***/ }),
|
|
14114
|
-
/*
|
|
14207
|
+
/* 144 */
|
|
14115
14208
|
/***/ (function(module) {
|
|
14116
14209
|
|
|
14117
14210
|
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>"
|
|
14118
14211
|
|
|
14119
14212
|
/***/ }),
|
|
14120
|
-
/*
|
|
14213
|
+
/* 145 */
|
|
14121
14214
|
/***/ (function(module) {
|
|
14122
14215
|
|
|
14123
14216
|
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>"
|
|
14124
14217
|
|
|
14125
14218
|
/***/ }),
|
|
14126
|
-
/*
|
|
14219
|
+
/* 146 */
|
|
14127
14220
|
/***/ (function(module) {
|
|
14128
14221
|
|
|
14129
14222
|
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>"
|
|
14130
14223
|
|
|
14131
14224
|
/***/ }),
|
|
14132
|
-
/*
|
|
14225
|
+
/* 147 */
|
|
14133
14226
|
/***/ (function(module) {
|
|
14134
14227
|
|
|
14135
14228
|
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>"
|
|
14136
14229
|
|
|
14137
14230
|
/***/ }),
|
|
14138
|
-
/*
|
|
14231
|
+
/* 148 */
|
|
14139
14232
|
/***/ (function(module) {
|
|
14140
14233
|
|
|
14141
14234
|
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>"
|
|
14142
14235
|
|
|
14143
14236
|
/***/ }),
|
|
14144
|
-
/*
|
|
14237
|
+
/* 149 */
|
|
14145
14238
|
/***/ (function(module) {
|
|
14146
14239
|
|
|
14147
14240
|
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>"
|
|
14148
14241
|
|
|
14149
14242
|
/***/ }),
|
|
14150
|
-
/*
|
|
14243
|
+
/* 150 */
|
|
14151
14244
|
/***/ (function(module) {
|
|
14152
14245
|
|
|
14153
14246
|
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>"
|
|
14154
14247
|
|
|
14155
14248
|
/***/ }),
|
|
14156
|
-
/*
|
|
14249
|
+
/* 151 */
|
|
14157
14250
|
/***/ (function(module) {
|
|
14158
14251
|
|
|
14159
14252
|
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>"
|
|
14160
14253
|
|
|
14161
14254
|
/***/ }),
|
|
14162
|
-
/*
|
|
14255
|
+
/* 152 */
|
|
14163
14256
|
/***/ (function(module) {
|
|
14164
14257
|
|
|
14165
14258
|
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>"
|
|
14166
14259
|
|
|
14167
14260
|
/***/ }),
|
|
14168
|
-
/*
|
|
14261
|
+
/* 153 */
|
|
14169
14262
|
/***/ (function(module) {
|
|
14170
14263
|
|
|
14171
14264
|
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>"
|
|
@@ -14417,6 +14510,7 @@ __webpack_require__.d(icons_namespaceObject, {
|
|
|
14417
14510
|
"print": function() { return icons_print; },
|
|
14418
14511
|
"redo": function() { return redo; },
|
|
14419
14512
|
"resize": function() { return resize; },
|
|
14513
|
+
"resize_handler": function() { return resize_handler; },
|
|
14420
14514
|
"resizer": function() { return icons_resizer; },
|
|
14421
14515
|
"right": function() { return right; },
|
|
14422
14516
|
"save": function() { return save; },
|
|
@@ -14838,7 +14932,7 @@ Ajax.log = [];
|
|
|
14838
14932
|
// EXTERNAL MODULE: ./src/core/component/index.ts + 3 modules
|
|
14839
14933
|
var component = __webpack_require__(12);
|
|
14840
14934
|
// EXTERNAL MODULE: ./src/core/ui/popup/index.ts + 1 modules
|
|
14841
|
-
var ui_popup = __webpack_require__(
|
|
14935
|
+
var ui_popup = __webpack_require__(43);
|
|
14842
14936
|
// EXTERNAL MODULE: ./src/core/ui/button/index.ts + 2 modules
|
|
14843
14937
|
var ui_button = __webpack_require__(36);
|
|
14844
14938
|
// EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
|
|
@@ -14921,12 +15015,14 @@ class LocalStorageProvider {
|
|
|
14921
15015
|
localStorage.setItem(this.rootKey, JSON.stringify(json));
|
|
14922
15016
|
}
|
|
14923
15017
|
catch (_a) { }
|
|
15018
|
+
return this;
|
|
14924
15019
|
}
|
|
14925
15020
|
delete(key) {
|
|
14926
15021
|
try {
|
|
14927
15022
|
localStorage.removeItem(this.rootKey);
|
|
14928
15023
|
}
|
|
14929
15024
|
catch (_a) { }
|
|
15025
|
+
return this;
|
|
14930
15026
|
}
|
|
14931
15027
|
get(key) {
|
|
14932
15028
|
try {
|
|
@@ -14944,6 +15040,7 @@ class LocalStorageProvider {
|
|
|
14944
15040
|
localStorage.removeItem(this.rootKey);
|
|
14945
15041
|
}
|
|
14946
15042
|
catch (_a) { }
|
|
15043
|
+
return this;
|
|
14947
15044
|
}
|
|
14948
15045
|
}
|
|
14949
15046
|
|
|
@@ -14959,9 +15056,11 @@ class MemoryStorageProvider {
|
|
|
14959
15056
|
}
|
|
14960
15057
|
set(key, value) {
|
|
14961
15058
|
this.data.set(key, value);
|
|
15059
|
+
return this;
|
|
14962
15060
|
}
|
|
14963
15061
|
delete(key) {
|
|
14964
15062
|
this.data.delete(key);
|
|
15063
|
+
return this;
|
|
14965
15064
|
}
|
|
14966
15065
|
get(key) {
|
|
14967
15066
|
return this.data.get(key);
|
|
@@ -14971,6 +15070,7 @@ class MemoryStorageProvider {
|
|
|
14971
15070
|
}
|
|
14972
15071
|
clear() {
|
|
14973
15072
|
this.data.clear();
|
|
15073
|
+
return this;
|
|
14974
15074
|
}
|
|
14975
15075
|
}
|
|
14976
15076
|
|
|
@@ -14994,9 +15094,11 @@ class Storage {
|
|
|
14994
15094
|
}
|
|
14995
15095
|
set(key, value) {
|
|
14996
15096
|
this.provider.set((0,helpers.camelCase)(this.prefix + key), value);
|
|
15097
|
+
return this;
|
|
14997
15098
|
}
|
|
14998
15099
|
delete(key) {
|
|
14999
15100
|
this.provider.delete((0,helpers.camelCase)(this.prefix + key));
|
|
15101
|
+
return this;
|
|
15000
15102
|
}
|
|
15001
15103
|
get(key) {
|
|
15002
15104
|
return this.provider.get((0,helpers.camelCase)(this.prefix + key));
|
|
@@ -15005,7 +15107,8 @@ class Storage {
|
|
|
15005
15107
|
return this.provider.exists((0,helpers.camelCase)(this.prefix + key));
|
|
15006
15108
|
}
|
|
15007
15109
|
clear() {
|
|
15008
|
-
|
|
15110
|
+
this.provider.clear();
|
|
15111
|
+
return this;
|
|
15009
15112
|
}
|
|
15010
15113
|
static makeStorage(persistent = false, suffix) {
|
|
15011
15114
|
let provider;
|
|
@@ -15057,7 +15160,7 @@ class View extends component/* Component */.wA {
|
|
|
15057
15160
|
this.isView = true;
|
|
15058
15161
|
this.mods = {};
|
|
15059
15162
|
this.components = new Set();
|
|
15060
|
-
this.version = "3.9.
|
|
15163
|
+
this.version = "3.9.6";
|
|
15061
15164
|
this.async = new Async();
|
|
15062
15165
|
this.buffer = Storage.makeStorage();
|
|
15063
15166
|
this.storage = Storage.makeStorage(true, this.componentName);
|
|
@@ -15155,10 +15258,10 @@ class View extends component/* Component */.wA {
|
|
|
15155
15258
|
return this.__isFullSize;
|
|
15156
15259
|
}
|
|
15157
15260
|
getVersion() {
|
|
15158
|
-
return "3.9.
|
|
15261
|
+
return "3.9.6";
|
|
15159
15262
|
}
|
|
15160
15263
|
static getVersion() {
|
|
15161
|
-
return "3.9.
|
|
15264
|
+
return "3.9.6";
|
|
15162
15265
|
}
|
|
15163
15266
|
initOptions(options) {
|
|
15164
15267
|
this.options = (0,helpers.ConfigProto)(options || {}, (0,helpers.ConfigProto)(this.options || {}, View.defaultOptions));
|
|
@@ -15240,7 +15343,7 @@ View.defaultOptions = {
|
|
|
15240
15343
|
|
|
15241
15344
|
// EXTERNAL MODULE: ./src/core/dom.ts
|
|
15242
15345
|
var dom = __webpack_require__(15);
|
|
15243
|
-
// EXTERNAL MODULE: ./src/core/ui/index.ts +
|
|
15346
|
+
// EXTERNAL MODULE: ./src/core/ui/index.ts + 2 modules
|
|
15244
15347
|
var ui = __webpack_require__(32);
|
|
15245
15348
|
;// CONCATENATED MODULE: ./src/modules/toolbar/collection/collection.ts
|
|
15246
15349
|
/*!
|
|
@@ -15315,6 +15418,15 @@ let ToolbarCollection = class ToolbarCollection extends ui/* UIList */.bz {
|
|
|
15315
15418
|
.on(this.listenEvents, this.update)
|
|
15316
15419
|
.on('afterSetMode focus', this.immediateUpdate);
|
|
15317
15420
|
}
|
|
15421
|
+
hide() {
|
|
15422
|
+
this.container.remove();
|
|
15423
|
+
}
|
|
15424
|
+
show() {
|
|
15425
|
+
this.appendTo(this.j.toolbarContainer);
|
|
15426
|
+
}
|
|
15427
|
+
showInline(bound) {
|
|
15428
|
+
throw (0,helpers.error)('The method is not implemented for this class.');
|
|
15429
|
+
}
|
|
15318
15430
|
build(items, target = null) {
|
|
15319
15431
|
const itemsWithGroupps = this.j.e.fire('beforeToolbarBuild', items);
|
|
15320
15432
|
if (itemsWithGroupps) {
|
|
@@ -15435,6 +15547,18 @@ let ToolbarEditorCollection = class ToolbarEditorCollection extends ToolbarColle
|
|
|
15435
15547
|
});
|
|
15436
15548
|
dom/* Dom.appendChildFirst */.i.appendChildFirst(container, input);
|
|
15437
15549
|
}
|
|
15550
|
+
showInline(bound) {
|
|
15551
|
+
this.jodit.e.fire('showInlineToolbar', bound);
|
|
15552
|
+
}
|
|
15553
|
+
hide() {
|
|
15554
|
+
this.jodit.e.fire('hidePopup');
|
|
15555
|
+
super.hide();
|
|
15556
|
+
this.jodit.e.fire('toggleToolbar');
|
|
15557
|
+
}
|
|
15558
|
+
show() {
|
|
15559
|
+
super.show();
|
|
15560
|
+
this.jodit.e.fire('toggleToolbar');
|
|
15561
|
+
}
|
|
15438
15562
|
};
|
|
15439
15563
|
ToolbarEditorCollection = (0,tslib_es6/* __decorate */.gn)([
|
|
15440
15564
|
decorators.component
|
|
@@ -15800,7 +15924,7 @@ function makeButton(jodit, control, target = null) {
|
|
|
15800
15924
|
}
|
|
15801
15925
|
|
|
15802
15926
|
// EXTERNAL MODULE: ./src/core/ui/helpers/buttons.ts
|
|
15803
|
-
var helpers_buttons = __webpack_require__(
|
|
15927
|
+
var helpers_buttons = __webpack_require__(42);
|
|
15804
15928
|
;// CONCATENATED MODULE: ./src/core/view/view-with-toolbar.ts
|
|
15805
15929
|
/*!
|
|
15806
15930
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -15934,6 +16058,7 @@ class ViewWithToolbar extends View {
|
|
|
15934
16058
|
|
|
15935
16059
|
|
|
15936
16060
|
|
|
16061
|
+
|
|
15937
16062
|
config/* Config.prototype.dialog */.D.prototype.dialog = {
|
|
15938
16063
|
namespace: '',
|
|
15939
16064
|
extraButtons: [],
|
|
@@ -15995,7 +16120,9 @@ let Dialog = class Dialog extends ViewWithToolbar {
|
|
|
15995
16120
|
</div>
|
|
15996
16121
|
<div class="${n('content')}"></div>
|
|
15997
16122
|
<div class="${n('footer')}"></div>
|
|
15998
|
-
${self.o.resizable
|
|
16123
|
+
${self.o.resizable
|
|
16124
|
+
? `<div class="${n('resizer')}">${ui/* Icon.get */.JO.get('resize_handler')}</div>`
|
|
16125
|
+
: ''}
|
|
15999
16126
|
</div>
|
|
16000
16127
|
</div>`);
|
|
16001
16128
|
(0,helpers.attr)(self.container, 'role', 'dialog');
|
|
@@ -16627,16 +16754,6 @@ class Create {
|
|
|
16627
16754
|
}
|
|
16628
16755
|
}
|
|
16629
16756
|
|
|
16630
|
-
;// CONCATENATED MODULE: ./src/modules/file-browser/consts.ts
|
|
16631
|
-
/*!
|
|
16632
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
16633
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
16634
|
-
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
16635
|
-
*/
|
|
16636
|
-
const F_CLASS = 'jodit-filebrowser';
|
|
16637
|
-
const ITEM_CLASS = F_CLASS + '__files-item';
|
|
16638
|
-
const ICON_LOADER = '<i class="jodit-icon_loader"></i>';
|
|
16639
|
-
|
|
16640
16757
|
;// CONCATENATED MODULE: ./src/modules/file-browser/config.ts
|
|
16641
16758
|
/*!
|
|
16642
16759
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -16646,7 +16763,6 @@ const ICON_LOADER = '<i class="jodit-icon_loader"></i>';
|
|
|
16646
16763
|
|
|
16647
16764
|
|
|
16648
16765
|
|
|
16649
|
-
|
|
16650
16766
|
config/* Config.prototype.filebrowser */.D.prototype.filebrowser = {
|
|
16651
16767
|
namespace: '',
|
|
16652
16768
|
extraButtons: [],
|
|
@@ -16711,6 +16827,7 @@ config/* Config.prototype.filebrowser */.D.prototype.filebrowser = {
|
|
|
16711
16827
|
moveFolder: true,
|
|
16712
16828
|
moveFile: true,
|
|
16713
16829
|
showFoldersPanel: true,
|
|
16830
|
+
storeLastOpenedFolder: true,
|
|
16714
16831
|
width: 859,
|
|
16715
16832
|
height: 400,
|
|
16716
16833
|
buttons: [
|
|
@@ -16742,24 +16859,28 @@ config/* Config.prototype.filebrowser */.D.prototype.filebrowser = {
|
|
|
16742
16859
|
showFileName: true,
|
|
16743
16860
|
showFileSize: true,
|
|
16744
16861
|
showFileChangeTime: true,
|
|
16745
|
-
saveStateInStorage:
|
|
16862
|
+
saveStateInStorage: {
|
|
16863
|
+
storeLastOpenedFolder: true,
|
|
16864
|
+
storeView: true,
|
|
16865
|
+
storeSortBy: true
|
|
16866
|
+
},
|
|
16746
16867
|
pixelOffsetLoadNewChunk: 200,
|
|
16747
16868
|
getThumbTemplate(item, source, source_name) {
|
|
16748
|
-
const opt = this.options, showName = opt.showFileName, showSize = opt.showFileSize && item.size, showTime = opt.showFileChangeTime && item.time;
|
|
16869
|
+
const opt = this.options, IC = this.files.getFullElName('item'), showName = opt.showFileName, showSize = opt.showFileSize && item.size, showTime = opt.showFileChangeTime && item.time;
|
|
16749
16870
|
let name = '';
|
|
16750
16871
|
if (item.file !== undefined) {
|
|
16751
16872
|
name = item.file;
|
|
16752
16873
|
}
|
|
16753
|
-
const info = `<div class="${
|
|
16754
|
-
? `<span class="${
|
|
16874
|
+
const info = `<div class="${IC}-info">${showName ? `<span class="${IC}-info-filename">${name}</span>` : ''}${showSize
|
|
16875
|
+
? `<span class="${IC}-info-filesize">${item.size}</span>`
|
|
16755
16876
|
: ''}${showTime
|
|
16756
|
-
? `<span class="${
|
|
16877
|
+
? `<span class="${IC}-info-filechanged">${showTime}</span>`
|
|
16757
16878
|
: ''}</div>`;
|
|
16758
16879
|
return `<a
|
|
16759
16880
|
data-jodit-filebrowser-item="true"
|
|
16760
16881
|
data-is-file="${item.isImage ? 0 : 1}"
|
|
16761
16882
|
draggable="true"
|
|
16762
|
-
class="${
|
|
16883
|
+
class="${IC}"
|
|
16763
16884
|
href="${item.fileURL}"
|
|
16764
16885
|
data-source="${source_name}"
|
|
16765
16886
|
data-path="${item.path}"
|
|
@@ -17329,8 +17450,7 @@ var normalize = __webpack_require__(26);
|
|
|
17329
17450
|
|
|
17330
17451
|
|
|
17331
17452
|
|
|
17332
|
-
|
|
17333
|
-
const state_listeners_DEFAULT_SOURCE_NAME = 'default', ITEM_ACTIVE_CLASS = ITEM_CLASS + '_active_true';
|
|
17453
|
+
const state_listeners_DEFAULT_SOURCE_NAME = 'default';
|
|
17334
17454
|
function stateListeners() {
|
|
17335
17455
|
const { state, files, create, options, elementsMap } = this, getDomElement = (item) => {
|
|
17336
17456
|
const key = item.uniqueHashKey;
|
|
@@ -17347,57 +17467,69 @@ function stateListeners() {
|
|
|
17347
17467
|
};
|
|
17348
17468
|
state
|
|
17349
17469
|
.on(['change.currentPath', 'change.currentSource'], this.async.debounce(() => {
|
|
17470
|
+
if (this.o.saveStateInStorage &&
|
|
17471
|
+
this.o.saveStateInStorage.storeLastOpenedFolder) {
|
|
17472
|
+
this.storage
|
|
17473
|
+
.set('currentPath', this.state.currentPath)
|
|
17474
|
+
.set('currentSource', this.state.currentSource);
|
|
17475
|
+
}
|
|
17350
17476
|
this.loadTree();
|
|
17351
17477
|
}, this.defaultTimeout))
|
|
17352
17478
|
.on('beforeChange.activeElements', () => {
|
|
17353
17479
|
state.activeElements.forEach(item => {
|
|
17354
17480
|
const key = item.uniqueHashKey, { elm } = elementsMap[key];
|
|
17355
|
-
elm &&
|
|
17481
|
+
elm &&
|
|
17482
|
+
elm.classList.remove(files.getFullElName('item', 'active', true));
|
|
17356
17483
|
});
|
|
17357
17484
|
})
|
|
17358
17485
|
.on('change.activeElements', () => {
|
|
17359
17486
|
this.e.fire('changeSelection');
|
|
17360
17487
|
state.activeElements.forEach(item => {
|
|
17361
17488
|
const key = item.uniqueHashKey, { elm } = elementsMap[key];
|
|
17362
|
-
elm &&
|
|
17489
|
+
elm &&
|
|
17490
|
+
elm.classList.add(files.getFullElName('item', 'active', true));
|
|
17363
17491
|
});
|
|
17364
17492
|
})
|
|
17365
17493
|
.on('change.view', () => {
|
|
17366
|
-
files.
|
|
17367
|
-
|
|
17368
|
-
|
|
17369
|
-
|
|
17494
|
+
files.setMod('view', state.view);
|
|
17495
|
+
if (this.o.saveStateInStorage &&
|
|
17496
|
+
this.o.saveStateInStorage.storeView) {
|
|
17497
|
+
this.storage.set('view', state.view);
|
|
17498
|
+
}
|
|
17370
17499
|
})
|
|
17371
17500
|
.on('change.sortBy', () => {
|
|
17372
|
-
this.
|
|
17501
|
+
if (this.o.saveStateInStorage &&
|
|
17502
|
+
this.o.saveStateInStorage.storeSortBy) {
|
|
17503
|
+
this.storage.set('sortBy', state.sortBy);
|
|
17504
|
+
}
|
|
17373
17505
|
})
|
|
17374
17506
|
.on('change.elements', this.async.debounce(() => {
|
|
17375
|
-
dom/* Dom.detach */.i.detach(files);
|
|
17507
|
+
dom/* Dom.detach */.i.detach(files.container);
|
|
17376
17508
|
if (state.elements.length) {
|
|
17377
17509
|
state.elements.forEach(item => {
|
|
17378
|
-
this.files.appendChild(getDomElement(item));
|
|
17510
|
+
this.files.container.appendChild(getDomElement(item));
|
|
17379
17511
|
});
|
|
17380
17512
|
}
|
|
17381
17513
|
else {
|
|
17382
|
-
files.appendChild(create.div(
|
|
17514
|
+
files.container.appendChild(create.div(this.componentName + '_no-files_true', this.i18n('There are no files')));
|
|
17383
17515
|
}
|
|
17384
17516
|
}, this.defaultTimeout))
|
|
17385
17517
|
.on('change.sources', this.async.debounce(() => {
|
|
17386
|
-
dom/* Dom.detach */.i.detach(this.tree);
|
|
17518
|
+
dom/* Dom.detach */.i.detach(this.tree.container);
|
|
17387
17519
|
state.sources.forEach(source => {
|
|
17388
17520
|
const sourceName = source.name;
|
|
17389
17521
|
if (sourceName && sourceName !== state_listeners_DEFAULT_SOURCE_NAME) {
|
|
17390
|
-
this.tree.appendChild(create.div(
|
|
17522
|
+
this.tree.container.appendChild(create.div(this.tree.getFullElName('source-title'), sourceName));
|
|
17391
17523
|
}
|
|
17392
17524
|
source.folders.forEach((name) => {
|
|
17393
|
-
const folderElm = create.a(
|
|
17525
|
+
const folderElm = create.a(this.tree.getFullElName('item'), {
|
|
17394
17526
|
draggable: 'draggable',
|
|
17395
17527
|
href: '#',
|
|
17396
17528
|
'data-path': (0,normalize/* normalizePath */.AH)(source.path, name + '/'),
|
|
17397
17529
|
'data-name': name,
|
|
17398
17530
|
'data-source': sourceName,
|
|
17399
17531
|
'data-source-path': source.path
|
|
17400
|
-
}, create.span(
|
|
17532
|
+
}, create.span(this.tree.getFullElName('item-title'), name));
|
|
17401
17533
|
const action = (actionName) => (e) => {
|
|
17402
17534
|
this.e.fire(`${actionName}.filebrowser`, {
|
|
17403
17535
|
name,
|
|
@@ -17408,7 +17540,7 @@ function stateListeners() {
|
|
|
17408
17540
|
e.preventDefault();
|
|
17409
17541
|
};
|
|
17410
17542
|
this.e.on(folderElm, 'click', action('openFolder'));
|
|
17411
|
-
this.tree.appendChild(folderElm);
|
|
17543
|
+
this.tree.container.appendChild(folderElm);
|
|
17412
17544
|
if (name === '..' || name === '.') {
|
|
17413
17545
|
return;
|
|
17414
17546
|
}
|
|
@@ -17444,7 +17576,7 @@ function stateListeners() {
|
|
|
17444
17576
|
source: sourceName
|
|
17445
17577
|
});
|
|
17446
17578
|
});
|
|
17447
|
-
this.tree.
|
|
17579
|
+
this.tree.append(button);
|
|
17448
17580
|
}
|
|
17449
17581
|
});
|
|
17450
17582
|
}, this.defaultTimeout));
|
|
@@ -18105,8 +18237,7 @@ function openImageEditor(href, name, path, source, onSuccess, onFailed) {
|
|
|
18105
18237
|
|
|
18106
18238
|
|
|
18107
18239
|
|
|
18108
|
-
|
|
18109
|
-
const CLASS_PREVIEW = F_CLASS + '_preview_', preview_tpl_next = (next = 'next', right = 'right') => `<div class="${CLASS_PREVIEW}navigation ${CLASS_PREVIEW}navigation-${next}">` +
|
|
18240
|
+
const CLASS_PREVIEW = 'jodit-filebrowser-preview', preview_tpl_next = (next = 'next', right = 'right') => `<div class="${CLASS_PREVIEW}__navigation ${CLASS_PREVIEW}__navigation_arrow_${next}">` +
|
|
18110
18241
|
'' +
|
|
18111
18242
|
ui/* Icon.get */.JO.get('angle-' + right) +
|
|
18112
18243
|
'</a>';
|
|
@@ -18123,6 +18254,11 @@ const CLASS_PREVIEW = F_CLASS + '_preview_', preview_tpl_next = (next = 'next',
|
|
|
18123
18254
|
let item = a;
|
|
18124
18255
|
const opt = self.options, ga = (key) => (0,helpers.attr)(item, key) || '';
|
|
18125
18256
|
self.async.setTimeout(() => {
|
|
18257
|
+
const selectedItem = elementToItem(a, self.elementsMap);
|
|
18258
|
+
if (!selectedItem) {
|
|
18259
|
+
return;
|
|
18260
|
+
}
|
|
18261
|
+
self.state.activeElements = [selectedItem];
|
|
18126
18262
|
contextmenu.show(e.clientX, e.clientY, [
|
|
18127
18263
|
ga('data-is-file') !== '1' &&
|
|
18128
18264
|
opt.editImage &&
|
|
@@ -18165,7 +18301,7 @@ const CLASS_PREVIEW = F_CLASS + '_preview_', preview_tpl_next = (next = 'next',
|
|
|
18165
18301
|
fullsize: self.o.fullsize,
|
|
18166
18302
|
language: self.o.language,
|
|
18167
18303
|
buttons: ['fullsize', 'dialog.close']
|
|
18168
|
-
}), temp_content = self.c.div(
|
|
18304
|
+
}), temp_content = self.c.div(CLASS_PREVIEW, '<div class="jodit-icon_loader"></div>'), preview_box = self.c.div(CLASS_PREVIEW + '__box'), next = self.c.fromHTML(preview_tpl_next()), prev = self.c.fromHTML(preview_tpl_next('prev', 'left')), addLoadHandler = (src) => {
|
|
18169
18305
|
const image = self.c.element('img');
|
|
18170
18306
|
image.setAttribute('src', src);
|
|
18171
18307
|
const onload = () => {
|
|
@@ -18176,10 +18312,10 @@ const CLASS_PREVIEW = F_CLASS + '_preview_', preview_tpl_next = (next = 'next',
|
|
|
18176
18312
|
self.e.off(image, 'load');
|
|
18177
18313
|
dom/* Dom.detach */.i.detach(temp_content);
|
|
18178
18314
|
if (opt.showPreviewNavigation) {
|
|
18179
|
-
if (dom/* Dom.prevWithClass */.i.prevWithClass(item,
|
|
18315
|
+
if (dom/* Dom.prevWithClass */.i.prevWithClass(item, self.files.getFullElName('item'))) {
|
|
18180
18316
|
temp_content.appendChild(prev);
|
|
18181
18317
|
}
|
|
18182
|
-
if (dom/* Dom.nextWithClass */.i.nextWithClass(item,
|
|
18318
|
+
if (dom/* Dom.nextWithClass */.i.nextWithClass(item, self.files.getFullElName('item'))) {
|
|
18183
18319
|
temp_content.appendChild(next);
|
|
18184
18320
|
}
|
|
18185
18321
|
}
|
|
@@ -18194,25 +18330,25 @@ const CLASS_PREVIEW = F_CLASS + '_preview_', preview_tpl_next = (next = 'next',
|
|
|
18194
18330
|
}
|
|
18195
18331
|
};
|
|
18196
18332
|
self.e.on([next, prev], 'click', function () {
|
|
18197
|
-
if (this
|
|
18198
|
-
'
|
|
18199
|
-
item = dom/* Dom.nextWithClass */.i.nextWithClass(item, ITEM_CLASS);
|
|
18333
|
+
if (this === next) {
|
|
18334
|
+
item = dom/* Dom.nextWithClass */.i.nextWithClass(item, self.files.getFullElName('item'));
|
|
18200
18335
|
}
|
|
18201
18336
|
else {
|
|
18202
|
-
item = dom/* Dom.prevWithClass */.i.prevWithClass(item,
|
|
18337
|
+
item = dom/* Dom.prevWithClass */.i.prevWithClass(item, self.files.getFullElName('item'));
|
|
18203
18338
|
}
|
|
18204
18339
|
if (!item) {
|
|
18205
18340
|
throw (0,helpers.error)('Need element');
|
|
18206
18341
|
}
|
|
18207
18342
|
dom/* Dom.detach */.i.detach(temp_content);
|
|
18208
18343
|
dom/* Dom.detach */.i.detach(preview_box);
|
|
18209
|
-
temp_content.innerHTML =
|
|
18344
|
+
temp_content.innerHTML =
|
|
18345
|
+
'<div class="jodit-icon_loader"></div>';
|
|
18210
18346
|
addLoadHandler(ga('href'));
|
|
18211
18347
|
});
|
|
18212
18348
|
self.e.on('beforeDestruct', () => {
|
|
18213
18349
|
preview.destruct();
|
|
18214
18350
|
});
|
|
18215
|
-
preview.container.classList.add(
|
|
18351
|
+
preview.container.classList.add(CLASS_PREVIEW + '__dialog');
|
|
18216
18352
|
preview.setContent(temp_content);
|
|
18217
18353
|
preview.setPosition();
|
|
18218
18354
|
preview.open();
|
|
@@ -18237,9 +18373,7 @@ const CLASS_PREVIEW = F_CLASS + '_preview_', preview_tpl_next = (next = 'next',
|
|
|
18237
18373
|
}
|
|
18238
18374
|
]);
|
|
18239
18375
|
}, self.defaultTimeout);
|
|
18240
|
-
self === null || self === void 0 ? void 0 : self.e.on('beforeDestruct', () =>
|
|
18241
|
-
contextmenu.destruct();
|
|
18242
|
-
});
|
|
18376
|
+
self === null || self === void 0 ? void 0 : self.dialog.e.on('beforeClose', () => contextmenu.close()).on('beforeDestruct', () => contextmenu.destruct());
|
|
18243
18377
|
e.stopPropagation();
|
|
18244
18378
|
e.preventDefault();
|
|
18245
18379
|
return false;
|
|
@@ -18255,17 +18389,16 @@ const CLASS_PREVIEW = F_CLASS + '_preview_', preview_tpl_next = (next = 'next',
|
|
|
18255
18389
|
|
|
18256
18390
|
|
|
18257
18391
|
|
|
18258
|
-
|
|
18259
18392
|
const getItem = (node, root, tag = 'a') => dom/* Dom.closest */.i.closest(node, elm => dom/* Dom.isTag */.i.isTag(elm, tag), root);
|
|
18393
|
+
const elementToItem = (elm, elementsMap) => {
|
|
18394
|
+
const { key } = elm.dataset, { item } = elementsMap[key || ''];
|
|
18395
|
+
return item;
|
|
18396
|
+
};
|
|
18260
18397
|
function nativeListeners() {
|
|
18261
18398
|
let dragElement = false;
|
|
18262
18399
|
const self = this;
|
|
18263
|
-
const elementToItem = (elm) => {
|
|
18264
|
-
const { key } = elm.dataset, { item } = self.elementsMap[key || ''];
|
|
18265
|
-
return item;
|
|
18266
|
-
};
|
|
18267
18400
|
self.e
|
|
18268
|
-
.on(self.tree, 'dragstart', (e) => {
|
|
18401
|
+
.on(self.tree.container, 'dragstart', (e) => {
|
|
18269
18402
|
const a = getItem(e.target, self.dialog.container);
|
|
18270
18403
|
if (!a) {
|
|
18271
18404
|
return;
|
|
@@ -18274,14 +18407,14 @@ function nativeListeners() {
|
|
|
18274
18407
|
dragElement = a;
|
|
18275
18408
|
}
|
|
18276
18409
|
})
|
|
18277
|
-
.on(self.tree, 'drop', (e) => {
|
|
18410
|
+
.on(self.tree.container, 'drop', (e) => {
|
|
18278
18411
|
if ((self.o.moveFile || self.o.moveFolder) && dragElement) {
|
|
18279
18412
|
let path = (0,helpers.attr)(dragElement, '-path') || '';
|
|
18280
18413
|
if (!self.o.moveFolder &&
|
|
18281
|
-
dragElement.classList.contains(
|
|
18414
|
+
dragElement.classList.contains(this.tree.getFullElName('item'))) {
|
|
18282
18415
|
return false;
|
|
18283
18416
|
}
|
|
18284
|
-
if (dragElement.classList.contains(
|
|
18417
|
+
if (dragElement.classList.contains(this.files.getFullElName('item'))) {
|
|
18285
18418
|
path += (0,helpers.attr)(dragElement, '-name');
|
|
18286
18419
|
if (!self.o.moveFile) {
|
|
18287
18420
|
return false;
|
|
@@ -18292,25 +18425,25 @@ function nativeListeners() {
|
|
|
18292
18425
|
return;
|
|
18293
18426
|
}
|
|
18294
18427
|
self.dataProvider
|
|
18295
|
-
.move(path, (0,helpers.attr)(a, '-path') || '', (0,helpers.attr)(a, '-source') || '', dragElement.classList.contains(
|
|
18428
|
+
.move(path, (0,helpers.attr)(a, '-path') || '', (0,helpers.attr)(a, '-source') || '', dragElement.classList.contains(this.files.getFullElName('item')))
|
|
18296
18429
|
.then(() => {
|
|
18297
18430
|
self.loadTree();
|
|
18298
18431
|
}, self.status);
|
|
18299
18432
|
dragElement = false;
|
|
18300
18433
|
}
|
|
18301
18434
|
})
|
|
18302
|
-
.on(self.files, 'contextmenu', context_menu(self))
|
|
18303
|
-
.on(self.files, 'click', (e) => {
|
|
18435
|
+
.on(self.files.container, 'contextmenu', context_menu(self))
|
|
18436
|
+
.on(self.files.container, 'click', (e) => {
|
|
18304
18437
|
if (!(0,helpers.ctrlKey)(e)) {
|
|
18305
18438
|
this.state.activeElements = [];
|
|
18306
18439
|
}
|
|
18307
18440
|
})
|
|
18308
|
-
.on(self.files, 'click', (e) => {
|
|
18441
|
+
.on(self.files.container, 'click', (e) => {
|
|
18309
18442
|
const a = getItem(e.target, self.dialog.container);
|
|
18310
18443
|
if (!a) {
|
|
18311
18444
|
return;
|
|
18312
18445
|
}
|
|
18313
|
-
const item = elementToItem(a);
|
|
18446
|
+
const item = elementToItem(a, self.elementsMap);
|
|
18314
18447
|
if (!item) {
|
|
18315
18448
|
return;
|
|
18316
18449
|
}
|
|
@@ -18326,7 +18459,7 @@ function nativeListeners() {
|
|
|
18326
18459
|
e.stopPropagation();
|
|
18327
18460
|
return false;
|
|
18328
18461
|
})
|
|
18329
|
-
.on(self.files, 'dragstart', (e) => {
|
|
18462
|
+
.on(self.files.container, 'dragstart', (e) => {
|
|
18330
18463
|
if (self.o.moveFile) {
|
|
18331
18464
|
const a = getItem(e.target, self.dialog.container);
|
|
18332
18465
|
if (!a) {
|
|
@@ -18465,6 +18598,43 @@ function selfListeners() {
|
|
|
18465
18598
|
});
|
|
18466
18599
|
}
|
|
18467
18600
|
|
|
18601
|
+
;// CONCATENATED MODULE: ./src/modules/file-browser/ui/files/files.ts
|
|
18602
|
+
/*!
|
|
18603
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18604
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18605
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18606
|
+
*/
|
|
18607
|
+
|
|
18608
|
+
|
|
18609
|
+
class FileBrowserFiles extends ui/* UIGroup */.qe {
|
|
18610
|
+
className() {
|
|
18611
|
+
return 'FilebrowserFiles';
|
|
18612
|
+
}
|
|
18613
|
+
}
|
|
18614
|
+
|
|
18615
|
+
;// CONCATENATED MODULE: ./src/modules/file-browser/ui/tree/tree.ts
|
|
18616
|
+
/*!
|
|
18617
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18618
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18619
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18620
|
+
*/
|
|
18621
|
+
|
|
18622
|
+
|
|
18623
|
+
class FileBrowserTree extends ui/* UIGroup */.qe {
|
|
18624
|
+
className() {
|
|
18625
|
+
return 'FilebrowserTree';
|
|
18626
|
+
}
|
|
18627
|
+
}
|
|
18628
|
+
|
|
18629
|
+
;// CONCATENATED MODULE: ./src/modules/file-browser/ui/index.ts
|
|
18630
|
+
/*!
|
|
18631
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
18632
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
18633
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
18634
|
+
*/
|
|
18635
|
+
|
|
18636
|
+
|
|
18637
|
+
|
|
18468
18638
|
;// CONCATENATED MODULE: ./src/modules/file-browser/file-browser.ts
|
|
18469
18639
|
/*!
|
|
18470
18640
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -18493,11 +18663,11 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18493
18663
|
constructor(options) {
|
|
18494
18664
|
var _a;
|
|
18495
18665
|
super(options);
|
|
18496
|
-
this.loader = this.c.div(
|
|
18497
|
-
this.browser = this.c.div(
|
|
18498
|
-
this.status_line = this.c.div(
|
|
18499
|
-
this.tree = this
|
|
18500
|
-
this.files = this
|
|
18666
|
+
this.loader = this.c.div(this.getFullElName('loader'), '<div class="jodit-icon_loader"></div>');
|
|
18667
|
+
this.browser = this.c.div(this.componentName);
|
|
18668
|
+
this.status_line = this.c.div(this.getFullElName('status'));
|
|
18669
|
+
this.tree = new FileBrowserTree(this);
|
|
18670
|
+
this.files = new FileBrowserFiles(this);
|
|
18501
18671
|
this.state = events/* ObserveObject.create */.P5.create({
|
|
18502
18672
|
currentPath: '',
|
|
18503
18673
|
currentSource: DEFAULT_SOURCE_NAME,
|
|
@@ -18526,7 +18696,7 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18526
18696
|
this.attachEvents(options);
|
|
18527
18697
|
const self = this;
|
|
18528
18698
|
self.options = (0,helpers.ConfigProto)(options || {}, config/* Config.defaultOptions.filebrowser */.D.defaultOptions.filebrowser);
|
|
18529
|
-
self.storage = Storage.makeStorage(this.o.saveStateInStorage);
|
|
18699
|
+
self.storage = Storage.makeStorage(Boolean(this.o.saveStateInStorage), this.componentName);
|
|
18530
18700
|
self.dataProvider = makeDataProvider(self, self.options);
|
|
18531
18701
|
self.dialog = new Dialog({
|
|
18532
18702
|
fullsize: self.o.fullsize,
|
|
@@ -18543,10 +18713,11 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18543
18713
|
this.e.fire(proxyEvent);
|
|
18544
18714
|
});
|
|
18545
18715
|
});
|
|
18716
|
+
self.browser.component = this;
|
|
18546
18717
|
if (self.o.showFoldersPanel) {
|
|
18547
|
-
self.browser.appendChild(self.tree);
|
|
18718
|
+
self.browser.appendChild(self.tree.container);
|
|
18548
18719
|
}
|
|
18549
|
-
self.browser.appendChild(self.files);
|
|
18720
|
+
self.browser.appendChild(self.files.container);
|
|
18550
18721
|
self.browser.appendChild(self.status_line);
|
|
18551
18722
|
selfListeners.call(self);
|
|
18552
18723
|
nativeListeners.call(self);
|
|
@@ -18572,7 +18743,13 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18572
18743
|
this.options[key] = (0,helpers.ConfigProto)(this.options[key], this.o.ajax);
|
|
18573
18744
|
}
|
|
18574
18745
|
});
|
|
18575
|
-
const
|
|
18746
|
+
const { storeView, storeSortBy, storeLastOpenedFolder } = this.o
|
|
18747
|
+
.saveStateInStorage || {
|
|
18748
|
+
storeLastOpenedFolder: false,
|
|
18749
|
+
storeView: false,
|
|
18750
|
+
storeSortBy: false
|
|
18751
|
+
};
|
|
18752
|
+
const view = storeView && this.storage.get('view');
|
|
18576
18753
|
if (view && this.o.view == null) {
|
|
18577
18754
|
self.state.view = view === 'list' ? 'list' : 'tiles';
|
|
18578
18755
|
}
|
|
@@ -18580,7 +18757,7 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18580
18757
|
self.state.view = self.o.view === 'list' ? 'list' : 'tiles';
|
|
18581
18758
|
}
|
|
18582
18759
|
this.state.fire('change.view');
|
|
18583
|
-
const sortBy = self.storage.get(
|
|
18760
|
+
const sortBy = storeSortBy && self.storage.get('sortBy');
|
|
18584
18761
|
if (sortBy) {
|
|
18585
18762
|
const parts = sortBy.split('-');
|
|
18586
18763
|
self.state.sortBy = ['changed', 'name', 'size'].includes(parts[0])
|
|
@@ -18590,14 +18767,19 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18590
18767
|
else {
|
|
18591
18768
|
self.state.sortBy = self.o.sortBy || 'changed-desc';
|
|
18592
18769
|
}
|
|
18770
|
+
if (storeLastOpenedFolder) {
|
|
18771
|
+
const currentPath = self.storage.get('currentPath'), currentSource = self.storage.get('currentSource');
|
|
18772
|
+
self.state.currentPath = currentPath !== null && currentPath !== void 0 ? currentPath : '';
|
|
18773
|
+
self.state.currentSource = currentSource !== null && currentSource !== void 0 ? currentSource : '';
|
|
18774
|
+
}
|
|
18593
18775
|
self.initUploader(self);
|
|
18594
18776
|
}
|
|
18595
18777
|
className() {
|
|
18596
|
-
return '
|
|
18778
|
+
return 'Filebrowser';
|
|
18597
18779
|
}
|
|
18598
18780
|
async loadItems() {
|
|
18599
|
-
this.files.
|
|
18600
|
-
this.files.appendChild(this.loader.cloneNode(true));
|
|
18781
|
+
this.files.setMod('active', true);
|
|
18782
|
+
this.files.container.appendChild(this.loader.cloneNode(true));
|
|
18601
18783
|
return this.dataProvider
|
|
18602
18784
|
.items(this.state.currentPath, this.state.currentSource, {
|
|
18603
18785
|
sortBy: this.state.sortBy,
|
|
@@ -18618,9 +18800,9 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18618
18800
|
this.uploader.setPath(this.state.currentPath);
|
|
18619
18801
|
this.uploader.setSource(this.state.currentSource);
|
|
18620
18802
|
}
|
|
18621
|
-
this.tree.
|
|
18622
|
-
dom/* Dom.detach */.i.detach(this.tree);
|
|
18623
|
-
this.tree.appendChild(this.loader.cloneNode(true));
|
|
18803
|
+
this.tree.setMod('active', true);
|
|
18804
|
+
dom/* Dom.detach */.i.detach(this.tree.container);
|
|
18805
|
+
this.tree.container.appendChild(this.loader.cloneNode(true));
|
|
18624
18806
|
const items = this.loadItems();
|
|
18625
18807
|
if (this.o.showFoldersPanel) {
|
|
18626
18808
|
const tree = this.dataProvider
|
|
@@ -18635,7 +18817,7 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18635
18817
|
return Promise.all([tree, items]).catch(helpers.error);
|
|
18636
18818
|
}
|
|
18637
18819
|
else {
|
|
18638
|
-
this.tree.
|
|
18820
|
+
this.tree.setMod('active', false);
|
|
18639
18821
|
}
|
|
18640
18822
|
return items.catch(helpers.error);
|
|
18641
18823
|
}
|
|
@@ -18680,16 +18862,17 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18680
18862
|
if (!(0,helpers.isString)(message)) {
|
|
18681
18863
|
message = message.message;
|
|
18682
18864
|
}
|
|
18683
|
-
this.
|
|
18684
|
-
this.status_line.classList.
|
|
18865
|
+
const successClass = this.getFullElName('status', 'success', true), activeClass = this.getFullElName('status', 'active', true);
|
|
18866
|
+
this.status_line.classList.remove(successClass);
|
|
18867
|
+
this.status_line.classList.add(activeClass);
|
|
18685
18868
|
const messageBox = this.c.div();
|
|
18686
18869
|
messageBox.textContent = message;
|
|
18687
18870
|
this.status_line.appendChild(messageBox);
|
|
18688
18871
|
if (success) {
|
|
18689
|
-
this.status_line.classList.add(
|
|
18872
|
+
this.status_line.classList.add(successClass);
|
|
18690
18873
|
}
|
|
18691
18874
|
this.async.setTimeout(() => {
|
|
18692
|
-
this.status_line.classList.remove(
|
|
18875
|
+
this.status_line.classList.remove(activeClass);
|
|
18693
18876
|
dom/* Dom.detach */.i.detach(this.status_line);
|
|
18694
18877
|
}, {
|
|
18695
18878
|
timeout: this.o.howLongShowMsg,
|
|
@@ -18706,9 +18889,9 @@ class FileBrowser extends ViewWithToolbar {
|
|
|
18706
18889
|
}
|
|
18707
18890
|
let localTimeout = 0;
|
|
18708
18891
|
this.e
|
|
18709
|
-
.off(this.files, 'dblclick')
|
|
18710
|
-
.on(this.files, 'dblclick', this.onSelect(callback))
|
|
18711
|
-
.on(this.files, 'touchstart', () => {
|
|
18892
|
+
.off(this.files.container, 'dblclick')
|
|
18893
|
+
.on(this.files.container, 'dblclick', this.onSelect(callback))
|
|
18894
|
+
.on(this.files.container, 'touchstart', () => {
|
|
18712
18895
|
const now = new Date().getTime();
|
|
18713
18896
|
if (now - localTimeout < constants.EMULATE_DBLCLICK_TIMEOUT) {
|
|
18714
18897
|
this.onSelect(callback)();
|
|
@@ -21067,29 +21250,29 @@ Jodit.core = {
|
|
|
21067
21250
|
|
|
21068
21251
|
;// CONCATENATED MODULE: ./src/langs/index.ts
|
|
21069
21252
|
|
|
21070
|
-
const en = __webpack_require__(
|
|
21253
|
+
const en = __webpack_require__(45);
|
|
21071
21254
|
let exp = {
|
|
21072
21255
|
en
|
|
21073
21256
|
};
|
|
21074
21257
|
if (true) {
|
|
21075
|
-
const ar = __webpack_require__(
|
|
21076
|
-
const cs_cz = __webpack_require__(
|
|
21077
|
-
const de = __webpack_require__(
|
|
21078
|
-
const es = __webpack_require__(
|
|
21079
|
-
const fr = __webpack_require__(
|
|
21080
|
-
const he = __webpack_require__(
|
|
21081
|
-
const hu = __webpack_require__(
|
|
21082
|
-
const id = __webpack_require__(
|
|
21083
|
-
const it = __webpack_require__(
|
|
21084
|
-
const ja = __webpack_require__(
|
|
21085
|
-
const ko = __webpack_require__(
|
|
21086
|
-
const nl = __webpack_require__(
|
|
21087
|
-
const pl = __webpack_require__(
|
|
21088
|
-
const pt_br = __webpack_require__(
|
|
21089
|
-
const ru = __webpack_require__(
|
|
21090
|
-
const tr = __webpack_require__(
|
|
21091
|
-
const zh_cn = __webpack_require__(
|
|
21092
|
-
const zh_tw = __webpack_require__(
|
|
21258
|
+
const ar = __webpack_require__(46);
|
|
21259
|
+
const cs_cz = __webpack_require__(47);
|
|
21260
|
+
const de = __webpack_require__(48);
|
|
21261
|
+
const es = __webpack_require__(49);
|
|
21262
|
+
const fr = __webpack_require__(50);
|
|
21263
|
+
const he = __webpack_require__(51);
|
|
21264
|
+
const hu = __webpack_require__(52);
|
|
21265
|
+
const id = __webpack_require__(53);
|
|
21266
|
+
const it = __webpack_require__(54);
|
|
21267
|
+
const ja = __webpack_require__(55);
|
|
21268
|
+
const ko = __webpack_require__(56);
|
|
21269
|
+
const nl = __webpack_require__(57);
|
|
21270
|
+
const pl = __webpack_require__(58);
|
|
21271
|
+
const pt_br = __webpack_require__(59);
|
|
21272
|
+
const ru = __webpack_require__(60);
|
|
21273
|
+
const tr = __webpack_require__(61);
|
|
21274
|
+
const zh_cn = __webpack_require__(62);
|
|
21275
|
+
const zh_tw = __webpack_require__(63);
|
|
21093
21276
|
exp = {
|
|
21094
21277
|
ar,
|
|
21095
21278
|
cs_cz,
|
|
@@ -21444,7 +21627,7 @@ function focus_focus(editor) {
|
|
|
21444
21627
|
|
|
21445
21628
|
config/* Config.prototype.controls.classSpan */.D.prototype.controls.classSpan = {
|
|
21446
21629
|
command: 'applyClassName',
|
|
21447
|
-
icon: __webpack_require__(
|
|
21630
|
+
icon: __webpack_require__(64),
|
|
21448
21631
|
exec: helpers.memorizeExec,
|
|
21449
21632
|
list: [
|
|
21450
21633
|
'enabled',
|
|
@@ -23170,7 +23353,7 @@ function copyFormat(editor) {
|
|
|
23170
23353
|
|
|
23171
23354
|
|
|
23172
23355
|
// EXTERNAL MODULE: ./src/modules/widget/index.ts + 3 modules
|
|
23173
|
-
var widget = __webpack_require__(
|
|
23356
|
+
var widget = __webpack_require__(65);
|
|
23174
23357
|
;// CONCATENATED MODULE: ./src/plugins/color.ts
|
|
23175
23358
|
/*!
|
|
23176
23359
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -23328,6 +23511,7 @@ function color(editor) {
|
|
|
23328
23511
|
|
|
23329
23512
|
|
|
23330
23513
|
|
|
23514
|
+
|
|
23331
23515
|
class DragAndDrop extends Plugin {
|
|
23332
23516
|
constructor() {
|
|
23333
23517
|
super(...arguments);
|
|
@@ -23362,7 +23546,7 @@ class DragAndDrop extends Plugin {
|
|
|
23362
23546
|
this.startDragPoint.x = event.clientX;
|
|
23363
23547
|
this.startDragPoint.y = event.clientY;
|
|
23364
23548
|
if (dom/* Dom.isElement */.i.isElement(target) &&
|
|
23365
|
-
target.classList.contains('
|
|
23549
|
+
target.classList.contains(FileBrowserFiles.prototype.getFullElName('item'))) {
|
|
23366
23550
|
target = target.querySelector('img');
|
|
23367
23551
|
}
|
|
23368
23552
|
if (dom/* Dom.isTag */.i.isTag(target, 'img')) {
|
|
@@ -24734,7 +24918,7 @@ function positionTab(editor) {
|
|
|
24734
24918
|
|
|
24735
24919
|
|
|
24736
24920
|
// EXTERNAL MODULE: ./src/plugins/image/helpers.ts
|
|
24737
|
-
var image_helpers = __webpack_require__(
|
|
24921
|
+
var image_helpers = __webpack_require__(66);
|
|
24738
24922
|
;// CONCATENATED MODULE: ./src/plugins/image/image-properties/image-properties.ts
|
|
24739
24923
|
/*!
|
|
24740
24924
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -25431,11 +25615,12 @@ config/* Config.prototype.toolbarInlineForSelection */.D.prototype.toolbarInline
|
|
|
25431
25615
|
config/* Config.prototype.toolbarInlineDisableFor */.D.prototype.toolbarInlineDisableFor = [];
|
|
25432
25616
|
config/* Config.prototype.toolbarInlineDisabledButtons */.D.prototype.toolbarInlineDisabledButtons = ['source'];
|
|
25433
25617
|
config/* Config.prototype.popup */.D.prototype.popup = {
|
|
25434
|
-
a: __webpack_require__(
|
|
25435
|
-
img: __webpack_require__(
|
|
25436
|
-
cells: __webpack_require__(
|
|
25437
|
-
|
|
25438
|
-
|
|
25618
|
+
a: __webpack_require__(67)/* ["default"] */ .Z,
|
|
25619
|
+
img: __webpack_require__(68)/* ["default"] */ .Z,
|
|
25620
|
+
cells: __webpack_require__(69)/* ["default"] */ .Z,
|
|
25621
|
+
toolbar: __webpack_require__(70)/* ["default"] */ .Z,
|
|
25622
|
+
jodit: __webpack_require__(71)/* ["default"] */ .Z,
|
|
25623
|
+
'jodit-media': __webpack_require__(71)/* ["default"] */ .Z,
|
|
25439
25624
|
selection: [
|
|
25440
25625
|
'bold',
|
|
25441
25626
|
'underline',
|
|
@@ -25553,6 +25738,7 @@ class inlinePopup extends Plugin {
|
|
|
25553
25738
|
}
|
|
25554
25739
|
})
|
|
25555
25740
|
.on('hidePopup', this.hidePopup)
|
|
25741
|
+
.on('showInlineToolbar', this.showInlineToolbar)
|
|
25556
25742
|
.on('showPopup', (elm, rect, type) => {
|
|
25557
25743
|
this.showPopup(rect, type || ((0,helpers.isString)(elm) ? elm : elm.nodeName), (0,helpers.isString)(elm) ? undefined : elm);
|
|
25558
25744
|
})
|
|
@@ -25628,6 +25814,15 @@ class inlinePopup extends Plugin {
|
|
|
25628
25814
|
removeListenersForElements() {
|
|
25629
25815
|
this.j.e.off(this.elmsList.map(e => (0,helpers.camelCase)(`click_${e}`)).join(' '), this.onClick);
|
|
25630
25816
|
}
|
|
25817
|
+
showInlineToolbar(bound) {
|
|
25818
|
+
this.showPopup(() => {
|
|
25819
|
+
if (bound) {
|
|
25820
|
+
return bound;
|
|
25821
|
+
}
|
|
25822
|
+
const { range } = this.j.s;
|
|
25823
|
+
return range.getBoundingClientRect();
|
|
25824
|
+
}, 'toolbar');
|
|
25825
|
+
}
|
|
25631
25826
|
}
|
|
25632
25827
|
(0,tslib_es6/* __decorate */.gn)([
|
|
25633
25828
|
decorators.autobind
|
|
@@ -25651,6 +25846,9 @@ class inlinePopup extends Plugin {
|
|
|
25651
25846
|
(0,tslib_es6/* __decorate */.gn)([
|
|
25652
25847
|
(0,decorators.debounce)(ctx => ctx.defaultTimeout)
|
|
25653
25848
|
], inlinePopup.prototype, "onSelectionChange", null);
|
|
25849
|
+
(0,tslib_es6/* __decorate */.gn)([
|
|
25850
|
+
decorators.autobind
|
|
25851
|
+
], inlinePopup.prototype, "showInlineToolbar", null);
|
|
25654
25852
|
|
|
25655
25853
|
;// CONCATENATED MODULE: ./src/plugins/justify.ts
|
|
25656
25854
|
/*!
|
|
@@ -25866,7 +26064,7 @@ class limit extends Plugin {
|
|
|
25866
26064
|
], limit.prototype, "checkPreventChanging", null);
|
|
25867
26065
|
|
|
25868
26066
|
// EXTERNAL MODULE: ./src/core/ui/form/index.ts + 11 modules
|
|
25869
|
-
var ui_form = __webpack_require__(
|
|
26067
|
+
var ui_form = __webpack_require__(44);
|
|
25870
26068
|
;// CONCATENATED MODULE: ./src/plugins/link/template.ts
|
|
25871
26069
|
/*!
|
|
25872
26070
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -27849,8 +28047,6 @@ config/* Config.prototype.minHeight */.D.prototype.minHeight = 200;
|
|
|
27849
28047
|
config/* Config.prototype.maxHeight */.D.prototype.maxHeight = 'auto';
|
|
27850
28048
|
config/* Config.prototype.saveHeightInStorage */.D.prototype.saveHeightInStorage = false;
|
|
27851
28049
|
|
|
27852
|
-
// EXTERNAL MODULE: ./src/plugins/size/assests/resize-handler.svg
|
|
27853
|
-
var resize_handler = __webpack_require__(70);
|
|
27854
28050
|
;// CONCATENATED MODULE: ./src/plugins/size/resize-handler.ts
|
|
27855
28051
|
/*!
|
|
27856
28052
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -27872,7 +28068,7 @@ let resizeHandler = class resizeHandler extends Plugin {
|
|
|
27872
28068
|
w: 0,
|
|
27873
28069
|
h: 0
|
|
27874
28070
|
};
|
|
27875
|
-
this.handle = this.j.c.div('jodit-editor__resize', resize_handler);
|
|
28071
|
+
this.handle = this.j.c.div('jodit-editor__resize', ui/* Icon.get */.JO.get('resize_handler'));
|
|
27876
28072
|
}
|
|
27877
28073
|
afterInit(editor) {
|
|
27878
28074
|
const { height, width, allowResizeX } = editor.o;
|
|
@@ -27957,7 +28153,8 @@ let size = class size extends Plugin {
|
|
|
27957
28153
|
.on('afterInit.size changePlace.size', this.initialize, undefined, true)
|
|
27958
28154
|
.on(editor.ow, 'load.size', this.resizeWorkspaces)
|
|
27959
28155
|
.on('afterInit.size resize.size afterUpdateToolbar.size ' +
|
|
27960
|
-
'scroll.size afterResize.size
|
|
28156
|
+
'scroll.size afterResize.size', this.resizeWorkspaces)
|
|
28157
|
+
.on('toggleFullSize.size toggleToolbar.size', this.resizeWorkspaceImd);
|
|
27961
28158
|
this.initialize();
|
|
27962
28159
|
}
|
|
27963
28160
|
initialize() {
|
|
@@ -28051,6 +28248,9 @@ let size = class size extends Plugin {
|
|
|
28051
28248
|
jodit.e.off(jodit.ow, 'load.size', this.resizeWorkspaces).off('.size');
|
|
28052
28249
|
}
|
|
28053
28250
|
};
|
|
28251
|
+
(0,tslib_es6/* __decorate */.gn)([
|
|
28252
|
+
decorators.autobind
|
|
28253
|
+
], size.prototype, "resizeWorkspaceImd", null);
|
|
28054
28254
|
size = (0,tslib_es6/* __decorate */.gn)([
|
|
28055
28255
|
decorators.autobind
|
|
28056
28256
|
], size);
|
|
@@ -30516,167 +30716,169 @@ class xpath extends Plugin {
|
|
|
30516
30716
|
|
|
30517
30717
|
|
|
30518
30718
|
// EXTERNAL MODULE: ./src/styles/icons/about.svg
|
|
30519
|
-
var icons_about = __webpack_require__(
|
|
30719
|
+
var icons_about = __webpack_require__(72);
|
|
30520
30720
|
// EXTERNAL MODULE: ./src/styles/icons/addcolumn.svg
|
|
30521
|
-
var addcolumn = __webpack_require__(
|
|
30721
|
+
var addcolumn = __webpack_require__(73);
|
|
30522
30722
|
// EXTERNAL MODULE: ./src/styles/icons/addrow.svg
|
|
30523
|
-
var addrow = __webpack_require__(
|
|
30723
|
+
var addrow = __webpack_require__(74);
|
|
30524
30724
|
// EXTERNAL MODULE: ./src/styles/icons/angle-down.svg
|
|
30525
|
-
var angle_down = __webpack_require__(
|
|
30725
|
+
var angle_down = __webpack_require__(75);
|
|
30526
30726
|
// EXTERNAL MODULE: ./src/styles/icons/angle-left.svg
|
|
30527
|
-
var angle_left = __webpack_require__(
|
|
30727
|
+
var angle_left = __webpack_require__(76);
|
|
30528
30728
|
// EXTERNAL MODULE: ./src/styles/icons/angle-right.svg
|
|
30529
|
-
var angle_right = __webpack_require__(
|
|
30729
|
+
var angle_right = __webpack_require__(77);
|
|
30530
30730
|
// EXTERNAL MODULE: ./src/styles/icons/angle-up.svg
|
|
30531
|
-
var angle_up = __webpack_require__(
|
|
30731
|
+
var angle_up = __webpack_require__(78);
|
|
30532
30732
|
// EXTERNAL MODULE: ./src/styles/icons/arrows-alt.svg
|
|
30533
|
-
var arrows_alt = __webpack_require__(
|
|
30733
|
+
var arrows_alt = __webpack_require__(79);
|
|
30534
30734
|
// EXTERNAL MODULE: ./src/styles/icons/arrows-h.svg
|
|
30535
|
-
var arrows_h = __webpack_require__(
|
|
30735
|
+
var arrows_h = __webpack_require__(80);
|
|
30536
30736
|
// EXTERNAL MODULE: ./src/styles/icons/attachment.svg
|
|
30537
|
-
var attachment = __webpack_require__(
|
|
30737
|
+
var attachment = __webpack_require__(81);
|
|
30538
30738
|
// EXTERNAL MODULE: ./src/styles/icons/bin.svg
|
|
30539
|
-
var bin = __webpack_require__(
|
|
30739
|
+
var bin = __webpack_require__(82);
|
|
30540
30740
|
// EXTERNAL MODULE: ./src/styles/icons/bold.svg
|
|
30541
|
-
var icons_bold = __webpack_require__(
|
|
30741
|
+
var icons_bold = __webpack_require__(83);
|
|
30542
30742
|
// EXTERNAL MODULE: ./src/styles/icons/brush.svg
|
|
30543
|
-
var brush = __webpack_require__(
|
|
30743
|
+
var brush = __webpack_require__(84);
|
|
30544
30744
|
// EXTERNAL MODULE: ./src/styles/icons/cancel.svg
|
|
30545
|
-
var cancel = __webpack_require__(
|
|
30745
|
+
var cancel = __webpack_require__(85);
|
|
30546
30746
|
// EXTERNAL MODULE: ./src/styles/icons/center.svg
|
|
30547
|
-
var center = __webpack_require__(
|
|
30747
|
+
var center = __webpack_require__(86);
|
|
30548
30748
|
// EXTERNAL MODULE: ./src/styles/icons/chain-broken.svg
|
|
30549
|
-
var chain_broken = __webpack_require__(
|
|
30749
|
+
var chain_broken = __webpack_require__(87);
|
|
30550
30750
|
// EXTERNAL MODULE: ./src/styles/icons/check.svg
|
|
30551
|
-
var check = __webpack_require__(
|
|
30751
|
+
var check = __webpack_require__(88);
|
|
30552
30752
|
// EXTERNAL MODULE: ./src/styles/icons/check-square.svg
|
|
30553
|
-
var check_square = __webpack_require__(
|
|
30753
|
+
var check_square = __webpack_require__(89);
|
|
30554
30754
|
// EXTERNAL MODULE: ./src/styles/icons/chevron.svg
|
|
30555
|
-
var chevron = __webpack_require__(
|
|
30755
|
+
var chevron = __webpack_require__(90);
|
|
30556
30756
|
// EXTERNAL MODULE: ./src/styles/icons/copyformat.svg
|
|
30557
|
-
var copyformat = __webpack_require__(
|
|
30757
|
+
var copyformat = __webpack_require__(91);
|
|
30558
30758
|
// EXTERNAL MODULE: ./src/styles/icons/crop.svg
|
|
30559
|
-
var crop = __webpack_require__(
|
|
30759
|
+
var crop = __webpack_require__(92);
|
|
30560
30760
|
// EXTERNAL MODULE: ./src/styles/icons/copy.svg
|
|
30561
|
-
var copy = __webpack_require__(
|
|
30761
|
+
var copy = __webpack_require__(93);
|
|
30562
30762
|
// EXTERNAL MODULE: ./src/styles/icons/cut.svg
|
|
30563
|
-
var cut = __webpack_require__(
|
|
30763
|
+
var cut = __webpack_require__(94);
|
|
30564
30764
|
// EXTERNAL MODULE: ./src/styles/icons/dedent.svg
|
|
30565
|
-
var dedent = __webpack_require__(
|
|
30765
|
+
var dedent = __webpack_require__(95);
|
|
30566
30766
|
// EXTERNAL MODULE: ./src/styles/icons/dots.svg
|
|
30567
|
-
var dots = __webpack_require__(
|
|
30767
|
+
var dots = __webpack_require__(96);
|
|
30568
30768
|
// EXTERNAL MODULE: ./src/styles/icons/enter.svg
|
|
30569
|
-
var icons_enter = __webpack_require__(
|
|
30769
|
+
var icons_enter = __webpack_require__(97);
|
|
30570
30770
|
// EXTERNAL MODULE: ./src/styles/icons/eraser.svg
|
|
30571
|
-
var eraser = __webpack_require__(
|
|
30771
|
+
var eraser = __webpack_require__(98);
|
|
30572
30772
|
// EXTERNAL MODULE: ./src/styles/icons/eye.svg
|
|
30573
|
-
var eye = __webpack_require__(
|
|
30773
|
+
var eye = __webpack_require__(99);
|
|
30574
30774
|
// EXTERNAL MODULE: ./src/styles/icons/file.svg
|
|
30575
|
-
var icons_file = __webpack_require__(
|
|
30775
|
+
var icons_file = __webpack_require__(100);
|
|
30576
30776
|
// EXTERNAL MODULE: ./src/styles/icons/folder.svg
|
|
30577
|
-
var folder = __webpack_require__(
|
|
30777
|
+
var folder = __webpack_require__(101);
|
|
30578
30778
|
// EXTERNAL MODULE: ./src/styles/icons/font.svg
|
|
30579
|
-
var icons_font = __webpack_require__(
|
|
30779
|
+
var icons_font = __webpack_require__(102);
|
|
30580
30780
|
// EXTERNAL MODULE: ./src/styles/icons/fontsize.svg
|
|
30581
|
-
var fontsize = __webpack_require__(
|
|
30781
|
+
var fontsize = __webpack_require__(103);
|
|
30582
30782
|
// EXTERNAL MODULE: ./src/styles/icons/fullsize.svg
|
|
30583
|
-
var icons_fullsize = __webpack_require__(
|
|
30783
|
+
var icons_fullsize = __webpack_require__(104);
|
|
30584
30784
|
// EXTERNAL MODULE: ./src/styles/icons/hr.svg
|
|
30585
|
-
var icons_hr = __webpack_require__(
|
|
30785
|
+
var icons_hr = __webpack_require__(105);
|
|
30586
30786
|
// EXTERNAL MODULE: ./src/styles/icons/image.svg
|
|
30587
|
-
var icons_image = __webpack_require__(
|
|
30787
|
+
var icons_image = __webpack_require__(106);
|
|
30588
30788
|
// EXTERNAL MODULE: ./src/styles/icons/indent.svg
|
|
30589
|
-
var icons_indent = __webpack_require__(
|
|
30789
|
+
var icons_indent = __webpack_require__(107);
|
|
30590
30790
|
// EXTERNAL MODULE: ./src/styles/icons/info-circle.svg
|
|
30591
|
-
var info_circle = __webpack_require__(
|
|
30791
|
+
var info_circle = __webpack_require__(108);
|
|
30592
30792
|
// EXTERNAL MODULE: ./src/styles/icons/italic.svg
|
|
30593
|
-
var italic = __webpack_require__(
|
|
30793
|
+
var italic = __webpack_require__(109);
|
|
30594
30794
|
// EXTERNAL MODULE: ./src/styles/icons/justify.svg
|
|
30595
|
-
var icons_justify = __webpack_require__(
|
|
30795
|
+
var icons_justify = __webpack_require__(110);
|
|
30596
30796
|
// EXTERNAL MODULE: ./src/styles/icons/left.svg
|
|
30597
|
-
var left = __webpack_require__(
|
|
30797
|
+
var left = __webpack_require__(111);
|
|
30598
30798
|
// EXTERNAL MODULE: ./src/styles/icons/link.svg
|
|
30599
|
-
var icons_link = __webpack_require__(
|
|
30799
|
+
var icons_link = __webpack_require__(112);
|
|
30600
30800
|
// EXTERNAL MODULE: ./src/styles/icons/lock.svg
|
|
30601
|
-
var lock = __webpack_require__(
|
|
30801
|
+
var lock = __webpack_require__(113);
|
|
30602
30802
|
// EXTERNAL MODULE: ./src/styles/icons/menu.svg
|
|
30603
|
-
var menu = __webpack_require__(
|
|
30803
|
+
var menu = __webpack_require__(114);
|
|
30604
30804
|
// EXTERNAL MODULE: ./src/styles/icons/merge.svg
|
|
30605
|
-
var merge = __webpack_require__(
|
|
30805
|
+
var merge = __webpack_require__(115);
|
|
30606
30806
|
// EXTERNAL MODULE: ./src/styles/icons/ok.svg
|
|
30607
|
-
var ok = __webpack_require__(
|
|
30807
|
+
var ok = __webpack_require__(116);
|
|
30608
30808
|
// EXTERNAL MODULE: ./src/styles/icons/ol.svg
|
|
30609
|
-
var ol = __webpack_require__(
|
|
30809
|
+
var ol = __webpack_require__(117);
|
|
30610
30810
|
// EXTERNAL MODULE: ./src/styles/icons/omega.svg
|
|
30611
|
-
var omega = __webpack_require__(
|
|
30811
|
+
var omega = __webpack_require__(118);
|
|
30612
30812
|
// EXTERNAL MODULE: ./src/styles/icons/outdent.svg
|
|
30613
|
-
var outdent = __webpack_require__(
|
|
30813
|
+
var outdent = __webpack_require__(119);
|
|
30614
30814
|
// EXTERNAL MODULE: ./src/styles/icons/palette.svg
|
|
30615
|
-
var palette = __webpack_require__(
|
|
30815
|
+
var palette = __webpack_require__(120);
|
|
30616
30816
|
// EXTERNAL MODULE: ./src/styles/icons/paragraph.svg
|
|
30617
|
-
var paragraph = __webpack_require__(
|
|
30817
|
+
var paragraph = __webpack_require__(121);
|
|
30618
30818
|
// EXTERNAL MODULE: ./src/styles/icons/paste.svg
|
|
30619
|
-
var icons_paste = __webpack_require__(
|
|
30819
|
+
var icons_paste = __webpack_require__(122);
|
|
30620
30820
|
// EXTERNAL MODULE: ./src/styles/icons/pencil.svg
|
|
30621
|
-
var pencil = __webpack_require__(
|
|
30821
|
+
var pencil = __webpack_require__(123);
|
|
30622
30822
|
// EXTERNAL MODULE: ./src/styles/icons/plus.svg
|
|
30623
|
-
var plus = __webpack_require__(
|
|
30823
|
+
var plus = __webpack_require__(124);
|
|
30624
30824
|
// EXTERNAL MODULE: ./src/styles/icons/print.svg
|
|
30625
|
-
var icons_print = __webpack_require__(
|
|
30825
|
+
var icons_print = __webpack_require__(125);
|
|
30626
30826
|
// EXTERNAL MODULE: ./src/styles/icons/redo.svg
|
|
30627
|
-
var redo = __webpack_require__(
|
|
30827
|
+
var redo = __webpack_require__(126);
|
|
30628
30828
|
// EXTERNAL MODULE: ./src/styles/icons/resize.svg
|
|
30629
|
-
var resize = __webpack_require__(
|
|
30829
|
+
var resize = __webpack_require__(127);
|
|
30830
|
+
// EXTERNAL MODULE: ./src/styles/icons/resize-handler.svg
|
|
30831
|
+
var resize_handler = __webpack_require__(128);
|
|
30630
30832
|
// EXTERNAL MODULE: ./src/styles/icons/resizer.svg
|
|
30631
|
-
var icons_resizer = __webpack_require__(
|
|
30833
|
+
var icons_resizer = __webpack_require__(129);
|
|
30632
30834
|
// EXTERNAL MODULE: ./src/styles/icons/right.svg
|
|
30633
|
-
var right = __webpack_require__(
|
|
30835
|
+
var right = __webpack_require__(130);
|
|
30634
30836
|
// EXTERNAL MODULE: ./src/styles/icons/save.svg
|
|
30635
|
-
var save = __webpack_require__(
|
|
30837
|
+
var save = __webpack_require__(131);
|
|
30636
30838
|
// EXTERNAL MODULE: ./src/styles/icons/search.svg
|
|
30637
|
-
var icons_search = __webpack_require__(
|
|
30839
|
+
var icons_search = __webpack_require__(132);
|
|
30638
30840
|
// EXTERNAL MODULE: ./src/styles/icons/settings.svg
|
|
30639
|
-
var settings = __webpack_require__(
|
|
30841
|
+
var settings = __webpack_require__(133);
|
|
30640
30842
|
// EXTERNAL MODULE: ./src/styles/icons/select-all.svg
|
|
30641
|
-
var select_all = __webpack_require__(
|
|
30843
|
+
var select_all = __webpack_require__(134);
|
|
30642
30844
|
// EXTERNAL MODULE: ./src/styles/icons/shrink.svg
|
|
30643
|
-
var shrink = __webpack_require__(
|
|
30845
|
+
var shrink = __webpack_require__(135);
|
|
30644
30846
|
// EXTERNAL MODULE: ./src/styles/icons/source.svg
|
|
30645
|
-
var icons_source = __webpack_require__(
|
|
30847
|
+
var icons_source = __webpack_require__(136);
|
|
30646
30848
|
// EXTERNAL MODULE: ./src/styles/icons/splitg.svg
|
|
30647
|
-
var splitg = __webpack_require__(
|
|
30849
|
+
var splitg = __webpack_require__(137);
|
|
30648
30850
|
// EXTERNAL MODULE: ./src/styles/icons/splitv.svg
|
|
30649
|
-
var splitv = __webpack_require__(
|
|
30851
|
+
var splitv = __webpack_require__(138);
|
|
30650
30852
|
// EXTERNAL MODULE: ./src/styles/icons/strikethrough.svg
|
|
30651
|
-
var strikethrough = __webpack_require__(
|
|
30853
|
+
var strikethrough = __webpack_require__(139);
|
|
30652
30854
|
// EXTERNAL MODULE: ./src/styles/icons/subscript.svg
|
|
30653
|
-
var subscript = __webpack_require__(
|
|
30855
|
+
var subscript = __webpack_require__(140);
|
|
30654
30856
|
// EXTERNAL MODULE: ./src/styles/icons/superscript.svg
|
|
30655
|
-
var superscript = __webpack_require__(
|
|
30857
|
+
var superscript = __webpack_require__(141);
|
|
30656
30858
|
// EXTERNAL MODULE: ./src/styles/icons/table.svg
|
|
30657
|
-
var icons_table = __webpack_require__(
|
|
30859
|
+
var icons_table = __webpack_require__(142);
|
|
30658
30860
|
// EXTERNAL MODULE: ./src/styles/icons/th.svg
|
|
30659
|
-
var th = __webpack_require__(
|
|
30861
|
+
var th = __webpack_require__(143);
|
|
30660
30862
|
// EXTERNAL MODULE: ./src/styles/icons/th-list.svg
|
|
30661
|
-
var th_list = __webpack_require__(
|
|
30863
|
+
var th_list = __webpack_require__(144);
|
|
30662
30864
|
// EXTERNAL MODULE: ./src/styles/icons/ul.svg
|
|
30663
|
-
var ul = __webpack_require__(
|
|
30865
|
+
var ul = __webpack_require__(145);
|
|
30664
30866
|
// EXTERNAL MODULE: ./src/styles/icons/underline.svg
|
|
30665
|
-
var underline = __webpack_require__(
|
|
30867
|
+
var underline = __webpack_require__(146);
|
|
30666
30868
|
// EXTERNAL MODULE: ./src/styles/icons/undo.svg
|
|
30667
|
-
var undo = __webpack_require__(
|
|
30869
|
+
var undo = __webpack_require__(147);
|
|
30668
30870
|
// EXTERNAL MODULE: ./src/styles/icons/unlink.svg
|
|
30669
|
-
var unlink = __webpack_require__(
|
|
30871
|
+
var unlink = __webpack_require__(148);
|
|
30670
30872
|
// EXTERNAL MODULE: ./src/styles/icons/unlock.svg
|
|
30671
|
-
var unlock = __webpack_require__(
|
|
30873
|
+
var unlock = __webpack_require__(149);
|
|
30672
30874
|
// EXTERNAL MODULE: ./src/styles/icons/update.svg
|
|
30673
|
-
var update = __webpack_require__(
|
|
30875
|
+
var update = __webpack_require__(150);
|
|
30674
30876
|
// EXTERNAL MODULE: ./src/styles/icons/upload.svg
|
|
30675
|
-
var upload = __webpack_require__(
|
|
30877
|
+
var upload = __webpack_require__(151);
|
|
30676
30878
|
// EXTERNAL MODULE: ./src/styles/icons/valign.svg
|
|
30677
|
-
var valign = __webpack_require__(
|
|
30879
|
+
var valign = __webpack_require__(152);
|
|
30678
30880
|
// EXTERNAL MODULE: ./src/styles/icons/video.svg
|
|
30679
|
-
var icons_video = __webpack_require__(
|
|
30881
|
+
var icons_video = __webpack_require__(153);
|
|
30680
30882
|
;// CONCATENATED MODULE: ./src/styles/icons/index.ts
|
|
30681
30883
|
/*!
|
|
30682
30884
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -30764,6 +30966,7 @@ var icons_video = __webpack_require__(151);
|
|
|
30764
30966
|
|
|
30765
30967
|
|
|
30766
30968
|
|
|
30969
|
+
|
|
30767
30970
|
|
|
30768
30971
|
|
|
30769
30972
|
;// CONCATENATED MODULE: ./src/index.ts
|