@castlabs/ui 4.18.3 → 4.18.5

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.
@@ -86,6 +86,23 @@ module.exports = function (argument) {
86
86
  };
87
87
 
88
88
 
89
+ /***/ }),
90
+
91
+ /***/ 679:
92
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
93
+
94
+ "use strict";
95
+
96
+ var isPrototypeOf = __webpack_require__(1625);
97
+
98
+ var $TypeError = TypeError;
99
+
100
+ module.exports = function (it, Prototype) {
101
+ if (isPrototypeOf(Prototype, it)) return it;
102
+ throw new $TypeError('Incorrect invocation');
103
+ };
104
+
105
+
89
106
  /***/ }),
90
107
 
91
108
  /***/ 8551:
@@ -199,6 +216,44 @@ module.exports = function (it) {
199
216
  };
200
217
 
201
218
 
219
+ /***/ }),
220
+
221
+ /***/ 6955:
222
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
223
+
224
+ "use strict";
225
+
226
+ var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
227
+ var isCallable = __webpack_require__(4901);
228
+ var classofRaw = __webpack_require__(2195);
229
+ var wellKnownSymbol = __webpack_require__(8227);
230
+
231
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
232
+ var $Object = Object;
233
+
234
+ // ES3 wrong here
235
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
236
+
237
+ // fallback for IE11 Script Access Denied error
238
+ var tryGet = function (it, key) {
239
+ try {
240
+ return it[key];
241
+ } catch (error) { /* empty */ }
242
+ };
243
+
244
+ // getting tag from ES6+ `Object.prototype.toString`
245
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
246
+ var O, tag, result;
247
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
248
+ // @@toStringTag case
249
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
250
+ // builtinTag case
251
+ : CORRECT_ARGUMENTS ? classofRaw(O)
252
+ // ES3 arguments fallback
253
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
254
+ };
255
+
256
+
202
257
  /***/ }),
203
258
 
204
259
  /***/ 7740:
@@ -224,6 +279,23 @@ module.exports = function (target, source, exceptions) {
224
279
  };
225
280
 
226
281
 
282
+ /***/ }),
283
+
284
+ /***/ 2211:
285
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
286
+
287
+ "use strict";
288
+
289
+ var fails = __webpack_require__(9039);
290
+
291
+ module.exports = !fails(function () {
292
+ function F() { /* empty */ }
293
+ F.prototype.constructor = null;
294
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
295
+ return Object.getPrototypeOf(new F()) !== F.prototype;
296
+ });
297
+
298
+
227
299
  /***/ }),
228
300
 
229
301
  /***/ 6699:
@@ -260,6 +332,40 @@ module.exports = function (bitmap, value) {
260
332
  };
261
333
 
262
334
 
335
+ /***/ }),
336
+
337
+ /***/ 4659:
338
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
339
+
340
+ "use strict";
341
+
342
+ var DESCRIPTORS = __webpack_require__(3724);
343
+ var definePropertyModule = __webpack_require__(4913);
344
+ var createPropertyDescriptor = __webpack_require__(6980);
345
+
346
+ module.exports = function (object, key, value) {
347
+ if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
348
+ else object[key] = value;
349
+ };
350
+
351
+
352
+ /***/ }),
353
+
354
+ /***/ 2106:
355
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
356
+
357
+ "use strict";
358
+
359
+ var makeBuiltIn = __webpack_require__(283);
360
+ var defineProperty = __webpack_require__(4913);
361
+
362
+ module.exports = function (target, name, descriptor) {
363
+ if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
364
+ if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
365
+ return defineProperty.f(target, name, descriptor);
366
+ };
367
+
368
+
263
369
  /***/ }),
264
370
 
265
371
  /***/ 6840:
@@ -517,6 +623,28 @@ module.exports = function (exec) {
517
623
  };
518
624
 
519
625
 
626
+ /***/ }),
627
+
628
+ /***/ 6080:
629
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
630
+
631
+ "use strict";
632
+
633
+ var uncurryThis = __webpack_require__(7476);
634
+ var aCallable = __webpack_require__(9306);
635
+ var NATIVE_BIND = __webpack_require__(616);
636
+
637
+ var bind = uncurryThis(uncurryThis.bind);
638
+
639
+ // optional / simple context binding
640
+ module.exports = function (fn, that) {
641
+ aCallable(fn);
642
+ return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
643
+ return fn.apply(that, arguments);
644
+ };
645
+ };
646
+
647
+
520
648
  /***/ }),
521
649
 
522
650
  /***/ 616:
@@ -576,6 +704,24 @@ module.exports = {
576
704
  };
577
705
 
578
706
 
707
+ /***/ }),
708
+
709
+ /***/ 7476:
710
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
711
+
712
+ "use strict";
713
+
714
+ var classofRaw = __webpack_require__(2195);
715
+ var uncurryThis = __webpack_require__(9504);
716
+
717
+ module.exports = function (fn) {
718
+ // Nashorn bug:
719
+ // https://github.com/zloirock/core-js/issues/1128
720
+ // https://github.com/zloirock/core-js/issues/1130
721
+ if (classofRaw(fn) === 'Function') return uncurryThis(fn);
722
+ };
723
+
724
+
579
725
  /***/ }),
580
726
 
581
727
  /***/ 9504:
@@ -615,6 +761,68 @@ module.exports = function (namespace, method) {
615
761
  };
616
762
 
617
763
 
764
+ /***/ }),
765
+
766
+ /***/ 1767:
767
+ /***/ (function(module) {
768
+
769
+ "use strict";
770
+
771
+ // `GetIteratorDirect(obj)` abstract operation
772
+ // https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect
773
+ module.exports = function (obj) {
774
+ return {
775
+ iterator: obj,
776
+ next: obj.next,
777
+ done: false
778
+ };
779
+ };
780
+
781
+
782
+ /***/ }),
783
+
784
+ /***/ 851:
785
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
786
+
787
+ "use strict";
788
+
789
+ var classof = __webpack_require__(6955);
790
+ var getMethod = __webpack_require__(5966);
791
+ var isNullOrUndefined = __webpack_require__(4117);
792
+ var Iterators = __webpack_require__(6269);
793
+ var wellKnownSymbol = __webpack_require__(8227);
794
+
795
+ var ITERATOR = wellKnownSymbol('iterator');
796
+
797
+ module.exports = function (it) {
798
+ if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
799
+ || getMethod(it, '@@iterator')
800
+ || Iterators[classof(it)];
801
+ };
802
+
803
+
804
+ /***/ }),
805
+
806
+ /***/ 81:
807
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
808
+
809
+ "use strict";
810
+
811
+ var call = __webpack_require__(9565);
812
+ var aCallable = __webpack_require__(9306);
813
+ var anObject = __webpack_require__(8551);
814
+ var tryToString = __webpack_require__(6823);
815
+ var getIteratorMethod = __webpack_require__(851);
816
+
817
+ var $TypeError = TypeError;
818
+
819
+ module.exports = function (argument, usingIterator) {
820
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
821
+ if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
822
+ throw new $TypeError(tryToString(argument) + ' is not iterable');
823
+ };
824
+
825
+
618
826
  /***/ }),
619
827
 
620
828
  /***/ 5966:
@@ -687,6 +895,18 @@ module.exports = Object.hasOwn || function hasOwn(it, key) {
687
895
  module.exports = {};
688
896
 
689
897
 
898
+ /***/ }),
899
+
900
+ /***/ 397:
901
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
902
+
903
+ "use strict";
904
+
905
+ var getBuiltIn = __webpack_require__(7751);
906
+
907
+ module.exports = getBuiltIn('document', 'documentElement');
908
+
909
+
690
910
  /***/ }),
691
911
 
692
912
  /***/ 5917:
@@ -833,6 +1053,25 @@ module.exports = {
833
1053
  };
834
1054
 
835
1055
 
1056
+ /***/ }),
1057
+
1058
+ /***/ 4209:
1059
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1060
+
1061
+ "use strict";
1062
+
1063
+ var wellKnownSymbol = __webpack_require__(8227);
1064
+ var Iterators = __webpack_require__(6269);
1065
+
1066
+ var ITERATOR = wellKnownSymbol('iterator');
1067
+ var ArrayPrototype = Array.prototype;
1068
+
1069
+ // check on default Array iterator
1070
+ module.exports = function (it) {
1071
+ return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
1072
+ };
1073
+
1074
+
836
1075
  /***/ }),
837
1076
 
838
1077
  /***/ 4376:
@@ -961,6 +1200,182 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
961
1200
  };
962
1201
 
963
1202
 
1203
+ /***/ }),
1204
+
1205
+ /***/ 2652:
1206
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1207
+
1208
+ "use strict";
1209
+
1210
+ var bind = __webpack_require__(6080);
1211
+ var call = __webpack_require__(9565);
1212
+ var anObject = __webpack_require__(8551);
1213
+ var tryToString = __webpack_require__(6823);
1214
+ var isArrayIteratorMethod = __webpack_require__(4209);
1215
+ var lengthOfArrayLike = __webpack_require__(6198);
1216
+ var isPrototypeOf = __webpack_require__(1625);
1217
+ var getIterator = __webpack_require__(81);
1218
+ var getIteratorMethod = __webpack_require__(851);
1219
+ var iteratorClose = __webpack_require__(9539);
1220
+
1221
+ var $TypeError = TypeError;
1222
+
1223
+ var Result = function (stopped, result) {
1224
+ this.stopped = stopped;
1225
+ this.result = result;
1226
+ };
1227
+
1228
+ var ResultPrototype = Result.prototype;
1229
+
1230
+ module.exports = function (iterable, unboundFunction, options) {
1231
+ var that = options && options.that;
1232
+ var AS_ENTRIES = !!(options && options.AS_ENTRIES);
1233
+ var IS_RECORD = !!(options && options.IS_RECORD);
1234
+ var IS_ITERATOR = !!(options && options.IS_ITERATOR);
1235
+ var INTERRUPTED = !!(options && options.INTERRUPTED);
1236
+ var fn = bind(unboundFunction, that);
1237
+ var iterator, iterFn, index, length, result, next, step;
1238
+
1239
+ var stop = function (condition) {
1240
+ if (iterator) iteratorClose(iterator, 'normal', condition);
1241
+ return new Result(true, condition);
1242
+ };
1243
+
1244
+ var callFn = function (value) {
1245
+ if (AS_ENTRIES) {
1246
+ anObject(value);
1247
+ return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
1248
+ } return INTERRUPTED ? fn(value, stop) : fn(value);
1249
+ };
1250
+
1251
+ if (IS_RECORD) {
1252
+ iterator = iterable.iterator;
1253
+ } else if (IS_ITERATOR) {
1254
+ iterator = iterable;
1255
+ } else {
1256
+ iterFn = getIteratorMethod(iterable);
1257
+ if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
1258
+ // optimisation for array iterators
1259
+ if (isArrayIteratorMethod(iterFn)) {
1260
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
1261
+ result = callFn(iterable[index]);
1262
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
1263
+ } return new Result(false);
1264
+ }
1265
+ iterator = getIterator(iterable, iterFn);
1266
+ }
1267
+
1268
+ next = IS_RECORD ? iterable.next : iterator.next;
1269
+ while (!(step = call(next, iterator)).done) {
1270
+ try {
1271
+ result = callFn(step.value);
1272
+ } catch (error) {
1273
+ iteratorClose(iterator, 'throw', error);
1274
+ }
1275
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
1276
+ } return new Result(false);
1277
+ };
1278
+
1279
+
1280
+ /***/ }),
1281
+
1282
+ /***/ 9539:
1283
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1284
+
1285
+ "use strict";
1286
+
1287
+ var call = __webpack_require__(9565);
1288
+ var anObject = __webpack_require__(8551);
1289
+ var getMethod = __webpack_require__(5966);
1290
+
1291
+ module.exports = function (iterator, kind, value) {
1292
+ var innerResult, innerError;
1293
+ anObject(iterator);
1294
+ try {
1295
+ innerResult = getMethod(iterator, 'return');
1296
+ if (!innerResult) {
1297
+ if (kind === 'throw') throw value;
1298
+ return value;
1299
+ }
1300
+ innerResult = call(innerResult, iterator);
1301
+ } catch (error) {
1302
+ innerError = true;
1303
+ innerResult = error;
1304
+ }
1305
+ if (kind === 'throw') throw value;
1306
+ if (innerError) throw innerResult;
1307
+ anObject(innerResult);
1308
+ return value;
1309
+ };
1310
+
1311
+
1312
+ /***/ }),
1313
+
1314
+ /***/ 7657:
1315
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1316
+
1317
+ "use strict";
1318
+
1319
+ var fails = __webpack_require__(9039);
1320
+ var isCallable = __webpack_require__(4901);
1321
+ var isObject = __webpack_require__(34);
1322
+ var create = __webpack_require__(2360);
1323
+ var getPrototypeOf = __webpack_require__(2787);
1324
+ var defineBuiltIn = __webpack_require__(6840);
1325
+ var wellKnownSymbol = __webpack_require__(8227);
1326
+ var IS_PURE = __webpack_require__(6395);
1327
+
1328
+ var ITERATOR = wellKnownSymbol('iterator');
1329
+ var BUGGY_SAFARI_ITERATORS = false;
1330
+
1331
+ // `%IteratorPrototype%` object
1332
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1333
+ var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
1334
+
1335
+ /* eslint-disable es/no-array-prototype-keys -- safe */
1336
+ if ([].keys) {
1337
+ arrayIterator = [].keys();
1338
+ // Safari 8 has buggy iterators w/o `next`
1339
+ if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1340
+ else {
1341
+ PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
1342
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
1343
+ }
1344
+ }
1345
+
1346
+ var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
1347
+ var test = {};
1348
+ // FF44- legacy iterators case
1349
+ return IteratorPrototype[ITERATOR].call(test) !== test;
1350
+ });
1351
+
1352
+ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
1353
+ else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
1354
+
1355
+ // `%IteratorPrototype%[@@iterator]()` method
1356
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1357
+ if (!isCallable(IteratorPrototype[ITERATOR])) {
1358
+ defineBuiltIn(IteratorPrototype, ITERATOR, function () {
1359
+ return this;
1360
+ });
1361
+ }
1362
+
1363
+ module.exports = {
1364
+ IteratorPrototype: IteratorPrototype,
1365
+ BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1366
+ };
1367
+
1368
+
1369
+ /***/ }),
1370
+
1371
+ /***/ 6269:
1372
+ /***/ (function(module) {
1373
+
1374
+ "use strict";
1375
+
1376
+ module.exports = {};
1377
+
1378
+
964
1379
  /***/ }),
965
1380
 
966
1381
  /***/ 6198:
@@ -1059,6 +1474,128 @@ module.exports = Math.trunc || function trunc(x) {
1059
1474
  };
1060
1475
 
1061
1476
 
1477
+ /***/ }),
1478
+
1479
+ /***/ 2360:
1480
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1481
+
1482
+ "use strict";
1483
+
1484
+ /* global ActiveXObject -- old IE, WSH */
1485
+ var anObject = __webpack_require__(8551);
1486
+ var definePropertiesModule = __webpack_require__(6801);
1487
+ var enumBugKeys = __webpack_require__(8727);
1488
+ var hiddenKeys = __webpack_require__(421);
1489
+ var html = __webpack_require__(397);
1490
+ var documentCreateElement = __webpack_require__(4055);
1491
+ var sharedKey = __webpack_require__(6119);
1492
+
1493
+ var GT = '>';
1494
+ var LT = '<';
1495
+ var PROTOTYPE = 'prototype';
1496
+ var SCRIPT = 'script';
1497
+ var IE_PROTO = sharedKey('IE_PROTO');
1498
+
1499
+ var EmptyConstructor = function () { /* empty */ };
1500
+
1501
+ var scriptTag = function (content) {
1502
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
1503
+ };
1504
+
1505
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
1506
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
1507
+ activeXDocument.write(scriptTag(''));
1508
+ activeXDocument.close();
1509
+ var temp = activeXDocument.parentWindow.Object;
1510
+ // eslint-disable-next-line no-useless-assignment -- avoid memory leak
1511
+ activeXDocument = null;
1512
+ return temp;
1513
+ };
1514
+
1515
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
1516
+ var NullProtoObjectViaIFrame = function () {
1517
+ // Thrash, waste and sodomy: IE GC bug
1518
+ var iframe = documentCreateElement('iframe');
1519
+ var JS = 'java' + SCRIPT + ':';
1520
+ var iframeDocument;
1521
+ iframe.style.display = 'none';
1522
+ html.appendChild(iframe);
1523
+ // https://github.com/zloirock/core-js/issues/475
1524
+ iframe.src = String(JS);
1525
+ iframeDocument = iframe.contentWindow.document;
1526
+ iframeDocument.open();
1527
+ iframeDocument.write(scriptTag('document.F=Object'));
1528
+ iframeDocument.close();
1529
+ return iframeDocument.F;
1530
+ };
1531
+
1532
+ // Check for document.domain and active x support
1533
+ // No need to use active x approach when document.domain is not set
1534
+ // see https://github.com/es-shims/es5-shim/issues/150
1535
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
1536
+ // avoid IE GC bug
1537
+ var activeXDocument;
1538
+ var NullProtoObject = function () {
1539
+ try {
1540
+ activeXDocument = new ActiveXObject('htmlfile');
1541
+ } catch (error) { /* ignore */ }
1542
+ NullProtoObject = typeof document != 'undefined'
1543
+ ? document.domain && activeXDocument
1544
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1545
+ : NullProtoObjectViaIFrame()
1546
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
1547
+ var length = enumBugKeys.length;
1548
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1549
+ return NullProtoObject();
1550
+ };
1551
+
1552
+ hiddenKeys[IE_PROTO] = true;
1553
+
1554
+ // `Object.create` method
1555
+ // https://tc39.es/ecma262/#sec-object.create
1556
+ // eslint-disable-next-line es/no-object-create -- safe
1557
+ module.exports = Object.create || function create(O, Properties) {
1558
+ var result;
1559
+ if (O !== null) {
1560
+ EmptyConstructor[PROTOTYPE] = anObject(O);
1561
+ result = new EmptyConstructor();
1562
+ EmptyConstructor[PROTOTYPE] = null;
1563
+ // add "__proto__" for Object.getPrototypeOf polyfill
1564
+ result[IE_PROTO] = O;
1565
+ } else result = NullProtoObject();
1566
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
1567
+ };
1568
+
1569
+
1570
+ /***/ }),
1571
+
1572
+ /***/ 6801:
1573
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1574
+
1575
+ "use strict";
1576
+
1577
+ var DESCRIPTORS = __webpack_require__(3724);
1578
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
1579
+ var definePropertyModule = __webpack_require__(4913);
1580
+ var anObject = __webpack_require__(8551);
1581
+ var toIndexedObject = __webpack_require__(5397);
1582
+ var objectKeys = __webpack_require__(1072);
1583
+
1584
+ // `Object.defineProperties` method
1585
+ // https://tc39.es/ecma262/#sec-object.defineproperties
1586
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
1587
+ exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1588
+ anObject(O);
1589
+ var props = toIndexedObject(Properties);
1590
+ var keys = objectKeys(Properties);
1591
+ var length = keys.length;
1592
+ var index = 0;
1593
+ var key;
1594
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1595
+ return O;
1596
+ };
1597
+
1598
+
1062
1599
  /***/ }),
1063
1600
 
1064
1601
  /***/ 4913:
@@ -1173,6 +1710,36 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1173
1710
  exports.f = Object.getOwnPropertySymbols;
1174
1711
 
1175
1712
 
1713
+ /***/ }),
1714
+
1715
+ /***/ 2787:
1716
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1717
+
1718
+ "use strict";
1719
+
1720
+ var hasOwn = __webpack_require__(9297);
1721
+ var isCallable = __webpack_require__(4901);
1722
+ var toObject = __webpack_require__(8981);
1723
+ var sharedKey = __webpack_require__(6119);
1724
+ var CORRECT_PROTOTYPE_GETTER = __webpack_require__(2211);
1725
+
1726
+ var IE_PROTO = sharedKey('IE_PROTO');
1727
+ var $Object = Object;
1728
+ var ObjectPrototype = $Object.prototype;
1729
+
1730
+ // `Object.getPrototypeOf` method
1731
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
1732
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
1733
+ module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
1734
+ var object = toObject(O);
1735
+ if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
1736
+ var constructor = object.constructor;
1737
+ if (isCallable(constructor) && object instanceof constructor) {
1738
+ return constructor.prototype;
1739
+ } return object instanceof $Object ? ObjectPrototype : null;
1740
+ };
1741
+
1742
+
1176
1743
  /***/ }),
1177
1744
 
1178
1745
  /***/ 1625:
@@ -1214,6 +1781,24 @@ module.exports = function (object, names) {
1214
1781
  };
1215
1782
 
1216
1783
 
1784
+ /***/ }),
1785
+
1786
+ /***/ 1072:
1787
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1788
+
1789
+ "use strict";
1790
+
1791
+ var internalObjectKeys = __webpack_require__(1828);
1792
+ var enumBugKeys = __webpack_require__(8727);
1793
+
1794
+ // `Object.keys` method
1795
+ // https://tc39.es/ecma262/#sec-object.keys
1796
+ // eslint-disable-next-line es/no-object-keys -- safe
1797
+ module.exports = Object.keys || function keys(O) {
1798
+ return internalObjectKeys(O, enumBugKeys);
1799
+ };
1800
+
1801
+
1217
1802
  /***/ }),
1218
1803
 
1219
1804
  /***/ 8773:
@@ -1527,6 +2112,23 @@ module.exports = function (argument) {
1527
2112
  };
1528
2113
 
1529
2114
 
2115
+ /***/ }),
2116
+
2117
+ /***/ 2140:
2118
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2119
+
2120
+ "use strict";
2121
+
2122
+ var wellKnownSymbol = __webpack_require__(8227);
2123
+
2124
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
2125
+ var test = {};
2126
+
2127
+ test[TO_STRING_TAG] = 'z';
2128
+
2129
+ module.exports = String(test) === '[object z]';
2130
+
2131
+
1530
2132
  /***/ }),
1531
2133
 
1532
2134
  /***/ 6823:
@@ -1691,6 +2293,129 @@ $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
1691
2293
  });
1692
2294
 
1693
2295
 
2296
+ /***/ }),
2297
+
2298
+ /***/ 8111:
2299
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2300
+
2301
+ "use strict";
2302
+
2303
+ var $ = __webpack_require__(6518);
2304
+ var globalThis = __webpack_require__(4576);
2305
+ var anInstance = __webpack_require__(679);
2306
+ var anObject = __webpack_require__(8551);
2307
+ var isCallable = __webpack_require__(4901);
2308
+ var getPrototypeOf = __webpack_require__(2787);
2309
+ var defineBuiltInAccessor = __webpack_require__(2106);
2310
+ var createProperty = __webpack_require__(4659);
2311
+ var fails = __webpack_require__(9039);
2312
+ var hasOwn = __webpack_require__(9297);
2313
+ var wellKnownSymbol = __webpack_require__(8227);
2314
+ var IteratorPrototype = (__webpack_require__(7657).IteratorPrototype);
2315
+ var DESCRIPTORS = __webpack_require__(3724);
2316
+ var IS_PURE = __webpack_require__(6395);
2317
+
2318
+ var CONSTRUCTOR = 'constructor';
2319
+ var ITERATOR = 'Iterator';
2320
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
2321
+
2322
+ var $TypeError = TypeError;
2323
+ var NativeIterator = globalThis[ITERATOR];
2324
+
2325
+ // FF56- have non-standard global helper `Iterator`
2326
+ var FORCED = IS_PURE
2327
+ || !isCallable(NativeIterator)
2328
+ || NativeIterator.prototype !== IteratorPrototype
2329
+ // FF44- non-standard `Iterator` passes previous tests
2330
+ || !fails(function () { NativeIterator({}); });
2331
+
2332
+ var IteratorConstructor = function Iterator() {
2333
+ anInstance(this, IteratorPrototype);
2334
+ if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
2335
+ };
2336
+
2337
+ var defineIteratorPrototypeAccessor = function (key, value) {
2338
+ if (DESCRIPTORS) {
2339
+ defineBuiltInAccessor(IteratorPrototype, key, {
2340
+ configurable: true,
2341
+ get: function () {
2342
+ return value;
2343
+ },
2344
+ set: function (replacement) {
2345
+ anObject(this);
2346
+ if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
2347
+ if (hasOwn(this, key)) this[key] = replacement;
2348
+ else createProperty(this, key, replacement);
2349
+ }
2350
+ });
2351
+ } else IteratorPrototype[key] = value;
2352
+ };
2353
+
2354
+ if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
2355
+
2356
+ if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
2357
+ defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
2358
+ }
2359
+
2360
+ IteratorConstructor.prototype = IteratorPrototype;
2361
+
2362
+ // `Iterator` constructor
2363
+ // https://tc39.es/ecma262/#sec-iterator
2364
+ $({ global: true, constructor: true, forced: FORCED }, {
2365
+ Iterator: IteratorConstructor
2366
+ });
2367
+
2368
+
2369
+ /***/ }),
2370
+
2371
+ /***/ 7588:
2372
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2373
+
2374
+ "use strict";
2375
+
2376
+ var $ = __webpack_require__(6518);
2377
+ var iterate = __webpack_require__(2652);
2378
+ var aCallable = __webpack_require__(9306);
2379
+ var anObject = __webpack_require__(8551);
2380
+ var getIteratorDirect = __webpack_require__(1767);
2381
+
2382
+ // `Iterator.prototype.forEach` method
2383
+ // https://tc39.es/ecma262/#sec-iterator.prototype.foreach
2384
+ $({ target: 'Iterator', proto: true, real: true }, {
2385
+ forEach: function forEach(fn) {
2386
+ anObject(this);
2387
+ aCallable(fn);
2388
+ var record = getIteratorDirect(this);
2389
+ var counter = 0;
2390
+ iterate(record, function (value) {
2391
+ fn(value, counter++);
2392
+ }, { IS_RECORD: true });
2393
+ }
2394
+ });
2395
+
2396
+
2397
+ /***/ }),
2398
+
2399
+ /***/ 8992:
2400
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2401
+
2402
+ "use strict";
2403
+
2404
+ // TODO: Remove from `core-js@4`
2405
+ __webpack_require__(8111);
2406
+
2407
+
2408
+ /***/ }),
2409
+
2410
+ /***/ 3949:
2411
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2412
+
2413
+ "use strict";
2414
+
2415
+ // TODO: Remove from `core-js@4`
2416
+ __webpack_require__(7588);
2417
+
2418
+
1694
2419
  /***/ })
1695
2420
 
1696
2421
  /******/ });
@@ -1779,7 +2504,7 @@ $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
1779
2504
  /******/
1780
2505
  /************************************************************************/
1781
2506
  var __webpack_exports__ = {};
1782
- // This entry need to be wrapped in an IIFE because it need to be in strict mode.
2507
+ // This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
1783
2508
  !function() {
1784
2509
  "use strict";
1785
2510
  // ESM COMPAT FLAG
@@ -1918,7 +2643,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
1918
2643
  name: 'ClUI',
1919
2644
  computed: {
1920
2645
  version: function () {
1921
- return "4.18.3" ?? 0;
2646
+ return "4.18.5" ?? 0;
1922
2647
  }
1923
2648
  }
1924
2649
  }));
@@ -1980,7 +2705,7 @@ template.install = Vue => {
1980
2705
  Vue.component(template.name ?? 'ClNoName', template);
1981
2706
  };
1982
2707
  /* harmony default export */ var ClAlert = (template);
1983
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/widget/ClBackCancelOk/template.vue?vue&type=template&id=71f7ff01&ts=true
2708
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/widget/ClBackCancelOk/template.vue?vue&type=template&id=0775da53&ts=true
1984
2709
 
1985
2710
  const _hoisted_1 = {
1986
2711
  key: 0
@@ -1989,8 +2714,8 @@ const _hoisted_2 = {
1989
2714
  key: 1
1990
2715
  };
1991
2716
  const _hoisted_3 = ["disabled"];
1992
- function templatevue_type_template_id_71f7ff01_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
1993
- const _component_cl_modal_ok = (0,external_vue_.resolveComponent)("cl-modal-ok");
2717
+ function templatevue_type_template_id_0775da53_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
2718
+ const _component_cl_modal = (0,external_vue_.resolveComponent)("cl-modal");
1994
2719
  const _component_cl_section_main = (0,external_vue_.resolveComponent)("cl-section-main");
1995
2720
  return (0,external_vue_.openBlock)(), (0,external_vue_.createBlock)(_component_cl_section_main, {
1996
2721
  class: "cl-back-cancel-ok"
@@ -2014,24 +2739,34 @@ function templatevue_type_template_id_71f7ff01_ts_true_render(_ctx, _cache, $pro
2014
2739
  onClick: _cache[1] || (_cache[1] = $event => _ctx.$emit('ok'))
2015
2740
  }, [(0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.ok), 1), _cache[5] || (_cache[5] = (0,external_vue_.createElementVNode)("i", {
2016
2741
  class: "fas fa-angle-right"
2017
- }, null, -1))], 10, _hoisted_3)) : (0,external_vue_.createCommentVNode)("", true)], 2), (0,external_vue_.createVNode)(_component_cl_modal_ok, {
2018
- id: _ctx.ID_MODAL,
2019
- title: "Unsaved changes",
2020
- ok: "Continue editing",
2021
- cancel: "Discard changes",
2022
- onCancel: _cache[2] || (_cache[2] = $event => _ctx.emit('cancel', true)),
2023
- onOk: _cache[3] || (_cache[3] = $event => _ctx.clModalHide())
2742
+ }, null, -1))], 10, _hoisted_3)) : (0,external_vue_.createCommentVNode)("", true)], 2), (0,external_vue_.createVNode)(_component_cl_modal, {
2743
+ id: _ctx.ID_MODAL
2024
2744
  }, {
2025
- default: (0,external_vue_.withCtx)(() => [(0,external_vue_.renderSlot)(_ctx.$slots, "modal", {}, () => [_cache[6] || (_cache[6] = (0,external_vue_.createElementVNode)("p", null, "There are unsaved changes. Do you want to discard them or continue editing?", -1))])]),
2745
+ title: (0,external_vue_.withCtx)(() => _cache[6] || (_cache[6] = [(0,external_vue_.createTextVNode)(" Unsaved changes ")])),
2746
+ body: (0,external_vue_.withCtx)(() => [(0,external_vue_.renderSlot)(_ctx.$slots, "modal", {}, () => [_cache[7] || (_cache[7] = (0,external_vue_.createElementVNode)("p", null, "There are unsaved changes. Do you want to discard them or continue editing?", -1))])]),
2747
+ "footer-left": (0,external_vue_.withCtx)(() => [(0,external_vue_.createElementVNode)("button", {
2748
+ type: "button",
2749
+ class: "btn cl-btn-outline-text it-cancel",
2750
+ onClick: _cache[2] || (_cache[2] = $event => _ctx.emit('cancel', true))
2751
+ }, "Discard changes")]),
2752
+ "footer-right": (0,external_vue_.withCtx)(() => [(0,external_vue_.createElementVNode)("button", {
2753
+ type: "button",
2754
+ class: "btn cl-btn-outline-primary it-ok",
2755
+ onClick: _cache[3] || (_cache[3] = $event => _ctx.clModalHide())
2756
+ }, "Continue editing")]),
2026
2757
  _: 3
2027
2758
  }, 8, ["id"])]),
2028
2759
  _: 3
2029
2760
  });
2030
2761
  }
2031
- ;// ./src/components/widget/ClBackCancelOk/template.vue?vue&type=template&id=71f7ff01&ts=true
2762
+ ;// ./src/components/widget/ClBackCancelOk/template.vue?vue&type=template&id=0775da53&ts=true
2032
2763
 
2033
2764
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
2034
2765
  var es_array_push = __webpack_require__(4114);
2766
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.constructor.js
2767
+ var esnext_iterator_constructor = __webpack_require__(8992);
2768
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.for-each.js
2769
+ var esnext_iterator_for_each = __webpack_require__(3949);
2035
2770
  // EXTERNAL MODULE: ./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js
2036
2771
  var bootstrap_bundle_min = __webpack_require__(8736);
2037
2772
  var bootstrap_bundle_min_default = /*#__PURE__*/__webpack_require__.n(bootstrap_bundle_min);
@@ -2039,6 +2774,8 @@ var bootstrap_bundle_min_default = /*#__PURE__*/__webpack_require__.n(bootstrap_
2039
2774
 
2040
2775
 
2041
2776
 
2777
+
2778
+
2042
2779
  // -----------------------------------------------------------------------------
2043
2780
  // --- html/dom/browser --------------------------------------------------------
2044
2781
  // -----------------------------------------------------------------------------
@@ -2807,8 +3544,8 @@ const clRefHTMLElement = ref => ref;
2807
3544
  this.$emit('cancel');
2808
3545
  }
2809
3546
  },
2810
- emit: function (what, hide = false) {
2811
- if (hide) clModalHide();
3547
+ emit: function (what) {
3548
+ clModalHide();
2812
3549
  this.$emit(what);
2813
3550
  }
2814
3551
  }
@@ -2821,7 +3558,7 @@ const clRefHTMLElement = ref => ref;
2821
3558
 
2822
3559
 
2823
3560
  ;
2824
- const ClBackCancelOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClBackCancelOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_71f7ff01_ts_true_render]])
3561
+ const ClBackCancelOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClBackCancelOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_0775da53_ts_true_render]])
2825
3562
 
2826
3563
  /* harmony default export */ var ClBackCancelOk_template = (ClBackCancelOk_template_exports_);
2827
3564
  ;// ./src/components/widget/ClBackCancelOk/index.ts
@@ -2987,6 +3724,8 @@ function templatevue_type_template_id_0d40ac3c_ts_true_render(_ctx, _cache, $pro
2987
3724
  ;// ./src/utils/vue.js
2988
3725
 
2989
3726
 
3727
+
3728
+
2990
3729
  // utils for Vue.js
2991
3730
 
2992
3731
  // -----------------------------------------------------------------------------
@@ -3118,12 +3857,12 @@ ClCopy_template.install = Vue => {
3118
3857
  Vue.component(ClCopy_template.name ?? 'ClNoName', ClCopy_template);
3119
3858
  };
3120
3859
  /* harmony default export */ var ClCopy = (ClCopy_template);
3121
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/text/ClCreditcardNumber/template.vue?vue&type=template&id=7eb0e382&ts=true
3860
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/text/ClCreditcardNumber/template.vue?vue&type=template&id=4e14a989&ts=true
3122
3861
 
3123
- function templatevue_type_template_id_7eb0e382_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
3862
+ function templatevue_type_template_id_4e14a989_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
3124
3863
  return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)(external_vue_.Fragment, null, [(0,external_vue_.createElementVNode)("code", null, (0,external_vue_.toDisplayString)(_ctx.clFormatCardNumber(_ctx.number)), 1), (0,external_vue_.createTextVNode)(", " + (0,external_vue_.toDisplayString)(_ctx.validText) + " ", 1), (0,external_vue_.createElementVNode)("code", null, (0,external_vue_.toDisplayString)(_ctx.expires), 1)], 64);
3125
3864
  }
3126
- ;// ./src/components/text/ClCreditcardNumber/template.vue?vue&type=template&id=7eb0e382&ts=true
3865
+ ;// ./src/components/text/ClCreditcardNumber/template.vue?vue&type=template&id=4e14a989&ts=true
3127
3866
 
3128
3867
  ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/text/ClCreditcardNumber/template.vue?vue&type=script&lang=ts
3129
3868
 
@@ -3161,7 +3900,7 @@ function templatevue_type_template_id_7eb0e382_ts_true_render(_ctx, _cache, $pro
3161
3900
 
3162
3901
 
3163
3902
  ;
3164
- const ClCreditcardNumber_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClCreditcardNumber_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_7eb0e382_ts_true_render]])
3903
+ const ClCreditcardNumber_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClCreditcardNumber_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_4e14a989_ts_true_render]])
3165
3904
 
3166
3905
  /* harmony default export */ var ClCreditcardNumber_template = (ClCreditcardNumber_template_exports_);
3167
3906
  ;// ./src/components/text/ClCreditcardNumber/index.ts
@@ -4206,25 +4945,25 @@ ClMockRouterLink_template.install = Vue => {
4206
4945
  Vue.component(ClMockRouterLink_template.name ?? 'ClNoName', ClMockRouterLink_template);
4207
4946
  };
4208
4947
  /* harmony default export */ var ClMockRouterLink = (ClMockRouterLink_template);
4209
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModal/template.vue?vue&type=template&id=29236876&ts=true
4948
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModal/template.vue?vue&type=template&id=356c73b0&ts=true
4210
4949
 
4211
- const templatevue_type_template_id_29236876_ts_true_hoisted_1 = ["id"];
4212
- const templatevue_type_template_id_29236876_ts_true_hoisted_2 = {
4950
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_1 = ["id"];
4951
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_2 = {
4213
4952
  class: "modal-dialog"
4214
4953
  };
4215
- const templatevue_type_template_id_29236876_ts_true_hoisted_3 = {
4954
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_3 = {
4216
4955
  class: "modal-content"
4217
4956
  };
4218
- const templatevue_type_template_id_29236876_ts_true_hoisted_4 = {
4957
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_4 = {
4219
4958
  class: "modal-header"
4220
4959
  };
4221
- const templatevue_type_template_id_29236876_ts_true_hoisted_5 = ["href"];
4222
- const templatevue_type_template_id_29236876_ts_true_hoisted_6 = ["id"];
4223
- const templatevue_type_template_id_29236876_ts_true_hoisted_7 = {
4960
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_5 = ["href"];
4961
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_6 = ["id"];
4962
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_7 = {
4224
4963
  key: 1,
4225
4964
  class: "modal-body"
4226
4965
  };
4227
- const templatevue_type_template_id_29236876_ts_true_hoisted_8 = {
4966
+ const templatevue_type_template_id_356c73b0_ts_true_hoisted_8 = {
4228
4967
  class: "modal-footer"
4229
4968
  };
4230
4969
  const _hoisted_9 = {
@@ -4236,13 +4975,13 @@ const _hoisted_10 = {
4236
4975
  const _hoisted_11 = {
4237
4976
  class: "modal-footer-right cl-spacing-box cl-spacing-none"
4238
4977
  };
4239
- function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
4978
+ function templatevue_type_template_id_356c73b0_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
4240
4979
  return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("div", {
4241
4980
  id: _ctx.id,
4242
4981
  class: (0,external_vue_.normalizeClass)(`modal ${_ctx.clazz}`),
4243
4982
  tabindex: "-1",
4244
4983
  "data-bs-backdrop": "static"
4245
- }, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_29236876_ts_true_hoisted_2, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_29236876_ts_true_hoisted_3, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_29236876_ts_true_hoisted_4, [(0,external_vue_.renderSlot)(_ctx.$slots, "title", {}, () => [_cache[1] || (_cache[1] = (0,external_vue_.createTextVNode)(" Information "))]), _ctx.helpUrl ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("a", {
4984
+ }, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_2, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_3, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_4, [(0,external_vue_.renderSlot)(_ctx.$slots, "title", {}, () => [_cache[1] || (_cache[1] = (0,external_vue_.createTextVNode)(" Information "))]), _ctx.helpUrl ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("a", {
4246
4985
  key: 0,
4247
4986
  class: "modal-help",
4248
4987
  href: _ctx.helpUrl,
@@ -4250,15 +4989,15 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
4250
4989
  title: "Show help in new window."
4251
4990
  }, _cache[2] || (_cache[2] = [(0,external_vue_.createElementVNode)("i", {
4252
4991
  class: "far fa-question-circle"
4253
- }, null, -1)]), 8, templatevue_type_template_id_29236876_ts_true_hoisted_5)) : (0,external_vue_.createCommentVNode)("", true)]), _ctx.form ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("form", {
4992
+ }, null, -1)]), 8, templatevue_type_template_id_356c73b0_ts_true_hoisted_5)) : (0,external_vue_.createCommentVNode)("", true)]), _ctx.form ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("form", {
4254
4993
  key: 0,
4255
4994
  id: `${_ctx.id}-form`,
4256
4995
  class: "modal-body cl-form container",
4257
4996
  novalidate: "",
4258
4997
  onSubmit: _cache[0] || (_cache[0] = (0,external_vue_.withModifiers)(() => {}, ["prevent"]))
4259
- }, [(0,external_vue_.renderSlot)(_ctx.$slots, "default"), (0,external_vue_.renderSlot)(_ctx.$slots, "body")], 40, templatevue_type_template_id_29236876_ts_true_hoisted_6)) : ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("div", templatevue_type_template_id_29236876_ts_true_hoisted_7, [(0,external_vue_.renderSlot)(_ctx.$slots, "default"), (0,external_vue_.renderSlot)(_ctx.$slots, "body")])), (0,external_vue_.createElementVNode)("div", templatevue_type_template_id_29236876_ts_true_hoisted_8, [(0,external_vue_.createElementVNode)("span", _hoisted_9, [(0,external_vue_.renderSlot)(_ctx.$slots, "footer-left")]), (0,external_vue_.createElementVNode)("span", _hoisted_10, [(0,external_vue_.renderSlot)(_ctx.$slots, "footer")]), (0,external_vue_.createElementVNode)("span", _hoisted_11, [(0,external_vue_.renderSlot)(_ctx.$slots, "footer-right")])])])])], 10, templatevue_type_template_id_29236876_ts_true_hoisted_1);
4998
+ }, [(0,external_vue_.renderSlot)(_ctx.$slots, "default"), (0,external_vue_.renderSlot)(_ctx.$slots, "body")], 40, templatevue_type_template_id_356c73b0_ts_true_hoisted_6)) : ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_7, [(0,external_vue_.renderSlot)(_ctx.$slots, "default"), (0,external_vue_.renderSlot)(_ctx.$slots, "body")])), (0,external_vue_.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_8, [(0,external_vue_.createElementVNode)("span", _hoisted_9, [(0,external_vue_.renderSlot)(_ctx.$slots, "footer-left")]), (0,external_vue_.createElementVNode)("span", _hoisted_10, [(0,external_vue_.renderSlot)(_ctx.$slots, "footer")]), (0,external_vue_.createElementVNode)("span", _hoisted_11, [(0,external_vue_.renderSlot)(_ctx.$slots, "footer-right")])])])])], 10, templatevue_type_template_id_356c73b0_ts_true_hoisted_1);
4260
4999
  }
4261
- ;// ./src/components/modal/ClModal/template.vue?vue&type=template&id=29236876&ts=true
5000
+ ;// ./src/components/modal/ClModal/template.vue?vue&type=template&id=356c73b0&ts=true
4262
5001
 
4263
5002
  ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModal/template.vue?vue&type=script&lang=ts
4264
5003
 
@@ -4285,11 +5024,11 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
4285
5024
  },
4286
5025
  onClose: {
4287
5026
  type: Function,
4288
- default: () => {}
5027
+ default: null
4289
5028
  },
4290
5029
  onOpen: {
4291
5030
  type: Function,
4292
- default: () => {}
5031
+ default: null
4293
5032
  }
4294
5033
  },
4295
5034
  computed: {
@@ -4303,10 +5042,10 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
4303
5042
  const self = this; // eslint-disable-line @typescript-eslint/no-this-alias
4304
5043
  if (modal) {
4305
5044
  modal.addEventListener('hidden.bs.modal', function () {
4306
- self.onClose();
5045
+ if (self.onClose) self.onClose();
4307
5046
  });
4308
5047
  modal.addEventListener('show.bs.modal', function () {
4309
- self.onOpen();
5048
+ if (self.onOpen) self.onOpen();
4310
5049
  });
4311
5050
  }
4312
5051
  }
@@ -4319,7 +5058,7 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
4319
5058
 
4320
5059
 
4321
5060
  ;
4322
- const ClModal_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModal_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_29236876_ts_true_render]])
5061
+ const ClModal_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModal_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_356c73b0_ts_true_render]])
4323
5062
 
4324
5063
  /* harmony default export */ var ClModal_template = (ClModal_template_exports_);
4325
5064
  ;// ./src/components/modal/ClModal/index.ts
@@ -4328,9 +5067,9 @@ ClModal_template.install = Vue => {
4328
5067
  Vue.component(ClModal_template.name ?? 'ClNoName', ClModal_template);
4329
5068
  };
4330
5069
  /* harmony default export */ var ClModal = (ClModal_template);
4331
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalConfirm/template.vue?vue&type=template&id=13c339f6&ts=true
5070
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalConfirm/template.vue?vue&type=template&id=74f0fb43&ts=true
4332
5071
 
4333
- function templatevue_type_template_id_13c339f6_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
5072
+ function templatevue_type_template_id_74f0fb43_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
4334
5073
  const _component_cl_field = (0,external_vue_.resolveComponent)("cl-field");
4335
5074
  const _component_cl_modal = (0,external_vue_.resolveComponent)("cl-modal");
4336
5075
  return (0,external_vue_.openBlock)(), (0,external_vue_.createBlock)(_component_cl_modal, {
@@ -4367,7 +5106,7 @@ function templatevue_type_template_id_13c339f6_ts_true_render(_ctx, _cache, $pro
4367
5106
  _: 3
4368
5107
  }, 8, ["id", "on-open"]);
4369
5108
  }
4370
- ;// ./src/components/modal/ClModalConfirm/template.vue?vue&type=template&id=13c339f6&ts=true
5109
+ ;// ./src/components/modal/ClModalConfirm/template.vue?vue&type=template&id=74f0fb43&ts=true
4371
5110
 
4372
5111
  ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalConfirm/template.vue?vue&type=script&lang=ts
4373
5112
 
@@ -4422,7 +5161,7 @@ function templatevue_type_template_id_13c339f6_ts_true_render(_ctx, _cache, $pro
4422
5161
 
4423
5162
 
4424
5163
  ;
4425
- const ClModalConfirm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalConfirm_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_13c339f6_ts_true_render]])
5164
+ const ClModalConfirm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalConfirm_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_74f0fb43_ts_true_render]])
4426
5165
 
4427
5166
  /* harmony default export */ var ClModalConfirm_template = (ClModalConfirm_template_exports_);
4428
5167
  ;// ./src/components/modal/ClModalConfirm/index.ts
@@ -4431,22 +5170,22 @@ ClModalConfirm_template.install = Vue => {
4431
5170
  Vue.component(ClModalConfirm_template.name ?? 'ClNoName', ClModalConfirm_template);
4432
5171
  };
4433
5172
  /* harmony default export */ var ClModalConfirm = (ClModalConfirm_template);
4434
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=template&id=7f90f406&ts=true
5173
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=template&id=0cffa84a&ts=true
4435
5174
 
4436
- const templatevue_type_template_id_7f90f406_ts_true_hoisted_1 = {
5175
+ const templatevue_type_template_id_0cffa84a_ts_true_hoisted_1 = {
4437
5176
  key: 0,
4438
5177
  class: "fas fa-angle-left"
4439
5178
  };
4440
- const templatevue_type_template_id_7f90f406_ts_true_hoisted_2 = {
5179
+ const templatevue_type_template_id_0cffa84a_ts_true_hoisted_2 = {
4441
5180
  key: 0,
4442
5181
  class: "fas fa-angle-right"
4443
5182
  };
4444
- function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
5183
+ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
4445
5184
  const _component_cl_modal = (0,external_vue_.resolveComponent)("cl-modal");
4446
5185
  return (0,external_vue_.openBlock)(), (0,external_vue_.createBlock)(_component_cl_modal, {
4447
5186
  id: _ctx.id,
4448
- "on-open": _ctx.onOpen,
4449
- "on-close": _ctx.onClose ?? _ctx.close
5187
+ "on-open": _ctx.opened,
5188
+ "on-close": _ctx.closed
4450
5189
  }, {
4451
5190
  title: (0,external_vue_.withCtx)(() => [(0,external_vue_.createTextVNode)((0,external_vue_.toDisplayString)(_ctx.title), 1)]),
4452
5191
  body: (0,external_vue_.withCtx)(() => [(0,external_vue_.renderSlot)(_ctx.$slots, "default"), (0,external_vue_.createTextVNode)((0,external_vue_.toDisplayString)(_ctx.body), 1)]),
@@ -4456,8 +5195,8 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
4456
5195
  class: "btn cl-btn-outline-text it-cancel",
4457
5196
  onClick: _cache[0] || (_cache[0] =
4458
5197
  //@ts-ignore
4459
- (...args) => _ctx.emitCancel && _ctx.emitCancel(...args))
4460
- }, [_ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i", templatevue_type_template_id_7f90f406_ts_true_hoisted_1)) : (0,external_vue_.createCommentVNode)("", true), (0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.cancel), 1)])) : (0,external_vue_.createCommentVNode)("", true)]),
5198
+ (...args) => _ctx.buttonCancel && _ctx.buttonCancel(...args))
5199
+ }, [_ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i", templatevue_type_template_id_0cffa84a_ts_true_hoisted_1)) : (0,external_vue_.createCommentVNode)("", true), (0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.cancel), 1)])) : (0,external_vue_.createCommentVNode)("", true)]),
4461
5200
  "footer-right": (0,external_vue_.withCtx)(() => [(0,external_vue_.createElementVNode)("button", {
4462
5201
  type: "button",
4463
5202
  class: (0,external_vue_.normalizeClass)(["btn it-ok", {
@@ -4467,15 +5206,16 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
4467
5206
  }]),
4468
5207
  onClick: _cache[1] || (_cache[1] =
4469
5208
  //@ts-ignore
4470
- (...args) => _ctx.emitOk && _ctx.emitOk(...args))
4471
- }, [(0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i", templatevue_type_template_id_7f90f406_ts_true_hoisted_2)) : (0,external_vue_.createCommentVNode)("", true)], 2)]),
5209
+ (...args) => _ctx.buttonOk && _ctx.buttonOk(...args))
5210
+ }, [(0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i", templatevue_type_template_id_0cffa84a_ts_true_hoisted_2)) : (0,external_vue_.createCommentVNode)("", true)], 2)]),
4472
5211
  _: 3
4473
5212
  }, 8, ["id", "on-open", "on-close"]);
4474
5213
  }
4475
- ;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=7f90f406&ts=true
5214
+ ;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=0cffa84a&ts=true
4476
5215
 
4477
5216
  ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=script&lang=ts
4478
5217
 
5218
+
4479
5219
  /* harmony default export */ var ClModalOk_templatevue_type_script_lang_ts = ((0,external_vue_.defineComponent)({
4480
5220
  name: 'ClModalOk',
4481
5221
  inheritAttrs: false,
@@ -4514,11 +5254,11 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
4514
5254
  },
4515
5255
  onClose: {
4516
5256
  type: Function,
4517
- default: undefined
5257
+ default: null
4518
5258
  },
4519
5259
  onOpen: {
4520
5260
  type: Function,
4521
- default: () => {}
5261
+ default: null
4522
5262
  }
4523
5263
  },
4524
5264
  emits: ['ok', 'cancel'],
@@ -4528,20 +5268,27 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
4528
5268
  };
4529
5269
  },
4530
5270
  methods: {
4531
- emitOk: function () {
4532
- this.$emit('ok');
5271
+ buttonOk: function () {
5272
+ // note: order of these items is very important for $emit to only happen once
4533
5273
  this.emitted = true;
5274
+ clModalHide(); // hide first
5275
+ this.$emit('ok', clModalValue(this.id));
4534
5276
  },
4535
- emitCancel: function () {
4536
- this.$emit('cancel');
5277
+ buttonCancel: function () {
5278
+ // note: order of these items is very important for $emit to only happen once
4537
5279
  this.emitted = true;
5280
+ clModalHide();
5281
+ this.$emit('cancel', clModalValue(this.id));
5282
+ },
5283
+ opened: function () {
5284
+ this.emitted = false;
5285
+ if (this.onOpen) this.onOpen();
4538
5286
  },
4539
- close: function () {
5287
+ closed: function () {
4540
5288
  // ESC press emits 'cancel', but should not fire double
4541
5289
  if (!this.emitted) {
4542
- this.$emit('cancel');
5290
+ this.$emit('cancel', clModalValue(this.id));
4543
5291
  }
4544
- this.emitted = false;
4545
5292
  if (this.onClose) this.onClose();
4546
5293
  }
4547
5294
  }
@@ -4554,7 +5301,7 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
4554
5301
 
4555
5302
 
4556
5303
  ;
4557
- const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_7f90f406_ts_true_render]])
5304
+ const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_0cffa84a_ts_true_render]])
4558
5305
 
4559
5306
  /* harmony default export */ var ClModalOk_template = (ClModalOk_template_exports_);
4560
5307
  ;// ./src/components/modal/ClModalOk/index.ts
@@ -4590,6 +5337,8 @@ function templatevue_type_template_id_06ace706_ts_true_render(_ctx, _cache, $pro
4590
5337
  ;// ./src/components/navigation/ClNavSide/template.vue?vue&type=template&id=06ace706&ts=true
4591
5338
 
4592
5339
  ;// ./src/components/navigation/ClNavSide/Side.js
5340
+
5341
+
4593
5342
  function clSidenavToggle() {
4594
5343
  const checkbox = document.getElementById('cl-nav-side');
4595
5344
  if (checkbox) {
@@ -5390,6 +6139,8 @@ function templatevue_type_template_id_690cbc42_ts_true_render(_ctx, _cache, $pro
5390
6139
  ;// ./src/components/table/ClTable/template.vue?vue&type=template&id=690cbc42&ts=true
5391
6140
 
5392
6141
  ;// ./src/components/table/ClTable/Table.js
6142
+
6143
+
5393
6144
  function clTableSetupResize(id) {
5394
6145
  document.querySelectorAll(`#${id} .cl-resizer`).forEach(resizer => {
5395
6146
  clTableSetResizeListeners(resizer);