backend-management-ui 1.5.7 → 1.5.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2588 +1,23 @@
1
- /******/ (function() { // webpackBootstrap
2
- /******/ var __webpack_modules__ = ({
3
1
 
4
- /***/ 34:
5
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2
+ const UiForm = require('./ui-form.js');
6
3
 
7
- "use strict";
8
-
9
- var isCallable = __webpack_require__(4901);
10
-
11
- module.exports = function (it) {
12
- return typeof it == 'object' ? it !== null : isCallable(it);
13
- };
14
-
15
-
16
- /***/ }),
17
-
18
- /***/ 81:
19
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
20
-
21
- "use strict";
22
-
23
- var call = __webpack_require__(9565);
24
- var aCallable = __webpack_require__(9306);
25
- var anObject = __webpack_require__(8551);
26
- var tryToString = __webpack_require__(6823);
27
- var getIteratorMethod = __webpack_require__(851);
28
-
29
- var $TypeError = TypeError;
30
-
31
- module.exports = function (argument, usingIterator) {
32
- var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
33
- if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
34
- throw new $TypeError(tryToString(argument) + ' is not iterable');
35
- };
36
-
37
-
38
- /***/ }),
39
-
40
- /***/ 283:
41
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
42
-
43
- "use strict";
44
-
45
- var uncurryThis = __webpack_require__(9504);
46
- var fails = __webpack_require__(9039);
47
- var isCallable = __webpack_require__(4901);
48
- var hasOwn = __webpack_require__(9297);
49
- var DESCRIPTORS = __webpack_require__(3724);
50
- var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(350).CONFIGURABLE);
51
- var inspectSource = __webpack_require__(3706);
52
- var InternalStateModule = __webpack_require__(1181);
53
-
54
- var enforceInternalState = InternalStateModule.enforce;
55
- var getInternalState = InternalStateModule.get;
56
- var $String = String;
57
- // eslint-disable-next-line es/no-object-defineproperty -- safe
58
- var defineProperty = Object.defineProperty;
59
- var stringSlice = uncurryThis(''.slice);
60
- var replace = uncurryThis(''.replace);
61
- var join = uncurryThis([].join);
62
-
63
- var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
64
- return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
65
- });
66
-
67
- var TEMPLATE = String(String).split('String');
68
-
69
- var makeBuiltIn = module.exports = function (value, name, options) {
70
- if (stringSlice($String(name), 0, 7) === 'Symbol(') {
71
- name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
72
- }
73
- if (options && options.getter) name = 'get ' + name;
74
- if (options && options.setter) name = 'set ' + name;
75
- if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
76
- if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
77
- else value.name = name;
78
- }
79
- if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
80
- defineProperty(value, 'length', { value: options.arity });
81
- }
82
- try {
83
- if (options && hasOwn(options, 'constructor') && options.constructor) {
84
- if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
85
- // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
86
- } else if (value.prototype) value.prototype = undefined;
87
- } catch (error) { /* empty */ }
88
- var state = enforceInternalState(value);
89
- if (!hasOwn(state, 'source')) {
90
- state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
91
- } return value;
92
- };
93
-
94
- // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
95
- // eslint-disable-next-line no-extend-native -- required
96
- Function.prototype.toString = makeBuiltIn(function toString() {
97
- return isCallable(this) && getInternalState(this).source || inspectSource(this);
98
- }, 'toString');
99
-
100
-
101
- /***/ }),
102
-
103
- /***/ 350:
104
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
105
-
106
- "use strict";
107
-
108
- var DESCRIPTORS = __webpack_require__(3724);
109
- var hasOwn = __webpack_require__(9297);
110
-
111
- var FunctionPrototype = Function.prototype;
112
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
113
- var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
114
-
115
- var EXISTS = hasOwn(FunctionPrototype, 'name');
116
- // additional protection from minified / mangled / dropped function names
117
- var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
118
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
119
-
120
- module.exports = {
121
- EXISTS: EXISTS,
122
- PROPER: PROPER,
123
- CONFIGURABLE: CONFIGURABLE
124
- };
125
-
126
-
127
- /***/ }),
128
-
129
- /***/ 397:
130
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
131
-
132
- "use strict";
133
-
134
- var getBuiltIn = __webpack_require__(7751);
135
-
136
- module.exports = getBuiltIn('document', 'documentElement');
137
-
138
-
139
- /***/ }),
140
-
141
- /***/ 421:
142
- /***/ (function(module) {
143
-
144
- "use strict";
145
-
146
- module.exports = {};
147
-
148
-
149
- /***/ }),
150
-
151
- /***/ 616:
152
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
153
-
154
- "use strict";
155
-
156
- var fails = __webpack_require__(9039);
157
-
158
- module.exports = !fails(function () {
159
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
160
- var test = (function () { /* empty */ }).bind();
161
- // eslint-disable-next-line no-prototype-builtins -- safe
162
- return typeof test != 'function' || test.hasOwnProperty('prototype');
163
- });
164
-
165
-
166
- /***/ }),
167
-
168
- /***/ 679:
169
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
170
-
171
- "use strict";
172
-
173
- var isPrototypeOf = __webpack_require__(1625);
174
-
175
- var $TypeError = TypeError;
176
-
177
- module.exports = function (it, Prototype) {
178
- if (isPrototypeOf(Prototype, it)) return it;
179
- throw new $TypeError('Incorrect invocation');
180
- };
181
-
182
-
183
- /***/ }),
184
-
185
- /***/ 741:
186
- /***/ (function(module) {
187
-
188
- "use strict";
189
-
190
- var ceil = Math.ceil;
191
- var floor = Math.floor;
192
-
193
- // `Math.trunc` method
194
- // https://tc39.es/ecma262/#sec-math.trunc
195
- // eslint-disable-next-line es/no-math-trunc -- safe
196
- module.exports = Math.trunc || function trunc(x) {
197
- var n = +x;
198
- return (n > 0 ? floor : ceil)(n);
199
- };
200
-
201
-
202
- /***/ }),
203
-
204
- /***/ 757:
205
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
206
-
207
- "use strict";
208
-
209
- var getBuiltIn = __webpack_require__(7751);
210
- var isCallable = __webpack_require__(4901);
211
- var isPrototypeOf = __webpack_require__(1625);
212
- var USE_SYMBOL_AS_UID = __webpack_require__(7040);
213
-
214
- var $Object = Object;
215
-
216
- module.exports = USE_SYMBOL_AS_UID ? function (it) {
217
- return typeof it == 'symbol';
218
- } : function (it) {
219
- var $Symbol = getBuiltIn('Symbol');
220
- return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
221
- };
222
-
223
-
224
- /***/ }),
225
-
226
- /***/ 851:
227
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
228
-
229
- "use strict";
230
-
231
- var classof = __webpack_require__(6955);
232
- var getMethod = __webpack_require__(5966);
233
- var isNullOrUndefined = __webpack_require__(4117);
234
- var Iterators = __webpack_require__(6269);
235
- var wellKnownSymbol = __webpack_require__(8227);
236
-
237
- var ITERATOR = wellKnownSymbol('iterator');
238
-
239
- module.exports = function (it) {
240
- if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
241
- || getMethod(it, '@@iterator')
242
- || Iterators[classof(it)];
243
- };
244
-
245
-
246
- /***/ }),
247
-
248
- /***/ 1072:
249
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
250
-
251
- "use strict";
252
-
253
- var internalObjectKeys = __webpack_require__(1828);
254
- var enumBugKeys = __webpack_require__(8727);
255
-
256
- // `Object.keys` method
257
- // https://tc39.es/ecma262/#sec-object.keys
258
- // eslint-disable-next-line es/no-object-keys -- safe
259
- module.exports = Object.keys || function keys(O) {
260
- return internalObjectKeys(O, enumBugKeys);
261
- };
262
-
263
-
264
- /***/ }),
265
-
266
- /***/ 1181:
267
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
268
-
269
- "use strict";
270
-
271
- var NATIVE_WEAK_MAP = __webpack_require__(8622);
272
- var globalThis = __webpack_require__(4576);
273
- var isObject = __webpack_require__(34);
274
- var createNonEnumerableProperty = __webpack_require__(6699);
275
- var hasOwn = __webpack_require__(9297);
276
- var shared = __webpack_require__(7629);
277
- var sharedKey = __webpack_require__(6119);
278
- var hiddenKeys = __webpack_require__(421);
279
-
280
- var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
281
- var TypeError = globalThis.TypeError;
282
- var WeakMap = globalThis.WeakMap;
283
- var set, get, has;
284
-
285
- var enforce = function (it) {
286
- return has(it) ? get(it) : set(it, {});
287
- };
288
-
289
- var getterFor = function (TYPE) {
290
- return function (it) {
291
- var state;
292
- if (!isObject(it) || (state = get(it)).type !== TYPE) {
293
- throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
294
- } return state;
295
- };
296
- };
297
-
298
- if (NATIVE_WEAK_MAP || shared.state) {
299
- var store = shared.state || (shared.state = new WeakMap());
300
- /* eslint-disable no-self-assign -- prototype methods protection */
301
- store.get = store.get;
302
- store.has = store.has;
303
- store.set = store.set;
304
- /* eslint-enable no-self-assign -- prototype methods protection */
305
- set = function (it, metadata) {
306
- if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
307
- metadata.facade = it;
308
- store.set(it, metadata);
309
- return metadata;
310
- };
311
- get = function (it) {
312
- return store.get(it) || {};
313
- };
314
- has = function (it) {
315
- return store.has(it);
316
- };
317
- } else {
318
- var STATE = sharedKey('state');
319
- hiddenKeys[STATE] = true;
320
- set = function (it, metadata) {
321
- if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
322
- metadata.facade = it;
323
- createNonEnumerableProperty(it, STATE, metadata);
324
- return metadata;
325
- };
326
- get = function (it) {
327
- return hasOwn(it, STATE) ? it[STATE] : {};
328
- };
329
- has = function (it) {
330
- return hasOwn(it, STATE);
331
- };
332
- }
333
-
334
- module.exports = {
335
- set: set,
336
- get: get,
337
- has: has,
338
- enforce: enforce,
339
- getterFor: getterFor
340
- };
341
-
342
-
343
- /***/ }),
344
-
345
- /***/ 1291:
346
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
347
-
348
- "use strict";
349
-
350
- var trunc = __webpack_require__(741);
351
-
352
- // `ToIntegerOrInfinity` abstract operation
353
- // https://tc39.es/ecma262/#sec-tointegerorinfinity
354
- module.exports = function (argument) {
355
- var number = +argument;
356
- // eslint-disable-next-line no-self-compare -- NaN check
357
- return number !== number || number === 0 ? 0 : trunc(number);
358
- };
359
-
360
-
361
- /***/ }),
362
-
363
- /***/ 1625:
364
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
365
-
366
- "use strict";
367
-
368
- var uncurryThis = __webpack_require__(9504);
369
-
370
- module.exports = uncurryThis({}.isPrototypeOf);
371
-
372
-
373
- /***/ }),
374
-
375
- /***/ 1767:
376
- /***/ (function(module) {
377
-
378
- "use strict";
379
-
380
- // `GetIteratorDirect(obj)` abstract operation
381
- // https://tc39.es/ecma262/#sec-getiteratordirect
382
- module.exports = function (obj) {
383
- return {
384
- iterator: obj,
385
- next: obj.next,
386
- done: false
387
- };
388
- };
389
-
390
-
391
- /***/ }),
392
-
393
- /***/ 1828:
394
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
395
-
396
- "use strict";
397
-
398
- var uncurryThis = __webpack_require__(9504);
399
- var hasOwn = __webpack_require__(9297);
400
- var toIndexedObject = __webpack_require__(5397);
401
- var indexOf = (__webpack_require__(9617).indexOf);
402
- var hiddenKeys = __webpack_require__(421);
403
-
404
- var push = uncurryThis([].push);
405
-
406
- module.exports = function (object, names) {
407
- var O = toIndexedObject(object);
408
- var i = 0;
409
- var result = [];
410
- var key;
411
- for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
412
- // Don't enum bug & hidden keys
413
- while (names.length > i) if (hasOwn(O, key = names[i++])) {
414
- ~indexOf(result, key) || push(result, key);
415
- }
416
- return result;
417
- };
418
-
419
-
420
- /***/ }),
421
-
422
- /***/ 2106:
423
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
424
-
425
- "use strict";
426
-
427
- var makeBuiltIn = __webpack_require__(283);
428
- var defineProperty = __webpack_require__(4913);
429
-
430
- module.exports = function (target, name, descriptor) {
431
- if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
432
- if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
433
- return defineProperty.f(target, name, descriptor);
434
- };
435
-
436
-
437
- /***/ }),
438
-
439
- /***/ 2140:
440
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
441
-
442
- "use strict";
443
-
444
- var wellKnownSymbol = __webpack_require__(8227);
445
-
446
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
447
- var test = {};
448
- // eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
449
- test[TO_STRING_TAG] = 'z';
450
-
451
- module.exports = String(test) === '[object z]';
452
-
453
-
454
- /***/ }),
455
-
456
- /***/ 2195:
457
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
458
-
459
- "use strict";
460
-
461
- var uncurryThis = __webpack_require__(9504);
462
-
463
- var toString = uncurryThis({}.toString);
464
- var stringSlice = uncurryThis(''.slice);
465
-
466
- module.exports = function (it) {
467
- return stringSlice(toString(it), 8, -1);
468
- };
469
-
470
-
471
- /***/ }),
472
-
473
- /***/ 2211:
474
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
475
-
476
- "use strict";
477
-
478
- var fails = __webpack_require__(9039);
479
-
480
- module.exports = !fails(function () {
481
- function F() { /* empty */ }
482
- F.prototype.constructor = null;
483
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
484
- return Object.getPrototypeOf(new F()) !== F.prototype;
485
- });
486
-
487
-
488
- /***/ }),
489
-
490
- /***/ 2360:
491
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
492
-
493
- "use strict";
494
-
495
- /* global ActiveXObject -- old IE, WSH */
496
- var anObject = __webpack_require__(8551);
497
- var definePropertiesModule = __webpack_require__(6801);
498
- var enumBugKeys = __webpack_require__(8727);
499
- var hiddenKeys = __webpack_require__(421);
500
- var html = __webpack_require__(397);
501
- var documentCreateElement = __webpack_require__(4055);
502
- var sharedKey = __webpack_require__(6119);
503
-
504
- var GT = '>';
505
- var LT = '<';
506
- var PROTOTYPE = 'prototype';
507
- var SCRIPT = 'script';
508
- var IE_PROTO = sharedKey('IE_PROTO');
509
-
510
- var EmptyConstructor = function () { /* empty */ };
511
-
512
- var scriptTag = function (content) {
513
- return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
514
- };
515
-
516
- // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
517
- var NullProtoObjectViaActiveX = function (activeXDocument) {
518
- activeXDocument.write(scriptTag(''));
519
- activeXDocument.close();
520
- var temp = activeXDocument.parentWindow.Object;
521
- // eslint-disable-next-line no-useless-assignment -- avoid memory leak
522
- activeXDocument = null;
523
- return temp;
524
- };
525
-
526
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
527
- var NullProtoObjectViaIFrame = function () {
528
- // Thrash, waste and sodomy: IE GC bug
529
- var iframe = documentCreateElement('iframe');
530
- var JS = 'java' + SCRIPT + ':';
531
- var iframeDocument;
532
- iframe.style.display = 'none';
533
- html.appendChild(iframe);
534
- // https://github.com/zloirock/core-js/issues/475
535
- iframe.src = String(JS);
536
- iframeDocument = iframe.contentWindow.document;
537
- iframeDocument.open();
538
- iframeDocument.write(scriptTag('document.F=Object'));
539
- iframeDocument.close();
540
- return iframeDocument.F;
541
- };
542
-
543
- // Check for document.domain and active x support
544
- // No need to use active x approach when document.domain is not set
545
- // see https://github.com/es-shims/es5-shim/issues/150
546
- // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
547
- // avoid IE GC bug
548
- var activeXDocument;
549
- var NullProtoObject = function () {
550
- try {
551
- activeXDocument = new ActiveXObject('htmlfile');
552
- } catch (error) { /* ignore */ }
553
- NullProtoObject = typeof document != 'undefined'
554
- ? document.domain && activeXDocument
555
- ? NullProtoObjectViaActiveX(activeXDocument) // old IE
556
- : NullProtoObjectViaIFrame()
557
- : NullProtoObjectViaActiveX(activeXDocument); // WSH
558
- var length = enumBugKeys.length;
559
- while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
560
- return NullProtoObject();
561
- };
562
-
563
- hiddenKeys[IE_PROTO] = true;
564
-
565
- // `Object.create` method
566
- // https://tc39.es/ecma262/#sec-object.create
567
- // eslint-disable-next-line es/no-object-create -- safe
568
- module.exports = Object.create || function create(O, Properties) {
569
- var result;
570
- if (O !== null) {
571
- EmptyConstructor[PROTOTYPE] = anObject(O);
572
- result = new EmptyConstructor();
573
- EmptyConstructor[PROTOTYPE] = null;
574
- // add "__proto__" for Object.getPrototypeOf polyfill
575
- result[IE_PROTO] = O;
576
- } else result = NullProtoObject();
577
- return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
578
- };
579
-
580
-
581
- /***/ }),
582
-
583
- /***/ 2652:
584
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
585
-
586
- "use strict";
587
-
588
- var bind = __webpack_require__(6080);
589
- var call = __webpack_require__(9565);
590
- var anObject = __webpack_require__(8551);
591
- var tryToString = __webpack_require__(6823);
592
- var isArrayIteratorMethod = __webpack_require__(4209);
593
- var lengthOfArrayLike = __webpack_require__(6198);
594
- var isPrototypeOf = __webpack_require__(1625);
595
- var getIterator = __webpack_require__(81);
596
- var getIteratorMethod = __webpack_require__(851);
597
- var iteratorClose = __webpack_require__(9539);
598
-
599
- var $TypeError = TypeError;
600
-
601
- var Result = function (stopped, result) {
602
- this.stopped = stopped;
603
- this.result = result;
604
- };
605
-
606
- var ResultPrototype = Result.prototype;
607
-
608
- module.exports = function (iterable, unboundFunction, options) {
609
- var that = options && options.that;
610
- var AS_ENTRIES = !!(options && options.AS_ENTRIES);
611
- var IS_RECORD = !!(options && options.IS_RECORD);
612
- var IS_ITERATOR = !!(options && options.IS_ITERATOR);
613
- var INTERRUPTED = !!(options && options.INTERRUPTED);
614
- var fn = bind(unboundFunction, that);
615
- var iterator, iterFn, index, length, result, next, step;
616
-
617
- var stop = function (condition) {
618
- if (iterator) iteratorClose(iterator, 'normal');
619
- return new Result(true, condition);
620
- };
621
-
622
- var callFn = function (value) {
623
- if (AS_ENTRIES) {
624
- anObject(value);
625
- return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
626
- } return INTERRUPTED ? fn(value, stop) : fn(value);
627
- };
628
-
629
- if (IS_RECORD) {
630
- iterator = iterable.iterator;
631
- } else if (IS_ITERATOR) {
632
- iterator = iterable;
633
- } else {
634
- iterFn = getIteratorMethod(iterable);
635
- if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
636
- // optimisation for array iterators
637
- if (isArrayIteratorMethod(iterFn)) {
638
- for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
639
- result = callFn(iterable[index]);
640
- if (result && isPrototypeOf(ResultPrototype, result)) return result;
641
- } return new Result(false);
642
- }
643
- iterator = getIterator(iterable, iterFn);
644
- }
645
-
646
- next = IS_RECORD ? iterable.next : iterator.next;
647
- while (!(step = call(next, iterator)).done) {
648
- try {
649
- result = callFn(step.value);
650
- } catch (error) {
651
- iteratorClose(iterator, 'throw', error);
652
- }
653
- if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
654
- } return new Result(false);
655
- };
656
-
657
-
658
- /***/ }),
659
-
660
- /***/ 2777:
661
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
662
-
663
- "use strict";
664
-
665
- var call = __webpack_require__(9565);
666
- var isObject = __webpack_require__(34);
667
- var isSymbol = __webpack_require__(757);
668
- var getMethod = __webpack_require__(5966);
669
- var ordinaryToPrimitive = __webpack_require__(4270);
670
- var wellKnownSymbol = __webpack_require__(8227);
671
-
672
- var $TypeError = TypeError;
673
- var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
674
-
675
- // `ToPrimitive` abstract operation
676
- // https://tc39.es/ecma262/#sec-toprimitive
677
- module.exports = function (input, pref) {
678
- if (!isObject(input) || isSymbol(input)) return input;
679
- var exoticToPrim = getMethod(input, TO_PRIMITIVE);
680
- var result;
681
- if (exoticToPrim) {
682
- if (pref === undefined) pref = 'default';
683
- result = call(exoticToPrim, input, pref);
684
- if (!isObject(result) || isSymbol(result)) return result;
685
- throw new $TypeError("Can't convert object to primitive value");
686
- }
687
- if (pref === undefined) pref = 'number';
688
- return ordinaryToPrimitive(input, pref);
689
- };
690
-
691
-
692
- /***/ }),
693
-
694
- /***/ 2787:
695
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
696
-
697
- "use strict";
698
-
699
- var hasOwn = __webpack_require__(9297);
700
- var isCallable = __webpack_require__(4901);
701
- var toObject = __webpack_require__(8981);
702
- var sharedKey = __webpack_require__(6119);
703
- var CORRECT_PROTOTYPE_GETTER = __webpack_require__(2211);
704
-
705
- var IE_PROTO = sharedKey('IE_PROTO');
706
- var $Object = Object;
707
- var ObjectPrototype = $Object.prototype;
708
-
709
- // `Object.getPrototypeOf` method
710
- // https://tc39.es/ecma262/#sec-object.getprototypeof
711
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
712
- module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
713
- var object = toObject(O);
714
- if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
715
- var constructor = object.constructor;
716
- if (isCallable(constructor) && object instanceof constructor) {
717
- return constructor.prototype;
718
- } return object instanceof $Object ? ObjectPrototype : null;
719
- };
720
-
721
-
722
- /***/ }),
723
-
724
- /***/ 2796:
725
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
726
-
727
- "use strict";
728
-
729
- var fails = __webpack_require__(9039);
730
- var isCallable = __webpack_require__(4901);
731
-
732
- var replacement = /#|\.prototype\./;
733
-
734
- var isForced = function (feature, detection) {
735
- var value = data[normalize(feature)];
736
- return value === POLYFILL ? true
737
- : value === NATIVE ? false
738
- : isCallable(detection) ? fails(detection)
739
- : !!detection;
740
- };
741
-
742
- var normalize = isForced.normalize = function (string) {
743
- return String(string).replace(replacement, '.').toLowerCase();
744
- };
745
-
746
- var data = isForced.data = {};
747
- var NATIVE = isForced.NATIVE = 'N';
748
- var POLYFILL = isForced.POLYFILL = 'P';
749
-
750
- module.exports = isForced;
751
-
752
-
753
- /***/ }),
754
-
755
- /***/ 2839:
756
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
757
-
758
- "use strict";
759
-
760
- var globalThis = __webpack_require__(4576);
761
-
762
- var navigator = globalThis.navigator;
763
- var userAgent = navigator && navigator.userAgent;
764
-
765
- module.exports = userAgent ? String(userAgent) : '';
766
-
767
-
768
- /***/ }),
769
-
770
- /***/ 3392:
771
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
772
-
773
- "use strict";
774
-
775
- var uncurryThis = __webpack_require__(9504);
776
-
777
- var id = 0;
778
- var postfix = Math.random();
779
- var toString = uncurryThis(1.1.toString);
780
-
781
- module.exports = function (key) {
782
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
783
- };
784
-
785
-
786
- /***/ }),
787
-
788
- /***/ 3706:
789
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
790
-
791
- "use strict";
792
-
793
- var uncurryThis = __webpack_require__(9504);
794
- var isCallable = __webpack_require__(4901);
795
- var store = __webpack_require__(7629);
796
-
797
- var functionToString = uncurryThis(Function.toString);
798
-
799
- // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
800
- if (!isCallable(store.inspectSource)) {
801
- store.inspectSource = function (it) {
802
- return functionToString(it);
803
- };
804
- }
805
-
806
- module.exports = store.inspectSource;
807
-
808
-
809
- /***/ }),
810
-
811
- /***/ 3717:
812
- /***/ (function(__unused_webpack_module, exports) {
813
-
814
- "use strict";
815
-
816
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
817
- exports.f = Object.getOwnPropertySymbols;
818
-
819
-
820
- /***/ }),
821
-
822
- /***/ 3724:
823
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
824
-
825
- "use strict";
826
-
827
- var fails = __webpack_require__(9039);
828
-
829
- // Detect IE8's incomplete defineProperty implementation
830
- module.exports = !fails(function () {
831
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
832
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
833
- });
834
-
835
-
836
- /***/ }),
837
-
838
- /***/ 3960:
839
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
840
-
841
- "use strict";
842
- // ESM COMPAT FLAG
843
- __webpack_require__.r(__webpack_exports__);
844
-
845
- // EXPORTS
846
- __webpack_require__.d(__webpack_exports__, {
847
- "default": function() { return /* binding */ ui_form; }
848
- });
849
-
850
- ;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
851
- /* globals __VUE_SSR_CONTEXT__ */
852
-
853
- // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
854
- // This module is a runtime utility for cleaner component module output and will
855
- // be included in the final webpack user bundle.
856
-
857
- function normalizeComponent(
858
- scriptExports,
859
- render,
860
- staticRenderFns,
861
- functionalTemplate,
862
- injectStyles,
863
- scopeId,
864
- moduleIdentifier /* server only */,
865
- shadowMode /* vue-cli only */
866
- ) {
867
- // Vue.extend constructor export interop
868
- var options =
869
- typeof scriptExports === 'function' ? scriptExports.options : scriptExports
870
-
871
- // render functions
872
- if (render) {
873
- options.render = render
874
- options.staticRenderFns = staticRenderFns
875
- options._compiled = true
876
- }
877
-
878
- // functional template
879
- if (functionalTemplate) {
880
- options.functional = true
881
- }
882
-
883
- // scopedId
884
- if (scopeId) {
885
- options._scopeId = 'data-v-' + scopeId
886
- }
887
-
888
- var hook
889
- if (moduleIdentifier) {
890
- // server build
891
- hook = function (context) {
892
- // 2.3 injection
893
- context =
894
- context || // cached call
895
- (this.$vnode && this.$vnode.ssrContext) || // stateful
896
- (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
897
- // 2.2 with runInNewContext: true
898
- if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
899
- context = __VUE_SSR_CONTEXT__
900
- }
901
- // inject component styles
902
- if (injectStyles) {
903
- injectStyles.call(this, context)
904
- }
905
- // register component module identifier for async chunk inferrence
906
- if (context && context._registeredComponents) {
907
- context._registeredComponents.add(moduleIdentifier)
908
- }
909
- }
910
- // used by ssr in case component is cached and beforeCreate
911
- // never gets called
912
- options._ssrRegister = hook
913
- } else if (injectStyles) {
914
- hook = shadowMode
915
- ? function () {
916
- injectStyles.call(
917
- this,
918
- (options.functional ? this.parent : this).$root.$options.shadowRoot
919
- )
920
- }
921
- : injectStyles
922
- }
923
-
924
- if (hook) {
925
- if (options.functional) {
926
- // for template-only hot-reload because in that case the render fn doesn't
927
- // go through the normalizer
928
- options._injectStyles = hook
929
- // register for functional component in vue file
930
- var originalRender = options.render
931
- options.render = function renderWithStyleInjection(h, context) {
932
- hook.call(context)
933
- return originalRender(h, context)
934
- }
935
- } else {
936
- // inject component registration as beforeCreate hook
937
- var existing = options.beforeCreate
938
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
939
- }
940
- }
941
-
942
- return {
943
- exports: scriptExports,
944
- options: options
945
- }
946
- }
947
-
948
- ;// ./src/components/ui-form/index.vue
949
- var render, staticRenderFns
950
- var script = {}
951
-
952
-
953
- /* normalize component */
954
- ;
955
- var component = normalizeComponent(
956
- script,
957
- render,
958
- staticRenderFns,
959
- false,
960
- null,
961
- null,
962
- null
963
-
964
- )
965
-
966
- /* harmony default export */ var ui_form = (component.exports);
967
-
968
- /***/ }),
969
-
970
- /***/ 4055:
971
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
972
-
973
- "use strict";
974
-
975
- var globalThis = __webpack_require__(4576);
976
- var isObject = __webpack_require__(34);
977
-
978
- var document = globalThis.document;
979
- // typeof document.createElement is 'object' in old IE
980
- var EXISTS = isObject(document) && isObject(document.createElement);
981
-
982
- module.exports = function (it) {
983
- return EXISTS ? document.createElement(it) : {};
984
- };
985
-
986
-
987
- /***/ }),
988
-
989
- /***/ 4117:
990
- /***/ (function(module) {
991
-
992
- "use strict";
993
-
994
- // we can't use just `it == null` since of `document.all` special case
995
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
996
- module.exports = function (it) {
997
- return it === null || it === undefined;
998
- };
999
-
1000
-
1001
- /***/ }),
1002
-
1003
- /***/ 4209:
1004
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1005
-
1006
- "use strict";
1007
-
1008
- var wellKnownSymbol = __webpack_require__(8227);
1009
- var Iterators = __webpack_require__(6269);
1010
-
1011
- var ITERATOR = wellKnownSymbol('iterator');
1012
- var ArrayPrototype = Array.prototype;
1013
-
1014
- // check on default Array iterator
1015
- module.exports = function (it) {
1016
- return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
1017
- };
1018
-
1019
-
1020
- /***/ }),
1021
-
1022
- /***/ 4270:
1023
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1024
-
1025
- "use strict";
1026
-
1027
- var call = __webpack_require__(9565);
1028
- var isCallable = __webpack_require__(4901);
1029
- var isObject = __webpack_require__(34);
1030
-
1031
- var $TypeError = TypeError;
1032
-
1033
- // `OrdinaryToPrimitive` abstract operation
1034
- // https://tc39.es/ecma262/#sec-ordinarytoprimitive
1035
- module.exports = function (input, pref) {
1036
- var fn, val;
1037
- if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
1038
- if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
1039
- if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
1040
- throw new $TypeError("Can't convert object to primitive value");
1041
- };
1042
-
1043
-
1044
- /***/ }),
1045
-
1046
- /***/ 4495:
1047
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1048
-
1049
- "use strict";
1050
-
1051
- /* eslint-disable es/no-symbol -- required for testing */
1052
- var V8_VERSION = __webpack_require__(9519);
1053
- var fails = __webpack_require__(9039);
1054
- var globalThis = __webpack_require__(4576);
1055
-
1056
- var $String = globalThis.String;
1057
-
1058
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
1059
- module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
1060
- var symbol = Symbol('symbol detection');
1061
- // Chrome 38 Symbol has incorrect toString conversion
1062
- // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
1063
- // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
1064
- // of course, fail.
1065
- return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
1066
- // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
1067
- !Symbol.sham && V8_VERSION && V8_VERSION < 41;
1068
- });
1069
-
1070
-
1071
- /***/ }),
1072
-
1073
- /***/ 4549:
1074
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1075
-
1076
- "use strict";
1077
-
1078
- var globalThis = __webpack_require__(4576);
1079
-
1080
- // https://github.com/tc39/ecma262/pull/3467
1081
- module.exports = function (METHOD_NAME, ExpectedError) {
1082
- var Iterator = globalThis.Iterator;
1083
- var IteratorPrototype = Iterator && Iterator.prototype;
1084
- var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
1085
-
1086
- var CLOSED = false;
1087
-
1088
- if (method) try {
1089
- method.call({
1090
- next: function () { return { done: true }; },
1091
- 'return': function () { CLOSED = true; }
1092
- }, -1);
1093
- } catch (error) {
1094
- // https://bugs.webkit.org/show_bug.cgi?id=291195
1095
- if (!(error instanceof ExpectedError)) CLOSED = false;
1096
- }
1097
-
1098
- if (!CLOSED) return method;
1099
- };
1100
-
1101
-
1102
- /***/ }),
1103
-
1104
- /***/ 4576:
1105
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1106
-
1107
- "use strict";
1108
-
1109
- var check = function (it) {
1110
- return it && it.Math === Math && it;
1111
- };
1112
-
1113
- // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
1114
- module.exports =
1115
- // eslint-disable-next-line es/no-global-this -- safe
1116
- check(typeof globalThis == 'object' && globalThis) ||
1117
- check(typeof window == 'object' && window) ||
1118
- // eslint-disable-next-line no-restricted-globals -- safe
1119
- check(typeof self == 'object' && self) ||
1120
- check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
1121
- check(typeof this == 'object' && this) ||
1122
- // eslint-disable-next-line no-new-func -- fallback
1123
- (function () { return this; })() || Function('return this')();
1124
-
1125
-
1126
- /***/ }),
1127
-
1128
- /***/ 4659:
1129
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1130
-
1131
- "use strict";
1132
-
1133
- var DESCRIPTORS = __webpack_require__(3724);
1134
- var definePropertyModule = __webpack_require__(4913);
1135
- var createPropertyDescriptor = __webpack_require__(6980);
1136
-
1137
- module.exports = function (object, key, value) {
1138
- if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
1139
- else object[key] = value;
1140
- };
1141
-
1142
-
1143
- /***/ }),
1144
-
1145
- /***/ 4901:
1146
- /***/ (function(module) {
1147
-
1148
- "use strict";
1149
-
1150
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
1151
- var documentAll = typeof document == 'object' && document.all;
1152
-
1153
- // `IsCallable` abstract operation
1154
- // https://tc39.es/ecma262/#sec-iscallable
1155
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
1156
- module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
1157
- return typeof argument == 'function' || argument === documentAll;
1158
- } : function (argument) {
1159
- return typeof argument == 'function';
1160
- };
1161
-
1162
-
1163
- /***/ }),
1164
-
1165
- /***/ 4913:
1166
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1167
-
1168
- "use strict";
1169
-
1170
- var DESCRIPTORS = __webpack_require__(3724);
1171
- var IE8_DOM_DEFINE = __webpack_require__(5917);
1172
- var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
1173
- var anObject = __webpack_require__(8551);
1174
- var toPropertyKey = __webpack_require__(6969);
1175
-
1176
- var $TypeError = TypeError;
1177
- // eslint-disable-next-line es/no-object-defineproperty -- safe
1178
- var $defineProperty = Object.defineProperty;
1179
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1180
- var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1181
- var ENUMERABLE = 'enumerable';
1182
- var CONFIGURABLE = 'configurable';
1183
- var WRITABLE = 'writable';
1184
-
1185
- // `Object.defineProperty` method
1186
- // https://tc39.es/ecma262/#sec-object.defineproperty
1187
- exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
1188
- anObject(O);
1189
- P = toPropertyKey(P);
1190
- anObject(Attributes);
1191
- if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
1192
- var current = $getOwnPropertyDescriptor(O, P);
1193
- if (current && current[WRITABLE]) {
1194
- O[P] = Attributes.value;
1195
- Attributes = {
1196
- configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
1197
- enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
1198
- writable: false
1199
- };
1200
- }
1201
- } return $defineProperty(O, P, Attributes);
1202
- } : $defineProperty : function defineProperty(O, P, Attributes) {
1203
- anObject(O);
1204
- P = toPropertyKey(P);
1205
- anObject(Attributes);
1206
- if (IE8_DOM_DEFINE) try {
1207
- return $defineProperty(O, P, Attributes);
1208
- } catch (error) { /* empty */ }
1209
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
1210
- if ('value' in Attributes) O[P] = Attributes.value;
1211
- return O;
1212
- };
1213
-
1214
-
1215
- /***/ }),
1216
-
1217
- /***/ 5031:
1218
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1219
-
1220
- "use strict";
1221
-
1222
- var getBuiltIn = __webpack_require__(7751);
1223
- var uncurryThis = __webpack_require__(9504);
1224
- var getOwnPropertyNamesModule = __webpack_require__(8480);
1225
- var getOwnPropertySymbolsModule = __webpack_require__(3717);
1226
- var anObject = __webpack_require__(8551);
1227
-
1228
- var concat = uncurryThis([].concat);
1229
-
1230
- // all object keys, includes non-enumerable and symbols
1231
- module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
1232
- var keys = getOwnPropertyNamesModule.f(anObject(it));
1233
- var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1234
- return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1235
- };
1236
-
1237
-
1238
- /***/ }),
1239
-
1240
- /***/ 5397:
1241
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1242
-
1243
- "use strict";
1244
-
1245
- // toObject with fallback for non-array-like ES3 strings
1246
- var IndexedObject = __webpack_require__(7055);
1247
- var requireObjectCoercible = __webpack_require__(7750);
1248
-
1249
- module.exports = function (it) {
1250
- return IndexedObject(requireObjectCoercible(it));
1251
- };
1252
-
1253
-
1254
- /***/ }),
1255
-
1256
- /***/ 5610:
1257
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1258
-
1259
- "use strict";
1260
-
1261
- var toIntegerOrInfinity = __webpack_require__(1291);
1262
-
1263
- var max = Math.max;
1264
- var min = Math.min;
1265
-
1266
- // Helper for a popular repeating case of the spec:
1267
- // Let integer be ? ToInteger(index).
1268
- // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
1269
- module.exports = function (index, length) {
1270
- var integer = toIntegerOrInfinity(index);
1271
- return integer < 0 ? max(integer + length, 0) : min(integer, length);
1272
- };
1273
-
1274
-
1275
- /***/ }),
1276
-
1277
- /***/ 5745:
1278
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1279
-
1280
- "use strict";
1281
-
1282
- var store = __webpack_require__(7629);
1283
-
1284
- module.exports = function (key, value) {
1285
- return store[key] || (store[key] = value || {});
1286
- };
1287
-
1288
-
1289
- /***/ }),
1290
-
1291
- /***/ 5917:
1292
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1293
-
1294
- "use strict";
1295
-
1296
- var DESCRIPTORS = __webpack_require__(3724);
1297
- var fails = __webpack_require__(9039);
1298
- var createElement = __webpack_require__(4055);
1299
-
1300
- // Thanks to IE8 for its funny defineProperty
1301
- module.exports = !DESCRIPTORS && !fails(function () {
1302
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1303
- return Object.defineProperty(createElement('div'), 'a', {
1304
- get: function () { return 7; }
1305
- }).a !== 7;
1306
- });
1307
-
1308
-
1309
- /***/ }),
1310
-
1311
- /***/ 5966:
1312
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1313
-
1314
- "use strict";
1315
-
1316
- var aCallable = __webpack_require__(9306);
1317
- var isNullOrUndefined = __webpack_require__(4117);
1318
-
1319
- // `GetMethod` abstract operation
1320
- // https://tc39.es/ecma262/#sec-getmethod
1321
- module.exports = function (V, P) {
1322
- var func = V[P];
1323
- return isNullOrUndefined(func) ? undefined : aCallable(func);
1324
- };
1325
-
1326
-
1327
- /***/ }),
1328
-
1329
- /***/ 6080:
1330
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1331
-
1332
- "use strict";
1333
-
1334
- var uncurryThis = __webpack_require__(7476);
1335
- var aCallable = __webpack_require__(9306);
1336
- var NATIVE_BIND = __webpack_require__(616);
1337
-
1338
- var bind = uncurryThis(uncurryThis.bind);
1339
-
1340
- // optional / simple context binding
1341
- module.exports = function (fn, that) {
1342
- aCallable(fn);
1343
- return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
1344
- return fn.apply(that, arguments);
1345
- };
1346
- };
1347
-
1348
-
1349
- /***/ }),
1350
-
1351
- /***/ 6119:
1352
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1353
-
1354
- "use strict";
1355
-
1356
- var shared = __webpack_require__(5745);
1357
- var uid = __webpack_require__(3392);
1358
-
1359
- var keys = shared('keys');
1360
-
1361
- module.exports = function (key) {
1362
- return keys[key] || (keys[key] = uid(key));
1363
- };
1364
-
1365
-
1366
- /***/ }),
1367
-
1368
- /***/ 6198:
1369
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1370
-
1371
- "use strict";
1372
-
1373
- var toLength = __webpack_require__(8014);
1374
-
1375
- // `LengthOfArrayLike` abstract operation
1376
- // https://tc39.es/ecma262/#sec-lengthofarraylike
1377
- module.exports = function (obj) {
1378
- return toLength(obj.length);
1379
- };
1380
-
1381
-
1382
- /***/ }),
1383
-
1384
- /***/ 6269:
1385
- /***/ (function(module) {
1386
-
1387
- "use strict";
1388
-
1389
- module.exports = {};
1390
-
1391
-
1392
- /***/ }),
1393
-
1394
- /***/ 6395:
1395
- /***/ (function(module) {
1396
-
1397
- "use strict";
1398
-
1399
- module.exports = false;
1400
-
1401
-
1402
- /***/ }),
1403
-
1404
- /***/ 6518:
1405
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1406
-
1407
- "use strict";
1408
-
1409
- var globalThis = __webpack_require__(4576);
1410
- var getOwnPropertyDescriptor = (__webpack_require__(7347).f);
1411
- var createNonEnumerableProperty = __webpack_require__(6699);
1412
- var defineBuiltIn = __webpack_require__(6840);
1413
- var defineGlobalProperty = __webpack_require__(9433);
1414
- var copyConstructorProperties = __webpack_require__(7740);
1415
- var isForced = __webpack_require__(2796);
1416
-
1417
- /*
1418
- options.target - name of the target object
1419
- options.global - target is the global object
1420
- options.stat - export as static methods of target
1421
- options.proto - export as prototype methods of target
1422
- options.real - real prototype method for the `pure` version
1423
- options.forced - export even if the native feature is available
1424
- options.bind - bind methods to the target, required for the `pure` version
1425
- options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
1426
- options.unsafe - use the simple assignment of property instead of delete + defineProperty
1427
- options.sham - add a flag to not completely full polyfills
1428
- options.enumerable - export as enumerable property
1429
- options.dontCallGetSet - prevent calling a getter on target
1430
- options.name - the .name of the function if it does not match the key
1431
- */
1432
- module.exports = function (options, source) {
1433
- var TARGET = options.target;
1434
- var GLOBAL = options.global;
1435
- var STATIC = options.stat;
1436
- var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1437
- if (GLOBAL) {
1438
- target = globalThis;
1439
- } else if (STATIC) {
1440
- target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
1441
- } else {
1442
- target = globalThis[TARGET] && globalThis[TARGET].prototype;
1443
- }
1444
- if (target) for (key in source) {
1445
- sourceProperty = source[key];
1446
- if (options.dontCallGetSet) {
1447
- descriptor = getOwnPropertyDescriptor(target, key);
1448
- targetProperty = descriptor && descriptor.value;
1449
- } else targetProperty = target[key];
1450
- FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1451
- // contained in target
1452
- if (!FORCED && targetProperty !== undefined) {
1453
- if (typeof sourceProperty == typeof targetProperty) continue;
1454
- copyConstructorProperties(sourceProperty, targetProperty);
1455
- }
1456
- // add a flag to not completely full polyfills
1457
- if (options.sham || (targetProperty && targetProperty.sham)) {
1458
- createNonEnumerableProperty(sourceProperty, 'sham', true);
1459
- }
1460
- defineBuiltIn(target, key, sourceProperty, options);
1461
- }
1462
- };
1463
-
1464
-
1465
- /***/ }),
1466
-
1467
- /***/ 6699:
1468
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1469
-
1470
- "use strict";
1471
-
1472
- var DESCRIPTORS = __webpack_require__(3724);
1473
- var definePropertyModule = __webpack_require__(4913);
1474
- var createPropertyDescriptor = __webpack_require__(6980);
1475
-
1476
- module.exports = DESCRIPTORS ? function (object, key, value) {
1477
- return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
1478
- } : function (object, key, value) {
1479
- object[key] = value;
1480
- return object;
1481
- };
1482
-
1483
-
1484
- /***/ }),
1485
-
1486
- /***/ 6801:
1487
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1488
-
1489
- "use strict";
1490
-
1491
- var DESCRIPTORS = __webpack_require__(3724);
1492
- var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
1493
- var definePropertyModule = __webpack_require__(4913);
1494
- var anObject = __webpack_require__(8551);
1495
- var toIndexedObject = __webpack_require__(5397);
1496
- var objectKeys = __webpack_require__(1072);
1497
-
1498
- // `Object.defineProperties` method
1499
- // https://tc39.es/ecma262/#sec-object.defineproperties
1500
- // eslint-disable-next-line es/no-object-defineproperties -- safe
1501
- exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1502
- anObject(O);
1503
- var props = toIndexedObject(Properties);
1504
- var keys = objectKeys(Properties);
1505
- var length = keys.length;
1506
- var index = 0;
1507
- var key;
1508
- while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1509
- return O;
1510
- };
1511
-
1512
-
1513
- /***/ }),
1514
-
1515
- /***/ 6823:
1516
- /***/ (function(module) {
1517
-
1518
- "use strict";
1519
-
1520
- var $String = String;
1521
-
1522
- module.exports = function (argument) {
1523
- try {
1524
- return $String(argument);
1525
- } catch (error) {
1526
- return 'Object';
1527
- }
1528
- };
1529
-
1530
-
1531
- /***/ }),
1532
-
1533
- /***/ 6840:
1534
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1535
-
1536
- "use strict";
1537
-
1538
- var isCallable = __webpack_require__(4901);
1539
- var definePropertyModule = __webpack_require__(4913);
1540
- var makeBuiltIn = __webpack_require__(283);
1541
- var defineGlobalProperty = __webpack_require__(9433);
1542
-
1543
- module.exports = function (O, key, value, options) {
1544
- if (!options) options = {};
1545
- var simple = options.enumerable;
1546
- var name = options.name !== undefined ? options.name : key;
1547
- if (isCallable(value)) makeBuiltIn(value, name, options);
1548
- if (options.global) {
1549
- if (simple) O[key] = value;
1550
- else defineGlobalProperty(key, value);
1551
- } else {
1552
- try {
1553
- if (!options.unsafe) delete O[key];
1554
- else if (O[key]) simple = true;
1555
- } catch (error) { /* empty */ }
1556
- if (simple) O[key] = value;
1557
- else definePropertyModule.f(O, key, {
1558
- value: value,
1559
- enumerable: false,
1560
- configurable: !options.nonConfigurable,
1561
- writable: !options.nonWritable
1562
- });
1563
- } return O;
1564
- };
1565
-
1566
-
1567
- /***/ }),
1568
-
1569
- /***/ 6955:
1570
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1571
-
1572
- "use strict";
1573
-
1574
- var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
1575
- var isCallable = __webpack_require__(4901);
1576
- var classofRaw = __webpack_require__(2195);
1577
- var wellKnownSymbol = __webpack_require__(8227);
1578
-
1579
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1580
- var $Object = Object;
1581
-
1582
- // ES3 wrong here
1583
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1584
-
1585
- // fallback for IE11 Script Access Denied error
1586
- var tryGet = function (it, key) {
1587
- try {
1588
- return it[key];
1589
- } catch (error) { /* empty */ }
1590
- };
1591
-
1592
- // getting tag from ES6+ `Object.prototype.toString`
1593
- module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1594
- var O, tag, result;
1595
- return it === undefined ? 'Undefined' : it === null ? 'Null'
1596
- // @@toStringTag case
1597
- : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1598
- // builtinTag case
1599
- : CORRECT_ARGUMENTS ? classofRaw(O)
1600
- // ES3 arguments fallback
1601
- : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1602
- };
1603
-
1604
-
1605
- /***/ }),
1606
-
1607
- /***/ 6969:
1608
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1609
-
1610
- "use strict";
1611
-
1612
- var toPrimitive = __webpack_require__(2777);
1613
- var isSymbol = __webpack_require__(757);
1614
-
1615
- // `ToPropertyKey` abstract operation
1616
- // https://tc39.es/ecma262/#sec-topropertykey
1617
- module.exports = function (argument) {
1618
- var key = toPrimitive(argument, 'string');
1619
- return isSymbol(key) ? key : key + '';
1620
- };
1621
-
1622
-
1623
- /***/ }),
1624
-
1625
- /***/ 6980:
1626
- /***/ (function(module) {
1627
-
1628
- "use strict";
1629
-
1630
- module.exports = function (bitmap, value) {
1631
- return {
1632
- enumerable: !(bitmap & 1),
1633
- configurable: !(bitmap & 2),
1634
- writable: !(bitmap & 4),
1635
- value: value
1636
- };
1637
- };
1638
-
1639
-
1640
- /***/ }),
1641
-
1642
- /***/ 7023:
1643
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1644
-
1645
- "use strict";
1646
-
1647
-
1648
- __webpack_require__(8111);
1649
- __webpack_require__(7588);
1650
- var _interopRequireDefault = (__webpack_require__(7217)["default"]);
1651
- __webpack_require__(8111);
1652
- __webpack_require__(7588);
1653
- var _index = _interopRequireDefault(__webpack_require__(3960));
1654
- const components = [_index.default].filter(component => component && component.name);
1655
- const install = function (VueInstance) {
1656
- if (!VueInstance.prototype.$ELEMENT) {
1657
- console.error("使用BackendManagementUI前请先注册ElementUI");
1658
- return;
1659
- }
1660
- if (!VueInstance || !VueInstance.component) {
1661
- console.warn("Vue is required");
1662
- return;
1663
- }
1664
- if (install.installed) return;
1665
- components.forEach(component => {
1666
- if (component.name) VueInstance.component(component.name, component);
1667
- });
1668
- install.installed = true;
1669
- };
1670
-
1671
- // 兼容全局 Vue
1672
- if (typeof window !== "undefined" && window.Vue) {
1673
- install(window.Vue);
1674
- }
1675
-
1676
- // CommonJS 导出
1677
- const BackendManagementUI = {
1678
- version: "0.1.0",
1679
- install,
1680
- UiForm: _index.default
1681
- };
1682
- module.exports = BackendManagementUI;
1683
- module.exports["default"] = BackendManagementUI;
1684
- module.exports.UiForm = _index.default;
1685
- // const defaultExport = {
1686
- // install,
1687
- // UiForm,
1688
- // };
1689
-
1690
- // console.log("module", module);
1691
-
1692
- // if (typeof module !== "undefined" && module.exports) {
1693
- // console.log("module ESM");
1694
- // module.exports = defaultExport;
1695
- // module.exports.default = defaultExport;
1696
- // }
1697
-
1698
- // export { UiForm };
1699
-
1700
- // export default defaultExport;
1701
-
1702
- /***/ }),
1703
-
1704
- /***/ 7040:
1705
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1706
-
1707
- "use strict";
1708
-
1709
- /* eslint-disable es/no-symbol -- required for testing */
1710
- var NATIVE_SYMBOL = __webpack_require__(4495);
1711
-
1712
- module.exports = NATIVE_SYMBOL &&
1713
- !Symbol.sham &&
1714
- typeof Symbol.iterator == 'symbol';
1715
-
1716
-
1717
- /***/ }),
1718
-
1719
- /***/ 7055:
1720
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1721
-
1722
- "use strict";
1723
-
1724
- var uncurryThis = __webpack_require__(9504);
1725
- var fails = __webpack_require__(9039);
1726
- var classof = __webpack_require__(2195);
1727
-
1728
- var $Object = Object;
1729
- var split = uncurryThis(''.split);
1730
-
1731
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
1732
- module.exports = fails(function () {
1733
- // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
1734
- // eslint-disable-next-line no-prototype-builtins -- safe
1735
- return !$Object('z').propertyIsEnumerable(0);
1736
- }) ? function (it) {
1737
- return classof(it) === 'String' ? split(it, '') : $Object(it);
1738
- } : $Object;
1739
-
1740
-
1741
- /***/ }),
1742
-
1743
- /***/ 7217:
1744
- /***/ (function(module) {
1745
-
1746
- function _interopRequireDefault(e) {
1747
- return e && e.__esModule ? e : {
1748
- "default": e
1749
- };
1750
- }
1751
- module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
1752
-
1753
- /***/ }),
1754
-
1755
- /***/ 7347:
1756
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1757
-
1758
- "use strict";
1759
-
1760
- var DESCRIPTORS = __webpack_require__(3724);
1761
- var call = __webpack_require__(9565);
1762
- var propertyIsEnumerableModule = __webpack_require__(8773);
1763
- var createPropertyDescriptor = __webpack_require__(6980);
1764
- var toIndexedObject = __webpack_require__(5397);
1765
- var toPropertyKey = __webpack_require__(6969);
1766
- var hasOwn = __webpack_require__(9297);
1767
- var IE8_DOM_DEFINE = __webpack_require__(5917);
1768
-
1769
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1770
- var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1771
-
1772
- // `Object.getOwnPropertyDescriptor` method
1773
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
1774
- exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
1775
- O = toIndexedObject(O);
1776
- P = toPropertyKey(P);
1777
- if (IE8_DOM_DEFINE) try {
1778
- return $getOwnPropertyDescriptor(O, P);
1779
- } catch (error) { /* empty */ }
1780
- if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
1781
- };
1782
-
1783
-
1784
- /***/ }),
1785
-
1786
- /***/ 7476:
1787
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1788
-
1789
- "use strict";
1790
-
1791
- var classofRaw = __webpack_require__(2195);
1792
- var uncurryThis = __webpack_require__(9504);
1793
-
1794
- module.exports = function (fn) {
1795
- // Nashorn bug:
1796
- // https://github.com/zloirock/core-js/issues/1128
1797
- // https://github.com/zloirock/core-js/issues/1130
1798
- if (classofRaw(fn) === 'Function') return uncurryThis(fn);
1799
- };
1800
-
1801
-
1802
- /***/ }),
1803
-
1804
- /***/ 7588:
1805
- /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1806
-
1807
- "use strict";
1808
-
1809
- var $ = __webpack_require__(6518);
1810
- var call = __webpack_require__(9565);
1811
- var iterate = __webpack_require__(2652);
1812
- var aCallable = __webpack_require__(9306);
1813
- var anObject = __webpack_require__(8551);
1814
- var getIteratorDirect = __webpack_require__(1767);
1815
- var iteratorClose = __webpack_require__(9539);
1816
- var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(4549);
1817
-
1818
- var forEachWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('forEach', TypeError);
1819
-
1820
- // `Iterator.prototype.forEach` method
1821
- // https://tc39.es/ecma262/#sec-iterator.prototype.foreach
1822
- $({ target: 'Iterator', proto: true, real: true, forced: forEachWithoutClosingOnEarlyError }, {
1823
- forEach: function forEach(fn) {
1824
- anObject(this);
1825
- try {
1826
- aCallable(fn);
1827
- } catch (error) {
1828
- iteratorClose(this, 'throw', error);
1829
- }
1830
-
1831
- if (forEachWithoutClosingOnEarlyError) return call(forEachWithoutClosingOnEarlyError, this, fn);
1832
-
1833
- var record = getIteratorDirect(this);
1834
- var counter = 0;
1835
- iterate(record, function (value) {
1836
- fn(value, counter++);
1837
- }, { IS_RECORD: true });
1838
- }
1839
- });
1840
-
1841
-
1842
- /***/ }),
1843
-
1844
- /***/ 7629:
1845
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1846
-
1847
- "use strict";
1848
-
1849
- var IS_PURE = __webpack_require__(6395);
1850
- var globalThis = __webpack_require__(4576);
1851
- var defineGlobalProperty = __webpack_require__(9433);
1852
-
1853
- var SHARED = '__core-js_shared__';
1854
- var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
1855
-
1856
- (store.versions || (store.versions = [])).push({
1857
- version: '3.47.0',
1858
- mode: IS_PURE ? 'pure' : 'global',
1859
- copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)',
1860
- license: 'https://github.com/zloirock/core-js/blob/v3.47.0/LICENSE',
1861
- source: 'https://github.com/zloirock/core-js'
1862
- });
1863
-
1864
-
1865
- /***/ }),
1866
-
1867
- /***/ 7657:
1868
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1869
-
1870
- "use strict";
1871
-
1872
- var fails = __webpack_require__(9039);
1873
- var isCallable = __webpack_require__(4901);
1874
- var isObject = __webpack_require__(34);
1875
- var create = __webpack_require__(2360);
1876
- var getPrototypeOf = __webpack_require__(2787);
1877
- var defineBuiltIn = __webpack_require__(6840);
1878
- var wellKnownSymbol = __webpack_require__(8227);
1879
- var IS_PURE = __webpack_require__(6395);
1880
-
1881
- var ITERATOR = wellKnownSymbol('iterator');
1882
- var BUGGY_SAFARI_ITERATORS = false;
1883
-
1884
- // `%IteratorPrototype%` object
1885
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1886
- var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
1887
-
1888
- /* eslint-disable es/no-array-prototype-keys -- safe */
1889
- if ([].keys) {
1890
- arrayIterator = [].keys();
1891
- // Safari 8 has buggy iterators w/o `next`
1892
- if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1893
- else {
1894
- PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
1895
- if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
1896
- }
1897
- }
1898
-
1899
- var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
1900
- var test = {};
1901
- // FF44- legacy iterators case
1902
- return IteratorPrototype[ITERATOR].call(test) !== test;
1903
- });
1904
-
1905
- if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
1906
- else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
1907
-
1908
- // `%IteratorPrototype%[@@iterator]()` method
1909
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1910
- if (!isCallable(IteratorPrototype[ITERATOR])) {
1911
- defineBuiltIn(IteratorPrototype, ITERATOR, function () {
1912
- return this;
1913
- });
1914
- }
1915
-
1916
- module.exports = {
1917
- IteratorPrototype: IteratorPrototype,
1918
- BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1919
- };
1920
-
1921
-
1922
- /***/ }),
1923
-
1924
- /***/ 7740:
1925
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1926
-
1927
- "use strict";
1928
-
1929
- var hasOwn = __webpack_require__(9297);
1930
- var ownKeys = __webpack_require__(5031);
1931
- var getOwnPropertyDescriptorModule = __webpack_require__(7347);
1932
- var definePropertyModule = __webpack_require__(4913);
1933
-
1934
- module.exports = function (target, source, exceptions) {
1935
- var keys = ownKeys(source);
1936
- var defineProperty = definePropertyModule.f;
1937
- var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1938
- for (var i = 0; i < keys.length; i++) {
1939
- var key = keys[i];
1940
- if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
1941
- defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1942
- }
1943
- }
1944
- };
1945
-
1946
-
1947
- /***/ }),
1948
-
1949
- /***/ 7750:
1950
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1951
-
1952
- "use strict";
1953
-
1954
- var isNullOrUndefined = __webpack_require__(4117);
1955
-
1956
- var $TypeError = TypeError;
1957
-
1958
- // `RequireObjectCoercible` abstract operation
1959
- // https://tc39.es/ecma262/#sec-requireobjectcoercible
1960
- module.exports = function (it) {
1961
- if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
1962
- return it;
1963
- };
1964
-
1965
-
1966
- /***/ }),
1967
-
1968
- /***/ 7751:
1969
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1970
-
1971
- "use strict";
1972
-
1973
- var globalThis = __webpack_require__(4576);
1974
- var isCallable = __webpack_require__(4901);
1975
-
1976
- var aFunction = function (argument) {
1977
- return isCallable(argument) ? argument : undefined;
1978
- };
1979
-
1980
- module.exports = function (namespace, method) {
1981
- return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
1982
- };
1983
-
1984
-
1985
- /***/ }),
1986
-
1987
- /***/ 8014:
1988
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1989
-
1990
- "use strict";
1991
-
1992
- var toIntegerOrInfinity = __webpack_require__(1291);
1993
-
1994
- var min = Math.min;
1995
-
1996
- // `ToLength` abstract operation
1997
- // https://tc39.es/ecma262/#sec-tolength
1998
- module.exports = function (argument) {
1999
- var len = toIntegerOrInfinity(argument);
2000
- return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
2001
- };
2002
-
2003
-
2004
- /***/ }),
2005
-
2006
- /***/ 8111:
2007
- /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2008
-
2009
- "use strict";
2010
-
2011
- var $ = __webpack_require__(6518);
2012
- var globalThis = __webpack_require__(4576);
2013
- var anInstance = __webpack_require__(679);
2014
- var anObject = __webpack_require__(8551);
2015
- var isCallable = __webpack_require__(4901);
2016
- var getPrototypeOf = __webpack_require__(2787);
2017
- var defineBuiltInAccessor = __webpack_require__(2106);
2018
- var createProperty = __webpack_require__(4659);
2019
- var fails = __webpack_require__(9039);
2020
- var hasOwn = __webpack_require__(9297);
2021
- var wellKnownSymbol = __webpack_require__(8227);
2022
- var IteratorPrototype = (__webpack_require__(7657).IteratorPrototype);
2023
- var DESCRIPTORS = __webpack_require__(3724);
2024
- var IS_PURE = __webpack_require__(6395);
2025
-
2026
- var CONSTRUCTOR = 'constructor';
2027
- var ITERATOR = 'Iterator';
2028
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
2029
-
2030
- var $TypeError = TypeError;
2031
- var NativeIterator = globalThis[ITERATOR];
2032
-
2033
- // FF56- have non-standard global helper `Iterator`
2034
- var FORCED = IS_PURE
2035
- || !isCallable(NativeIterator)
2036
- || NativeIterator.prototype !== IteratorPrototype
2037
- // FF44- non-standard `Iterator` passes previous tests
2038
- || !fails(function () { NativeIterator({}); });
2039
-
2040
- var IteratorConstructor = function Iterator() {
2041
- anInstance(this, IteratorPrototype);
2042
- if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
2043
- };
2044
-
2045
- var defineIteratorPrototypeAccessor = function (key, value) {
2046
- if (DESCRIPTORS) {
2047
- defineBuiltInAccessor(IteratorPrototype, key, {
2048
- configurable: true,
2049
- get: function () {
2050
- return value;
2051
- },
2052
- set: function (replacement) {
2053
- anObject(this);
2054
- if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
2055
- if (hasOwn(this, key)) this[key] = replacement;
2056
- else createProperty(this, key, replacement);
2057
- }
2058
- });
2059
- } else IteratorPrototype[key] = value;
2060
- };
2061
-
2062
- if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
2063
-
2064
- if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
2065
- defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
2066
- }
2067
-
2068
- IteratorConstructor.prototype = IteratorPrototype;
2069
-
2070
- // `Iterator` constructor
2071
- // https://tc39.es/ecma262/#sec-iterator
2072
- $({ global: true, constructor: true, forced: FORCED }, {
2073
- Iterator: IteratorConstructor
2074
- });
2075
-
2076
-
2077
- /***/ }),
2078
-
2079
- /***/ 8227:
2080
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2081
-
2082
- "use strict";
2083
-
2084
- var globalThis = __webpack_require__(4576);
2085
- var shared = __webpack_require__(5745);
2086
- var hasOwn = __webpack_require__(9297);
2087
- var uid = __webpack_require__(3392);
2088
- var NATIVE_SYMBOL = __webpack_require__(4495);
2089
- var USE_SYMBOL_AS_UID = __webpack_require__(7040);
2090
-
2091
- var Symbol = globalThis.Symbol;
2092
- var WellKnownSymbolsStore = shared('wks');
2093
- var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
2094
-
2095
- module.exports = function (name) {
2096
- if (!hasOwn(WellKnownSymbolsStore, name)) {
2097
- WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
2098
- ? Symbol[name]
2099
- : createWellKnownSymbol('Symbol.' + name);
2100
- } return WellKnownSymbolsStore[name];
2101
- };
2102
-
2103
-
2104
- /***/ }),
2105
-
2106
- /***/ 8480:
2107
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
2108
-
2109
- "use strict";
2110
-
2111
- var internalObjectKeys = __webpack_require__(1828);
2112
- var enumBugKeys = __webpack_require__(8727);
2113
-
2114
- var hiddenKeys = enumBugKeys.concat('length', 'prototype');
2115
-
2116
- // `Object.getOwnPropertyNames` method
2117
- // https://tc39.es/ecma262/#sec-object.getownpropertynames
2118
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
2119
- exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
2120
- return internalObjectKeys(O, hiddenKeys);
2121
- };
2122
-
2123
-
2124
- /***/ }),
2125
-
2126
- /***/ 8551:
2127
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2128
-
2129
- "use strict";
2130
-
2131
- var isObject = __webpack_require__(34);
2132
-
2133
- var $String = String;
2134
- var $TypeError = TypeError;
2135
-
2136
- // `Assert: Type(argument) is Object`
2137
- module.exports = function (argument) {
2138
- if (isObject(argument)) return argument;
2139
- throw new $TypeError($String(argument) + ' is not an object');
2140
- };
2141
-
2142
-
2143
- /***/ }),
2144
-
2145
- /***/ 8622:
2146
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2147
-
2148
- "use strict";
2149
-
2150
- var globalThis = __webpack_require__(4576);
2151
- var isCallable = __webpack_require__(4901);
2152
-
2153
- var WeakMap = globalThis.WeakMap;
2154
-
2155
- module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
2156
-
2157
-
2158
- /***/ }),
2159
-
2160
- /***/ 8686:
2161
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2162
-
2163
- "use strict";
2164
-
2165
- var DESCRIPTORS = __webpack_require__(3724);
2166
- var fails = __webpack_require__(9039);
2167
-
2168
- // V8 ~ Chrome 36-
2169
- // https://bugs.chromium.org/p/v8/issues/detail?id=3334
2170
- module.exports = DESCRIPTORS && fails(function () {
2171
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2172
- return Object.defineProperty(function () { /* empty */ }, 'prototype', {
2173
- value: 42,
2174
- writable: false
2175
- }).prototype !== 42;
2176
- });
2177
-
2178
-
2179
- /***/ }),
2180
-
2181
- /***/ 8727:
2182
- /***/ (function(module) {
2183
-
2184
- "use strict";
2185
-
2186
- // IE8- don't enum bug keys
2187
- module.exports = [
2188
- 'constructor',
2189
- 'hasOwnProperty',
2190
- 'isPrototypeOf',
2191
- 'propertyIsEnumerable',
2192
- 'toLocaleString',
2193
- 'toString',
2194
- 'valueOf'
2195
- ];
2196
-
2197
-
2198
- /***/ }),
2199
-
2200
- /***/ 8773:
2201
- /***/ (function(__unused_webpack_module, exports) {
2202
-
2203
- "use strict";
2204
-
2205
- var $propertyIsEnumerable = {}.propertyIsEnumerable;
2206
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2207
- var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2208
-
2209
- // Nashorn ~ JDK8 bug
2210
- var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
2211
-
2212
- // `Object.prototype.propertyIsEnumerable` method implementation
2213
- // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
2214
- exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
2215
- var descriptor = getOwnPropertyDescriptor(this, V);
2216
- return !!descriptor && descriptor.enumerable;
2217
- } : $propertyIsEnumerable;
2218
-
2219
-
2220
- /***/ }),
2221
-
2222
- /***/ 8981:
2223
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2224
-
2225
- "use strict";
2226
-
2227
- var requireObjectCoercible = __webpack_require__(7750);
2228
-
2229
- var $Object = Object;
2230
-
2231
- // `ToObject` abstract operation
2232
- // https://tc39.es/ecma262/#sec-toobject
2233
- module.exports = function (argument) {
2234
- return $Object(requireObjectCoercible(argument));
2235
- };
2236
-
2237
-
2238
- /***/ }),
2239
-
2240
- /***/ 9039:
2241
- /***/ (function(module) {
2242
-
2243
- "use strict";
2244
-
2245
- module.exports = function (exec) {
2246
- try {
2247
- return !!exec();
2248
- } catch (error) {
2249
- return true;
2250
- }
2251
- };
2252
-
2253
-
2254
- /***/ }),
2255
-
2256
- /***/ 9297:
2257
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2258
-
2259
- "use strict";
2260
-
2261
- var uncurryThis = __webpack_require__(9504);
2262
- var toObject = __webpack_require__(8981);
2263
-
2264
- var hasOwnProperty = uncurryThis({}.hasOwnProperty);
2265
-
2266
- // `HasOwnProperty` abstract operation
2267
- // https://tc39.es/ecma262/#sec-hasownproperty
2268
- // eslint-disable-next-line es/no-object-hasown -- safe
2269
- module.exports = Object.hasOwn || function hasOwn(it, key) {
2270
- return hasOwnProperty(toObject(it), key);
2271
- };
2272
-
2273
-
2274
- /***/ }),
2275
-
2276
- /***/ 9306:
2277
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2278
-
2279
- "use strict";
2280
-
2281
- var isCallable = __webpack_require__(4901);
2282
- var tryToString = __webpack_require__(6823);
2283
-
2284
- var $TypeError = TypeError;
2285
-
2286
- // `Assert: IsCallable(argument) is true`
2287
- module.exports = function (argument) {
2288
- if (isCallable(argument)) return argument;
2289
- throw new $TypeError(tryToString(argument) + ' is not a function');
2290
- };
2291
-
2292
-
2293
- /***/ }),
2294
-
2295
- /***/ 9433:
2296
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2297
-
2298
- "use strict";
2299
-
2300
- var globalThis = __webpack_require__(4576);
2301
-
2302
- // eslint-disable-next-line es/no-object-defineproperty -- safe
2303
- var defineProperty = Object.defineProperty;
2304
-
2305
- module.exports = function (key, value) {
2306
- try {
2307
- defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
2308
- } catch (error) {
2309
- globalThis[key] = value;
2310
- } return value;
2311
- };
2312
-
2313
-
2314
- /***/ }),
2315
-
2316
- /***/ 9504:
2317
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2318
-
2319
- "use strict";
2320
-
2321
- var NATIVE_BIND = __webpack_require__(616);
2322
-
2323
- var FunctionPrototype = Function.prototype;
2324
- var call = FunctionPrototype.call;
2325
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
2326
- var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2327
-
2328
- module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
2329
- return function () {
2330
- return call.apply(fn, arguments);
2331
- };
4
+ const install = function(Vue) {
5
+ if (install.installed) return;
6
+ Vue.component(UiForm.name || 'UiForm', UiForm);
7
+ install.installed = true;
2332
8
  };
2333
9
 
2334
-
2335
- /***/ }),
2336
-
2337
- /***/ 9519:
2338
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2339
-
2340
- "use strict";
2341
-
2342
- var globalThis = __webpack_require__(4576);
2343
- var userAgent = __webpack_require__(2839);
2344
-
2345
- var process = globalThis.process;
2346
- var Deno = globalThis.Deno;
2347
- var versions = process && process.versions || Deno && Deno.version;
2348
- var v8 = versions && versions.v8;
2349
- var match, version;
2350
-
2351
- if (v8) {
2352
- match = v8.split('.');
2353
- // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2354
- // but their correct versions are not interesting for us
2355
- version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2356
- }
2357
-
2358
- // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2359
- // so check `userAgent` even if `.v8` exists, but 0
2360
- if (!version && userAgent) {
2361
- match = userAgent.match(/Edge\/(\d+)/);
2362
- if (!match || match[1] >= 74) {
2363
- match = userAgent.match(/Chrome\/(\d+)/);
2364
- if (match) version = +match[1];
2365
- }
10
+ if (typeof window !== 'undefined' && window.Vue) {
11
+ install(window.Vue);
2366
12
  }
2367
13
 
2368
- module.exports = version;
2369
-
2370
-
2371
- /***/ }),
2372
-
2373
- /***/ 9539:
2374
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2375
-
2376
- "use strict";
2377
-
2378
- var call = __webpack_require__(9565);
2379
- var anObject = __webpack_require__(8551);
2380
- var getMethod = __webpack_require__(5966);
2381
-
2382
- module.exports = function (iterator, kind, value) {
2383
- var innerResult, innerError;
2384
- anObject(iterator);
2385
- try {
2386
- innerResult = getMethod(iterator, 'return');
2387
- if (!innerResult) {
2388
- if (kind === 'throw') throw value;
2389
- return value;
2390
- }
2391
- innerResult = call(innerResult, iterator);
2392
- } catch (error) {
2393
- innerError = true;
2394
- innerResult = error;
2395
- }
2396
- if (kind === 'throw') throw value;
2397
- if (innerError) throw innerResult;
2398
- anObject(innerResult);
2399
- return value;
2400
- };
2401
-
2402
-
2403
- /***/ }),
2404
-
2405
- /***/ 9565:
2406
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2407
-
2408
- "use strict";
2409
-
2410
- var NATIVE_BIND = __webpack_require__(616);
2411
-
2412
- var call = Function.prototype.call;
2413
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
2414
- module.exports = NATIVE_BIND ? call.bind(call) : function () {
2415
- return call.apply(call, arguments);
2416
- };
2417
-
2418
-
2419
- /***/ }),
2420
-
2421
- /***/ 9617:
2422
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2423
-
2424
- "use strict";
2425
-
2426
- var toIndexedObject = __webpack_require__(5397);
2427
- var toAbsoluteIndex = __webpack_require__(5610);
2428
- var lengthOfArrayLike = __webpack_require__(6198);
2429
-
2430
- // `Array.prototype.{ indexOf, includes }` methods implementation
2431
- var createMethod = function (IS_INCLUDES) {
2432
- return function ($this, el, fromIndex) {
2433
- var O = toIndexedObject($this);
2434
- var length = lengthOfArrayLike(O);
2435
- if (length === 0) return !IS_INCLUDES && -1;
2436
- var index = toAbsoluteIndex(fromIndex, length);
2437
- var value;
2438
- // Array#includes uses SameValueZero equality algorithm
2439
- // eslint-disable-next-line no-self-compare -- NaN check
2440
- if (IS_INCLUDES && el !== el) while (length > index) {
2441
- value = O[index++];
2442
- // eslint-disable-next-line no-self-compare -- NaN check
2443
- if (value !== value) return true;
2444
- // Array#indexOf ignores holes, Array#includes - not
2445
- } else for (;length > index; index++) {
2446
- if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
2447
- } return !IS_INCLUDES && -1;
2448
- };
2449
- };
2450
-
2451
- module.exports = {
2452
- // `Array.prototype.includes` method
2453
- // https://tc39.es/ecma262/#sec-array.prototype.includes
2454
- includes: createMethod(true),
2455
- // `Array.prototype.indexOf` method
2456
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
2457
- indexOf: createMethod(false)
14
+ const BackendManagementUI = {
15
+ version: '0.1.0',
16
+ install,
17
+ UiForm
2458
18
  };
2459
19
 
2460
-
2461
- /***/ })
2462
-
2463
- /******/ });
2464
- /************************************************************************/
2465
- /******/ // The module cache
2466
- /******/ var __webpack_module_cache__ = {};
2467
- /******/
2468
- /******/ // The require function
2469
- /******/ function __webpack_require__(moduleId) {
2470
- /******/ // Check if module is in cache
2471
- /******/ var cachedModule = __webpack_module_cache__[moduleId];
2472
- /******/ if (cachedModule !== undefined) {
2473
- /******/ return cachedModule.exports;
2474
- /******/ }
2475
- /******/ // Create a new module (and put it into the cache)
2476
- /******/ var module = __webpack_module_cache__[moduleId] = {
2477
- /******/ // no module.id needed
2478
- /******/ // no module.loaded needed
2479
- /******/ exports: {}
2480
- /******/ };
2481
- /******/
2482
- /******/ // Execute the module function
2483
- /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2484
- /******/
2485
- /******/ // Return the exports of the module
2486
- /******/ return module.exports;
2487
- /******/ }
2488
- /******/
2489
- /************************************************************************/
2490
- /******/ /* webpack/runtime/compat get default export */
2491
- /******/ !function() {
2492
- /******/ // getDefaultExport function for compatibility with non-harmony modules
2493
- /******/ __webpack_require__.n = function(module) {
2494
- /******/ var getter = module && module.__esModule ?
2495
- /******/ function() { return module['default']; } :
2496
- /******/ function() { return module; };
2497
- /******/ __webpack_require__.d(getter, { a: getter });
2498
- /******/ return getter;
2499
- /******/ };
2500
- /******/ }();
2501
- /******/
2502
- /******/ /* webpack/runtime/define property getters */
2503
- /******/ !function() {
2504
- /******/ // define getter functions for harmony exports
2505
- /******/ __webpack_require__.d = function(exports, definition) {
2506
- /******/ for(var key in definition) {
2507
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
2508
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
2509
- /******/ }
2510
- /******/ }
2511
- /******/ };
2512
- /******/ }();
2513
- /******/
2514
- /******/ /* webpack/runtime/global */
2515
- /******/ !function() {
2516
- /******/ __webpack_require__.g = (function() {
2517
- /******/ if (typeof globalThis === 'object') return globalThis;
2518
- /******/ try {
2519
- /******/ return this || new Function('return this')();
2520
- /******/ } catch (e) {
2521
- /******/ if (typeof window === 'object') return window;
2522
- /******/ }
2523
- /******/ })();
2524
- /******/ }();
2525
- /******/
2526
- /******/ /* webpack/runtime/hasOwnProperty shorthand */
2527
- /******/ !function() {
2528
- /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
2529
- /******/ }();
2530
- /******/
2531
- /******/ /* webpack/runtime/make namespace object */
2532
- /******/ !function() {
2533
- /******/ // define __esModule on exports
2534
- /******/ __webpack_require__.r = function(exports) {
2535
- /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
2536
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2537
- /******/ }
2538
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
2539
- /******/ };
2540
- /******/ }();
2541
- /******/
2542
- /******/ /* webpack/runtime/publicPath */
2543
- /******/ !function() {
2544
- /******/ __webpack_require__.p = "";
2545
- /******/ }();
2546
- /******/
2547
- /************************************************************************/
2548
- var __webpack_exports__ = {};
2549
- // This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
2550
- !function() {
2551
- "use strict";
2552
-
2553
- // EXPORTS
2554
- __webpack_require__.d(__webpack_exports__, {
2555
- "default": function() { return /* binding */ entry_lib; }
2556
- });
2557
-
2558
- ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
2559
- /* eslint-disable no-var */
2560
- // This file is imported into lib/wc client bundles.
2561
-
2562
- if (typeof window !== 'undefined') {
2563
- var currentScript = window.document.currentScript
2564
- if (false) // removed by dead control flow
2565
- { var getCurrentScript; }
2566
-
2567
- var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
2568
- if (src) {
2569
- __webpack_require__.p = src[1] // eslint-disable-line
2570
- }
2571
- }
2572
-
2573
- // Indicate to webpack that this file can be concatenated
2574
- /* harmony default export */ var setPublicPath = (null);
2575
-
2576
- // EXTERNAL MODULE: ./src/components/index.js
2577
- var components = __webpack_require__(7023);
2578
- var components_default = /*#__PURE__*/__webpack_require__.n(components);
2579
- ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
2580
-
2581
-
2582
- /* harmony default export */ var entry_lib = ((components_default()));
2583
-
2584
-
2585
- }();
2586
- module.exports = __webpack_exports__["default"];
2587
- /******/ })()
2588
- ;
20
+ // 直接赋值 module.exports,无任何封装
21
+ module.exports = BackendManagementUI;
22
+ module.exports.default = BackendManagementUI;
23
+ module.exports.UiForm = UiForm;