@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.
|
@@ -68,6 +68,23 @@ module.exports = function (argument) {
|
|
|
68
68
|
};
|
|
69
69
|
|
|
70
70
|
|
|
71
|
+
/***/ }),
|
|
72
|
+
|
|
73
|
+
/***/ 679:
|
|
74
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
75
|
+
|
|
76
|
+
"use strict";
|
|
77
|
+
|
|
78
|
+
var isPrototypeOf = __webpack_require__(1625);
|
|
79
|
+
|
|
80
|
+
var $TypeError = TypeError;
|
|
81
|
+
|
|
82
|
+
module.exports = function (it, Prototype) {
|
|
83
|
+
if (isPrototypeOf(Prototype, it)) return it;
|
|
84
|
+
throw new $TypeError('Incorrect invocation');
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
|
|
71
88
|
/***/ }),
|
|
72
89
|
|
|
73
90
|
/***/ 8551:
|
|
@@ -181,6 +198,44 @@ module.exports = function (it) {
|
|
|
181
198
|
};
|
|
182
199
|
|
|
183
200
|
|
|
201
|
+
/***/ }),
|
|
202
|
+
|
|
203
|
+
/***/ 6955:
|
|
204
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
205
|
+
|
|
206
|
+
"use strict";
|
|
207
|
+
|
|
208
|
+
var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
|
|
209
|
+
var isCallable = __webpack_require__(4901);
|
|
210
|
+
var classofRaw = __webpack_require__(2195);
|
|
211
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
212
|
+
|
|
213
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
214
|
+
var $Object = Object;
|
|
215
|
+
|
|
216
|
+
// ES3 wrong here
|
|
217
|
+
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
|
|
218
|
+
|
|
219
|
+
// fallback for IE11 Script Access Denied error
|
|
220
|
+
var tryGet = function (it, key) {
|
|
221
|
+
try {
|
|
222
|
+
return it[key];
|
|
223
|
+
} catch (error) { /* empty */ }
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
// getting tag from ES6+ `Object.prototype.toString`
|
|
227
|
+
module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
228
|
+
var O, tag, result;
|
|
229
|
+
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
230
|
+
// @@toStringTag case
|
|
231
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
232
|
+
// builtinTag case
|
|
233
|
+
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
234
|
+
// ES3 arguments fallback
|
|
235
|
+
: (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
|
|
236
|
+
};
|
|
237
|
+
|
|
238
|
+
|
|
184
239
|
/***/ }),
|
|
185
240
|
|
|
186
241
|
/***/ 7740:
|
|
@@ -206,6 +261,23 @@ module.exports = function (target, source, exceptions) {
|
|
|
206
261
|
};
|
|
207
262
|
|
|
208
263
|
|
|
264
|
+
/***/ }),
|
|
265
|
+
|
|
266
|
+
/***/ 2211:
|
|
267
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
268
|
+
|
|
269
|
+
"use strict";
|
|
270
|
+
|
|
271
|
+
var fails = __webpack_require__(9039);
|
|
272
|
+
|
|
273
|
+
module.exports = !fails(function () {
|
|
274
|
+
function F() { /* empty */ }
|
|
275
|
+
F.prototype.constructor = null;
|
|
276
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
277
|
+
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
278
|
+
});
|
|
279
|
+
|
|
280
|
+
|
|
209
281
|
/***/ }),
|
|
210
282
|
|
|
211
283
|
/***/ 6699:
|
|
@@ -242,6 +314,40 @@ module.exports = function (bitmap, value) {
|
|
|
242
314
|
};
|
|
243
315
|
|
|
244
316
|
|
|
317
|
+
/***/ }),
|
|
318
|
+
|
|
319
|
+
/***/ 4659:
|
|
320
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
321
|
+
|
|
322
|
+
"use strict";
|
|
323
|
+
|
|
324
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
325
|
+
var definePropertyModule = __webpack_require__(4913);
|
|
326
|
+
var createPropertyDescriptor = __webpack_require__(6980);
|
|
327
|
+
|
|
328
|
+
module.exports = function (object, key, value) {
|
|
329
|
+
if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
|
|
330
|
+
else object[key] = value;
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
/***/ }),
|
|
335
|
+
|
|
336
|
+
/***/ 2106:
|
|
337
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
338
|
+
|
|
339
|
+
"use strict";
|
|
340
|
+
|
|
341
|
+
var makeBuiltIn = __webpack_require__(283);
|
|
342
|
+
var defineProperty = __webpack_require__(4913);
|
|
343
|
+
|
|
344
|
+
module.exports = function (target, name, descriptor) {
|
|
345
|
+
if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
|
|
346
|
+
if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
|
|
347
|
+
return defineProperty.f(target, name, descriptor);
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
|
|
245
351
|
/***/ }),
|
|
246
352
|
|
|
247
353
|
/***/ 6840:
|
|
@@ -499,6 +605,28 @@ module.exports = function (exec) {
|
|
|
499
605
|
};
|
|
500
606
|
|
|
501
607
|
|
|
608
|
+
/***/ }),
|
|
609
|
+
|
|
610
|
+
/***/ 6080:
|
|
611
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
612
|
+
|
|
613
|
+
"use strict";
|
|
614
|
+
|
|
615
|
+
var uncurryThis = __webpack_require__(7476);
|
|
616
|
+
var aCallable = __webpack_require__(9306);
|
|
617
|
+
var NATIVE_BIND = __webpack_require__(616);
|
|
618
|
+
|
|
619
|
+
var bind = uncurryThis(uncurryThis.bind);
|
|
620
|
+
|
|
621
|
+
// optional / simple context binding
|
|
622
|
+
module.exports = function (fn, that) {
|
|
623
|
+
aCallable(fn);
|
|
624
|
+
return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
|
|
625
|
+
return fn.apply(that, arguments);
|
|
626
|
+
};
|
|
627
|
+
};
|
|
628
|
+
|
|
629
|
+
|
|
502
630
|
/***/ }),
|
|
503
631
|
|
|
504
632
|
/***/ 616:
|
|
@@ -558,6 +686,24 @@ module.exports = {
|
|
|
558
686
|
};
|
|
559
687
|
|
|
560
688
|
|
|
689
|
+
/***/ }),
|
|
690
|
+
|
|
691
|
+
/***/ 7476:
|
|
692
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
693
|
+
|
|
694
|
+
"use strict";
|
|
695
|
+
|
|
696
|
+
var classofRaw = __webpack_require__(2195);
|
|
697
|
+
var uncurryThis = __webpack_require__(9504);
|
|
698
|
+
|
|
699
|
+
module.exports = function (fn) {
|
|
700
|
+
// Nashorn bug:
|
|
701
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
702
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
703
|
+
if (classofRaw(fn) === 'Function') return uncurryThis(fn);
|
|
704
|
+
};
|
|
705
|
+
|
|
706
|
+
|
|
561
707
|
/***/ }),
|
|
562
708
|
|
|
563
709
|
/***/ 9504:
|
|
@@ -597,6 +743,68 @@ module.exports = function (namespace, method) {
|
|
|
597
743
|
};
|
|
598
744
|
|
|
599
745
|
|
|
746
|
+
/***/ }),
|
|
747
|
+
|
|
748
|
+
/***/ 1767:
|
|
749
|
+
/***/ (function(module) {
|
|
750
|
+
|
|
751
|
+
"use strict";
|
|
752
|
+
|
|
753
|
+
// `GetIteratorDirect(obj)` abstract operation
|
|
754
|
+
// https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect
|
|
755
|
+
module.exports = function (obj) {
|
|
756
|
+
return {
|
|
757
|
+
iterator: obj,
|
|
758
|
+
next: obj.next,
|
|
759
|
+
done: false
|
|
760
|
+
};
|
|
761
|
+
};
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
/***/ }),
|
|
765
|
+
|
|
766
|
+
/***/ 851:
|
|
767
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
768
|
+
|
|
769
|
+
"use strict";
|
|
770
|
+
|
|
771
|
+
var classof = __webpack_require__(6955);
|
|
772
|
+
var getMethod = __webpack_require__(5966);
|
|
773
|
+
var isNullOrUndefined = __webpack_require__(4117);
|
|
774
|
+
var Iterators = __webpack_require__(6269);
|
|
775
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
776
|
+
|
|
777
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
|
778
|
+
|
|
779
|
+
module.exports = function (it) {
|
|
780
|
+
if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
|
|
781
|
+
|| getMethod(it, '@@iterator')
|
|
782
|
+
|| Iterators[classof(it)];
|
|
783
|
+
};
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
/***/ }),
|
|
787
|
+
|
|
788
|
+
/***/ 81:
|
|
789
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
790
|
+
|
|
791
|
+
"use strict";
|
|
792
|
+
|
|
793
|
+
var call = __webpack_require__(9565);
|
|
794
|
+
var aCallable = __webpack_require__(9306);
|
|
795
|
+
var anObject = __webpack_require__(8551);
|
|
796
|
+
var tryToString = __webpack_require__(6823);
|
|
797
|
+
var getIteratorMethod = __webpack_require__(851);
|
|
798
|
+
|
|
799
|
+
var $TypeError = TypeError;
|
|
800
|
+
|
|
801
|
+
module.exports = function (argument, usingIterator) {
|
|
802
|
+
var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
|
|
803
|
+
if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
|
|
804
|
+
throw new $TypeError(tryToString(argument) + ' is not iterable');
|
|
805
|
+
};
|
|
806
|
+
|
|
807
|
+
|
|
600
808
|
/***/ }),
|
|
601
809
|
|
|
602
810
|
/***/ 5966:
|
|
@@ -669,6 +877,18 @@ module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
|
669
877
|
module.exports = {};
|
|
670
878
|
|
|
671
879
|
|
|
880
|
+
/***/ }),
|
|
881
|
+
|
|
882
|
+
/***/ 397:
|
|
883
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
884
|
+
|
|
885
|
+
"use strict";
|
|
886
|
+
|
|
887
|
+
var getBuiltIn = __webpack_require__(7751);
|
|
888
|
+
|
|
889
|
+
module.exports = getBuiltIn('document', 'documentElement');
|
|
890
|
+
|
|
891
|
+
|
|
672
892
|
/***/ }),
|
|
673
893
|
|
|
674
894
|
/***/ 5917:
|
|
@@ -815,6 +1035,25 @@ module.exports = {
|
|
|
815
1035
|
};
|
|
816
1036
|
|
|
817
1037
|
|
|
1038
|
+
/***/ }),
|
|
1039
|
+
|
|
1040
|
+
/***/ 4209:
|
|
1041
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1042
|
+
|
|
1043
|
+
"use strict";
|
|
1044
|
+
|
|
1045
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
1046
|
+
var Iterators = __webpack_require__(6269);
|
|
1047
|
+
|
|
1048
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
|
1049
|
+
var ArrayPrototype = Array.prototype;
|
|
1050
|
+
|
|
1051
|
+
// check on default Array iterator
|
|
1052
|
+
module.exports = function (it) {
|
|
1053
|
+
return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
|
|
1054
|
+
};
|
|
1055
|
+
|
|
1056
|
+
|
|
818
1057
|
/***/ }),
|
|
819
1058
|
|
|
820
1059
|
/***/ 4376:
|
|
@@ -943,6 +1182,182 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
|
943
1182
|
};
|
|
944
1183
|
|
|
945
1184
|
|
|
1185
|
+
/***/ }),
|
|
1186
|
+
|
|
1187
|
+
/***/ 2652:
|
|
1188
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1189
|
+
|
|
1190
|
+
"use strict";
|
|
1191
|
+
|
|
1192
|
+
var bind = __webpack_require__(6080);
|
|
1193
|
+
var call = __webpack_require__(9565);
|
|
1194
|
+
var anObject = __webpack_require__(8551);
|
|
1195
|
+
var tryToString = __webpack_require__(6823);
|
|
1196
|
+
var isArrayIteratorMethod = __webpack_require__(4209);
|
|
1197
|
+
var lengthOfArrayLike = __webpack_require__(6198);
|
|
1198
|
+
var isPrototypeOf = __webpack_require__(1625);
|
|
1199
|
+
var getIterator = __webpack_require__(81);
|
|
1200
|
+
var getIteratorMethod = __webpack_require__(851);
|
|
1201
|
+
var iteratorClose = __webpack_require__(9539);
|
|
1202
|
+
|
|
1203
|
+
var $TypeError = TypeError;
|
|
1204
|
+
|
|
1205
|
+
var Result = function (stopped, result) {
|
|
1206
|
+
this.stopped = stopped;
|
|
1207
|
+
this.result = result;
|
|
1208
|
+
};
|
|
1209
|
+
|
|
1210
|
+
var ResultPrototype = Result.prototype;
|
|
1211
|
+
|
|
1212
|
+
module.exports = function (iterable, unboundFunction, options) {
|
|
1213
|
+
var that = options && options.that;
|
|
1214
|
+
var AS_ENTRIES = !!(options && options.AS_ENTRIES);
|
|
1215
|
+
var IS_RECORD = !!(options && options.IS_RECORD);
|
|
1216
|
+
var IS_ITERATOR = !!(options && options.IS_ITERATOR);
|
|
1217
|
+
var INTERRUPTED = !!(options && options.INTERRUPTED);
|
|
1218
|
+
var fn = bind(unboundFunction, that);
|
|
1219
|
+
var iterator, iterFn, index, length, result, next, step;
|
|
1220
|
+
|
|
1221
|
+
var stop = function (condition) {
|
|
1222
|
+
if (iterator) iteratorClose(iterator, 'normal', condition);
|
|
1223
|
+
return new Result(true, condition);
|
|
1224
|
+
};
|
|
1225
|
+
|
|
1226
|
+
var callFn = function (value) {
|
|
1227
|
+
if (AS_ENTRIES) {
|
|
1228
|
+
anObject(value);
|
|
1229
|
+
return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
|
|
1230
|
+
} return INTERRUPTED ? fn(value, stop) : fn(value);
|
|
1231
|
+
};
|
|
1232
|
+
|
|
1233
|
+
if (IS_RECORD) {
|
|
1234
|
+
iterator = iterable.iterator;
|
|
1235
|
+
} else if (IS_ITERATOR) {
|
|
1236
|
+
iterator = iterable;
|
|
1237
|
+
} else {
|
|
1238
|
+
iterFn = getIteratorMethod(iterable);
|
|
1239
|
+
if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
|
|
1240
|
+
// optimisation for array iterators
|
|
1241
|
+
if (isArrayIteratorMethod(iterFn)) {
|
|
1242
|
+
for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
|
|
1243
|
+
result = callFn(iterable[index]);
|
|
1244
|
+
if (result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
1245
|
+
} return new Result(false);
|
|
1246
|
+
}
|
|
1247
|
+
iterator = getIterator(iterable, iterFn);
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
next = IS_RECORD ? iterable.next : iterator.next;
|
|
1251
|
+
while (!(step = call(next, iterator)).done) {
|
|
1252
|
+
try {
|
|
1253
|
+
result = callFn(step.value);
|
|
1254
|
+
} catch (error) {
|
|
1255
|
+
iteratorClose(iterator, 'throw', error);
|
|
1256
|
+
}
|
|
1257
|
+
if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
1258
|
+
} return new Result(false);
|
|
1259
|
+
};
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
/***/ }),
|
|
1263
|
+
|
|
1264
|
+
/***/ 9539:
|
|
1265
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1266
|
+
|
|
1267
|
+
"use strict";
|
|
1268
|
+
|
|
1269
|
+
var call = __webpack_require__(9565);
|
|
1270
|
+
var anObject = __webpack_require__(8551);
|
|
1271
|
+
var getMethod = __webpack_require__(5966);
|
|
1272
|
+
|
|
1273
|
+
module.exports = function (iterator, kind, value) {
|
|
1274
|
+
var innerResult, innerError;
|
|
1275
|
+
anObject(iterator);
|
|
1276
|
+
try {
|
|
1277
|
+
innerResult = getMethod(iterator, 'return');
|
|
1278
|
+
if (!innerResult) {
|
|
1279
|
+
if (kind === 'throw') throw value;
|
|
1280
|
+
return value;
|
|
1281
|
+
}
|
|
1282
|
+
innerResult = call(innerResult, iterator);
|
|
1283
|
+
} catch (error) {
|
|
1284
|
+
innerError = true;
|
|
1285
|
+
innerResult = error;
|
|
1286
|
+
}
|
|
1287
|
+
if (kind === 'throw') throw value;
|
|
1288
|
+
if (innerError) throw innerResult;
|
|
1289
|
+
anObject(innerResult);
|
|
1290
|
+
return value;
|
|
1291
|
+
};
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
/***/ }),
|
|
1295
|
+
|
|
1296
|
+
/***/ 7657:
|
|
1297
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1298
|
+
|
|
1299
|
+
"use strict";
|
|
1300
|
+
|
|
1301
|
+
var fails = __webpack_require__(9039);
|
|
1302
|
+
var isCallable = __webpack_require__(4901);
|
|
1303
|
+
var isObject = __webpack_require__(34);
|
|
1304
|
+
var create = __webpack_require__(2360);
|
|
1305
|
+
var getPrototypeOf = __webpack_require__(2787);
|
|
1306
|
+
var defineBuiltIn = __webpack_require__(6840);
|
|
1307
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
1308
|
+
var IS_PURE = __webpack_require__(6395);
|
|
1309
|
+
|
|
1310
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
|
1311
|
+
var BUGGY_SAFARI_ITERATORS = false;
|
|
1312
|
+
|
|
1313
|
+
// `%IteratorPrototype%` object
|
|
1314
|
+
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
1315
|
+
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
1316
|
+
|
|
1317
|
+
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
1318
|
+
if ([].keys) {
|
|
1319
|
+
arrayIterator = [].keys();
|
|
1320
|
+
// Safari 8 has buggy iterators w/o `next`
|
|
1321
|
+
if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
|
|
1322
|
+
else {
|
|
1323
|
+
PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
|
|
1324
|
+
if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
|
|
1329
|
+
var test = {};
|
|
1330
|
+
// FF44- legacy iterators case
|
|
1331
|
+
return IteratorPrototype[ITERATOR].call(test) !== test;
|
|
1332
|
+
});
|
|
1333
|
+
|
|
1334
|
+
if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
|
|
1335
|
+
else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
|
|
1336
|
+
|
|
1337
|
+
// `%IteratorPrototype%[@@iterator]()` method
|
|
1338
|
+
// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
|
|
1339
|
+
if (!isCallable(IteratorPrototype[ITERATOR])) {
|
|
1340
|
+
defineBuiltIn(IteratorPrototype, ITERATOR, function () {
|
|
1341
|
+
return this;
|
|
1342
|
+
});
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
module.exports = {
|
|
1346
|
+
IteratorPrototype: IteratorPrototype,
|
|
1347
|
+
BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
|
|
1348
|
+
};
|
|
1349
|
+
|
|
1350
|
+
|
|
1351
|
+
/***/ }),
|
|
1352
|
+
|
|
1353
|
+
/***/ 6269:
|
|
1354
|
+
/***/ (function(module) {
|
|
1355
|
+
|
|
1356
|
+
"use strict";
|
|
1357
|
+
|
|
1358
|
+
module.exports = {};
|
|
1359
|
+
|
|
1360
|
+
|
|
946
1361
|
/***/ }),
|
|
947
1362
|
|
|
948
1363
|
/***/ 6198:
|
|
@@ -1041,6 +1456,128 @@ module.exports = Math.trunc || function trunc(x) {
|
|
|
1041
1456
|
};
|
|
1042
1457
|
|
|
1043
1458
|
|
|
1459
|
+
/***/ }),
|
|
1460
|
+
|
|
1461
|
+
/***/ 2360:
|
|
1462
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1463
|
+
|
|
1464
|
+
"use strict";
|
|
1465
|
+
|
|
1466
|
+
/* global ActiveXObject -- old IE, WSH */
|
|
1467
|
+
var anObject = __webpack_require__(8551);
|
|
1468
|
+
var definePropertiesModule = __webpack_require__(6801);
|
|
1469
|
+
var enumBugKeys = __webpack_require__(8727);
|
|
1470
|
+
var hiddenKeys = __webpack_require__(421);
|
|
1471
|
+
var html = __webpack_require__(397);
|
|
1472
|
+
var documentCreateElement = __webpack_require__(4055);
|
|
1473
|
+
var sharedKey = __webpack_require__(6119);
|
|
1474
|
+
|
|
1475
|
+
var GT = '>';
|
|
1476
|
+
var LT = '<';
|
|
1477
|
+
var PROTOTYPE = 'prototype';
|
|
1478
|
+
var SCRIPT = 'script';
|
|
1479
|
+
var IE_PROTO = sharedKey('IE_PROTO');
|
|
1480
|
+
|
|
1481
|
+
var EmptyConstructor = function () { /* empty */ };
|
|
1482
|
+
|
|
1483
|
+
var scriptTag = function (content) {
|
|
1484
|
+
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
1485
|
+
};
|
|
1486
|
+
|
|
1487
|
+
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
1488
|
+
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
1489
|
+
activeXDocument.write(scriptTag(''));
|
|
1490
|
+
activeXDocument.close();
|
|
1491
|
+
var temp = activeXDocument.parentWindow.Object;
|
|
1492
|
+
// eslint-disable-next-line no-useless-assignment -- avoid memory leak
|
|
1493
|
+
activeXDocument = null;
|
|
1494
|
+
return temp;
|
|
1495
|
+
};
|
|
1496
|
+
|
|
1497
|
+
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
1498
|
+
var NullProtoObjectViaIFrame = function () {
|
|
1499
|
+
// Thrash, waste and sodomy: IE GC bug
|
|
1500
|
+
var iframe = documentCreateElement('iframe');
|
|
1501
|
+
var JS = 'java' + SCRIPT + ':';
|
|
1502
|
+
var iframeDocument;
|
|
1503
|
+
iframe.style.display = 'none';
|
|
1504
|
+
html.appendChild(iframe);
|
|
1505
|
+
// https://github.com/zloirock/core-js/issues/475
|
|
1506
|
+
iframe.src = String(JS);
|
|
1507
|
+
iframeDocument = iframe.contentWindow.document;
|
|
1508
|
+
iframeDocument.open();
|
|
1509
|
+
iframeDocument.write(scriptTag('document.F=Object'));
|
|
1510
|
+
iframeDocument.close();
|
|
1511
|
+
return iframeDocument.F;
|
|
1512
|
+
};
|
|
1513
|
+
|
|
1514
|
+
// Check for document.domain and active x support
|
|
1515
|
+
// No need to use active x approach when document.domain is not set
|
|
1516
|
+
// see https://github.com/es-shims/es5-shim/issues/150
|
|
1517
|
+
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
1518
|
+
// avoid IE GC bug
|
|
1519
|
+
var activeXDocument;
|
|
1520
|
+
var NullProtoObject = function () {
|
|
1521
|
+
try {
|
|
1522
|
+
activeXDocument = new ActiveXObject('htmlfile');
|
|
1523
|
+
} catch (error) { /* ignore */ }
|
|
1524
|
+
NullProtoObject = typeof document != 'undefined'
|
|
1525
|
+
? document.domain && activeXDocument
|
|
1526
|
+
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
|
1527
|
+
: NullProtoObjectViaIFrame()
|
|
1528
|
+
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
|
1529
|
+
var length = enumBugKeys.length;
|
|
1530
|
+
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
1531
|
+
return NullProtoObject();
|
|
1532
|
+
};
|
|
1533
|
+
|
|
1534
|
+
hiddenKeys[IE_PROTO] = true;
|
|
1535
|
+
|
|
1536
|
+
// `Object.create` method
|
|
1537
|
+
// https://tc39.es/ecma262/#sec-object.create
|
|
1538
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
1539
|
+
module.exports = Object.create || function create(O, Properties) {
|
|
1540
|
+
var result;
|
|
1541
|
+
if (O !== null) {
|
|
1542
|
+
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
1543
|
+
result = new EmptyConstructor();
|
|
1544
|
+
EmptyConstructor[PROTOTYPE] = null;
|
|
1545
|
+
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
1546
|
+
result[IE_PROTO] = O;
|
|
1547
|
+
} else result = NullProtoObject();
|
|
1548
|
+
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
1549
|
+
};
|
|
1550
|
+
|
|
1551
|
+
|
|
1552
|
+
/***/ }),
|
|
1553
|
+
|
|
1554
|
+
/***/ 6801:
|
|
1555
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1556
|
+
|
|
1557
|
+
"use strict";
|
|
1558
|
+
|
|
1559
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
1560
|
+
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
|
|
1561
|
+
var definePropertyModule = __webpack_require__(4913);
|
|
1562
|
+
var anObject = __webpack_require__(8551);
|
|
1563
|
+
var toIndexedObject = __webpack_require__(5397);
|
|
1564
|
+
var objectKeys = __webpack_require__(1072);
|
|
1565
|
+
|
|
1566
|
+
// `Object.defineProperties` method
|
|
1567
|
+
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
1568
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
1569
|
+
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
1570
|
+
anObject(O);
|
|
1571
|
+
var props = toIndexedObject(Properties);
|
|
1572
|
+
var keys = objectKeys(Properties);
|
|
1573
|
+
var length = keys.length;
|
|
1574
|
+
var index = 0;
|
|
1575
|
+
var key;
|
|
1576
|
+
while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
|
|
1577
|
+
return O;
|
|
1578
|
+
};
|
|
1579
|
+
|
|
1580
|
+
|
|
1044
1581
|
/***/ }),
|
|
1045
1582
|
|
|
1046
1583
|
/***/ 4913:
|
|
@@ -1155,6 +1692,36 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
1155
1692
|
exports.f = Object.getOwnPropertySymbols;
|
|
1156
1693
|
|
|
1157
1694
|
|
|
1695
|
+
/***/ }),
|
|
1696
|
+
|
|
1697
|
+
/***/ 2787:
|
|
1698
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1699
|
+
|
|
1700
|
+
"use strict";
|
|
1701
|
+
|
|
1702
|
+
var hasOwn = __webpack_require__(9297);
|
|
1703
|
+
var isCallable = __webpack_require__(4901);
|
|
1704
|
+
var toObject = __webpack_require__(8981);
|
|
1705
|
+
var sharedKey = __webpack_require__(6119);
|
|
1706
|
+
var CORRECT_PROTOTYPE_GETTER = __webpack_require__(2211);
|
|
1707
|
+
|
|
1708
|
+
var IE_PROTO = sharedKey('IE_PROTO');
|
|
1709
|
+
var $Object = Object;
|
|
1710
|
+
var ObjectPrototype = $Object.prototype;
|
|
1711
|
+
|
|
1712
|
+
// `Object.getPrototypeOf` method
|
|
1713
|
+
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
1714
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
1715
|
+
module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
|
|
1716
|
+
var object = toObject(O);
|
|
1717
|
+
if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
|
|
1718
|
+
var constructor = object.constructor;
|
|
1719
|
+
if (isCallable(constructor) && object instanceof constructor) {
|
|
1720
|
+
return constructor.prototype;
|
|
1721
|
+
} return object instanceof $Object ? ObjectPrototype : null;
|
|
1722
|
+
};
|
|
1723
|
+
|
|
1724
|
+
|
|
1158
1725
|
/***/ }),
|
|
1159
1726
|
|
|
1160
1727
|
/***/ 1625:
|
|
@@ -1196,6 +1763,24 @@ module.exports = function (object, names) {
|
|
|
1196
1763
|
};
|
|
1197
1764
|
|
|
1198
1765
|
|
|
1766
|
+
/***/ }),
|
|
1767
|
+
|
|
1768
|
+
/***/ 1072:
|
|
1769
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1770
|
+
|
|
1771
|
+
"use strict";
|
|
1772
|
+
|
|
1773
|
+
var internalObjectKeys = __webpack_require__(1828);
|
|
1774
|
+
var enumBugKeys = __webpack_require__(8727);
|
|
1775
|
+
|
|
1776
|
+
// `Object.keys` method
|
|
1777
|
+
// https://tc39.es/ecma262/#sec-object.keys
|
|
1778
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
1779
|
+
module.exports = Object.keys || function keys(O) {
|
|
1780
|
+
return internalObjectKeys(O, enumBugKeys);
|
|
1781
|
+
};
|
|
1782
|
+
|
|
1783
|
+
|
|
1199
1784
|
/***/ }),
|
|
1200
1785
|
|
|
1201
1786
|
/***/ 8773:
|
|
@@ -1509,6 +2094,23 @@ module.exports = function (argument) {
|
|
|
1509
2094
|
};
|
|
1510
2095
|
|
|
1511
2096
|
|
|
2097
|
+
/***/ }),
|
|
2098
|
+
|
|
2099
|
+
/***/ 2140:
|
|
2100
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2101
|
+
|
|
2102
|
+
"use strict";
|
|
2103
|
+
|
|
2104
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
2105
|
+
|
|
2106
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
2107
|
+
var test = {};
|
|
2108
|
+
|
|
2109
|
+
test[TO_STRING_TAG] = 'z';
|
|
2110
|
+
|
|
2111
|
+
module.exports = String(test) === '[object z]';
|
|
2112
|
+
|
|
2113
|
+
|
|
1512
2114
|
/***/ }),
|
|
1513
2115
|
|
|
1514
2116
|
/***/ 6823:
|
|
@@ -1673,6 +2275,129 @@ $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
|
|
1673
2275
|
});
|
|
1674
2276
|
|
|
1675
2277
|
|
|
2278
|
+
/***/ }),
|
|
2279
|
+
|
|
2280
|
+
/***/ 8111:
|
|
2281
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2282
|
+
|
|
2283
|
+
"use strict";
|
|
2284
|
+
|
|
2285
|
+
var $ = __webpack_require__(6518);
|
|
2286
|
+
var globalThis = __webpack_require__(4576);
|
|
2287
|
+
var anInstance = __webpack_require__(679);
|
|
2288
|
+
var anObject = __webpack_require__(8551);
|
|
2289
|
+
var isCallable = __webpack_require__(4901);
|
|
2290
|
+
var getPrototypeOf = __webpack_require__(2787);
|
|
2291
|
+
var defineBuiltInAccessor = __webpack_require__(2106);
|
|
2292
|
+
var createProperty = __webpack_require__(4659);
|
|
2293
|
+
var fails = __webpack_require__(9039);
|
|
2294
|
+
var hasOwn = __webpack_require__(9297);
|
|
2295
|
+
var wellKnownSymbol = __webpack_require__(8227);
|
|
2296
|
+
var IteratorPrototype = (__webpack_require__(7657).IteratorPrototype);
|
|
2297
|
+
var DESCRIPTORS = __webpack_require__(3724);
|
|
2298
|
+
var IS_PURE = __webpack_require__(6395);
|
|
2299
|
+
|
|
2300
|
+
var CONSTRUCTOR = 'constructor';
|
|
2301
|
+
var ITERATOR = 'Iterator';
|
|
2302
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
2303
|
+
|
|
2304
|
+
var $TypeError = TypeError;
|
|
2305
|
+
var NativeIterator = globalThis[ITERATOR];
|
|
2306
|
+
|
|
2307
|
+
// FF56- have non-standard global helper `Iterator`
|
|
2308
|
+
var FORCED = IS_PURE
|
|
2309
|
+
|| !isCallable(NativeIterator)
|
|
2310
|
+
|| NativeIterator.prototype !== IteratorPrototype
|
|
2311
|
+
// FF44- non-standard `Iterator` passes previous tests
|
|
2312
|
+
|| !fails(function () { NativeIterator({}); });
|
|
2313
|
+
|
|
2314
|
+
var IteratorConstructor = function Iterator() {
|
|
2315
|
+
anInstance(this, IteratorPrototype);
|
|
2316
|
+
if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
|
|
2317
|
+
};
|
|
2318
|
+
|
|
2319
|
+
var defineIteratorPrototypeAccessor = function (key, value) {
|
|
2320
|
+
if (DESCRIPTORS) {
|
|
2321
|
+
defineBuiltInAccessor(IteratorPrototype, key, {
|
|
2322
|
+
configurable: true,
|
|
2323
|
+
get: function () {
|
|
2324
|
+
return value;
|
|
2325
|
+
},
|
|
2326
|
+
set: function (replacement) {
|
|
2327
|
+
anObject(this);
|
|
2328
|
+
if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
|
|
2329
|
+
if (hasOwn(this, key)) this[key] = replacement;
|
|
2330
|
+
else createProperty(this, key, replacement);
|
|
2331
|
+
}
|
|
2332
|
+
});
|
|
2333
|
+
} else IteratorPrototype[key] = value;
|
|
2334
|
+
};
|
|
2335
|
+
|
|
2336
|
+
if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
|
|
2337
|
+
|
|
2338
|
+
if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
|
|
2339
|
+
defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
IteratorConstructor.prototype = IteratorPrototype;
|
|
2343
|
+
|
|
2344
|
+
// `Iterator` constructor
|
|
2345
|
+
// https://tc39.es/ecma262/#sec-iterator
|
|
2346
|
+
$({ global: true, constructor: true, forced: FORCED }, {
|
|
2347
|
+
Iterator: IteratorConstructor
|
|
2348
|
+
});
|
|
2349
|
+
|
|
2350
|
+
|
|
2351
|
+
/***/ }),
|
|
2352
|
+
|
|
2353
|
+
/***/ 7588:
|
|
2354
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2355
|
+
|
|
2356
|
+
"use strict";
|
|
2357
|
+
|
|
2358
|
+
var $ = __webpack_require__(6518);
|
|
2359
|
+
var iterate = __webpack_require__(2652);
|
|
2360
|
+
var aCallable = __webpack_require__(9306);
|
|
2361
|
+
var anObject = __webpack_require__(8551);
|
|
2362
|
+
var getIteratorDirect = __webpack_require__(1767);
|
|
2363
|
+
|
|
2364
|
+
// `Iterator.prototype.forEach` method
|
|
2365
|
+
// https://tc39.es/ecma262/#sec-iterator.prototype.foreach
|
|
2366
|
+
$({ target: 'Iterator', proto: true, real: true }, {
|
|
2367
|
+
forEach: function forEach(fn) {
|
|
2368
|
+
anObject(this);
|
|
2369
|
+
aCallable(fn);
|
|
2370
|
+
var record = getIteratorDirect(this);
|
|
2371
|
+
var counter = 0;
|
|
2372
|
+
iterate(record, function (value) {
|
|
2373
|
+
fn(value, counter++);
|
|
2374
|
+
}, { IS_RECORD: true });
|
|
2375
|
+
}
|
|
2376
|
+
});
|
|
2377
|
+
|
|
2378
|
+
|
|
2379
|
+
/***/ }),
|
|
2380
|
+
|
|
2381
|
+
/***/ 8992:
|
|
2382
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2383
|
+
|
|
2384
|
+
"use strict";
|
|
2385
|
+
|
|
2386
|
+
// TODO: Remove from `core-js@4`
|
|
2387
|
+
__webpack_require__(8111);
|
|
2388
|
+
|
|
2389
|
+
|
|
2390
|
+
/***/ }),
|
|
2391
|
+
|
|
2392
|
+
/***/ 3949:
|
|
2393
|
+
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2394
|
+
|
|
2395
|
+
"use strict";
|
|
2396
|
+
|
|
2397
|
+
// TODO: Remove from `core-js@4`
|
|
2398
|
+
__webpack_require__(7588);
|
|
2399
|
+
|
|
2400
|
+
|
|
1676
2401
|
/***/ })
|
|
1677
2402
|
|
|
1678
2403
|
/******/ });
|
|
@@ -1761,7 +2486,7 @@ $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
|
|
1761
2486
|
/******/
|
|
1762
2487
|
/************************************************************************/
|
|
1763
2488
|
var __webpack_exports__ = {};
|
|
1764
|
-
// This entry
|
|
2489
|
+
// This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
|
|
1765
2490
|
!function() {
|
|
1766
2491
|
"use strict";
|
|
1767
2492
|
// ESM COMPAT FLAG
|
|
@@ -1900,7 +2625,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1900
2625
|
name: 'ClUI',
|
|
1901
2626
|
computed: {
|
|
1902
2627
|
version: function () {
|
|
1903
|
-
return "4.18.
|
|
2628
|
+
return "4.18.5" ?? 0;
|
|
1904
2629
|
}
|
|
1905
2630
|
}
|
|
1906
2631
|
}));
|
|
@@ -1962,7 +2687,7 @@ template.install = Vue => {
|
|
|
1962
2687
|
Vue.component(template.name ?? 'ClNoName', template);
|
|
1963
2688
|
};
|
|
1964
2689
|
/* harmony default export */ var ClAlert = (template);
|
|
1965
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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=
|
|
2690
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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
|
|
1966
2691
|
|
|
1967
2692
|
const _hoisted_1 = {
|
|
1968
2693
|
key: 0
|
|
@@ -1971,8 +2696,8 @@ const _hoisted_2 = {
|
|
|
1971
2696
|
key: 1
|
|
1972
2697
|
};
|
|
1973
2698
|
const _hoisted_3 = ["disabled"];
|
|
1974
|
-
function
|
|
1975
|
-
const
|
|
2699
|
+
function templatevue_type_template_id_0775da53_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2700
|
+
const _component_cl_modal = (0,external_vue_namespaceObject.resolveComponent)("cl-modal");
|
|
1976
2701
|
const _component_cl_section_main = (0,external_vue_namespaceObject.resolveComponent)("cl-section-main");
|
|
1977
2702
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createBlock)(_component_cl_section_main, {
|
|
1978
2703
|
class: "cl-back-cancel-ok"
|
|
@@ -1996,24 +2721,34 @@ function templatevue_type_template_id_71f7ff01_ts_true_render(_ctx, _cache, $pro
|
|
|
1996
2721
|
onClick: _cache[1] || (_cache[1] = $event => _ctx.$emit('ok'))
|
|
1997
2722
|
}, [(0,external_vue_namespaceObject.createElementVNode)("span", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.ok), 1), _cache[5] || (_cache[5] = (0,external_vue_namespaceObject.createElementVNode)("i", {
|
|
1998
2723
|
class: "fas fa-angle-right"
|
|
1999
|
-
}, null, -1))], 10, _hoisted_3)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)], 2), (0,external_vue_namespaceObject.createVNode)(
|
|
2000
|
-
id: _ctx.ID_MODAL
|
|
2001
|
-
title: "Unsaved changes",
|
|
2002
|
-
ok: "Continue editing",
|
|
2003
|
-
cancel: "Discard changes",
|
|
2004
|
-
onCancel: _cache[2] || (_cache[2] = $event => _ctx.emit('cancel', true)),
|
|
2005
|
-
onOk: _cache[3] || (_cache[3] = $event => _ctx.clModalHide())
|
|
2724
|
+
}, null, -1))], 10, _hoisted_3)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)], 2), (0,external_vue_namespaceObject.createVNode)(_component_cl_modal, {
|
|
2725
|
+
id: _ctx.ID_MODAL
|
|
2006
2726
|
}, {
|
|
2007
|
-
|
|
2727
|
+
title: (0,external_vue_namespaceObject.withCtx)(() => _cache[6] || (_cache[6] = [(0,external_vue_namespaceObject.createTextVNode)(" Unsaved changes ")])),
|
|
2728
|
+
body: (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "modal", {}, () => [_cache[7] || (_cache[7] = (0,external_vue_namespaceObject.createElementVNode)("p", null, "There are unsaved changes. Do you want to discard them or continue editing?", -1))])]),
|
|
2729
|
+
"footer-left": (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.createElementVNode)("button", {
|
|
2730
|
+
type: "button",
|
|
2731
|
+
class: "btn cl-btn-outline-text it-cancel",
|
|
2732
|
+
onClick: _cache[2] || (_cache[2] = $event => _ctx.emit('cancel', true))
|
|
2733
|
+
}, "Discard changes")]),
|
|
2734
|
+
"footer-right": (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.createElementVNode)("button", {
|
|
2735
|
+
type: "button",
|
|
2736
|
+
class: "btn cl-btn-outline-primary it-ok",
|
|
2737
|
+
onClick: _cache[3] || (_cache[3] = $event => _ctx.clModalHide())
|
|
2738
|
+
}, "Continue editing")]),
|
|
2008
2739
|
_: 3
|
|
2009
2740
|
}, 8, ["id"])]),
|
|
2010
2741
|
_: 3
|
|
2011
2742
|
});
|
|
2012
2743
|
}
|
|
2013
|
-
;// ./src/components/widget/ClBackCancelOk/template.vue?vue&type=template&id=
|
|
2744
|
+
;// ./src/components/widget/ClBackCancelOk/template.vue?vue&type=template&id=0775da53&ts=true
|
|
2014
2745
|
|
|
2015
2746
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
2016
2747
|
var es_array_push = __webpack_require__(4114);
|
|
2748
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.constructor.js
|
|
2749
|
+
var esnext_iterator_constructor = __webpack_require__(8992);
|
|
2750
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.for-each.js
|
|
2751
|
+
var esnext_iterator_for_each = __webpack_require__(3949);
|
|
2017
2752
|
// EXTERNAL MODULE: ./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js
|
|
2018
2753
|
var bootstrap_bundle_min = __webpack_require__(8736);
|
|
2019
2754
|
var bootstrap_bundle_min_default = /*#__PURE__*/__webpack_require__.n(bootstrap_bundle_min);
|
|
@@ -2021,6 +2756,8 @@ var bootstrap_bundle_min_default = /*#__PURE__*/__webpack_require__.n(bootstrap_
|
|
|
2021
2756
|
|
|
2022
2757
|
|
|
2023
2758
|
|
|
2759
|
+
|
|
2760
|
+
|
|
2024
2761
|
// -----------------------------------------------------------------------------
|
|
2025
2762
|
// --- html/dom/browser --------------------------------------------------------
|
|
2026
2763
|
// -----------------------------------------------------------------------------
|
|
@@ -2789,8 +3526,8 @@ const clRefHTMLElement = ref => ref;
|
|
|
2789
3526
|
this.$emit('cancel');
|
|
2790
3527
|
}
|
|
2791
3528
|
},
|
|
2792
|
-
emit: function (what
|
|
2793
|
-
|
|
3529
|
+
emit: function (what) {
|
|
3530
|
+
clModalHide();
|
|
2794
3531
|
this.$emit(what);
|
|
2795
3532
|
}
|
|
2796
3533
|
}
|
|
@@ -2803,7 +3540,7 @@ const clRefHTMLElement = ref => ref;
|
|
|
2803
3540
|
|
|
2804
3541
|
|
|
2805
3542
|
;
|
|
2806
|
-
const ClBackCancelOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClBackCancelOk_templatevue_type_script_lang_ts, [['render',
|
|
3543
|
+
const ClBackCancelOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClBackCancelOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_0775da53_ts_true_render]])
|
|
2807
3544
|
|
|
2808
3545
|
/* harmony default export */ var ClBackCancelOk_template = (ClBackCancelOk_template_exports_);
|
|
2809
3546
|
;// ./src/components/widget/ClBackCancelOk/index.ts
|
|
@@ -2969,6 +3706,8 @@ function templatevue_type_template_id_0d40ac3c_ts_true_render(_ctx, _cache, $pro
|
|
|
2969
3706
|
;// ./src/utils/vue.js
|
|
2970
3707
|
|
|
2971
3708
|
|
|
3709
|
+
|
|
3710
|
+
|
|
2972
3711
|
// utils for Vue.js
|
|
2973
3712
|
|
|
2974
3713
|
// -----------------------------------------------------------------------------
|
|
@@ -3100,12 +3839,12 @@ ClCopy_template.install = Vue => {
|
|
|
3100
3839
|
Vue.component(ClCopy_template.name ?? 'ClNoName', ClCopy_template);
|
|
3101
3840
|
};
|
|
3102
3841
|
/* harmony default export */ var ClCopy = (ClCopy_template);
|
|
3103
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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=
|
|
3842
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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
|
|
3104
3843
|
|
|
3105
|
-
function
|
|
3844
|
+
function templatevue_type_template_id_4e14a989_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3106
3845
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)(external_vue_namespaceObject.Fragment, null, [(0,external_vue_namespaceObject.createElementVNode)("code", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.clFormatCardNumber(_ctx.number)), 1), (0,external_vue_namespaceObject.createTextVNode)(", " + (0,external_vue_namespaceObject.toDisplayString)(_ctx.validText) + " ", 1), (0,external_vue_namespaceObject.createElementVNode)("code", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.expires), 1)], 64);
|
|
3107
3846
|
}
|
|
3108
|
-
;// ./src/components/text/ClCreditcardNumber/template.vue?vue&type=template&id=
|
|
3847
|
+
;// ./src/components/text/ClCreditcardNumber/template.vue?vue&type=template&id=4e14a989&ts=true
|
|
3109
3848
|
|
|
3110
3849
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/text/ClCreditcardNumber/template.vue?vue&type=script&lang=ts
|
|
3111
3850
|
|
|
@@ -3143,7 +3882,7 @@ function templatevue_type_template_id_7eb0e382_ts_true_render(_ctx, _cache, $pro
|
|
|
3143
3882
|
|
|
3144
3883
|
|
|
3145
3884
|
;
|
|
3146
|
-
const ClCreditcardNumber_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClCreditcardNumber_templatevue_type_script_lang_ts, [['render',
|
|
3885
|
+
const ClCreditcardNumber_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClCreditcardNumber_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_4e14a989_ts_true_render]])
|
|
3147
3886
|
|
|
3148
3887
|
/* harmony default export */ var ClCreditcardNumber_template = (ClCreditcardNumber_template_exports_);
|
|
3149
3888
|
;// ./src/components/text/ClCreditcardNumber/index.ts
|
|
@@ -4188,25 +4927,25 @@ ClMockRouterLink_template.install = Vue => {
|
|
|
4188
4927
|
Vue.component(ClMockRouterLink_template.name ?? 'ClNoName', ClMockRouterLink_template);
|
|
4189
4928
|
};
|
|
4190
4929
|
/* harmony default export */ var ClMockRouterLink = (ClMockRouterLink_template);
|
|
4191
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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=
|
|
4930
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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
|
|
4192
4931
|
|
|
4193
|
-
const
|
|
4194
|
-
const
|
|
4932
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_1 = ["id"];
|
|
4933
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_2 = {
|
|
4195
4934
|
class: "modal-dialog"
|
|
4196
4935
|
};
|
|
4197
|
-
const
|
|
4936
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_3 = {
|
|
4198
4937
|
class: "modal-content"
|
|
4199
4938
|
};
|
|
4200
|
-
const
|
|
4939
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_4 = {
|
|
4201
4940
|
class: "modal-header"
|
|
4202
4941
|
};
|
|
4203
|
-
const
|
|
4204
|
-
const
|
|
4205
|
-
const
|
|
4942
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_5 = ["href"];
|
|
4943
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_6 = ["id"];
|
|
4944
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_7 = {
|
|
4206
4945
|
key: 1,
|
|
4207
4946
|
class: "modal-body"
|
|
4208
4947
|
};
|
|
4209
|
-
const
|
|
4948
|
+
const templatevue_type_template_id_356c73b0_ts_true_hoisted_8 = {
|
|
4210
4949
|
class: "modal-footer"
|
|
4211
4950
|
};
|
|
4212
4951
|
const _hoisted_9 = {
|
|
@@ -4218,13 +4957,13 @@ const _hoisted_10 = {
|
|
|
4218
4957
|
const _hoisted_11 = {
|
|
4219
4958
|
class: "modal-footer-right cl-spacing-box cl-spacing-none"
|
|
4220
4959
|
};
|
|
4221
|
-
function
|
|
4960
|
+
function templatevue_type_template_id_356c73b0_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4222
4961
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("div", {
|
|
4223
4962
|
id: _ctx.id,
|
|
4224
4963
|
class: (0,external_vue_namespaceObject.normalizeClass)(`modal ${_ctx.clazz}`),
|
|
4225
4964
|
tabindex: "-1",
|
|
4226
4965
|
"data-bs-backdrop": "static"
|
|
4227
|
-
}, [(0,external_vue_namespaceObject.createElementVNode)("div",
|
|
4966
|
+
}, [(0,external_vue_namespaceObject.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_2, [(0,external_vue_namespaceObject.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_3, [(0,external_vue_namespaceObject.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_4, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "title", {}, () => [_cache[1] || (_cache[1] = (0,external_vue_namespaceObject.createTextVNode)(" Information "))]), _ctx.helpUrl ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("a", {
|
|
4228
4967
|
key: 0,
|
|
4229
4968
|
class: "modal-help",
|
|
4230
4969
|
href: _ctx.helpUrl,
|
|
@@ -4232,15 +4971,15 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
|
|
|
4232
4971
|
title: "Show help in new window."
|
|
4233
4972
|
}, _cache[2] || (_cache[2] = [(0,external_vue_namespaceObject.createElementVNode)("i", {
|
|
4234
4973
|
class: "far fa-question-circle"
|
|
4235
|
-
}, null, -1)]), 8,
|
|
4974
|
+
}, null, -1)]), 8, templatevue_type_template_id_356c73b0_ts_true_hoisted_5)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)]), _ctx.form ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("form", {
|
|
4236
4975
|
key: 0,
|
|
4237
4976
|
id: `${_ctx.id}-form`,
|
|
4238
4977
|
class: "modal-body cl-form container",
|
|
4239
4978
|
novalidate: "",
|
|
4240
4979
|
onSubmit: _cache[0] || (_cache[0] = (0,external_vue_namespaceObject.withModifiers)(() => {}, ["prevent"]))
|
|
4241
|
-
}, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default"), (0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "body")], 40,
|
|
4980
|
+
}, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default"), (0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "body")], 40, templatevue_type_template_id_356c73b0_ts_true_hoisted_6)) : ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_7, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default"), (0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "body")])), (0,external_vue_namespaceObject.createElementVNode)("div", templatevue_type_template_id_356c73b0_ts_true_hoisted_8, [(0,external_vue_namespaceObject.createElementVNode)("span", _hoisted_9, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "footer-left")]), (0,external_vue_namespaceObject.createElementVNode)("span", _hoisted_10, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "footer")]), (0,external_vue_namespaceObject.createElementVNode)("span", _hoisted_11, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "footer-right")])])])])], 10, templatevue_type_template_id_356c73b0_ts_true_hoisted_1);
|
|
4242
4981
|
}
|
|
4243
|
-
;// ./src/components/modal/ClModal/template.vue?vue&type=template&id=
|
|
4982
|
+
;// ./src/components/modal/ClModal/template.vue?vue&type=template&id=356c73b0&ts=true
|
|
4244
4983
|
|
|
4245
4984
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModal/template.vue?vue&type=script&lang=ts
|
|
4246
4985
|
|
|
@@ -4267,11 +5006,11 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
|
|
|
4267
5006
|
},
|
|
4268
5007
|
onClose: {
|
|
4269
5008
|
type: Function,
|
|
4270
|
-
default:
|
|
5009
|
+
default: null
|
|
4271
5010
|
},
|
|
4272
5011
|
onOpen: {
|
|
4273
5012
|
type: Function,
|
|
4274
|
-
default:
|
|
5013
|
+
default: null
|
|
4275
5014
|
}
|
|
4276
5015
|
},
|
|
4277
5016
|
computed: {
|
|
@@ -4285,10 +5024,10 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
|
|
|
4285
5024
|
const self = this; // eslint-disable-line @typescript-eslint/no-this-alias
|
|
4286
5025
|
if (modal) {
|
|
4287
5026
|
modal.addEventListener('hidden.bs.modal', function () {
|
|
4288
|
-
self.onClose();
|
|
5027
|
+
if (self.onClose) self.onClose();
|
|
4289
5028
|
});
|
|
4290
5029
|
modal.addEventListener('show.bs.modal', function () {
|
|
4291
|
-
self.onOpen();
|
|
5030
|
+
if (self.onOpen) self.onOpen();
|
|
4292
5031
|
});
|
|
4293
5032
|
}
|
|
4294
5033
|
}
|
|
@@ -4301,7 +5040,7 @@ function templatevue_type_template_id_29236876_ts_true_render(_ctx, _cache, $pro
|
|
|
4301
5040
|
|
|
4302
5041
|
|
|
4303
5042
|
;
|
|
4304
|
-
const ClModal_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModal_templatevue_type_script_lang_ts, [['render',
|
|
5043
|
+
const ClModal_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModal_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_356c73b0_ts_true_render]])
|
|
4305
5044
|
|
|
4306
5045
|
/* harmony default export */ var ClModal_template = (ClModal_template_exports_);
|
|
4307
5046
|
;// ./src/components/modal/ClModal/index.ts
|
|
@@ -4310,9 +5049,9 @@ ClModal_template.install = Vue => {
|
|
|
4310
5049
|
Vue.component(ClModal_template.name ?? 'ClNoName', ClModal_template);
|
|
4311
5050
|
};
|
|
4312
5051
|
/* harmony default export */ var ClModal = (ClModal_template);
|
|
4313
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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=
|
|
5052
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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
|
|
4314
5053
|
|
|
4315
|
-
function
|
|
5054
|
+
function templatevue_type_template_id_74f0fb43_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4316
5055
|
const _component_cl_field = (0,external_vue_namespaceObject.resolveComponent)("cl-field");
|
|
4317
5056
|
const _component_cl_modal = (0,external_vue_namespaceObject.resolveComponent)("cl-modal");
|
|
4318
5057
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createBlock)(_component_cl_modal, {
|
|
@@ -4349,7 +5088,7 @@ function templatevue_type_template_id_13c339f6_ts_true_render(_ctx, _cache, $pro
|
|
|
4349
5088
|
_: 3
|
|
4350
5089
|
}, 8, ["id", "on-open"]);
|
|
4351
5090
|
}
|
|
4352
|
-
;// ./src/components/modal/ClModalConfirm/template.vue?vue&type=template&id=
|
|
5091
|
+
;// ./src/components/modal/ClModalConfirm/template.vue?vue&type=template&id=74f0fb43&ts=true
|
|
4353
5092
|
|
|
4354
5093
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalConfirm/template.vue?vue&type=script&lang=ts
|
|
4355
5094
|
|
|
@@ -4404,7 +5143,7 @@ function templatevue_type_template_id_13c339f6_ts_true_render(_ctx, _cache, $pro
|
|
|
4404
5143
|
|
|
4405
5144
|
|
|
4406
5145
|
;
|
|
4407
|
-
const ClModalConfirm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalConfirm_templatevue_type_script_lang_ts, [['render',
|
|
5146
|
+
const ClModalConfirm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalConfirm_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_74f0fb43_ts_true_render]])
|
|
4408
5147
|
|
|
4409
5148
|
/* harmony default export */ var ClModalConfirm_template = (ClModalConfirm_template_exports_);
|
|
4410
5149
|
;// ./src/components/modal/ClModalConfirm/index.ts
|
|
@@ -4413,22 +5152,22 @@ ClModalConfirm_template.install = Vue => {
|
|
|
4413
5152
|
Vue.component(ClModalConfirm_template.name ?? 'ClNoName', ClModalConfirm_template);
|
|
4414
5153
|
};
|
|
4415
5154
|
/* harmony default export */ var ClModalConfirm = (ClModalConfirm_template);
|
|
4416
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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=
|
|
5155
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.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
|
|
4417
5156
|
|
|
4418
|
-
const
|
|
5157
|
+
const templatevue_type_template_id_0cffa84a_ts_true_hoisted_1 = {
|
|
4419
5158
|
key: 0,
|
|
4420
5159
|
class: "fas fa-angle-left"
|
|
4421
5160
|
};
|
|
4422
|
-
const
|
|
5161
|
+
const templatevue_type_template_id_0cffa84a_ts_true_hoisted_2 = {
|
|
4423
5162
|
key: 0,
|
|
4424
5163
|
class: "fas fa-angle-right"
|
|
4425
5164
|
};
|
|
4426
|
-
function
|
|
5165
|
+
function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4427
5166
|
const _component_cl_modal = (0,external_vue_namespaceObject.resolveComponent)("cl-modal");
|
|
4428
5167
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createBlock)(_component_cl_modal, {
|
|
4429
5168
|
id: _ctx.id,
|
|
4430
|
-
"on-open": _ctx.
|
|
4431
|
-
"on-close": _ctx.
|
|
5169
|
+
"on-open": _ctx.opened,
|
|
5170
|
+
"on-close": _ctx.closed
|
|
4432
5171
|
}, {
|
|
4433
5172
|
title: (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.createTextVNode)((0,external_vue_namespaceObject.toDisplayString)(_ctx.title), 1)]),
|
|
4434
5173
|
body: (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default"), (0,external_vue_namespaceObject.createTextVNode)((0,external_vue_namespaceObject.toDisplayString)(_ctx.body), 1)]),
|
|
@@ -4438,8 +5177,8 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
|
|
|
4438
5177
|
class: "btn cl-btn-outline-text it-cancel",
|
|
4439
5178
|
onClick: _cache[0] || (_cache[0] =
|
|
4440
5179
|
//@ts-ignore
|
|
4441
|
-
(...args) => _ctx.
|
|
4442
|
-
}, [_ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i",
|
|
5180
|
+
(...args) => _ctx.buttonCancel && _ctx.buttonCancel(...args))
|
|
5181
|
+
}, [_ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i", templatevue_type_template_id_0cffa84a_ts_true_hoisted_1)) : (0,external_vue_namespaceObject.createCommentVNode)("", true), (0,external_vue_namespaceObject.createElementVNode)("span", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.cancel), 1)])) : (0,external_vue_namespaceObject.createCommentVNode)("", true)]),
|
|
4443
5182
|
"footer-right": (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.createElementVNode)("button", {
|
|
4444
5183
|
type: "button",
|
|
4445
5184
|
class: (0,external_vue_namespaceObject.normalizeClass)(["btn it-ok", {
|
|
@@ -4449,15 +5188,16 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
|
|
|
4449
5188
|
}]),
|
|
4450
5189
|
onClick: _cache[1] || (_cache[1] =
|
|
4451
5190
|
//@ts-ignore
|
|
4452
|
-
(...args) => _ctx.
|
|
4453
|
-
}, [(0,external_vue_namespaceObject.createElementVNode)("span", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i",
|
|
5191
|
+
(...args) => _ctx.buttonOk && _ctx.buttonOk(...args))
|
|
5192
|
+
}, [(0,external_vue_namespaceObject.createElementVNode)("span", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i", templatevue_type_template_id_0cffa84a_ts_true_hoisted_2)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)], 2)]),
|
|
4454
5193
|
_: 3
|
|
4455
5194
|
}, 8, ["id", "on-open", "on-close"]);
|
|
4456
5195
|
}
|
|
4457
|
-
;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=
|
|
5196
|
+
;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=0cffa84a&ts=true
|
|
4458
5197
|
|
|
4459
5198
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=script&lang=ts
|
|
4460
5199
|
|
|
5200
|
+
|
|
4461
5201
|
/* harmony default export */ var ClModalOk_templatevue_type_script_lang_ts = ((0,external_vue_namespaceObject.defineComponent)({
|
|
4462
5202
|
name: 'ClModalOk',
|
|
4463
5203
|
inheritAttrs: false,
|
|
@@ -4496,11 +5236,11 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
|
|
|
4496
5236
|
},
|
|
4497
5237
|
onClose: {
|
|
4498
5238
|
type: Function,
|
|
4499
|
-
default:
|
|
5239
|
+
default: null
|
|
4500
5240
|
},
|
|
4501
5241
|
onOpen: {
|
|
4502
5242
|
type: Function,
|
|
4503
|
-
default:
|
|
5243
|
+
default: null
|
|
4504
5244
|
}
|
|
4505
5245
|
},
|
|
4506
5246
|
emits: ['ok', 'cancel'],
|
|
@@ -4510,20 +5250,27 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
|
|
|
4510
5250
|
};
|
|
4511
5251
|
},
|
|
4512
5252
|
methods: {
|
|
4513
|
-
|
|
4514
|
-
|
|
5253
|
+
buttonOk: function () {
|
|
5254
|
+
// note: order of these items is very important for $emit to only happen once
|
|
4515
5255
|
this.emitted = true;
|
|
5256
|
+
clModalHide(); // hide first
|
|
5257
|
+
this.$emit('ok', clModalValue(this.id));
|
|
4516
5258
|
},
|
|
4517
|
-
|
|
4518
|
-
|
|
5259
|
+
buttonCancel: function () {
|
|
5260
|
+
// note: order of these items is very important for $emit to only happen once
|
|
4519
5261
|
this.emitted = true;
|
|
5262
|
+
clModalHide();
|
|
5263
|
+
this.$emit('cancel', clModalValue(this.id));
|
|
5264
|
+
},
|
|
5265
|
+
opened: function () {
|
|
5266
|
+
this.emitted = false;
|
|
5267
|
+
if (this.onOpen) this.onOpen();
|
|
4520
5268
|
},
|
|
4521
|
-
|
|
5269
|
+
closed: function () {
|
|
4522
5270
|
// ESC press emits 'cancel', but should not fire double
|
|
4523
5271
|
if (!this.emitted) {
|
|
4524
|
-
this.$emit('cancel');
|
|
5272
|
+
this.$emit('cancel', clModalValue(this.id));
|
|
4525
5273
|
}
|
|
4526
|
-
this.emitted = false;
|
|
4527
5274
|
if (this.onClose) this.onClose();
|
|
4528
5275
|
}
|
|
4529
5276
|
}
|
|
@@ -4536,7 +5283,7 @@ function templatevue_type_template_id_7f90f406_ts_true_render(_ctx, _cache, $pro
|
|
|
4536
5283
|
|
|
4537
5284
|
|
|
4538
5285
|
;
|
|
4539
|
-
const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',
|
|
5286
|
+
const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_0cffa84a_ts_true_render]])
|
|
4540
5287
|
|
|
4541
5288
|
/* harmony default export */ var ClModalOk_template = (ClModalOk_template_exports_);
|
|
4542
5289
|
;// ./src/components/modal/ClModalOk/index.ts
|
|
@@ -4572,6 +5319,8 @@ function templatevue_type_template_id_06ace706_ts_true_render(_ctx, _cache, $pro
|
|
|
4572
5319
|
;// ./src/components/navigation/ClNavSide/template.vue?vue&type=template&id=06ace706&ts=true
|
|
4573
5320
|
|
|
4574
5321
|
;// ./src/components/navigation/ClNavSide/Side.js
|
|
5322
|
+
|
|
5323
|
+
|
|
4575
5324
|
function clSidenavToggle() {
|
|
4576
5325
|
const checkbox = document.getElementById('cl-nav-side');
|
|
4577
5326
|
if (checkbox) {
|
|
@@ -5372,6 +6121,8 @@ function templatevue_type_template_id_690cbc42_ts_true_render(_ctx, _cache, $pro
|
|
|
5372
6121
|
;// ./src/components/table/ClTable/template.vue?vue&type=template&id=690cbc42&ts=true
|
|
5373
6122
|
|
|
5374
6123
|
;// ./src/components/table/ClTable/Table.js
|
|
6124
|
+
|
|
6125
|
+
|
|
5375
6126
|
function clTableSetupResize(id) {
|
|
5376
6127
|
document.querySelectorAll(`#${id} .cl-resizer`).forEach(resizer => {
|
|
5377
6128
|
clTableSetResizeListeners(resizer);
|