@weni/unnnic-system 1.10.12 → 1.10.14
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/dist/unnnic.common.js +1469 -35
- package/dist/unnnic.common.js.map +1 -1
- package/dist/unnnic.css +1 -1
- package/dist/unnnic.umd.js +1469 -35
- package/dist/unnnic.umd.js.map +1 -1
- package/dist/unnnic.umd.min.js +25 -25
- package/dist/unnnic.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/TextEditor/TextEditor.vue +110 -7
- package/src/stories/TextEditor.stories.js +2 -0
package/dist/unnnic.common.js
CHANGED
|
@@ -406,6 +406,41 @@ module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3
|
|
|
406
406
|
|
|
407
407
|
// extracted by mini-css-extract-plugin
|
|
408
408
|
|
|
409
|
+
/***/ }),
|
|
410
|
+
|
|
411
|
+
/***/ "0538":
|
|
412
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
413
|
+
|
|
414
|
+
"use strict";
|
|
415
|
+
|
|
416
|
+
var aFunction = __webpack_require__("1c0b");
|
|
417
|
+
var isObject = __webpack_require__("861d");
|
|
418
|
+
|
|
419
|
+
var slice = [].slice;
|
|
420
|
+
var factories = {};
|
|
421
|
+
|
|
422
|
+
var construct = function (C, argsLength, args) {
|
|
423
|
+
if (!(argsLength in factories)) {
|
|
424
|
+
for (var list = [], i = 0; i < argsLength; i++) list[i] = 'a[' + i + ']';
|
|
425
|
+
// eslint-disable-next-line no-new-func
|
|
426
|
+
factories[argsLength] = Function('C,a', 'return new C(' + list.join(',') + ')');
|
|
427
|
+
} return factories[argsLength](C, args);
|
|
428
|
+
};
|
|
429
|
+
|
|
430
|
+
// `Function.prototype.bind` method implementation
|
|
431
|
+
// https://tc39.github.io/ecma262/#sec-function.prototype.bind
|
|
432
|
+
module.exports = Function.bind || function bind(that /* , ...args */) {
|
|
433
|
+
var fn = aFunction(this);
|
|
434
|
+
var partArgs = slice.call(arguments, 1);
|
|
435
|
+
var boundFunction = function bound(/* args... */) {
|
|
436
|
+
var args = partArgs.concat(slice.call(arguments));
|
|
437
|
+
return this instanceof boundFunction ? construct(fn, args.length, args) : fn.apply(that, args);
|
|
438
|
+
};
|
|
439
|
+
if (isObject(fn.prototype)) boundFunction.prototype = fn.prototype;
|
|
440
|
+
return boundFunction;
|
|
441
|
+
};
|
|
442
|
+
|
|
443
|
+
|
|
409
444
|
/***/ }),
|
|
410
445
|
|
|
411
446
|
/***/ "0558":
|
|
@@ -1891,6 +1926,81 @@ module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3
|
|
|
1891
1926
|
|
|
1892
1927
|
module.exports = __webpack_require__.p + "img/u1F610.a415c879.png";
|
|
1893
1928
|
|
|
1929
|
+
/***/ }),
|
|
1930
|
+
|
|
1931
|
+
/***/ "10d1":
|
|
1932
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1933
|
+
|
|
1934
|
+
"use strict";
|
|
1935
|
+
|
|
1936
|
+
var global = __webpack_require__("da84");
|
|
1937
|
+
var redefineAll = __webpack_require__("e2cc");
|
|
1938
|
+
var InternalMetadataModule = __webpack_require__("f183");
|
|
1939
|
+
var collection = __webpack_require__("6d61");
|
|
1940
|
+
var collectionWeak = __webpack_require__("acac");
|
|
1941
|
+
var isObject = __webpack_require__("861d");
|
|
1942
|
+
var enforceIternalState = __webpack_require__("69f3").enforce;
|
|
1943
|
+
var NATIVE_WEAK_MAP = __webpack_require__("7f9a");
|
|
1944
|
+
|
|
1945
|
+
var IS_IE11 = !global.ActiveXObject && 'ActiveXObject' in global;
|
|
1946
|
+
var isExtensible = Object.isExtensible;
|
|
1947
|
+
var InternalWeakMap;
|
|
1948
|
+
|
|
1949
|
+
var wrapper = function (init) {
|
|
1950
|
+
return function WeakMap() {
|
|
1951
|
+
return init(this, arguments.length ? arguments[0] : undefined);
|
|
1952
|
+
};
|
|
1953
|
+
};
|
|
1954
|
+
|
|
1955
|
+
// `WeakMap` constructor
|
|
1956
|
+
// https://tc39.github.io/ecma262/#sec-weakmap-constructor
|
|
1957
|
+
var $WeakMap = module.exports = collection('WeakMap', wrapper, collectionWeak);
|
|
1958
|
+
|
|
1959
|
+
// IE11 WeakMap frozen keys fix
|
|
1960
|
+
// We can't use feature detection because it crash some old IE builds
|
|
1961
|
+
// https://github.com/zloirock/core-js/issues/485
|
|
1962
|
+
if (NATIVE_WEAK_MAP && IS_IE11) {
|
|
1963
|
+
InternalWeakMap = collectionWeak.getConstructor(wrapper, 'WeakMap', true);
|
|
1964
|
+
InternalMetadataModule.REQUIRED = true;
|
|
1965
|
+
var WeakMapPrototype = $WeakMap.prototype;
|
|
1966
|
+
var nativeDelete = WeakMapPrototype['delete'];
|
|
1967
|
+
var nativeHas = WeakMapPrototype.has;
|
|
1968
|
+
var nativeGet = WeakMapPrototype.get;
|
|
1969
|
+
var nativeSet = WeakMapPrototype.set;
|
|
1970
|
+
redefineAll(WeakMapPrototype, {
|
|
1971
|
+
'delete': function (key) {
|
|
1972
|
+
if (isObject(key) && !isExtensible(key)) {
|
|
1973
|
+
var state = enforceIternalState(this);
|
|
1974
|
+
if (!state.frozen) state.frozen = new InternalWeakMap();
|
|
1975
|
+
return nativeDelete.call(this, key) || state.frozen['delete'](key);
|
|
1976
|
+
} return nativeDelete.call(this, key);
|
|
1977
|
+
},
|
|
1978
|
+
has: function has(key) {
|
|
1979
|
+
if (isObject(key) && !isExtensible(key)) {
|
|
1980
|
+
var state = enforceIternalState(this);
|
|
1981
|
+
if (!state.frozen) state.frozen = new InternalWeakMap();
|
|
1982
|
+
return nativeHas.call(this, key) || state.frozen.has(key);
|
|
1983
|
+
} return nativeHas.call(this, key);
|
|
1984
|
+
},
|
|
1985
|
+
get: function get(key) {
|
|
1986
|
+
if (isObject(key) && !isExtensible(key)) {
|
|
1987
|
+
var state = enforceIternalState(this);
|
|
1988
|
+
if (!state.frozen) state.frozen = new InternalWeakMap();
|
|
1989
|
+
return nativeHas.call(this, key) ? nativeGet.call(this, key) : state.frozen.get(key);
|
|
1990
|
+
} return nativeGet.call(this, key);
|
|
1991
|
+
},
|
|
1992
|
+
set: function set(key, value) {
|
|
1993
|
+
if (isObject(key) && !isExtensible(key)) {
|
|
1994
|
+
var state = enforceIternalState(this);
|
|
1995
|
+
if (!state.frozen) state.frozen = new InternalWeakMap();
|
|
1996
|
+
nativeHas.call(this, key) ? nativeSet.call(this, key, value) : state.frozen.set(key, value);
|
|
1997
|
+
} else nativeSet.call(this, key, value);
|
|
1998
|
+
return this;
|
|
1999
|
+
}
|
|
2000
|
+
});
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
|
|
1894
2004
|
/***/ }),
|
|
1895
2005
|
|
|
1896
2006
|
/***/ "10e8":
|
|
@@ -5834,6 +5944,29 @@ module.exports = {"unnnicColorBackgroundSolo":"#E8F4F4"};
|
|
|
5834
5944
|
/* unused harmony reexport * */
|
|
5835
5945
|
|
|
5836
5946
|
|
|
5947
|
+
/***/ }),
|
|
5948
|
+
|
|
5949
|
+
/***/ "3410":
|
|
5950
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
5951
|
+
|
|
5952
|
+
var $ = __webpack_require__("23e7");
|
|
5953
|
+
var fails = __webpack_require__("d039");
|
|
5954
|
+
var toObject = __webpack_require__("7b0b");
|
|
5955
|
+
var nativeGetPrototypeOf = __webpack_require__("e163");
|
|
5956
|
+
var CORRECT_PROTOTYPE_GETTER = __webpack_require__("e177");
|
|
5957
|
+
|
|
5958
|
+
var FAILS_ON_PRIMITIVES = fails(function () { nativeGetPrototypeOf(1); });
|
|
5959
|
+
|
|
5960
|
+
// `Object.getPrototypeOf` method
|
|
5961
|
+
// https://tc39.github.io/ecma262/#sec-object.getprototypeof
|
|
5962
|
+
$({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES, sham: !CORRECT_PROTOTYPE_GETTER }, {
|
|
5963
|
+
getPrototypeOf: function getPrototypeOf(it) {
|
|
5964
|
+
return nativeGetPrototypeOf(toObject(it));
|
|
5965
|
+
}
|
|
5966
|
+
});
|
|
5967
|
+
|
|
5968
|
+
|
|
5969
|
+
|
|
5837
5970
|
/***/ }),
|
|
5838
5971
|
|
|
5839
5972
|
/***/ "342f":
|
|
@@ -5997,17 +6130,6 @@ module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3
|
|
|
5997
6130
|
/* unused harmony reexport * */
|
|
5998
6131
|
|
|
5999
6132
|
|
|
6000
|
-
/***/ }),
|
|
6001
|
-
|
|
6002
|
-
/***/ "38fb":
|
|
6003
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
6004
|
-
|
|
6005
|
-
"use strict";
|
|
6006
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TextEditor_vue_vue_type_style_index_0_id_538f8db5_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("ddaa");
|
|
6007
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TextEditor_vue_vue_type_style_index_0_id_538f8db5_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TextEditor_vue_vue_type_style_index_0_id_538f8db5_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
|
|
6008
|
-
/* unused harmony reexport * */
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
6133
|
/***/ }),
|
|
6012
6134
|
|
|
6013
6135
|
/***/ "398b":
|
|
@@ -8263,6 +8385,26 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
8263
8385
|
});
|
|
8264
8386
|
|
|
8265
8387
|
|
|
8388
|
+
/***/ }),
|
|
8389
|
+
|
|
8390
|
+
/***/ "498a":
|
|
8391
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
8392
|
+
|
|
8393
|
+
"use strict";
|
|
8394
|
+
|
|
8395
|
+
var $ = __webpack_require__("23e7");
|
|
8396
|
+
var $trim = __webpack_require__("58a8").trim;
|
|
8397
|
+
var forcedStringTrimMethod = __webpack_require__("c8d2");
|
|
8398
|
+
|
|
8399
|
+
// `String.prototype.trim` method
|
|
8400
|
+
// https://tc39.github.io/ecma262/#sec-string.prototype.trim
|
|
8401
|
+
$({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
|
|
8402
|
+
trim: function trim() {
|
|
8403
|
+
return $trim(this);
|
|
8404
|
+
}
|
|
8405
|
+
});
|
|
8406
|
+
|
|
8407
|
+
|
|
8266
8408
|
/***/ }),
|
|
8267
8409
|
|
|
8268
8410
|
/***/ "49ab":
|
|
@@ -8387,6 +8529,64 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
8387
8529
|
|
|
8388
8530
|
module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.9375 21.2505C5.42 21.2505 5 20.6905 5 20.0005C5 19.3105 5.42 18.7505 5.9375 18.7505H34.0625C34.58 18.7505 35 19.3105 35 20.0005C35 20.6905 34.58 21.2505 34.0625 21.2505H5.9375Z\" fill=\"#3B414D\" class=\"primary\"></path></svg>"
|
|
8389
8531
|
|
|
8532
|
+
/***/ }),
|
|
8533
|
+
|
|
8534
|
+
/***/ "4ae1":
|
|
8535
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
8536
|
+
|
|
8537
|
+
var $ = __webpack_require__("23e7");
|
|
8538
|
+
var getBuiltIn = __webpack_require__("d066");
|
|
8539
|
+
var aFunction = __webpack_require__("1c0b");
|
|
8540
|
+
var anObject = __webpack_require__("825a");
|
|
8541
|
+
var isObject = __webpack_require__("861d");
|
|
8542
|
+
var create = __webpack_require__("7c73");
|
|
8543
|
+
var bind = __webpack_require__("0538");
|
|
8544
|
+
var fails = __webpack_require__("d039");
|
|
8545
|
+
|
|
8546
|
+
var nativeConstruct = getBuiltIn('Reflect', 'construct');
|
|
8547
|
+
|
|
8548
|
+
// `Reflect.construct` method
|
|
8549
|
+
// https://tc39.github.io/ecma262/#sec-reflect.construct
|
|
8550
|
+
// MS Edge supports only 2 arguments and argumentsList argument is optional
|
|
8551
|
+
// FF Nightly sets third argument as `new.target`, but does not create `this` from it
|
|
8552
|
+
var NEW_TARGET_BUG = fails(function () {
|
|
8553
|
+
function F() { /* empty */ }
|
|
8554
|
+
return !(nativeConstruct(function () { /* empty */ }, [], F) instanceof F);
|
|
8555
|
+
});
|
|
8556
|
+
var ARGS_BUG = !fails(function () {
|
|
8557
|
+
nativeConstruct(function () { /* empty */ });
|
|
8558
|
+
});
|
|
8559
|
+
var FORCED = NEW_TARGET_BUG || ARGS_BUG;
|
|
8560
|
+
|
|
8561
|
+
$({ target: 'Reflect', stat: true, forced: FORCED, sham: FORCED }, {
|
|
8562
|
+
construct: function construct(Target, args /* , newTarget */) {
|
|
8563
|
+
aFunction(Target);
|
|
8564
|
+
anObject(args);
|
|
8565
|
+
var newTarget = arguments.length < 3 ? Target : aFunction(arguments[2]);
|
|
8566
|
+
if (ARGS_BUG && !NEW_TARGET_BUG) return nativeConstruct(Target, args, newTarget);
|
|
8567
|
+
if (Target == newTarget) {
|
|
8568
|
+
// w/o altered newTarget, optimization for 0-4 arguments
|
|
8569
|
+
switch (args.length) {
|
|
8570
|
+
case 0: return new Target();
|
|
8571
|
+
case 1: return new Target(args[0]);
|
|
8572
|
+
case 2: return new Target(args[0], args[1]);
|
|
8573
|
+
case 3: return new Target(args[0], args[1], args[2]);
|
|
8574
|
+
case 4: return new Target(args[0], args[1], args[2], args[3]);
|
|
8575
|
+
}
|
|
8576
|
+
// w/o altered newTarget, lot of arguments case
|
|
8577
|
+
var $args = [null];
|
|
8578
|
+
$args.push.apply($args, args);
|
|
8579
|
+
return new (bind.apply(Target, $args))();
|
|
8580
|
+
}
|
|
8581
|
+
// with altered newTarget, not support built-in constructors
|
|
8582
|
+
var proto = newTarget.prototype;
|
|
8583
|
+
var instance = create(isObject(proto) ? proto : Object.prototype);
|
|
8584
|
+
var result = Function.apply.call(Target, instance, args);
|
|
8585
|
+
return isObject(result) ? result : instance;
|
|
8586
|
+
}
|
|
8587
|
+
});
|
|
8588
|
+
|
|
8589
|
+
|
|
8390
8590
|
/***/ }),
|
|
8391
8591
|
|
|
8392
8592
|
/***/ "4b7a":
|
|
@@ -8600,6 +8800,97 @@ module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3
|
|
|
8600
8800
|
|
|
8601
8801
|
// extracted by mini-css-extract-plugin
|
|
8602
8802
|
|
|
8803
|
+
/***/ }),
|
|
8804
|
+
|
|
8805
|
+
/***/ "4d63":
|
|
8806
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
8807
|
+
|
|
8808
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
8809
|
+
var global = __webpack_require__("da84");
|
|
8810
|
+
var isForced = __webpack_require__("94ca");
|
|
8811
|
+
var inheritIfRequired = __webpack_require__("7156");
|
|
8812
|
+
var defineProperty = __webpack_require__("9bf2").f;
|
|
8813
|
+
var getOwnPropertyNames = __webpack_require__("241c").f;
|
|
8814
|
+
var isRegExp = __webpack_require__("44e7");
|
|
8815
|
+
var getFlags = __webpack_require__("ad6d");
|
|
8816
|
+
var stickyHelpers = __webpack_require__("9f7f");
|
|
8817
|
+
var redefine = __webpack_require__("6eeb");
|
|
8818
|
+
var fails = __webpack_require__("d039");
|
|
8819
|
+
var setInternalState = __webpack_require__("69f3").set;
|
|
8820
|
+
var setSpecies = __webpack_require__("2626");
|
|
8821
|
+
var wellKnownSymbol = __webpack_require__("b622");
|
|
8822
|
+
|
|
8823
|
+
var MATCH = wellKnownSymbol('match');
|
|
8824
|
+
var NativeRegExp = global.RegExp;
|
|
8825
|
+
var RegExpPrototype = NativeRegExp.prototype;
|
|
8826
|
+
var re1 = /a/g;
|
|
8827
|
+
var re2 = /a/g;
|
|
8828
|
+
|
|
8829
|
+
// "new" should create a new object, old webkit bug
|
|
8830
|
+
var CORRECT_NEW = new NativeRegExp(re1) !== re1;
|
|
8831
|
+
|
|
8832
|
+
var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
|
|
8833
|
+
|
|
8834
|
+
var FORCED = DESCRIPTORS && isForced('RegExp', (!CORRECT_NEW || UNSUPPORTED_Y || fails(function () {
|
|
8835
|
+
re2[MATCH] = false;
|
|
8836
|
+
// RegExp constructor can alter flags and IsRegExp works correct with @@match
|
|
8837
|
+
return NativeRegExp(re1) != re1 || NativeRegExp(re2) == re2 || NativeRegExp(re1, 'i') != '/a/i';
|
|
8838
|
+
})));
|
|
8839
|
+
|
|
8840
|
+
// `RegExp` constructor
|
|
8841
|
+
// https://tc39.github.io/ecma262/#sec-regexp-constructor
|
|
8842
|
+
if (FORCED) {
|
|
8843
|
+
var RegExpWrapper = function RegExp(pattern, flags) {
|
|
8844
|
+
var thisIsRegExp = this instanceof RegExpWrapper;
|
|
8845
|
+
var patternIsRegExp = isRegExp(pattern);
|
|
8846
|
+
var flagsAreUndefined = flags === undefined;
|
|
8847
|
+
var sticky;
|
|
8848
|
+
|
|
8849
|
+
if (!thisIsRegExp && patternIsRegExp && pattern.constructor === RegExpWrapper && flagsAreUndefined) {
|
|
8850
|
+
return pattern;
|
|
8851
|
+
}
|
|
8852
|
+
|
|
8853
|
+
if (CORRECT_NEW) {
|
|
8854
|
+
if (patternIsRegExp && !flagsAreUndefined) pattern = pattern.source;
|
|
8855
|
+
} else if (pattern instanceof RegExpWrapper) {
|
|
8856
|
+
if (flagsAreUndefined) flags = getFlags.call(pattern);
|
|
8857
|
+
pattern = pattern.source;
|
|
8858
|
+
}
|
|
8859
|
+
|
|
8860
|
+
if (UNSUPPORTED_Y) {
|
|
8861
|
+
sticky = !!flags && flags.indexOf('y') > -1;
|
|
8862
|
+
if (sticky) flags = flags.replace(/y/g, '');
|
|
8863
|
+
}
|
|
8864
|
+
|
|
8865
|
+
var result = inheritIfRequired(
|
|
8866
|
+
CORRECT_NEW ? new NativeRegExp(pattern, flags) : NativeRegExp(pattern, flags),
|
|
8867
|
+
thisIsRegExp ? this : RegExpPrototype,
|
|
8868
|
+
RegExpWrapper
|
|
8869
|
+
);
|
|
8870
|
+
|
|
8871
|
+
if (UNSUPPORTED_Y && sticky) setInternalState(result, { sticky: sticky });
|
|
8872
|
+
|
|
8873
|
+
return result;
|
|
8874
|
+
};
|
|
8875
|
+
var proxy = function (key) {
|
|
8876
|
+
key in RegExpWrapper || defineProperty(RegExpWrapper, key, {
|
|
8877
|
+
configurable: true,
|
|
8878
|
+
get: function () { return NativeRegExp[key]; },
|
|
8879
|
+
set: function (it) { NativeRegExp[key] = it; }
|
|
8880
|
+
});
|
|
8881
|
+
};
|
|
8882
|
+
var keys = getOwnPropertyNames(NativeRegExp);
|
|
8883
|
+
var index = 0;
|
|
8884
|
+
while (keys.length > index) proxy(keys[index++]);
|
|
8885
|
+
RegExpPrototype.constructor = RegExpWrapper;
|
|
8886
|
+
RegExpWrapper.prototype = RegExpPrototype;
|
|
8887
|
+
redefine(global, 'RegExp', RegExpWrapper);
|
|
8888
|
+
}
|
|
8889
|
+
|
|
8890
|
+
// https://tc39.github.io/ecma262/#sec-get-regexp-@@species
|
|
8891
|
+
setSpecies('RegExp');
|
|
8892
|
+
|
|
8893
|
+
|
|
8603
8894
|
/***/ }),
|
|
8604
8895
|
|
|
8605
8896
|
/***/ "4d64":
|
|
@@ -8745,6 +9036,23 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
|
|
|
8745
9036
|
/* unused harmony reexport * */
|
|
8746
9037
|
|
|
8747
9038
|
|
|
9039
|
+
/***/ }),
|
|
9040
|
+
|
|
9041
|
+
/***/ "4ec9":
|
|
9042
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
9043
|
+
|
|
9044
|
+
"use strict";
|
|
9045
|
+
|
|
9046
|
+
var collection = __webpack_require__("6d61");
|
|
9047
|
+
var collectionStrong = __webpack_require__("6566");
|
|
9048
|
+
|
|
9049
|
+
// `Map` constructor
|
|
9050
|
+
// https://tc39.github.io/ecma262/#sec-map-objects
|
|
9051
|
+
module.exports = collection('Map', function (init) {
|
|
9052
|
+
return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };
|
|
9053
|
+
}, collectionStrong);
|
|
9054
|
+
|
|
9055
|
+
|
|
8748
9056
|
/***/ }),
|
|
8749
9057
|
|
|
8750
9058
|
/***/ "4f7c":
|
|
@@ -8887,6 +9195,17 @@ module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3
|
|
|
8887
9195
|
})));
|
|
8888
9196
|
|
|
8889
9197
|
|
|
9198
|
+
/***/ }),
|
|
9199
|
+
|
|
9200
|
+
/***/ "5058":
|
|
9201
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9202
|
+
|
|
9203
|
+
"use strict";
|
|
9204
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TextEditor_vue_vue_type_style_index_0_id_5340a05a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("e1cb");
|
|
9205
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TextEditor_vue_vue_type_style_index_0_id_5340a05a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_TextEditor_vue_vue_type_style_index_0_id_5340a05a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
|
|
9206
|
+
/* unused harmony reexport * */
|
|
9207
|
+
|
|
9208
|
+
|
|
8890
9209
|
/***/ }),
|
|
8891
9210
|
|
|
8892
9211
|
/***/ "50c4":
|
|
@@ -11232,6 +11551,200 @@ module.exports = {
|
|
|
11232
11551
|
|
|
11233
11552
|
module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.5625 31.2505C10.0112 31.2505 8.75 29.9892 8.75 28.438V7.81299C8.75 6.26174 10.0112 5.00049 11.5625 5.00049H32.1875C33.7388 5.00049 35 6.26174 35 7.81299V28.438C35 29.9892 33.7388 31.2505 32.1875 31.2505H11.5625ZM11.5625 6.87549C11.045 6.87549 10.625 7.29549 10.625 7.81299V28.438C10.625 28.9555 11.045 29.3755 11.5625 29.3755H32.1875C32.705 29.3755 33.125 28.9555 33.125 28.438V7.81299C33.125 7.29549 32.705 6.87549 32.1875 6.87549H11.5625V6.87549Z\" fill=\"#3B414D\" class=\"primary\"></path><path d=\"M7.8125 35.0005C6.26125 35.0005 5 33.7392 5 32.188V9.68799C5 9.17049 5.42 8.75049 5.9375 8.75049C6.455 8.75049 6.875 9.17174 6.875 9.68799V32.188C6.875 32.7055 7.295 33.1255 7.8125 33.1255H30.3125C30.83 33.1255 31.25 33.5455 31.25 34.063C31.25 34.5805 30.83 35.0005 30.3125 35.0005H7.8125Z\" fill=\"#3B414D\" class=\"primary\"></path><path d=\"M15.3125 14.3755C14.795 14.3755 14.375 13.9555 14.375 13.438C14.375 12.9205 14.795 12.5005 15.3125 12.5005H28.4375C28.955 12.5005 29.375 12.9205 29.375 13.438C29.375 13.9555 28.955 14.3755 28.4375 14.3755H15.3125Z\" fill=\"#3B414D\" class=\"primary\"></path><path d=\"M15.3125 18.1255C14.795 18.1255 14.375 17.7055 14.375 17.188C14.375 16.6705 14.795 16.2505 15.3125 16.2505H28.4375C28.955 16.2505 29.375 16.6705 29.375 17.188C29.375 17.7055 28.955 18.1255 28.4375 18.1255H15.3125Z\" fill=\"#3B414D\" class=\"primary\"></path><path d=\"M15.3125 21.8755C14.795 21.8755 14.375 21.4555 14.375 20.938C14.375 20.4205 14.795 20.0005 15.3125 20.0005H24.6875C25.205 20.0005 25.625 20.4205 25.625 20.938C25.625 21.4555 25.205 21.8755 24.6875 21.8755H15.3125Z\" fill=\"#3B414D\" class=\"primary\"></path></svg>"
|
|
11234
11553
|
|
|
11554
|
+
/***/ }),
|
|
11555
|
+
|
|
11556
|
+
/***/ "6566":
|
|
11557
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
11558
|
+
|
|
11559
|
+
"use strict";
|
|
11560
|
+
|
|
11561
|
+
var defineProperty = __webpack_require__("9bf2").f;
|
|
11562
|
+
var create = __webpack_require__("7c73");
|
|
11563
|
+
var redefineAll = __webpack_require__("e2cc");
|
|
11564
|
+
var bind = __webpack_require__("0366");
|
|
11565
|
+
var anInstance = __webpack_require__("19aa");
|
|
11566
|
+
var iterate = __webpack_require__("2266");
|
|
11567
|
+
var defineIterator = __webpack_require__("7dd0");
|
|
11568
|
+
var setSpecies = __webpack_require__("2626");
|
|
11569
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
11570
|
+
var fastKey = __webpack_require__("f183").fastKey;
|
|
11571
|
+
var InternalStateModule = __webpack_require__("69f3");
|
|
11572
|
+
|
|
11573
|
+
var setInternalState = InternalStateModule.set;
|
|
11574
|
+
var internalStateGetterFor = InternalStateModule.getterFor;
|
|
11575
|
+
|
|
11576
|
+
module.exports = {
|
|
11577
|
+
getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
|
|
11578
|
+
var C = wrapper(function (that, iterable) {
|
|
11579
|
+
anInstance(that, C, CONSTRUCTOR_NAME);
|
|
11580
|
+
setInternalState(that, {
|
|
11581
|
+
type: CONSTRUCTOR_NAME,
|
|
11582
|
+
index: create(null),
|
|
11583
|
+
first: undefined,
|
|
11584
|
+
last: undefined,
|
|
11585
|
+
size: 0
|
|
11586
|
+
});
|
|
11587
|
+
if (!DESCRIPTORS) that.size = 0;
|
|
11588
|
+
if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
|
|
11589
|
+
});
|
|
11590
|
+
|
|
11591
|
+
var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
|
|
11592
|
+
|
|
11593
|
+
var define = function (that, key, value) {
|
|
11594
|
+
var state = getInternalState(that);
|
|
11595
|
+
var entry = getEntry(that, key);
|
|
11596
|
+
var previous, index;
|
|
11597
|
+
// change existing entry
|
|
11598
|
+
if (entry) {
|
|
11599
|
+
entry.value = value;
|
|
11600
|
+
// create new entry
|
|
11601
|
+
} else {
|
|
11602
|
+
state.last = entry = {
|
|
11603
|
+
index: index = fastKey(key, true),
|
|
11604
|
+
key: key,
|
|
11605
|
+
value: value,
|
|
11606
|
+
previous: previous = state.last,
|
|
11607
|
+
next: undefined,
|
|
11608
|
+
removed: false
|
|
11609
|
+
};
|
|
11610
|
+
if (!state.first) state.first = entry;
|
|
11611
|
+
if (previous) previous.next = entry;
|
|
11612
|
+
if (DESCRIPTORS) state.size++;
|
|
11613
|
+
else that.size++;
|
|
11614
|
+
// add to index
|
|
11615
|
+
if (index !== 'F') state.index[index] = entry;
|
|
11616
|
+
} return that;
|
|
11617
|
+
};
|
|
11618
|
+
|
|
11619
|
+
var getEntry = function (that, key) {
|
|
11620
|
+
var state = getInternalState(that);
|
|
11621
|
+
// fast case
|
|
11622
|
+
var index = fastKey(key);
|
|
11623
|
+
var entry;
|
|
11624
|
+
if (index !== 'F') return state.index[index];
|
|
11625
|
+
// frozen object case
|
|
11626
|
+
for (entry = state.first; entry; entry = entry.next) {
|
|
11627
|
+
if (entry.key == key) return entry;
|
|
11628
|
+
}
|
|
11629
|
+
};
|
|
11630
|
+
|
|
11631
|
+
redefineAll(C.prototype, {
|
|
11632
|
+
// 23.1.3.1 Map.prototype.clear()
|
|
11633
|
+
// 23.2.3.2 Set.prototype.clear()
|
|
11634
|
+
clear: function clear() {
|
|
11635
|
+
var that = this;
|
|
11636
|
+
var state = getInternalState(that);
|
|
11637
|
+
var data = state.index;
|
|
11638
|
+
var entry = state.first;
|
|
11639
|
+
while (entry) {
|
|
11640
|
+
entry.removed = true;
|
|
11641
|
+
if (entry.previous) entry.previous = entry.previous.next = undefined;
|
|
11642
|
+
delete data[entry.index];
|
|
11643
|
+
entry = entry.next;
|
|
11644
|
+
}
|
|
11645
|
+
state.first = state.last = undefined;
|
|
11646
|
+
if (DESCRIPTORS) state.size = 0;
|
|
11647
|
+
else that.size = 0;
|
|
11648
|
+
},
|
|
11649
|
+
// 23.1.3.3 Map.prototype.delete(key)
|
|
11650
|
+
// 23.2.3.4 Set.prototype.delete(value)
|
|
11651
|
+
'delete': function (key) {
|
|
11652
|
+
var that = this;
|
|
11653
|
+
var state = getInternalState(that);
|
|
11654
|
+
var entry = getEntry(that, key);
|
|
11655
|
+
if (entry) {
|
|
11656
|
+
var next = entry.next;
|
|
11657
|
+
var prev = entry.previous;
|
|
11658
|
+
delete state.index[entry.index];
|
|
11659
|
+
entry.removed = true;
|
|
11660
|
+
if (prev) prev.next = next;
|
|
11661
|
+
if (next) next.previous = prev;
|
|
11662
|
+
if (state.first == entry) state.first = next;
|
|
11663
|
+
if (state.last == entry) state.last = prev;
|
|
11664
|
+
if (DESCRIPTORS) state.size--;
|
|
11665
|
+
else that.size--;
|
|
11666
|
+
} return !!entry;
|
|
11667
|
+
},
|
|
11668
|
+
// 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)
|
|
11669
|
+
// 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)
|
|
11670
|
+
forEach: function forEach(callbackfn /* , that = undefined */) {
|
|
11671
|
+
var state = getInternalState(this);
|
|
11672
|
+
var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
|
|
11673
|
+
var entry;
|
|
11674
|
+
while (entry = entry ? entry.next : state.first) {
|
|
11675
|
+
boundFunction(entry.value, entry.key, this);
|
|
11676
|
+
// revert to the last existing entry
|
|
11677
|
+
while (entry && entry.removed) entry = entry.previous;
|
|
11678
|
+
}
|
|
11679
|
+
},
|
|
11680
|
+
// 23.1.3.7 Map.prototype.has(key)
|
|
11681
|
+
// 23.2.3.7 Set.prototype.has(value)
|
|
11682
|
+
has: function has(key) {
|
|
11683
|
+
return !!getEntry(this, key);
|
|
11684
|
+
}
|
|
11685
|
+
});
|
|
11686
|
+
|
|
11687
|
+
redefineAll(C.prototype, IS_MAP ? {
|
|
11688
|
+
// 23.1.3.6 Map.prototype.get(key)
|
|
11689
|
+
get: function get(key) {
|
|
11690
|
+
var entry = getEntry(this, key);
|
|
11691
|
+
return entry && entry.value;
|
|
11692
|
+
},
|
|
11693
|
+
// 23.1.3.9 Map.prototype.set(key, value)
|
|
11694
|
+
set: function set(key, value) {
|
|
11695
|
+
return define(this, key === 0 ? 0 : key, value);
|
|
11696
|
+
}
|
|
11697
|
+
} : {
|
|
11698
|
+
// 23.2.3.1 Set.prototype.add(value)
|
|
11699
|
+
add: function add(value) {
|
|
11700
|
+
return define(this, value = value === 0 ? 0 : value, value);
|
|
11701
|
+
}
|
|
11702
|
+
});
|
|
11703
|
+
if (DESCRIPTORS) defineProperty(C.prototype, 'size', {
|
|
11704
|
+
get: function () {
|
|
11705
|
+
return getInternalState(this).size;
|
|
11706
|
+
}
|
|
11707
|
+
});
|
|
11708
|
+
return C;
|
|
11709
|
+
},
|
|
11710
|
+
setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {
|
|
11711
|
+
var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';
|
|
11712
|
+
var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);
|
|
11713
|
+
var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);
|
|
11714
|
+
// add .keys, .values, .entries, [@@iterator]
|
|
11715
|
+
// 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11
|
|
11716
|
+
defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {
|
|
11717
|
+
setInternalState(this, {
|
|
11718
|
+
type: ITERATOR_NAME,
|
|
11719
|
+
target: iterated,
|
|
11720
|
+
state: getInternalCollectionState(iterated),
|
|
11721
|
+
kind: kind,
|
|
11722
|
+
last: undefined
|
|
11723
|
+
});
|
|
11724
|
+
}, function () {
|
|
11725
|
+
var state = getInternalIteratorState(this);
|
|
11726
|
+
var kind = state.kind;
|
|
11727
|
+
var entry = state.last;
|
|
11728
|
+
// revert to the last existing entry
|
|
11729
|
+
while (entry && entry.removed) entry = entry.previous;
|
|
11730
|
+
// get next entry
|
|
11731
|
+
if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {
|
|
11732
|
+
// or finish the iteration
|
|
11733
|
+
state.target = undefined;
|
|
11734
|
+
return { value: undefined, done: true };
|
|
11735
|
+
}
|
|
11736
|
+
// return step by kind
|
|
11737
|
+
if (kind == 'keys') return { value: entry.key, done: false };
|
|
11738
|
+
if (kind == 'values') return { value: entry.value, done: false };
|
|
11739
|
+
return { value: [entry.key, entry.value], done: false };
|
|
11740
|
+
}, IS_MAP ? 'entries' : 'values', !IS_MAP, true);
|
|
11741
|
+
|
|
11742
|
+
// add [@@species], 23.1.2.2, 23.2.2.2
|
|
11743
|
+
setSpecies(CONSTRUCTOR_NAME);
|
|
11744
|
+
}
|
|
11745
|
+
};
|
|
11746
|
+
|
|
11747
|
+
|
|
11235
11748
|
/***/ }),
|
|
11236
11749
|
|
|
11237
11750
|
/***/ "65db":
|
|
@@ -11994,6 +12507,113 @@ module.exports = {"unnnicColorBackgroundSolo":"#E8F4F4"};
|
|
|
11994
12507
|
})));
|
|
11995
12508
|
|
|
11996
12509
|
|
|
12510
|
+
/***/ }),
|
|
12511
|
+
|
|
12512
|
+
/***/ "6d61":
|
|
12513
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
12514
|
+
|
|
12515
|
+
"use strict";
|
|
12516
|
+
|
|
12517
|
+
var $ = __webpack_require__("23e7");
|
|
12518
|
+
var global = __webpack_require__("da84");
|
|
12519
|
+
var isForced = __webpack_require__("94ca");
|
|
12520
|
+
var redefine = __webpack_require__("6eeb");
|
|
12521
|
+
var InternalMetadataModule = __webpack_require__("f183");
|
|
12522
|
+
var iterate = __webpack_require__("2266");
|
|
12523
|
+
var anInstance = __webpack_require__("19aa");
|
|
12524
|
+
var isObject = __webpack_require__("861d");
|
|
12525
|
+
var fails = __webpack_require__("d039");
|
|
12526
|
+
var checkCorrectnessOfIteration = __webpack_require__("1c7e");
|
|
12527
|
+
var setToStringTag = __webpack_require__("d44e");
|
|
12528
|
+
var inheritIfRequired = __webpack_require__("7156");
|
|
12529
|
+
|
|
12530
|
+
module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
|
|
12531
|
+
var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
|
|
12532
|
+
var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
|
|
12533
|
+
var ADDER = IS_MAP ? 'set' : 'add';
|
|
12534
|
+
var NativeConstructor = global[CONSTRUCTOR_NAME];
|
|
12535
|
+
var NativePrototype = NativeConstructor && NativeConstructor.prototype;
|
|
12536
|
+
var Constructor = NativeConstructor;
|
|
12537
|
+
var exported = {};
|
|
12538
|
+
|
|
12539
|
+
var fixMethod = function (KEY) {
|
|
12540
|
+
var nativeMethod = NativePrototype[KEY];
|
|
12541
|
+
redefine(NativePrototype, KEY,
|
|
12542
|
+
KEY == 'add' ? function add(value) {
|
|
12543
|
+
nativeMethod.call(this, value === 0 ? 0 : value);
|
|
12544
|
+
return this;
|
|
12545
|
+
} : KEY == 'delete' ? function (key) {
|
|
12546
|
+
return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
|
|
12547
|
+
} : KEY == 'get' ? function get(key) {
|
|
12548
|
+
return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);
|
|
12549
|
+
} : KEY == 'has' ? function has(key) {
|
|
12550
|
+
return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
|
|
12551
|
+
} : function set(key, value) {
|
|
12552
|
+
nativeMethod.call(this, key === 0 ? 0 : key, value);
|
|
12553
|
+
return this;
|
|
12554
|
+
}
|
|
12555
|
+
);
|
|
12556
|
+
};
|
|
12557
|
+
|
|
12558
|
+
// eslint-disable-next-line max-len
|
|
12559
|
+
if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {
|
|
12560
|
+
new NativeConstructor().entries().next();
|
|
12561
|
+
})))) {
|
|
12562
|
+
// create collection constructor
|
|
12563
|
+
Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);
|
|
12564
|
+
InternalMetadataModule.REQUIRED = true;
|
|
12565
|
+
} else if (isForced(CONSTRUCTOR_NAME, true)) {
|
|
12566
|
+
var instance = new Constructor();
|
|
12567
|
+
// early implementations not supports chaining
|
|
12568
|
+
var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;
|
|
12569
|
+
// V8 ~ Chromium 40- weak-collections throws on primitives, but should return false
|
|
12570
|
+
var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });
|
|
12571
|
+
// most early implementations doesn't supports iterables, most modern - not close it correctly
|
|
12572
|
+
// eslint-disable-next-line no-new
|
|
12573
|
+
var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });
|
|
12574
|
+
// for early implementations -0 and +0 not the same
|
|
12575
|
+
var BUGGY_ZERO = !IS_WEAK && fails(function () {
|
|
12576
|
+
// V8 ~ Chromium 42- fails only with 5+ elements
|
|
12577
|
+
var $instance = new NativeConstructor();
|
|
12578
|
+
var index = 5;
|
|
12579
|
+
while (index--) $instance[ADDER](index, index);
|
|
12580
|
+
return !$instance.has(-0);
|
|
12581
|
+
});
|
|
12582
|
+
|
|
12583
|
+
if (!ACCEPT_ITERABLES) {
|
|
12584
|
+
Constructor = wrapper(function (dummy, iterable) {
|
|
12585
|
+
anInstance(dummy, Constructor, CONSTRUCTOR_NAME);
|
|
12586
|
+
var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);
|
|
12587
|
+
if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
|
|
12588
|
+
return that;
|
|
12589
|
+
});
|
|
12590
|
+
Constructor.prototype = NativePrototype;
|
|
12591
|
+
NativePrototype.constructor = Constructor;
|
|
12592
|
+
}
|
|
12593
|
+
|
|
12594
|
+
if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {
|
|
12595
|
+
fixMethod('delete');
|
|
12596
|
+
fixMethod('has');
|
|
12597
|
+
IS_MAP && fixMethod('get');
|
|
12598
|
+
}
|
|
12599
|
+
|
|
12600
|
+
if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);
|
|
12601
|
+
|
|
12602
|
+
// weak collections should not contains .clear method
|
|
12603
|
+
if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;
|
|
12604
|
+
}
|
|
12605
|
+
|
|
12606
|
+
exported[CONSTRUCTOR_NAME] = Constructor;
|
|
12607
|
+
$({ global: true, forced: Constructor != NativeConstructor }, exported);
|
|
12608
|
+
|
|
12609
|
+
setToStringTag(Constructor, CONSTRUCTOR_NAME);
|
|
12610
|
+
|
|
12611
|
+
if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);
|
|
12612
|
+
|
|
12613
|
+
return Constructor;
|
|
12614
|
+
};
|
|
12615
|
+
|
|
12616
|
+
|
|
11997
12617
|
/***/ }),
|
|
11998
12618
|
|
|
11999
12619
|
/***/ "6d68":
|
|
@@ -13504,6 +14124,18 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
|
|
|
13504
14124
|
// extracted by mini-css-extract-plugin
|
|
13505
14125
|
module.exports = {"unnnicColorBackgroundSolo":"#E8F4F4"};
|
|
13506
14126
|
|
|
14127
|
+
/***/ }),
|
|
14128
|
+
|
|
14129
|
+
/***/ "80e0":
|
|
14130
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
14131
|
+
|
|
14132
|
+
var defineWellKnownSymbol = __webpack_require__("746f");
|
|
14133
|
+
|
|
14134
|
+
// `Symbol.replace` well-known symbol
|
|
14135
|
+
// https://tc39.github.io/ecma262/#sec-symbol.replace
|
|
14136
|
+
defineWellKnownSymbol('replace');
|
|
14137
|
+
|
|
14138
|
+
|
|
13507
14139
|
/***/ }),
|
|
13508
14140
|
|
|
13509
14141
|
/***/ "8155":
|
|
@@ -18161,6 +18793,123 @@ $({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD }, {
|
|
|
18161
18793
|
});
|
|
18162
18794
|
|
|
18163
18795
|
|
|
18796
|
+
/***/ }),
|
|
18797
|
+
|
|
18798
|
+
/***/ "a1f0":
|
|
18799
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
18800
|
+
|
|
18801
|
+
"use strict";
|
|
18802
|
+
|
|
18803
|
+
var $ = __webpack_require__("23e7");
|
|
18804
|
+
var createIteratorConstructor = __webpack_require__("9ed3");
|
|
18805
|
+
var requireObjectCoercible = __webpack_require__("1d80");
|
|
18806
|
+
var toLength = __webpack_require__("50c4");
|
|
18807
|
+
var aFunction = __webpack_require__("1c0b");
|
|
18808
|
+
var anObject = __webpack_require__("825a");
|
|
18809
|
+
var classof = __webpack_require__("c6b6");
|
|
18810
|
+
var isRegExp = __webpack_require__("44e7");
|
|
18811
|
+
var getRegExpFlags = __webpack_require__("ad6d");
|
|
18812
|
+
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
18813
|
+
var fails = __webpack_require__("d039");
|
|
18814
|
+
var wellKnownSymbol = __webpack_require__("b622");
|
|
18815
|
+
var speciesConstructor = __webpack_require__("4840");
|
|
18816
|
+
var advanceStringIndex = __webpack_require__("8aa5");
|
|
18817
|
+
var InternalStateModule = __webpack_require__("69f3");
|
|
18818
|
+
var IS_PURE = __webpack_require__("c430");
|
|
18819
|
+
|
|
18820
|
+
var MATCH_ALL = wellKnownSymbol('matchAll');
|
|
18821
|
+
var REGEXP_STRING = 'RegExp String';
|
|
18822
|
+
var REGEXP_STRING_ITERATOR = REGEXP_STRING + ' Iterator';
|
|
18823
|
+
var setInternalState = InternalStateModule.set;
|
|
18824
|
+
var getInternalState = InternalStateModule.getterFor(REGEXP_STRING_ITERATOR);
|
|
18825
|
+
var RegExpPrototype = RegExp.prototype;
|
|
18826
|
+
var regExpBuiltinExec = RegExpPrototype.exec;
|
|
18827
|
+
var nativeMatchAll = ''.matchAll;
|
|
18828
|
+
|
|
18829
|
+
var WORKS_WITH_NON_GLOBAL_REGEX = !!nativeMatchAll && !fails(function () {
|
|
18830
|
+
'a'.matchAll(/./);
|
|
18831
|
+
});
|
|
18832
|
+
|
|
18833
|
+
var regExpExec = function (R, S) {
|
|
18834
|
+
var exec = R.exec;
|
|
18835
|
+
var result;
|
|
18836
|
+
if (typeof exec == 'function') {
|
|
18837
|
+
result = exec.call(R, S);
|
|
18838
|
+
if (typeof result != 'object') throw TypeError('Incorrect exec result');
|
|
18839
|
+
return result;
|
|
18840
|
+
} return regExpBuiltinExec.call(R, S);
|
|
18841
|
+
};
|
|
18842
|
+
|
|
18843
|
+
// eslint-disable-next-line max-len
|
|
18844
|
+
var $RegExpStringIterator = createIteratorConstructor(function RegExpStringIterator(regexp, string, global, fullUnicode) {
|
|
18845
|
+
setInternalState(this, {
|
|
18846
|
+
type: REGEXP_STRING_ITERATOR,
|
|
18847
|
+
regexp: regexp,
|
|
18848
|
+
string: string,
|
|
18849
|
+
global: global,
|
|
18850
|
+
unicode: fullUnicode,
|
|
18851
|
+
done: false
|
|
18852
|
+
});
|
|
18853
|
+
}, REGEXP_STRING, function next() {
|
|
18854
|
+
var state = getInternalState(this);
|
|
18855
|
+
if (state.done) return { value: undefined, done: true };
|
|
18856
|
+
var R = state.regexp;
|
|
18857
|
+
var S = state.string;
|
|
18858
|
+
var match = regExpExec(R, S);
|
|
18859
|
+
if (match === null) return { value: undefined, done: state.done = true };
|
|
18860
|
+
if (state.global) {
|
|
18861
|
+
if (String(match[0]) == '') R.lastIndex = advanceStringIndex(S, toLength(R.lastIndex), state.unicode);
|
|
18862
|
+
return { value: match, done: false };
|
|
18863
|
+
}
|
|
18864
|
+
state.done = true;
|
|
18865
|
+
return { value: match, done: false };
|
|
18866
|
+
});
|
|
18867
|
+
|
|
18868
|
+
var $matchAll = function (string) {
|
|
18869
|
+
var R = anObject(this);
|
|
18870
|
+
var S = String(string);
|
|
18871
|
+
var C, flagsValue, flags, matcher, global, fullUnicode;
|
|
18872
|
+
C = speciesConstructor(R, RegExp);
|
|
18873
|
+
flagsValue = R.flags;
|
|
18874
|
+
if (flagsValue === undefined && R instanceof RegExp && !('flags' in RegExpPrototype)) {
|
|
18875
|
+
flagsValue = getRegExpFlags.call(R);
|
|
18876
|
+
}
|
|
18877
|
+
flags = flagsValue === undefined ? '' : String(flagsValue);
|
|
18878
|
+
matcher = new C(C === RegExp ? R.source : R, flags);
|
|
18879
|
+
global = !!~flags.indexOf('g');
|
|
18880
|
+
fullUnicode = !!~flags.indexOf('u');
|
|
18881
|
+
matcher.lastIndex = toLength(R.lastIndex);
|
|
18882
|
+
return new $RegExpStringIterator(matcher, S, global, fullUnicode);
|
|
18883
|
+
};
|
|
18884
|
+
|
|
18885
|
+
// `String.prototype.matchAll` method
|
|
18886
|
+
// https://github.com/tc39/proposal-string-matchall
|
|
18887
|
+
$({ target: 'String', proto: true, forced: WORKS_WITH_NON_GLOBAL_REGEX }, {
|
|
18888
|
+
matchAll: function matchAll(regexp) {
|
|
18889
|
+
var O = requireObjectCoercible(this);
|
|
18890
|
+
var flags, S, matcher, rx;
|
|
18891
|
+
if (regexp != null) {
|
|
18892
|
+
if (isRegExp(regexp)) {
|
|
18893
|
+
flags = String(requireObjectCoercible('flags' in RegExpPrototype
|
|
18894
|
+
? regexp.flags
|
|
18895
|
+
: getRegExpFlags.call(regexp)
|
|
18896
|
+
));
|
|
18897
|
+
if (!~flags.indexOf('g')) throw TypeError('`.matchAll` does not allow non-global regexes');
|
|
18898
|
+
}
|
|
18899
|
+
if (WORKS_WITH_NON_GLOBAL_REGEX) return nativeMatchAll.apply(O, arguments);
|
|
18900
|
+
matcher = regexp[MATCH_ALL];
|
|
18901
|
+
if (matcher === undefined && IS_PURE && classof(regexp) == 'RegExp') matcher = $matchAll;
|
|
18902
|
+
if (matcher != null) return aFunction(matcher).call(regexp, O);
|
|
18903
|
+
} else if (WORKS_WITH_NON_GLOBAL_REGEX) return nativeMatchAll.apply(O, arguments);
|
|
18904
|
+
S = String(O);
|
|
18905
|
+
rx = new RegExp(regexp, 'g');
|
|
18906
|
+
return IS_PURE ? $matchAll.call(rx, S) : rx[MATCH_ALL](S);
|
|
18907
|
+
}
|
|
18908
|
+
});
|
|
18909
|
+
|
|
18910
|
+
IS_PURE || MATCH_ALL in RegExpPrototype || createNonEnumerableProperty(RegExpPrototype, MATCH_ALL, $matchAll);
|
|
18911
|
+
|
|
18912
|
+
|
|
18164
18913
|
/***/ }),
|
|
18165
18914
|
|
|
18166
18915
|
/***/ "a356":
|
|
@@ -19219,6 +19968,135 @@ $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
|
|
|
19219
19968
|
});
|
|
19220
19969
|
|
|
19221
19970
|
|
|
19971
|
+
/***/ }),
|
|
19972
|
+
|
|
19973
|
+
/***/ "acac":
|
|
19974
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
19975
|
+
|
|
19976
|
+
"use strict";
|
|
19977
|
+
|
|
19978
|
+
var redefineAll = __webpack_require__("e2cc");
|
|
19979
|
+
var getWeakData = __webpack_require__("f183").getWeakData;
|
|
19980
|
+
var anObject = __webpack_require__("825a");
|
|
19981
|
+
var isObject = __webpack_require__("861d");
|
|
19982
|
+
var anInstance = __webpack_require__("19aa");
|
|
19983
|
+
var iterate = __webpack_require__("2266");
|
|
19984
|
+
var ArrayIterationModule = __webpack_require__("b727");
|
|
19985
|
+
var $has = __webpack_require__("5135");
|
|
19986
|
+
var InternalStateModule = __webpack_require__("69f3");
|
|
19987
|
+
|
|
19988
|
+
var setInternalState = InternalStateModule.set;
|
|
19989
|
+
var internalStateGetterFor = InternalStateModule.getterFor;
|
|
19990
|
+
var find = ArrayIterationModule.find;
|
|
19991
|
+
var findIndex = ArrayIterationModule.findIndex;
|
|
19992
|
+
var id = 0;
|
|
19993
|
+
|
|
19994
|
+
// fallback for uncaught frozen keys
|
|
19995
|
+
var uncaughtFrozenStore = function (store) {
|
|
19996
|
+
return store.frozen || (store.frozen = new UncaughtFrozenStore());
|
|
19997
|
+
};
|
|
19998
|
+
|
|
19999
|
+
var UncaughtFrozenStore = function () {
|
|
20000
|
+
this.entries = [];
|
|
20001
|
+
};
|
|
20002
|
+
|
|
20003
|
+
var findUncaughtFrozen = function (store, key) {
|
|
20004
|
+
return find(store.entries, function (it) {
|
|
20005
|
+
return it[0] === key;
|
|
20006
|
+
});
|
|
20007
|
+
};
|
|
20008
|
+
|
|
20009
|
+
UncaughtFrozenStore.prototype = {
|
|
20010
|
+
get: function (key) {
|
|
20011
|
+
var entry = findUncaughtFrozen(this, key);
|
|
20012
|
+
if (entry) return entry[1];
|
|
20013
|
+
},
|
|
20014
|
+
has: function (key) {
|
|
20015
|
+
return !!findUncaughtFrozen(this, key);
|
|
20016
|
+
},
|
|
20017
|
+
set: function (key, value) {
|
|
20018
|
+
var entry = findUncaughtFrozen(this, key);
|
|
20019
|
+
if (entry) entry[1] = value;
|
|
20020
|
+
else this.entries.push([key, value]);
|
|
20021
|
+
},
|
|
20022
|
+
'delete': function (key) {
|
|
20023
|
+
var index = findIndex(this.entries, function (it) {
|
|
20024
|
+
return it[0] === key;
|
|
20025
|
+
});
|
|
20026
|
+
if (~index) this.entries.splice(index, 1);
|
|
20027
|
+
return !!~index;
|
|
20028
|
+
}
|
|
20029
|
+
};
|
|
20030
|
+
|
|
20031
|
+
module.exports = {
|
|
20032
|
+
getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
|
|
20033
|
+
var C = wrapper(function (that, iterable) {
|
|
20034
|
+
anInstance(that, C, CONSTRUCTOR_NAME);
|
|
20035
|
+
setInternalState(that, {
|
|
20036
|
+
type: CONSTRUCTOR_NAME,
|
|
20037
|
+
id: id++,
|
|
20038
|
+
frozen: undefined
|
|
20039
|
+
});
|
|
20040
|
+
if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
|
|
20041
|
+
});
|
|
20042
|
+
|
|
20043
|
+
var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
|
|
20044
|
+
|
|
20045
|
+
var define = function (that, key, value) {
|
|
20046
|
+
var state = getInternalState(that);
|
|
20047
|
+
var data = getWeakData(anObject(key), true);
|
|
20048
|
+
if (data === true) uncaughtFrozenStore(state).set(key, value);
|
|
20049
|
+
else data[state.id] = value;
|
|
20050
|
+
return that;
|
|
20051
|
+
};
|
|
20052
|
+
|
|
20053
|
+
redefineAll(C.prototype, {
|
|
20054
|
+
// 23.3.3.2 WeakMap.prototype.delete(key)
|
|
20055
|
+
// 23.4.3.3 WeakSet.prototype.delete(value)
|
|
20056
|
+
'delete': function (key) {
|
|
20057
|
+
var state = getInternalState(this);
|
|
20058
|
+
if (!isObject(key)) return false;
|
|
20059
|
+
var data = getWeakData(key);
|
|
20060
|
+
if (data === true) return uncaughtFrozenStore(state)['delete'](key);
|
|
20061
|
+
return data && $has(data, state.id) && delete data[state.id];
|
|
20062
|
+
},
|
|
20063
|
+
// 23.3.3.4 WeakMap.prototype.has(key)
|
|
20064
|
+
// 23.4.3.4 WeakSet.prototype.has(value)
|
|
20065
|
+
has: function has(key) {
|
|
20066
|
+
var state = getInternalState(this);
|
|
20067
|
+
if (!isObject(key)) return false;
|
|
20068
|
+
var data = getWeakData(key);
|
|
20069
|
+
if (data === true) return uncaughtFrozenStore(state).has(key);
|
|
20070
|
+
return data && $has(data, state.id);
|
|
20071
|
+
}
|
|
20072
|
+
});
|
|
20073
|
+
|
|
20074
|
+
redefineAll(C.prototype, IS_MAP ? {
|
|
20075
|
+
// 23.3.3.3 WeakMap.prototype.get(key)
|
|
20076
|
+
get: function get(key) {
|
|
20077
|
+
var state = getInternalState(this);
|
|
20078
|
+
if (isObject(key)) {
|
|
20079
|
+
var data = getWeakData(key);
|
|
20080
|
+
if (data === true) return uncaughtFrozenStore(state).get(key);
|
|
20081
|
+
return data ? data[state.id] : undefined;
|
|
20082
|
+
}
|
|
20083
|
+
},
|
|
20084
|
+
// 23.3.3.5 WeakMap.prototype.set(key, value)
|
|
20085
|
+
set: function set(key, value) {
|
|
20086
|
+
return define(this, key, value);
|
|
20087
|
+
}
|
|
20088
|
+
} : {
|
|
20089
|
+
// 23.4.3.1 WeakSet.prototype.add(value)
|
|
20090
|
+
add: function add(value) {
|
|
20091
|
+
return define(this, value, true);
|
|
20092
|
+
}
|
|
20093
|
+
});
|
|
20094
|
+
|
|
20095
|
+
return C;
|
|
20096
|
+
}
|
|
20097
|
+
};
|
|
20098
|
+
|
|
20099
|
+
|
|
19222
20100
|
/***/ }),
|
|
19223
20101
|
|
|
19224
20102
|
/***/ "acfe":
|
|
@@ -20831,6 +21709,18 @@ module.exports = {
|
|
|
20831
21709
|
})));
|
|
20832
21710
|
|
|
20833
21711
|
|
|
21712
|
+
/***/ }),
|
|
21713
|
+
|
|
21714
|
+
/***/ "bb2f":
|
|
21715
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
21716
|
+
|
|
21717
|
+
var fails = __webpack_require__("d039");
|
|
21718
|
+
|
|
21719
|
+
module.exports = !fails(function () {
|
|
21720
|
+
return Object.isExtensible(Object.preventExtensions({}));
|
|
21721
|
+
});
|
|
21722
|
+
|
|
21723
|
+
|
|
20834
21724
|
/***/ }),
|
|
20835
21725
|
|
|
20836
21726
|
/***/ "bb71":
|
|
@@ -27117,6 +28007,25 @@ try {
|
|
|
27117
28007
|
module.exports = g;
|
|
27118
28008
|
|
|
27119
28009
|
|
|
28010
|
+
/***/ }),
|
|
28011
|
+
|
|
28012
|
+
/***/ "c8d2":
|
|
28013
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
28014
|
+
|
|
28015
|
+
var fails = __webpack_require__("d039");
|
|
28016
|
+
var whitespaces = __webpack_require__("5899");
|
|
28017
|
+
|
|
28018
|
+
var non = '\u200B\u0085\u180E';
|
|
28019
|
+
|
|
28020
|
+
// check that a method works with the correct list
|
|
28021
|
+
// of whitespaces and has a correct name
|
|
28022
|
+
module.exports = function (METHOD_NAME) {
|
|
28023
|
+
return fails(function () {
|
|
28024
|
+
return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME;
|
|
28025
|
+
});
|
|
28026
|
+
};
|
|
28027
|
+
|
|
28028
|
+
|
|
27120
28029
|
/***/ }),
|
|
27121
28030
|
|
|
27122
28031
|
/***/ "c8f3":
|
|
@@ -29226,13 +30135,6 @@ module.exports = "<svg id=\"default\" viewBox=\"0 0 80 40\" xmlns=\"http://www.w
|
|
|
29226
30135
|
|
|
29227
30136
|
/***/ }),
|
|
29228
30137
|
|
|
29229
|
-
/***/ "ddaa":
|
|
29230
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
29231
|
-
|
|
29232
|
-
// extracted by mini-css-extract-plugin
|
|
29233
|
-
|
|
29234
|
-
/***/ }),
|
|
29235
|
-
|
|
29236
30138
|
/***/ "ddb0":
|
|
29237
30139
|
/***/ (function(module, exports, __webpack_require__) {
|
|
29238
30140
|
|
|
@@ -29542,6 +30444,13 @@ module.exports = !fails(function () {
|
|
|
29542
30444
|
|
|
29543
30445
|
/***/ }),
|
|
29544
30446
|
|
|
30447
|
+
/***/ "e1cb":
|
|
30448
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
30449
|
+
|
|
30450
|
+
// extracted by mini-css-extract-plugin
|
|
30451
|
+
|
|
30452
|
+
/***/ }),
|
|
30453
|
+
|
|
29545
30454
|
/***/ "e1d3":
|
|
29546
30455
|
/***/ (function(module, exports, __webpack_require__) {
|
|
29547
30456
|
|
|
@@ -30880,6 +31789,74 @@ module.exports.f = function (C) {
|
|
|
30880
31789
|
/* unused harmony reexport * */
|
|
30881
31790
|
|
|
30882
31791
|
|
|
31792
|
+
/***/ }),
|
|
31793
|
+
|
|
31794
|
+
/***/ "f183":
|
|
31795
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
31796
|
+
|
|
31797
|
+
var hiddenKeys = __webpack_require__("d012");
|
|
31798
|
+
var isObject = __webpack_require__("861d");
|
|
31799
|
+
var has = __webpack_require__("5135");
|
|
31800
|
+
var defineProperty = __webpack_require__("9bf2").f;
|
|
31801
|
+
var uid = __webpack_require__("90e3");
|
|
31802
|
+
var FREEZING = __webpack_require__("bb2f");
|
|
31803
|
+
|
|
31804
|
+
var METADATA = uid('meta');
|
|
31805
|
+
var id = 0;
|
|
31806
|
+
|
|
31807
|
+
var isExtensible = Object.isExtensible || function () {
|
|
31808
|
+
return true;
|
|
31809
|
+
};
|
|
31810
|
+
|
|
31811
|
+
var setMetadata = function (it) {
|
|
31812
|
+
defineProperty(it, METADATA, { value: {
|
|
31813
|
+
objectID: 'O' + ++id, // object ID
|
|
31814
|
+
weakData: {} // weak collections IDs
|
|
31815
|
+
} });
|
|
31816
|
+
};
|
|
31817
|
+
|
|
31818
|
+
var fastKey = function (it, create) {
|
|
31819
|
+
// return a primitive with prefix
|
|
31820
|
+
if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;
|
|
31821
|
+
if (!has(it, METADATA)) {
|
|
31822
|
+
// can't set metadata to uncaught frozen object
|
|
31823
|
+
if (!isExtensible(it)) return 'F';
|
|
31824
|
+
// not necessary to add metadata
|
|
31825
|
+
if (!create) return 'E';
|
|
31826
|
+
// add missing metadata
|
|
31827
|
+
setMetadata(it);
|
|
31828
|
+
// return object ID
|
|
31829
|
+
} return it[METADATA].objectID;
|
|
31830
|
+
};
|
|
31831
|
+
|
|
31832
|
+
var getWeakData = function (it, create) {
|
|
31833
|
+
if (!has(it, METADATA)) {
|
|
31834
|
+
// can't set metadata to uncaught frozen object
|
|
31835
|
+
if (!isExtensible(it)) return true;
|
|
31836
|
+
// not necessary to add metadata
|
|
31837
|
+
if (!create) return false;
|
|
31838
|
+
// add missing metadata
|
|
31839
|
+
setMetadata(it);
|
|
31840
|
+
// return the store of weak collections IDs
|
|
31841
|
+
} return it[METADATA].weakData;
|
|
31842
|
+
};
|
|
31843
|
+
|
|
31844
|
+
// add metadata on freeze-family methods calling
|
|
31845
|
+
var onFreeze = function (it) {
|
|
31846
|
+
if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);
|
|
31847
|
+
return it;
|
|
31848
|
+
};
|
|
31849
|
+
|
|
31850
|
+
var meta = module.exports = {
|
|
31851
|
+
REQUIRED: false,
|
|
31852
|
+
fastKey: fastKey,
|
|
31853
|
+
getWeakData: getWeakData,
|
|
31854
|
+
onFreeze: onFreeze
|
|
31855
|
+
};
|
|
31856
|
+
|
|
31857
|
+
hiddenKeys[METADATA] = true;
|
|
31858
|
+
|
|
31859
|
+
|
|
30883
31860
|
/***/ }),
|
|
30884
31861
|
|
|
30885
31862
|
/***/ "f1ca":
|
|
@@ -38827,7 +39804,7 @@ var Alert_component = normalizeComponent(
|
|
|
38827
39804
|
|
|
38828
39805
|
|
|
38829
39806
|
|
|
38830
|
-
/* harmony default export */ var
|
|
39807
|
+
/* harmony default export */ var utils_call = ({
|
|
38831
39808
|
callAlert: function callAlert(_ref) {
|
|
38832
39809
|
var props = _ref.props,
|
|
38833
39810
|
seconds = _ref.seconds;
|
|
@@ -42320,14 +43297,370 @@ var ChartRainbow_component = normalizeComponent(
|
|
|
42320
43297
|
)
|
|
42321
43298
|
|
|
42322
43299
|
/* harmony default export */ var ChartRainbow = (ChartRainbow_component.exports);
|
|
42323
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"1cea8ebe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/TextEditor/TextEditor.vue?vue&type=template&id=
|
|
42324
|
-
var
|
|
42325
|
-
var
|
|
43300
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"1cea8ebe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/TextEditor/TextEditor.vue?vue&type=template&id=5340a05a&scoped=true&
|
|
43301
|
+
var TextEditorvue_type_template_id_5340a05a_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"unnnic-text-editor"},[_c('div',{staticClass:"text-editor",on:{"click":function($event){return _vm.$refs.oDoc.focus()}}},[_c('textarea',{ref:"oDoc",staticClass:"inside",domProps:{"value":_vm.value},on:{"input":function($event){return _vm.$emit('input', $event.srcElement.value)},"keydown":function($event){return _vm.$emit('keydown', $event)},"focus":function($event){_vm.isFocused = true},"blur":function($event){_vm.isFocused = false}}}),(_vm.$slots['footer-input'])?_c('div',{staticClass:"footer-input",on:{"click":function($event){$event.stopPropagation();}}},[_vm._t("footer-input")],2):_vm._e()]),_c('div',{staticClass:"actions"},[_c('unnnic-tool-tip',{attrs:{"side":"left","text":_vm.text('action'),"enabled":""}},[_c('unnnic-button-icon',{attrs:{"type":"secondary","size":"small","icon":"flash-1-3"},on:{"click":function($event){return _vm.$emit('action')}}})],1),_c('unnnic-button-icon',{attrs:{"type":"primary","size":"small","icon":"send-email-3-1"},on:{"click":function($event){return _vm.$emit('send')}}})],1),_c('div',{staticClass:"format"},[_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Undo'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"arrow-undo","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('undo')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Redo'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"arrow-redo","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('redo')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('RecordAudio'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"microphone","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"mousedown":function($event){return _vm.$emit('record-audio-down')},"mouseup":function($event){return _vm.$emit('record-audio-up')},"click":function($event){return _vm.$emit('record-audio')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Attach'),"enabled":!_vm.attachmentOptionsOpen}},[_c('unnnic-dropdown',{staticClass:"attachment-options-dropdown",attrs:{"open":_vm.attachmentOptionsOpen,"position":"none"},on:{"update:open":function($event){_vm.attachmentOptionsOpen=$event}}},[_c('unnnic-icon',{attrs:{"slot":"trigger","icon":"attachment","size":"ant","clickable":"","scheme":_vm.iconScheme},slot:"trigger"}),_c('div',{staticClass:"attachment-options-container"},[_vm._t("attachment-options")],2)],1)],1)],1)])}
|
|
43302
|
+
var TextEditorvue_type_template_id_5340a05a_scoped_true_staticRenderFns = []
|
|
43303
|
+
|
|
43304
|
+
|
|
43305
|
+
// CONCATENATED MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=template&id=5340a05a&scoped=true&
|
|
43306
|
+
|
|
43307
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.match-all.js
|
|
43308
|
+
var es_string_match_all = __webpack_require__("a1f0");
|
|
43309
|
+
|
|
43310
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.trim.js
|
|
43311
|
+
var es_string_trim = __webpack_require__("498a");
|
|
43312
|
+
|
|
43313
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.replace.js
|
|
43314
|
+
var es_symbol_replace = __webpack_require__("80e0");
|
|
43315
|
+
|
|
43316
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.constructor.js
|
|
43317
|
+
var es_regexp_constructor = __webpack_require__("4d63");
|
|
43318
|
+
|
|
43319
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.weak-map.js
|
|
43320
|
+
var es_weak_map = __webpack_require__("10d1");
|
|
43321
|
+
|
|
43322
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
43323
|
+
|
|
43324
|
+
|
|
43325
|
+
|
|
43326
|
+
|
|
43327
|
+
|
|
43328
|
+
|
|
43329
|
+
|
|
43330
|
+
function _typeof(obj) {
|
|
43331
|
+
"@babel/helpers - typeof";
|
|
43332
|
+
|
|
43333
|
+
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
|
43334
|
+
_typeof = function _typeof(obj) {
|
|
43335
|
+
return typeof obj;
|
|
43336
|
+
};
|
|
43337
|
+
} else {
|
|
43338
|
+
_typeof = function _typeof(obj) {
|
|
43339
|
+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
43340
|
+
};
|
|
43341
|
+
}
|
|
43342
|
+
|
|
43343
|
+
return _typeof(obj);
|
|
43344
|
+
}
|
|
43345
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.map.js
|
|
43346
|
+
var es_map = __webpack_require__("4ec9");
|
|
43347
|
+
|
|
43348
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.get-prototype-of.js
|
|
43349
|
+
var es_object_get_prototype_of = __webpack_require__("3410");
|
|
43350
|
+
|
|
43351
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js
|
|
43352
|
+
|
|
43353
|
+
function _getPrototypeOf(o) {
|
|
43354
|
+
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
43355
|
+
return o.__proto__ || Object.getPrototypeOf(o);
|
|
43356
|
+
};
|
|
43357
|
+
return _getPrototypeOf(o);
|
|
43358
|
+
}
|
|
43359
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
|
|
43360
|
+
function _setPrototypeOf(o, p) {
|
|
43361
|
+
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
43362
|
+
o.__proto__ = p;
|
|
43363
|
+
return o;
|
|
43364
|
+
};
|
|
43365
|
+
|
|
43366
|
+
return _setPrototypeOf(o, p);
|
|
43367
|
+
}
|
|
43368
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/isNativeFunction.js
|
|
43369
|
+
|
|
43370
|
+
|
|
43371
|
+
|
|
43372
|
+
function _isNativeFunction(fn) {
|
|
43373
|
+
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
43374
|
+
}
|
|
43375
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.reflect.construct.js
|
|
43376
|
+
var es_reflect_construct = __webpack_require__("4ae1");
|
|
43377
|
+
|
|
43378
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js
|
|
43379
|
+
|
|
43380
|
+
|
|
43381
|
+
|
|
43382
|
+
function _isNativeReflectConstruct() {
|
|
43383
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
43384
|
+
if (Reflect.construct.sham) return false;
|
|
43385
|
+
if (typeof Proxy === "function") return true;
|
|
43386
|
+
|
|
43387
|
+
try {
|
|
43388
|
+
Date.prototype.toString.call(Reflect.construct(Date, [], function () {}));
|
|
43389
|
+
return true;
|
|
43390
|
+
} catch (e) {
|
|
43391
|
+
return false;
|
|
43392
|
+
}
|
|
43393
|
+
}
|
|
43394
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/construct.js
|
|
43395
|
+
|
|
43396
|
+
|
|
43397
|
+
|
|
43398
|
+
function construct_construct(Parent, args, Class) {
|
|
43399
|
+
if (_isNativeReflectConstruct()) {
|
|
43400
|
+
construct_construct = Reflect.construct;
|
|
43401
|
+
} else {
|
|
43402
|
+
construct_construct = function _construct(Parent, args, Class) {
|
|
43403
|
+
var a = [null];
|
|
43404
|
+
a.push.apply(a, args);
|
|
43405
|
+
var Constructor = Function.bind.apply(Parent, a);
|
|
43406
|
+
var instance = new Constructor();
|
|
43407
|
+
if (Class) _setPrototypeOf(instance, Class.prototype);
|
|
43408
|
+
return instance;
|
|
43409
|
+
};
|
|
43410
|
+
}
|
|
43411
|
+
|
|
43412
|
+
return construct_construct.apply(null, arguments);
|
|
43413
|
+
}
|
|
43414
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js
|
|
43415
|
+
|
|
43416
|
+
|
|
43417
|
+
|
|
43418
|
+
|
|
43419
|
+
|
|
43420
|
+
|
|
43421
|
+
|
|
43422
|
+
|
|
43423
|
+
|
|
43424
|
+
function wrapNativeSuper_wrapNativeSuper(Class) {
|
|
43425
|
+
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
43426
|
+
|
|
43427
|
+
wrapNativeSuper_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
43428
|
+
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
43429
|
+
|
|
43430
|
+
if (typeof Class !== "function") {
|
|
43431
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
43432
|
+
}
|
|
43433
|
+
|
|
43434
|
+
if (typeof _cache !== "undefined") {
|
|
43435
|
+
if (_cache.has(Class)) return _cache.get(Class);
|
|
43436
|
+
|
|
43437
|
+
_cache.set(Class, Wrapper);
|
|
43438
|
+
}
|
|
43439
|
+
|
|
43440
|
+
function Wrapper() {
|
|
43441
|
+
return construct_construct(Class, arguments, _getPrototypeOf(this).constructor);
|
|
43442
|
+
}
|
|
43443
|
+
|
|
43444
|
+
Wrapper.prototype = Object.create(Class.prototype, {
|
|
43445
|
+
constructor: {
|
|
43446
|
+
value: Wrapper,
|
|
43447
|
+
enumerable: false,
|
|
43448
|
+
writable: true,
|
|
43449
|
+
configurable: true
|
|
43450
|
+
}
|
|
43451
|
+
});
|
|
43452
|
+
return _setPrototypeOf(Wrapper, Class);
|
|
43453
|
+
};
|
|
43454
|
+
|
|
43455
|
+
return wrapNativeSuper_wrapNativeSuper(Class);
|
|
43456
|
+
}
|
|
43457
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js
|
|
43458
|
+
function _assertThisInitialized(self) {
|
|
43459
|
+
if (self === void 0) {
|
|
43460
|
+
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
43461
|
+
}
|
|
43462
|
+
|
|
43463
|
+
return self;
|
|
43464
|
+
}
|
|
43465
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js
|
|
43466
|
+
|
|
43467
|
+
|
|
43468
|
+
function _possibleConstructorReturn(self, call) {
|
|
43469
|
+
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
43470
|
+
return call;
|
|
43471
|
+
}
|
|
43472
|
+
|
|
43473
|
+
return _assertThisInitialized(self);
|
|
43474
|
+
}
|
|
43475
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/inherits.js
|
|
43476
|
+
|
|
43477
|
+
function _inherits(subClass, superClass) {
|
|
43478
|
+
if (typeof superClass !== "function" && superClass !== null) {
|
|
43479
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
43480
|
+
}
|
|
43481
|
+
|
|
43482
|
+
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
43483
|
+
constructor: {
|
|
43484
|
+
value: subClass,
|
|
43485
|
+
writable: true,
|
|
43486
|
+
configurable: true
|
|
43487
|
+
}
|
|
43488
|
+
});
|
|
43489
|
+
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
43490
|
+
}
|
|
43491
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/wrapRegExp.js
|
|
43492
|
+
|
|
43493
|
+
|
|
43494
|
+
|
|
43495
|
+
|
|
43496
|
+
|
|
43497
|
+
|
|
43498
|
+
|
|
43499
|
+
|
|
43500
|
+
|
|
42326
43501
|
|
|
42327
43502
|
|
|
42328
|
-
// CONCATENATED MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=template&id=538f8db5&scoped=true&
|
|
42329
43503
|
|
|
43504
|
+
|
|
43505
|
+
|
|
43506
|
+
|
|
43507
|
+
|
|
43508
|
+
|
|
43509
|
+
|
|
43510
|
+
|
|
43511
|
+
function _wrapRegExp(re, groups) {
|
|
43512
|
+
_wrapRegExp = function _wrapRegExp(re, groups) {
|
|
43513
|
+
return new BabelRegExp(re, undefined, groups);
|
|
43514
|
+
};
|
|
43515
|
+
|
|
43516
|
+
var _RegExp = wrapNativeSuper_wrapNativeSuper(RegExp);
|
|
43517
|
+
|
|
43518
|
+
var _super = RegExp.prototype;
|
|
43519
|
+
|
|
43520
|
+
var _groups = new WeakMap();
|
|
43521
|
+
|
|
43522
|
+
function BabelRegExp(re, flags, groups) {
|
|
43523
|
+
var _this = _RegExp.call(this, re, flags);
|
|
43524
|
+
|
|
43525
|
+
_groups.set(_this, groups || _groups.get(re));
|
|
43526
|
+
|
|
43527
|
+
return _this;
|
|
43528
|
+
}
|
|
43529
|
+
|
|
43530
|
+
_inherits(BabelRegExp, _RegExp);
|
|
43531
|
+
|
|
43532
|
+
BabelRegExp.prototype.exec = function (str) {
|
|
43533
|
+
var result = _super.exec.call(this, str);
|
|
43534
|
+
|
|
43535
|
+
if (result) result.groups = buildGroups(result, this);
|
|
43536
|
+
return result;
|
|
43537
|
+
};
|
|
43538
|
+
|
|
43539
|
+
BabelRegExp.prototype[Symbol.replace] = function (str, substitution) {
|
|
43540
|
+
if (typeof substitution === "string") {
|
|
43541
|
+
var groups = _groups.get(this);
|
|
43542
|
+
|
|
43543
|
+
return _super[Symbol.replace].call(this, str, substitution.replace(/\$<([^>]+)>/g, function (_, name) {
|
|
43544
|
+
return "$" + groups[name];
|
|
43545
|
+
}));
|
|
43546
|
+
} else if (typeof substitution === "function") {
|
|
43547
|
+
var _this = this;
|
|
43548
|
+
|
|
43549
|
+
return _super[Symbol.replace].call(this, str, function () {
|
|
43550
|
+
var args = [];
|
|
43551
|
+
args.push.apply(args, arguments);
|
|
43552
|
+
|
|
43553
|
+
if (_typeof(args[args.length - 1]) !== "object") {
|
|
43554
|
+
args.push(buildGroups(args, _this));
|
|
43555
|
+
}
|
|
43556
|
+
|
|
43557
|
+
return substitution.apply(this, args);
|
|
43558
|
+
});
|
|
43559
|
+
} else {
|
|
43560
|
+
return _super[Symbol.replace].call(this, str, substitution);
|
|
43561
|
+
}
|
|
43562
|
+
};
|
|
43563
|
+
|
|
43564
|
+
function buildGroups(result, re) {
|
|
43565
|
+
var g = _groups.get(re);
|
|
43566
|
+
|
|
43567
|
+
return Object.keys(g).reduce(function (groups, name) {
|
|
43568
|
+
groups[name] = result[g[name]];
|
|
43569
|
+
return groups;
|
|
43570
|
+
}, Object.create(null));
|
|
43571
|
+
}
|
|
43572
|
+
|
|
43573
|
+
return _wrapRegExp.apply(this, arguments);
|
|
43574
|
+
}
|
|
43575
|
+
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js
|
|
43576
|
+
|
|
43577
|
+
|
|
43578
|
+
|
|
43579
|
+
|
|
43580
|
+
|
|
43581
|
+
|
|
43582
|
+
|
|
43583
|
+
|
|
43584
|
+
function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
43585
|
+
var it;
|
|
43586
|
+
|
|
43587
|
+
if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
|
|
43588
|
+
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
43589
|
+
if (it) o = it;
|
|
43590
|
+
var i = 0;
|
|
43591
|
+
|
|
43592
|
+
var F = function F() {};
|
|
43593
|
+
|
|
43594
|
+
return {
|
|
43595
|
+
s: F,
|
|
43596
|
+
n: function n() {
|
|
43597
|
+
if (i >= o.length) return {
|
|
43598
|
+
done: true
|
|
43599
|
+
};
|
|
43600
|
+
return {
|
|
43601
|
+
done: false,
|
|
43602
|
+
value: o[i++]
|
|
43603
|
+
};
|
|
43604
|
+
},
|
|
43605
|
+
e: function e(_e) {
|
|
43606
|
+
throw _e;
|
|
43607
|
+
},
|
|
43608
|
+
f: F
|
|
43609
|
+
};
|
|
43610
|
+
}
|
|
43611
|
+
|
|
43612
|
+
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
43613
|
+
}
|
|
43614
|
+
|
|
43615
|
+
var normalCompletion = true,
|
|
43616
|
+
didErr = false,
|
|
43617
|
+
err;
|
|
43618
|
+
return {
|
|
43619
|
+
s: function s() {
|
|
43620
|
+
it = o[Symbol.iterator]();
|
|
43621
|
+
},
|
|
43622
|
+
n: function n() {
|
|
43623
|
+
var step = it.next();
|
|
43624
|
+
normalCompletion = step.done;
|
|
43625
|
+
return step;
|
|
43626
|
+
},
|
|
43627
|
+
e: function e(_e2) {
|
|
43628
|
+
didErr = true;
|
|
43629
|
+
err = _e2;
|
|
43630
|
+
},
|
|
43631
|
+
f: function f() {
|
|
43632
|
+
try {
|
|
43633
|
+
if (!normalCompletion && it["return"] != null) it["return"]();
|
|
43634
|
+
} finally {
|
|
43635
|
+
if (didErr) throw err;
|
|
43636
|
+
}
|
|
43637
|
+
}
|
|
43638
|
+
};
|
|
43639
|
+
}
|
|
42330
43640
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/TextEditor/TextEditor.vue?vue&type=script&lang=js&
|
|
43641
|
+
|
|
43642
|
+
|
|
43643
|
+
|
|
43644
|
+
|
|
43645
|
+
|
|
43646
|
+
|
|
43647
|
+
|
|
43648
|
+
|
|
43649
|
+
|
|
43650
|
+
|
|
43651
|
+
//
|
|
43652
|
+
//
|
|
43653
|
+
//
|
|
43654
|
+
//
|
|
43655
|
+
//
|
|
43656
|
+
//
|
|
43657
|
+
//
|
|
43658
|
+
//
|
|
43659
|
+
//
|
|
43660
|
+
//
|
|
43661
|
+
//
|
|
43662
|
+
//
|
|
43663
|
+
//
|
|
42331
43664
|
//
|
|
42332
43665
|
//
|
|
42333
43666
|
//
|
|
@@ -42596,13 +43929,32 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42596
43929
|
action: 'Mensagens rápidas'
|
|
42597
43930
|
};
|
|
42598
43931
|
}
|
|
43932
|
+
},
|
|
43933
|
+
tags: {
|
|
43934
|
+
type: Array,
|
|
43935
|
+
default: function _default() {
|
|
43936
|
+
return ['b', 'i', 'u', 'ul', 'li', 'br', 'div'];
|
|
43937
|
+
}
|
|
43938
|
+
},
|
|
43939
|
+
attributes: {
|
|
43940
|
+
type: Array,
|
|
43941
|
+
default: function _default() {
|
|
43942
|
+
return ['style'];
|
|
43943
|
+
}
|
|
43944
|
+
},
|
|
43945
|
+
styleProperties: {
|
|
43946
|
+
type: Array,
|
|
43947
|
+
default: function _default() {
|
|
43948
|
+
return ['text-align'];
|
|
43949
|
+
}
|
|
42599
43950
|
}
|
|
42600
43951
|
},
|
|
42601
43952
|
data: function data() {
|
|
42602
43953
|
return {
|
|
42603
43954
|
initialContent: '',
|
|
42604
43955
|
attachmentOptionsOpen: false,
|
|
42605
|
-
isFocused: false
|
|
43956
|
+
isFocused: false,
|
|
43957
|
+
lastValueFromInside: ''
|
|
42606
43958
|
};
|
|
42607
43959
|
},
|
|
42608
43960
|
computed: {
|
|
@@ -42612,6 +43964,23 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42612
43964
|
},
|
|
42613
43965
|
created: function created() {
|
|
42614
43966
|
this.initialContent = this.value;
|
|
43967
|
+
document.execCommand('defaultParagraphSeparator', false, 'div');
|
|
43968
|
+
},
|
|
43969
|
+
watch: {
|
|
43970
|
+
value: {
|
|
43971
|
+
immediate: true,
|
|
43972
|
+
handler: function handler() {
|
|
43973
|
+
var _this = this;
|
|
43974
|
+
|
|
43975
|
+
// if (this.value !== this.lastValueFromInside) {
|
|
43976
|
+
// this.$refs.oDoc.innerHTML = this.value;
|
|
43977
|
+
// }
|
|
43978
|
+
this.$nextTick(function () {
|
|
43979
|
+
_this.$refs.oDoc.style.minHeight = 0;
|
|
43980
|
+
_this.$refs.oDoc.style.minHeight = "".concat(_this.$refs.oDoc.scrollHeight, "px");
|
|
43981
|
+
});
|
|
43982
|
+
}
|
|
43983
|
+
}
|
|
42615
43984
|
},
|
|
42616
43985
|
methods: {
|
|
42617
43986
|
formatDoc: function formatDoc(sCmd, sValue) {
|
|
@@ -42622,16 +43991,81 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42622
43991
|
validateMode: function validateMode() {
|
|
42623
43992
|
return this.$refs.oDoc.focus();
|
|
42624
43993
|
},
|
|
42625
|
-
|
|
42626
|
-
this
|
|
43994
|
+
emitInput: function emitInput() {
|
|
43995
|
+
var _this2 = this;
|
|
43996
|
+
|
|
43997
|
+
this.lastValueFromInside = this.$refs.oDoc.innerHTML;
|
|
43998
|
+
this.lastValueFromInside = this.lastValueFromInside.replace(/<(\/)?([^> ]+)( [^>]+)?>/gi, function ($1) {
|
|
43999
|
+
var $2 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
44000
|
+
var $3 = arguments.length > 2 ? arguments[2] : undefined;
|
|
44001
|
+
var $4 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '';
|
|
44002
|
+
|
|
44003
|
+
if (_this2.tags.includes($3)) {
|
|
44004
|
+
var complements = []; // eslint-disable-next-line no-restricted-syntax
|
|
44005
|
+
|
|
44006
|
+
var _iterator = _createForOfIteratorHelper($4.matchAll( /*#__PURE__*/_wrapRegExp(/(((?:(?![ =])[\s\S])+)="((?:(?!")[\s\S])*)"|((?:(?![ =])[\s\S])+)='((?:(?!")[\s\S])*)')/g, {
|
|
44007
|
+
name1: 2,
|
|
44008
|
+
value1: 3,
|
|
44009
|
+
name2: 4,
|
|
44010
|
+
value2: 5
|
|
44011
|
+
}))),
|
|
44012
|
+
_step;
|
|
44013
|
+
|
|
44014
|
+
try {
|
|
44015
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
44016
|
+
var i = _step.value;
|
|
44017
|
+
var name = i.groups.name1 || i.groups.name2;
|
|
44018
|
+
var value = i.groups.value1 || i.groups.value2;
|
|
44019
|
+
|
|
44020
|
+
if (_this2.attributes.includes('style') && name === 'style') {
|
|
44021
|
+
var styles = []; // eslint-disable-next-line no-restricted-syntax
|
|
44022
|
+
|
|
44023
|
+
var _iterator2 = _createForOfIteratorHelper(value.matchAll( /*#__PURE__*/_wrapRegExp(/((?:(?!:)[\s\S])+):((?:(?!;)[\s\S])+);?/g, {
|
|
44024
|
+
propertyName: 1,
|
|
44025
|
+
propertyValue: 2
|
|
44026
|
+
}))),
|
|
44027
|
+
_step2;
|
|
44028
|
+
|
|
44029
|
+
try {
|
|
44030
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
44031
|
+
var j = _step2.value;
|
|
44032
|
+
|
|
44033
|
+
if (_this2.styleProperties.includes(j.groups.propertyName.toLowerCase().trim())) {
|
|
44034
|
+
styles.push("".concat(j.groups.propertyName.toLowerCase().trim(), ": ").concat(j.groups.propertyValue.trim()));
|
|
44035
|
+
}
|
|
44036
|
+
}
|
|
44037
|
+
} catch (err) {
|
|
44038
|
+
_iterator2.e(err);
|
|
44039
|
+
} finally {
|
|
44040
|
+
_iterator2.f();
|
|
44041
|
+
}
|
|
44042
|
+
|
|
44043
|
+
complements.push("style=\"".concat(styles.join('; '), ";\""));
|
|
44044
|
+
}
|
|
44045
|
+
}
|
|
44046
|
+
} catch (err) {
|
|
44047
|
+
_iterator.e(err);
|
|
44048
|
+
} finally {
|
|
44049
|
+
_iterator.f();
|
|
44050
|
+
}
|
|
44051
|
+
|
|
44052
|
+
return "<".concat($2).concat($3).concat(complements.length ? " ".concat(complements.join(' ')) : '', ">");
|
|
44053
|
+
}
|
|
44054
|
+
|
|
44055
|
+
return '';
|
|
44056
|
+
});
|
|
44057
|
+
this.$emit('input', this.lastValueFromInside);
|
|
44058
|
+
},
|
|
44059
|
+
onInput: function onInput() {
|
|
44060
|
+
this.emitInput();
|
|
42627
44061
|
},
|
|
42628
44062
|
setValue: function setValue(value) {
|
|
42629
44063
|
this.$refs.oDoc.innerHTML = value;
|
|
42630
|
-
this
|
|
44064
|
+
this.emitInput();
|
|
42631
44065
|
},
|
|
42632
44066
|
clear: function clear() {
|
|
42633
44067
|
this.$refs.oDoc.innerHTML = '';
|
|
42634
|
-
this
|
|
44068
|
+
this.emitInput();
|
|
42635
44069
|
},
|
|
42636
44070
|
text: function text(key) {
|
|
42637
44071
|
return this.texts[key];
|
|
@@ -42640,8 +44074,8 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42640
44074
|
});
|
|
42641
44075
|
// CONCATENATED MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=script&lang=js&
|
|
42642
44076
|
/* harmony default export */ var TextEditor_TextEditorvue_type_script_lang_js_ = (TextEditorvue_type_script_lang_js_);
|
|
42643
|
-
// EXTERNAL MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=style&index=0&id=
|
|
42644
|
-
var
|
|
44077
|
+
// EXTERNAL MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=style&index=0&id=5340a05a&lang=scss&scoped=true&
|
|
44078
|
+
var TextEditorvue_type_style_index_0_id_5340a05a_lang_scss_scoped_true_ = __webpack_require__("5058");
|
|
42645
44079
|
|
|
42646
44080
|
// CONCATENATED MODULE: ./src/components/TextEditor/TextEditor.vue
|
|
42647
44081
|
|
|
@@ -42654,11 +44088,11 @@ var TextEditorvue_type_style_index_0_id_538f8db5_lang_scss_scoped_true_ = __webp
|
|
|
42654
44088
|
|
|
42655
44089
|
var TextEditor_component = normalizeComponent(
|
|
42656
44090
|
TextEditor_TextEditorvue_type_script_lang_js_,
|
|
42657
|
-
|
|
42658
|
-
|
|
44091
|
+
TextEditorvue_type_template_id_5340a05a_scoped_true_render,
|
|
44092
|
+
TextEditorvue_type_template_id_5340a05a_scoped_true_staticRenderFns,
|
|
42659
44093
|
false,
|
|
42660
44094
|
null,
|
|
42661
|
-
"
|
|
44095
|
+
"5340a05a",
|
|
42662
44096
|
null
|
|
42663
44097
|
|
|
42664
44098
|
)
|
|
@@ -43943,8 +45377,8 @@ var unnnicSelect = Select;
|
|
|
43943
45377
|
var unnnicSelectItem = SelectItem;
|
|
43944
45378
|
var unnnicMultiSelect = MultiSelect;
|
|
43945
45379
|
var unnnicAlert = Alert;
|
|
43946
|
-
var unnnicCallAlert =
|
|
43947
|
-
var unnnicCallModal =
|
|
45380
|
+
var unnnicCallAlert = utils_call.callAlert;
|
|
45381
|
+
var unnnicCallModal = utils_call.callModal;
|
|
43948
45382
|
var unnnicAutocomplete = Autocomplete;
|
|
43949
45383
|
var unnnicAutocompleteSelect = AutocompleteSelect;
|
|
43950
45384
|
var unnnicTag = Tag;
|