xjzh-component 0.1.0

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.
@@ -0,0 +1,2316 @@
1
+ /******/ (function() { // webpackBootstrap
2
+ /******/ var __webpack_modules__ = ({
3
+
4
+ /***/ 34:
5
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
6
+
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
+ /***/ 283:
19
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
20
+
21
+ "use strict";
22
+
23
+ var uncurryThis = __webpack_require__(9504);
24
+ var fails = __webpack_require__(9039);
25
+ var isCallable = __webpack_require__(4901);
26
+ var hasOwn = __webpack_require__(9297);
27
+ var DESCRIPTORS = __webpack_require__(3724);
28
+ var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(350).CONFIGURABLE);
29
+ var inspectSource = __webpack_require__(3706);
30
+ var InternalStateModule = __webpack_require__(1181);
31
+
32
+ var enforceInternalState = InternalStateModule.enforce;
33
+ var getInternalState = InternalStateModule.get;
34
+ var $String = String;
35
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
36
+ var defineProperty = Object.defineProperty;
37
+ var stringSlice = uncurryThis(''.slice);
38
+ var replace = uncurryThis(''.replace);
39
+ var join = uncurryThis([].join);
40
+
41
+ var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
42
+ return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
43
+ });
44
+
45
+ var TEMPLATE = String(String).split('String');
46
+
47
+ var makeBuiltIn = module.exports = function (value, name, options) {
48
+ if (stringSlice($String(name), 0, 7) === 'Symbol(') {
49
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
50
+ }
51
+ if (options && options.getter) name = 'get ' + name;
52
+ if (options && options.setter) name = 'set ' + name;
53
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
54
+ if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
55
+ else value.name = name;
56
+ }
57
+ if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
58
+ defineProperty(value, 'length', { value: options.arity });
59
+ }
60
+ try {
61
+ if (options && hasOwn(options, 'constructor') && options.constructor) {
62
+ if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
63
+ // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
64
+ } else if (value.prototype) value.prototype = undefined;
65
+ } catch (error) { /* empty */ }
66
+ var state = enforceInternalState(value);
67
+ if (!hasOwn(state, 'source')) {
68
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
69
+ } return value;
70
+ };
71
+
72
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
73
+ // eslint-disable-next-line no-extend-native -- required
74
+ Function.prototype.toString = makeBuiltIn(function toString() {
75
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
76
+ }, 'toString');
77
+
78
+
79
+ /***/ }),
80
+
81
+ /***/ 350:
82
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
83
+
84
+ "use strict";
85
+
86
+ var DESCRIPTORS = __webpack_require__(3724);
87
+ var hasOwn = __webpack_require__(9297);
88
+
89
+ var FunctionPrototype = Function.prototype;
90
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
91
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
92
+
93
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
94
+ // additional protection from minified / mangled / dropped function names
95
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
96
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
97
+
98
+ module.exports = {
99
+ EXISTS: EXISTS,
100
+ PROPER: PROPER,
101
+ CONFIGURABLE: CONFIGURABLE
102
+ };
103
+
104
+
105
+ /***/ }),
106
+
107
+ /***/ 421:
108
+ /***/ (function(module) {
109
+
110
+ "use strict";
111
+
112
+ module.exports = {};
113
+
114
+
115
+ /***/ }),
116
+
117
+ /***/ 616:
118
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
119
+
120
+ "use strict";
121
+
122
+ var fails = __webpack_require__(9039);
123
+
124
+ module.exports = !fails(function () {
125
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
126
+ var test = (function () { /* empty */ }).bind();
127
+ // eslint-disable-next-line no-prototype-builtins -- safe
128
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
129
+ });
130
+
131
+
132
+ /***/ }),
133
+
134
+ /***/ 655:
135
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
136
+
137
+ "use strict";
138
+
139
+ var classof = __webpack_require__(6955);
140
+
141
+ var $String = String;
142
+
143
+ module.exports = function (argument) {
144
+ if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
145
+ return $String(argument);
146
+ };
147
+
148
+
149
+ /***/ }),
150
+
151
+ /***/ 757:
152
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
153
+
154
+ "use strict";
155
+
156
+ var getBuiltIn = __webpack_require__(7751);
157
+ var isCallable = __webpack_require__(4901);
158
+ var isPrototypeOf = __webpack_require__(1625);
159
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
160
+
161
+ var $Object = Object;
162
+
163
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
164
+ return typeof it == 'symbol';
165
+ } : function (it) {
166
+ var $Symbol = getBuiltIn('Symbol');
167
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
168
+ };
169
+
170
+
171
+ /***/ }),
172
+
173
+ /***/ 1181:
174
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
175
+
176
+ "use strict";
177
+
178
+ var NATIVE_WEAK_MAP = __webpack_require__(8622);
179
+ var globalThis = __webpack_require__(4576);
180
+ var isObject = __webpack_require__(34);
181
+ var createNonEnumerableProperty = __webpack_require__(6699);
182
+ var hasOwn = __webpack_require__(9297);
183
+ var shared = __webpack_require__(7629);
184
+ var sharedKey = __webpack_require__(6119);
185
+ var hiddenKeys = __webpack_require__(421);
186
+
187
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
188
+ var TypeError = globalThis.TypeError;
189
+ var WeakMap = globalThis.WeakMap;
190
+ var set, get, has;
191
+
192
+ var enforce = function (it) {
193
+ return has(it) ? get(it) : set(it, {});
194
+ };
195
+
196
+ var getterFor = function (TYPE) {
197
+ return function (it) {
198
+ var state;
199
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
200
+ throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
201
+ } return state;
202
+ };
203
+ };
204
+
205
+ if (NATIVE_WEAK_MAP || shared.state) {
206
+ var store = shared.state || (shared.state = new WeakMap());
207
+ /* eslint-disable no-self-assign -- prototype methods protection */
208
+ store.get = store.get;
209
+ store.has = store.has;
210
+ store.set = store.set;
211
+ /* eslint-enable no-self-assign -- prototype methods protection */
212
+ set = function (it, metadata) {
213
+ if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
214
+ metadata.facade = it;
215
+ store.set(it, metadata);
216
+ return metadata;
217
+ };
218
+ get = function (it) {
219
+ return store.get(it) || {};
220
+ };
221
+ has = function (it) {
222
+ return store.has(it);
223
+ };
224
+ } else {
225
+ var STATE = sharedKey('state');
226
+ hiddenKeys[STATE] = true;
227
+ set = function (it, metadata) {
228
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
229
+ metadata.facade = it;
230
+ createNonEnumerableProperty(it, STATE, metadata);
231
+ return metadata;
232
+ };
233
+ get = function (it) {
234
+ return hasOwn(it, STATE) ? it[STATE] : {};
235
+ };
236
+ has = function (it) {
237
+ return hasOwn(it, STATE);
238
+ };
239
+ }
240
+
241
+ module.exports = {
242
+ set: set,
243
+ get: get,
244
+ has: has,
245
+ enforce: enforce,
246
+ getterFor: getterFor
247
+ };
248
+
249
+
250
+ /***/ }),
251
+
252
+ /***/ 1601:
253
+ /***/ (function(module) {
254
+
255
+ "use strict";
256
+
257
+
258
+ module.exports = function (i) {
259
+ return i[1];
260
+ };
261
+
262
+ /***/ }),
263
+
264
+ /***/ 1625:
265
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
266
+
267
+ "use strict";
268
+
269
+ var uncurryThis = __webpack_require__(9504);
270
+
271
+ module.exports = uncurryThis({}.isPrototypeOf);
272
+
273
+
274
+ /***/ }),
275
+
276
+ /***/ 1627:
277
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
278
+
279
+ // style-loader: Adds some css to the DOM by adding a <style> tag
280
+
281
+ // load the styles
282
+ var content = __webpack_require__(9913);
283
+ if(content.__esModule) content = content.default;
284
+ if(typeof content === 'string') content = [[module.id, content, '']];
285
+ if(content.locals) module.exports = content.locals;
286
+ // add the styles to the DOM
287
+ var add = (__webpack_require__(9548)/* ["default"] */ .A)
288
+ var update = add("242b3629", content, true, {"sourceMap":false,"shadowMode":false});
289
+
290
+ /***/ }),
291
+
292
+ /***/ 2106:
293
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
294
+
295
+ "use strict";
296
+
297
+ var makeBuiltIn = __webpack_require__(283);
298
+ var defineProperty = __webpack_require__(4913);
299
+
300
+ module.exports = function (target, name, descriptor) {
301
+ if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
302
+ if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
303
+ return defineProperty.f(target, name, descriptor);
304
+ };
305
+
306
+
307
+ /***/ }),
308
+
309
+ /***/ 2140:
310
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
311
+
312
+ "use strict";
313
+
314
+ var wellKnownSymbol = __webpack_require__(8227);
315
+
316
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
317
+ var test = {};
318
+
319
+ test[TO_STRING_TAG] = 'z';
320
+
321
+ module.exports = String(test) === '[object z]';
322
+
323
+
324
+ /***/ }),
325
+
326
+ /***/ 2195:
327
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
328
+
329
+ "use strict";
330
+
331
+ var uncurryThis = __webpack_require__(9504);
332
+
333
+ var toString = uncurryThis({}.toString);
334
+ var stringSlice = uncurryThis(''.slice);
335
+
336
+ module.exports = function (it) {
337
+ return stringSlice(toString(it), 8, -1);
338
+ };
339
+
340
+
341
+ /***/ }),
342
+
343
+ /***/ 2777:
344
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
345
+
346
+ "use strict";
347
+
348
+ var call = __webpack_require__(9565);
349
+ var isObject = __webpack_require__(34);
350
+ var isSymbol = __webpack_require__(757);
351
+ var getMethod = __webpack_require__(5966);
352
+ var ordinaryToPrimitive = __webpack_require__(4270);
353
+ var wellKnownSymbol = __webpack_require__(8227);
354
+
355
+ var $TypeError = TypeError;
356
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
357
+
358
+ // `ToPrimitive` abstract operation
359
+ // https://tc39.es/ecma262/#sec-toprimitive
360
+ module.exports = function (input, pref) {
361
+ if (!isObject(input) || isSymbol(input)) return input;
362
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
363
+ var result;
364
+ if (exoticToPrim) {
365
+ if (pref === undefined) pref = 'default';
366
+ result = call(exoticToPrim, input, pref);
367
+ if (!isObject(result) || isSymbol(result)) return result;
368
+ throw new $TypeError("Can't convert object to primitive value");
369
+ }
370
+ if (pref === undefined) pref = 'number';
371
+ return ordinaryToPrimitive(input, pref);
372
+ };
373
+
374
+
375
+ /***/ }),
376
+
377
+ /***/ 2812:
378
+ /***/ (function(module) {
379
+
380
+ "use strict";
381
+
382
+ var $TypeError = TypeError;
383
+
384
+ module.exports = function (passed, required) {
385
+ if (passed < required) throw new $TypeError('Not enough arguments');
386
+ return passed;
387
+ };
388
+
389
+
390
+ /***/ }),
391
+
392
+ /***/ 2839:
393
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
394
+
395
+ "use strict";
396
+
397
+ var globalThis = __webpack_require__(4576);
398
+
399
+ var navigator = globalThis.navigator;
400
+ var userAgent = navigator && navigator.userAgent;
401
+
402
+ module.exports = userAgent ? String(userAgent) : '';
403
+
404
+
405
+ /***/ }),
406
+
407
+ /***/ 3392:
408
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
409
+
410
+ "use strict";
411
+
412
+ var uncurryThis = __webpack_require__(9504);
413
+
414
+ var id = 0;
415
+ var postfix = Math.random();
416
+ var toString = uncurryThis(1.1.toString);
417
+
418
+ module.exports = function (key) {
419
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
420
+ };
421
+
422
+
423
+ /***/ }),
424
+
425
+ /***/ 3706:
426
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
427
+
428
+ "use strict";
429
+
430
+ var uncurryThis = __webpack_require__(9504);
431
+ var isCallable = __webpack_require__(4901);
432
+ var store = __webpack_require__(7629);
433
+
434
+ var functionToString = uncurryThis(Function.toString);
435
+
436
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
437
+ if (!isCallable(store.inspectSource)) {
438
+ store.inspectSource = function (it) {
439
+ return functionToString(it);
440
+ };
441
+ }
442
+
443
+ module.exports = store.inspectSource;
444
+
445
+
446
+ /***/ }),
447
+
448
+ /***/ 3724:
449
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
450
+
451
+ "use strict";
452
+
453
+ var fails = __webpack_require__(9039);
454
+
455
+ // Detect IE8's incomplete defineProperty implementation
456
+ module.exports = !fails(function () {
457
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
458
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
459
+ });
460
+
461
+
462
+ /***/ }),
463
+
464
+ /***/ 4055:
465
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
466
+
467
+ "use strict";
468
+
469
+ var globalThis = __webpack_require__(4576);
470
+ var isObject = __webpack_require__(34);
471
+
472
+ var document = globalThis.document;
473
+ // typeof document.createElement is 'object' in old IE
474
+ var EXISTS = isObject(document) && isObject(document.createElement);
475
+
476
+ module.exports = function (it) {
477
+ return EXISTS ? document.createElement(it) : {};
478
+ };
479
+
480
+
481
+ /***/ }),
482
+
483
+ /***/ 4117:
484
+ /***/ (function(module) {
485
+
486
+ "use strict";
487
+
488
+ // we can't use just `it == null` since of `document.all` special case
489
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
490
+ module.exports = function (it) {
491
+ return it === null || it === undefined;
492
+ };
493
+
494
+
495
+ /***/ }),
496
+
497
+ /***/ 4270:
498
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
499
+
500
+ "use strict";
501
+
502
+ var call = __webpack_require__(9565);
503
+ var isCallable = __webpack_require__(4901);
504
+ var isObject = __webpack_require__(34);
505
+
506
+ var $TypeError = TypeError;
507
+
508
+ // `OrdinaryToPrimitive` abstract operation
509
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
510
+ module.exports = function (input, pref) {
511
+ var fn, val;
512
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
513
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
514
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
515
+ throw new $TypeError("Can't convert object to primitive value");
516
+ };
517
+
518
+
519
+ /***/ }),
520
+
521
+ /***/ 4495:
522
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
523
+
524
+ "use strict";
525
+
526
+ /* eslint-disable es/no-symbol -- required for testing */
527
+ var V8_VERSION = __webpack_require__(9519);
528
+ var fails = __webpack_require__(9039);
529
+ var globalThis = __webpack_require__(4576);
530
+
531
+ var $String = globalThis.String;
532
+
533
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
534
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
535
+ var symbol = Symbol('symbol detection');
536
+ // Chrome 38 Symbol has incorrect toString conversion
537
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
538
+ // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
539
+ // of course, fail.
540
+ return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
541
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
542
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
543
+ });
544
+
545
+
546
+ /***/ }),
547
+
548
+ /***/ 4576:
549
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
550
+
551
+ "use strict";
552
+
553
+ var check = function (it) {
554
+ return it && it.Math === Math && it;
555
+ };
556
+
557
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
558
+ module.exports =
559
+ // eslint-disable-next-line es/no-global-this -- safe
560
+ check(typeof globalThis == 'object' && globalThis) ||
561
+ check(typeof window == 'object' && window) ||
562
+ // eslint-disable-next-line no-restricted-globals -- safe
563
+ check(typeof self == 'object' && self) ||
564
+ check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
565
+ check(typeof this == 'object' && this) ||
566
+ // eslint-disable-next-line no-new-func -- fallback
567
+ (function () { return this; })() || Function('return this')();
568
+
569
+
570
+ /***/ }),
571
+
572
+ /***/ 4603:
573
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
574
+
575
+ "use strict";
576
+
577
+ var defineBuiltIn = __webpack_require__(6840);
578
+ var uncurryThis = __webpack_require__(9504);
579
+ var toString = __webpack_require__(655);
580
+ var validateArgumentsLength = __webpack_require__(2812);
581
+
582
+ var $URLSearchParams = URLSearchParams;
583
+ var URLSearchParamsPrototype = $URLSearchParams.prototype;
584
+ var append = uncurryThis(URLSearchParamsPrototype.append);
585
+ var $delete = uncurryThis(URLSearchParamsPrototype['delete']);
586
+ var forEach = uncurryThis(URLSearchParamsPrototype.forEach);
587
+ var push = uncurryThis([].push);
588
+ var params = new $URLSearchParams('a=1&a=2&b=3');
589
+
590
+ params['delete']('a', 1);
591
+ // `undefined` case is a Chromium 117 bug
592
+ // https://bugs.chromium.org/p/v8/issues/detail?id=14222
593
+ params['delete']('b', undefined);
594
+
595
+ if (params + '' !== 'a=2') {
596
+ defineBuiltIn(URLSearchParamsPrototype, 'delete', function (name /* , value */) {
597
+ var length = arguments.length;
598
+ var $value = length < 2 ? undefined : arguments[1];
599
+ if (length && $value === undefined) return $delete(this, name);
600
+ var entries = [];
601
+ forEach(this, function (v, k) { // also validates `this`
602
+ push(entries, { key: k, value: v });
603
+ });
604
+ validateArgumentsLength(length, 1);
605
+ var key = toString(name);
606
+ var value = toString($value);
607
+ var index = 0;
608
+ var dindex = 0;
609
+ var found = false;
610
+ var entriesLength = entries.length;
611
+ var entry;
612
+ while (index < entriesLength) {
613
+ entry = entries[index++];
614
+ if (found || entry.key === key) {
615
+ found = true;
616
+ $delete(this, entry.key);
617
+ } else dindex++;
618
+ }
619
+ while (dindex < entriesLength) {
620
+ entry = entries[dindex++];
621
+ if (!(entry.key === key && entry.value === value)) append(this, entry.key, entry.value);
622
+ }
623
+ }, { enumerable: true, unsafe: true });
624
+ }
625
+
626
+
627
+ /***/ }),
628
+
629
+ /***/ 4901:
630
+ /***/ (function(module) {
631
+
632
+ "use strict";
633
+
634
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
635
+ var documentAll = typeof document == 'object' && document.all;
636
+
637
+ // `IsCallable` abstract operation
638
+ // https://tc39.es/ecma262/#sec-iscallable
639
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
640
+ module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
641
+ return typeof argument == 'function' || argument === documentAll;
642
+ } : function (argument) {
643
+ return typeof argument == 'function';
644
+ };
645
+
646
+
647
+ /***/ }),
648
+
649
+ /***/ 4913:
650
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
651
+
652
+ "use strict";
653
+
654
+ var DESCRIPTORS = __webpack_require__(3724);
655
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
656
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
657
+ var anObject = __webpack_require__(8551);
658
+ var toPropertyKey = __webpack_require__(6969);
659
+
660
+ var $TypeError = TypeError;
661
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
662
+ var $defineProperty = Object.defineProperty;
663
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
664
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
665
+ var ENUMERABLE = 'enumerable';
666
+ var CONFIGURABLE = 'configurable';
667
+ var WRITABLE = 'writable';
668
+
669
+ // `Object.defineProperty` method
670
+ // https://tc39.es/ecma262/#sec-object.defineproperty
671
+ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
672
+ anObject(O);
673
+ P = toPropertyKey(P);
674
+ anObject(Attributes);
675
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
676
+ var current = $getOwnPropertyDescriptor(O, P);
677
+ if (current && current[WRITABLE]) {
678
+ O[P] = Attributes.value;
679
+ Attributes = {
680
+ configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
681
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
682
+ writable: false
683
+ };
684
+ }
685
+ } return $defineProperty(O, P, Attributes);
686
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
687
+ anObject(O);
688
+ P = toPropertyKey(P);
689
+ anObject(Attributes);
690
+ if (IE8_DOM_DEFINE) try {
691
+ return $defineProperty(O, P, Attributes);
692
+ } catch (error) { /* empty */ }
693
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
694
+ if ('value' in Attributes) O[P] = Attributes.value;
695
+ return O;
696
+ };
697
+
698
+
699
+ /***/ }),
700
+
701
+ /***/ 5745:
702
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
703
+
704
+ "use strict";
705
+
706
+ var store = __webpack_require__(7629);
707
+
708
+ module.exports = function (key, value) {
709
+ return store[key] || (store[key] = value || {});
710
+ };
711
+
712
+
713
+ /***/ }),
714
+
715
+ /***/ 5917:
716
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
717
+
718
+ "use strict";
719
+
720
+ var DESCRIPTORS = __webpack_require__(3724);
721
+ var fails = __webpack_require__(9039);
722
+ var createElement = __webpack_require__(4055);
723
+
724
+ // Thanks to IE8 for its funny defineProperty
725
+ module.exports = !DESCRIPTORS && !fails(function () {
726
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
727
+ return Object.defineProperty(createElement('div'), 'a', {
728
+ get: function () { return 7; }
729
+ }).a !== 7;
730
+ });
731
+
732
+
733
+ /***/ }),
734
+
735
+ /***/ 5966:
736
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
737
+
738
+ "use strict";
739
+
740
+ var aCallable = __webpack_require__(9306);
741
+ var isNullOrUndefined = __webpack_require__(4117);
742
+
743
+ // `GetMethod` abstract operation
744
+ // https://tc39.es/ecma262/#sec-getmethod
745
+ module.exports = function (V, P) {
746
+ var func = V[P];
747
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
748
+ };
749
+
750
+
751
+ /***/ }),
752
+
753
+ /***/ 6119:
754
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
755
+
756
+ "use strict";
757
+
758
+ var shared = __webpack_require__(5745);
759
+ var uid = __webpack_require__(3392);
760
+
761
+ var keys = shared('keys');
762
+
763
+ module.exports = function (key) {
764
+ return keys[key] || (keys[key] = uid(key));
765
+ };
766
+
767
+
768
+ /***/ }),
769
+
770
+ /***/ 6314:
771
+ /***/ (function(module) {
772
+
773
+ "use strict";
774
+
775
+
776
+ /*
777
+ MIT License http://www.opensource.org/licenses/mit-license.php
778
+ Author Tobias Koppers @sokra
779
+ */
780
+ module.exports = function (cssWithMappingToString) {
781
+ var list = [];
782
+
783
+ // return the list of modules as css string
784
+ list.toString = function toString() {
785
+ return this.map(function (item) {
786
+ var content = "";
787
+ var needLayer = typeof item[5] !== "undefined";
788
+ if (item[4]) {
789
+ content += "@supports (".concat(item[4], ") {");
790
+ }
791
+ if (item[2]) {
792
+ content += "@media ".concat(item[2], " {");
793
+ }
794
+ if (needLayer) {
795
+ content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {");
796
+ }
797
+ content += cssWithMappingToString(item);
798
+ if (needLayer) {
799
+ content += "}";
800
+ }
801
+ if (item[2]) {
802
+ content += "}";
803
+ }
804
+ if (item[4]) {
805
+ content += "}";
806
+ }
807
+ return content;
808
+ }).join("");
809
+ };
810
+
811
+ // import a list of modules into the list
812
+ list.i = function i(modules, media, dedupe, supports, layer) {
813
+ if (typeof modules === "string") {
814
+ modules = [[null, modules, undefined]];
815
+ }
816
+ var alreadyImportedModules = {};
817
+ if (dedupe) {
818
+ for (var k = 0; k < this.length; k++) {
819
+ var id = this[k][0];
820
+ if (id != null) {
821
+ alreadyImportedModules[id] = true;
822
+ }
823
+ }
824
+ }
825
+ for (var _k = 0; _k < modules.length; _k++) {
826
+ var item = [].concat(modules[_k]);
827
+ if (dedupe && alreadyImportedModules[item[0]]) {
828
+ continue;
829
+ }
830
+ if (typeof layer !== "undefined") {
831
+ if (typeof item[5] === "undefined") {
832
+ item[5] = layer;
833
+ } else {
834
+ item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}");
835
+ item[5] = layer;
836
+ }
837
+ }
838
+ if (media) {
839
+ if (!item[2]) {
840
+ item[2] = media;
841
+ } else {
842
+ item[1] = "@media ".concat(item[2], " {").concat(item[1], "}");
843
+ item[2] = media;
844
+ }
845
+ }
846
+ if (supports) {
847
+ if (!item[4]) {
848
+ item[4] = "".concat(supports);
849
+ } else {
850
+ item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}");
851
+ item[4] = supports;
852
+ }
853
+ }
854
+ list.push(item);
855
+ }
856
+ };
857
+ return list;
858
+ };
859
+
860
+ /***/ }),
861
+
862
+ /***/ 6395:
863
+ /***/ (function(module) {
864
+
865
+ "use strict";
866
+
867
+ module.exports = false;
868
+
869
+
870
+ /***/ }),
871
+
872
+ /***/ 6699:
873
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
874
+
875
+ "use strict";
876
+
877
+ var DESCRIPTORS = __webpack_require__(3724);
878
+ var definePropertyModule = __webpack_require__(4913);
879
+ var createPropertyDescriptor = __webpack_require__(6980);
880
+
881
+ module.exports = DESCRIPTORS ? function (object, key, value) {
882
+ return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
883
+ } : function (object, key, value) {
884
+ object[key] = value;
885
+ return object;
886
+ };
887
+
888
+
889
+ /***/ }),
890
+
891
+ /***/ 6823:
892
+ /***/ (function(module) {
893
+
894
+ "use strict";
895
+
896
+ var $String = String;
897
+
898
+ module.exports = function (argument) {
899
+ try {
900
+ return $String(argument);
901
+ } catch (error) {
902
+ return 'Object';
903
+ }
904
+ };
905
+
906
+
907
+ /***/ }),
908
+
909
+ /***/ 6840:
910
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
911
+
912
+ "use strict";
913
+
914
+ var isCallable = __webpack_require__(4901);
915
+ var definePropertyModule = __webpack_require__(4913);
916
+ var makeBuiltIn = __webpack_require__(283);
917
+ var defineGlobalProperty = __webpack_require__(9433);
918
+
919
+ module.exports = function (O, key, value, options) {
920
+ if (!options) options = {};
921
+ var simple = options.enumerable;
922
+ var name = options.name !== undefined ? options.name : key;
923
+ if (isCallable(value)) makeBuiltIn(value, name, options);
924
+ if (options.global) {
925
+ if (simple) O[key] = value;
926
+ else defineGlobalProperty(key, value);
927
+ } else {
928
+ try {
929
+ if (!options.unsafe) delete O[key];
930
+ else if (O[key]) simple = true;
931
+ } catch (error) { /* empty */ }
932
+ if (simple) O[key] = value;
933
+ else definePropertyModule.f(O, key, {
934
+ value: value,
935
+ enumerable: false,
936
+ configurable: !options.nonConfigurable,
937
+ writable: !options.nonWritable
938
+ });
939
+ } return O;
940
+ };
941
+
942
+
943
+ /***/ }),
944
+
945
+ /***/ 6955:
946
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
947
+
948
+ "use strict";
949
+
950
+ var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
951
+ var isCallable = __webpack_require__(4901);
952
+ var classofRaw = __webpack_require__(2195);
953
+ var wellKnownSymbol = __webpack_require__(8227);
954
+
955
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
956
+ var $Object = Object;
957
+
958
+ // ES3 wrong here
959
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
960
+
961
+ // fallback for IE11 Script Access Denied error
962
+ var tryGet = function (it, key) {
963
+ try {
964
+ return it[key];
965
+ } catch (error) { /* empty */ }
966
+ };
967
+
968
+ // getting tag from ES6+ `Object.prototype.toString`
969
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
970
+ var O, tag, result;
971
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
972
+ // @@toStringTag case
973
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
974
+ // builtinTag case
975
+ : CORRECT_ARGUMENTS ? classofRaw(O)
976
+ // ES3 arguments fallback
977
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
978
+ };
979
+
980
+
981
+ /***/ }),
982
+
983
+ /***/ 6969:
984
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
985
+
986
+ "use strict";
987
+
988
+ var toPrimitive = __webpack_require__(2777);
989
+ var isSymbol = __webpack_require__(757);
990
+
991
+ // `ToPropertyKey` abstract operation
992
+ // https://tc39.es/ecma262/#sec-topropertykey
993
+ module.exports = function (argument) {
994
+ var key = toPrimitive(argument, 'string');
995
+ return isSymbol(key) ? key : key + '';
996
+ };
997
+
998
+
999
+ /***/ }),
1000
+
1001
+ /***/ 6980:
1002
+ /***/ (function(module) {
1003
+
1004
+ "use strict";
1005
+
1006
+ module.exports = function (bitmap, value) {
1007
+ return {
1008
+ enumerable: !(bitmap & 1),
1009
+ configurable: !(bitmap & 2),
1010
+ writable: !(bitmap & 4),
1011
+ value: value
1012
+ };
1013
+ };
1014
+
1015
+
1016
+ /***/ }),
1017
+
1018
+ /***/ 7040:
1019
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1020
+
1021
+ "use strict";
1022
+
1023
+ /* eslint-disable es/no-symbol -- required for testing */
1024
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1025
+
1026
+ module.exports = NATIVE_SYMBOL &&
1027
+ !Symbol.sham &&
1028
+ typeof Symbol.iterator == 'symbol';
1029
+
1030
+
1031
+ /***/ }),
1032
+
1033
+ /***/ 7566:
1034
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1035
+
1036
+ "use strict";
1037
+
1038
+ var defineBuiltIn = __webpack_require__(6840);
1039
+ var uncurryThis = __webpack_require__(9504);
1040
+ var toString = __webpack_require__(655);
1041
+ var validateArgumentsLength = __webpack_require__(2812);
1042
+
1043
+ var $URLSearchParams = URLSearchParams;
1044
+ var URLSearchParamsPrototype = $URLSearchParams.prototype;
1045
+ var getAll = uncurryThis(URLSearchParamsPrototype.getAll);
1046
+ var $has = uncurryThis(URLSearchParamsPrototype.has);
1047
+ var params = new $URLSearchParams('a=1');
1048
+
1049
+ // `undefined` case is a Chromium 117 bug
1050
+ // https://bugs.chromium.org/p/v8/issues/detail?id=14222
1051
+ if (params.has('a', 2) || !params.has('a', undefined)) {
1052
+ defineBuiltIn(URLSearchParamsPrototype, 'has', function has(name /* , value */) {
1053
+ var length = arguments.length;
1054
+ var $value = length < 2 ? undefined : arguments[1];
1055
+ if (length && $value === undefined) return $has(this, name);
1056
+ var values = getAll(this, name); // also validates `this`
1057
+ validateArgumentsLength(length, 1);
1058
+ var value = toString($value);
1059
+ var index = 0;
1060
+ while (index < values.length) {
1061
+ if (values[index++] === value) return true;
1062
+ } return false;
1063
+ }, { enumerable: true, unsafe: true });
1064
+ }
1065
+
1066
+
1067
+ /***/ }),
1068
+
1069
+ /***/ 7629:
1070
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1071
+
1072
+ "use strict";
1073
+
1074
+ var IS_PURE = __webpack_require__(6395);
1075
+ var globalThis = __webpack_require__(4576);
1076
+ var defineGlobalProperty = __webpack_require__(9433);
1077
+
1078
+ var SHARED = '__core-js_shared__';
1079
+ var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
1080
+
1081
+ (store.versions || (store.versions = [])).push({
1082
+ version: '3.45.1',
1083
+ mode: IS_PURE ? 'pure' : 'global',
1084
+ copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru)',
1085
+ license: 'https://github.com/zloirock/core-js/blob/v3.45.1/LICENSE',
1086
+ source: 'https://github.com/zloirock/core-js'
1087
+ });
1088
+
1089
+
1090
+ /***/ }),
1091
+
1092
+ /***/ 7750:
1093
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1094
+
1095
+ "use strict";
1096
+
1097
+ var isNullOrUndefined = __webpack_require__(4117);
1098
+
1099
+ var $TypeError = TypeError;
1100
+
1101
+ // `RequireObjectCoercible` abstract operation
1102
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
1103
+ module.exports = function (it) {
1104
+ if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
1105
+ return it;
1106
+ };
1107
+
1108
+
1109
+ /***/ }),
1110
+
1111
+ /***/ 7751:
1112
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1113
+
1114
+ "use strict";
1115
+
1116
+ var globalThis = __webpack_require__(4576);
1117
+ var isCallable = __webpack_require__(4901);
1118
+
1119
+ var aFunction = function (argument) {
1120
+ return isCallable(argument) ? argument : undefined;
1121
+ };
1122
+
1123
+ module.exports = function (namespace, method) {
1124
+ return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
1125
+ };
1126
+
1127
+
1128
+ /***/ }),
1129
+
1130
+ /***/ 8227:
1131
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1132
+
1133
+ "use strict";
1134
+
1135
+ var globalThis = __webpack_require__(4576);
1136
+ var shared = __webpack_require__(5745);
1137
+ var hasOwn = __webpack_require__(9297);
1138
+ var uid = __webpack_require__(3392);
1139
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1140
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
1141
+
1142
+ var Symbol = globalThis.Symbol;
1143
+ var WellKnownSymbolsStore = shared('wks');
1144
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
1145
+
1146
+ module.exports = function (name) {
1147
+ if (!hasOwn(WellKnownSymbolsStore, name)) {
1148
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
1149
+ ? Symbol[name]
1150
+ : createWellKnownSymbol('Symbol.' + name);
1151
+ } return WellKnownSymbolsStore[name];
1152
+ };
1153
+
1154
+
1155
+ /***/ }),
1156
+
1157
+ /***/ 8551:
1158
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1159
+
1160
+ "use strict";
1161
+
1162
+ var isObject = __webpack_require__(34);
1163
+
1164
+ var $String = String;
1165
+ var $TypeError = TypeError;
1166
+
1167
+ // `Assert: Type(argument) is Object`
1168
+ module.exports = function (argument) {
1169
+ if (isObject(argument)) return argument;
1170
+ throw new $TypeError($String(argument) + ' is not an object');
1171
+ };
1172
+
1173
+
1174
+ /***/ }),
1175
+
1176
+ /***/ 8622:
1177
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1178
+
1179
+ "use strict";
1180
+
1181
+ var globalThis = __webpack_require__(4576);
1182
+ var isCallable = __webpack_require__(4901);
1183
+
1184
+ var WeakMap = globalThis.WeakMap;
1185
+
1186
+ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
1187
+
1188
+
1189
+ /***/ }),
1190
+
1191
+ /***/ 8686:
1192
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1193
+
1194
+ "use strict";
1195
+
1196
+ var DESCRIPTORS = __webpack_require__(3724);
1197
+ var fails = __webpack_require__(9039);
1198
+
1199
+ // V8 ~ Chrome 36-
1200
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
1201
+ module.exports = DESCRIPTORS && fails(function () {
1202
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1203
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
1204
+ value: 42,
1205
+ writable: false
1206
+ }).prototype !== 42;
1207
+ });
1208
+
1209
+
1210
+ /***/ }),
1211
+
1212
+ /***/ 8721:
1213
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1214
+
1215
+ "use strict";
1216
+
1217
+ var DESCRIPTORS = __webpack_require__(3724);
1218
+ var uncurryThis = __webpack_require__(9504);
1219
+ var defineBuiltInAccessor = __webpack_require__(2106);
1220
+
1221
+ var URLSearchParamsPrototype = URLSearchParams.prototype;
1222
+ var forEach = uncurryThis(URLSearchParamsPrototype.forEach);
1223
+
1224
+ // `URLSearchParams.prototype.size` getter
1225
+ // https://github.com/whatwg/url/pull/734
1226
+ if (DESCRIPTORS && !('size' in URLSearchParamsPrototype)) {
1227
+ defineBuiltInAccessor(URLSearchParamsPrototype, 'size', {
1228
+ get: function size() {
1229
+ var count = 0;
1230
+ forEach(this, function () { count++; });
1231
+ return count;
1232
+ },
1233
+ configurable: true,
1234
+ enumerable: true
1235
+ });
1236
+ }
1237
+
1238
+
1239
+ /***/ }),
1240
+
1241
+ /***/ 8981:
1242
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1243
+
1244
+ "use strict";
1245
+
1246
+ var requireObjectCoercible = __webpack_require__(7750);
1247
+
1248
+ var $Object = Object;
1249
+
1250
+ // `ToObject` abstract operation
1251
+ // https://tc39.es/ecma262/#sec-toobject
1252
+ module.exports = function (argument) {
1253
+ return $Object(requireObjectCoercible(argument));
1254
+ };
1255
+
1256
+
1257
+ /***/ }),
1258
+
1259
+ /***/ 9039:
1260
+ /***/ (function(module) {
1261
+
1262
+ "use strict";
1263
+
1264
+ module.exports = function (exec) {
1265
+ try {
1266
+ return !!exec();
1267
+ } catch (error) {
1268
+ return true;
1269
+ }
1270
+ };
1271
+
1272
+
1273
+ /***/ }),
1274
+
1275
+ /***/ 9297:
1276
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1277
+
1278
+ "use strict";
1279
+
1280
+ var uncurryThis = __webpack_require__(9504);
1281
+ var toObject = __webpack_require__(8981);
1282
+
1283
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
1284
+
1285
+ // `HasOwnProperty` abstract operation
1286
+ // https://tc39.es/ecma262/#sec-hasownproperty
1287
+ // eslint-disable-next-line es/no-object-hasown -- safe
1288
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
1289
+ return hasOwnProperty(toObject(it), key);
1290
+ };
1291
+
1292
+
1293
+ /***/ }),
1294
+
1295
+ /***/ 9306:
1296
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1297
+
1298
+ "use strict";
1299
+
1300
+ var isCallable = __webpack_require__(4901);
1301
+ var tryToString = __webpack_require__(6823);
1302
+
1303
+ var $TypeError = TypeError;
1304
+
1305
+ // `Assert: IsCallable(argument) is true`
1306
+ module.exports = function (argument) {
1307
+ if (isCallable(argument)) return argument;
1308
+ throw new $TypeError(tryToString(argument) + ' is not a function');
1309
+ };
1310
+
1311
+
1312
+ /***/ }),
1313
+
1314
+ /***/ 9433:
1315
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1316
+
1317
+ "use strict";
1318
+
1319
+ var globalThis = __webpack_require__(4576);
1320
+
1321
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1322
+ var defineProperty = Object.defineProperty;
1323
+
1324
+ module.exports = function (key, value) {
1325
+ try {
1326
+ defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
1327
+ } catch (error) {
1328
+ globalThis[key] = value;
1329
+ } return value;
1330
+ };
1331
+
1332
+
1333
+ /***/ }),
1334
+
1335
+ /***/ 9504:
1336
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1337
+
1338
+ "use strict";
1339
+
1340
+ var NATIVE_BIND = __webpack_require__(616);
1341
+
1342
+ var FunctionPrototype = Function.prototype;
1343
+ var call = FunctionPrototype.call;
1344
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
1345
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
1346
+
1347
+ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
1348
+ return function () {
1349
+ return call.apply(fn, arguments);
1350
+ };
1351
+ };
1352
+
1353
+
1354
+ /***/ }),
1355
+
1356
+ /***/ 9519:
1357
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1358
+
1359
+ "use strict";
1360
+
1361
+ var globalThis = __webpack_require__(4576);
1362
+ var userAgent = __webpack_require__(2839);
1363
+
1364
+ var process = globalThis.process;
1365
+ var Deno = globalThis.Deno;
1366
+ var versions = process && process.versions || Deno && Deno.version;
1367
+ var v8 = versions && versions.v8;
1368
+ var match, version;
1369
+
1370
+ if (v8) {
1371
+ match = v8.split('.');
1372
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
1373
+ // but their correct versions are not interesting for us
1374
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
1375
+ }
1376
+
1377
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
1378
+ // so check `userAgent` even if `.v8` exists, but 0
1379
+ if (!version && userAgent) {
1380
+ match = userAgent.match(/Edge\/(\d+)/);
1381
+ if (!match || match[1] >= 74) {
1382
+ match = userAgent.match(/Chrome\/(\d+)/);
1383
+ if (match) version = +match[1];
1384
+ }
1385
+ }
1386
+
1387
+ module.exports = version;
1388
+
1389
+
1390
+ /***/ }),
1391
+
1392
+ /***/ 9548:
1393
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1394
+
1395
+ "use strict";
1396
+
1397
+ // EXPORTS
1398
+ __webpack_require__.d(__webpack_exports__, {
1399
+ A: function() { return /* binding */ addStylesClient; }
1400
+ });
1401
+
1402
+ ;// ./node_modules/vue-style-loader/lib/listToStyles.js
1403
+ /**
1404
+ * Translates the list format produced by css-loader into something
1405
+ * easier to manipulate.
1406
+ */
1407
+ function listToStyles (parentId, list) {
1408
+ var styles = []
1409
+ var newStyles = {}
1410
+ for (var i = 0; i < list.length; i++) {
1411
+ var item = list[i]
1412
+ var id = item[0]
1413
+ var css = item[1]
1414
+ var media = item[2]
1415
+ var sourceMap = item[3]
1416
+ var part = {
1417
+ id: parentId + ':' + i,
1418
+ css: css,
1419
+ media: media,
1420
+ sourceMap: sourceMap
1421
+ }
1422
+ if (!newStyles[id]) {
1423
+ styles.push(newStyles[id] = { id: id, parts: [part] })
1424
+ } else {
1425
+ newStyles[id].parts.push(part)
1426
+ }
1427
+ }
1428
+ return styles
1429
+ }
1430
+
1431
+ ;// ./node_modules/vue-style-loader/lib/addStylesClient.js
1432
+ /*
1433
+ MIT License http://www.opensource.org/licenses/mit-license.php
1434
+ Author Tobias Koppers @sokra
1435
+ Modified by Evan You @yyx990803
1436
+ */
1437
+
1438
+
1439
+
1440
+ var hasDocument = typeof document !== 'undefined'
1441
+
1442
+ if (typeof DEBUG !== 'undefined' && DEBUG) {
1443
+ if (!hasDocument) {
1444
+ throw new Error(
1445
+ 'vue-style-loader cannot be used in a non-browser environment. ' +
1446
+ "Use { target: 'node' } in your Webpack config to indicate a server-rendering environment."
1447
+ ) }
1448
+ }
1449
+
1450
+ /*
1451
+ type StyleObject = {
1452
+ id: number;
1453
+ parts: Array<StyleObjectPart>
1454
+ }
1455
+
1456
+ type StyleObjectPart = {
1457
+ css: string;
1458
+ media: string;
1459
+ sourceMap: ?string
1460
+ }
1461
+ */
1462
+
1463
+ var stylesInDom = {/*
1464
+ [id: number]: {
1465
+ id: number,
1466
+ refs: number,
1467
+ parts: Array<(obj?: StyleObjectPart) => void>
1468
+ }
1469
+ */}
1470
+
1471
+ var head = hasDocument && (document.head || document.getElementsByTagName('head')[0])
1472
+ var singletonElement = null
1473
+ var singletonCounter = 0
1474
+ var isProduction = false
1475
+ var noop = function () {}
1476
+ var options = null
1477
+ var ssrIdKey = 'data-vue-ssr-id'
1478
+
1479
+ // Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
1480
+ // tags it will allow on a page
1481
+ var isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\b/.test(navigator.userAgent.toLowerCase())
1482
+
1483
+ function addStylesClient (parentId, list, _isProduction, _options) {
1484
+ isProduction = _isProduction
1485
+
1486
+ options = _options || {}
1487
+
1488
+ var styles = listToStyles(parentId, list)
1489
+ addStylesToDom(styles)
1490
+
1491
+ return function update (newList) {
1492
+ var mayRemove = []
1493
+ for (var i = 0; i < styles.length; i++) {
1494
+ var item = styles[i]
1495
+ var domStyle = stylesInDom[item.id]
1496
+ domStyle.refs--
1497
+ mayRemove.push(domStyle)
1498
+ }
1499
+ if (newList) {
1500
+ styles = listToStyles(parentId, newList)
1501
+ addStylesToDom(styles)
1502
+ } else {
1503
+ styles = []
1504
+ }
1505
+ for (var i = 0; i < mayRemove.length; i++) {
1506
+ var domStyle = mayRemove[i]
1507
+ if (domStyle.refs === 0) {
1508
+ for (var j = 0; j < domStyle.parts.length; j++) {
1509
+ domStyle.parts[j]()
1510
+ }
1511
+ delete stylesInDom[domStyle.id]
1512
+ }
1513
+ }
1514
+ }
1515
+ }
1516
+
1517
+ function addStylesToDom (styles /* Array<StyleObject> */) {
1518
+ for (var i = 0; i < styles.length; i++) {
1519
+ var item = styles[i]
1520
+ var domStyle = stylesInDom[item.id]
1521
+ if (domStyle) {
1522
+ domStyle.refs++
1523
+ for (var j = 0; j < domStyle.parts.length; j++) {
1524
+ domStyle.parts[j](item.parts[j])
1525
+ }
1526
+ for (; j < item.parts.length; j++) {
1527
+ domStyle.parts.push(addStyle(item.parts[j]))
1528
+ }
1529
+ if (domStyle.parts.length > item.parts.length) {
1530
+ domStyle.parts.length = item.parts.length
1531
+ }
1532
+ } else {
1533
+ var parts = []
1534
+ for (var j = 0; j < item.parts.length; j++) {
1535
+ parts.push(addStyle(item.parts[j]))
1536
+ }
1537
+ stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts }
1538
+ }
1539
+ }
1540
+ }
1541
+
1542
+ function createStyleElement () {
1543
+ var styleElement = document.createElement('style')
1544
+ styleElement.type = 'text/css'
1545
+ head.appendChild(styleElement)
1546
+ return styleElement
1547
+ }
1548
+
1549
+ function addStyle (obj /* StyleObjectPart */) {
1550
+ var update, remove
1551
+ var styleElement = document.querySelector('style[' + ssrIdKey + '~="' + obj.id + '"]')
1552
+
1553
+ if (styleElement) {
1554
+ if (isProduction) {
1555
+ // has SSR styles and in production mode.
1556
+ // simply do nothing.
1557
+ return noop
1558
+ } else {
1559
+ // has SSR styles but in dev mode.
1560
+ // for some reason Chrome can't handle source map in server-rendered
1561
+ // style tags - source maps in <style> only works if the style tag is
1562
+ // created and inserted dynamically. So we remove the server rendered
1563
+ // styles and inject new ones.
1564
+ styleElement.parentNode.removeChild(styleElement)
1565
+ }
1566
+ }
1567
+
1568
+ if (isOldIE) {
1569
+ // use singleton mode for IE9.
1570
+ var styleIndex = singletonCounter++
1571
+ styleElement = singletonElement || (singletonElement = createStyleElement())
1572
+ update = applyToSingletonTag.bind(null, styleElement, styleIndex, false)
1573
+ remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true)
1574
+ } else {
1575
+ // use multi-style-tag mode in all other cases
1576
+ styleElement = createStyleElement()
1577
+ update = applyToTag.bind(null, styleElement)
1578
+ remove = function () {
1579
+ styleElement.parentNode.removeChild(styleElement)
1580
+ }
1581
+ }
1582
+
1583
+ update(obj)
1584
+
1585
+ return function updateStyle (newObj /* StyleObjectPart */) {
1586
+ if (newObj) {
1587
+ if (newObj.css === obj.css &&
1588
+ newObj.media === obj.media &&
1589
+ newObj.sourceMap === obj.sourceMap) {
1590
+ return
1591
+ }
1592
+ update(obj = newObj)
1593
+ } else {
1594
+ remove()
1595
+ }
1596
+ }
1597
+ }
1598
+
1599
+ var replaceText = (function () {
1600
+ var textStore = []
1601
+
1602
+ return function (index, replacement) {
1603
+ textStore[index] = replacement
1604
+ return textStore.filter(Boolean).join('\n')
1605
+ }
1606
+ })()
1607
+
1608
+ function applyToSingletonTag (styleElement, index, remove, obj) {
1609
+ var css = remove ? '' : obj.css
1610
+
1611
+ if (styleElement.styleSheet) {
1612
+ styleElement.styleSheet.cssText = replaceText(index, css)
1613
+ } else {
1614
+ var cssNode = document.createTextNode(css)
1615
+ var childNodes = styleElement.childNodes
1616
+ if (childNodes[index]) styleElement.removeChild(childNodes[index])
1617
+ if (childNodes.length) {
1618
+ styleElement.insertBefore(cssNode, childNodes[index])
1619
+ } else {
1620
+ styleElement.appendChild(cssNode)
1621
+ }
1622
+ }
1623
+ }
1624
+
1625
+ function applyToTag (styleElement, obj) {
1626
+ var css = obj.css
1627
+ var media = obj.media
1628
+ var sourceMap = obj.sourceMap
1629
+
1630
+ if (media) {
1631
+ styleElement.setAttribute('media', media)
1632
+ }
1633
+ if (options.ssrId) {
1634
+ styleElement.setAttribute(ssrIdKey, obj.id)
1635
+ }
1636
+
1637
+ if (sourceMap) {
1638
+ // https://developer.chrome.com/devtools/docs/javascript-debugging
1639
+ // this makes source maps inside style tags work properly in Chrome
1640
+ css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */'
1641
+ // http://stackoverflow.com/a/26603875
1642
+ css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'
1643
+ }
1644
+
1645
+ if (styleElement.styleSheet) {
1646
+ styleElement.styleSheet.cssText = css
1647
+ } else {
1648
+ while (styleElement.firstChild) {
1649
+ styleElement.removeChild(styleElement.firstChild)
1650
+ }
1651
+ styleElement.appendChild(document.createTextNode(css))
1652
+ }
1653
+ }
1654
+
1655
+
1656
+ /***/ }),
1657
+
1658
+ /***/ 9565:
1659
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1660
+
1661
+ "use strict";
1662
+
1663
+ var NATIVE_BIND = __webpack_require__(616);
1664
+
1665
+ var call = Function.prototype.call;
1666
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
1667
+ module.exports = NATIVE_BIND ? call.bind(call) : function () {
1668
+ return call.apply(call, arguments);
1669
+ };
1670
+
1671
+
1672
+ /***/ }),
1673
+
1674
+ /***/ 9913:
1675
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1676
+
1677
+ "use strict";
1678
+ __webpack_require__.r(__webpack_exports__);
1679
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1601);
1680
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
1681
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6314);
1682
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
1683
+ // Imports
1684
+
1685
+
1686
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
1687
+ // Module
1688
+ ___CSS_LOADER_EXPORT___.push([module.id, ".video-canvas[data-v-e71c3d82]{width:100%;height:100%;display:flex;flex-direction:column;justify-content:space-evenly;margin-top:16px}.video-canvas .itemBox[data-v-e71c3d82]{border-radius:4px;transform:translateZ(0);margin-bottom:11px;position:relative;overflow:hidden}.video-canvas canvas[data-v-e71c3d82]{margin:0;padding:0;width:100%;height:100%;will-change:transform;image-rendering:optimizeSpeed;image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:crisp-edges}.video-canvas .full-screen[data-v-e71c3d82]{width:100%;height:100%;position:fixed;top:0;bottom:0;left:0;right:0;z-index:999}", ""]);
1689
+ // Exports
1690
+ /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
1691
+
1692
+
1693
+ /***/ })
1694
+
1695
+ /******/ });
1696
+ /************************************************************************/
1697
+ /******/ // The module cache
1698
+ /******/ var __webpack_module_cache__ = {};
1699
+ /******/
1700
+ /******/ // The require function
1701
+ /******/ function __webpack_require__(moduleId) {
1702
+ /******/ // Check if module is in cache
1703
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
1704
+ /******/ if (cachedModule !== undefined) {
1705
+ /******/ return cachedModule.exports;
1706
+ /******/ }
1707
+ /******/ // Create a new module (and put it into the cache)
1708
+ /******/ var module = __webpack_module_cache__[moduleId] = {
1709
+ /******/ id: moduleId,
1710
+ /******/ // no module.loaded needed
1711
+ /******/ exports: {}
1712
+ /******/ };
1713
+ /******/
1714
+ /******/ // Execute the module function
1715
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
1716
+ /******/
1717
+ /******/ // Return the exports of the module
1718
+ /******/ return module.exports;
1719
+ /******/ }
1720
+ /******/
1721
+ /******/ // expose the modules object (__webpack_modules__)
1722
+ /******/ __webpack_require__.m = __webpack_modules__;
1723
+ /******/
1724
+ /************************************************************************/
1725
+ /******/ /* webpack/runtime/compat get default export */
1726
+ /******/ !function() {
1727
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
1728
+ /******/ __webpack_require__.n = function(module) {
1729
+ /******/ var getter = module && module.__esModule ?
1730
+ /******/ function() { return module['default']; } :
1731
+ /******/ function() { return module; };
1732
+ /******/ __webpack_require__.d(getter, { a: getter });
1733
+ /******/ return getter;
1734
+ /******/ };
1735
+ /******/ }();
1736
+ /******/
1737
+ /******/ /* webpack/runtime/define property getters */
1738
+ /******/ !function() {
1739
+ /******/ // define getter functions for harmony exports
1740
+ /******/ __webpack_require__.d = function(exports, definition) {
1741
+ /******/ for(var key in definition) {
1742
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
1743
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
1744
+ /******/ }
1745
+ /******/ }
1746
+ /******/ };
1747
+ /******/ }();
1748
+ /******/
1749
+ /******/ /* webpack/runtime/get javascript chunk filename */
1750
+ /******/ !function() {
1751
+ /******/ // This function allow to reference async chunks
1752
+ /******/ __webpack_require__.u = function(chunkId) {
1753
+ /******/ // return url for filenames based on template
1754
+ /******/ return "xjzh-component.common." + chunkId + ".js";
1755
+ /******/ };
1756
+ /******/ }();
1757
+ /******/
1758
+ /******/ /* webpack/runtime/global */
1759
+ /******/ !function() {
1760
+ /******/ __webpack_require__.g = (function() {
1761
+ /******/ if (typeof globalThis === 'object') return globalThis;
1762
+ /******/ try {
1763
+ /******/ return this || new Function('return this')();
1764
+ /******/ } catch (e) {
1765
+ /******/ if (typeof window === 'object') return window;
1766
+ /******/ }
1767
+ /******/ })();
1768
+ /******/ }();
1769
+ /******/
1770
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
1771
+ /******/ !function() {
1772
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
1773
+ /******/ }();
1774
+ /******/
1775
+ /******/ /* webpack/runtime/make namespace object */
1776
+ /******/ !function() {
1777
+ /******/ // define __esModule on exports
1778
+ /******/ __webpack_require__.r = function(exports) {
1779
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
1780
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
1781
+ /******/ }
1782
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
1783
+ /******/ };
1784
+ /******/ }();
1785
+ /******/
1786
+ /******/ /* webpack/runtime/publicPath */
1787
+ /******/ !function() {
1788
+ /******/ __webpack_require__.p = "";
1789
+ /******/ }();
1790
+ /******/
1791
+ /******/ /* webpack/runtime/jsonp chunk loading */
1792
+ /******/ !function() {
1793
+ /******/ __webpack_require__.b = document.baseURI || self.location.href;
1794
+ /******/
1795
+ /******/ // object to store loaded and loading chunks
1796
+ /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
1797
+ /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
1798
+ /******/ var installedChunks = {
1799
+ /******/ 502: 0
1800
+ /******/ };
1801
+ /******/
1802
+ /******/ // no chunk on demand loading
1803
+ /******/
1804
+ /******/ // no prefetching
1805
+ /******/
1806
+ /******/ // no preloaded
1807
+ /******/
1808
+ /******/ // no HMR
1809
+ /******/
1810
+ /******/ // no HMR manifest
1811
+ /******/
1812
+ /******/ // no on chunks loaded
1813
+ /******/
1814
+ /******/ // no jsonp function
1815
+ /******/ }();
1816
+ /******/
1817
+ /************************************************************************/
1818
+ var __webpack_exports__ = {};
1819
+ // This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
1820
+ !function() {
1821
+ "use strict";
1822
+ // ESM COMPAT FLAG
1823
+ __webpack_require__.r(__webpack_exports__);
1824
+
1825
+ // EXPORTS
1826
+ __webpack_require__.d(__webpack_exports__, {
1827
+ "default": function() { return /* binding */ entry_lib; }
1828
+ });
1829
+
1830
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
1831
+ /* eslint-disable no-var */
1832
+ // This file is imported into lib/wc client bundles.
1833
+
1834
+ if (typeof window !== 'undefined') {
1835
+ var currentScript = window.document.currentScript
1836
+ if (false) // removed by dead control flow
1837
+ { var getCurrentScript; }
1838
+
1839
+ var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
1840
+ if (src) {
1841
+ __webpack_require__.p = src[1] // eslint-disable-line
1842
+ }
1843
+ }
1844
+
1845
+ // Indicate to webpack that this file can be concatenated
1846
+ /* harmony default export */ var setPublicPath = (null);
1847
+
1848
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/components/videoCanvas.vue?vue&type=template&id=e71c3d82&scoped=true
1849
+ var render = function render() {
1850
+ var _vm = this,
1851
+ _c = _vm._self._c;
1852
+ return _c('div', {
1853
+ staticClass: "video-canvas"
1854
+ }, _vm._l(_vm.cameraObj, function (item, index) {
1855
+ return _c('div', {
1856
+ key: index,
1857
+ class: ['itemBox', item.isFullScreen ? 'full-screen' : ''],
1858
+ style: {
1859
+ 'width': _vm.width,
1860
+ 'height': _vm.height
1861
+ },
1862
+ on: {
1863
+ "click": function ($event) {
1864
+ return _vm.handleScreen(index);
1865
+ }
1866
+ }
1867
+ }, [_c('p', {
1868
+ directives: [{
1869
+ name: "show",
1870
+ rawName: "v-show",
1871
+ value: _vm.showTitle,
1872
+ expression: "showTitle"
1873
+ }],
1874
+ staticClass: "item-title"
1875
+ }, [_vm._v(_vm._s(item.title))]), _c('canvas', {
1876
+ ref: item.domeId,
1877
+ refInFor: true
1878
+ })]);
1879
+ }), 0);
1880
+ };
1881
+ var staticRenderFns = [];
1882
+
1883
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url-search-params.delete.js
1884
+ var web_url_search_params_delete = __webpack_require__(4603);
1885
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url-search-params.has.js
1886
+ var web_url_search_params_has = __webpack_require__(7566);
1887
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url-search-params.size.js
1888
+ var web_url_search_params_size = __webpack_require__(8721);
1889
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/components/videoCanvas.vue?vue&type=script&lang=js
1890
+
1891
+
1892
+
1893
+
1894
+
1895
+
1896
+ /* harmony default export */ var videoCanvasvue_type_script_lang_js = ({
1897
+ name: "VideoCanvas",
1898
+ props: {
1899
+ videoUrl: {
1900
+ type: String,
1901
+ default: 'localhost:56000'
1902
+ },
1903
+ width: {
1904
+ type: String,
1905
+ default: '640px'
1906
+ },
1907
+ height: {
1908
+ type: String,
1909
+ default: '360px'
1910
+ },
1911
+ showTitle: {
1912
+ type: Boolean,
1913
+ default: true
1914
+ },
1915
+ isSwitchSide: {
1916
+ type: Boolean,
1917
+ default: false
1918
+ }
1919
+ },
1920
+ watch: {
1921
+ videoUrl: {
1922
+ handler(val) {
1923
+ console.log('object :>> ', val);
1924
+ }
1925
+ },
1926
+ isSwitchSide: {
1927
+ handler(val) {
1928
+ console.log('object :>> ', val);
1929
+ this.cameraType[2].label = this.isSwitchSide ? '显' : '侧';
1930
+ }
1931
+ }
1932
+ },
1933
+ data() {
1934
+ return {
1935
+ cameraNum: 0,
1936
+ cameraType: [{
1937
+ label: '斜',
1938
+ value: 'main'
1939
+ }, {
1940
+ label: '俯',
1941
+ value: 'sub'
1942
+ }, {
1943
+ label: '侧',
1944
+ value: 'side'
1945
+ }],
1946
+ currentFullScreen: '',
1947
+ answerPhoto: {
1948
+ canvas: null,
1949
+ context: null,
1950
+ isPhoto: false
1951
+ },
1952
+ canvasSize: [1920, 1080]
1953
+ };
1954
+ },
1955
+ mounted() {},
1956
+ methods: {
1957
+ initAnswerPhoto() {
1958
+ this.answerPhoto.canvas = document.createElement('canvas');
1959
+ this.answerPhoto.context = this.answerPhoto.canvas.getContext('2d');
1960
+ this.answerPhoto.canvas.width = this.canvasSize[0] * this.cameraNum;
1961
+ this.answerPhoto.canvas.height = this.canvasSize[1];
1962
+ },
1963
+ initCanvas() {
1964
+ for (let i = 0; i < this.cameraNum; i++) {
1965
+ let type = this.cameraType[i].value;
1966
+ this.cameraObj[type].canvas = document.getElementById(this.cameraObj[type].domeId);
1967
+ this.cameraObj[type].content = this.cameraObj[type].canvas.getContext('2d');
1968
+ this.cameraObj[type].canvas.width = this.canvasSize[0];
1969
+ this.cameraObj[type].canvas.height = this.canvasSize[1];
1970
+ this.cameraObj[type].imgBox = new Image();
1971
+ this.cameraObj[type].videoUrl = '';
1972
+ }
1973
+ },
1974
+ initWorker() {
1975
+ const url = `ws://${({"NODE_ENV":"production","BASE_URL":"/"}).VUE_APP_URL_VIDEO}/socket`;
1976
+ let count = 0;
1977
+ this.destroyWorker();
1978
+ this.worker = new Worker(new URL(/* worker import */ __webpack_require__.p + __webpack_require__.u(906), __webpack_require__.b));
1979
+ this.worker.onmessage = async event => {
1980
+ const {
1981
+ type,
1982
+ data,
1983
+ event: wsEvent,
1984
+ error
1985
+ } = event.data;
1986
+ // 摄像头数据及摄像头画面数据读取
1987
+ if (type === 'message') {
1988
+ if (typeof data === 'number') {
1989
+ this.cameraNum = data;
1990
+ localStorage.setItem('cameraNum', this.cameraNum);
1991
+ for (let i = 0; i < this.cameraNum; i++) {
1992
+ this.cameraObj[this.cameraType[i].value] = {
1993
+ domeId: `canvas_${this.cameraType[i].value}`,
1994
+ canvas: null,
1995
+ content: null,
1996
+ videoUrl: '',
1997
+ totalFPS: 0,
1998
+ showTotalFPS: 0,
1999
+ frameSkip: 1,
2000
+ imgBox: null,
2001
+ isLoading: false,
2002
+ isFullScreen: false,
2003
+ title: this.cameraType[i].label
2004
+ };
2005
+ }
2006
+ this.$nextTick(() => {
2007
+ this.initAnswerPhoto();
2008
+ this.initCanvas();
2009
+ });
2010
+ return;
2011
+ }
2012
+ count++;
2013
+ this.showCanvas(this.cameraType[count - 1].value, data);
2014
+ count = count >= this.cameraNum ? 0 : count;
2015
+ }
2016
+ if (type === 'message') {
2017
+ console.log('WebSocket open:');
2018
+ }
2019
+ if (type === 'close') {
2020
+ console.log('WebSocket closed:', wsEvent);
2021
+ }
2022
+ if (type === 'error') {
2023
+ console.log(`WebSocket error: ${error.message}`);
2024
+ }
2025
+ };
2026
+ this.worker.onerror = error => {
2027
+ console.log(`Worker error: ${error.message}`);
2028
+ };
2029
+ // worker 建立连接
2030
+ this.cameraObj = {};
2031
+ this.worker.postMessage({
2032
+ url
2033
+ });
2034
+ },
2035
+ // 销毁摄像头,worker
2036
+ destroyWorker() {
2037
+ if (this.worker) {
2038
+ this.worker.terminate();
2039
+ this.worker = null;
2040
+ }
2041
+ },
2042
+ showVideoCanvas(type, blod) {
2043
+ // 当其中一个全屏时,其它画面不做渲染操作,并且清理其他缓存
2044
+ if (this.currentFullScreen && this.currentFullScreen !== type) {
2045
+ if (this.cameraObj[type].videoUrl) {
2046
+ URL.revokeObjectURL(this.cameraObj[type].videoUrl);
2047
+ this.cameraObj[type].videoUrl = '';
2048
+ }
2049
+ return;
2050
+ }
2051
+ if (this.cameraObj[type].isLoading) return;
2052
+ this.cameraObj[type].videoUrl = URL.createObjectURL(blod);
2053
+ this.cameraObj[type].isLoading = true;
2054
+ this.cameraObj[type].imgBox.src = this.cameraObj[type].videoUrl;
2055
+ this.cameraObj[type].imgBox.onload = () => {
2056
+ this.cameraObj[type].isLoading = false;
2057
+ this.cameraObj[type].content.drawImage(this.cameraObj[type].imgBox, 0, 0, this.canvasSize[0], this.canvasSize[1]);
2058
+ if (this.cameraObj[type].videoUrl) {
2059
+ URL.revokeObjectURL(this.cameraObj[type].videoUrl);
2060
+ this.cameraObj[type].videoUrl = '';
2061
+ }
2062
+ };
2063
+ this.cameraObj[type].imgBox.onerror = () => {
2064
+ this.cameraObj[type].isLoading = false;
2065
+ // 清除内存
2066
+ if (this.cameraObj[type].videoUrl) {
2067
+ URL.revokeObjectURL(this.cameraObj[type].videoUrl);
2068
+ this.cameraObj[type].videoUrl = '';
2069
+ }
2070
+ };
2071
+ },
2072
+ AllPhoto() {
2073
+ let type = this.cameraType[this.cameraNum - 1].value;
2074
+ this.videoObj.videoSrc = this.cameraObj[type].canvas.toDataURL('image/jpeg');
2075
+ return this.videoObj.videoSrc;
2076
+ },
2077
+ selectPhoto(num) {
2078
+ let type = this.cameraType[num - 1].value;
2079
+ this.videoObj.videoMergeSrc = this.cameraObj[type].canvas.toDataURL('image/jpeg');
2080
+ return this.videoObj.videoMergeSrc;
2081
+ },
2082
+ handleScreen(type) {
2083
+ this.$set(this.cameraObj[type], 'isFullScreen', !this.cameraObj[type].isFullScreen);
2084
+ this.currentFullScreen = this.cameraObj[type].isFullScreen ? type : '';
2085
+ }
2086
+ },
2087
+ beforeDestroy() {
2088
+ this.answerPhoto.canvas = null;
2089
+ this.answerPhoto.context = null;
2090
+ }
2091
+ });
2092
+ ;// ./packages/components/videoCanvas.vue?vue&type=script&lang=js
2093
+ /* harmony default export */ var components_videoCanvasvue_type_script_lang_js = (videoCanvasvue_type_script_lang_js);
2094
+ // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/components/videoCanvas.vue?vue&type=style&index=0&id=e71c3d82&prod&lang=scss&scoped=true
2095
+ var videoCanvasvue_type_style_index_0_id_e71c3d82_prod_lang_scss_scoped_true = __webpack_require__(1627);
2096
+ ;// ./packages/components/videoCanvas.vue?vue&type=style&index=0&id=e71c3d82&prod&lang=scss&scoped=true
2097
+
2098
+ ;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
2099
+ /* globals __VUE_SSR_CONTEXT__ */
2100
+
2101
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
2102
+ // This module is a runtime utility for cleaner component module output and will
2103
+ // be included in the final webpack user bundle.
2104
+
2105
+ function normalizeComponent(
2106
+ scriptExports,
2107
+ render,
2108
+ staticRenderFns,
2109
+ functionalTemplate,
2110
+ injectStyles,
2111
+ scopeId,
2112
+ moduleIdentifier /* server only */,
2113
+ shadowMode /* vue-cli only */
2114
+ ) {
2115
+ // Vue.extend constructor export interop
2116
+ var options =
2117
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
2118
+
2119
+ // render functions
2120
+ if (render) {
2121
+ options.render = render
2122
+ options.staticRenderFns = staticRenderFns
2123
+ options._compiled = true
2124
+ }
2125
+
2126
+ // functional template
2127
+ if (functionalTemplate) {
2128
+ options.functional = true
2129
+ }
2130
+
2131
+ // scopedId
2132
+ if (scopeId) {
2133
+ options._scopeId = 'data-v-' + scopeId
2134
+ }
2135
+
2136
+ var hook
2137
+ if (moduleIdentifier) {
2138
+ // server build
2139
+ hook = function (context) {
2140
+ // 2.3 injection
2141
+ context =
2142
+ context || // cached call
2143
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
2144
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
2145
+ // 2.2 with runInNewContext: true
2146
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
2147
+ context = __VUE_SSR_CONTEXT__
2148
+ }
2149
+ // inject component styles
2150
+ if (injectStyles) {
2151
+ injectStyles.call(this, context)
2152
+ }
2153
+ // register component module identifier for async chunk inferrence
2154
+ if (context && context._registeredComponents) {
2155
+ context._registeredComponents.add(moduleIdentifier)
2156
+ }
2157
+ }
2158
+ // used by ssr in case component is cached and beforeCreate
2159
+ // never gets called
2160
+ options._ssrRegister = hook
2161
+ } else if (injectStyles) {
2162
+ hook = shadowMode
2163
+ ? function () {
2164
+ injectStyles.call(
2165
+ this,
2166
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
2167
+ )
2168
+ }
2169
+ : injectStyles
2170
+ }
2171
+
2172
+ if (hook) {
2173
+ if (options.functional) {
2174
+ // for template-only hot-reload because in that case the render fn doesn't
2175
+ // go through the normalizer
2176
+ options._injectStyles = hook
2177
+ // register for functional component in vue file
2178
+ var originalRender = options.render
2179
+ options.render = function renderWithStyleInjection(h, context) {
2180
+ hook.call(context)
2181
+ return originalRender(h, context)
2182
+ }
2183
+ } else {
2184
+ // inject component registration as beforeCreate hook
2185
+ var existing = options.beforeCreate
2186
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
2187
+ }
2188
+ }
2189
+
2190
+ return {
2191
+ exports: scriptExports,
2192
+ options: options
2193
+ }
2194
+ }
2195
+
2196
+ ;// ./packages/components/videoCanvas.vue
2197
+
2198
+
2199
+
2200
+ ;
2201
+
2202
+
2203
+ /* normalize component */
2204
+
2205
+ var component = normalizeComponent(
2206
+ components_videoCanvasvue_type_script_lang_js,
2207
+ render,
2208
+ staticRenderFns,
2209
+ false,
2210
+ null,
2211
+ "e71c3d82",
2212
+ null
2213
+
2214
+ )
2215
+
2216
+ /* harmony default export */ var videoCanvas = (component.exports);
2217
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/components/videoRtsp.vue?vue&type=template&id=345d94c7
2218
+ var videoRtspvue_type_template_id_345d94c7_render = function render() {
2219
+ var _vm = this,
2220
+ _c = _vm._self._c;
2221
+ return _c('div');
2222
+ };
2223
+ var videoRtspvue_type_template_id_345d94c7_staticRenderFns = [];
2224
+
2225
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/components/videoRtsp.vue?vue&type=script&lang=js
2226
+ /* harmony default export */ var videoRtspvue_type_script_lang_js = ({
2227
+ name: "VideoRtsp",
2228
+ data() {
2229
+ return {};
2230
+ }
2231
+ });
2232
+ ;// ./packages/components/videoRtsp.vue?vue&type=script&lang=js
2233
+ /* harmony default export */ var components_videoRtspvue_type_script_lang_js = (videoRtspvue_type_script_lang_js);
2234
+ ;// ./packages/components/videoRtsp.vue
2235
+
2236
+
2237
+
2238
+
2239
+
2240
+ /* normalize component */
2241
+ ;
2242
+ var videoRtsp_component = normalizeComponent(
2243
+ components_videoRtspvue_type_script_lang_js,
2244
+ videoRtspvue_type_template_id_345d94c7_render,
2245
+ videoRtspvue_type_template_id_345d94c7_staticRenderFns,
2246
+ false,
2247
+ null,
2248
+ null,
2249
+ null
2250
+
2251
+ )
2252
+
2253
+ /* harmony default export */ var videoRtsp = (videoRtsp_component.exports);
2254
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/components/videoWebGl.vue?vue&type=template&id=7a3612f3
2255
+ var videoWebGlvue_type_template_id_7a3612f3_render = function render() {
2256
+ var _vm = this,
2257
+ _c = _vm._self._c;
2258
+ return _c('div');
2259
+ };
2260
+ var videoWebGlvue_type_template_id_7a3612f3_staticRenderFns = [];
2261
+
2262
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/components/videoWebGl.vue?vue&type=script&lang=js
2263
+ /* harmony default export */ var videoWebGlvue_type_script_lang_js = ({
2264
+ name: "VideoWebGl",
2265
+ data() {
2266
+ return {};
2267
+ }
2268
+ });
2269
+ ;// ./packages/components/videoWebGl.vue?vue&type=script&lang=js
2270
+ /* harmony default export */ var components_videoWebGlvue_type_script_lang_js = (videoWebGlvue_type_script_lang_js);
2271
+ ;// ./packages/components/videoWebGl.vue
2272
+
2273
+
2274
+
2275
+
2276
+
2277
+ /* normalize component */
2278
+ ;
2279
+ var videoWebGl_component = normalizeComponent(
2280
+ components_videoWebGlvue_type_script_lang_js,
2281
+ videoWebGlvue_type_template_id_7a3612f3_render,
2282
+ videoWebGlvue_type_template_id_7a3612f3_staticRenderFns,
2283
+ false,
2284
+ null,
2285
+ null,
2286
+ null
2287
+
2288
+ )
2289
+
2290
+ /* harmony default export */ var videoWebGl = (videoWebGl_component.exports);
2291
+ ;// ./packages/index.js
2292
+
2293
+
2294
+
2295
+ const components = [videoCanvas, videoRtsp, videoWebGl];
2296
+ const install = function (Vue) {
2297
+ if (install.installed) return;
2298
+ components.map(component => Vue.component(component.name, component));
2299
+ };
2300
+ if (typeof window !== 'undefined' && window.Vue) {
2301
+ install(window.Vue);
2302
+ }
2303
+ /* harmony default export */ var packages_0 = ({
2304
+ install
2305
+ });
2306
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
2307
+
2308
+
2309
+ /* harmony default export */ var entry_lib = (packages_0);
2310
+
2311
+
2312
+ }();
2313
+ module.exports = __webpack_exports__;
2314
+ /******/ })()
2315
+ ;
2316
+ //# sourceMappingURL=xjzh-component.common.js.map