@weni/unnnic-system 1.10.11 → 1.10.13
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 +1463 -35
- package/dist/unnnic.common.js.map +1 -1
- package/dist/unnnic.css +1 -1
- package/dist/unnnic.umd.js +1463 -35
- package/dist/unnnic.umd.js.map +1 -1
- package/dist/unnnic.umd.min.js +27 -27
- package/dist/unnnic.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/icons/typing-1.svg +2 -2
- package/src/components/TextEditor/TextEditor.vue +79 -4
- package/src/stories/TextEditor.stories.js +2 -0
- package/src/utils/icons.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":
|
|
@@ -9430,6 +9738,17 @@ fixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, ma
|
|
|
9430
9738
|
});
|
|
9431
9739
|
|
|
9432
9740
|
|
|
9741
|
+
/***/ }),
|
|
9742
|
+
|
|
9743
|
+
/***/ "53da":
|
|
9744
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9745
|
+
|
|
9746
|
+
"use strict";
|
|
9747
|
+
/* 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_243fe679_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("6a62");
|
|
9748
|
+
/* 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_243fe679_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_243fe679_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
|
|
9749
|
+
/* unused harmony reexport * */
|
|
9750
|
+
|
|
9751
|
+
|
|
9433
9752
|
/***/ }),
|
|
9434
9753
|
|
|
9435
9754
|
/***/ "5468":
|
|
@@ -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":
|
|
@@ -11909,6 +12422,13 @@ module.exports = {
|
|
|
11909
12422
|
};
|
|
11910
12423
|
|
|
11911
12424
|
|
|
12425
|
+
/***/ }),
|
|
12426
|
+
|
|
12427
|
+
/***/ "6a62":
|
|
12428
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
12429
|
+
|
|
12430
|
+
// extracted by mini-css-extract-plugin
|
|
12431
|
+
|
|
11912
12432
|
/***/ }),
|
|
11913
12433
|
|
|
11914
12434
|
/***/ "6cab":
|
|
@@ -11994,6 +12514,113 @@ module.exports = {"unnnicColorBackgroundSolo":"#E8F4F4"};
|
|
|
11994
12514
|
})));
|
|
11995
12515
|
|
|
11996
12516
|
|
|
12517
|
+
/***/ }),
|
|
12518
|
+
|
|
12519
|
+
/***/ "6d61":
|
|
12520
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
12521
|
+
|
|
12522
|
+
"use strict";
|
|
12523
|
+
|
|
12524
|
+
var $ = __webpack_require__("23e7");
|
|
12525
|
+
var global = __webpack_require__("da84");
|
|
12526
|
+
var isForced = __webpack_require__("94ca");
|
|
12527
|
+
var redefine = __webpack_require__("6eeb");
|
|
12528
|
+
var InternalMetadataModule = __webpack_require__("f183");
|
|
12529
|
+
var iterate = __webpack_require__("2266");
|
|
12530
|
+
var anInstance = __webpack_require__("19aa");
|
|
12531
|
+
var isObject = __webpack_require__("861d");
|
|
12532
|
+
var fails = __webpack_require__("d039");
|
|
12533
|
+
var checkCorrectnessOfIteration = __webpack_require__("1c7e");
|
|
12534
|
+
var setToStringTag = __webpack_require__("d44e");
|
|
12535
|
+
var inheritIfRequired = __webpack_require__("7156");
|
|
12536
|
+
|
|
12537
|
+
module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
|
|
12538
|
+
var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
|
|
12539
|
+
var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
|
|
12540
|
+
var ADDER = IS_MAP ? 'set' : 'add';
|
|
12541
|
+
var NativeConstructor = global[CONSTRUCTOR_NAME];
|
|
12542
|
+
var NativePrototype = NativeConstructor && NativeConstructor.prototype;
|
|
12543
|
+
var Constructor = NativeConstructor;
|
|
12544
|
+
var exported = {};
|
|
12545
|
+
|
|
12546
|
+
var fixMethod = function (KEY) {
|
|
12547
|
+
var nativeMethod = NativePrototype[KEY];
|
|
12548
|
+
redefine(NativePrototype, KEY,
|
|
12549
|
+
KEY == 'add' ? function add(value) {
|
|
12550
|
+
nativeMethod.call(this, value === 0 ? 0 : value);
|
|
12551
|
+
return this;
|
|
12552
|
+
} : KEY == 'delete' ? function (key) {
|
|
12553
|
+
return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
|
|
12554
|
+
} : KEY == 'get' ? function get(key) {
|
|
12555
|
+
return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);
|
|
12556
|
+
} : KEY == 'has' ? function has(key) {
|
|
12557
|
+
return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
|
|
12558
|
+
} : function set(key, value) {
|
|
12559
|
+
nativeMethod.call(this, key === 0 ? 0 : key, value);
|
|
12560
|
+
return this;
|
|
12561
|
+
}
|
|
12562
|
+
);
|
|
12563
|
+
};
|
|
12564
|
+
|
|
12565
|
+
// eslint-disable-next-line max-len
|
|
12566
|
+
if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {
|
|
12567
|
+
new NativeConstructor().entries().next();
|
|
12568
|
+
})))) {
|
|
12569
|
+
// create collection constructor
|
|
12570
|
+
Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);
|
|
12571
|
+
InternalMetadataModule.REQUIRED = true;
|
|
12572
|
+
} else if (isForced(CONSTRUCTOR_NAME, true)) {
|
|
12573
|
+
var instance = new Constructor();
|
|
12574
|
+
// early implementations not supports chaining
|
|
12575
|
+
var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;
|
|
12576
|
+
// V8 ~ Chromium 40- weak-collections throws on primitives, but should return false
|
|
12577
|
+
var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });
|
|
12578
|
+
// most early implementations doesn't supports iterables, most modern - not close it correctly
|
|
12579
|
+
// eslint-disable-next-line no-new
|
|
12580
|
+
var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });
|
|
12581
|
+
// for early implementations -0 and +0 not the same
|
|
12582
|
+
var BUGGY_ZERO = !IS_WEAK && fails(function () {
|
|
12583
|
+
// V8 ~ Chromium 42- fails only with 5+ elements
|
|
12584
|
+
var $instance = new NativeConstructor();
|
|
12585
|
+
var index = 5;
|
|
12586
|
+
while (index--) $instance[ADDER](index, index);
|
|
12587
|
+
return !$instance.has(-0);
|
|
12588
|
+
});
|
|
12589
|
+
|
|
12590
|
+
if (!ACCEPT_ITERABLES) {
|
|
12591
|
+
Constructor = wrapper(function (dummy, iterable) {
|
|
12592
|
+
anInstance(dummy, Constructor, CONSTRUCTOR_NAME);
|
|
12593
|
+
var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);
|
|
12594
|
+
if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
|
|
12595
|
+
return that;
|
|
12596
|
+
});
|
|
12597
|
+
Constructor.prototype = NativePrototype;
|
|
12598
|
+
NativePrototype.constructor = Constructor;
|
|
12599
|
+
}
|
|
12600
|
+
|
|
12601
|
+
if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {
|
|
12602
|
+
fixMethod('delete');
|
|
12603
|
+
fixMethod('has');
|
|
12604
|
+
IS_MAP && fixMethod('get');
|
|
12605
|
+
}
|
|
12606
|
+
|
|
12607
|
+
if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);
|
|
12608
|
+
|
|
12609
|
+
// weak collections should not contains .clear method
|
|
12610
|
+
if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;
|
|
12611
|
+
}
|
|
12612
|
+
|
|
12613
|
+
exported[CONSTRUCTOR_NAME] = Constructor;
|
|
12614
|
+
$({ global: true, forced: Constructor != NativeConstructor }, exported);
|
|
12615
|
+
|
|
12616
|
+
setToStringTag(Constructor, CONSTRUCTOR_NAME);
|
|
12617
|
+
|
|
12618
|
+
if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);
|
|
12619
|
+
|
|
12620
|
+
return Constructor;
|
|
12621
|
+
};
|
|
12622
|
+
|
|
12623
|
+
|
|
11997
12624
|
/***/ }),
|
|
11998
12625
|
|
|
11999
12626
|
/***/ "6d68":
|
|
@@ -13504,6 +14131,18 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
|
|
|
13504
14131
|
// extracted by mini-css-extract-plugin
|
|
13505
14132
|
module.exports = {"unnnicColorBackgroundSolo":"#E8F4F4"};
|
|
13506
14133
|
|
|
14134
|
+
/***/ }),
|
|
14135
|
+
|
|
14136
|
+
/***/ "80e0":
|
|
14137
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
14138
|
+
|
|
14139
|
+
var defineWellKnownSymbol = __webpack_require__("746f");
|
|
14140
|
+
|
|
14141
|
+
// `Symbol.replace` well-known symbol
|
|
14142
|
+
// https://tc39.github.io/ecma262/#sec-symbol.replace
|
|
14143
|
+
defineWellKnownSymbol('replace');
|
|
14144
|
+
|
|
14145
|
+
|
|
13507
14146
|
/***/ }),
|
|
13508
14147
|
|
|
13509
14148
|
/***/ "8155":
|
|
@@ -14693,6 +15332,13 @@ module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3
|
|
|
14693
15332
|
|
|
14694
15333
|
/***/ }),
|
|
14695
15334
|
|
|
15335
|
+
/***/ "8caf":
|
|
15336
|
+
/***/ (function(module, exports) {
|
|
15337
|
+
|
|
15338
|
+
module.exports = "<svg viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.8125 29.3755C6.26125 29.3755 5 28.1142 5 26.563V13.438C5 11.8867 6.26125 10.6255 7.8125 10.6255H32.1875C33.7388 10.6255 35 11.8867 35 13.438V26.563C35 28.1142 33.7388 29.3755 32.1875 29.3755H7.8125ZM7.8125 12.5005C7.295 12.5005 6.875 12.9205 6.875 13.438V26.563C6.875 27.0805 7.295 27.5005 7.8125 27.5005H32.1875C32.705 27.5005 33.125 27.0805 33.125 26.563V13.438C33.125 12.9205 32.705 12.5005 32.1875 12.5005H7.8125Z\" fill=\"#3B414D\" class=\"primary\"></path><path d=\"M11.5625 25.6255C11.045 25.6255 10.625 25.2055 10.625 24.688C10.625 24.1705 11.045 23.7505 11.5625 23.7505H12.5V16.2505H11.5625C11.045 16.2505 10.625 15.8305 10.625 15.313C10.625 14.7955 11.045 14.3755 11.5625 14.3755H15.3125C15.83 14.3755 16.25 14.7955 16.25 15.313C16.25 15.8305 15.83 16.2505 15.3125 16.2505H14.375V23.7505H15.3125C15.83 23.7505 16.25 24.1705 16.25 24.688C16.25 25.2055 15.83 25.6255 15.3125 25.6255H11.5625Z\" fill=\"#3B414D\" class=\"primary\"></path></svg>"
|
|
15339
|
+
|
|
15340
|
+
/***/ }),
|
|
15341
|
+
|
|
14696
15342
|
/***/ "8d25":
|
|
14697
15343
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14698
15344
|
|
|
@@ -18154,6 +18800,123 @@ $({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD }, {
|
|
|
18154
18800
|
});
|
|
18155
18801
|
|
|
18156
18802
|
|
|
18803
|
+
/***/ }),
|
|
18804
|
+
|
|
18805
|
+
/***/ "a1f0":
|
|
18806
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
18807
|
+
|
|
18808
|
+
"use strict";
|
|
18809
|
+
|
|
18810
|
+
var $ = __webpack_require__("23e7");
|
|
18811
|
+
var createIteratorConstructor = __webpack_require__("9ed3");
|
|
18812
|
+
var requireObjectCoercible = __webpack_require__("1d80");
|
|
18813
|
+
var toLength = __webpack_require__("50c4");
|
|
18814
|
+
var aFunction = __webpack_require__("1c0b");
|
|
18815
|
+
var anObject = __webpack_require__("825a");
|
|
18816
|
+
var classof = __webpack_require__("c6b6");
|
|
18817
|
+
var isRegExp = __webpack_require__("44e7");
|
|
18818
|
+
var getRegExpFlags = __webpack_require__("ad6d");
|
|
18819
|
+
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
18820
|
+
var fails = __webpack_require__("d039");
|
|
18821
|
+
var wellKnownSymbol = __webpack_require__("b622");
|
|
18822
|
+
var speciesConstructor = __webpack_require__("4840");
|
|
18823
|
+
var advanceStringIndex = __webpack_require__("8aa5");
|
|
18824
|
+
var InternalStateModule = __webpack_require__("69f3");
|
|
18825
|
+
var IS_PURE = __webpack_require__("c430");
|
|
18826
|
+
|
|
18827
|
+
var MATCH_ALL = wellKnownSymbol('matchAll');
|
|
18828
|
+
var REGEXP_STRING = 'RegExp String';
|
|
18829
|
+
var REGEXP_STRING_ITERATOR = REGEXP_STRING + ' Iterator';
|
|
18830
|
+
var setInternalState = InternalStateModule.set;
|
|
18831
|
+
var getInternalState = InternalStateModule.getterFor(REGEXP_STRING_ITERATOR);
|
|
18832
|
+
var RegExpPrototype = RegExp.prototype;
|
|
18833
|
+
var regExpBuiltinExec = RegExpPrototype.exec;
|
|
18834
|
+
var nativeMatchAll = ''.matchAll;
|
|
18835
|
+
|
|
18836
|
+
var WORKS_WITH_NON_GLOBAL_REGEX = !!nativeMatchAll && !fails(function () {
|
|
18837
|
+
'a'.matchAll(/./);
|
|
18838
|
+
});
|
|
18839
|
+
|
|
18840
|
+
var regExpExec = function (R, S) {
|
|
18841
|
+
var exec = R.exec;
|
|
18842
|
+
var result;
|
|
18843
|
+
if (typeof exec == 'function') {
|
|
18844
|
+
result = exec.call(R, S);
|
|
18845
|
+
if (typeof result != 'object') throw TypeError('Incorrect exec result');
|
|
18846
|
+
return result;
|
|
18847
|
+
} return regExpBuiltinExec.call(R, S);
|
|
18848
|
+
};
|
|
18849
|
+
|
|
18850
|
+
// eslint-disable-next-line max-len
|
|
18851
|
+
var $RegExpStringIterator = createIteratorConstructor(function RegExpStringIterator(regexp, string, global, fullUnicode) {
|
|
18852
|
+
setInternalState(this, {
|
|
18853
|
+
type: REGEXP_STRING_ITERATOR,
|
|
18854
|
+
regexp: regexp,
|
|
18855
|
+
string: string,
|
|
18856
|
+
global: global,
|
|
18857
|
+
unicode: fullUnicode,
|
|
18858
|
+
done: false
|
|
18859
|
+
});
|
|
18860
|
+
}, REGEXP_STRING, function next() {
|
|
18861
|
+
var state = getInternalState(this);
|
|
18862
|
+
if (state.done) return { value: undefined, done: true };
|
|
18863
|
+
var R = state.regexp;
|
|
18864
|
+
var S = state.string;
|
|
18865
|
+
var match = regExpExec(R, S);
|
|
18866
|
+
if (match === null) return { value: undefined, done: state.done = true };
|
|
18867
|
+
if (state.global) {
|
|
18868
|
+
if (String(match[0]) == '') R.lastIndex = advanceStringIndex(S, toLength(R.lastIndex), state.unicode);
|
|
18869
|
+
return { value: match, done: false };
|
|
18870
|
+
}
|
|
18871
|
+
state.done = true;
|
|
18872
|
+
return { value: match, done: false };
|
|
18873
|
+
});
|
|
18874
|
+
|
|
18875
|
+
var $matchAll = function (string) {
|
|
18876
|
+
var R = anObject(this);
|
|
18877
|
+
var S = String(string);
|
|
18878
|
+
var C, flagsValue, flags, matcher, global, fullUnicode;
|
|
18879
|
+
C = speciesConstructor(R, RegExp);
|
|
18880
|
+
flagsValue = R.flags;
|
|
18881
|
+
if (flagsValue === undefined && R instanceof RegExp && !('flags' in RegExpPrototype)) {
|
|
18882
|
+
flagsValue = getRegExpFlags.call(R);
|
|
18883
|
+
}
|
|
18884
|
+
flags = flagsValue === undefined ? '' : String(flagsValue);
|
|
18885
|
+
matcher = new C(C === RegExp ? R.source : R, flags);
|
|
18886
|
+
global = !!~flags.indexOf('g');
|
|
18887
|
+
fullUnicode = !!~flags.indexOf('u');
|
|
18888
|
+
matcher.lastIndex = toLength(R.lastIndex);
|
|
18889
|
+
return new $RegExpStringIterator(matcher, S, global, fullUnicode);
|
|
18890
|
+
};
|
|
18891
|
+
|
|
18892
|
+
// `String.prototype.matchAll` method
|
|
18893
|
+
// https://github.com/tc39/proposal-string-matchall
|
|
18894
|
+
$({ target: 'String', proto: true, forced: WORKS_WITH_NON_GLOBAL_REGEX }, {
|
|
18895
|
+
matchAll: function matchAll(regexp) {
|
|
18896
|
+
var O = requireObjectCoercible(this);
|
|
18897
|
+
var flags, S, matcher, rx;
|
|
18898
|
+
if (regexp != null) {
|
|
18899
|
+
if (isRegExp(regexp)) {
|
|
18900
|
+
flags = String(requireObjectCoercible('flags' in RegExpPrototype
|
|
18901
|
+
? regexp.flags
|
|
18902
|
+
: getRegExpFlags.call(regexp)
|
|
18903
|
+
));
|
|
18904
|
+
if (!~flags.indexOf('g')) throw TypeError('`.matchAll` does not allow non-global regexes');
|
|
18905
|
+
}
|
|
18906
|
+
if (WORKS_WITH_NON_GLOBAL_REGEX) return nativeMatchAll.apply(O, arguments);
|
|
18907
|
+
matcher = regexp[MATCH_ALL];
|
|
18908
|
+
if (matcher === undefined && IS_PURE && classof(regexp) == 'RegExp') matcher = $matchAll;
|
|
18909
|
+
if (matcher != null) return aFunction(matcher).call(regexp, O);
|
|
18910
|
+
} else if (WORKS_WITH_NON_GLOBAL_REGEX) return nativeMatchAll.apply(O, arguments);
|
|
18911
|
+
S = String(O);
|
|
18912
|
+
rx = new RegExp(regexp, 'g');
|
|
18913
|
+
return IS_PURE ? $matchAll.call(rx, S) : rx[MATCH_ALL](S);
|
|
18914
|
+
}
|
|
18915
|
+
});
|
|
18916
|
+
|
|
18917
|
+
IS_PURE || MATCH_ALL in RegExpPrototype || createNonEnumerableProperty(RegExpPrototype, MATCH_ALL, $matchAll);
|
|
18918
|
+
|
|
18919
|
+
|
|
18157
18920
|
/***/ }),
|
|
18158
18921
|
|
|
18159
18922
|
/***/ "a356":
|
|
@@ -19212,6 +19975,135 @@ $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
|
|
|
19212
19975
|
});
|
|
19213
19976
|
|
|
19214
19977
|
|
|
19978
|
+
/***/ }),
|
|
19979
|
+
|
|
19980
|
+
/***/ "acac":
|
|
19981
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
19982
|
+
|
|
19983
|
+
"use strict";
|
|
19984
|
+
|
|
19985
|
+
var redefineAll = __webpack_require__("e2cc");
|
|
19986
|
+
var getWeakData = __webpack_require__("f183").getWeakData;
|
|
19987
|
+
var anObject = __webpack_require__("825a");
|
|
19988
|
+
var isObject = __webpack_require__("861d");
|
|
19989
|
+
var anInstance = __webpack_require__("19aa");
|
|
19990
|
+
var iterate = __webpack_require__("2266");
|
|
19991
|
+
var ArrayIterationModule = __webpack_require__("b727");
|
|
19992
|
+
var $has = __webpack_require__("5135");
|
|
19993
|
+
var InternalStateModule = __webpack_require__("69f3");
|
|
19994
|
+
|
|
19995
|
+
var setInternalState = InternalStateModule.set;
|
|
19996
|
+
var internalStateGetterFor = InternalStateModule.getterFor;
|
|
19997
|
+
var find = ArrayIterationModule.find;
|
|
19998
|
+
var findIndex = ArrayIterationModule.findIndex;
|
|
19999
|
+
var id = 0;
|
|
20000
|
+
|
|
20001
|
+
// fallback for uncaught frozen keys
|
|
20002
|
+
var uncaughtFrozenStore = function (store) {
|
|
20003
|
+
return store.frozen || (store.frozen = new UncaughtFrozenStore());
|
|
20004
|
+
};
|
|
20005
|
+
|
|
20006
|
+
var UncaughtFrozenStore = function () {
|
|
20007
|
+
this.entries = [];
|
|
20008
|
+
};
|
|
20009
|
+
|
|
20010
|
+
var findUncaughtFrozen = function (store, key) {
|
|
20011
|
+
return find(store.entries, function (it) {
|
|
20012
|
+
return it[0] === key;
|
|
20013
|
+
});
|
|
20014
|
+
};
|
|
20015
|
+
|
|
20016
|
+
UncaughtFrozenStore.prototype = {
|
|
20017
|
+
get: function (key) {
|
|
20018
|
+
var entry = findUncaughtFrozen(this, key);
|
|
20019
|
+
if (entry) return entry[1];
|
|
20020
|
+
},
|
|
20021
|
+
has: function (key) {
|
|
20022
|
+
return !!findUncaughtFrozen(this, key);
|
|
20023
|
+
},
|
|
20024
|
+
set: function (key, value) {
|
|
20025
|
+
var entry = findUncaughtFrozen(this, key);
|
|
20026
|
+
if (entry) entry[1] = value;
|
|
20027
|
+
else this.entries.push([key, value]);
|
|
20028
|
+
},
|
|
20029
|
+
'delete': function (key) {
|
|
20030
|
+
var index = findIndex(this.entries, function (it) {
|
|
20031
|
+
return it[0] === key;
|
|
20032
|
+
});
|
|
20033
|
+
if (~index) this.entries.splice(index, 1);
|
|
20034
|
+
return !!~index;
|
|
20035
|
+
}
|
|
20036
|
+
};
|
|
20037
|
+
|
|
20038
|
+
module.exports = {
|
|
20039
|
+
getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
|
|
20040
|
+
var C = wrapper(function (that, iterable) {
|
|
20041
|
+
anInstance(that, C, CONSTRUCTOR_NAME);
|
|
20042
|
+
setInternalState(that, {
|
|
20043
|
+
type: CONSTRUCTOR_NAME,
|
|
20044
|
+
id: id++,
|
|
20045
|
+
frozen: undefined
|
|
20046
|
+
});
|
|
20047
|
+
if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
|
|
20048
|
+
});
|
|
20049
|
+
|
|
20050
|
+
var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
|
|
20051
|
+
|
|
20052
|
+
var define = function (that, key, value) {
|
|
20053
|
+
var state = getInternalState(that);
|
|
20054
|
+
var data = getWeakData(anObject(key), true);
|
|
20055
|
+
if (data === true) uncaughtFrozenStore(state).set(key, value);
|
|
20056
|
+
else data[state.id] = value;
|
|
20057
|
+
return that;
|
|
20058
|
+
};
|
|
20059
|
+
|
|
20060
|
+
redefineAll(C.prototype, {
|
|
20061
|
+
// 23.3.3.2 WeakMap.prototype.delete(key)
|
|
20062
|
+
// 23.4.3.3 WeakSet.prototype.delete(value)
|
|
20063
|
+
'delete': function (key) {
|
|
20064
|
+
var state = getInternalState(this);
|
|
20065
|
+
if (!isObject(key)) return false;
|
|
20066
|
+
var data = getWeakData(key);
|
|
20067
|
+
if (data === true) return uncaughtFrozenStore(state)['delete'](key);
|
|
20068
|
+
return data && $has(data, state.id) && delete data[state.id];
|
|
20069
|
+
},
|
|
20070
|
+
// 23.3.3.4 WeakMap.prototype.has(key)
|
|
20071
|
+
// 23.4.3.4 WeakSet.prototype.has(value)
|
|
20072
|
+
has: function has(key) {
|
|
20073
|
+
var state = getInternalState(this);
|
|
20074
|
+
if (!isObject(key)) return false;
|
|
20075
|
+
var data = getWeakData(key);
|
|
20076
|
+
if (data === true) return uncaughtFrozenStore(state).has(key);
|
|
20077
|
+
return data && $has(data, state.id);
|
|
20078
|
+
}
|
|
20079
|
+
});
|
|
20080
|
+
|
|
20081
|
+
redefineAll(C.prototype, IS_MAP ? {
|
|
20082
|
+
// 23.3.3.3 WeakMap.prototype.get(key)
|
|
20083
|
+
get: function get(key) {
|
|
20084
|
+
var state = getInternalState(this);
|
|
20085
|
+
if (isObject(key)) {
|
|
20086
|
+
var data = getWeakData(key);
|
|
20087
|
+
if (data === true) return uncaughtFrozenStore(state).get(key);
|
|
20088
|
+
return data ? data[state.id] : undefined;
|
|
20089
|
+
}
|
|
20090
|
+
},
|
|
20091
|
+
// 23.3.3.5 WeakMap.prototype.set(key, value)
|
|
20092
|
+
set: function set(key, value) {
|
|
20093
|
+
return define(this, key, value);
|
|
20094
|
+
}
|
|
20095
|
+
} : {
|
|
20096
|
+
// 23.4.3.1 WeakSet.prototype.add(value)
|
|
20097
|
+
add: function add(value) {
|
|
20098
|
+
return define(this, value, true);
|
|
20099
|
+
}
|
|
20100
|
+
});
|
|
20101
|
+
|
|
20102
|
+
return C;
|
|
20103
|
+
}
|
|
20104
|
+
};
|
|
20105
|
+
|
|
20106
|
+
|
|
19215
20107
|
/***/ }),
|
|
19216
20108
|
|
|
19217
20109
|
/***/ "acfe":
|
|
@@ -20824,6 +21716,18 @@ module.exports = {
|
|
|
20824
21716
|
})));
|
|
20825
21717
|
|
|
20826
21718
|
|
|
21719
|
+
/***/ }),
|
|
21720
|
+
|
|
21721
|
+
/***/ "bb2f":
|
|
21722
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
21723
|
+
|
|
21724
|
+
var fails = __webpack_require__("d039");
|
|
21725
|
+
|
|
21726
|
+
module.exports = !fails(function () {
|
|
21727
|
+
return Object.isExtensible(Object.preventExtensions({}));
|
|
21728
|
+
});
|
|
21729
|
+
|
|
21730
|
+
|
|
20827
21731
|
/***/ }),
|
|
20828
21732
|
|
|
20829
21733
|
/***/ "bb71":
|
|
@@ -27110,6 +28014,25 @@ try {
|
|
|
27110
28014
|
module.exports = g;
|
|
27111
28015
|
|
|
27112
28016
|
|
|
28017
|
+
/***/ }),
|
|
28018
|
+
|
|
28019
|
+
/***/ "c8d2":
|
|
28020
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
28021
|
+
|
|
28022
|
+
var fails = __webpack_require__("d039");
|
|
28023
|
+
var whitespaces = __webpack_require__("5899");
|
|
28024
|
+
|
|
28025
|
+
var non = '\u200B\u0085\u180E';
|
|
28026
|
+
|
|
28027
|
+
// check that a method works with the correct list
|
|
28028
|
+
// of whitespaces and has a correct name
|
|
28029
|
+
module.exports = function (METHOD_NAME) {
|
|
28030
|
+
return fails(function () {
|
|
28031
|
+
return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME;
|
|
28032
|
+
});
|
|
28033
|
+
};
|
|
28034
|
+
|
|
28035
|
+
|
|
27113
28036
|
/***/ }),
|
|
27114
28037
|
|
|
27115
28038
|
/***/ "c8f3":
|
|
@@ -29219,13 +30142,6 @@ module.exports = "<svg id=\"default\" viewBox=\"0 0 80 40\" xmlns=\"http://www.w
|
|
|
29219
30142
|
|
|
29220
30143
|
/***/ }),
|
|
29221
30144
|
|
|
29222
|
-
/***/ "ddaa":
|
|
29223
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
29224
|
-
|
|
29225
|
-
// extracted by mini-css-extract-plugin
|
|
29226
|
-
|
|
29227
|
-
/***/ }),
|
|
29228
|
-
|
|
29229
30145
|
/***/ "ddb0":
|
|
29230
30146
|
/***/ (function(module, exports, __webpack_require__) {
|
|
29231
30147
|
|
|
@@ -30873,6 +31789,74 @@ module.exports.f = function (C) {
|
|
|
30873
31789
|
/* unused harmony reexport * */
|
|
30874
31790
|
|
|
30875
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
|
+
|
|
30876
31860
|
/***/ }),
|
|
30877
31861
|
|
|
30878
31862
|
/***/ "f1ca":
|
|
@@ -32506,6 +33490,10 @@ var text_underline_default = /*#__PURE__*/__webpack_require__.n(text_underline);
|
|
|
32506
33490
|
var time_clock_circle_1 = __webpack_require__("2f69");
|
|
32507
33491
|
var time_clock_circle_1_default = /*#__PURE__*/__webpack_require__.n(time_clock_circle_1);
|
|
32508
33492
|
|
|
33493
|
+
// EXTERNAL MODULE: ./node_modules/svg-inline-loader!./src/assets/icons/typing-1.svg
|
|
33494
|
+
var typing_1 = __webpack_require__("8caf");
|
|
33495
|
+
var typing_1_default = /*#__PURE__*/__webpack_require__.n(typing_1);
|
|
33496
|
+
|
|
32509
33497
|
// EXTERNAL MODULE: ./node_modules/svg-inline-loader!./src/assets/icons/translate-1.svg
|
|
32510
33498
|
var translate_1 = __webpack_require__("8c00");
|
|
32511
33499
|
var translate_1_default = /*#__PURE__*/__webpack_require__.n(translate_1);
|
|
@@ -32711,6 +33699,7 @@ var visa_default = /*#__PURE__*/__webpack_require__.n(visa);
|
|
|
32711
33699
|
|
|
32712
33700
|
|
|
32713
33701
|
|
|
33702
|
+
|
|
32714
33703
|
|
|
32715
33704
|
|
|
32716
33705
|
/* harmony default export */ var icons = ({
|
|
@@ -32863,6 +33852,7 @@ var visa_default = /*#__PURE__*/__webpack_require__.n(visa);
|
|
|
32863
33852
|
'text-right': text_right_default.a,
|
|
32864
33853
|
'text-underline': text_underline_default.a,
|
|
32865
33854
|
'time-clock-circle-1': time_clock_circle_1_default.a,
|
|
33855
|
+
'typing-1': typing_1_default.a,
|
|
32866
33856
|
'translate-1': translate_1_default.a,
|
|
32867
33857
|
'translate-2': translate_2_default.a,
|
|
32868
33858
|
unionpay: unionpay_default.a,
|
|
@@ -38814,7 +39804,7 @@ var Alert_component = normalizeComponent(
|
|
|
38814
39804
|
|
|
38815
39805
|
|
|
38816
39806
|
|
|
38817
|
-
/* harmony default export */ var
|
|
39807
|
+
/* harmony default export */ var utils_call = ({
|
|
38818
39808
|
callAlert: function callAlert(_ref) {
|
|
38819
39809
|
var props = _ref.props,
|
|
38820
39810
|
seconds = _ref.seconds;
|
|
@@ -42307,14 +43297,357 @@ var ChartRainbow_component = normalizeComponent(
|
|
|
42307
43297
|
)
|
|
42308
43298
|
|
|
42309
43299
|
/* harmony default export */ var ChartRainbow = (ChartRainbow_component.exports);
|
|
42310
|
-
// 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=
|
|
42311
|
-
var
|
|
42312
|
-
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=243fe679&scoped=true&
|
|
43301
|
+
var TextEditorvue_type_template_id_243fe679_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('div',{ref:"oDoc",staticClass:"inside",attrs:{"contenteditable":"true"},domProps:{"innerHTML":_vm._s(_vm.initialContent)},on:{"input":_vm.onInput,"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),_c('unnnic-tool-tip',{style:({ marginLeft: '1rem', }),attrs:{"side":"top","text":_vm.text('Bold'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"text-bold","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('bold')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Italic'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"text-italic","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('italic')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Underline'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"text-underline","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('underline')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('List'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"unordered-list","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('insertunorderedlist')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Left'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"text-left","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('justifyleft')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Center'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"text-center","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('justifycenter')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Right'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"text-right","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('justifyright')}}})],1),_c('unnnic-tool-tip',{attrs:{"side":"top","text":_vm.text('Justify'),"enabled":""}},[_c('unnnic-icon',{attrs:{"icon":"text-justified","size":"ant","clickable":"","scheme":_vm.iconScheme},on:{"click":function($event){return _vm.formatDoc('justifyFull')}}})],1)],1)])}
|
|
43302
|
+
var TextEditorvue_type_template_id_243fe679_scoped_true_staticRenderFns = []
|
|
43303
|
+
|
|
43304
|
+
|
|
43305
|
+
// CONCATENATED MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=template&id=243fe679&scoped=true&
|
|
42313
43306
|
|
|
43307
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.match-all.js
|
|
43308
|
+
var es_string_match_all = __webpack_require__("a1f0");
|
|
42314
43309
|
|
|
42315
|
-
//
|
|
43310
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.trim.js
|
|
43311
|
+
var es_string_trim = __webpack_require__("498a");
|
|
42316
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
|
+
|
|
43501
|
+
|
|
43502
|
+
|
|
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
|
+
}
|
|
42317
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
|
+
|
|
42318
43651
|
//
|
|
42319
43652
|
//
|
|
42320
43653
|
//
|
|
@@ -42583,13 +43916,32 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42583
43916
|
action: 'Mensagens rápidas'
|
|
42584
43917
|
};
|
|
42585
43918
|
}
|
|
43919
|
+
},
|
|
43920
|
+
tags: {
|
|
43921
|
+
type: Array,
|
|
43922
|
+
default: function _default() {
|
|
43923
|
+
return ['b', 'i', 'u', 'ul', 'li', 'br', 'div'];
|
|
43924
|
+
}
|
|
43925
|
+
},
|
|
43926
|
+
attributes: {
|
|
43927
|
+
type: Array,
|
|
43928
|
+
default: function _default() {
|
|
43929
|
+
return ['style'];
|
|
43930
|
+
}
|
|
43931
|
+
},
|
|
43932
|
+
styleProperties: {
|
|
43933
|
+
type: Array,
|
|
43934
|
+
default: function _default() {
|
|
43935
|
+
return ['text-align'];
|
|
43936
|
+
}
|
|
42586
43937
|
}
|
|
42587
43938
|
},
|
|
42588
43939
|
data: function data() {
|
|
42589
43940
|
return {
|
|
42590
43941
|
initialContent: '',
|
|
42591
43942
|
attachmentOptionsOpen: false,
|
|
42592
|
-
isFocused: false
|
|
43943
|
+
isFocused: false,
|
|
43944
|
+
lastValueFromInside: ''
|
|
42593
43945
|
};
|
|
42594
43946
|
},
|
|
42595
43947
|
computed: {
|
|
@@ -42599,6 +43951,17 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42599
43951
|
},
|
|
42600
43952
|
created: function created() {
|
|
42601
43953
|
this.initialContent = this.value;
|
|
43954
|
+
document.execCommand('defaultParagraphSeparator', false, 'div');
|
|
43955
|
+
},
|
|
43956
|
+
watch: {
|
|
43957
|
+
value: {
|
|
43958
|
+
immediate: true,
|
|
43959
|
+
handler: function handler() {
|
|
43960
|
+
if (this.value !== this.lastValueFromInside) {
|
|
43961
|
+
this.$refs.oDoc.innerHTML = this.value;
|
|
43962
|
+
}
|
|
43963
|
+
}
|
|
43964
|
+
}
|
|
42602
43965
|
},
|
|
42603
43966
|
methods: {
|
|
42604
43967
|
formatDoc: function formatDoc(sCmd, sValue) {
|
|
@@ -42609,16 +43972,81 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42609
43972
|
validateMode: function validateMode() {
|
|
42610
43973
|
return this.$refs.oDoc.focus();
|
|
42611
43974
|
},
|
|
42612
|
-
|
|
42613
|
-
this
|
|
43975
|
+
emitInput: function emitInput() {
|
|
43976
|
+
var _this = this;
|
|
43977
|
+
|
|
43978
|
+
this.lastValueFromInside = this.$refs.oDoc.innerHTML;
|
|
43979
|
+
this.lastValueFromInside = this.lastValueFromInside.replace(/<(\/)?([^> ]+)( [^>]+)?>/gi, function ($1) {
|
|
43980
|
+
var $2 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
43981
|
+
var $3 = arguments.length > 2 ? arguments[2] : undefined;
|
|
43982
|
+
var $4 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '';
|
|
43983
|
+
|
|
43984
|
+
if (_this.tags.includes($3)) {
|
|
43985
|
+
var complements = []; // eslint-disable-next-line no-restricted-syntax
|
|
43986
|
+
|
|
43987
|
+
var _iterator = _createForOfIteratorHelper($4.matchAll( /*#__PURE__*/_wrapRegExp(/(((?:(?![ =])[\s\S])+)="((?:(?!")[\s\S])*)"|((?:(?![ =])[\s\S])+)='((?:(?!")[\s\S])*)')/g, {
|
|
43988
|
+
name1: 2,
|
|
43989
|
+
value1: 3,
|
|
43990
|
+
name2: 4,
|
|
43991
|
+
value2: 5
|
|
43992
|
+
}))),
|
|
43993
|
+
_step;
|
|
43994
|
+
|
|
43995
|
+
try {
|
|
43996
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
43997
|
+
var i = _step.value;
|
|
43998
|
+
var name = i.groups.name1 || i.groups.name2;
|
|
43999
|
+
var value = i.groups.value1 || i.groups.value2;
|
|
44000
|
+
|
|
44001
|
+
if (_this.attributes.includes('style') && name === 'style') {
|
|
44002
|
+
var styles = []; // eslint-disable-next-line no-restricted-syntax
|
|
44003
|
+
|
|
44004
|
+
var _iterator2 = _createForOfIteratorHelper(value.matchAll( /*#__PURE__*/_wrapRegExp(/((?:(?!:)[\s\S])+):((?:(?!;)[\s\S])+);?/g, {
|
|
44005
|
+
propertyName: 1,
|
|
44006
|
+
propertyValue: 2
|
|
44007
|
+
}))),
|
|
44008
|
+
_step2;
|
|
44009
|
+
|
|
44010
|
+
try {
|
|
44011
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
44012
|
+
var j = _step2.value;
|
|
44013
|
+
|
|
44014
|
+
if (_this.styleProperties.includes(j.groups.propertyName.toLowerCase().trim())) {
|
|
44015
|
+
styles.push("".concat(j.groups.propertyName.toLowerCase().trim(), ": ").concat(j.groups.propertyValue.trim()));
|
|
44016
|
+
}
|
|
44017
|
+
}
|
|
44018
|
+
} catch (err) {
|
|
44019
|
+
_iterator2.e(err);
|
|
44020
|
+
} finally {
|
|
44021
|
+
_iterator2.f();
|
|
44022
|
+
}
|
|
44023
|
+
|
|
44024
|
+
complements.push("style=\"".concat(styles.join('; '), ";\""));
|
|
44025
|
+
}
|
|
44026
|
+
}
|
|
44027
|
+
} catch (err) {
|
|
44028
|
+
_iterator.e(err);
|
|
44029
|
+
} finally {
|
|
44030
|
+
_iterator.f();
|
|
44031
|
+
}
|
|
44032
|
+
|
|
44033
|
+
return "<".concat($2).concat($3).concat(complements.length ? " ".concat(complements.join(' ')) : '', ">");
|
|
44034
|
+
}
|
|
44035
|
+
|
|
44036
|
+
return '';
|
|
44037
|
+
});
|
|
44038
|
+
this.$emit('input', this.lastValueFromInside);
|
|
44039
|
+
},
|
|
44040
|
+
onInput: function onInput() {
|
|
44041
|
+
this.emitInput();
|
|
42614
44042
|
},
|
|
42615
44043
|
setValue: function setValue(value) {
|
|
42616
44044
|
this.$refs.oDoc.innerHTML = value;
|
|
42617
|
-
this
|
|
44045
|
+
this.emitInput();
|
|
42618
44046
|
},
|
|
42619
44047
|
clear: function clear() {
|
|
42620
44048
|
this.$refs.oDoc.innerHTML = '';
|
|
42621
|
-
this
|
|
44049
|
+
this.emitInput();
|
|
42622
44050
|
},
|
|
42623
44051
|
text: function text(key) {
|
|
42624
44052
|
return this.texts[key];
|
|
@@ -42627,8 +44055,8 @@ var TextEditorvue_type_template_id_538f8db5_scoped_true_staticRenderFns = []
|
|
|
42627
44055
|
});
|
|
42628
44056
|
// CONCATENATED MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=script&lang=js&
|
|
42629
44057
|
/* harmony default export */ var TextEditor_TextEditorvue_type_script_lang_js_ = (TextEditorvue_type_script_lang_js_);
|
|
42630
|
-
// EXTERNAL MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=style&index=0&id=
|
|
42631
|
-
var
|
|
44058
|
+
// EXTERNAL MODULE: ./src/components/TextEditor/TextEditor.vue?vue&type=style&index=0&id=243fe679&lang=scss&scoped=true&
|
|
44059
|
+
var TextEditorvue_type_style_index_0_id_243fe679_lang_scss_scoped_true_ = __webpack_require__("53da");
|
|
42632
44060
|
|
|
42633
44061
|
// CONCATENATED MODULE: ./src/components/TextEditor/TextEditor.vue
|
|
42634
44062
|
|
|
@@ -42641,11 +44069,11 @@ var TextEditorvue_type_style_index_0_id_538f8db5_lang_scss_scoped_true_ = __webp
|
|
|
42641
44069
|
|
|
42642
44070
|
var TextEditor_component = normalizeComponent(
|
|
42643
44071
|
TextEditor_TextEditorvue_type_script_lang_js_,
|
|
42644
|
-
|
|
42645
|
-
|
|
44072
|
+
TextEditorvue_type_template_id_243fe679_scoped_true_render,
|
|
44073
|
+
TextEditorvue_type_template_id_243fe679_scoped_true_staticRenderFns,
|
|
42646
44074
|
false,
|
|
42647
44075
|
null,
|
|
42648
|
-
"
|
|
44076
|
+
"243fe679",
|
|
42649
44077
|
null
|
|
42650
44078
|
|
|
42651
44079
|
)
|
|
@@ -43930,8 +45358,8 @@ var unnnicSelect = Select;
|
|
|
43930
45358
|
var unnnicSelectItem = SelectItem;
|
|
43931
45359
|
var unnnicMultiSelect = MultiSelect;
|
|
43932
45360
|
var unnnicAlert = Alert;
|
|
43933
|
-
var unnnicCallAlert =
|
|
43934
|
-
var unnnicCallModal =
|
|
45361
|
+
var unnnicCallAlert = utils_call.callAlert;
|
|
45362
|
+
var unnnicCallModal = utils_call.callModal;
|
|
43935
45363
|
var unnnicAutocomplete = Autocomplete;
|
|
43936
45364
|
var unnnicAutocompleteSelect = AutocompleteSelect;
|
|
43937
45365
|
var unnnicTag = Tag;
|