pui9-docgen 1.17.3 → 1.18.8

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.
@@ -87,6 +87,49 @@ module.exports =
87
87
  /************************************************************************/
88
88
  /******/ ({
89
89
 
90
+ /***/ "00b4":
91
+ /***/ (function(module, exports, __webpack_require__) {
92
+
93
+ "use strict";
94
+
95
+ // TODO: Remove from `core-js@4` since it's moved to entry points
96
+ __webpack_require__("ac1f");
97
+ var $ = __webpack_require__("23e7");
98
+ var call = __webpack_require__("c65b");
99
+ var isCallable = __webpack_require__("1626");
100
+ var anObject = __webpack_require__("825a");
101
+ var toString = __webpack_require__("577e");
102
+
103
+ var DELEGATES_TO_EXEC = function () {
104
+ var execCalled = false;
105
+ var re = /[ac]/;
106
+ re.exec = function () {
107
+ execCalled = true;
108
+ return /./.exec.apply(this, arguments);
109
+ };
110
+ return re.test('abc') === true && execCalled;
111
+ }();
112
+
113
+ var nativeTest = /./.test;
114
+
115
+ // `RegExp.prototype.test` method
116
+ // https://tc39.es/ecma262/#sec-regexp.prototype.test
117
+ $({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
118
+ test: function (S) {
119
+ var R = anObject(this);
120
+ var string = toString(S);
121
+ var exec = R.exec;
122
+ if (!isCallable(exec)) return call(nativeTest, R, string);
123
+ var result = call(exec, R, string);
124
+ if (result === null) return false;
125
+ anObject(result);
126
+ return true;
127
+ }
128
+ });
129
+
130
+
131
+ /***/ }),
132
+
90
133
  /***/ "00ee":
91
134
  /***/ (function(module, exports, __webpack_require__) {
92
135
 
@@ -135,7 +178,7 @@ module.exports = Queue;
135
178
  /***/ "0366":
136
179
  /***/ (function(module, exports, __webpack_require__) {
137
180
 
138
- var uncurryThis = __webpack_require__("e330");
181
+ var uncurryThis = __webpack_require__("4625");
139
182
  var aCallable = __webpack_require__("59ed");
140
183
  var NATIVE_BIND = __webpack_require__("40d5");
141
184
 
@@ -162,12 +205,32 @@ var firefox = userAgent.match(/firefox\/(\d+)/i);
162
205
  module.exports = !!firefox && +firefox[1];
163
206
 
164
207
 
208
+ /***/ }),
209
+
210
+ /***/ "04f8":
211
+ /***/ (function(module, exports, __webpack_require__) {
212
+
213
+ /* eslint-disable es/no-symbol -- required for testing */
214
+ var V8_VERSION = __webpack_require__("2d00");
215
+ var fails = __webpack_require__("d039");
216
+
217
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
218
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
219
+ var symbol = Symbol();
220
+ // Chrome 38 Symbol has incorrect toString conversion
221
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
222
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
223
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
224
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
225
+ });
226
+
227
+
165
228
  /***/ }),
166
229
 
167
230
  /***/ "057f":
168
231
  /***/ (function(module, exports, __webpack_require__) {
169
232
 
170
- /* eslint-disable es-x/no-object-getownpropertynames -- safe */
233
+ /* eslint-disable es/no-object-getownpropertynames -- safe */
171
234
  var classof = __webpack_require__("c6b6");
172
235
  var toIndexedObject = __webpack_require__("fc6a");
173
236
  var $getOwnPropertyNames = __webpack_require__("241c").f;
@@ -255,7 +318,7 @@ var toPropertyKey = __webpack_require__("a04b");
255
318
  var hasOwn = __webpack_require__("1a2d");
256
319
  var IE8_DOM_DEFINE = __webpack_require__("0cfb");
257
320
 
258
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
321
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
259
322
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
260
323
 
261
324
  // `Object.getOwnPropertyDescriptor` method
@@ -329,6 +392,17 @@ module.exports = function (originalArray) {
329
392
  };
330
393
 
331
394
 
395
+ /***/ }),
396
+
397
+ /***/ "0b43":
398
+ /***/ (function(module, exports, __webpack_require__) {
399
+
400
+ var NATIVE_SYMBOL = __webpack_require__("04f8");
401
+
402
+ /* eslint-disable es/no-symbol -- safe */
403
+ module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor;
404
+
405
+
332
406
  /***/ }),
333
407
 
334
408
  /***/ "0cfb":
@@ -340,7 +414,7 @@ var createElement = __webpack_require__("cc12");
340
414
 
341
415
  // Thanks to IE8 for its funny defineProperty
342
416
  module.exports = !DESCRIPTORS && !fails(function () {
343
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
417
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
344
418
  return Object.defineProperty(createElement('div'), 'a', {
345
419
  get: function () { return 7; }
346
420
  }).a != 7;
@@ -349,43 +423,23 @@ module.exports = !DESCRIPTORS && !fails(function () {
349
423
 
350
424
  /***/ }),
351
425
 
352
- /***/ "0d3b":
426
+ /***/ "0d26":
353
427
  /***/ (function(module, exports, __webpack_require__) {
354
428
 
355
- var fails = __webpack_require__("d039");
356
- var wellKnownSymbol = __webpack_require__("b622");
357
- var IS_PURE = __webpack_require__("c430");
429
+ var uncurryThis = __webpack_require__("e330");
358
430
 
359
- var ITERATOR = wellKnownSymbol('iterator');
431
+ var $Error = Error;
432
+ var replace = uncurryThis(''.replace);
360
433
 
361
- module.exports = !fails(function () {
362
- // eslint-disable-next-line unicorn/relative-url-style -- required for testing
363
- var url = new URL('b?a=1&b=2&c=3', 'http://a');
364
- var searchParams = url.searchParams;
365
- var result = '';
366
- url.pathname = 'c%20d';
367
- searchParams.forEach(function (value, key) {
368
- searchParams['delete']('b');
369
- result += key + value;
370
- });
371
- return (IS_PURE && !url.toJSON)
372
- || !searchParams.sort
373
- || url.href !== 'http://a/c%20d?a=1&c=3'
374
- || searchParams.get('c') !== '3'
375
- || String(new URLSearchParams('?a=1')) !== 'a=1'
376
- || !searchParams[ITERATOR]
377
- // throws in Edge
378
- || new URL('https://a@b').username !== 'a'
379
- || new URLSearchParams(new URLSearchParams('a=b')).get('a') !== 'b'
380
- // not punycoded in Edge
381
- || new URL('http://тест').host !== 'xn--e1aybc'
382
- // not escaped in Chrome 62-
383
- || new URL('http://a#б').hash !== '#%D0%B1'
384
- // fails in Chrome 66-
385
- || result !== 'a1c3'
386
- // throws in Safari
387
- || new URL('http://x', undefined).host !== 'x';
388
- });
434
+ var TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd');
435
+ var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
436
+ var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
437
+
438
+ module.exports = function (stack, dropEntries) {
439
+ if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
440
+ while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
441
+ } return stack;
442
+ };
389
443
 
390
444
 
391
445
  /***/ }),
@@ -404,6 +458,39 @@ module.exports = function (argument) {
404
458
  };
405
459
 
406
460
 
461
+ /***/ }),
462
+
463
+ /***/ "107c":
464
+ /***/ (function(module, exports, __webpack_require__) {
465
+
466
+ var fails = __webpack_require__("d039");
467
+ var global = __webpack_require__("da84");
468
+
469
+ // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
470
+ var $RegExp = global.RegExp;
471
+
472
+ module.exports = fails(function () {
473
+ var re = $RegExp('(?<a>b)', 'g');
474
+ return re.exec('b').groups.a !== 'b' ||
475
+ 'b'.replace(re, '$<a>c') !== 'bc';
476
+ });
477
+
478
+
479
+ /***/ }),
480
+
481
+ /***/ "131a":
482
+ /***/ (function(module, exports, __webpack_require__) {
483
+
484
+ var $ = __webpack_require__("23e7");
485
+ var setPrototypeOf = __webpack_require__("d2bb");
486
+
487
+ // `Object.setPrototypeOf` method
488
+ // https://tc39.es/ecma262/#sec-object.setprototypeof
489
+ $({ target: 'Object', stat: true }, {
490
+ setPrototypeOf: setPrototypeOf
491
+ });
492
+
493
+
407
494
  /***/ }),
408
495
 
409
496
  /***/ "13d2":
@@ -419,7 +506,7 @@ var InternalStateModule = __webpack_require__("69f3");
419
506
 
420
507
  var enforceInternalState = InternalStateModule.enforce;
421
508
  var getInternalState = InternalStateModule.get;
422
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
509
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
423
510
  var defineProperty = Object.defineProperty;
424
511
 
425
512
  var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
@@ -435,7 +522,8 @@ var makeBuiltIn = module.exports = function (value, name, options) {
435
522
  if (options && options.getter) name = 'get ' + name;
436
523
  if (options && options.setter) name = 'set ' + name;
437
524
  if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
438
- defineProperty(value, 'name', { value: name, configurable: true });
525
+ if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
526
+ else value.name = name;
439
527
  }
440
528
  if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
441
529
  defineProperty(value, 'length', { value: options.arity });
@@ -469,6 +557,7 @@ Function.prototype.toString = makeBuiltIn(function toString() {
469
557
  var $ = __webpack_require__("23e7");
470
558
  var toObject = __webpack_require__("7b0b");
471
559
  var lengthOfArrayLike = __webpack_require__("07fa");
560
+ var setArrayLength = __webpack_require__("3a34");
472
561
  var doesNotExceedSafeInteger = __webpack_require__("3511");
473
562
  var fails = __webpack_require__("d039");
474
563
 
@@ -480,7 +569,7 @@ var INCORRECT_TO_LENGTH = fails(function () {
480
569
  // https://bugs.chromium.org/p/v8/issues/detail?id=12681
481
570
  var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
482
571
  try {
483
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
572
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
484
573
  Object.defineProperty([], 'length', { writable: false }).push();
485
574
  } catch (error) {
486
575
  return error instanceof TypeError;
@@ -500,7 +589,7 @@ $({ target: 'Array', proto: true, arity: 1, forced: INCORRECT_TO_LENGTH || SILEN
500
589
  O[len] = arguments[i];
501
590
  len++;
502
591
  }
503
- O.length = len;
592
+ setArrayLength(O, len);
504
593
  return len;
505
594
  }
506
595
  });
@@ -585,11 +674,17 @@ handlePrototype(DOMTokenListPrototype);
585
674
  /***/ }),
586
675
 
587
676
  /***/ "1626":
588
- /***/ (function(module, exports) {
677
+ /***/ (function(module, exports, __webpack_require__) {
678
+
679
+ var $documentAll = __webpack_require__("8ea1");
680
+
681
+ var documentAll = $documentAll.all;
589
682
 
590
683
  // `IsCallable` abstract operation
591
684
  // https://tc39.es/ecma262/#sec-iscallable
592
- module.exports = function (argument) {
685
+ module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
686
+ return typeof argument == 'function' || argument === documentAll;
687
+ } : function (argument) {
593
688
  return typeof argument == 'function';
594
689
  };
595
690
 
@@ -610,7 +705,7 @@ var STRICT_METHOD = arrayMethodIsStrict('forEach');
610
705
  // https://tc39.es/ecma262/#sec-array.prototype.foreach
611
706
  module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
612
707
  return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
613
- // eslint-disable-next-line es-x/no-array-prototype-foreach -- safe
708
+ // eslint-disable-next-line es/no-array-prototype-foreach -- safe
614
709
  } : [].forEach;
615
710
 
616
711
 
@@ -641,7 +736,7 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
641
736
 
642
737
  // `HasOwnProperty` abstract operation
643
738
  // https://tc39.es/ecma262/#sec-hasownproperty
644
- // eslint-disable-next-line es-x/no-object-hasown -- safe
739
+ // eslint-disable-next-line es/no-object-hasown -- safe
645
740
  module.exports = Object.hasOwn || function hasOwn(it, key) {
646
741
  return hasOwnProperty(toObject(it), key);
647
742
  };
@@ -680,7 +775,7 @@ try {
680
775
  iteratorWithReturn[ITERATOR] = function () {
681
776
  return this;
682
777
  };
683
- // eslint-disable-next-line es-x/no-array-from, no-throw-literal -- required for testing
778
+ // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
684
779
  Array.from(iteratorWithReturn, function () { throw 2; });
685
780
  } catch (error) { /* empty */ }
686
781
 
@@ -715,14 +810,16 @@ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
715
810
  /***/ }),
716
811
 
717
812
  /***/ "1d80":
718
- /***/ (function(module, exports) {
813
+ /***/ (function(module, exports, __webpack_require__) {
814
+
815
+ var isNullOrUndefined = __webpack_require__("7234");
719
816
 
720
817
  var $TypeError = TypeError;
721
818
 
722
819
  // `RequireObjectCoercible` abstract operation
723
820
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
724
821
  module.exports = function (it) {
725
- if (it == undefined) throw $TypeError("Can't call method on " + it);
822
+ if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
726
823
  return it;
727
824
  };
728
825
 
@@ -753,6 +850,43 @@ module.exports = function (METHOD_NAME) {
753
850
  };
754
851
 
755
852
 
853
+ /***/ }),
854
+
855
+ /***/ "1f68":
856
+ /***/ (function(module, exports, __webpack_require__) {
857
+
858
+ "use strict";
859
+
860
+ var DESCRIPTORS = __webpack_require__("83ab");
861
+ var defineBuiltInAccessor = __webpack_require__("edd0");
862
+ var isObject = __webpack_require__("861d");
863
+ var toObject = __webpack_require__("7b0b");
864
+ var requireObjectCoercible = __webpack_require__("1d80");
865
+
866
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
867
+ var getPrototypeOf = Object.getPrototypeOf;
868
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
869
+ var setPrototypeOf = Object.setPrototypeOf;
870
+ var ObjectPrototype = Object.prototype;
871
+ var PROTO = '__proto__';
872
+
873
+ // `Object.prototype.__proto__` accessor
874
+ // https://tc39.es/ecma262/#sec-object.prototype.__proto__
875
+ if (DESCRIPTORS && getPrototypeOf && setPrototypeOf && !(PROTO in ObjectPrototype)) try {
876
+ defineBuiltInAccessor(ObjectPrototype, PROTO, {
877
+ configurable: true,
878
+ get: function __proto__() {
879
+ return getPrototypeOf(toObject(this));
880
+ },
881
+ set: function __proto__(proto) {
882
+ var O = requireObjectCoercible(this);
883
+ if (!isObject(proto) && proto !== null || !isObject(O)) return;
884
+ setPrototypeOf(O, proto);
885
+ }
886
+ });
887
+ } catch (error) { /* empty */ }
888
+
889
+
756
890
  /***/ }),
757
891
 
758
892
  /***/ "2266":
@@ -781,6 +915,7 @@ var ResultPrototype = Result.prototype;
781
915
  module.exports = function (iterable, unboundFunction, options) {
782
916
  var that = options && options.that;
783
917
  var AS_ENTRIES = !!(options && options.AS_ENTRIES);
918
+ var IS_RECORD = !!(options && options.IS_RECORD);
784
919
  var IS_ITERATOR = !!(options && options.IS_ITERATOR);
785
920
  var INTERRUPTED = !!(options && options.INTERRUPTED);
786
921
  var fn = bind(unboundFunction, that);
@@ -798,7 +933,9 @@ module.exports = function (iterable, unboundFunction, options) {
798
933
  } return INTERRUPTED ? fn(value, stop) : fn(value);
799
934
  };
800
935
 
801
- if (IS_ITERATOR) {
936
+ if (IS_RECORD) {
937
+ iterator = iterable.iterator;
938
+ } else if (IS_ITERATOR) {
802
939
  iterator = iterable;
803
940
  } else {
804
941
  iterFn = getIteratorMethod(iterable);
@@ -813,7 +950,7 @@ module.exports = function (iterable, unboundFunction, options) {
813
950
  iterator = getIterator(iterable, iterFn);
814
951
  }
815
952
 
816
- next = iterator.next;
953
+ next = IS_RECORD ? iterable.next : iterator.next;
817
954
  while (!(step = call(next, iterator)).done) {
818
955
  try {
819
956
  result = callFn(step.value);
@@ -834,30 +971,30 @@ module.exports = function (iterable, unboundFunction, options) {
834
971
 
835
972
  // https://github.com/tc39/proposal-iterator-helpers
836
973
  var $ = __webpack_require__("23e7");
837
- var apply = __webpack_require__("2ba4");
974
+ var call = __webpack_require__("c65b");
838
975
  var aCallable = __webpack_require__("59ed");
839
976
  var anObject = __webpack_require__("825a");
977
+ var getIteratorDirect = __webpack_require__("46c4");
840
978
  var createIteratorProxy = __webpack_require__("c5cc");
841
979
  var callWithSafeIterationClosing = __webpack_require__("9bdd");
842
980
 
843
- var IteratorProxy = createIteratorProxy(function (args) {
981
+ var IteratorProxy = createIteratorProxy(function () {
844
982
  var iterator = this.iterator;
845
983
  var filterer = this.filterer;
846
984
  var next = this.next;
847
985
  var result, done, value;
848
986
  while (true) {
849
- result = anObject(apply(next, iterator, args));
987
+ result = anObject(call(next, iterator));
850
988
  done = this.done = !!result.done;
851
989
  if (done) return;
852
990
  value = result.value;
853
- if (callWithSafeIterationClosing(iterator, filterer, value)) return value;
991
+ if (callWithSafeIterationClosing(iterator, filterer, [value, this.counter++], true)) return value;
854
992
  }
855
993
  });
856
994
 
857
995
  $({ target: 'Iterator', proto: true, real: true, forced: true }, {
858
996
  filter: function filter(filterer) {
859
- return new IteratorProxy({
860
- iterator: anObject(this),
997
+ return new IteratorProxy(getIteratorDirect(this), {
861
998
  filterer: aCallable(filterer)
862
999
  });
863
1000
  }
@@ -956,7 +1093,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
956
1093
 
957
1094
  // `Object.getOwnPropertyNames` method
958
1095
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
959
- // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
1096
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
960
1097
  exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
961
1098
  return internalObjectKeys(O, hiddenKeys);
962
1099
  };
@@ -991,6 +1128,40 @@ $({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') },
991
1128
  });
992
1129
 
993
1130
 
1131
+ /***/ }),
1132
+
1133
+ /***/ "25f0":
1134
+ /***/ (function(module, exports, __webpack_require__) {
1135
+
1136
+ "use strict";
1137
+
1138
+ var PROPER_FUNCTION_NAME = __webpack_require__("5e77").PROPER;
1139
+ var defineBuiltIn = __webpack_require__("cb2d");
1140
+ var anObject = __webpack_require__("825a");
1141
+ var $toString = __webpack_require__("577e");
1142
+ var fails = __webpack_require__("d039");
1143
+ var getRegExpFlags = __webpack_require__("90d8");
1144
+
1145
+ var TO_STRING = 'toString';
1146
+ var RegExpPrototype = RegExp.prototype;
1147
+ var nativeToString = RegExpPrototype[TO_STRING];
1148
+
1149
+ var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
1150
+ // FF44- RegExp#toString has a wrong name
1151
+ var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name != TO_STRING;
1152
+
1153
+ // `RegExp.prototype.toString` method
1154
+ // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
1155
+ if (NOT_GENERIC || INCORRECT_NAME) {
1156
+ defineBuiltIn(RegExp.prototype, TO_STRING, function toString() {
1157
+ var R = anObject(this);
1158
+ var pattern = $toString(R.source);
1159
+ var flags = $toString(getRegExpFlags(R));
1160
+ return '/' + pattern + '/' + flags;
1161
+ }, { unsafe: true });
1162
+ }
1163
+
1164
+
994
1165
  /***/ }),
995
1166
 
996
1167
  /***/ "2626":
@@ -1068,7 +1239,7 @@ var FunctionPrototype = Function.prototype;
1068
1239
  var apply = FunctionPrototype.apply;
1069
1240
  var call = FunctionPrototype.call;
1070
1241
 
1071
- // eslint-disable-next-line es-x/no-reflect -- safe
1242
+ // eslint-disable-next-line es/no-reflect -- safe
1072
1243
  module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
1073
1244
  return call.apply(apply, arguments);
1074
1245
  });
@@ -1102,11 +1273,11 @@ var String = global.String;
1102
1273
  var counter = 0;
1103
1274
  var queue = {};
1104
1275
  var ONREADYSTATECHANGE = 'onreadystatechange';
1105
- var location, defer, channel, port;
1276
+ var $location, defer, channel, port;
1106
1277
 
1107
1278
  try {
1108
1279
  // Deno throws a ReferenceError on `location` access without `--location` flag
1109
- location = global.location;
1280
+ $location = global.location;
1110
1281
  } catch (error) { /* empty */ }
1111
1282
 
1112
1283
  var run = function (id) {
@@ -1129,7 +1300,7 @@ var listener = function (event) {
1129
1300
 
1130
1301
  var post = function (id) {
1131
1302
  // old engines have not location.origin
1132
- global.postMessage(String(id), location.protocol + '//' + location.host);
1303
+ global.postMessage(String(id), $location.protocol + '//' + $location.host);
1133
1304
  };
1134
1305
 
1135
1306
  // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
@@ -1170,7 +1341,7 @@ if (!set || !clear) {
1170
1341
  global.addEventListener &&
1171
1342
  isCallable(global.postMessage) &&
1172
1343
  !global.importScripts &&
1173
- location && location.protocol !== 'file:' &&
1344
+ $location && $location.protocol !== 'file:' &&
1174
1345
  !fails(post)
1175
1346
  ) {
1176
1347
  defer = post;
@@ -1231,6 +1402,40 @@ if (!version && userAgent) {
1231
1402
  module.exports = version;
1232
1403
 
1233
1404
 
1405
+ /***/ }),
1406
+
1407
+ /***/ "2d62":
1408
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1409
+
1410
+ "use strict";
1411
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_cli_service_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PuiDocgenTemplateForm_vue_vue_type_style_index_0_id_36ac9f25_prod_lang_postcss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("dbcc");
1412
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_cli_service_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PuiDocgenTemplateForm_vue_vue_type_style_index_0_id_36ac9f25_prod_lang_postcss__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_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_cli_service_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PuiDocgenTemplateForm_vue_vue_type_style_index_0_id_36ac9f25_prod_lang_postcss__WEBPACK_IMPORTED_MODULE_0__);
1413
+ /* unused harmony reexport * */
1414
+
1415
+
1416
+ /***/ }),
1417
+
1418
+ /***/ "3410":
1419
+ /***/ (function(module, exports, __webpack_require__) {
1420
+
1421
+ var $ = __webpack_require__("23e7");
1422
+ var fails = __webpack_require__("d039");
1423
+ var toObject = __webpack_require__("7b0b");
1424
+ var nativeGetPrototypeOf = __webpack_require__("e163");
1425
+ var CORRECT_PROTOTYPE_GETTER = __webpack_require__("e177");
1426
+
1427
+ var FAILS_ON_PRIMITIVES = fails(function () { nativeGetPrototypeOf(1); });
1428
+
1429
+ // `Object.getPrototypeOf` method
1430
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
1431
+ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES, sham: !CORRECT_PROTOTYPE_GETTER }, {
1432
+ getPrototypeOf: function getPrototypeOf(it) {
1433
+ return nativeGetPrototypeOf(toObject(it));
1434
+ }
1435
+ });
1436
+
1437
+
1438
+
1234
1439
  /***/ }),
1235
1440
 
1236
1441
  /***/ "342f":
@@ -1296,29 +1501,19 @@ $({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }
1296
1501
 
1297
1502
  var classof = __webpack_require__("f5df");
1298
1503
  var getMethod = __webpack_require__("dc4a");
1504
+ var isNullOrUndefined = __webpack_require__("7234");
1299
1505
  var Iterators = __webpack_require__("3f8c");
1300
1506
  var wellKnownSymbol = __webpack_require__("b622");
1301
1507
 
1302
1508
  var ITERATOR = wellKnownSymbol('iterator');
1303
1509
 
1304
1510
  module.exports = function (it) {
1305
- if (it != undefined) return getMethod(it, ITERATOR)
1511
+ if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
1306
1512
  || getMethod(it, '@@iterator')
1307
1513
  || Iterators[classof(it)];
1308
1514
  };
1309
1515
 
1310
1516
 
1311
- /***/ }),
1312
-
1313
- /***/ "36ee":
1314
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
1315
-
1316
- "use strict";
1317
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_cli_service_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PuiDocgenTemplateForm_vue_vue_type_style_index_0_id_70f175a5_prod_lang_postcss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("7479");
1318
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_cli_service_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PuiDocgenTemplateForm_vue_vue_type_style_index_0_id_70f175a5_prod_lang_postcss__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_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_cli_service_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PuiDocgenTemplateForm_vue_vue_type_style_index_0_id_70f175a5_prod_lang_postcss__WEBPACK_IMPORTED_MODULE_0__);
1319
- /* unused harmony reexport * */
1320
-
1321
-
1322
1517
  /***/ }),
1323
1518
 
1324
1519
  /***/ "37e8":
@@ -1333,7 +1528,7 @@ var objectKeys = __webpack_require__("df75");
1333
1528
 
1334
1529
  // `Object.defineProperties` method
1335
1530
  // https://tc39.es/ecma262/#sec-object.defineproperties
1336
- // eslint-disable-next-line es-x/no-object-defineproperties -- safe
1531
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
1337
1532
  exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1338
1533
  anObject(O);
1339
1534
  var props = toIndexedObject(Properties);
@@ -1346,6 +1541,41 @@ exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties :
1346
1541
  };
1347
1542
 
1348
1543
 
1544
+ /***/ }),
1545
+
1546
+ /***/ "3a34":
1547
+ /***/ (function(module, exports, __webpack_require__) {
1548
+
1549
+ "use strict";
1550
+
1551
+ var DESCRIPTORS = __webpack_require__("83ab");
1552
+ var isArray = __webpack_require__("e8b5");
1553
+
1554
+ var $TypeError = TypeError;
1555
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1556
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1557
+
1558
+ // Safari < 13 does not throw an error in this case
1559
+ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
1560
+ // makes no sense without proper strict mode support
1561
+ if (this !== undefined) return true;
1562
+ try {
1563
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1564
+ Object.defineProperty([], 'length', { writable: false }).length = 1;
1565
+ } catch (error) {
1566
+ return error instanceof TypeError;
1567
+ }
1568
+ }();
1569
+
1570
+ module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
1571
+ if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
1572
+ throw $TypeError('Cannot set read only .length');
1573
+ } return O.length = length;
1574
+ } : function (O, length) {
1575
+ return O.length = length;
1576
+ };
1577
+
1578
+
1349
1579
  /***/ }),
1350
1580
 
1351
1581
  /***/ "3a9b":
@@ -1382,7 +1612,8 @@ module.exports = function (argument) {
1382
1612
  var charAt = __webpack_require__("6547").charAt;
1383
1613
  var toString = __webpack_require__("577e");
1384
1614
  var InternalStateModule = __webpack_require__("69f3");
1385
- var defineIterator = __webpack_require__("7dd0");
1615
+ var defineIterator = __webpack_require__("c6d2");
1616
+ var createIterResultObject = __webpack_require__("4754");
1386
1617
 
1387
1618
  var STRING_ITERATOR = 'String Iterator';
1388
1619
  var setInternalState = InternalStateModule.set;
@@ -1403,24 +1634,13 @@ defineIterator(String, 'String', function (iterated) {
1403
1634
  var string = state.string;
1404
1635
  var index = state.index;
1405
1636
  var point;
1406
- if (index >= string.length) return { value: undefined, done: true };
1637
+ if (index >= string.length) return createIterResultObject(undefined, true);
1407
1638
  point = charAt(string, index);
1408
1639
  state.index += point.length;
1409
- return { value: point, done: false };
1640
+ return createIterResultObject(point, false);
1410
1641
  });
1411
1642
 
1412
1643
 
1413
- /***/ }),
1414
-
1415
- /***/ "3d87":
1416
- /***/ (function(module, exports, __webpack_require__) {
1417
-
1418
- var NATIVE_SYMBOL = __webpack_require__("4930");
1419
-
1420
- /* eslint-disable es-x/no-symbol -- safe */
1421
- module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor;
1422
-
1423
-
1424
1644
  /***/ }),
1425
1645
 
1426
1646
  /***/ "3f8c":
@@ -1440,7 +1660,7 @@ module.exports = {};
1440
1660
  __webpack_require__("3ca3");
1441
1661
  var $ = __webpack_require__("23e7");
1442
1662
  var DESCRIPTORS = __webpack_require__("83ab");
1443
- var USE_NATIVE_URL = __webpack_require__("0d3b");
1663
+ var USE_NATIVE_URL = __webpack_require__("f354");
1444
1664
  var global = __webpack_require__("da84");
1445
1665
  var bind = __webpack_require__("0366");
1446
1666
  var uncurryThis = __webpack_require__("e330");
@@ -2499,7 +2719,7 @@ module.exports = uncurryThis(1.0.valueOf);
2499
2719
  var fails = __webpack_require__("d039");
2500
2720
 
2501
2721
  module.exports = !fails(function () {
2502
- // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
2722
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
2503
2723
  var test = (function () { /* empty */ }).bind();
2504
2724
  // eslint-disable-next-line no-prototype-builtins -- safe
2505
2725
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -2599,6 +2819,38 @@ module.exports = function (it) {
2599
2819
  };
2600
2820
 
2601
2821
 
2822
+ /***/ }),
2823
+
2824
+ /***/ "4625":
2825
+ /***/ (function(module, exports, __webpack_require__) {
2826
+
2827
+ var classofRaw = __webpack_require__("c6b6");
2828
+ var uncurryThis = __webpack_require__("e330");
2829
+
2830
+ module.exports = function (fn) {
2831
+ // Nashorn bug:
2832
+ // https://github.com/zloirock/core-js/issues/1128
2833
+ // https://github.com/zloirock/core-js/issues/1130
2834
+ if (classofRaw(fn) === 'Function') return uncurryThis(fn);
2835
+ };
2836
+
2837
+
2838
+ /***/ }),
2839
+
2840
+ /***/ "46c4":
2841
+ /***/ (function(module, exports, __webpack_require__) {
2842
+
2843
+ var aCallable = __webpack_require__("59ed");
2844
+ var anObject = __webpack_require__("825a");
2845
+
2846
+ module.exports = function (obj) {
2847
+ return {
2848
+ iterator: obj,
2849
+ next: aCallable(anObject(obj).next)
2850
+ };
2851
+ };
2852
+
2853
+
2602
2854
  /***/ }),
2603
2855
 
2604
2856
  /***/ "4738":
@@ -2611,6 +2863,7 @@ var isForced = __webpack_require__("94ca");
2611
2863
  var inspectSource = __webpack_require__("8925");
2612
2864
  var wellKnownSymbol = __webpack_require__("b622");
2613
2865
  var IS_BROWSER = __webpack_require__("6069");
2866
+ var IS_DENO = __webpack_require__("6c59");
2614
2867
  var IS_PURE = __webpack_require__("c430");
2615
2868
  var V8_VERSION = __webpack_require__("2d00");
2616
2869
 
@@ -2631,18 +2884,18 @@ var FORCED_PROMISE_CONSTRUCTOR = isForced('Promise', function () {
2631
2884
  // We can't use @@species feature detection in V8 since it causes
2632
2885
  // deoptimization and performance degradation
2633
2886
  // https://github.com/zloirock/core-js/issues/679
2634
- if (V8_VERSION >= 51 && /native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) return false;
2635
- // Detect correctness of subclassing with @@species support
2636
- var promise = new NativePromiseConstructor(function (resolve) { resolve(1); });
2637
- var FakePromise = function (exec) {
2638
- exec(function () { /* empty */ }, function () { /* empty */ });
2639
- };
2640
- var constructor = promise.constructor = {};
2641
- constructor[SPECIES] = FakePromise;
2642
- SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
2643
- if (!SUBCLASSING) return true;
2887
+ if (!V8_VERSION || V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) {
2888
+ // Detect correctness of subclassing with @@species support
2889
+ var promise = new NativePromiseConstructor(function (resolve) { resolve(1); });
2890
+ var FakePromise = function (exec) {
2891
+ exec(function () { /* empty */ }, function () { /* empty */ });
2892
+ };
2893
+ var constructor = promise.constructor = {};
2894
+ constructor[SPECIES] = FakePromise;
2895
+ SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
2896
+ if (!SUBCLASSING) return true;
2644
2897
  // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
2645
- return !GLOBAL_CORE_JS_PROMISE && IS_BROWSER && !NATIVE_PROMISE_REJECTION_EVENT;
2898
+ } return !GLOBAL_CORE_JS_PROMISE && (IS_BROWSER || IS_DENO) && !NATIVE_PROMISE_REJECTION_EVENT;
2646
2899
  });
2647
2900
 
2648
2901
  module.exports = {
@@ -2652,6 +2905,18 @@ module.exports = {
2652
2905
  };
2653
2906
 
2654
2907
 
2908
+ /***/ }),
2909
+
2910
+ /***/ "4754":
2911
+ /***/ (function(module, exports) {
2912
+
2913
+ // `CreateIterResultObject` abstract operation
2914
+ // https://tc39.es/ecma262/#sec-createiterresultobject
2915
+ module.exports = function (value, done) {
2916
+ return { value: value, done: done };
2917
+ };
2918
+
2919
+
2655
2920
  /***/ }),
2656
2921
 
2657
2922
  /***/ "4840":
@@ -2659,6 +2924,7 @@ module.exports = {
2659
2924
 
2660
2925
  var anObject = __webpack_require__("825a");
2661
2926
  var aConstructor = __webpack_require__("5087");
2927
+ var isNullOrUndefined = __webpack_require__("7234");
2662
2928
  var wellKnownSymbol = __webpack_require__("b622");
2663
2929
 
2664
2930
  var SPECIES = wellKnownSymbol('species');
@@ -2668,7 +2934,7 @@ var SPECIES = wellKnownSymbol('species');
2668
2934
  module.exports = function (O, defaultConstructor) {
2669
2935
  var C = anObject(O).constructor;
2670
2936
  var S;
2671
- return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S);
2937
+ return C === undefined || isNullOrUndefined(S = anObject(C)[SPECIES]) ? defaultConstructor : aConstructor(S);
2672
2938
  };
2673
2939
 
2674
2940
 
@@ -2696,32 +2962,12 @@ module.exports = function (input, pref) {
2696
2962
 
2697
2963
  /***/ }),
2698
2964
 
2699
- /***/ "4930":
2965
+ /***/ "4d64":
2700
2966
  /***/ (function(module, exports, __webpack_require__) {
2701
2967
 
2702
- /* eslint-disable es-x/no-symbol -- required for testing */
2703
- var V8_VERSION = __webpack_require__("2d00");
2704
- var fails = __webpack_require__("d039");
2705
-
2706
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
2707
- module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
2708
- var symbol = Symbol();
2709
- // Chrome 38 Symbol has incorrect toString conversion
2710
- // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
2711
- return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
2712
- // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
2713
- !Symbol.sham && V8_VERSION && V8_VERSION < 41;
2714
- });
2715
-
2716
-
2717
- /***/ }),
2718
-
2719
- /***/ "4d64":
2720
- /***/ (function(module, exports, __webpack_require__) {
2721
-
2722
- var toIndexedObject = __webpack_require__("fc6a");
2723
- var toAbsoluteIndex = __webpack_require__("23cb");
2724
- var lengthOfArrayLike = __webpack_require__("07fa");
2968
+ var toIndexedObject = __webpack_require__("fc6a");
2969
+ var toAbsoluteIndex = __webpack_require__("23cb");
2970
+ var lengthOfArrayLike = __webpack_require__("07fa");
2725
2971
 
2726
2972
  // `Array.prototype.{ indexOf, includes }` methods implementation
2727
2973
  var createMethod = function (IS_INCLUDES) {
@@ -2863,11 +3109,17 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
2863
3109
  // https://github.com/tc39/proposal-iterator-helpers
2864
3110
  var $ = __webpack_require__("23e7");
2865
3111
  var iterate = __webpack_require__("2266");
2866
- var anObject = __webpack_require__("825a");
3112
+ var aCallable = __webpack_require__("59ed");
3113
+ var getIteratorDirect = __webpack_require__("46c4");
2867
3114
 
2868
3115
  $({ target: 'Iterator', proto: true, real: true, forced: true }, {
2869
3116
  forEach: function forEach(fn) {
2870
- iterate(anObject(this), fn, { IS_ITERATOR: true });
3117
+ var record = getIteratorDirect(this);
3118
+ var counter = 0;
3119
+ aCallable(fn);
3120
+ iterate(record, function (value) {
3121
+ fn(value, counter++);
3122
+ }, { IS_RECORD: true });
2871
3123
  }
2872
3124
  });
2873
3125
 
@@ -2895,7 +3147,7 @@ var V8 = __webpack_require__("2d00");
2895
3147
  var WEBKIT = __webpack_require__("512c");
2896
3148
 
2897
3149
  var test = [];
2898
- var un$Sort = uncurryThis(test.sort);
3150
+ var nativeSort = uncurryThis(test.sort);
2899
3151
  var push = uncurryThis(test.push);
2900
3152
 
2901
3153
  // IE8-
@@ -2963,7 +3215,7 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
2963
3215
 
2964
3216
  var array = toObject(this);
2965
3217
 
2966
- if (STABLE_SORT) return comparefn === undefined ? un$Sort(array) : un$Sort(array, comparefn);
3218
+ if (STABLE_SORT) return comparefn === undefined ? nativeSort(array) : nativeSort(array, comparefn);
2967
3219
 
2968
3220
  var items = [];
2969
3221
  var arrayLength = lengthOfArrayLike(array);
@@ -2975,7 +3227,7 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
2975
3227
 
2976
3228
  internalSort(items, getSortCompare(comparefn));
2977
3229
 
2978
- itemsLength = items.length;
3230
+ itemsLength = lengthOfArrayLike(items);
2979
3231
  index = 0;
2980
3232
 
2981
3233
  while (index < itemsLength) array[index] = items[index++];
@@ -3045,11 +3297,11 @@ var global = __webpack_require__("da84");
3045
3297
  var call = __webpack_require__("c65b");
3046
3298
  var uncurryThis = __webpack_require__("e330");
3047
3299
  var DESCRIPTORS = __webpack_require__("83ab");
3048
- var USE_NATIVE_URL = __webpack_require__("0d3b");
3300
+ var USE_NATIVE_URL = __webpack_require__("f354");
3049
3301
  var defineBuiltIn = __webpack_require__("cb2d");
3050
3302
  var defineBuiltIns = __webpack_require__("6964");
3051
3303
  var setToStringTag = __webpack_require__("d44e");
3052
- var createIteratorConstructor = __webpack_require__("9ed3");
3304
+ var createIteratorConstructor = __webpack_require__("dcc3");
3053
3305
  var InternalStateModule = __webpack_require__("69f3");
3054
3306
  var anInstance = __webpack_require__("19aa");
3055
3307
  var isCallable = __webpack_require__("1626");
@@ -3073,7 +3325,7 @@ var URL_SEARCH_PARAMS_ITERATOR = URL_SEARCH_PARAMS + 'Iterator';
3073
3325
  var setInternalState = InternalStateModule.set;
3074
3326
  var getInternalParamsState = InternalStateModule.getterFor(URL_SEARCH_PARAMS);
3075
3327
  var getInternalIteratorState = InternalStateModule.getterFor(URL_SEARCH_PARAMS_ITERATOR);
3076
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
3328
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3077
3329
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3078
3330
 
3079
3331
  // Avoid NodeJS experimental warning
@@ -3442,10 +3694,10 @@ var store = __webpack_require__("c6cd");
3442
3694
  (module.exports = function (key, value) {
3443
3695
  return store[key] || (store[key] = value !== undefined ? value : {});
3444
3696
  })('versions', []).push({
3445
- version: '3.23.1',
3697
+ version: '3.26.1',
3446
3698
  mode: IS_PURE ? 'pure' : 'global',
3447
3699
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
3448
- license: 'https://github.com/zloirock/core-js/blob/v3.23.1/LICENSE',
3700
+ license: 'https://github.com/zloirock/core-js/blob/v3.26.1/LICENSE',
3449
3701
  source: 'https://github.com/zloirock/core-js'
3450
3702
  });
3451
3703
 
@@ -3616,7 +3868,7 @@ module.exports = function (it) {
3616
3868
  /***/ (function(module, exports, __webpack_require__) {
3617
3869
 
3618
3870
  var $ = __webpack_require__("23e7");
3619
- var NATIVE_SYMBOL = __webpack_require__("4930");
3871
+ var NATIVE_SYMBOL = __webpack_require__("04f8");
3620
3872
  var fails = __webpack_require__("d039");
3621
3873
  var getOwnPropertySymbolsModule = __webpack_require__("7418");
3622
3874
  var toObject = __webpack_require__("7b0b");
@@ -3659,7 +3911,7 @@ var DESCRIPTORS = __webpack_require__("83ab");
3659
3911
  var hasOwn = __webpack_require__("1a2d");
3660
3912
 
3661
3913
  var FunctionPrototype = Function.prototype;
3662
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
3914
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3663
3915
  var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
3664
3916
 
3665
3917
  var EXISTS = hasOwn(FunctionPrototype, 'name');
@@ -4187,9 +4439,14 @@ module.exports = classof(global.process) == 'process';
4187
4439
  /***/ }),
4188
4440
 
4189
4441
  /***/ "6069":
4190
- /***/ (function(module, exports) {
4442
+ /***/ (function(module, exports, __webpack_require__) {
4443
+
4444
+ var IS_DENO = __webpack_require__("6c59");
4445
+ var IS_NODE = __webpack_require__("605d");
4191
4446
 
4192
- module.exports = typeof window == 'object' && typeof Deno != 'object';
4447
+ module.exports = !IS_DENO && !IS_NODE
4448
+ && typeof window == 'object'
4449
+ && typeof document == 'object';
4193
4450
 
4194
4451
 
4195
4452
  /***/ }),
@@ -4209,9 +4466,9 @@ var propertyIsEnumerableModule = __webpack_require__("d1e7");
4209
4466
  var toObject = __webpack_require__("7b0b");
4210
4467
  var IndexedObject = __webpack_require__("44ad");
4211
4468
 
4212
- // eslint-disable-next-line es-x/no-object-assign -- safe
4469
+ // eslint-disable-next-line es/no-object-assign -- safe
4213
4470
  var $assign = Object.assign;
4214
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
4471
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4215
4472
  var defineProperty = Object.defineProperty;
4216
4473
  var concat = uncurryThis([].concat);
4217
4474
 
@@ -4231,7 +4488,7 @@ module.exports = !$assign || fails(function () {
4231
4488
  // should work with symbols and should have deterministic property order (V8 bug)
4232
4489
  var A = {};
4233
4490
  var B = {};
4234
- // eslint-disable-next-line es-x/no-symbol -- safe
4491
+ // eslint-disable-next-line es/no-symbol -- safe
4235
4492
  var symbol = Symbol();
4236
4493
  var alphabet = 'abcdefghijklmnopqrst';
4237
4494
  A[symbol] = 7;
@@ -4264,7 +4521,7 @@ module.exports = !$assign || fails(function () {
4264
4521
 
4265
4522
  var global = __webpack_require__("da84");
4266
4523
 
4267
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
4524
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
4268
4525
  var defineProperty = Object.defineProperty;
4269
4526
 
4270
4527
  module.exports = function (key, value) {
@@ -4410,9 +4667,8 @@ module.exports = function (target, src, options) {
4410
4667
  /***/ "69f3":
4411
4668
  /***/ (function(module, exports, __webpack_require__) {
4412
4669
 
4413
- var NATIVE_WEAK_MAP = __webpack_require__("7f9a");
4670
+ var NATIVE_WEAK_MAP = __webpack_require__("cdce");
4414
4671
  var global = __webpack_require__("da84");
4415
- var uncurryThis = __webpack_require__("e330");
4416
4672
  var isObject = __webpack_require__("861d");
4417
4673
  var createNonEnumerableProperty = __webpack_require__("9112");
4418
4674
  var hasOwn = __webpack_require__("1a2d");
@@ -4440,26 +4696,28 @@ var getterFor = function (TYPE) {
4440
4696
 
4441
4697
  if (NATIVE_WEAK_MAP || shared.state) {
4442
4698
  var store = shared.state || (shared.state = new WeakMap());
4443
- var wmget = uncurryThis(store.get);
4444
- var wmhas = uncurryThis(store.has);
4445
- var wmset = uncurryThis(store.set);
4699
+ /* eslint-disable no-self-assign -- prototype methods protection */
4700
+ store.get = store.get;
4701
+ store.has = store.has;
4702
+ store.set = store.set;
4703
+ /* eslint-enable no-self-assign -- prototype methods protection */
4446
4704
  set = function (it, metadata) {
4447
- if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
4705
+ if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
4448
4706
  metadata.facade = it;
4449
- wmset(store, it, metadata);
4707
+ store.set(it, metadata);
4450
4708
  return metadata;
4451
4709
  };
4452
4710
  get = function (it) {
4453
- return wmget(store, it) || {};
4711
+ return store.get(it) || {};
4454
4712
  };
4455
4713
  has = function (it) {
4456
- return wmhas(store, it);
4714
+ return store.has(it);
4457
4715
  };
4458
4716
  } else {
4459
4717
  var STATE = sharedKey('state');
4460
4718
  hiddenKeys[STATE] = true;
4461
4719
  set = function (it, metadata) {
4462
- if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
4720
+ if (hasOwn(it, STATE)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
4463
4721
  metadata.facade = it;
4464
4722
  createNonEnumerableProperty(it, STATE, metadata);
4465
4723
  return metadata;
@@ -4481,6 +4739,15 @@ module.exports = {
4481
4739
  };
4482
4740
 
4483
4741
 
4742
+ /***/ }),
4743
+
4744
+ /***/ "6c59":
4745
+ /***/ (function(module, exports) {
4746
+
4747
+ /* global Deno -- Deno case */
4748
+ module.exports = typeof Deno == 'object' && Deno && typeof Deno.version == 'object';
4749
+
4750
+
4484
4751
  /***/ }),
4485
4752
 
4486
4753
  /***/ "7149":
@@ -4534,37 +4801,24 @@ module.exports = function ($this, dummy, Wrapper) {
4534
4801
 
4535
4802
  /***/ }),
4536
4803
 
4537
- /***/ "7418":
4804
+ /***/ "7234":
4538
4805
  /***/ (function(module, exports) {
4539
4806
 
4540
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
4541
- exports.f = Object.getOwnPropertySymbols;
4542
-
4543
-
4544
- /***/ }),
4545
-
4546
- /***/ "746f":
4547
- /***/ (function(module, exports, __webpack_require__) {
4548
-
4549
- var path = __webpack_require__("428f");
4550
- var hasOwn = __webpack_require__("1a2d");
4551
- var wrappedWellKnownSymbolModule = __webpack_require__("e538");
4552
- var defineProperty = __webpack_require__("9bf2").f;
4553
-
4554
- module.exports = function (NAME) {
4555
- var Symbol = path.Symbol || (path.Symbol = {});
4556
- if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, {
4557
- value: wrappedWellKnownSymbolModule.f(NAME)
4558
- });
4807
+ // we can't use just `it == null` since of `document.all` special case
4808
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
4809
+ module.exports = function (it) {
4810
+ return it === null || it === undefined;
4559
4811
  };
4560
4812
 
4561
4813
 
4562
4814
  /***/ }),
4563
4815
 
4564
- /***/ "7479":
4565
- /***/ (function(module, exports, __webpack_require__) {
4816
+ /***/ "7418":
4817
+ /***/ (function(module, exports) {
4818
+
4819
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
4820
+ exports.f = Object.getOwnPropertySymbols;
4566
4821
 
4567
- // extracted by mini-css-extract-plugin
4568
4822
 
4569
4823
  /***/ }),
4570
4824
 
@@ -4689,7 +4943,7 @@ hiddenKeys[IE_PROTO] = true;
4689
4943
 
4690
4944
  // `Object.create` method
4691
4945
  // https://tc39.es/ecma262/#sec-object.create
4692
- // eslint-disable-next-line es-x/no-object-create -- safe
4946
+ // eslint-disable-next-line es/no-object-create -- safe
4693
4947
  module.exports = Object.create || function create(O, Properties) {
4694
4948
  var result;
4695
4949
  if (O !== null) {
@@ -4703,127 +4957,6 @@ module.exports = Object.create || function create(O, Properties) {
4703
4957
  };
4704
4958
 
4705
4959
 
4706
- /***/ }),
4707
-
4708
- /***/ "7dd0":
4709
- /***/ (function(module, exports, __webpack_require__) {
4710
-
4711
- "use strict";
4712
-
4713
- var $ = __webpack_require__("23e7");
4714
- var call = __webpack_require__("c65b");
4715
- var IS_PURE = __webpack_require__("c430");
4716
- var FunctionName = __webpack_require__("5e77");
4717
- var isCallable = __webpack_require__("1626");
4718
- var createIteratorConstructor = __webpack_require__("9ed3");
4719
- var getPrototypeOf = __webpack_require__("e163");
4720
- var setPrototypeOf = __webpack_require__("d2bb");
4721
- var setToStringTag = __webpack_require__("d44e");
4722
- var createNonEnumerableProperty = __webpack_require__("9112");
4723
- var defineBuiltIn = __webpack_require__("cb2d");
4724
- var wellKnownSymbol = __webpack_require__("b622");
4725
- var Iterators = __webpack_require__("3f8c");
4726
- var IteratorsCore = __webpack_require__("ae93");
4727
-
4728
- var PROPER_FUNCTION_NAME = FunctionName.PROPER;
4729
- var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
4730
- var IteratorPrototype = IteratorsCore.IteratorPrototype;
4731
- var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
4732
- var ITERATOR = wellKnownSymbol('iterator');
4733
- var KEYS = 'keys';
4734
- var VALUES = 'values';
4735
- var ENTRIES = 'entries';
4736
-
4737
- var returnThis = function () { return this; };
4738
-
4739
- module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
4740
- createIteratorConstructor(IteratorConstructor, NAME, next);
4741
-
4742
- var getIterationMethod = function (KIND) {
4743
- if (KIND === DEFAULT && defaultIterator) return defaultIterator;
4744
- if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
4745
- switch (KIND) {
4746
- case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
4747
- case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
4748
- case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
4749
- } return function () { return new IteratorConstructor(this); };
4750
- };
4751
-
4752
- var TO_STRING_TAG = NAME + ' Iterator';
4753
- var INCORRECT_VALUES_NAME = false;
4754
- var IterablePrototype = Iterable.prototype;
4755
- var nativeIterator = IterablePrototype[ITERATOR]
4756
- || IterablePrototype['@@iterator']
4757
- || DEFAULT && IterablePrototype[DEFAULT];
4758
- var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
4759
- var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
4760
- var CurrentIteratorPrototype, methods, KEY;
4761
-
4762
- // fix native
4763
- if (anyNativeIterator) {
4764
- CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
4765
- if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
4766
- if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
4767
- if (setPrototypeOf) {
4768
- setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
4769
- } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) {
4770
- defineBuiltIn(CurrentIteratorPrototype, ITERATOR, returnThis);
4771
- }
4772
- }
4773
- // Set @@toStringTag to native iterators
4774
- setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
4775
- if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;
4776
- }
4777
- }
4778
-
4779
- // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
4780
- if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
4781
- if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) {
4782
- createNonEnumerableProperty(IterablePrototype, 'name', VALUES);
4783
- } else {
4784
- INCORRECT_VALUES_NAME = true;
4785
- defaultIterator = function values() { return call(nativeIterator, this); };
4786
- }
4787
- }
4788
-
4789
- // export additional methods
4790
- if (DEFAULT) {
4791
- methods = {
4792
- values: getIterationMethod(VALUES),
4793
- keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
4794
- entries: getIterationMethod(ENTRIES)
4795
- };
4796
- if (FORCED) for (KEY in methods) {
4797
- if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
4798
- defineBuiltIn(IterablePrototype, KEY, methods[KEY]);
4799
- }
4800
- } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
4801
- }
4802
-
4803
- // define iterator
4804
- if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
4805
- defineBuiltIn(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT });
4806
- }
4807
- Iterators[NAME] = defaultIterator;
4808
-
4809
- return methods;
4810
- };
4811
-
4812
-
4813
- /***/ }),
4814
-
4815
- /***/ "7f9a":
4816
- /***/ (function(module, exports, __webpack_require__) {
4817
-
4818
- var global = __webpack_require__("da84");
4819
- var isCallable = __webpack_require__("1626");
4820
- var inspectSource = __webpack_require__("8925");
4821
-
4822
- var WeakMap = global.WeakMap;
4823
-
4824
- module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));
4825
-
4826
-
4827
4960
  /***/ }),
4828
4961
 
4829
4962
  /***/ "825a":
@@ -4850,7 +4983,7 @@ var fails = __webpack_require__("d039");
4850
4983
 
4851
4984
  // Detect IE8's incomplete defineProperty implementation
4852
4985
  module.exports = !fails(function () {
4853
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
4986
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4854
4987
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
4855
4988
  });
4856
4989
 
@@ -4879,8 +5012,13 @@ module.exports = function (object, key, value) {
4879
5012
  /***/ (function(module, exports, __webpack_require__) {
4880
5013
 
4881
5014
  var isCallable = __webpack_require__("1626");
5015
+ var $documentAll = __webpack_require__("8ea1");
4882
5016
 
4883
- module.exports = function (it) {
5017
+ var documentAll = $documentAll.all;
5018
+
5019
+ module.exports = $documentAll.IS_HTMLDDA ? function (it) {
5020
+ return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
5021
+ } : function (it) {
4884
5022
  return typeof it == 'object' ? it !== null : isCallable(it);
4885
5023
  };
4886
5024
 
@@ -4991,6 +5129,41 @@ if (!isCallable(store.inspectSource)) {
4991
5129
  module.exports = store.inspectSource;
4992
5130
 
4993
5131
 
5132
+ /***/ }),
5133
+
5134
+ /***/ "8ea1":
5135
+ /***/ (function(module, exports) {
5136
+
5137
+ var documentAll = typeof document == 'object' && document.all;
5138
+
5139
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
5140
+ var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
5141
+
5142
+ module.exports = {
5143
+ all: documentAll,
5144
+ IS_HTMLDDA: IS_HTMLDDA
5145
+ };
5146
+
5147
+
5148
+ /***/ }),
5149
+
5150
+ /***/ "90d8":
5151
+ /***/ (function(module, exports, __webpack_require__) {
5152
+
5153
+ var call = __webpack_require__("c65b");
5154
+ var hasOwn = __webpack_require__("1a2d");
5155
+ var isPrototypeOf = __webpack_require__("3a9b");
5156
+ var regExpFlags = __webpack_require__("ad6d");
5157
+
5158
+ var RegExpPrototype = RegExp.prototype;
5159
+
5160
+ module.exports = function (R) {
5161
+ var flags = R.flags;
5162
+ return flags === undefined && !('flags' in RegExpPrototype) && !hasOwn(R, 'flags') && isPrototypeOf(RegExpPrototype, R)
5163
+ ? call(regExpFlags, R) : flags;
5164
+ };
5165
+
5166
+
4994
5167
  /***/ }),
4995
5168
 
4996
5169
  /***/ "90e3":
@@ -5024,6 +5197,131 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
5024
5197
  };
5025
5198
 
5026
5199
 
5200
+ /***/ }),
5201
+
5202
+ /***/ "9263":
5203
+ /***/ (function(module, exports, __webpack_require__) {
5204
+
5205
+ "use strict";
5206
+
5207
+ /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
5208
+ /* eslint-disable regexp/no-useless-quantifier -- testing */
5209
+ var call = __webpack_require__("c65b");
5210
+ var uncurryThis = __webpack_require__("e330");
5211
+ var toString = __webpack_require__("577e");
5212
+ var regexpFlags = __webpack_require__("ad6d");
5213
+ var stickyHelpers = __webpack_require__("9f7f");
5214
+ var shared = __webpack_require__("5692");
5215
+ var create = __webpack_require__("7c73");
5216
+ var getInternalState = __webpack_require__("69f3").get;
5217
+ var UNSUPPORTED_DOT_ALL = __webpack_require__("fce3");
5218
+ var UNSUPPORTED_NCG = __webpack_require__("107c");
5219
+
5220
+ var nativeReplace = shared('native-string-replace', String.prototype.replace);
5221
+ var nativeExec = RegExp.prototype.exec;
5222
+ var patchedExec = nativeExec;
5223
+ var charAt = uncurryThis(''.charAt);
5224
+ var indexOf = uncurryThis(''.indexOf);
5225
+ var replace = uncurryThis(''.replace);
5226
+ var stringSlice = uncurryThis(''.slice);
5227
+
5228
+ var UPDATES_LAST_INDEX_WRONG = (function () {
5229
+ var re1 = /a/;
5230
+ var re2 = /b*/g;
5231
+ call(nativeExec, re1, 'a');
5232
+ call(nativeExec, re2, 'a');
5233
+ return re1.lastIndex !== 0 || re2.lastIndex !== 0;
5234
+ })();
5235
+
5236
+ var UNSUPPORTED_Y = stickyHelpers.BROKEN_CARET;
5237
+
5238
+ // nonparticipating capturing group, copied from es5-shim's String#split patch.
5239
+ var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
5240
+
5241
+ var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
5242
+
5243
+ if (PATCH) {
5244
+ patchedExec = function exec(string) {
5245
+ var re = this;
5246
+ var state = getInternalState(re);
5247
+ var str = toString(string);
5248
+ var raw = state.raw;
5249
+ var result, reCopy, lastIndex, match, i, object, group;
5250
+
5251
+ if (raw) {
5252
+ raw.lastIndex = re.lastIndex;
5253
+ result = call(patchedExec, raw, str);
5254
+ re.lastIndex = raw.lastIndex;
5255
+ return result;
5256
+ }
5257
+
5258
+ var groups = state.groups;
5259
+ var sticky = UNSUPPORTED_Y && re.sticky;
5260
+ var flags = call(regexpFlags, re);
5261
+ var source = re.source;
5262
+ var charsAdded = 0;
5263
+ var strCopy = str;
5264
+
5265
+ if (sticky) {
5266
+ flags = replace(flags, 'y', '');
5267
+ if (indexOf(flags, 'g') === -1) {
5268
+ flags += 'g';
5269
+ }
5270
+
5271
+ strCopy = stringSlice(str, re.lastIndex);
5272
+ // Support anchored sticky behavior.
5273
+ if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt(str, re.lastIndex - 1) !== '\n')) {
5274
+ source = '(?: ' + source + ')';
5275
+ strCopy = ' ' + strCopy;
5276
+ charsAdded++;
5277
+ }
5278
+ // ^(? + rx + ) is needed, in combination with some str slicing, to
5279
+ // simulate the 'y' flag.
5280
+ reCopy = new RegExp('^(?:' + source + ')', flags);
5281
+ }
5282
+
5283
+ if (NPCG_INCLUDED) {
5284
+ reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
5285
+ }
5286
+ if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
5287
+
5288
+ match = call(nativeExec, sticky ? reCopy : re, strCopy);
5289
+
5290
+ if (sticky) {
5291
+ if (match) {
5292
+ match.input = stringSlice(match.input, charsAdded);
5293
+ match[0] = stringSlice(match[0], charsAdded);
5294
+ match.index = re.lastIndex;
5295
+ re.lastIndex += match[0].length;
5296
+ } else re.lastIndex = 0;
5297
+ } else if (UPDATES_LAST_INDEX_WRONG && match) {
5298
+ re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
5299
+ }
5300
+ if (NPCG_INCLUDED && match && match.length > 1) {
5301
+ // Fix browsers whose `exec` methods don't consistently return `undefined`
5302
+ // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
5303
+ call(nativeReplace, match[0], reCopy, function () {
5304
+ for (i = 1; i < arguments.length - 2; i++) {
5305
+ if (arguments[i] === undefined) match[i] = undefined;
5306
+ }
5307
+ });
5308
+ }
5309
+
5310
+ if (match && groups) {
5311
+ match.groups = object = create(null);
5312
+ for (i = 0; i < groups.length; i++) {
5313
+ group = groups[i];
5314
+ object[group[0]] = match[group[1]];
5315
+ }
5316
+ }
5317
+
5318
+ return match;
5319
+ };
5320
+ }
5321
+
5322
+ module.exports = patchedExec;
5323
+
5324
+
5027
5325
  /***/ }),
5028
5326
 
5029
5327
  /***/ "94ca":
@@ -5180,9 +5478,9 @@ var anObject = __webpack_require__("825a");
5180
5478
  var toPropertyKey = __webpack_require__("a04b");
5181
5479
 
5182
5480
  var $TypeError = TypeError;
5183
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
5481
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
5184
5482
  var $defineProperty = Object.defineProperty;
5185
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
5483
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
5186
5484
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
5187
5485
  var ENUMERABLE = 'enumerable';
5188
5486
  var CONFIGURABLE = 'configurable';
@@ -5220,25 +5518,38 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
5220
5518
 
5221
5519
  /***/ }),
5222
5520
 
5223
- /***/ "9ed3":
5521
+ /***/ "9f7f":
5224
5522
  /***/ (function(module, exports, __webpack_require__) {
5225
5523
 
5226
- "use strict";
5524
+ var fails = __webpack_require__("d039");
5525
+ var global = __webpack_require__("da84");
5227
5526
 
5228
- var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
5229
- var create = __webpack_require__("7c73");
5230
- var createPropertyDescriptor = __webpack_require__("5c6c");
5231
- var setToStringTag = __webpack_require__("d44e");
5232
- var Iterators = __webpack_require__("3f8c");
5527
+ // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
5528
+ var $RegExp = global.RegExp;
5233
5529
 
5234
- var returnThis = function () { return this; };
5530
+ var UNSUPPORTED_Y = fails(function () {
5531
+ var re = $RegExp('a', 'y');
5532
+ re.lastIndex = 2;
5533
+ return re.exec('abcd') != null;
5534
+ });
5235
5535
 
5236
- module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
5237
- var TO_STRING_TAG = NAME + ' Iterator';
5238
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
5239
- setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
5240
- Iterators[TO_STRING_TAG] = returnThis;
5241
- return IteratorConstructor;
5536
+ // UC Browser bug
5537
+ // https://github.com/zloirock/core-js/issues/1008
5538
+ var MISSED_STICKY = UNSUPPORTED_Y || fails(function () {
5539
+ return !$RegExp('a', 'y').sticky;
5540
+ });
5541
+
5542
+ var BROKEN_CARET = UNSUPPORTED_Y || fails(function () {
5543
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
5544
+ var re = $RegExp('^r', 'gy');
5545
+ re.lastIndex = 2;
5546
+ return re.exec('str') != null;
5547
+ });
5548
+
5549
+ module.exports = {
5550
+ BROKEN_CARET: BROKEN_CARET,
5551
+ MISSED_STICKY: MISSED_STICKY,
5552
+ UNSUPPORTED_Y: UNSUPPORTED_Y
5242
5553
  };
5243
5554
 
5244
5555
 
@@ -5271,7 +5582,7 @@ var IndexedObject = __webpack_require__("44ad");
5271
5582
  var toIndexedObject = __webpack_require__("fc6a");
5272
5583
  var arrayMethodIsStrict = __webpack_require__("a640");
5273
5584
 
5274
- var un$Join = uncurryThis([].join);
5585
+ var nativeJoin = uncurryThis([].join);
5275
5586
 
5276
5587
  var ES3_STRINGS = IndexedObject != Object;
5277
5588
  var STRICT_METHOD = arrayMethodIsStrict('join', ',');
@@ -5280,7 +5591,7 @@ var STRICT_METHOD = arrayMethodIsStrict('join', ',');
5280
5591
  // https://tc39.es/ecma262/#sec-array.prototype.join
5281
5592
  $({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD }, {
5282
5593
  join: function join(separator) {
5283
- return un$Join(toIndexedObject(this), separator === undefined ? ',' : separator);
5594
+ return nativeJoin(toIndexedObject(this), separator === undefined ? ',' : separator);
5284
5595
  }
5285
5596
  });
5286
5597
 
@@ -5297,6 +5608,7 @@ var toObject = __webpack_require__("7b0b");
5297
5608
  var toAbsoluteIndex = __webpack_require__("23cb");
5298
5609
  var toIntegerOrInfinity = __webpack_require__("5926");
5299
5610
  var lengthOfArrayLike = __webpack_require__("07fa");
5611
+ var setArrayLength = __webpack_require__("3a34");
5300
5612
  var doesNotExceedSafeInteger = __webpack_require__("3511");
5301
5613
  var arraySpeciesCreate = __webpack_require__("65f0");
5302
5614
  var createProperty = __webpack_require__("8418");
@@ -5353,7 +5665,7 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
5353
5665
  for (k = 0; k < insertCount; k++) {
5354
5666
  O[k + actualStart] = arguments[k + 2];
5355
5667
  }
5356
- O.length = len - actualDeleteCount + insertCount;
5668
+ setArrayLength(O, len - actualDeleteCount + insertCount);
5357
5669
  return A;
5358
5670
  }
5359
5671
  });
@@ -5391,29 +5703,50 @@ __webpack_require__("5a47");
5391
5703
 
5392
5704
  // https://github.com/tc39/proposal-iterator-helpers
5393
5705
  var $ = __webpack_require__("23e7");
5394
- var apply = __webpack_require__("2ba4");
5706
+ var call = __webpack_require__("c65b");
5395
5707
  var aCallable = __webpack_require__("59ed");
5396
5708
  var anObject = __webpack_require__("825a");
5709
+ var getIteratorDirect = __webpack_require__("46c4");
5397
5710
  var createIteratorProxy = __webpack_require__("c5cc");
5398
5711
  var callWithSafeIterationClosing = __webpack_require__("9bdd");
5399
5712
 
5400
- var IteratorProxy = createIteratorProxy(function (args) {
5713
+ var IteratorProxy = createIteratorProxy(function () {
5401
5714
  var iterator = this.iterator;
5402
- var result = anObject(apply(this.next, iterator, args));
5715
+ var result = anObject(call(this.next, iterator));
5403
5716
  var done = this.done = !!result.done;
5404
- if (!done) return callWithSafeIterationClosing(iterator, this.mapper, result.value);
5717
+ if (!done) return callWithSafeIterationClosing(iterator, this.mapper, [result.value, this.counter++], true);
5405
5718
  });
5406
5719
 
5407
5720
  $({ target: 'Iterator', proto: true, real: true, forced: true }, {
5408
5721
  map: function map(mapper) {
5409
- return new IteratorProxy({
5410
- iterator: anObject(this),
5722
+ return new IteratorProxy(getIteratorDirect(this), {
5411
5723
  mapper: aCallable(mapper)
5412
5724
  });
5413
5725
  }
5414
5726
  });
5415
5727
 
5416
5728
 
5729
+ /***/ }),
5730
+
5731
+ /***/ "a630":
5732
+ /***/ (function(module, exports, __webpack_require__) {
5733
+
5734
+ var $ = __webpack_require__("23e7");
5735
+ var from = __webpack_require__("4df4");
5736
+ var checkCorrectnessOfIteration = __webpack_require__("1c7e");
5737
+
5738
+ var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
5739
+ // eslint-disable-next-line es/no-array-from -- required for testing
5740
+ Array.from(iterable);
5741
+ });
5742
+
5743
+ // `Array.from` method
5744
+ // https://tc39.es/ecma262/#sec-array.from
5745
+ $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
5746
+ from: from
5747
+ });
5748
+
5749
+
5417
5750
  /***/ }),
5418
5751
 
5419
5752
  /***/ "a640":
@@ -5550,6 +5883,66 @@ module.exports = function (METHOD_NAME) {
5550
5883
  };
5551
5884
 
5552
5885
 
5886
+ /***/ }),
5887
+
5888
+ /***/ "ab36":
5889
+ /***/ (function(module, exports, __webpack_require__) {
5890
+
5891
+ var isObject = __webpack_require__("861d");
5892
+ var createNonEnumerableProperty = __webpack_require__("9112");
5893
+
5894
+ // `InstallErrorCause` abstract operation
5895
+ // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
5896
+ module.exports = function (O, options) {
5897
+ if (isObject(options) && 'cause' in options) {
5898
+ createNonEnumerableProperty(O, 'cause', options.cause);
5899
+ }
5900
+ };
5901
+
5902
+
5903
+ /***/ }),
5904
+
5905
+ /***/ "ac1f":
5906
+ /***/ (function(module, exports, __webpack_require__) {
5907
+
5908
+ "use strict";
5909
+
5910
+ var $ = __webpack_require__("23e7");
5911
+ var exec = __webpack_require__("9263");
5912
+
5913
+ // `RegExp.prototype.exec` method
5914
+ // https://tc39.es/ecma262/#sec-regexp.prototype.exec
5915
+ $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
5916
+ exec: exec
5917
+ });
5918
+
5919
+
5920
+ /***/ }),
5921
+
5922
+ /***/ "ad6d":
5923
+ /***/ (function(module, exports, __webpack_require__) {
5924
+
5925
+ "use strict";
5926
+
5927
+ var anObject = __webpack_require__("825a");
5928
+
5929
+ // `RegExp.prototype.flags` getter implementation
5930
+ // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
5931
+ module.exports = function () {
5932
+ var that = anObject(this);
5933
+ var result = '';
5934
+ if (that.hasIndices) result += 'd';
5935
+ if (that.global) result += 'g';
5936
+ if (that.ignoreCase) result += 'i';
5937
+ if (that.multiline) result += 'm';
5938
+ if (that.dotAll) result += 's';
5939
+ if (that.unicode) result += 'u';
5940
+ if (that.unicodeSets) result += 'v';
5941
+ if (that.sticky) result += 'y';
5942
+ return result;
5943
+ };
5944
+
5945
+
5553
5946
  /***/ }),
5554
5947
 
5555
5948
  /***/ "addb":
@@ -5610,6 +6003,7 @@ module.exports = mergeSort;
5610
6003
 
5611
6004
  var fails = __webpack_require__("d039");
5612
6005
  var isCallable = __webpack_require__("1626");
6006
+ var isObject = __webpack_require__("861d");
5613
6007
  var create = __webpack_require__("7c73");
5614
6008
  var getPrototypeOf = __webpack_require__("e163");
5615
6009
  var defineBuiltIn = __webpack_require__("cb2d");
@@ -5623,7 +6017,7 @@ var BUGGY_SAFARI_ITERATORS = false;
5623
6017
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
5624
6018
  var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
5625
6019
 
5626
- /* eslint-disable es-x/no-array-prototype-keys -- safe */
6020
+ /* eslint-disable es/no-array-prototype-keys -- safe */
5627
6021
  if ([].keys) {
5628
6022
  arrayIterator = [].keys();
5629
6023
  // Safari 8 has buggy iterators w/o `next`
@@ -5634,7 +6028,7 @@ if ([].keys) {
5634
6028
  }
5635
6029
  }
5636
6030
 
5637
- var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {
6031
+ var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
5638
6032
  var test = {};
5639
6033
  // FF44- legacy iterators case
5640
6034
  return IteratorPrototype[ITERATOR].call(test) !== test;
@@ -5657,6 +6051,22 @@ module.exports = {
5657
6051
  };
5658
6052
 
5659
6053
 
6054
+ /***/ }),
6055
+
6056
+ /***/ "aeb0":
6057
+ /***/ (function(module, exports, __webpack_require__) {
6058
+
6059
+ var defineProperty = __webpack_require__("9bf2").f;
6060
+
6061
+ module.exports = function (Target, Source, key) {
6062
+ key in Target || defineProperty(Target, key, {
6063
+ configurable: true,
6064
+ get: function () { return Source[key]; },
6065
+ set: function (it) { Source[key] = it; }
6066
+ });
6067
+ };
6068
+
6069
+
5660
6070
  /***/ }),
5661
6071
 
5662
6072
  /***/ "aed9":
@@ -5668,7 +6078,7 @@ var fails = __webpack_require__("d039");
5668
6078
  // V8 ~ Chrome 36-
5669
6079
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
5670
6080
  module.exports = DESCRIPTORS && fails(function () {
5671
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
6081
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
5672
6082
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
5673
6083
  value: 42,
5674
6084
  writable: false
@@ -5735,7 +6145,7 @@ var floor = Math.floor;
5735
6145
 
5736
6146
  // `Math.trunc` method
5737
6147
  // https://tc39.es/ecma262/#sec-math.trunc
5738
- // eslint-disable-next-line es-x/no-math-trunc -- safe
6148
+ // eslint-disable-next-line es/no-math-trunc -- safe
5739
6149
  module.exports = Math.trunc || function trunc(x) {
5740
6150
  var n = +x;
5741
6151
  return (n > 0 ? floor : ceil)(n);
@@ -5752,7 +6162,7 @@ var getBuiltIn = __webpack_require__("d066");
5752
6162
  var hasOwn = __webpack_require__("1a2d");
5753
6163
  var toString = __webpack_require__("577e");
5754
6164
  var shared = __webpack_require__("5692");
5755
- var NATIVE_SYMBOL_REGISTRY = __webpack_require__("3d87");
6165
+ var NATIVE_SYMBOL_REGISTRY = __webpack_require__("0b43");
5756
6166
 
5757
6167
  var StringToSymbolRegistry = shared('string-to-symbol-registry');
5758
6168
  var SymbolToStringRegistry = shared('symbol-to-string-registry');
@@ -5872,7 +6282,7 @@ var global = __webpack_require__("da84");
5872
6282
  var shared = __webpack_require__("5692");
5873
6283
  var hasOwn = __webpack_require__("1a2d");
5874
6284
  var uid = __webpack_require__("90e3");
5875
- var NATIVE_SYMBOL = __webpack_require__("4930");
6285
+ var NATIVE_SYMBOL = __webpack_require__("04f8");
5876
6286
  var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
5877
6287
 
5878
6288
  var WellKnownSymbolsStore = shared('wks');
@@ -5995,6 +6405,23 @@ module.exports = {
5995
6405
  };
5996
6406
 
5997
6407
 
6408
+ /***/ }),
6409
+
6410
+ /***/ "b980":
6411
+ /***/ (function(module, exports, __webpack_require__) {
6412
+
6413
+ var fails = __webpack_require__("d039");
6414
+ var createPropertyDescriptor = __webpack_require__("5c6c");
6415
+
6416
+ module.exports = !fails(function () {
6417
+ var error = Error('a');
6418
+ if (!('stack' in error)) return true;
6419
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
6420
+ Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
6421
+ return error.stack !== 7;
6422
+ });
6423
+
6424
+
5998
6425
  /***/ }),
5999
6426
 
6000
6427
  /***/ "bf19":
@@ -6064,7 +6491,7 @@ var hasOwn = __webpack_require__("1a2d");
6064
6491
  var isSymbol = __webpack_require__("d9b5");
6065
6492
  var tryToString = __webpack_require__("0d51");
6066
6493
  var shared = __webpack_require__("5692");
6067
- var NATIVE_SYMBOL_REGISTRY = __webpack_require__("3d87");
6494
+ var NATIVE_SYMBOL_REGISTRY = __webpack_require__("0b43");
6068
6495
 
6069
6496
  var SymbolToStringRegistry = shared('symbol-to-string-registry');
6070
6497
 
@@ -6086,8 +6513,6 @@ $({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, {
6086
6513
  "use strict";
6087
6514
 
6088
6515
  var call = __webpack_require__("c65b");
6089
- var aCallable = __webpack_require__("59ed");
6090
- var anObject = __webpack_require__("825a");
6091
6516
  var create = __webpack_require__("7c73");
6092
6517
  var createNonEnumerableProperty = __webpack_require__("9112");
6093
6518
  var defineBuiltIns = __webpack_require__("6964");
@@ -6095,51 +6520,80 @@ var wellKnownSymbol = __webpack_require__("b622");
6095
6520
  var InternalStateModule = __webpack_require__("69f3");
6096
6521
  var getMethod = __webpack_require__("dc4a");
6097
6522
  var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
6523
+ var createIterResultObject = __webpack_require__("4754");
6524
+ var iteratorClose = __webpack_require__("2a62");
6098
6525
 
6099
- var ITERATOR_PROXY = 'IteratorProxy';
6526
+ var ITERATOR_HELPER = 'IteratorHelper';
6527
+ var WRAP_FOR_VALID_ITERATOR = 'WrapForValidIterator';
6100
6528
  var setInternalState = InternalStateModule.set;
6101
- var getInternalState = InternalStateModule.getterFor(ITERATOR_PROXY);
6102
6529
 
6103
6530
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
6104
6531
 
6105
- module.exports = function (nextHandler, IS_ITERATOR) {
6106
- var IteratorProxy = function Iterator(state) {
6107
- state.type = ITERATOR_PROXY;
6108
- state.next = aCallable(state.iterator.next);
6109
- state.done = false;
6110
- state.ignoreArg = !IS_ITERATOR;
6111
- setInternalState(this, state);
6112
- };
6532
+ var createIteratorProxyPrototype = function (IS_ITERATOR) {
6533
+ var ITERATOR_PROXY = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
6113
6534
 
6114
- IteratorProxy.prototype = defineBuiltIns(create(IteratorPrototype), {
6115
- next: function next(arg) {
6116
- var state = getInternalState(this);
6117
- var args = arguments.length ? [state.ignoreArg ? undefined : arg] : IS_ITERATOR ? [] : [undefined];
6118
- state.ignoreArg = false;
6119
- var result = state.done ? undefined : call(nextHandler, state, args);
6120
- return { done: state.done, value: result };
6121
- },
6122
- 'return': function (value) {
6535
+ var getInternalState = InternalStateModule.getterFor(ITERATOR_PROXY);
6536
+
6537
+ var IteratorProxyPrototype = defineBuiltIns(create(IteratorPrototype), {
6538
+ next: function next() {
6123
6539
  var state = getInternalState(this);
6124
- var iterator = state.iterator;
6125
- state.done = true;
6126
- var $$return = getMethod(iterator, 'return');
6127
- return { done: true, value: $$return ? anObject(call($$return, iterator, value)).value : value };
6540
+ // for simplification:
6541
+ // for `%WrapForValidIteratorPrototype%.next` our `nextHandler` returns `IterResultObject`
6542
+ // for `%IteratorHelperPrototype%.next` - just a value
6543
+ if (IS_ITERATOR) return state.nextHandler();
6544
+ try {
6545
+ var result = state.done ? undefined : state.nextHandler();
6546
+ return createIterResultObject(result, state.done);
6547
+ } catch (error) {
6548
+ state.done = true;
6549
+ throw error;
6550
+ }
6128
6551
  },
6129
- 'throw': function (value) {
6552
+ 'return': function () {
6130
6553
  var state = getInternalState(this);
6131
6554
  var iterator = state.iterator;
6132
6555
  state.done = true;
6133
- var $$throw = getMethod(iterator, 'throw');
6134
- if ($$throw) return call($$throw, iterator, value);
6135
- throw value;
6556
+ if (IS_ITERATOR) {
6557
+ var returnMethod = getMethod(iterator, 'return');
6558
+ return returnMethod ? call(returnMethod, iterator) : createIterResultObject(undefined, true);
6559
+ }
6560
+ if (state.inner) try {
6561
+ iteratorClose(state.inner.iterator, 'return');
6562
+ } catch (error) {
6563
+ return iteratorClose(iterator, 'throw', error);
6564
+ }
6565
+ iteratorClose(iterator, 'return');
6566
+ return createIterResultObject(undefined, true);
6136
6567
  }
6137
6568
  });
6138
6569
 
6139
6570
  if (!IS_ITERATOR) {
6140
- createNonEnumerableProperty(IteratorProxy.prototype, TO_STRING_TAG, 'Generator');
6571
+ createNonEnumerableProperty(IteratorProxyPrototype, TO_STRING_TAG, 'Iterator Helper');
6141
6572
  }
6142
6573
 
6574
+ return IteratorProxyPrototype;
6575
+ };
6576
+
6577
+ var IteratorHelperPrototype = createIteratorProxyPrototype(false);
6578
+ var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true);
6579
+
6580
+ module.exports = function (nextHandler, IS_ITERATOR) {
6581
+ var ITERATOR_PROXY = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
6582
+
6583
+ var IteratorProxy = function Iterator(record, state) {
6584
+ if (state) {
6585
+ state.iterator = record.iterator;
6586
+ state.next = record.next;
6587
+ } else state = record;
6588
+ state.type = ITERATOR_PROXY;
6589
+ state.nextHandler = nextHandler;
6590
+ state.counter = 0;
6591
+ state.done = false;
6592
+ setInternalState(this, state);
6593
+ };
6594
+
6595
+ IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype;
6596
+
6143
6597
  return IteratorProxy;
6144
6598
  };
6145
6599
 
@@ -6187,6 +6641,113 @@ var store = global[SHARED] || defineGlobalProperty(SHARED, {});
6187
6641
  module.exports = store;
6188
6642
 
6189
6643
 
6644
+ /***/ }),
6645
+
6646
+ /***/ "c6d2":
6647
+ /***/ (function(module, exports, __webpack_require__) {
6648
+
6649
+ "use strict";
6650
+
6651
+ var $ = __webpack_require__("23e7");
6652
+ var call = __webpack_require__("c65b");
6653
+ var IS_PURE = __webpack_require__("c430");
6654
+ var FunctionName = __webpack_require__("5e77");
6655
+ var isCallable = __webpack_require__("1626");
6656
+ var createIteratorConstructor = __webpack_require__("dcc3");
6657
+ var getPrototypeOf = __webpack_require__("e163");
6658
+ var setPrototypeOf = __webpack_require__("d2bb");
6659
+ var setToStringTag = __webpack_require__("d44e");
6660
+ var createNonEnumerableProperty = __webpack_require__("9112");
6661
+ var defineBuiltIn = __webpack_require__("cb2d");
6662
+ var wellKnownSymbol = __webpack_require__("b622");
6663
+ var Iterators = __webpack_require__("3f8c");
6664
+ var IteratorsCore = __webpack_require__("ae93");
6665
+
6666
+ var PROPER_FUNCTION_NAME = FunctionName.PROPER;
6667
+ var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
6668
+ var IteratorPrototype = IteratorsCore.IteratorPrototype;
6669
+ var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
6670
+ var ITERATOR = wellKnownSymbol('iterator');
6671
+ var KEYS = 'keys';
6672
+ var VALUES = 'values';
6673
+ var ENTRIES = 'entries';
6674
+
6675
+ var returnThis = function () { return this; };
6676
+
6677
+ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
6678
+ createIteratorConstructor(IteratorConstructor, NAME, next);
6679
+
6680
+ var getIterationMethod = function (KIND) {
6681
+ if (KIND === DEFAULT && defaultIterator) return defaultIterator;
6682
+ if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
6683
+ switch (KIND) {
6684
+ case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
6685
+ case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
6686
+ case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
6687
+ } return function () { return new IteratorConstructor(this); };
6688
+ };
6689
+
6690
+ var TO_STRING_TAG = NAME + ' Iterator';
6691
+ var INCORRECT_VALUES_NAME = false;
6692
+ var IterablePrototype = Iterable.prototype;
6693
+ var nativeIterator = IterablePrototype[ITERATOR]
6694
+ || IterablePrototype['@@iterator']
6695
+ || DEFAULT && IterablePrototype[DEFAULT];
6696
+ var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
6697
+ var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
6698
+ var CurrentIteratorPrototype, methods, KEY;
6699
+
6700
+ // fix native
6701
+ if (anyNativeIterator) {
6702
+ CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
6703
+ if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
6704
+ if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
6705
+ if (setPrototypeOf) {
6706
+ setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
6707
+ } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) {
6708
+ defineBuiltIn(CurrentIteratorPrototype, ITERATOR, returnThis);
6709
+ }
6710
+ }
6711
+ // Set @@toStringTag to native iterators
6712
+ setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
6713
+ if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;
6714
+ }
6715
+ }
6716
+
6717
+ // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
6718
+ if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
6719
+ if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) {
6720
+ createNonEnumerableProperty(IterablePrototype, 'name', VALUES);
6721
+ } else {
6722
+ INCORRECT_VALUES_NAME = true;
6723
+ defaultIterator = function values() { return call(nativeIterator, this); };
6724
+ }
6725
+ }
6726
+
6727
+ // export additional methods
6728
+ if (DEFAULT) {
6729
+ methods = {
6730
+ values: getIterationMethod(VALUES),
6731
+ keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
6732
+ entries: getIterationMethod(ENTRIES)
6733
+ };
6734
+ if (FORCED) for (KEY in methods) {
6735
+ if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
6736
+ defineBuiltIn(IterablePrototype, KEY, methods[KEY]);
6737
+ }
6738
+ } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
6739
+ }
6740
+
6741
+ // define iterator
6742
+ if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
6743
+ defineBuiltIn(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT });
6744
+ }
6745
+ Iterators[NAME] = defaultIterator;
6746
+
6747
+ return methods;
6748
+ };
6749
+
6750
+
6190
6751
  /***/ }),
6191
6752
 
6192
6753
  /***/ "c740":
@@ -6318,8 +6879,10 @@ module.exports = function (O, key, value, options) {
6318
6879
  if (simple) O[key] = value;
6319
6880
  else defineGlobalProperty(key, value);
6320
6881
  } else {
6321
- if (!options.unsafe) delete O[key];
6322
- else if (O[key]) simple = true;
6882
+ try {
6883
+ if (!options.unsafe) delete O[key];
6884
+ else if (O[key]) simple = true;
6885
+ } catch (error) { /* empty */ }
6323
6886
  if (simple) O[key] = value;
6324
6887
  else definePropertyModule.f(O, key, {
6325
6888
  value: value,
@@ -6382,6 +6945,19 @@ if (!IS_PURE && isCallable(NativePromiseConstructor)) {
6382
6945
  }
6383
6946
 
6384
6947
 
6948
+ /***/ }),
6949
+
6950
+ /***/ "cdce":
6951
+ /***/ (function(module, exports, __webpack_require__) {
6952
+
6953
+ var global = __webpack_require__("da84");
6954
+ var isCallable = __webpack_require__("1626");
6955
+
6956
+ var WeakMap = global.WeakMap;
6957
+
6958
+ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
6959
+
6960
+
6385
6961
  /***/ }),
6386
6962
 
6387
6963
  /***/ "cdf9":
@@ -6448,7 +7024,7 @@ module.exports = function (namespace, method) {
6448
7024
  "use strict";
6449
7025
 
6450
7026
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
6451
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
7027
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
6452
7028
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
6453
7029
 
6454
7030
  // Nashorn ~ JDK8 bug
@@ -6472,6 +7048,18 @@ var global = __webpack_require__("da84");
6472
7048
  module.exports = global.Promise;
6473
7049
 
6474
7050
 
7051
+ /***/ }),
7052
+
7053
+ /***/ "d28b":
7054
+ /***/ (function(module, exports, __webpack_require__) {
7055
+
7056
+ var defineWellKnownSymbol = __webpack_require__("e065");
7057
+
7058
+ // `Symbol.iterator` well-known symbol
7059
+ // https://tc39.es/ecma262/#sec-symbol.iterator
7060
+ defineWellKnownSymbol('iterator');
7061
+
7062
+
6475
7063
  /***/ }),
6476
7064
 
6477
7065
  /***/ "d2bb":
@@ -6485,13 +7073,13 @@ var aPossiblePrototype = __webpack_require__("3bbe");
6485
7073
  // `Object.setPrototypeOf` method
6486
7074
  // https://tc39.es/ecma262/#sec-object.setprototypeof
6487
7075
  // Works with __proto__ only. Old v8 can't work with null proto objects.
6488
- // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
7076
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
6489
7077
  module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
6490
7078
  var CORRECT_SETTER = false;
6491
7079
  var test = {};
6492
7080
  var setter;
6493
7081
  try {
6494
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
7082
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
6495
7083
  setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
6496
7084
  setter(test, []);
6497
7085
  CORRECT_SETTER = test instanceof Array;
@@ -6620,43 +7208,106 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
6620
7208
 
6621
7209
  /***/ }),
6622
7210
 
6623
- /***/ "d9f5":
7211
+ /***/ "d9e2":
6624
7212
  /***/ (function(module, exports, __webpack_require__) {
6625
7213
 
6626
- "use strict";
6627
-
7214
+ /* eslint-disable no-unused-vars -- required for functions `.length` */
6628
7215
  var $ = __webpack_require__("23e7");
6629
7216
  var global = __webpack_require__("da84");
6630
- var call = __webpack_require__("c65b");
6631
- var uncurryThis = __webpack_require__("e330");
6632
- var IS_PURE = __webpack_require__("c430");
6633
- var DESCRIPTORS = __webpack_require__("83ab");
6634
- var NATIVE_SYMBOL = __webpack_require__("4930");
6635
- var fails = __webpack_require__("d039");
6636
- var hasOwn = __webpack_require__("1a2d");
6637
- var isPrototypeOf = __webpack_require__("3a9b");
6638
- var anObject = __webpack_require__("825a");
6639
- var toIndexedObject = __webpack_require__("fc6a");
6640
- var toPropertyKey = __webpack_require__("a04b");
6641
- var $toString = __webpack_require__("577e");
6642
- var createPropertyDescriptor = __webpack_require__("5c6c");
6643
- var nativeObjectCreate = __webpack_require__("7c73");
6644
- var objectKeys = __webpack_require__("df75");
6645
- var getOwnPropertyNamesModule = __webpack_require__("241c");
6646
- var getOwnPropertyNamesExternal = __webpack_require__("057f");
6647
- var getOwnPropertySymbolsModule = __webpack_require__("7418");
6648
- var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
6649
- var definePropertyModule = __webpack_require__("9bf2");
6650
- var definePropertiesModule = __webpack_require__("37e8");
6651
- var propertyIsEnumerableModule = __webpack_require__("d1e7");
6652
- var defineBuiltIn = __webpack_require__("cb2d");
6653
- var shared = __webpack_require__("5692");
7217
+ var apply = __webpack_require__("2ba4");
7218
+ var wrapErrorConstructorWithCause = __webpack_require__("e5cb");
7219
+
7220
+ var WEB_ASSEMBLY = 'WebAssembly';
7221
+ var WebAssembly = global[WEB_ASSEMBLY];
7222
+
7223
+ var FORCED = Error('e', { cause: 7 }).cause !== 7;
7224
+
7225
+ var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
7226
+ var O = {};
7227
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
7228
+ $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
7229
+ };
7230
+
7231
+ var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
7232
+ if (WebAssembly && WebAssembly[ERROR_NAME]) {
7233
+ var O = {};
7234
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
7235
+ $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
7236
+ }
7237
+ };
7238
+
7239
+ // https://github.com/tc39/proposal-error-cause
7240
+ exportGlobalErrorCauseWrapper('Error', function (init) {
7241
+ return function Error(message) { return apply(init, this, arguments); };
7242
+ });
7243
+ exportGlobalErrorCauseWrapper('EvalError', function (init) {
7244
+ return function EvalError(message) { return apply(init, this, arguments); };
7245
+ });
7246
+ exportGlobalErrorCauseWrapper('RangeError', function (init) {
7247
+ return function RangeError(message) { return apply(init, this, arguments); };
7248
+ });
7249
+ exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
7250
+ return function ReferenceError(message) { return apply(init, this, arguments); };
7251
+ });
7252
+ exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
7253
+ return function SyntaxError(message) { return apply(init, this, arguments); };
7254
+ });
7255
+ exportGlobalErrorCauseWrapper('TypeError', function (init) {
7256
+ return function TypeError(message) { return apply(init, this, arguments); };
7257
+ });
7258
+ exportGlobalErrorCauseWrapper('URIError', function (init) {
7259
+ return function URIError(message) { return apply(init, this, arguments); };
7260
+ });
7261
+ exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
7262
+ return function CompileError(message) { return apply(init, this, arguments); };
7263
+ });
7264
+ exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
7265
+ return function LinkError(message) { return apply(init, this, arguments); };
7266
+ });
7267
+ exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
7268
+ return function RuntimeError(message) { return apply(init, this, arguments); };
7269
+ });
7270
+
7271
+
7272
+ /***/ }),
7273
+
7274
+ /***/ "d9f5":
7275
+ /***/ (function(module, exports, __webpack_require__) {
7276
+
7277
+ "use strict";
7278
+
7279
+ var $ = __webpack_require__("23e7");
7280
+ var global = __webpack_require__("da84");
7281
+ var call = __webpack_require__("c65b");
7282
+ var uncurryThis = __webpack_require__("e330");
7283
+ var IS_PURE = __webpack_require__("c430");
7284
+ var DESCRIPTORS = __webpack_require__("83ab");
7285
+ var NATIVE_SYMBOL = __webpack_require__("04f8");
7286
+ var fails = __webpack_require__("d039");
7287
+ var hasOwn = __webpack_require__("1a2d");
7288
+ var isPrototypeOf = __webpack_require__("3a9b");
7289
+ var anObject = __webpack_require__("825a");
7290
+ var toIndexedObject = __webpack_require__("fc6a");
7291
+ var toPropertyKey = __webpack_require__("a04b");
7292
+ var $toString = __webpack_require__("577e");
7293
+ var createPropertyDescriptor = __webpack_require__("5c6c");
7294
+ var nativeObjectCreate = __webpack_require__("7c73");
7295
+ var objectKeys = __webpack_require__("df75");
7296
+ var getOwnPropertyNamesModule = __webpack_require__("241c");
7297
+ var getOwnPropertyNamesExternal = __webpack_require__("057f");
7298
+ var getOwnPropertySymbolsModule = __webpack_require__("7418");
7299
+ var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
7300
+ var definePropertyModule = __webpack_require__("9bf2");
7301
+ var definePropertiesModule = __webpack_require__("37e8");
7302
+ var propertyIsEnumerableModule = __webpack_require__("d1e7");
7303
+ var defineBuiltIn = __webpack_require__("cb2d");
7304
+ var shared = __webpack_require__("5692");
6654
7305
  var sharedKey = __webpack_require__("f772");
6655
7306
  var hiddenKeys = __webpack_require__("d012");
6656
7307
  var uid = __webpack_require__("90e3");
6657
7308
  var wellKnownSymbol = __webpack_require__("b622");
6658
7309
  var wrappedWellKnownSymbolModule = __webpack_require__("e538");
6659
- var defineWellKnownSymbol = __webpack_require__("746f");
7310
+ var defineWellKnownSymbol = __webpack_require__("e065");
6660
7311
  var defineSymbolToPrimitive = __webpack_require__("57b9");
6661
7312
  var setToStringTag = __webpack_require__("d44e");
6662
7313
  var InternalStateModule = __webpack_require__("69f3");
@@ -6889,7 +7540,7 @@ hiddenKeys[HIDDEN] = true;
6889
7540
 
6890
7541
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
6891
7542
  module.exports =
6892
- // eslint-disable-next-line es-x/no-global-this -- safe
7543
+ // eslint-disable-next-line es/no-global-this -- safe
6893
7544
  check(typeof globalThis == 'object' && globalThis) ||
6894
7545
  check(typeof window == 'object' && window) ||
6895
7546
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -6902,16 +7553,48 @@ module.exports =
6902
7553
 
6903
7554
  /***/ }),
6904
7555
 
7556
+ /***/ "dbcc":
7557
+ /***/ (function(module, exports, __webpack_require__) {
7558
+
7559
+ // extracted by mini-css-extract-plugin
7560
+
7561
+ /***/ }),
7562
+
6905
7563
  /***/ "dc4a":
6906
7564
  /***/ (function(module, exports, __webpack_require__) {
6907
7565
 
6908
7566
  var aCallable = __webpack_require__("59ed");
7567
+ var isNullOrUndefined = __webpack_require__("7234");
6909
7568
 
6910
7569
  // `GetMethod` abstract operation
6911
7570
  // https://tc39.es/ecma262/#sec-getmethod
6912
7571
  module.exports = function (V, P) {
6913
7572
  var func = V[P];
6914
- return func == null ? undefined : aCallable(func);
7573
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
7574
+ };
7575
+
7576
+
7577
+ /***/ }),
7578
+
7579
+ /***/ "dcc3":
7580
+ /***/ (function(module, exports, __webpack_require__) {
7581
+
7582
+ "use strict";
7583
+
7584
+ var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
7585
+ var create = __webpack_require__("7c73");
7586
+ var createPropertyDescriptor = __webpack_require__("5c6c");
7587
+ var setToStringTag = __webpack_require__("d44e");
7588
+ var Iterators = __webpack_require__("3f8c");
7589
+
7590
+ var returnThis = function () { return this; };
7591
+
7592
+ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
7593
+ var TO_STRING_TAG = NAME + ' Iterator';
7594
+ IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
7595
+ setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
7596
+ Iterators[TO_STRING_TAG] = returnThis;
7597
+ return IteratorConstructor;
6915
7598
  };
6916
7599
 
6917
7600
 
@@ -6970,7 +7653,7 @@ var enumBugKeys = __webpack_require__("7839");
6970
7653
 
6971
7654
  // `Object.keys` method
6972
7655
  // https://tc39.es/ecma262/#sec-object.keys
6973
- // eslint-disable-next-line es-x/no-object-keys -- safe
7656
+ // eslint-disable-next-line es/no-object-keys -- safe
6974
7657
  module.exports = Object.keys || function keys(O) {
6975
7658
  return internalObjectKeys(O, enumBugKeys);
6976
7659
  };
@@ -7020,8 +7703,8 @@ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototy
7020
7703
  SymbolPrototype.constructor = SymbolWrapper;
7021
7704
 
7022
7705
  var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)';
7023
- var symbolToString = uncurryThis(SymbolPrototype.toString);
7024
- var symbolValueOf = uncurryThis(SymbolPrototype.valueOf);
7706
+ var thisSymbolValue = uncurryThis(SymbolPrototype.valueOf);
7707
+ var symbolDescriptiveString = uncurryThis(SymbolPrototype.toString);
7025
7708
  var regexp = /^Symbol\((.*)\)[^)]+$/;
7026
7709
  var replace = uncurryThis(''.replace);
7027
7710
  var stringSlice = uncurryThis(''.slice);
@@ -7029,9 +7712,9 @@ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototy
7029
7712
  defineProperty(SymbolPrototype, 'description', {
7030
7713
  configurable: true,
7031
7714
  get: function description() {
7032
- var symbol = symbolValueOf(this);
7033
- var string = symbolToString(symbol);
7715
+ var symbol = thisSymbolValue(this);
7034
7716
  if (hasOwn(EmptyStringDescriptionStore, symbol)) return '';
7717
+ var string = symbolDescriptiveString(symbol);
7035
7718
  var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1');
7036
7719
  return desc === '' ? undefined : desc;
7037
7720
  }
@@ -7043,6 +7726,24 @@ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototy
7043
7726
  }
7044
7727
 
7045
7728
 
7729
+ /***/ }),
7730
+
7731
+ /***/ "e065":
7732
+ /***/ (function(module, exports, __webpack_require__) {
7733
+
7734
+ var path = __webpack_require__("428f");
7735
+ var hasOwn = __webpack_require__("1a2d");
7736
+ var wrappedWellKnownSymbolModule = __webpack_require__("e538");
7737
+ var defineProperty = __webpack_require__("9bf2").f;
7738
+
7739
+ module.exports = function (NAME) {
7740
+ var Symbol = path.Symbol || (path.Symbol = {});
7741
+ if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, {
7742
+ value: wrappedWellKnownSymbolModule.f(NAME)
7743
+ });
7744
+ };
7745
+
7746
+
7046
7747
  /***/ }),
7047
7748
 
7048
7749
  /***/ "e163":
@@ -7060,7 +7761,7 @@ var ObjectPrototype = $Object.prototype;
7060
7761
 
7061
7762
  // `Object.getPrototypeOf` method
7062
7763
  // https://tc39.es/ecma262/#sec-object.getprototypeof
7063
- // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
7764
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
7064
7765
  module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
7065
7766
  var object = toObject(O);
7066
7767
  if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
@@ -7081,7 +7782,7 @@ var fails = __webpack_require__("d039");
7081
7782
  module.exports = !fails(function () {
7082
7783
  function F() { /* empty */ }
7083
7784
  F.prototype.constructor = null;
7084
- // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
7785
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
7085
7786
  return Object.getPrototypeOf(new F()) !== F.prototype;
7086
7787
  });
7087
7788
 
@@ -7098,7 +7799,8 @@ var addToUnscopables = __webpack_require__("44d2");
7098
7799
  var Iterators = __webpack_require__("3f8c");
7099
7800
  var InternalStateModule = __webpack_require__("69f3");
7100
7801
  var defineProperty = __webpack_require__("9bf2").f;
7101
- var defineIterator = __webpack_require__("7dd0");
7802
+ var defineIterator = __webpack_require__("c6d2");
7803
+ var createIterResultObject = __webpack_require__("4754");
7102
7804
  var IS_PURE = __webpack_require__("c430");
7103
7805
  var DESCRIPTORS = __webpack_require__("83ab");
7104
7806
 
@@ -7132,11 +7834,11 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
7132
7834
  var index = state.index++;
7133
7835
  if (!target || index >= target.length) {
7134
7836
  state.target = undefined;
7135
- return { value: undefined, done: true };
7837
+ return createIterResultObject(undefined, true);
7136
7838
  }
7137
- if (kind == 'keys') return { value: index, done: false };
7138
- if (kind == 'values') return { value: target[index], done: false };
7139
- return { value: [index, target[index]], done: false };
7839
+ if (kind == 'keys') return createIterResultObject(index, false);
7840
+ if (kind == 'values') return createIterResultObject(target[index], false);
7841
+ return createIterResultObject([index, target[index]], false);
7140
7842
  }, 'values');
7141
7843
 
7142
7844
  // argumentsList[@@iterator] is %ArrayProto_values%
@@ -7163,19 +7865,28 @@ if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
7163
7865
  var NATIVE_BIND = __webpack_require__("40d5");
7164
7866
 
7165
7867
  var FunctionPrototype = Function.prototype;
7166
- var bind = FunctionPrototype.bind;
7167
7868
  var call = FunctionPrototype.call;
7168
- var uncurryThis = NATIVE_BIND && bind.bind(call, call);
7869
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
7169
7870
 
7170
- module.exports = NATIVE_BIND ? function (fn) {
7171
- return fn && uncurryThis(fn);
7172
- } : function (fn) {
7173
- return fn && function () {
7871
+ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
7872
+ return function () {
7174
7873
  return call.apply(fn, arguments);
7175
7874
  };
7176
7875
  };
7177
7876
 
7178
7877
 
7878
+ /***/ }),
7879
+
7880
+ /***/ "e391":
7881
+ /***/ (function(module, exports, __webpack_require__) {
7882
+
7883
+ var toString = __webpack_require__("577e");
7884
+
7885
+ module.exports = function (argument, $default) {
7886
+ return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
7887
+ };
7888
+
7889
+
7179
7890
  /***/ }),
7180
7891
 
7181
7892
  /***/ "e538":
@@ -7186,6 +7897,80 @@ var wellKnownSymbol = __webpack_require__("b622");
7186
7897
  exports.f = wellKnownSymbol;
7187
7898
 
7188
7899
 
7900
+ /***/ }),
7901
+
7902
+ /***/ "e5cb":
7903
+ /***/ (function(module, exports, __webpack_require__) {
7904
+
7905
+ "use strict";
7906
+
7907
+ var getBuiltIn = __webpack_require__("d066");
7908
+ var hasOwn = __webpack_require__("1a2d");
7909
+ var createNonEnumerableProperty = __webpack_require__("9112");
7910
+ var isPrototypeOf = __webpack_require__("3a9b");
7911
+ var setPrototypeOf = __webpack_require__("d2bb");
7912
+ var copyConstructorProperties = __webpack_require__("e893");
7913
+ var proxyAccessor = __webpack_require__("aeb0");
7914
+ var inheritIfRequired = __webpack_require__("7156");
7915
+ var normalizeStringArgument = __webpack_require__("e391");
7916
+ var installErrorCause = __webpack_require__("ab36");
7917
+ var clearErrorStack = __webpack_require__("0d26");
7918
+ var ERROR_STACK_INSTALLABLE = __webpack_require__("b980");
7919
+ var DESCRIPTORS = __webpack_require__("83ab");
7920
+ var IS_PURE = __webpack_require__("c430");
7921
+
7922
+ module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
7923
+ var STACK_TRACE_LIMIT = 'stackTraceLimit';
7924
+ var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
7925
+ var path = FULL_NAME.split('.');
7926
+ var ERROR_NAME = path[path.length - 1];
7927
+ var OriginalError = getBuiltIn.apply(null, path);
7928
+
7929
+ if (!OriginalError) return;
7930
+
7931
+ var OriginalErrorPrototype = OriginalError.prototype;
7932
+
7933
+ // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
7934
+ if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
7935
+
7936
+ if (!FORCED) return OriginalError;
7937
+
7938
+ var BaseError = getBuiltIn('Error');
7939
+
7940
+ var WrappedError = wrapper(function (a, b) {
7941
+ var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
7942
+ var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
7943
+ if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
7944
+ if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2));
7945
+ if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
7946
+ if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
7947
+ return result;
7948
+ });
7949
+
7950
+ WrappedError.prototype = OriginalErrorPrototype;
7951
+
7952
+ if (ERROR_NAME !== 'Error') {
7953
+ if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
7954
+ else copyConstructorProperties(WrappedError, BaseError, { name: true });
7955
+ } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
7956
+ proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
7957
+ proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
7958
+ }
7959
+
7960
+ copyConstructorProperties(WrappedError, OriginalError);
7961
+
7962
+ if (!IS_PURE) try {
7963
+ // Safari 13- bug: WebAssembly errors does not have a proper `.name`
7964
+ if (OriginalErrorPrototype.name !== ERROR_NAME) {
7965
+ createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
7966
+ }
7967
+ OriginalErrorPrototype.constructor = WrappedError;
7968
+ } catch (error) { /* empty */ }
7969
+
7970
+ return WrappedError;
7971
+ };
7972
+
7973
+
7189
7974
  /***/ }),
7190
7975
 
7191
7976
  /***/ "e667":
@@ -7246,7 +8031,7 @@ var classof = __webpack_require__("c6b6");
7246
8031
 
7247
8032
  // `IsArray` abstract operation
7248
8033
  // https://tc39.es/ecma262/#sec-isarray
7249
- // eslint-disable-next-line es-x/no-array-isarray -- safe
8034
+ // eslint-disable-next-line es/no-array-isarray -- safe
7250
8035
  module.exports = Array.isArray || function isArray(argument) {
7251
8036
  return classof(argument) == 'Array';
7252
8037
  };
@@ -7285,7 +8070,7 @@ var isCallable = __webpack_require__("1626");
7285
8070
  var isObject = __webpack_require__("861d");
7286
8071
  var isSymbol = __webpack_require__("d9b5");
7287
8072
  var arraySlice = __webpack_require__("f36a");
7288
- var NATIVE_SYMBOL = __webpack_require__("4930");
8073
+ var NATIVE_SYMBOL = __webpack_require__("04f8");
7289
8074
 
7290
8075
  var $stringify = getBuiltIn('JSON', 'stringify');
7291
8076
  var exec = uncurryThis(/./.exec);
@@ -7372,10 +8157,12 @@ module.exports = function (target, name, descriptor) {
7372
8157
 
7373
8158
  var aCallable = __webpack_require__("59ed");
7374
8159
 
8160
+ var $TypeError = TypeError;
8161
+
7375
8162
  var PromiseCapability = function (C) {
7376
8163
  var resolve, reject;
7377
8164
  this.promise = new C(function ($$resolve, $$reject) {
7378
- if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');
8165
+ if (resolve !== undefined || reject !== undefined) throw $TypeError('Bad Promise constructor');
7379
8166
  resolve = $$resolve;
7380
8167
  reject = $$reject;
7381
8168
  });
@@ -7413,6 +8200,47 @@ $({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
7413
8200
  });
7414
8201
 
7415
8202
 
8203
+ /***/ }),
8204
+
8205
+ /***/ "f354":
8206
+ /***/ (function(module, exports, __webpack_require__) {
8207
+
8208
+ var fails = __webpack_require__("d039");
8209
+ var wellKnownSymbol = __webpack_require__("b622");
8210
+ var IS_PURE = __webpack_require__("c430");
8211
+
8212
+ var ITERATOR = wellKnownSymbol('iterator');
8213
+
8214
+ module.exports = !fails(function () {
8215
+ // eslint-disable-next-line unicorn/relative-url-style -- required for testing
8216
+ var url = new URL('b?a=1&b=2&c=3', 'http://a');
8217
+ var searchParams = url.searchParams;
8218
+ var result = '';
8219
+ url.pathname = 'c%20d';
8220
+ searchParams.forEach(function (value, key) {
8221
+ searchParams['delete']('b');
8222
+ result += key + value;
8223
+ });
8224
+ return (IS_PURE && !url.toJSON)
8225
+ || !searchParams.sort
8226
+ || url.href !== 'http://a/c%20d?a=1&c=3'
8227
+ || searchParams.get('c') !== '3'
8228
+ || String(new URLSearchParams('?a=1')) !== 'a=1'
8229
+ || !searchParams[ITERATOR]
8230
+ // throws in Edge
8231
+ || new URL('https://a@b').username !== 'a'
8232
+ || new URLSearchParams(new URLSearchParams('a=b')).get('a') !== 'b'
8233
+ // not punycoded in Edge
8234
+ || new URL('http://тест').host !== 'xn--e1aybc'
8235
+ // not escaped in Chrome 62-
8236
+ || new URL('http://a#б').hash !== '#%D0%B1'
8237
+ // fails in Chrome 66-
8238
+ || result !== 'a1c3'
8239
+ // throws in Safari
8240
+ || new URL('http://x', undefined).host !== 'x';
8241
+ });
8242
+
8243
+
7416
8244
  /***/ }),
7417
8245
 
7418
8246
  /***/ "f36a":
@@ -7496,82 +8324,856 @@ if (typeof window !== 'undefined') {
7496
8324
  if (!('currentScript' in document)) {
7497
8325
  Object.defineProperty(document, 'currentScript', { get: getCurrentScript })
7498
8326
  }
7499
- }
7500
-
7501
- var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
7502
- if (src) {
7503
- __webpack_require__.p = src[1] // eslint-disable-line
7504
- }
8327
+ }
8328
+
8329
+ var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
8330
+ if (src) {
8331
+ __webpack_require__.p = src[1] // eslint-disable-line
8332
+ }
8333
+ }
8334
+
8335
+ // Indicate to webpack that this file can be concatenated
8336
+ /* harmony default export */ var setPublicPath = (null);
8337
+
8338
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.keys.js
8339
+ var es_object_keys = __webpack_require__("b64b");
8340
+
8341
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
8342
+ var es_object_to_string = __webpack_require__("d3b7");
8343
+
8344
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.constructor.js
8345
+ var esnext_iterator_constructor = __webpack_require__("0643");
8346
+
8347
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.for-each.js
8348
+ var esnext_iterator_for_each = __webpack_require__("4e3e");
8349
+
8350
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.for-each.js
8351
+ var web_dom_collections_for_each = __webpack_require__("159b");
8352
+
8353
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
8354
+ var es_symbol = __webpack_require__("a4d3");
8355
+
8356
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
8357
+ var es_symbol_description = __webpack_require__("e01a");
8358
+
8359
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.filter.js
8360
+ var es_array_filter = __webpack_require__("4de4");
8361
+
8362
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
8363
+ var es_function_name = __webpack_require__("b0c0");
8364
+
8365
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.filter.js
8366
+ var esnext_iterator_filter = __webpack_require__("2382");
8367
+
8368
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"862245c6-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateForm.vue?vue&type=template&id=36ac9f25
8369
+
8370
+
8371
+
8372
+
8373
+
8374
+
8375
+
8376
+ var render = function render() {
8377
+ var _vm = this,
8378
+ _c = _vm._self._c;
8379
+ return _c('div', {
8380
+ staticClass: "pui-form"
8381
+ }, [_vm.modelLoaded ? _c('v-form', {
8382
+ ref: "form",
8383
+ staticClass: "mb-4 pb-4",
8384
+ attrs: {
8385
+ "lazy-validation": ""
8386
+ },
8387
+ model: {
8388
+ value: _vm.valid,
8389
+ callback: function callback($$v) {
8390
+ _vm.valid = $$v;
8391
+ },
8392
+ expression: "valid"
8393
+ }
8394
+ }, [_c('v-layout', {
8395
+ staticClass: "pui-form-layout",
8396
+ attrs: {
8397
+ "wrap": ""
8398
+ }
8399
+ }, [_c('v-flex', {
8400
+ attrs: {
8401
+ "xs12": "",
8402
+ "lg5": ""
8403
+ }
8404
+ }, [_c('pui-field-set', {
8405
+ attrs: {
8406
+ "title": _vm.$t('puidocgentemplate.form.data')
8407
+ }
8408
+ }, [_c('v-layout', {
8409
+ attrs: {
8410
+ "wrap": ""
8411
+ }
8412
+ }, [_c('v-flex', {
8413
+ attrs: {
8414
+ "xs12": ""
8415
+ }
8416
+ }, [_c('pui-text-field', {
8417
+ attrs: {
8418
+ "label": this.$t('puidocgentemplate.name'),
8419
+ "maxlength": "100",
8420
+ "toplabel": "",
8421
+ "required": "",
8422
+ "disabled": _vm.formDisabled
8423
+ },
8424
+ model: {
8425
+ value: _vm.model.name,
8426
+ callback: function callback($$v) {
8427
+ _vm.$set(_vm.model, "name", $$v);
8428
+ },
8429
+ expression: "model.name"
8430
+ }
8431
+ })], 1), _c('v-flex', {
8432
+ attrs: {
8433
+ "xs12": ""
8434
+ }
8435
+ }, [_c('pui-text-area', {
8436
+ attrs: {
8437
+ "label": this.$t('puidocgentemplate.description'),
8438
+ "maxlength": "1000",
8439
+ "toplabel": "",
8440
+ "disabled": _vm.formDisabled
8441
+ },
8442
+ model: {
8443
+ value: _vm.model.description,
8444
+ callback: function callback($$v) {
8445
+ _vm.$set(_vm.model, "description", $$v);
8446
+ },
8447
+ expression: "model.description"
8448
+ }
8449
+ })], 1)], 1)], 1), _c('pui-field-set', {
8450
+ attrs: {
8451
+ "title": _vm.$t('puidocgentemplate.form.viewAndTemplate')
8452
+ }
8453
+ }, [_c('v-layout', {
8454
+ attrs: {
8455
+ "wrap": ""
8456
+ }
8457
+ }, [_c('v-flex', {
8458
+ attrs: {
8459
+ "xs12": "",
8460
+ "md8": "",
8461
+ "xl9": ""
8462
+ }
8463
+ }, [_c('pui-text-field', {
8464
+ attrs: {
8465
+ "label": this.$t('puidocgentemplate.filename'),
8466
+ "toplabel": "",
8467
+ "required": "",
8468
+ "disabled": ""
8469
+ },
8470
+ model: {
8471
+ value: _vm.model.filename,
8472
+ callback: function callback($$v) {
8473
+ _vm.$set(_vm.model, "filename", $$v);
8474
+ },
8475
+ expression: "model.filename"
8476
+ }
8477
+ }), _c('input', {
8478
+ directives: [{
8479
+ name: "show",
8480
+ rawName: "v-show",
8481
+ value: false,
8482
+ expression: "false"
8483
+ }],
8484
+ ref: "document",
8485
+ attrs: {
8486
+ "type": "file",
8487
+ "accept": ".doc, .docx, .odt"
8488
+ },
8489
+ on: {
8490
+ "change": _vm.onFilePicked
8491
+ }
8492
+ })], 1), _c('v-flex', {
8493
+ attrs: {
8494
+ "xs12": "",
8495
+ "md4": "",
8496
+ "xl3": ""
8497
+ }
8498
+ }, [_vm.isCreatingElement ? _c('v-btn', {
8499
+ staticStyle: {
8500
+ "margin-top": "20px"
8501
+ },
8502
+ attrs: {
8503
+ "color": "primary"
8504
+ },
8505
+ on: {
8506
+ "click": _vm.pickFile
8507
+ }
8508
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplate.selectfile')))]) : _vm._e()], 1)], 1), _c('v-layout', {
8509
+ attrs: {
8510
+ "wrap": ""
8511
+ }
8512
+ }, [_c('v-flex', {
8513
+ attrs: {
8514
+ "xs12": ""
8515
+ }
8516
+ }, [_c('pui-select', {
8517
+ attrs: {
8518
+ "id": "mainmodel",
8519
+ "attach": "mainmodel",
8520
+ "label": _vm.$t('puidocgentemplate.mainmodel'),
8521
+ "toplabel": "",
8522
+ "required": "",
8523
+ "clearable": "",
8524
+ "disabled": _vm.formDisabled || !_vm.isCreatingElement,
8525
+ "modelName": "puidocgenmodel",
8526
+ "itemsToSelect": [{
8527
+ model: _vm.model.mainmodel
8528
+ }],
8529
+ "modelFormMapping": {
8530
+ model: 'mainmodel'
8531
+ },
8532
+ "itemValue": "model",
8533
+ "itemText": "label"
8534
+ },
8535
+ model: {
8536
+ value: _vm.model,
8537
+ callback: function callback($$v) {
8538
+ _vm.model = $$v;
8539
+ },
8540
+ expression: "model"
8541
+ }
8542
+ })], 1), _c('v-flex', {
8543
+ attrs: {
8544
+ "xs12": ""
8545
+ }
8546
+ }, [_vm.model.mainmodel ? _c('pui-select', {
8547
+ key: 'columnfilename_' + _vm.columnfilenameKey,
8548
+ attrs: {
8549
+ "id": "columnfilename",
8550
+ "attach": "columnfilename",
8551
+ "label": _vm.$t('puidocgentemplate.columnfilename'),
8552
+ "toplabel": "",
8553
+ "clearable": "",
8554
+ "disabled": _vm.formDisabled,
8555
+ "items": _vm.columnNames,
8556
+ "itemsToSelect": _vm.model.columnfilename,
8557
+ "itemValue": "name",
8558
+ "itemText": "name",
8559
+ "multiple": ""
8560
+ },
8561
+ model: {
8562
+ value: _vm.model.columnfilename,
8563
+ callback: function callback($$v) {
8564
+ _vm.$set(_vm.model, "columnfilename", $$v);
8565
+ },
8566
+ expression: "model.columnfilename"
8567
+ }
8568
+ }) : _vm._e()], 1), _c('v-flex', {
8569
+ attrs: {
8570
+ "xs12": ""
8571
+ }
8572
+ }, [_vm.model.mainmodel && _vm.modelsByEntity.length > 0 ? _c('pui-select', {
8573
+ key: 'models_' + _vm.modelsKey,
8574
+ attrs: {
8575
+ "id": "models",
8576
+ "attach": "models",
8577
+ "label": _vm.$t('puidocgentemplate.models'),
8578
+ "toplabel": "",
8579
+ "clearable": "",
8580
+ "disabled": _vm.formDisabled,
8581
+ "items": _vm.modelsByEntity,
8582
+ "itemsToSelect": _vm.model.models,
8583
+ "itemValue": "name",
8584
+ "itemText": "name",
8585
+ "multiple": ""
8586
+ },
8587
+ model: {
8588
+ value: _vm.model.models,
8589
+ callback: function callback($$v) {
8590
+ _vm.$set(_vm.model, "models", $$v);
8591
+ },
8592
+ expression: "model.models"
8593
+ }
8594
+ }) : _vm._e()], 1)], 1)], 1)], 1), _c('v-flex', {
8595
+ attrs: {
8596
+ "xs12": "",
8597
+ "lg7": ""
8598
+ }
8599
+ }, [_c('pui-docgen-template-mapping', {
8600
+ ref: "puidocgentemplatemapping",
8601
+ attrs: {
8602
+ "templateid": _vm.model.id,
8603
+ "title": _vm.$t('puidocgentemplate.form.mapping'),
8604
+ "subtitle": _vm.$t('puidocgentemplate.help.mapping'),
8605
+ "systemFields": _vm.systemFields,
8606
+ "tableFields": _vm.tableFields,
8607
+ "mappings": _vm.model.mapping,
8608
+ "columns": _vm.columns,
8609
+ "disabled": _vm.formDisabled,
8610
+ "isCreatingElement": _vm.isCreatingElement,
8611
+ "modelName": _vm.modelName
8612
+ }
8613
+ }), _c('pui-field-set', {
8614
+ attrs: {
8615
+ "title": _vm.$t('puidocgentemplate.form.filter')
8616
+ }
8617
+ }, [_c('h4', {
8618
+ staticClass: "puidocgentemplate-subtitle"
8619
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplate.help.filter')))]), _c('pui-filter', {
8620
+ ref: "puidocgentemplatefilter",
8621
+ attrs: {
8622
+ "filterProp": _vm.model.filter,
8623
+ "columns": _vm.columns,
8624
+ "disabled": _vm.formDisabled
8625
+ }
8626
+ })], 1), _c('pui-docgen-template-parameter', {
8627
+ ref: "puidocgentemplateparameter",
8628
+ attrs: {
8629
+ "title": _vm.$t('puidocgentemplate.form.parameters'),
8630
+ "subtitle": _vm.$t('puidocgentemplate.help.parameters'),
8631
+ "columns": _vm.columns,
8632
+ "parameters": _vm.model.parameters,
8633
+ "disabled": _vm.formDisabled
8634
+ }
8635
+ })], 1)], 1), _c('pui-form-footer', [_c('pui-form-footer-btns', {
8636
+ attrs: {
8637
+ "formDisabled": _vm.formDisabled,
8638
+ "saveDisabled": _vm.saving,
8639
+ "saveAndNew": _vm.saveAndNew,
8640
+ "saveAndUpdate": _vm.saveAndUpdate,
8641
+ "save": _vm.save,
8642
+ "back": _vm.back
8643
+ }
8644
+ })], 1)], 1) : _c('pui-form-loading')], 1);
8645
+ };
8646
+ var staticRenderFns = [];
8647
+
8648
+ // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateForm.vue?vue&type=template&id=36ac9f25
8649
+
8650
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
8651
+ var es_array_includes = __webpack_require__("caad");
8652
+
8653
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
8654
+ var es_array_push = __webpack_require__("14d9");
8655
+
8656
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.sort.js
8657
+ var es_array_sort = __webpack_require__("4e82");
8658
+
8659
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.json.stringify.js
8660
+ var es_json_stringify = __webpack_require__("e9c4");
8661
+
8662
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.iterator.js
8663
+ var es_symbol_iterator = __webpack_require__("d28b");
8664
+
8665
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.error.cause.js
8666
+ var es_error_cause = __webpack_require__("d9e2");
8667
+
8668
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.iterator.js
8669
+ var es_array_iterator = __webpack_require__("e260");
8670
+
8671
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
8672
+ var es_string_iterator = __webpack_require__("3ca3");
8673
+
8674
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.iterator.js
8675
+ var web_dom_collections_iterator = __webpack_require__("ddb0");
8676
+
8677
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.from.js
8678
+ var es_array_from = __webpack_require__("a630");
8679
+
8680
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.slice.js
8681
+ var es_array_slice = __webpack_require__("fb6a");
8682
+
8683
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
8684
+ var es_regexp_exec = __webpack_require__("ac1f");
8685
+
8686
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
8687
+ var es_regexp_test = __webpack_require__("00b4");
8688
+
8689
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
8690
+ var es_regexp_to_string = __webpack_require__("25f0");
8691
+
8692
+ // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
8693
+ function _arrayLikeToArray(r, a) {
8694
+ (null == a || a > r.length) && (a = r.length);
8695
+ for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
8696
+ return n;
8697
+ }
8698
+
8699
+ // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
8700
+
8701
+
8702
+
8703
+
8704
+
8705
+
8706
+
8707
+
8708
+
8709
+ function _unsupportedIterableToArray(r, a) {
8710
+ if (r) {
8711
+ if ("string" == typeof r) return _arrayLikeToArray(r, a);
8712
+ var t = {}.toString.call(r).slice(8, -1);
8713
+ return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
8714
+ }
8715
+ }
8716
+
8717
+ // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js
8718
+
8719
+
8720
+
8721
+
8722
+
8723
+
8724
+
8725
+
8726
+
8727
+ function _createForOfIteratorHelper(r, e) {
8728
+ var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
8729
+ if (!t) {
8730
+ if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) {
8731
+ t && (r = t);
8732
+ var _n = 0,
8733
+ F = function F() {};
8734
+ return {
8735
+ s: F,
8736
+ n: function n() {
8737
+ return _n >= r.length ? {
8738
+ done: !0
8739
+ } : {
8740
+ done: !1,
8741
+ value: r[_n++]
8742
+ };
8743
+ },
8744
+ e: function e(r) {
8745
+ throw r;
8746
+ },
8747
+ f: F
8748
+ };
8749
+ }
8750
+ throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
8751
+ }
8752
+ var o,
8753
+ a = !0,
8754
+ u = !1;
8755
+ return {
8756
+ s: function s() {
8757
+ t = t.call(r);
8758
+ },
8759
+ n: function n() {
8760
+ var r = t.next();
8761
+ return a = r.done, r;
8762
+ },
8763
+ e: function e(r) {
8764
+ u = !0, o = r;
8765
+ },
8766
+ f: function f() {
8767
+ try {
8768
+ a || null == t["return"] || t["return"]();
8769
+ } finally {
8770
+ if (u) throw o;
8771
+ }
8772
+ }
8773
+ };
8774
+ }
8775
+
8776
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.get-prototype-of.js
8777
+ var es_object_get_prototype_of = __webpack_require__("3410");
8778
+
8779
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.proto.js
8780
+ var es_object_proto = __webpack_require__("1f68");
8781
+
8782
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.set-prototype-of.js
8783
+ var es_object_set_prototype_of = __webpack_require__("131a");
8784
+
8785
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.promise.js
8786
+ var es_promise = __webpack_require__("e6cf");
8787
+
8788
+ // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
8789
+
8790
+
8791
+
8792
+
8793
+
8794
+
8795
+
8796
+ function _typeof(o) {
8797
+ "@babel/helpers - typeof";
8798
+
8799
+ return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
8800
+ return typeof o;
8801
+ } : function (o) {
8802
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
8803
+ }, _typeof(o);
8804
+ }
8805
+
8806
+ // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js
8807
+
8808
+
8809
+
8810
+
8811
+
8812
+
8813
+
8814
+
8815
+
8816
+
8817
+
8818
+
8819
+
8820
+
8821
+
8822
+ function _regeneratorRuntime() {
8823
+ "use strict";
8824
+
8825
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
8826
+ _regeneratorRuntime = function _regeneratorRuntime() {
8827
+ return e;
8828
+ };
8829
+ var t,
8830
+ e = {},
8831
+ r = Object.prototype,
8832
+ n = r.hasOwnProperty,
8833
+ o = Object.defineProperty || function (t, e, r) {
8834
+ t[e] = r.value;
8835
+ },
8836
+ i = "function" == typeof Symbol ? Symbol : {},
8837
+ a = i.iterator || "@@iterator",
8838
+ c = i.asyncIterator || "@@asyncIterator",
8839
+ u = i.toStringTag || "@@toStringTag";
8840
+ function define(t, e, r) {
8841
+ return Object.defineProperty(t, e, {
8842
+ value: r,
8843
+ enumerable: !0,
8844
+ configurable: !0,
8845
+ writable: !0
8846
+ }), t[e];
8847
+ }
8848
+ try {
8849
+ define({}, "");
8850
+ } catch (t) {
8851
+ define = function define(t, e, r) {
8852
+ return t[e] = r;
8853
+ };
8854
+ }
8855
+ function wrap(t, e, r, n) {
8856
+ var i = e && e.prototype instanceof Generator ? e : Generator,
8857
+ a = Object.create(i.prototype),
8858
+ c = new Context(n || []);
8859
+ return o(a, "_invoke", {
8860
+ value: makeInvokeMethod(t, r, c)
8861
+ }), a;
8862
+ }
8863
+ function tryCatch(t, e, r) {
8864
+ try {
8865
+ return {
8866
+ type: "normal",
8867
+ arg: t.call(e, r)
8868
+ };
8869
+ } catch (t) {
8870
+ return {
8871
+ type: "throw",
8872
+ arg: t
8873
+ };
8874
+ }
8875
+ }
8876
+ e.wrap = wrap;
8877
+ var h = "suspendedStart",
8878
+ l = "suspendedYield",
8879
+ f = "executing",
8880
+ s = "completed",
8881
+ y = {};
8882
+ function Generator() {}
8883
+ function GeneratorFunction() {}
8884
+ function GeneratorFunctionPrototype() {}
8885
+ var p = {};
8886
+ define(p, a, function () {
8887
+ return this;
8888
+ });
8889
+ var d = Object.getPrototypeOf,
8890
+ v = d && d(d(values([])));
8891
+ v && v !== r && n.call(v, a) && (p = v);
8892
+ var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
8893
+ function defineIteratorMethods(t) {
8894
+ ["next", "throw", "return"].forEach(function (e) {
8895
+ define(t, e, function (t) {
8896
+ return this._invoke(e, t);
8897
+ });
8898
+ });
8899
+ }
8900
+ function AsyncIterator(t, e) {
8901
+ function invoke(r, o, i, a) {
8902
+ var c = tryCatch(t[r], t, o);
8903
+ if ("throw" !== c.type) {
8904
+ var u = c.arg,
8905
+ h = u.value;
8906
+ return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
8907
+ invoke("next", t, i, a);
8908
+ }, function (t) {
8909
+ invoke("throw", t, i, a);
8910
+ }) : e.resolve(h).then(function (t) {
8911
+ u.value = t, i(u);
8912
+ }, function (t) {
8913
+ return invoke("throw", t, i, a);
8914
+ });
8915
+ }
8916
+ a(c.arg);
8917
+ }
8918
+ var r;
8919
+ o(this, "_invoke", {
8920
+ value: function value(t, n) {
8921
+ function callInvokeWithMethodAndArg() {
8922
+ return new e(function (e, r) {
8923
+ invoke(t, n, e, r);
8924
+ });
8925
+ }
8926
+ return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
8927
+ }
8928
+ });
8929
+ }
8930
+ function makeInvokeMethod(e, r, n) {
8931
+ var o = h;
8932
+ return function (i, a) {
8933
+ if (o === f) throw Error("Generator is already running");
8934
+ if (o === s) {
8935
+ if ("throw" === i) throw a;
8936
+ return {
8937
+ value: t,
8938
+ done: !0
8939
+ };
8940
+ }
8941
+ for (n.method = i, n.arg = a;;) {
8942
+ var c = n.delegate;
8943
+ if (c) {
8944
+ var u = maybeInvokeDelegate(c, n);
8945
+ if (u) {
8946
+ if (u === y) continue;
8947
+ return u;
8948
+ }
8949
+ }
8950
+ if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
8951
+ if (o === h) throw o = s, n.arg;
8952
+ n.dispatchException(n.arg);
8953
+ } else "return" === n.method && n.abrupt("return", n.arg);
8954
+ o = f;
8955
+ var p = tryCatch(e, r, n);
8956
+ if ("normal" === p.type) {
8957
+ if (o = n.done ? s : l, p.arg === y) continue;
8958
+ return {
8959
+ value: p.arg,
8960
+ done: n.done
8961
+ };
8962
+ }
8963
+ "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
8964
+ }
8965
+ };
8966
+ }
8967
+ function maybeInvokeDelegate(e, r) {
8968
+ var n = r.method,
8969
+ o = e.iterator[n];
8970
+ if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
8971
+ var i = tryCatch(o, e.iterator, r.arg);
8972
+ if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
8973
+ var a = i.arg;
8974
+ return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
8975
+ }
8976
+ function pushTryEntry(t) {
8977
+ var e = {
8978
+ tryLoc: t[0]
8979
+ };
8980
+ 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
8981
+ }
8982
+ function resetTryEntry(t) {
8983
+ var e = t.completion || {};
8984
+ e.type = "normal", delete e.arg, t.completion = e;
8985
+ }
8986
+ function Context(t) {
8987
+ this.tryEntries = [{
8988
+ tryLoc: "root"
8989
+ }], t.forEach(pushTryEntry, this), this.reset(!0);
8990
+ }
8991
+ function values(e) {
8992
+ if (e || "" === e) {
8993
+ var r = e[a];
8994
+ if (r) return r.call(e);
8995
+ if ("function" == typeof e.next) return e;
8996
+ if (!isNaN(e.length)) {
8997
+ var o = -1,
8998
+ i = function next() {
8999
+ for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
9000
+ return next.value = t, next.done = !0, next;
9001
+ };
9002
+ return i.next = i;
9003
+ }
9004
+ }
9005
+ throw new TypeError(_typeof(e) + " is not iterable");
9006
+ }
9007
+ return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
9008
+ value: GeneratorFunctionPrototype,
9009
+ configurable: !0
9010
+ }), o(GeneratorFunctionPrototype, "constructor", {
9011
+ value: GeneratorFunction,
9012
+ configurable: !0
9013
+ }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
9014
+ var e = "function" == typeof t && t.constructor;
9015
+ return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
9016
+ }, e.mark = function (t) {
9017
+ return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
9018
+ }, e.awrap = function (t) {
9019
+ return {
9020
+ __await: t
9021
+ };
9022
+ }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
9023
+ return this;
9024
+ }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
9025
+ void 0 === i && (i = Promise);
9026
+ var a = new AsyncIterator(wrap(t, r, n, o), i);
9027
+ return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
9028
+ return t.done ? t.value : a.next();
9029
+ });
9030
+ }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
9031
+ return this;
9032
+ }), define(g, "toString", function () {
9033
+ return "[object Generator]";
9034
+ }), e.keys = function (t) {
9035
+ var e = Object(t),
9036
+ r = [];
9037
+ for (var n in e) r.push(n);
9038
+ return r.reverse(), function next() {
9039
+ for (; r.length;) {
9040
+ var t = r.pop();
9041
+ if (t in e) return next.value = t, next.done = !1, next;
9042
+ }
9043
+ return next.done = !0, next;
9044
+ };
9045
+ }, e.values = values, Context.prototype = {
9046
+ constructor: Context,
9047
+ reset: function reset(e) {
9048
+ if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
9049
+ },
9050
+ stop: function stop() {
9051
+ this.done = !0;
9052
+ var t = this.tryEntries[0].completion;
9053
+ if ("throw" === t.type) throw t.arg;
9054
+ return this.rval;
9055
+ },
9056
+ dispatchException: function dispatchException(e) {
9057
+ if (this.done) throw e;
9058
+ var r = this;
9059
+ function handle(n, o) {
9060
+ return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
9061
+ }
9062
+ for (var o = this.tryEntries.length - 1; o >= 0; --o) {
9063
+ var i = this.tryEntries[o],
9064
+ a = i.completion;
9065
+ if ("root" === i.tryLoc) return handle("end");
9066
+ if (i.tryLoc <= this.prev) {
9067
+ var c = n.call(i, "catchLoc"),
9068
+ u = n.call(i, "finallyLoc");
9069
+ if (c && u) {
9070
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
9071
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
9072
+ } else if (c) {
9073
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
9074
+ } else {
9075
+ if (!u) throw Error("try statement without catch or finally");
9076
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
9077
+ }
9078
+ }
9079
+ }
9080
+ },
9081
+ abrupt: function abrupt(t, e) {
9082
+ for (var r = this.tryEntries.length - 1; r >= 0; --r) {
9083
+ var o = this.tryEntries[r];
9084
+ if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
9085
+ var i = o;
9086
+ break;
9087
+ }
9088
+ }
9089
+ i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
9090
+ var a = i ? i.completion : {};
9091
+ return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
9092
+ },
9093
+ complete: function complete(t, e) {
9094
+ if ("throw" === t.type) throw t.arg;
9095
+ return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
9096
+ },
9097
+ finish: function finish(t) {
9098
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
9099
+ var r = this.tryEntries[e];
9100
+ if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
9101
+ }
9102
+ },
9103
+ "catch": function _catch(t) {
9104
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
9105
+ var r = this.tryEntries[e];
9106
+ if (r.tryLoc === t) {
9107
+ var n = r.completion;
9108
+ if ("throw" === n.type) {
9109
+ var o = n.arg;
9110
+ resetTryEntry(r);
9111
+ }
9112
+ return o;
9113
+ }
9114
+ }
9115
+ throw Error("illegal catch attempt");
9116
+ },
9117
+ delegateYield: function delegateYield(e, r, n) {
9118
+ return this.delegate = {
9119
+ iterator: values(e),
9120
+ resultName: r,
9121
+ nextLoc: n
9122
+ }, "next" === this.method && (this.arg = t), y;
9123
+ }
9124
+ }, e;
7505
9125
  }
7506
9126
 
7507
- // Indicate to webpack that this file can be concatenated
7508
- /* harmony default export */ var setPublicPath = (null);
7509
-
7510
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.keys.js
7511
- var es_object_keys = __webpack_require__("b64b");
7512
-
7513
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
7514
- var es_object_to_string = __webpack_require__("d3b7");
7515
-
7516
- // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.constructor.js
7517
- var esnext_iterator_constructor = __webpack_require__("0643");
7518
-
7519
- // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.for-each.js
7520
- var esnext_iterator_for_each = __webpack_require__("4e3e");
7521
-
7522
- // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.for-each.js
7523
- var web_dom_collections_for_each = __webpack_require__("159b");
9127
+ // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js
7524
9128
 
7525
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"a78fc394-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateForm.vue?vue&type=template&id=70f175a5
7526
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"pui-form"},[(_vm.modelLoaded)?_c('v-form',{ref:"form",staticClass:"mb-4 pb-4",attrs:{"lazy-validation":""},model:{value:(_vm.valid),callback:function ($$v) {_vm.valid=$$v},expression:"valid"}},[_c('v-layout',{staticClass:"pui-form-layout",attrs:{"wrap":""}},[_c('v-flex',{attrs:{"xs12":"","lg5":""}},[_c('pui-field-set',{attrs:{"title":_vm.$t('puidocgentemplate.form.data')}},[_c('v-layout',{attrs:{"wrap":""}},[_c('v-flex',{attrs:{"xs12":""}},[_c('pui-text-field',{attrs:{"label":this.$t('puidocgentemplate.name'),"maxlength":"100","toplabel":"","required":"","disabled":_vm.formDisabled},model:{value:(_vm.model.name),callback:function ($$v) {_vm.$set(_vm.model, "name", $$v)},expression:"model.name"}})],1),_c('v-flex',{attrs:{"xs12":""}},[_c('pui-text-area',{attrs:{"label":this.$t('puidocgentemplate.description'),"maxlength":"1000","toplabel":"","disabled":_vm.formDisabled},model:{value:(_vm.model.description),callback:function ($$v) {_vm.$set(_vm.model, "description", $$v)},expression:"model.description"}})],1)],1)],1),_c('pui-field-set',{attrs:{"title":_vm.$t('puidocgentemplate.form.viewAndTemplate')}},[_c('v-layout',{attrs:{"wrap":""}},[_c('v-flex',{attrs:{"xs12":"","md8":"","xl9":""}},[_c('pui-text-field',{attrs:{"label":this.$t('puidocgentemplate.filename'),"toplabel":"","required":"","disabled":""},model:{value:(_vm.model.filename),callback:function ($$v) {_vm.$set(_vm.model, "filename", $$v)},expression:"model.filename"}}),_c('input',{directives:[{name:"show",rawName:"v-show",value:(false),expression:"false"}],ref:"document",attrs:{"type":"file","accept":".doc, .docx, .odt"},on:{"change":_vm.onFilePicked}})],1),_c('v-flex',{attrs:{"xs12":"","md4":"","xl3":""}},[(_vm.isCreatingElement)?_c('v-btn',{staticStyle:{"margin-top":"20px"},attrs:{"color":"primary"},on:{"click":_vm.pickFile}},[_vm._v(_vm._s(_vm.$t('puidocgentemplate.selectfile')))]):_vm._e()],1)],1),_c('v-layout',{attrs:{"wrap":""}},[_c('v-flex',{attrs:{"xs12":""}},[_c('pui-select',{attrs:{"id":"mainmodel","attach":"mainmodel","label":_vm.$t('puidocgentemplate.mainmodel'),"toplabel":"","required":"","clearable":"","disabled":_vm.formDisabled || !_vm.isCreatingElement,"modelName":"puidocgenmodel","itemsToSelect":[{ model: _vm.model.mainmodel }],"modelFormMapping":{ model: 'mainmodel' },"itemValue":"model","itemText":"label"},model:{value:(_vm.model),callback:function ($$v) {_vm.model=$$v},expression:"model"}})],1),_c('v-flex',{attrs:{"xs12":""}},[(_vm.model.mainmodel && _vm.columnsNoNull.length > 0)?_c('pui-select',{key:'columnfilename_' + _vm.columnfilenameKey,attrs:{"id":"columnfilename","attach":"columnfilename","label":_vm.$t('puidocgentemplate.columnfilename'),"toplabel":"","clearable":"","disabled":_vm.formDisabled,"items":_vm.columnsNoNull,"itemsToSelect":_vm.model.columnfilename,"itemValue":"name","itemText":"name","multiple":""},model:{value:(_vm.model.columnfilename),callback:function ($$v) {_vm.$set(_vm.model, "columnfilename", $$v)},expression:"model.columnfilename"}}):_vm._e()],1),_c('v-flex',{attrs:{"xs12":""}},[(_vm.model.mainmodel && _vm.modelsByEntity.length > 0)?_c('pui-select',{key:'models_' + _vm.modelsKey,attrs:{"id":"models","attach":"models","label":_vm.$t('puidocgentemplate.models'),"toplabel":"","clearable":"","disabled":_vm.formDisabled,"items":_vm.modelsByEntity,"itemsToSelect":_vm.model.models,"itemValue":"name","itemText":"name","multiple":""},model:{value:(_vm.model.models),callback:function ($$v) {_vm.$set(_vm.model, "models", $$v)},expression:"model.models"}}):_vm._e()],1)],1)],1)],1),_c('v-flex',{attrs:{"xs12":"","lg7":""}},[_c('pui-docgen-template-mapping',{ref:"puidocgentemplatemapping",attrs:{"templateid":_vm.model.id,"title":_vm.$t('puidocgentemplate.form.mapping'),"subtitle":_vm.$t('puidocgentemplate.help.mapping'),"systemFields":_vm.systemFields,"tableFields":_vm.tableFields,"mappings":_vm.model.mapping,"columns":_vm.columns,"disabled":_vm.formDisabled,"isCreatingElement":_vm.isCreatingElement,"modelName":_vm.modelName}}),_c('pui-field-set',{attrs:{"title":_vm.$t('puidocgentemplate.form.filter')}},[_c('h4',{staticClass:"puidocgentemplate-subtitle"},[_vm._v(_vm._s(_vm.$t('puidocgentemplate.help.filter')))]),_c('pui-filter',{ref:"puidocgentemplatefilter",attrs:{"filter":_vm.model.filter,"columns":_vm.columns,"disabled":_vm.formDisabled}})],1),_c('pui-docgen-template-parameter',{ref:"puidocgentemplateparameter",attrs:{"title":_vm.$t('puidocgentemplate.form.parameters'),"subtitle":_vm.$t('puidocgentemplate.help.parameters'),"columns":_vm.columns,"parameters":_vm.model.parameters,"disabled":_vm.formDisabled}})],1)],1),_c('pui-form-footer',[_c('pui-form-footer-btns',{attrs:{"formDisabled":_vm.formDisabled,"saveDisabled":_vm.saving,"saveAndNew":_vm.saveAndNew,"saveAndUpdate":_vm.saveAndUpdate,"save":_vm.save,"back":_vm.back}})],1)],1):_c('pui-form-loading')],1)}
7527
- var staticRenderFns = []
7528
9129
 
9130
+ function asyncGeneratorStep(n, t, e, r, o, a, c) {
9131
+ try {
9132
+ var i = n[a](c),
9133
+ u = i.value;
9134
+ } catch (n) {
9135
+ return void e(n);
9136
+ }
9137
+ i.done ? t(u) : Promise.resolve(u).then(r, o);
9138
+ }
9139
+ function _asyncToGenerator(n) {
9140
+ return function () {
9141
+ var t = this,
9142
+ e = arguments;
9143
+ return new Promise(function (r, o) {
9144
+ var a = n.apply(t, e);
9145
+ function _next(n) {
9146
+ asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
9147
+ }
9148
+ function _throw(n) {
9149
+ asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
9150
+ }
9151
+ _next(void 0);
9152
+ });
9153
+ };
9154
+ }
7529
9155
 
7530
- // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateForm.vue?vue&type=template&id=70f175a5
7531
-
7532
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
7533
- var es_symbol = __webpack_require__("a4d3");
7534
-
7535
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
7536
- var es_symbol_description = __webpack_require__("e01a");
7537
-
7538
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.filter.js
7539
- var es_array_filter = __webpack_require__("4de4");
9156
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
9157
+ var es_array_concat = __webpack_require__("99af");
7540
9158
 
7541
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
7542
- var es_array_includes = __webpack_require__("caad");
9159
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.join.js
9160
+ var es_array_join = __webpack_require__("a15b");
7543
9161
 
7544
9162
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.map.js
7545
9163
  var es_array_map = __webpack_require__("d81d");
7546
9164
 
7547
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
7548
- var es_array_push = __webpack_require__("14d9");
7549
-
7550
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.sort.js
7551
- var es_array_sort = __webpack_require__("4e82");
7552
-
7553
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
7554
- var es_function_name = __webpack_require__("b0c0");
7555
-
7556
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.json.stringify.js
7557
- var es_json_stringify = __webpack_require__("e9c4");
7558
-
7559
9165
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
7560
9166
  var es_string_includes = __webpack_require__("2532");
7561
9167
 
7562
- // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.filter.js
7563
- var esnext_iterator_filter = __webpack_require__("2382");
7564
-
7565
9168
  // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.map.js
7566
9169
  var esnext_iterator_map = __webpack_require__("a573");
7567
9170
 
7568
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
7569
- var es_array_concat = __webpack_require__("99af");
9171
+ // CONCATENATED MODULE: ../pui9-mixins/PuiFormMethodsMixin.js
9172
+
9173
+
9174
+
7570
9175
 
7571
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.join.js
7572
- var es_array_join = __webpack_require__("a15b");
7573
9176
 
7574
- // CONCATENATED MODULE: ../pui9-mixins/PuiFormMethodsMixin.js
7575
9177
 
7576
9178
 
7577
9179
 
@@ -7660,6 +9262,9 @@ var es_array_join = __webpack_require__("a15b");
7660
9262
  },
7661
9263
  onPuiModelsLoadedAndSaved: function onPuiModelsLoadedAndSaved() {
7662
9264
  return this.$store.state.modelsLoadedAndSaved;
9265
+ },
9266
+ containerHeaderVisibility: function containerHeaderVisibility() {
9267
+ return this.$store.getters.getContainerHeaderVisibility;
7663
9268
  }
7664
9269
  },
7665
9270
  watch: {
@@ -7673,6 +9278,9 @@ var es_array_join = __webpack_require__("a15b");
7673
9278
  this.onReady();
7674
9279
  this.subscribeToEvents();
7675
9280
  }
9281
+ },
9282
+ containerHeaderVisibility: function containerHeaderVisibility(show) {
9283
+ this.onShowContainerHeader(show);
7676
9284
  }
7677
9285
  },
7678
9286
  created: function created() {
@@ -7706,14 +9314,15 @@ var es_array_join = __webpack_require__("a15b");
7706
9314
  this.$puiEvents.$off("onPui-action-before-running-".concat(this.modelName));
7707
9315
  this.$puiEvents.$off("onPui-action-running-showFormLoading-".concat(this.modelName));
7708
9316
  this.$puiEvents.$off("onPui-action-running-ended-".concat(this.modelName));
7709
- this.$puiEvents.$off('onPuiShowContainerHeader', this.onShowContainerHeader);
7710
9317
  this.$puiEvents.$off('onPui-form-changedModelLanguage');
9318
+ this.$puiEvents.$off('onPui-form-goToElement');
7711
9319
  this.$puiEvents.$off("onPuiGotoTableDetail-".concat(this.modelName));
7712
9320
  this.$puiEvents.$emit("onPuiFormDestroyed-".concat(this.modelName));
7713
9321
  this.$puiEvents.$emit('onPui-form-hideModelLanguage', this.parentModelName);
7714
9322
  if (!this.isModalDialog) {
7715
9323
  this.$puiEvents.$emit('onPui-form-hideModelActions');
7716
9324
  }
9325
+ this.$puiEvents.$emit('onPui-form-hidePrevNextBtns');
7717
9326
  window.removeEventListener('keydown', this.keydownPressed);
7718
9327
  },
7719
9328
  methods: {
@@ -7920,11 +9529,15 @@ var es_array_join = __webpack_require__("a15b");
7920
9529
  if (showModelActions) {
7921
9530
  self.$puiEvents.$emit('onPui-form-showModelActions', showModelActions);
7922
9531
  }
9532
+ self.$puiEvents.$emit('onPui-form-showPrevNextBtns');
7923
9533
  self.$puiEvents.$emit('onPui-form-showModelLanguage', showModelLanguage);
7924
9534
  }, 10);
7925
9535
  this.$puiEvents.$on('onPui-form-changedModelLanguage', function () {
7926
9536
  _this5.getData(param);
7927
9537
  });
9538
+ this.$puiEvents.$on('onPui-form-goToElement', function (type) {
9539
+ _this5.goToElement(type);
9540
+ });
7928
9541
  },
7929
9542
  back: function back() {
7930
9543
  this.$store.dispatch('puiRouterGoBack', this.$router);
@@ -7958,11 +9571,13 @@ var es_array_join = __webpack_require__("a15b");
7958
9571
  },
7959
9572
  update: function update(shouldStayInPage, url) {
7960
9573
  var _this6 = this;
7961
- var updateHeaders = null;
9574
+ var updateHeaders = {};
7962
9575
  if (this.dtohash) {
7963
- updateHeaders = {
7964
- dtohash: this.dtohash
7965
- };
9576
+ updateHeaders.dtohash = this.dtohash;
9577
+ }
9578
+ var langStore = this.$store.getters.getRequestLang;
9579
+ if (langStore !== null) {
9580
+ updateHeaders.lang = langStore;
7966
9581
  }
7967
9582
  this.$puiRequests.putRequest(url, this.model, function (response) {
7968
9583
  _this6.saving = false;
@@ -8099,7 +9714,6 @@ var es_array_join = __webpack_require__("a15b");
8099
9714
  this.$puiEvents.$on("onPui-action-running-ended-".concat(this.modelName), function () {
8100
9715
  _this8.onReady();
8101
9716
  });
8102
- this.$puiEvents.$on('onPuiShowContainerHeader', this.onShowContainerHeader);
8103
9717
  },
8104
9718
  onError: function onError(error) {
8105
9719
  this.$store.dispatch('puiRequestShowServerError', {
@@ -8133,15 +9747,373 @@ var es_array_join = __webpack_require__("a15b");
8133
9747
  this.internal.afterUpdateGoToCreate = false;
8134
9748
  this.internal.afterInsertGoToUpdate = false;
8135
9749
  this.internal.afterInsertGoToCreate = false;
9750
+ },
9751
+ goToElement: function goToElement(type) {
9752
+ var _this10 = this;
9753
+ return _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
9754
+ var objPk, pkColumns, calcPk;
9755
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
9756
+ while (1) switch (_context.prev = _context.next) {
9757
+ case 0:
9758
+ objPk = {};
9759
+ _this10.modelDependency.columns.filter(function (c) {
9760
+ return c.isPk;
9761
+ }).map(function (c) {
9762
+ return objPk[c.name] = _this10.model[c.name];
9763
+ });
9764
+ pkColumns = _this10.modelDependency.columns.filter(function (c) {
9765
+ return c.isPk;
9766
+ }).map(function (c) {
9767
+ return c.name;
9768
+ });
9769
+ _context.next = 5;
9770
+ return _this10.getPkFromList(JSON.stringify(objPk), pkColumns, type);
9771
+ case 5:
9772
+ calcPk = _context.sent;
9773
+ if (calcPk) {
9774
+ _this10.goToElementFromPk(calcPk);
9775
+ } else {
9776
+ _this10.$puiNotify.warning(_this10.$t('form.prevnextbtns_nomorerecords'));
9777
+ }
9778
+ case 7:
9779
+ case "end":
9780
+ return _context.stop();
9781
+ }
9782
+ }, _callee);
9783
+ }))();
9784
+ },
9785
+ getPkFromList: function getPkFromList(currentPk, pkColumns, type, page) {
9786
+ var _this11 = this;
9787
+ return _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
9788
+ var config, _yield$_this11$$puiRe, responseData, dataLength, index, item, objPk, i, _dataLength, _item, _objPk, _index;
9789
+ return _regeneratorRuntime().wrap(function _callee2$(_context2) {
9790
+ while (1) switch (_context2.prev = _context2.next) {
9791
+ case 0:
9792
+ if (!(page === 0)) {
9793
+ _context2.next = 2;
9794
+ break;
9795
+ }
9796
+ return _context2.abrupt("return");
9797
+ case 2:
9798
+ config = localStorage.getItem("pui9_datatable_".concat(_this11.modelDependency.name));
9799
+ if (config) {
9800
+ _context2.next = 5;
9801
+ break;
9802
+ }
9803
+ return _context2.abrupt("return");
9804
+ case 5:
9805
+ config = JSON.parse(config);
9806
+ if (page != undefined) {
9807
+ config.page = page;
9808
+ localStorage.setItem("pui9_datatable_".concat(_this11.modelDependency.name), JSON.stringify(config));
9809
+ }
9810
+ _context2.next = 9;
9811
+ return _this11.$puiRequests.postRequest('/puisearch', config);
9812
+ case 9:
9813
+ _yield$_this11$$puiRe = _context2.sent;
9814
+ responseData = _yield$_this11$$puiRe.data;
9815
+ if (!(!responseData || !responseData.data || responseData.data.length == 0)) {
9816
+ _context2.next = 14;
9817
+ break;
9818
+ }
9819
+ if (page != undefined) {
9820
+ config.page = page - 1;
9821
+ localStorage.setItem("pui9_datatable_".concat(_this11.modelDependency.name), JSON.stringify(config));
9822
+ }
9823
+ return _context2.abrupt("return");
9824
+ case 14:
9825
+ if (!page) {
9826
+ _context2.next = 20;
9827
+ break;
9828
+ }
9829
+ dataLength = responseData.data.length;
9830
+ index = type === 'PREV' ? dataLength - 1 : 0;
9831
+ item = responseData.data[index];
9832
+ objPk = _this11.getObjectPk(pkColumns, item);
9833
+ return _context2.abrupt("return", JSON.stringify(objPk));
9834
+ case 20:
9835
+ i = 0, _dataLength = responseData.data.length;
9836
+ case 21:
9837
+ if (!(i < _dataLength)) {
9838
+ _context2.next = 40;
9839
+ break;
9840
+ }
9841
+ _item = responseData.data[i];
9842
+ _objPk = _this11.getObjectPk(pkColumns, _item);
9843
+ if (!(currentPk == JSON.stringify(_objPk))) {
9844
+ _context2.next = 37;
9845
+ break;
9846
+ }
9847
+ if (!(i == 0 && type === 'PREV')) {
9848
+ _context2.next = 29;
9849
+ break;
9850
+ }
9851
+ return _context2.abrupt("return", _this11.getPkFromList(currentPk, pkColumns, type, config.page - 1));
9852
+ case 29:
9853
+ if (!(i == _dataLength - 1 && type === 'NEXT')) {
9854
+ _context2.next = 33;
9855
+ break;
9856
+ }
9857
+ return _context2.abrupt("return", _this11.getPkFromList(currentPk, pkColumns, type, config.page + 1));
9858
+ case 33:
9859
+ _index = type === 'PREV' ? i - 1 : i + 1;
9860
+ _item = responseData.data[_index];
9861
+ _objPk = _this11.getObjectPk(pkColumns, _item);
9862
+ return _context2.abrupt("return", JSON.stringify(_objPk));
9863
+ case 37:
9864
+ i++;
9865
+ _context2.next = 21;
9866
+ break;
9867
+ case 40:
9868
+ return _context2.abrupt("return", null);
9869
+ case 41:
9870
+ case "end":
9871
+ return _context2.stop();
9872
+ }
9873
+ }, _callee2);
9874
+ }))();
9875
+ },
9876
+ getObjectPk: function getObjectPk(pkColumns, item) {
9877
+ var objPk = {};
9878
+ var _iterator = _createForOfIteratorHelper(pkColumns),
9879
+ _step;
9880
+ try {
9881
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
9882
+ var pkColumn = _step.value;
9883
+ objPk[pkColumn] = item[pkColumn];
9884
+ }
9885
+ } catch (err) {
9886
+ _iterator.e(err);
9887
+ } finally {
9888
+ _iterator.f();
9889
+ }
9890
+ return objPk;
9891
+ },
9892
+ goToElementFromPk: function goToElementFromPk(objPk) {
9893
+ var pk = this.$puiUtils.utf8ToB64(objPk);
9894
+ var params = {
9895
+ router: this.$router,
9896
+ url: "".concat(this.getRouteWithOutMyModel(), "/").concat(this.modelDependency.name, "/update/").concat(pk, "/"),
9897
+ params: null,
9898
+ query: {},
9899
+ replace: true
9900
+ };
9901
+ this.$store.dispatch('puiRouterGoToUrl', params);
8136
9902
  }
8137
9903
  }
8138
9904
  });
8139
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"a78fc394-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateMapping.vue?vue&type=template&id=0f155faa
8140
- var PuiDocgenTemplateMappingvue_type_template_id_0f155faa_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('pui-field-set',{attrs:{"title":_vm.title}},[_c('h4',{staticClass:"puidocgentemplate-subtitle"},[_vm._v(_vm._s(_vm.subtitle))]),_c('div',{staticClass:"d-flex justify-space-around pa-4"},[_c('v-btn',{attrs:{"color":"primary"},on:{"click":function($event){return _vm.doAutoMapping()}}},[_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.mappingAuto')))]),(!_vm.isCreatingElement)?_c('v-btn',{staticClass:"px-2",attrs:{"color":"primary"},on:{"click":function($event){return _vm.reloadDocGenTemplateConfig()}}},[_c('v-icon',{staticClass:"px-1"},[_vm._v("far fa-file-search")]),_c('v-icon',{staticClass:"px-1"},[_vm._v("fas fa-sync-alt")]),_c('v-icon',{staticClass:"px-1"},[_vm._v("fal fa-table")])],1):_vm._e()],1),(_vm.mappings.length > 0)?_c('table',{staticClass:"puidocgentemplate-table"},[_c('thead',[_c('tr',[_c('th',{staticClass:"puidocgentemplate-table-column"},[_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.tag')))]),_c('th',{staticClass:"puidocgentemplate-table-column"},[_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.origin.label')))]),_c('th',{staticClass:"puidocgentemplate-table-column"},[_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.field')))])]),_c('tr',[_c('th',[_c('hr')]),_c('th',[_c('hr')]),_c('th',[_c('hr')])])]),_c('tbody',_vm._l((_vm.mappings),function(item){return _c('tr',{key:item.tag},[_c('td',{staticClass:"puidocgentemplate-table-column"},[_c('label',[_vm._v(_vm._s(item.tag))])]),_c('td',[_c('v-autocomplete',{staticClass:"pl-2 pr-2",attrs:{"append-icon":"fa fa-angle-down","solo":"","flat":"","hide-details":"","rules":_vm.getRules(),"items":_vm.originItems,"item-value":"id","item-text":"name","disabled":_vm.disabled},model:{value:(item.origin),callback:function ($$v) {_vm.$set(item, "origin", $$v)},expression:"item.origin"}})],1),_c('td',[(item.origin === 'V')?_c('v-autocomplete',{staticClass:"pr-2",attrs:{"append-icon":"fa fa-angle-down","solo":"","flat":"","hide-details":"","rules":_vm.getRules(),"items":_vm.columns,"item-value":"name","item-text":"title","disabled":_vm.disabled},scopedSlots:_vm._u([{key:"append-outer",fn:function(){return [_c('v-icon',{staticStyle:{"top":"-10px","left":"-5px"},attrs:{"size":"6","color":"red"}},[_vm._v("fas fa-asterisk")])]},proxy:true}],null,true),model:{value:(item.field),callback:function ($$v) {_vm.$set(item, "field", $$v)},expression:"item.field"}}):(item.origin === 'S')?_c('v-autocomplete',{staticClass:"pr-2",attrs:{"append-icon":"fa fa-angle-down","solo":"","flat":"","hide-details":"","rules":_vm.getRules(),"items":_vm.systemFields,"disabled":_vm.disabled},scopedSlots:_vm._u([{key:"append-outer",fn:function(){return [_c('v-icon',{staticStyle:{"top":"-10px","left":"-5px"},attrs:{"size":"6","color":"red"}},[_vm._v("fas fa-asterisk")])]},proxy:true}],null,true),model:{value:(item.field),callback:function ($$v) {_vm.$set(item, "field", $$v)},expression:"item.field"}}):(item.origin === 'T')?_c('v-autocomplete',{staticClass:"pr-2",attrs:{"append-icon":"fa fa-angle-down","solo":"","flat":"","hide-details":"","rules":_vm.getRules(),"items":_vm.tableFields,"item-value":"id","item-text":"label","disabled":_vm.disabled},scopedSlots:_vm._u([{key:"append-outer",fn:function(){return [_c('v-icon',{staticStyle:{"top":"-10px","left":"-5px"},attrs:{"size":"6","color":"red"}},[_vm._v("fas fa-asterisk")])]},proxy:true}],null,true),model:{value:(item.field),callback:function ($$v) {_vm.$set(item, "field", $$v)},expression:"item.field"}}):_c('v-text-field',{staticClass:"pr-2 inputFilterText",attrs:{"type":"text","solo":"","flat":"","outlined":"","hide-details":"","rules":_vm.getRules(),"disabled":_vm.disabled},scopedSlots:_vm._u([{key:"append-outer",fn:function(){return [_c('v-icon',{staticStyle:{"top":"-10px","left":"-5px"},attrs:{"size":"6","color":"red"}},[_vm._v("fas fa-asterisk")])]},proxy:true}],null,true),model:{value:(item.field),callback:function ($$v) {_vm.$set(item, "field", $$v)},expression:"item.field"}})],1)])}),0)]):_vm._e()])}
8141
- var PuiDocgenTemplateMappingvue_type_template_id_0f155faa_staticRenderFns = []
8142
-
9905
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"862245c6-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateMapping.vue?vue&type=template&id=c123ece2
9906
+ var PuiDocgenTemplateMappingvue_type_template_id_c123ece2_render = function render() {
9907
+ var _vm = this,
9908
+ _c = _vm._self._c;
9909
+ return _c('pui-field-set', {
9910
+ attrs: {
9911
+ "title": _vm.title
9912
+ }
9913
+ }, [_c('h4', {
9914
+ staticClass: "puidocgentemplate-subtitle"
9915
+ }, [_vm._v(_vm._s(_vm.subtitle))]), _c('div', {
9916
+ staticClass: "d-flex justify-space-around pa-4"
9917
+ }, [_c('v-btn', {
9918
+ attrs: {
9919
+ "color": "primary"
9920
+ },
9921
+ on: {
9922
+ "click": function click($event) {
9923
+ return _vm.doAutoMapping();
9924
+ }
9925
+ }
9926
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.mappingAuto')))]), !_vm.isCreatingElement ? _c('v-btn', {
9927
+ staticClass: "px-2",
9928
+ attrs: {
9929
+ "color": "primary"
9930
+ },
9931
+ on: {
9932
+ "click": function click($event) {
9933
+ return _vm.reloadDocGenTemplateConfig();
9934
+ }
9935
+ }
9936
+ }, [_c('v-icon', {
9937
+ staticClass: "px-1"
9938
+ }, [_vm._v("fas fa-sync-alt")])], 1) : _vm._e()], 1), _vm.mappings.length > 0 ? _c('table', {
9939
+ staticClass: "puidocgentemplate-table"
9940
+ }, [_c('thead', [_c('tr', [_c('th', {
9941
+ staticClass: "puidocgentemplate-table-column"
9942
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.tag')))]), _c('th', {
9943
+ staticClass: "puidocgentemplate-table-column"
9944
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.origin.label')))]), _c('th', {
9945
+ staticClass: "puidocgentemplate-table-column"
9946
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplatemapping.field')))])]), _c('tr', [_c('th', [_c('hr')]), _c('th', [_c('hr')]), _c('th', [_c('hr')])])]), _c('tbody', _vm._l(_vm.mappings, function (item) {
9947
+ return _c('tr', {
9948
+ key: item.tag
9949
+ }, [_c('td', {
9950
+ staticClass: "puidocgentemplate-table-column"
9951
+ }, [_c('label', [_vm._v(_vm._s(item.tag))])]), _c('td', [_c('v-autocomplete', {
9952
+ staticClass: "pl-2 pr-2",
9953
+ attrs: {
9954
+ "append-icon": "fa fa-angle-down",
9955
+ "solo": "",
9956
+ "flat": "",
9957
+ "hide-details": "",
9958
+ "rules": _vm.getRules(),
9959
+ "items": _vm.originItems,
9960
+ "item-value": "id",
9961
+ "item-text": "name",
9962
+ "disabled": _vm.disabled
9963
+ },
9964
+ model: {
9965
+ value: item.origin,
9966
+ callback: function callback($$v) {
9967
+ _vm.$set(item, "origin", $$v);
9968
+ },
9969
+ expression: "item.origin"
9970
+ }
9971
+ })], 1), _c('td', [item.origin === 'V' ? _c('v-autocomplete', {
9972
+ staticClass: "pr-2",
9973
+ attrs: {
9974
+ "append-icon": "fa fa-angle-down",
9975
+ "solo": "",
9976
+ "flat": "",
9977
+ "hide-details": "",
9978
+ "rules": _vm.getRules(),
9979
+ "items": _vm.columns,
9980
+ "item-value": "name",
9981
+ "item-text": "title",
9982
+ "disabled": _vm.disabled
9983
+ },
9984
+ scopedSlots: _vm._u([{
9985
+ key: "append-outer",
9986
+ fn: function fn() {
9987
+ return [_c('v-icon', {
9988
+ staticStyle: {
9989
+ "top": "-10px",
9990
+ "left": "-5px"
9991
+ },
9992
+ attrs: {
9993
+ "size": "6",
9994
+ "color": "red"
9995
+ }
9996
+ }, [_vm._v("fas fa-asterisk")])];
9997
+ },
9998
+ proxy: true
9999
+ }], null, true),
10000
+ model: {
10001
+ value: item.field,
10002
+ callback: function callback($$v) {
10003
+ _vm.$set(item, "field", $$v);
10004
+ },
10005
+ expression: "item.field"
10006
+ }
10007
+ }) : item.origin === 'S' ? _c('v-autocomplete', {
10008
+ staticClass: "pr-2",
10009
+ attrs: {
10010
+ "append-icon": "fa fa-angle-down",
10011
+ "solo": "",
10012
+ "flat": "",
10013
+ "hide-details": "",
10014
+ "rules": _vm.getRules(),
10015
+ "items": _vm.systemFields,
10016
+ "disabled": _vm.disabled
10017
+ },
10018
+ scopedSlots: _vm._u([{
10019
+ key: "append-outer",
10020
+ fn: function fn() {
10021
+ return [_c('v-icon', {
10022
+ staticStyle: {
10023
+ "top": "-10px",
10024
+ "left": "-5px"
10025
+ },
10026
+ attrs: {
10027
+ "size": "6",
10028
+ "color": "red"
10029
+ }
10030
+ }, [_vm._v("fas fa-asterisk")])];
10031
+ },
10032
+ proxy: true
10033
+ }], null, true),
10034
+ model: {
10035
+ value: item.field,
10036
+ callback: function callback($$v) {
10037
+ _vm.$set(item, "field", $$v);
10038
+ },
10039
+ expression: "item.field"
10040
+ }
10041
+ }) : item.origin === 'T' ? _c('v-autocomplete', {
10042
+ staticClass: "pr-2",
10043
+ attrs: {
10044
+ "append-icon": "fa fa-angle-down",
10045
+ "solo": "",
10046
+ "flat": "",
10047
+ "hide-details": "",
10048
+ "rules": _vm.getRules(),
10049
+ "items": _vm.tableFields,
10050
+ "item-value": "id",
10051
+ "item-text": "label",
10052
+ "disabled": _vm.disabled
10053
+ },
10054
+ scopedSlots: _vm._u([{
10055
+ key: "append-outer",
10056
+ fn: function fn() {
10057
+ return [_c('v-icon', {
10058
+ staticStyle: {
10059
+ "top": "-10px",
10060
+ "left": "-5px"
10061
+ },
10062
+ attrs: {
10063
+ "size": "6",
10064
+ "color": "red"
10065
+ }
10066
+ }, [_vm._v("fas fa-asterisk")])];
10067
+ },
10068
+ proxy: true
10069
+ }], null, true),
10070
+ model: {
10071
+ value: item.field,
10072
+ callback: function callback($$v) {
10073
+ _vm.$set(item, "field", $$v);
10074
+ },
10075
+ expression: "item.field"
10076
+ }
10077
+ }) : _c('v-text-field', {
10078
+ staticClass: "pr-2 inputFilterText",
10079
+ attrs: {
10080
+ "type": "text",
10081
+ "solo": "",
10082
+ "flat": "",
10083
+ "outlined": "",
10084
+ "hide-details": "",
10085
+ "rules": _vm.getRules(),
10086
+ "disabled": _vm.disabled
10087
+ },
10088
+ scopedSlots: _vm._u([{
10089
+ key: "append-outer",
10090
+ fn: function fn() {
10091
+ return [_c('v-icon', {
10092
+ staticStyle: {
10093
+ "top": "-10px",
10094
+ "left": "-5px"
10095
+ },
10096
+ attrs: {
10097
+ "size": "6",
10098
+ "color": "red"
10099
+ }
10100
+ }, [_vm._v("fas fa-asterisk")])];
10101
+ },
10102
+ proxy: true
10103
+ }], null, true),
10104
+ model: {
10105
+ value: item.field,
10106
+ callback: function callback($$v) {
10107
+ _vm.$set(item, "field", $$v);
10108
+ },
10109
+ expression: "item.field"
10110
+ }
10111
+ })], 1)]);
10112
+ }), 0)]) : _vm._e()]);
10113
+ };
10114
+ var PuiDocgenTemplateMappingvue_type_template_id_c123ece2_staticRenderFns = [];
8143
10115
 
8144
- // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateMapping.vue?vue&type=template&id=0f155faa
10116
+ // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateMapping.vue?vue&type=template&id=c123ece2
8145
10117
 
8146
10118
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find-index.js
8147
10119
  var es_array_find_index = __webpack_require__("c740");
@@ -8162,134 +10134,6 @@ var es_number_constructor = __webpack_require__("a9e3");
8162
10134
 
8163
10135
 
8164
10136
 
8165
- //
8166
- //
8167
- //
8168
- //
8169
- //
8170
- //
8171
- //
8172
- //
8173
- //
8174
- //
8175
- //
8176
- //
8177
- //
8178
- //
8179
- //
8180
- //
8181
- //
8182
- //
8183
- //
8184
- //
8185
- //
8186
- //
8187
- //
8188
- //
8189
- //
8190
- //
8191
- //
8192
- //
8193
- //
8194
- //
8195
- //
8196
- //
8197
- //
8198
- //
8199
- //
8200
- //
8201
- //
8202
- //
8203
- //
8204
- //
8205
- //
8206
- //
8207
- //
8208
- //
8209
- //
8210
- //
8211
- //
8212
- //
8213
- //
8214
- //
8215
- //
8216
- //
8217
- //
8218
- //
8219
- //
8220
- //
8221
- //
8222
- //
8223
- //
8224
- //
8225
- //
8226
- //
8227
- //
8228
- //
8229
- //
8230
- //
8231
- //
8232
- //
8233
- //
8234
- //
8235
- //
8236
- //
8237
- //
8238
- //
8239
- //
8240
- //
8241
- //
8242
- //
8243
- //
8244
- //
8245
- //
8246
- //
8247
- //
8248
- //
8249
- //
8250
- //
8251
- //
8252
- //
8253
- //
8254
- //
8255
- //
8256
- //
8257
- //
8258
- //
8259
- //
8260
- //
8261
- //
8262
- //
8263
- //
8264
- //
8265
- //
8266
- //
8267
- //
8268
- //
8269
- //
8270
- //
8271
- //
8272
- //
8273
- //
8274
- //
8275
- //
8276
- //
8277
- //
8278
- //
8279
- //
8280
- //
8281
- //
8282
- //
8283
- //
8284
- //
8285
- //
8286
- //
8287
- //
8288
- //
8289
- //
8290
- //
8291
- //
8292
-
8293
10137
  /* harmony default export */ var PuiDocgenTemplateMappingvue_type_script_lang_js = ({
8294
10138
  name: 'PuiDocgenTemplateMapping',
8295
10139
  data: function data() {
@@ -8379,7 +10223,9 @@ var es_number_constructor = __webpack_require__("a9e3");
8379
10223
  refreshMapping: function refreshMapping() {
8380
10224
  var _this = this;
8381
10225
  var modelDependency = this.$store.getters.getModelByName(this.modelName);
8382
- this.$puiRequests.getRequest(modelDependency.url.getTemplateMappingFromId, null, function (response) {
10226
+ this.$puiRequests.getRequest(modelDependency.url.getTemplateMappingFromId, {
10227
+ id: this.templateid
10228
+ }, function (response) {
8383
10229
  if (response && response.data) {
8384
10230
  var newMappings = response.data;
8385
10231
  // remove not existent mappings
@@ -8399,8 +10245,6 @@ var es_number_constructor = __webpack_require__("a9e3");
8399
10245
  }
8400
10246
  }, function () {
8401
10247
  _this.$puiNotify.error(_this.$puiI18n.t('puiaction.notifyError'));
8402
- }, null, {
8403
- id: this.templateid
8404
10248
  });
8405
10249
  }
8406
10250
  }
@@ -8515,8 +10359,8 @@ function normalizeComponent(
8515
10359
 
8516
10360
  var component = normalizeComponent(
8517
10361
  puidocgen_PuiDocgenTemplateMappingvue_type_script_lang_js,
8518
- PuiDocgenTemplateMappingvue_type_template_id_0f155faa_render,
8519
- PuiDocgenTemplateMappingvue_type_template_id_0f155faa_staticRenderFns,
10362
+ PuiDocgenTemplateMappingvue_type_template_id_c123ece2_render,
10363
+ PuiDocgenTemplateMappingvue_type_template_id_c123ece2_staticRenderFns,
8520
10364
  false,
8521
10365
  null,
8522
10366
  null,
@@ -8525,12 +10369,93 @@ var component = normalizeComponent(
8525
10369
  )
8526
10370
 
8527
10371
  /* harmony default export */ var PuiDocgenTemplateMapping = (component.exports);
8528
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"a78fc394-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateParameter.vue?vue&type=template&id=1416eb37
8529
- var PuiDocgenTemplateParametervue_type_template_id_1416eb37_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('pui-field-set',{attrs:{"title":_vm.title}},[_c('h4',{staticClass:"puidocgentemplate-subtitle"},[_vm._v(_vm._s(_vm.subtitle))]),(Array.isArray(_vm.parameters) && _vm.columns.length > 0)?_c('table',{staticClass:"puidocgentemplate-table"},[_c('thead',[_c('tr',[_c('th',{staticClass:"puidocgentemplate-table-column"},[_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.column')))]),_c('th',{staticClass:"puidocgentemplate-table-column"},[_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.operation')))])]),_c('tr',[_c('th',[_c('hr')]),_c('th',[_c('hr')])])]),_c('tbody',[_vm._l((_vm.parameters),function(parameter,index){return _c('tr',{key:parameter.field},[_c('td',[_c('v-select',{staticClass:"pr-2",attrs:{"append-icon":"fa fa-angle-down","solo":"","flat":"","hide-details":"","required":"","rules":_vm.getRules(),"items":_vm.columns,"item-value":"name","item-text":"title","disabled":_vm.disabled},model:{value:(parameter.field),callback:function ($$v) {_vm.$set(parameter, "field", $$v)},expression:"parameter.field"}})],1),_c('td',[_c('v-select',{staticClass:"pl-2 pr-2",attrs:{"append-icon":"fa fa-angle-down","solo":"","flat":"","hide-details":"","required":"","rules":_vm.getRules(),"items":_vm.filterOperators[_vm.getColumnType(parameter.field)],"item-value":"value","item-text":"text","disabled":_vm.disabled},model:{value:(parameter.op),callback:function ($$v) {_vm.$set(parameter, "op", $$v)},expression:"parameter.op"}})],1),_c('td',[_c('v-btn',{attrs:{"color":"primary"},on:{"click":function($event){return _vm.removeParameter(index)}}},[_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.remove')))])],1)])}),_c('tr',[_c('td',{attrs:{"colspan":"2"}}),_c('td',[_c('v-btn',{attrs:{"color":"primary"},on:{"click":_vm.addParameter}},[_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.add')))])],1)])],2)]):_vm._e()])}
8530
- var PuiDocgenTemplateParametervue_type_template_id_1416eb37_staticRenderFns = []
8531
-
10372
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"862245c6-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateParameter.vue?vue&type=template&id=18009053
10373
+ var PuiDocgenTemplateParametervue_type_template_id_18009053_render = function render() {
10374
+ var _vm = this,
10375
+ _c = _vm._self._c;
10376
+ return _c('pui-field-set', {
10377
+ attrs: {
10378
+ "title": _vm.title
10379
+ }
10380
+ }, [_c('h4', {
10381
+ staticClass: "puidocgentemplate-subtitle"
10382
+ }, [_vm._v(_vm._s(_vm.subtitle))]), _vm.columns.length > 0 ? _c('table', {
10383
+ staticClass: "puidocgentemplate-table"
10384
+ }, [_c('thead', [_c('tr', [_c('th', {
10385
+ staticClass: "puidocgentemplate-table-column"
10386
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.column')))]), _c('th', {
10387
+ staticClass: "puidocgentemplate-table-column"
10388
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.operation')))])]), _c('tr', [_c('th', [_c('hr')]), _c('th', [_c('hr')])])]), _c('tbody', [_vm._l(_vm.parameters, function (parameter, index) {
10389
+ return _c('tr', {
10390
+ key: parameter.field
10391
+ }, [_c('td', [_c('v-select', {
10392
+ staticClass: "pr-2",
10393
+ attrs: {
10394
+ "append-icon": "fa fa-angle-down",
10395
+ "solo": "",
10396
+ "flat": "",
10397
+ "hide-details": "",
10398
+ "required": "",
10399
+ "rules": _vm.getRules(),
10400
+ "items": _vm.columns,
10401
+ "item-value": "name",
10402
+ "item-text": "title",
10403
+ "disabled": _vm.disabled
10404
+ },
10405
+ model: {
10406
+ value: parameter.field,
10407
+ callback: function callback($$v) {
10408
+ _vm.$set(parameter, "field", $$v);
10409
+ },
10410
+ expression: "parameter.field"
10411
+ }
10412
+ })], 1), _c('td', [_c('v-select', {
10413
+ staticClass: "pl-2 pr-2",
10414
+ attrs: {
10415
+ "append-icon": "fa fa-angle-down",
10416
+ "solo": "",
10417
+ "flat": "",
10418
+ "hide-details": "",
10419
+ "required": "",
10420
+ "rules": _vm.getRules(),
10421
+ "items": _vm.filterOperators[_vm.getColumnType(parameter.field)],
10422
+ "item-value": "value",
10423
+ "item-text": "text",
10424
+ "disabled": _vm.disabled
10425
+ },
10426
+ model: {
10427
+ value: parameter.op,
10428
+ callback: function callback($$v) {
10429
+ _vm.$set(parameter, "op", $$v);
10430
+ },
10431
+ expression: "parameter.op"
10432
+ }
10433
+ })], 1), _c('td', [_c('v-btn', {
10434
+ attrs: {
10435
+ "color": "primary"
10436
+ },
10437
+ on: {
10438
+ "click": function click($event) {
10439
+ return _vm.removeParameter(index);
10440
+ }
10441
+ }
10442
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.remove')))])], 1)]);
10443
+ }), _c('tr', [_c('td', {
10444
+ attrs: {
10445
+ "colspan": "2"
10446
+ }
10447
+ }), _c('td', [_c('v-btn', {
10448
+ attrs: {
10449
+ "color": "primary"
10450
+ },
10451
+ on: {
10452
+ "click": _vm.addParameter
10453
+ }
10454
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplateparameter.add')))])], 1)])], 2)]) : _vm._e()]);
10455
+ };
10456
+ var PuiDocgenTemplateParametervue_type_template_id_18009053_staticRenderFns = [];
8532
10457
 
8533
- // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateParameter.vue?vue&type=template&id=1416eb37
10458
+ // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateParameter.vue?vue&type=template&id=18009053
8534
10459
 
8535
10460
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateMixin.vue?vue&type=script&lang=js
8536
10461
 
@@ -8693,74 +10618,6 @@ var PuiDocgenTemplateMixin_component = normalizeComponent(
8693
10618
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateParameter.vue?vue&type=script&lang=js
8694
10619
 
8695
10620
 
8696
- //
8697
- //
8698
- //
8699
- //
8700
- //
8701
- //
8702
- //
8703
- //
8704
- //
8705
- //
8706
- //
8707
- //
8708
- //
8709
- //
8710
- //
8711
- //
8712
- //
8713
- //
8714
- //
8715
- //
8716
- //
8717
- //
8718
- //
8719
- //
8720
- //
8721
- //
8722
- //
8723
- //
8724
- //
8725
- //
8726
- //
8727
- //
8728
- //
8729
- //
8730
- //
8731
- //
8732
- //
8733
- //
8734
- //
8735
- //
8736
- //
8737
- //
8738
- //
8739
- //
8740
- //
8741
- //
8742
- //
8743
- //
8744
- //
8745
- //
8746
- //
8747
- //
8748
- //
8749
- //
8750
- //
8751
- //
8752
- //
8753
- //
8754
- //
8755
- //
8756
- //
8757
- //
8758
- //
8759
- //
8760
- //
8761
- //
8762
- //
8763
-
8764
10621
 
8765
10622
  /* harmony default export */ var PuiDocgenTemplateParametervue_type_script_lang_js = ({
8766
10623
  name: 'PuiDocgenTemplateParameter',
@@ -8778,7 +10635,7 @@ var PuiDocgenTemplateMixin_component = normalizeComponent(
8778
10635
  required: true
8779
10636
  },
8780
10637
  parameters: {
8781
- type: [String, Array],
10638
+ type: Array,
8782
10639
  required: true
8783
10640
  },
8784
10641
  disabled: {
@@ -8810,8 +10667,8 @@ var PuiDocgenTemplateMixin_component = normalizeComponent(
8810
10667
 
8811
10668
  var PuiDocgenTemplateParameter_component = normalizeComponent(
8812
10669
  puidocgen_PuiDocgenTemplateParametervue_type_script_lang_js,
8813
- PuiDocgenTemplateParametervue_type_template_id_1416eb37_render,
8814
- PuiDocgenTemplateParametervue_type_template_id_1416eb37_staticRenderFns,
10670
+ PuiDocgenTemplateParametervue_type_template_id_18009053_render,
10671
+ PuiDocgenTemplateParametervue_type_template_id_18009053_staticRenderFns,
8815
10672
  false,
8816
10673
  null,
8817
10674
  null,
@@ -8836,162 +10693,6 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
8836
10693
 
8837
10694
 
8838
10695
 
8839
- //
8840
- //
8841
- //
8842
- //
8843
- //
8844
- //
8845
- //
8846
- //
8847
- //
8848
- //
8849
- //
8850
- //
8851
- //
8852
- //
8853
- //
8854
- //
8855
- //
8856
- //
8857
- //
8858
- //
8859
- //
8860
- //
8861
- //
8862
- //
8863
- //
8864
- //
8865
- //
8866
- //
8867
- //
8868
- //
8869
- //
8870
- //
8871
- //
8872
- //
8873
- //
8874
- //
8875
- //
8876
- //
8877
- //
8878
- //
8879
- //
8880
- //
8881
- //
8882
- //
8883
- //
8884
- //
8885
- //
8886
- //
8887
- //
8888
- //
8889
- //
8890
- //
8891
- //
8892
- //
8893
- //
8894
- //
8895
- //
8896
- //
8897
- //
8898
- //
8899
- //
8900
- //
8901
- //
8902
- //
8903
- //
8904
- //
8905
- //
8906
- //
8907
- //
8908
- //
8909
- //
8910
- //
8911
- //
8912
- //
8913
- //
8914
- //
8915
- //
8916
- //
8917
- //
8918
- //
8919
- //
8920
- //
8921
- //
8922
- //
8923
- //
8924
- //
8925
- //
8926
- //
8927
- //
8928
- //
8929
- //
8930
- //
8931
- //
8932
- //
8933
- //
8934
- //
8935
- //
8936
- //
8937
- //
8938
- //
8939
- //
8940
- //
8941
- //
8942
- //
8943
- //
8944
- //
8945
- //
8946
- //
8947
- //
8948
- //
8949
- //
8950
- //
8951
- //
8952
- //
8953
- //
8954
- //
8955
- //
8956
- //
8957
- //
8958
- //
8959
- //
8960
- //
8961
- //
8962
- //
8963
- //
8964
- //
8965
- //
8966
- //
8967
- //
8968
- //
8969
- //
8970
- //
8971
- //
8972
- //
8973
- //
8974
- //
8975
- //
8976
- //
8977
- //
8978
- //
8979
- //
8980
- //
8981
- //
8982
- //
8983
- //
8984
- //
8985
- //
8986
- //
8987
- //
8988
- //
8989
- //
8990
- //
8991
-
8992
-
8993
-
8994
-
8995
10696
  /* harmony default export */ var PuiDocgenTemplateFormvue_type_script_lang_js = ({
8996
10697
  name: 'PuiDocgenTemplateForm',
8997
10698
  mixins: [PuiFormMethodsMixin],
@@ -9011,7 +10712,7 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9011
10712
  systemFields: [],
9012
10713
  tableFields: [],
9013
10714
  columns: [],
9014
- columnsNoNull: [],
10715
+ columnNames: [],
9015
10716
  selectedFile: null,
9016
10717
  selectedFileType: null,
9017
10718
  columnfilenameKey: 0,
@@ -9030,7 +10731,7 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9030
10731
  var lupaModel = newVal.model;
9031
10732
  _this.modelsByEntity = [];
9032
10733
  _this.columns = [];
9033
- _this.columnsNoNull = [];
10734
+ _this.columnNames = [];
9034
10735
  if (lupaModel) {
9035
10736
  var _loop = function _loop() {
9036
10737
  var model = _this.$store.state.models[modelName];
@@ -9086,20 +10787,19 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9086
10787
  this.getSystemFields();
9087
10788
  this.getTableFields();
9088
10789
  if (this.model.mapping) {
9089
- var tempMapping = JSON.parse(this.model.mapping);
9090
10790
  var tempTags = [];
10791
+ var mapping = this.model.mapping;
9091
10792
  this.model.mapping = [];
9092
- for (var i = 0, mappingLength = tempMapping.length; i < mappingLength; i++) {
10793
+ for (var i = 0, mappingLength = mapping.length; i < mappingLength; i++) {
9093
10794
  // remove duplicates
9094
- if (tempTags.includes(tempMapping[i].tag)) {
10795
+ if (tempTags.includes(mapping[i].tag)) {
9095
10796
  continue;
9096
10797
  }
9097
- tempTags.push(tempMapping[i].tag);
9098
- this.model.mapping.push(tempMapping[i]);
10798
+ tempTags.push(mapping[i].tag);
10799
+ this.model.mapping.push(mapping[i]);
9099
10800
  }
9100
10801
  }
9101
10802
  if (this.model.filter) {
9102
- this.model.filter = JSON.parse(this.model.filter);
9103
10803
  if (this.model.filter === null) {
9104
10804
  this.model.filter = {
9105
10805
  groupOp: 'and',
@@ -9108,9 +10808,6 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9108
10808
  };
9109
10809
  }
9110
10810
  }
9111
- if (this.model.parameters) {
9112
- this.model.parameters = JSON.parse(this.model.parameters);
9113
- }
9114
10811
  if (this.model.models) {
9115
10812
  this.model.models = this.convertModelNamesToModelObjects(this.model.models);
9116
10813
  }
@@ -9119,11 +10816,10 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9119
10816
  }
9120
10817
  },
9121
10818
  convertModelNamesToModelObjects: function convertModelNamesToModelObjects(modelnames) {
9122
- var models = JSON.parse(modelnames);
9123
10819
  var modelobjects = [];
9124
- for (var i = 0; i < models.length; i++) {
10820
+ for (var i = 0; i < modelnames.length; i++) {
9125
10821
  modelobjects.push({
9126
- name: models[i]
10822
+ name: modelnames[i]
9127
10823
  });
9128
10824
  }
9129
10825
  return modelobjects;
@@ -9133,7 +10829,7 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9133
10829
  for (var i = 0; i < modelobjects.length; i++) {
9134
10830
  modelnames.push(modelobjects[i].name);
9135
10831
  }
9136
- return JSON.stringify(modelnames);
10832
+ return modelnames;
9137
10833
  },
9138
10834
  pickFile: function pickFile() {
9139
10835
  this.$refs.document.click();
@@ -9274,9 +10970,6 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9274
10970
  var _this7 = this;
9275
10971
  this.saving = true;
9276
10972
  var data = JSON.parse(JSON.stringify(this.model));
9277
- data.mapping = JSON.stringify(data.mapping);
9278
- data.filter = JSON.stringify(data.filter);
9279
- data.parameters = JSON.stringify(data.parameters);
9280
10973
  if (this.model.models && Array.isArray(this.model.models)) {
9281
10974
  data.models = this.convertModelObjectsToModelNames(this.model.models);
9282
10975
  }
@@ -9306,7 +10999,6 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9306
10999
  });
9307
11000
  },
9308
11001
  setColumns: function setColumns(model) {
9309
- var _this8 = this;
9310
11002
  for (var index in model.columns) {
9311
11003
  var column = model.columns[index];
9312
11004
  var title = this.$puiI18n.t(column.title);
@@ -9320,27 +11012,16 @@ var PuiDocgenTemplateParameter_component = normalizeComponent(
9320
11012
  this.columns.sort(function (a, b) {
9321
11013
  return a.title < b.title ? -1 : a.title > b.title ? 1 : 0;
9322
11014
  });
9323
- this.$puiRequests.getRequest("/dtos/describe/".concat(model.table), null, function (response) {
9324
- if (response && response.data && response.data.fields) {
9325
- var fieldsNoNull = response.data.fields.filter(function (f) {
9326
- return !f.isNullable;
9327
- }).map(function (f) {
9328
- return f.columnName;
9329
- });
9330
- _this8.columnsNoNull = _this8.columns.filter(function (c) {
9331
- return fieldsNoNull.includes(c.name);
9332
- });
9333
- }
9334
- }, function (error) {
9335
- console.log(error);
9336
- });
11015
+ for (var _index in this.columns) {
11016
+ this.columnNames.push(this.columns[_index]);
11017
+ }
9337
11018
  }
9338
11019
  }
9339
11020
  });
9340
11021
  // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateForm.vue?vue&type=script&lang=js
9341
11022
  /* harmony default export */ var puidocgen_PuiDocgenTemplateFormvue_type_script_lang_js = (PuiDocgenTemplateFormvue_type_script_lang_js);
9342
- // EXTERNAL MODULE: ./src/components/puidocgen/PuiDocgenTemplateForm.vue?vue&type=style&index=0&id=70f175a5&prod&lang=postcss
9343
- var PuiDocgenTemplateFormvue_type_style_index_0_id_70f175a5_prod_lang_postcss = __webpack_require__("36ee");
11023
+ // EXTERNAL MODULE: ./src/components/puidocgen/PuiDocgenTemplateForm.vue?vue&type=style&index=0&id=36ac9f25&prod&lang=postcss
11024
+ var PuiDocgenTemplateFormvue_type_style_index_0_id_36ac9f25_prod_lang_postcss = __webpack_require__("2d62");
9344
11025
 
9345
11026
  // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateForm.vue
9346
11027
 
@@ -9363,22 +11044,25 @@ var PuiDocgenTemplateForm_component = normalizeComponent(
9363
11044
  )
9364
11045
 
9365
11046
  /* harmony default export */ var PuiDocgenTemplateForm = (PuiDocgenTemplateForm_component.exports);
9366
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"a78fc394-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateGrid.vue?vue&type=template&id=dcba3a1e
9367
- var PuiDocgenTemplateGridvue_type_template_id_dcba3a1e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('pui-datatable',{attrs:{"modelName":_vm.modelName,"actions":_vm.actions}}),_c('pui-docgen-template-modals',{attrs:{"modelName":_vm.modelName}}),_c('pui-docgen-template-parameters-dialog')],1)}
9368
- var PuiDocgenTemplateGridvue_type_template_id_dcba3a1e_staticRenderFns = []
9369
-
11047
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"862245c6-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateGrid.vue?vue&type=template&id=dcba3a1e
11048
+ var PuiDocgenTemplateGridvue_type_template_id_dcba3a1e_render = function render() {
11049
+ var _vm = this,
11050
+ _c = _vm._self._c;
11051
+ return _c('div', [_c('pui-datatable', {
11052
+ attrs: {
11053
+ "modelName": _vm.modelName,
11054
+ "actions": _vm.actions
11055
+ }
11056
+ }), _c('pui-docgen-template-modals', {
11057
+ attrs: {
11058
+ "modelName": _vm.modelName
11059
+ }
11060
+ }), _c('pui-docgen-template-parameters-dialog')], 1);
11061
+ };
11062
+ var PuiDocgenTemplateGridvue_type_template_id_dcba3a1e_staticRenderFns = [];
9370
11063
 
9371
11064
  // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateGrid.vue?vue&type=template&id=dcba3a1e
9372
11065
 
9373
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.iterator.js
9374
- var es_array_iterator = __webpack_require__("e260");
9375
-
9376
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
9377
- var es_string_iterator = __webpack_require__("3ca3");
9378
-
9379
- // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.iterator.js
9380
- var web_dom_collections_iterator = __webpack_require__("ddb0");
9381
-
9382
11066
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url.js
9383
11067
  var web_url = __webpack_require__("2b3d");
9384
11068
 
@@ -9485,45 +11169,86 @@ var uploadNewTemplateAction = {
9485
11169
  /* harmony default export */ var PuiDocgenTemplateActions = ({
9486
11170
  actions: [generateAction, downloadTemplateAction, downloadSampleTemplateAction, uploadNewTemplateAction]
9487
11171
  });
9488
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"a78fc394-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateModals.vue?vue&type=template&id=78039527
9489
- var PuiDocgenTemplateModalsvue_type_template_id_78039527_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('pui-modal-dialog-form',{attrs:{"titleText":_vm.$t('puiaction.docgen.uploadnewtemplate'),"modelName":_vm.modelName,"dialogName":_vm.dialogNameUploadNewTemplate,"widthDialog":800,"onOk":_vm.onOkUploadNewTemplate}},[_c('template',{slot:"message"},[_c('v-layout',{staticClass:"justify-center",attrs:{"wrap":""}},[_c('v-flex',{attrs:{"xs12":"","md8":"","xl9":""}},[_c('pui-text-field',{attrs:{"label":_vm.$t('puidocgentemplate.filename'),"toplabel":"","required":"","disabled":""},model:{value:(_vm.fileName),callback:function ($$v) {_vm.fileName=$$v},expression:"fileName"}}),_c('input',{directives:[{name:"show",rawName:"v-show",value:(false),expression:"false"}],ref:"document",attrs:{"type":"file","accept":".doc, .docx, .odt"},on:{"change":_vm.onFilePicked}})],1),_c('v-flex',{attrs:{"xs12":"","md4":"","xl3":""}},[_c('v-btn',{staticStyle:{"margin-top":"20px"},attrs:{"color":"primary"},on:{"click":_vm.pickFile}},[_vm._v(_vm._s(_vm.$t('puidocgentemplate.selectfile')))])],1)],1)],1)],2)],1)}
9490
- var PuiDocgenTemplateModalsvue_type_template_id_78039527_staticRenderFns = []
9491
-
11172
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"862245c6-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateModals.vue?vue&type=template&id=78039527
11173
+ var PuiDocgenTemplateModalsvue_type_template_id_78039527_render = function render() {
11174
+ var _vm = this,
11175
+ _c = _vm._self._c;
11176
+ return _c('div', [_c('pui-modal-dialog-form', {
11177
+ attrs: {
11178
+ "titleText": _vm.$t('puiaction.docgen.uploadnewtemplate'),
11179
+ "modelName": _vm.modelName,
11180
+ "dialogName": _vm.dialogNameUploadNewTemplate,
11181
+ "widthDialog": 800,
11182
+ "onOk": _vm.onOkUploadNewTemplate
11183
+ }
11184
+ }, [_c('template', {
11185
+ slot: "message"
11186
+ }, [_c('v-layout', {
11187
+ staticClass: "justify-center",
11188
+ attrs: {
11189
+ "wrap": ""
11190
+ }
11191
+ }, [_c('v-flex', {
11192
+ attrs: {
11193
+ "xs12": "",
11194
+ "md8": "",
11195
+ "xl9": ""
11196
+ }
11197
+ }, [_c('pui-text-field', {
11198
+ attrs: {
11199
+ "label": _vm.$t('puidocgentemplate.filename'),
11200
+ "toplabel": "",
11201
+ "required": "",
11202
+ "disabled": ""
11203
+ },
11204
+ model: {
11205
+ value: _vm.fileName,
11206
+ callback: function callback($$v) {
11207
+ _vm.fileName = $$v;
11208
+ },
11209
+ expression: "fileName"
11210
+ }
11211
+ }), _c('input', {
11212
+ directives: [{
11213
+ name: "show",
11214
+ rawName: "v-show",
11215
+ value: false,
11216
+ expression: "false"
11217
+ }],
11218
+ ref: "document",
11219
+ attrs: {
11220
+ "type": "file",
11221
+ "accept": ".doc, .docx, .odt"
11222
+ },
11223
+ on: {
11224
+ "change": _vm.onFilePicked
11225
+ }
11226
+ })], 1), _c('v-flex', {
11227
+ attrs: {
11228
+ "xs12": "",
11229
+ "md4": "",
11230
+ "xl3": ""
11231
+ }
11232
+ }, [_c('v-btn', {
11233
+ staticStyle: {
11234
+ "margin-top": "20px"
11235
+ },
11236
+ attrs: {
11237
+ "color": "primary"
11238
+ },
11239
+ on: {
11240
+ "click": _vm.pickFile
11241
+ }
11242
+ }, [_vm._v(_vm._s(_vm.$t('puidocgentemplate.selectfile')))])], 1)], 1)], 1)], 2)], 1);
11243
+ };
11244
+ var PuiDocgenTemplateModalsvue_type_template_id_78039527_staticRenderFns = [];
9492
11245
 
9493
11246
  // CONCATENATED MODULE: ./src/components/puidocgen/PuiDocgenTemplateModals.vue?vue&type=template&id=78039527
9494
11247
 
9495
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.promise.js
9496
- var es_promise = __webpack_require__("e6cf");
9497
-
9498
11248
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateModals.vue?vue&type=script&lang=js
9499
11249
 
9500
11250
 
9501
11251
 
9502
- //
9503
- //
9504
- //
9505
- //
9506
- //
9507
- //
9508
- //
9509
- //
9510
- //
9511
- //
9512
- //
9513
- //
9514
- //
9515
- //
9516
- //
9517
- //
9518
- //
9519
- //
9520
- //
9521
- //
9522
- //
9523
- //
9524
- //
9525
- //
9526
-
9527
11252
  /* harmony default export */ var PuiDocgenTemplateModalsvue_type_script_lang_js = ({
9528
11253
  data: function data() {
9529
11254
  return {
@@ -9628,15 +11353,6 @@ var PuiDocgenTemplateModals_component = normalizeComponent(
9628
11353
 
9629
11354
  /* harmony default export */ var PuiDocgenTemplateModals = (PuiDocgenTemplateModals_component.exports);
9630
11355
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/puidocgen/PuiDocgenTemplateGrid.vue?vue&type=script&lang=js
9631
- //
9632
- //
9633
- //
9634
- //
9635
- //
9636
- //
9637
- //
9638
- //
9639
-
9640
11356
 
9641
11357
 
9642
11358
  /* harmony default export */ var PuiDocgenTemplateGridvue_type_script_lang_js = ({
@@ -9699,6 +11415,63 @@ var Components = {
9699
11415
 
9700
11416
 
9701
11417
 
11418
+ /***/ }),
11419
+
11420
+ /***/ "fb6a":
11421
+ /***/ (function(module, exports, __webpack_require__) {
11422
+
11423
+ "use strict";
11424
+
11425
+ var $ = __webpack_require__("23e7");
11426
+ var isArray = __webpack_require__("e8b5");
11427
+ var isConstructor = __webpack_require__("68ee");
11428
+ var isObject = __webpack_require__("861d");
11429
+ var toAbsoluteIndex = __webpack_require__("23cb");
11430
+ var lengthOfArrayLike = __webpack_require__("07fa");
11431
+ var toIndexedObject = __webpack_require__("fc6a");
11432
+ var createProperty = __webpack_require__("8418");
11433
+ var wellKnownSymbol = __webpack_require__("b622");
11434
+ var arrayMethodHasSpeciesSupport = __webpack_require__("1dde");
11435
+ var nativeSlice = __webpack_require__("f36a");
11436
+
11437
+ var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
11438
+
11439
+ var SPECIES = wellKnownSymbol('species');
11440
+ var $Array = Array;
11441
+ var max = Math.max;
11442
+
11443
+ // `Array.prototype.slice` method
11444
+ // https://tc39.es/ecma262/#sec-array.prototype.slice
11445
+ // fallback for not array-like ES3 strings and DOM objects
11446
+ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
11447
+ slice: function slice(start, end) {
11448
+ var O = toIndexedObject(this);
11449
+ var length = lengthOfArrayLike(O);
11450
+ var k = toAbsoluteIndex(start, length);
11451
+ var fin = toAbsoluteIndex(end === undefined ? length : end, length);
11452
+ // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
11453
+ var Constructor, result, n;
11454
+ if (isArray(O)) {
11455
+ Constructor = O.constructor;
11456
+ // cross-realm fallback
11457
+ if (isConstructor(Constructor) && (Constructor === $Array || isArray(Constructor.prototype))) {
11458
+ Constructor = undefined;
11459
+ } else if (isObject(Constructor)) {
11460
+ Constructor = Constructor[SPECIES];
11461
+ if (Constructor === null) Constructor = undefined;
11462
+ }
11463
+ if (Constructor === $Array || Constructor === undefined) {
11464
+ return nativeSlice(O, k, fin);
11465
+ }
11466
+ }
11467
+ result = new (Constructor === undefined ? $Array : Constructor)(max(fin - k, 0));
11468
+ for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
11469
+ result.length = n;
11470
+ return result;
11471
+ }
11472
+ });
11473
+
11474
+
9702
11475
  /***/ }),
9703
11476
 
9704
11477
  /***/ "fc6a":
@@ -9713,6 +11486,23 @@ module.exports = function (it) {
9713
11486
  };
9714
11487
 
9715
11488
 
11489
+ /***/ }),
11490
+
11491
+ /***/ "fce3":
11492
+ /***/ (function(module, exports, __webpack_require__) {
11493
+
11494
+ var fails = __webpack_require__("d039");
11495
+ var global = __webpack_require__("da84");
11496
+
11497
+ // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
11498
+ var $RegExp = global.RegExp;
11499
+
11500
+ module.exports = fails(function () {
11501
+ var re = $RegExp('.', 's');
11502
+ return !(re.dotAll && re.exec('\n') && re.flags === 's');
11503
+ });
11504
+
11505
+
9716
11506
  /***/ }),
9717
11507
 
9718
11508
  /***/ "fdbc":
@@ -9760,8 +11550,8 @@ module.exports = {
9760
11550
  /***/ "fdbf":
9761
11551
  /***/ (function(module, exports, __webpack_require__) {
9762
11552
 
9763
- /* eslint-disable es-x/no-symbol -- required for testing */
9764
- var NATIVE_SYMBOL = __webpack_require__("4930");
11553
+ /* eslint-disable es/no-symbol -- required for testing */
11554
+ var NATIVE_SYMBOL = __webpack_require__("04f8");
9765
11555
 
9766
11556
  module.exports = NATIVE_SYMBOL
9767
11557
  && !Symbol.sham
@@ -9770,5 +11560,4 @@ module.exports = NATIVE_SYMBOL
9770
11560
 
9771
11561
  /***/ })
9772
11562
 
9773
- /******/ });
9774
- //# sourceMappingURL=pui9-docgen.common.js.map
11563
+ /******/ });