UNPKG

50.5 kBJavaScriptView Raw
1(function (global, factory) {
2 typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
3 typeof define === 'function' && define.amd ? define(factory) :
4 (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.BootstrapTable = factory());
5}(this, (function () { 'use strict';
6
7 function _defineProperty(obj, key, value) {
8 if (key in obj) {
9 Object.defineProperty(obj, key, {
10 value: value,
11 enumerable: true,
12 configurable: true,
13 writable: true
14 });
15 } else {
16 obj[key] = value;
17 }
18
19 return obj;
20 }
21
22 function ownKeys$1(object, enumerableOnly) {
23 var keys = Object.keys(object);
24
25 if (Object.getOwnPropertySymbols) {
26 var symbols = Object.getOwnPropertySymbols(object);
27 if (enumerableOnly) symbols = symbols.filter(function (sym) {
28 return Object.getOwnPropertyDescriptor(object, sym).enumerable;
29 });
30 keys.push.apply(keys, symbols);
31 }
32
33 return keys;
34 }
35
36 function _objectSpread2(target) {
37 for (var i = 1; i < arguments.length; i++) {
38 var source = arguments[i] != null ? arguments[i] : {};
39
40 if (i % 2) {
41 ownKeys$1(Object(source), true).forEach(function (key) {
42 _defineProperty(target, key, source[key]);
43 });
44 } else if (Object.getOwnPropertyDescriptors) {
45 Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
46 } else {
47 ownKeys$1(Object(source)).forEach(function (key) {
48 Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
49 });
50 }
51 }
52
53 return target;
54 }
55
56 function _toConsumableArray(arr) {
57 return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
58 }
59
60 function _arrayWithoutHoles(arr) {
61 if (Array.isArray(arr)) return _arrayLikeToArray(arr);
62 }
63
64 function _iterableToArray(iter) {
65 if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
66 }
67
68 function _unsupportedIterableToArray(o, minLen) {
69 if (!o) return;
70 if (typeof o === "string") return _arrayLikeToArray(o, minLen);
71 var n = Object.prototype.toString.call(o).slice(8, -1);
72 if (n === "Object" && o.constructor) n = o.constructor.name;
73 if (n === "Map" || n === "Set") return Array.from(o);
74 if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
75 }
76
77 function _arrayLikeToArray(arr, len) {
78 if (len == null || len > arr.length) len = arr.length;
79
80 for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
81
82 return arr2;
83 }
84
85 function _nonIterableSpread() {
86 throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
87 }
88
89 function _createForOfIteratorHelper(o, allowArrayLike) {
90 var it;
91
92 if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
93 if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
94 if (it) o = it;
95 var i = 0;
96
97 var F = function () {};
98
99 return {
100 s: F,
101 n: function () {
102 if (i >= o.length) return {
103 done: true
104 };
105 return {
106 done: false,
107 value: o[i++]
108 };
109 },
110 e: function (e) {
111 throw e;
112 },
113 f: F
114 };
115 }
116
117 throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
118 }
119
120 var normalCompletion = true,
121 didErr = false,
122 err;
123 return {
124 s: function () {
125 it = o[Symbol.iterator]();
126 },
127 n: function () {
128 var step = it.next();
129 normalCompletion = step.done;
130 return step;
131 },
132 e: function (e) {
133 didErr = true;
134 err = e;
135 },
136 f: function () {
137 try {
138 if (!normalCompletion && it.return != null) it.return();
139 } finally {
140 if (didErr) throw err;
141 }
142 }
143 };
144 }
145
146 var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
147
148 function createCommonjsModule(fn, module) {
149 return module = { exports: {} }, fn(module, module.exports), module.exports;
150 }
151
152 var check = function (it) {
153 return it && it.Math == Math && it;
154 };
155
156 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
157 var global_1 =
158 // eslint-disable-next-line es/no-global-this -- safe
159 check(typeof globalThis == 'object' && globalThis) ||
160 check(typeof window == 'object' && window) ||
161 // eslint-disable-next-line no-restricted-globals -- safe
162 check(typeof self == 'object' && self) ||
163 check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
164 // eslint-disable-next-line no-new-func -- fallback
165 (function () { return this; })() || Function('return this')();
166
167 var fails = function (exec) {
168 try {
169 return !!exec();
170 } catch (error) {
171 return true;
172 }
173 };
174
175 // Detect IE8's incomplete defineProperty implementation
176 var descriptors = !fails(function () {
177 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
178 return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
179 });
180
181 var $propertyIsEnumerable = {}.propertyIsEnumerable;
182 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
183 var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
184
185 // Nashorn ~ JDK8 bug
186 var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
187
188 // `Object.prototype.propertyIsEnumerable` method implementation
189 // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
190 var f$4 = NASHORN_BUG ? function propertyIsEnumerable(V) {
191 var descriptor = getOwnPropertyDescriptor$1(this, V);
192 return !!descriptor && descriptor.enumerable;
193 } : $propertyIsEnumerable;
194
195 var objectPropertyIsEnumerable = {
196 f: f$4
197 };
198
199 var createPropertyDescriptor = function (bitmap, value) {
200 return {
201 enumerable: !(bitmap & 1),
202 configurable: !(bitmap & 2),
203 writable: !(bitmap & 4),
204 value: value
205 };
206 };
207
208 var toString = {}.toString;
209
210 var classofRaw = function (it) {
211 return toString.call(it).slice(8, -1);
212 };
213
214 var split = ''.split;
215
216 // fallback for non-array-like ES3 and non-enumerable old V8 strings
217 var indexedObject = fails(function () {
218 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
219 // eslint-disable-next-line no-prototype-builtins -- safe
220 return !Object('z').propertyIsEnumerable(0);
221 }) ? function (it) {
222 return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
223 } : Object;
224
225 // `RequireObjectCoercible` abstract operation
226 // https://tc39.es/ecma262/#sec-requireobjectcoercible
227 var requireObjectCoercible = function (it) {
228 if (it == undefined) throw TypeError("Can't call method on " + it);
229 return it;
230 };
231
232 // toObject with fallback for non-array-like ES3 strings
233
234
235
236 var toIndexedObject = function (it) {
237 return indexedObject(requireObjectCoercible(it));
238 };
239
240 var isObject = function (it) {
241 return typeof it === 'object' ? it !== null : typeof it === 'function';
242 };
243
244 // `ToPrimitive` abstract operation
245 // https://tc39.es/ecma262/#sec-toprimitive
246 // instead of the ES6 spec version, we didn't implement @@toPrimitive case
247 // and the second argument - flag - preferred type is a string
248 var toPrimitive = function (input, PREFERRED_STRING) {
249 if (!isObject(input)) return input;
250 var fn, val;
251 if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
252 if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
253 if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
254 throw TypeError("Can't convert object to primitive value");
255 };
256
257 var hasOwnProperty = {}.hasOwnProperty;
258
259 var has$1 = function (it, key) {
260 return hasOwnProperty.call(it, key);
261 };
262
263 var document = global_1.document;
264 // typeof document.createElement is 'object' in old IE
265 var EXISTS = isObject(document) && isObject(document.createElement);
266
267 var documentCreateElement = function (it) {
268 return EXISTS ? document.createElement(it) : {};
269 };
270
271 // Thank's IE8 for his funny defineProperty
272 var ie8DomDefine = !descriptors && !fails(function () {
273 // eslint-disable-next-line es/no-object-defineproperty -- requied for testing
274 return Object.defineProperty(documentCreateElement('div'), 'a', {
275 get: function () { return 7; }
276 }).a != 7;
277 });
278
279 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
280 var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
281
282 // `Object.getOwnPropertyDescriptor` method
283 // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
284 var f$3 = descriptors ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
285 O = toIndexedObject(O);
286 P = toPrimitive(P, true);
287 if (ie8DomDefine) try {
288 return $getOwnPropertyDescriptor(O, P);
289 } catch (error) { /* empty */ }
290 if (has$1(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
291 };
292
293 var objectGetOwnPropertyDescriptor = {
294 f: f$3
295 };
296
297 var anObject = function (it) {
298 if (!isObject(it)) {
299 throw TypeError(String(it) + ' is not an object');
300 } return it;
301 };
302
303 // eslint-disable-next-line es/no-object-defineproperty -- safe
304 var $defineProperty = Object.defineProperty;
305
306 // `Object.defineProperty` method
307 // https://tc39.es/ecma262/#sec-object.defineproperty
308 var f$2 = descriptors ? $defineProperty : function defineProperty(O, P, Attributes) {
309 anObject(O);
310 P = toPrimitive(P, true);
311 anObject(Attributes);
312 if (ie8DomDefine) try {
313 return $defineProperty(O, P, Attributes);
314 } catch (error) { /* empty */ }
315 if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
316 if ('value' in Attributes) O[P] = Attributes.value;
317 return O;
318 };
319
320 var objectDefineProperty = {
321 f: f$2
322 };
323
324 var createNonEnumerableProperty = descriptors ? function (object, key, value) {
325 return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
326 } : function (object, key, value) {
327 object[key] = value;
328 return object;
329 };
330
331 var setGlobal = function (key, value) {
332 try {
333 createNonEnumerableProperty(global_1, key, value);
334 } catch (error) {
335 global_1[key] = value;
336 } return value;
337 };
338
339 var SHARED = '__core-js_shared__';
340 var store$1 = global_1[SHARED] || setGlobal(SHARED, {});
341
342 var sharedStore = store$1;
343
344 var functionToString = Function.toString;
345
346 // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
347 if (typeof sharedStore.inspectSource != 'function') {
348 sharedStore.inspectSource = function (it) {
349 return functionToString.call(it);
350 };
351 }
352
353 var inspectSource = sharedStore.inspectSource;
354
355 var WeakMap$1 = global_1.WeakMap;
356
357 var nativeWeakMap = typeof WeakMap$1 === 'function' && /native code/.test(inspectSource(WeakMap$1));
358
359 var shared = createCommonjsModule(function (module) {
360 (module.exports = function (key, value) {
361 return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
362 })('versions', []).push({
363 version: '3.10.1',
364 mode: 'global',
365 copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
366 });
367 });
368
369 var id = 0;
370 var postfix = Math.random();
371
372 var uid = function (key) {
373 return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
374 };
375
376 var keys = shared('keys');
377
378 var sharedKey = function (key) {
379 return keys[key] || (keys[key] = uid(key));
380 };
381
382 var hiddenKeys$1 = {};
383
384 var WeakMap = global_1.WeakMap;
385 var set, get, has;
386
387 var enforce = function (it) {
388 return has(it) ? get(it) : set(it, {});
389 };
390
391 var getterFor = function (TYPE) {
392 return function (it) {
393 var state;
394 if (!isObject(it) || (state = get(it)).type !== TYPE) {
395 throw TypeError('Incompatible receiver, ' + TYPE + ' required');
396 } return state;
397 };
398 };
399
400 if (nativeWeakMap) {
401 var store = sharedStore.state || (sharedStore.state = new WeakMap());
402 var wmget = store.get;
403 var wmhas = store.has;
404 var wmset = store.set;
405 set = function (it, metadata) {
406 metadata.facade = it;
407 wmset.call(store, it, metadata);
408 return metadata;
409 };
410 get = function (it) {
411 return wmget.call(store, it) || {};
412 };
413 has = function (it) {
414 return wmhas.call(store, it);
415 };
416 } else {
417 var STATE = sharedKey('state');
418 hiddenKeys$1[STATE] = true;
419 set = function (it, metadata) {
420 metadata.facade = it;
421 createNonEnumerableProperty(it, STATE, metadata);
422 return metadata;
423 };
424 get = function (it) {
425 return has$1(it, STATE) ? it[STATE] : {};
426 };
427 has = function (it) {
428 return has$1(it, STATE);
429 };
430 }
431
432 var internalState = {
433 set: set,
434 get: get,
435 has: has,
436 enforce: enforce,
437 getterFor: getterFor
438 };
439
440 var redefine = createCommonjsModule(function (module) {
441 var getInternalState = internalState.get;
442 var enforceInternalState = internalState.enforce;
443 var TEMPLATE = String(String).split('String');
444
445 (module.exports = function (O, key, value, options) {
446 var unsafe = options ? !!options.unsafe : false;
447 var simple = options ? !!options.enumerable : false;
448 var noTargetGet = options ? !!options.noTargetGet : false;
449 var state;
450 if (typeof value == 'function') {
451 if (typeof key == 'string' && !has$1(value, 'name')) {
452 createNonEnumerableProperty(value, 'name', key);
453 }
454 state = enforceInternalState(value);
455 if (!state.source) {
456 state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
457 }
458 }
459 if (O === global_1) {
460 if (simple) O[key] = value;
461 else setGlobal(key, value);
462 return;
463 } else if (!unsafe) {
464 delete O[key];
465 } else if (!noTargetGet && O[key]) {
466 simple = true;
467 }
468 if (simple) O[key] = value;
469 else createNonEnumerableProperty(O, key, value);
470 // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
471 })(Function.prototype, 'toString', function toString() {
472 return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
473 });
474 });
475
476 var path = global_1;
477
478 var aFunction = function (variable) {
479 return typeof variable == 'function' ? variable : undefined;
480 };
481
482 var getBuiltIn = function (namespace, method) {
483 return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
484 : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
485 };
486
487 var ceil = Math.ceil;
488 var floor$1 = Math.floor;
489
490 // `ToInteger` abstract operation
491 // https://tc39.es/ecma262/#sec-tointeger
492 var toInteger = function (argument) {
493 return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor$1 : ceil)(argument);
494 };
495
496 var min$2 = Math.min;
497
498 // `ToLength` abstract operation
499 // https://tc39.es/ecma262/#sec-tolength
500 var toLength = function (argument) {
501 return argument > 0 ? min$2(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
502 };
503
504 var max$1 = Math.max;
505 var min$1 = Math.min;
506
507 // Helper for a popular repeating case of the spec:
508 // Let integer be ? ToInteger(index).
509 // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
510 var toAbsoluteIndex = function (index, length) {
511 var integer = toInteger(index);
512 return integer < 0 ? max$1(integer + length, 0) : min$1(integer, length);
513 };
514
515 // `Array.prototype.{ indexOf, includes }` methods implementation
516 var createMethod$1 = function (IS_INCLUDES) {
517 return function ($this, el, fromIndex) {
518 var O = toIndexedObject($this);
519 var length = toLength(O.length);
520 var index = toAbsoluteIndex(fromIndex, length);
521 var value;
522 // Array#includes uses SameValueZero equality algorithm
523 // eslint-disable-next-line no-self-compare -- NaN check
524 if (IS_INCLUDES && el != el) while (length > index) {
525 value = O[index++];
526 // eslint-disable-next-line no-self-compare -- NaN check
527 if (value != value) return true;
528 // Array#indexOf ignores holes, Array#includes - not
529 } else for (;length > index; index++) {
530 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
531 } return !IS_INCLUDES && -1;
532 };
533 };
534
535 var arrayIncludes = {
536 // `Array.prototype.includes` method
537 // https://tc39.es/ecma262/#sec-array.prototype.includes
538 includes: createMethod$1(true),
539 // `Array.prototype.indexOf` method
540 // https://tc39.es/ecma262/#sec-array.prototype.indexof
541 indexOf: createMethod$1(false)
542 };
543
544 var indexOf = arrayIncludes.indexOf;
545
546
547 var objectKeysInternal = function (object, names) {
548 var O = toIndexedObject(object);
549 var i = 0;
550 var result = [];
551 var key;
552 for (key in O) !has$1(hiddenKeys$1, key) && has$1(O, key) && result.push(key);
553 // Don't enum bug & hidden keys
554 while (names.length > i) if (has$1(O, key = names[i++])) {
555 ~indexOf(result, key) || result.push(key);
556 }
557 return result;
558 };
559
560 // IE8- don't enum bug keys
561 var enumBugKeys = [
562 'constructor',
563 'hasOwnProperty',
564 'isPrototypeOf',
565 'propertyIsEnumerable',
566 'toLocaleString',
567 'toString',
568 'valueOf'
569 ];
570
571 var hiddenKeys = enumBugKeys.concat('length', 'prototype');
572
573 // `Object.getOwnPropertyNames` method
574 // https://tc39.es/ecma262/#sec-object.getownpropertynames
575 // eslint-disable-next-line es/no-object-getownpropertynames -- safe
576 var f$1 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
577 return objectKeysInternal(O, hiddenKeys);
578 };
579
580 var objectGetOwnPropertyNames = {
581 f: f$1
582 };
583
584 // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
585 var f = Object.getOwnPropertySymbols;
586
587 var objectGetOwnPropertySymbols = {
588 f: f
589 };
590
591 // all object keys, includes non-enumerable and symbols
592 var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
593 var keys = objectGetOwnPropertyNames.f(anObject(it));
594 var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
595 return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
596 };
597
598 var copyConstructorProperties = function (target, source) {
599 var keys = ownKeys(source);
600 var defineProperty = objectDefineProperty.f;
601 var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
602 for (var i = 0; i < keys.length; i++) {
603 var key = keys[i];
604 if (!has$1(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
605 }
606 };
607
608 var replacement = /#|\.prototype\./;
609
610 var isForced = function (feature, detection) {
611 var value = data[normalize(feature)];
612 return value == POLYFILL ? true
613 : value == NATIVE ? false
614 : typeof detection == 'function' ? fails(detection)
615 : !!detection;
616 };
617
618 var normalize = isForced.normalize = function (string) {
619 return String(string).replace(replacement, '.').toLowerCase();
620 };
621
622 var data = isForced.data = {};
623 var NATIVE = isForced.NATIVE = 'N';
624 var POLYFILL = isForced.POLYFILL = 'P';
625
626 var isForced_1 = isForced;
627
628 var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
629
630
631
632
633
634
635 /*
636 options.target - name of the target object
637 options.global - target is the global object
638 options.stat - export as static methods of target
639 options.proto - export as prototype methods of target
640 options.real - real prototype method for the `pure` version
641 options.forced - export even if the native feature is available
642 options.bind - bind methods to the target, required for the `pure` version
643 options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
644 options.unsafe - use the simple assignment of property instead of delete + defineProperty
645 options.sham - add a flag to not completely full polyfills
646 options.enumerable - export as enumerable property
647 options.noTargetGet - prevent calling a getter on target
648 */
649 var _export = function (options, source) {
650 var TARGET = options.target;
651 var GLOBAL = options.global;
652 var STATIC = options.stat;
653 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
654 if (GLOBAL) {
655 target = global_1;
656 } else if (STATIC) {
657 target = global_1[TARGET] || setGlobal(TARGET, {});
658 } else {
659 target = (global_1[TARGET] || {}).prototype;
660 }
661 if (target) for (key in source) {
662 sourceProperty = source[key];
663 if (options.noTargetGet) {
664 descriptor = getOwnPropertyDescriptor(target, key);
665 targetProperty = descriptor && descriptor.value;
666 } else targetProperty = target[key];
667 FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
668 // contained in target
669 if (!FORCED && targetProperty !== undefined) {
670 if (typeof sourceProperty === typeof targetProperty) continue;
671 copyConstructorProperties(sourceProperty, targetProperty);
672 }
673 // add a flag to not completely full polyfills
674 if (options.sham || (targetProperty && targetProperty.sham)) {
675 createNonEnumerableProperty(sourceProperty, 'sham', true);
676 }
677 // extend global
678 redefine(target, key, sourceProperty, options);
679 }
680 };
681
682 // `RegExp.prototype.flags` getter implementation
683 // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
684 var regexpFlags = function () {
685 var that = anObject(this);
686 var result = '';
687 if (that.global) result += 'g';
688 if (that.ignoreCase) result += 'i';
689 if (that.multiline) result += 'm';
690 if (that.dotAll) result += 's';
691 if (that.unicode) result += 'u';
692 if (that.sticky) result += 'y';
693 return result;
694 };
695
696 // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
697 // so we use an intermediate function.
698 function RE(s, f) {
699 return RegExp(s, f);
700 }
701
702 var UNSUPPORTED_Y$1 = fails(function () {
703 // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
704 var re = RE('a', 'y');
705 re.lastIndex = 2;
706 return re.exec('abcd') != null;
707 });
708
709 var BROKEN_CARET = fails(function () {
710 // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
711 var re = RE('^r', 'gy');
712 re.lastIndex = 2;
713 return re.exec('str') != null;
714 });
715
716 var regexpStickyHelpers = {
717 UNSUPPORTED_Y: UNSUPPORTED_Y$1,
718 BROKEN_CARET: BROKEN_CARET
719 };
720
721 var nativeExec = RegExp.prototype.exec;
722 var nativeReplace = shared('native-string-replace', String.prototype.replace);
723
724 var patchedExec = nativeExec;
725
726 var UPDATES_LAST_INDEX_WRONG = (function () {
727 var re1 = /a/;
728 var re2 = /b*/g;
729 nativeExec.call(re1, 'a');
730 nativeExec.call(re2, 'a');
731 return re1.lastIndex !== 0 || re2.lastIndex !== 0;
732 })();
733
734 var UNSUPPORTED_Y = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET;
735
736 // nonparticipating capturing group, copied from es5-shim's String#split patch.
737 // eslint-disable-next-line regexp/no-assertion-capturing-group, regexp/no-empty-group -- required for testing
738 var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
739
740 var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y;
741
742 if (PATCH) {
743 patchedExec = function exec(str) {
744 var re = this;
745 var lastIndex, reCopy, match, i;
746 var sticky = UNSUPPORTED_Y && re.sticky;
747 var flags = regexpFlags.call(re);
748 var source = re.source;
749 var charsAdded = 0;
750 var strCopy = str;
751
752 if (sticky) {
753 flags = flags.replace('y', '');
754 if (flags.indexOf('g') === -1) {
755 flags += 'g';
756 }
757
758 strCopy = String(str).slice(re.lastIndex);
759 // Support anchored sticky behavior.
760 if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
761 source = '(?: ' + source + ')';
762 strCopy = ' ' + strCopy;
763 charsAdded++;
764 }
765 // ^(? + rx + ) is needed, in combination with some str slicing, to
766 // simulate the 'y' flag.
767 reCopy = new RegExp('^(?:' + source + ')', flags);
768 }
769
770 if (NPCG_INCLUDED) {
771 reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
772 }
773 if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
774
775 match = nativeExec.call(sticky ? reCopy : re, strCopy);
776
777 if (sticky) {
778 if (match) {
779 match.input = match.input.slice(charsAdded);
780 match[0] = match[0].slice(charsAdded);
781 match.index = re.lastIndex;
782 re.lastIndex += match[0].length;
783 } else re.lastIndex = 0;
784 } else if (UPDATES_LAST_INDEX_WRONG && match) {
785 re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
786 }
787 if (NPCG_INCLUDED && match && match.length > 1) {
788 // Fix browsers whose `exec` methods don't consistently return `undefined`
789 // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
790 nativeReplace.call(match[0], reCopy, function () {
791 for (i = 1; i < arguments.length - 2; i++) {
792 if (arguments[i] === undefined) match[i] = undefined;
793 }
794 });
795 }
796
797 return match;
798 };
799 }
800
801 var regexpExec = patchedExec;
802
803 // `RegExp.prototype.exec` method
804 // https://tc39.es/ecma262/#sec-regexp.prototype.exec
805 _export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, {
806 exec: regexpExec
807 });
808
809 var engineIsNode = classofRaw(global_1.process) == 'process';
810
811 var engineUserAgent = getBuiltIn('navigator', 'userAgent') || '';
812
813 var process = global_1.process;
814 var versions = process && process.versions;
815 var v8 = versions && versions.v8;
816 var match, version;
817
818 if (v8) {
819 match = v8.split('.');
820 version = match[0] + match[1];
821 } else if (engineUserAgent) {
822 match = engineUserAgent.match(/Edge\/(\d+)/);
823 if (!match || match[1] >= 74) {
824 match = engineUserAgent.match(/Chrome\/(\d+)/);
825 if (match) version = match[1];
826 }
827 }
828
829 var engineV8Version = version && +version;
830
831 // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
832 var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
833 // eslint-disable-next-line es/no-symbol -- required for testing
834 return !Symbol.sham &&
835 // Chrome 38 Symbol has incorrect toString conversion
836 // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
837 (engineIsNode ? engineV8Version === 38 : engineV8Version > 37 && engineV8Version < 41);
838 });
839
840 /* eslint-disable es/no-symbol -- required for testing */
841
842
843 var useSymbolAsUid = nativeSymbol
844 && !Symbol.sham
845 && typeof Symbol.iterator == 'symbol';
846
847 var WellKnownSymbolsStore = shared('wks');
848 var Symbol$1 = global_1.Symbol;
849 var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
850
851 var wellKnownSymbol = function (name) {
852 if (!has$1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
853 if (nativeSymbol && has$1(Symbol$1, name)) {
854 WellKnownSymbolsStore[name] = Symbol$1[name];
855 } else {
856 WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
857 }
858 } return WellKnownSymbolsStore[name];
859 };
860
861 // TODO: Remove from `core-js@4` since it's moved to entry points
862
863
864
865
866
867
868 var SPECIES$2 = wellKnownSymbol('species');
869
870 var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
871 // #replace needs built-in support for named groups.
872 // #match works fine because it just return the exec results, even if it has
873 // a "grops" property.
874 var re = /./;
875 re.exec = function () {
876 var result = [];
877 result.groups = { a: '7' };
878 return result;
879 };
880 return ''.replace(re, '$<a>') !== '7';
881 });
882
883 // IE <= 11 replaces $0 with the whole match, as if it was $&
884 // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
885 var REPLACE_KEEPS_$0 = (function () {
886 // eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing
887 return 'a'.replace(/./, '$0') === '$0';
888 })();
889
890 var REPLACE = wellKnownSymbol('replace');
891 // Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string
892 var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
893 if (/./[REPLACE]) {
894 return /./[REPLACE]('a', '$0') === '';
895 }
896 return false;
897 })();
898
899 // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
900 // Weex JS has frozen built-in prototypes, so use try / catch wrapper
901 var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
902 // eslint-disable-next-line regexp/no-empty-group -- required for testing
903 var re = /(?:)/;
904 var originalExec = re.exec;
905 re.exec = function () { return originalExec.apply(this, arguments); };
906 var result = 'ab'.split(re);
907 return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
908 });
909
910 var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
911 var SYMBOL = wellKnownSymbol(KEY);
912
913 var DELEGATES_TO_SYMBOL = !fails(function () {
914 // String methods call symbol-named RegEp methods
915 var O = {};
916 O[SYMBOL] = function () { return 7; };
917 return ''[KEY](O) != 7;
918 });
919
920 var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
921 // Symbol-named RegExp methods call .exec
922 var execCalled = false;
923 var re = /a/;
924
925 if (KEY === 'split') {
926 // We can't use real regex here since it causes deoptimization
927 // and serious performance degradation in V8
928 // https://github.com/zloirock/core-js/issues/306
929 re = {};
930 // RegExp[@@split] doesn't call the regex's exec method, but first creates
931 // a new one. We need to return the patched regex when creating the new one.
932 re.constructor = {};
933 re.constructor[SPECIES$2] = function () { return re; };
934 re.flags = '';
935 re[SYMBOL] = /./[SYMBOL];
936 }
937
938 re.exec = function () { execCalled = true; return null; };
939
940 re[SYMBOL]('');
941 return !execCalled;
942 });
943
944 if (
945 !DELEGATES_TO_SYMBOL ||
946 !DELEGATES_TO_EXEC ||
947 (KEY === 'replace' && !(
948 REPLACE_SUPPORTS_NAMED_GROUPS &&
949 REPLACE_KEEPS_$0 &&
950 !REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE
951 )) ||
952 (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
953 ) {
954 var nativeRegExpMethod = /./[SYMBOL];
955 var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
956 if (regexp.exec === RegExp.prototype.exec) {
957 if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
958 // The native String method already delegates to @@method (this
959 // polyfilled function), leasing to infinite recursion.
960 // We avoid it by directly calling the native @@method method.
961 return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
962 }
963 return { done: true, value: nativeMethod.call(str, regexp, arg2) };
964 }
965 return { done: false };
966 }, {
967 REPLACE_KEEPS_$0: REPLACE_KEEPS_$0,
968 REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE: REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE
969 });
970 var stringMethod = methods[0];
971 var regexMethod = methods[1];
972
973 redefine(String.prototype, KEY, stringMethod);
974 redefine(RegExp.prototype, SYMBOL, length == 2
975 // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
976 // 21.2.5.11 RegExp.prototype[@@split](string, limit)
977 ? function (string, arg) { return regexMethod.call(string, this, arg); }
978 // 21.2.5.6 RegExp.prototype[@@match](string)
979 // 21.2.5.9 RegExp.prototype[@@search](string)
980 : function (string) { return regexMethod.call(string, this); }
981 );
982 }
983
984 if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);
985 };
986
987 // `String.prototype.{ codePointAt, at }` methods implementation
988 var createMethod = function (CONVERT_TO_STRING) {
989 return function ($this, pos) {
990 var S = String(requireObjectCoercible($this));
991 var position = toInteger(pos);
992 var size = S.length;
993 var first, second;
994 if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
995 first = S.charCodeAt(position);
996 return first < 0xD800 || first > 0xDBFF || position + 1 === size
997 || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
998 ? CONVERT_TO_STRING ? S.charAt(position) : first
999 : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
1000 };
1001 };
1002
1003 var stringMultibyte = {
1004 // `String.prototype.codePointAt` method
1005 // https://tc39.es/ecma262/#sec-string.prototype.codepointat
1006 codeAt: createMethod(false),
1007 // `String.prototype.at` method
1008 // https://github.com/mathiasbynens/String.prototype.at
1009 charAt: createMethod(true)
1010 };
1011
1012 var charAt = stringMultibyte.charAt;
1013
1014 // `AdvanceStringIndex` abstract operation
1015 // https://tc39.es/ecma262/#sec-advancestringindex
1016 var advanceStringIndex = function (S, index, unicode) {
1017 return index + (unicode ? charAt(S, index).length : 1);
1018 };
1019
1020 // `ToObject` abstract operation
1021 // https://tc39.es/ecma262/#sec-toobject
1022 var toObject = function (argument) {
1023 return Object(requireObjectCoercible(argument));
1024 };
1025
1026 var floor = Math.floor;
1027 var replace = ''.replace;
1028 var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
1029 var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
1030
1031 // https://tc39.es/ecma262/#sec-getsubstitution
1032 var getSubstitution = function (matched, str, position, captures, namedCaptures, replacement) {
1033 var tailPos = position + matched.length;
1034 var m = captures.length;
1035 var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
1036 if (namedCaptures !== undefined) {
1037 namedCaptures = toObject(namedCaptures);
1038 symbols = SUBSTITUTION_SYMBOLS;
1039 }
1040 return replace.call(replacement, symbols, function (match, ch) {
1041 var capture;
1042 switch (ch.charAt(0)) {
1043 case '$': return '$';
1044 case '&': return matched;
1045 case '`': return str.slice(0, position);
1046 case "'": return str.slice(tailPos);
1047 case '<':
1048 capture = namedCaptures[ch.slice(1, -1)];
1049 break;
1050 default: // \d\d?
1051 var n = +ch;
1052 if (n === 0) return match;
1053 if (n > m) {
1054 var f = floor(n / 10);
1055 if (f === 0) return match;
1056 if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
1057 return match;
1058 }
1059 capture = captures[n - 1];
1060 }
1061 return capture === undefined ? '' : capture;
1062 });
1063 };
1064
1065 // `RegExpExec` abstract operation
1066 // https://tc39.es/ecma262/#sec-regexpexec
1067 var regexpExecAbstract = function (R, S) {
1068 var exec = R.exec;
1069 if (typeof exec === 'function') {
1070 var result = exec.call(R, S);
1071 if (typeof result !== 'object') {
1072 throw TypeError('RegExp exec method returned something other than an Object or null');
1073 }
1074 return result;
1075 }
1076
1077 if (classofRaw(R) !== 'RegExp') {
1078 throw TypeError('RegExp#exec called on incompatible receiver');
1079 }
1080
1081 return regexpExec.call(R, S);
1082 };
1083
1084 var max = Math.max;
1085 var min = Math.min;
1086
1087 var maybeToString = function (it) {
1088 return it === undefined ? it : String(it);
1089 };
1090
1091 // @@replace logic
1092 fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {
1093 var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE;
1094 var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0;
1095 var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
1096
1097 return [
1098 // `String.prototype.replace` method
1099 // https://tc39.es/ecma262/#sec-string.prototype.replace
1100 function replace(searchValue, replaceValue) {
1101 var O = requireObjectCoercible(this);
1102 var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
1103 return replacer !== undefined
1104 ? replacer.call(searchValue, O, replaceValue)
1105 : nativeReplace.call(String(O), searchValue, replaceValue);
1106 },
1107 // `RegExp.prototype[@@replace]` method
1108 // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
1109 function (regexp, replaceValue) {
1110 if (
1111 (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) ||
1112 (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1)
1113 ) {
1114 var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
1115 if (res.done) return res.value;
1116 }
1117
1118 var rx = anObject(regexp);
1119 var S = String(this);
1120
1121 var functionalReplace = typeof replaceValue === 'function';
1122 if (!functionalReplace) replaceValue = String(replaceValue);
1123
1124 var global = rx.global;
1125 if (global) {
1126 var fullUnicode = rx.unicode;
1127 rx.lastIndex = 0;
1128 }
1129 var results = [];
1130 while (true) {
1131 var result = regexpExecAbstract(rx, S);
1132 if (result === null) break;
1133
1134 results.push(result);
1135 if (!global) break;
1136
1137 var matchStr = String(result[0]);
1138 if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
1139 }
1140
1141 var accumulatedResult = '';
1142 var nextSourcePosition = 0;
1143 for (var i = 0; i < results.length; i++) {
1144 result = results[i];
1145
1146 var matched = String(result[0]);
1147 var position = max(min(toInteger(result.index), S.length), 0);
1148 var captures = [];
1149 // NOTE: This is equivalent to
1150 // captures = result.slice(1).map(maybeToString)
1151 // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
1152 // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
1153 // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
1154 for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
1155 var namedCaptures = result.groups;
1156 if (functionalReplace) {
1157 var replacerArgs = [matched].concat(captures, position, S);
1158 if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
1159 var replacement = String(replaceValue.apply(undefined, replacerArgs));
1160 } else {
1161 replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
1162 }
1163 if (position >= nextSourcePosition) {
1164 accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
1165 nextSourcePosition = position + matched.length;
1166 }
1167 }
1168 return accumulatedResult + S.slice(nextSourcePosition);
1169 }
1170 ];
1171 });
1172
1173 // `IsArray` abstract operation
1174 // https://tc39.es/ecma262/#sec-isarray
1175 // eslint-disable-next-line es/no-array-isarray -- safe
1176 var isArray = Array.isArray || function isArray(arg) {
1177 return classofRaw(arg) == 'Array';
1178 };
1179
1180 var createProperty = function (object, key, value) {
1181 var propertyKey = toPrimitive(key);
1182 if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
1183 else object[propertyKey] = value;
1184 };
1185
1186 var SPECIES$1 = wellKnownSymbol('species');
1187
1188 // `ArraySpeciesCreate` abstract operation
1189 // https://tc39.es/ecma262/#sec-arrayspeciescreate
1190 var arraySpeciesCreate = function (originalArray, length) {
1191 var C;
1192 if (isArray(originalArray)) {
1193 C = originalArray.constructor;
1194 // cross-realm fallback
1195 if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
1196 else if (isObject(C)) {
1197 C = C[SPECIES$1];
1198 if (C === null) C = undefined;
1199 }
1200 } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
1201 };
1202
1203 var SPECIES = wellKnownSymbol('species');
1204
1205 var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
1206 // We can't use this feature detection in V8 since it causes
1207 // deoptimization and serious performance degradation
1208 // https://github.com/zloirock/core-js/issues/677
1209 return engineV8Version >= 51 || !fails(function () {
1210 var array = [];
1211 var constructor = array.constructor = {};
1212 constructor[SPECIES] = function () {
1213 return { foo: 1 };
1214 };
1215 return array[METHOD_NAME](Boolean).foo !== 1;
1216 });
1217 };
1218
1219 var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
1220 var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
1221 var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
1222
1223 // We can't use this feature detection in V8 since it causes
1224 // deoptimization and serious performance degradation
1225 // https://github.com/zloirock/core-js/issues/679
1226 var IS_CONCAT_SPREADABLE_SUPPORT = engineV8Version >= 51 || !fails(function () {
1227 var array = [];
1228 array[IS_CONCAT_SPREADABLE] = false;
1229 return array.concat()[0] !== array;
1230 });
1231
1232 var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
1233
1234 var isConcatSpreadable = function (O) {
1235 if (!isObject(O)) return false;
1236 var spreadable = O[IS_CONCAT_SPREADABLE];
1237 return spreadable !== undefined ? !!spreadable : isArray(O);
1238 };
1239
1240 var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
1241
1242 // `Array.prototype.concat` method
1243 // https://tc39.es/ecma262/#sec-array.prototype.concat
1244 // with adding support of @@isConcatSpreadable and @@species
1245 _export({ target: 'Array', proto: true, forced: FORCED }, {
1246 // eslint-disable-next-line no-unused-vars -- required for `.length`
1247 concat: function concat(arg) {
1248 var O = toObject(this);
1249 var A = arraySpeciesCreate(O, 0);
1250 var n = 0;
1251 var i, k, length, len, E;
1252 for (i = -1, length = arguments.length; i < length; i++) {
1253 E = i === -1 ? O : arguments[i];
1254 if (isConcatSpreadable(E)) {
1255 len = toLength(E.length);
1256 if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1257 for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
1258 } else {
1259 if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1260 createProperty(A, n++, E);
1261 }
1262 }
1263 A.length = n;
1264 return A;
1265 }
1266 });
1267
1268 //
1269 //
1270 //
1271 //
1272 var $ = window.jQuery;
1273
1274 var deepCopy = function deepCopy(arg) {
1275 if (arg === undefined) {
1276 return arg;
1277 }
1278
1279 return $.extend(true, Array.isArray(arg) ? [] : {}, arg);
1280 };
1281
1282 var script = {
1283 name: 'BootstrapTable',
1284 props: {
1285 columns: {
1286 type: Array,
1287 require: true
1288 },
1289 data: {
1290 type: [Array, Object],
1291 default: function _default() {
1292 return undefined;
1293 }
1294 },
1295 options: {
1296 type: Object,
1297 default: function _default() {
1298 return {};
1299 }
1300 }
1301 },
1302 mounted: function mounted() {
1303 var _this = this;
1304
1305 this.$table = $(this.$el);
1306 this.$table.on('all.bs.table', function (e, name, args) {
1307 var eventName = $.fn.bootstrapTable.events[name];
1308 eventName = eventName.replace(/([A-Z])/g, '-$1').toLowerCase();
1309
1310 _this.$emit.apply(_this, ['on-all'].concat(_toConsumableArray(args)));
1311
1312 _this.$emit.apply(_this, [eventName].concat(_toConsumableArray(args)));
1313 });
1314
1315 this._initTable();
1316 },
1317 methods: _objectSpread2({
1318 _initTable: function _initTable() {
1319 var options = _objectSpread2(_objectSpread2({}, deepCopy(this.options)), {}, {
1320 columns: deepCopy(this.columns),
1321 data: deepCopy(this.data)
1322 });
1323
1324 if (!this._hasInit) {
1325 this.$table.bootstrapTable(options);
1326 this._hasInit = true;
1327 } else {
1328 this.refreshOptions(options);
1329 }
1330 }
1331 }, function () {
1332 var res = {};
1333
1334 var _iterator = _createForOfIteratorHelper($.fn.bootstrapTable.methods),
1335 _step;
1336
1337 try {
1338 var _loop = function _loop() {
1339 var method = _step.value;
1340
1341 res[method] = function () {
1342 var _this$$table;
1343
1344 for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
1345 args[_key] = arguments[_key];
1346 }
1347
1348 return (_this$$table = this.$table).bootstrapTable.apply(_this$$table, [method].concat(args));
1349 };
1350 };
1351
1352 for (_iterator.s(); !(_step = _iterator.n()).done;) {
1353 _loop();
1354 }
1355 } catch (err) {
1356 _iterator.e(err);
1357 } finally {
1358 _iterator.f();
1359 }
1360
1361 return res;
1362 }()),
1363 watch: {
1364 options: {
1365 handler: function handler() {
1366 this._initTable();
1367 },
1368 deep: true
1369 },
1370 columns: {
1371 handler: function handler() {
1372 this._initTable();
1373 },
1374 deep: true
1375 },
1376 data: {
1377 handler: function handler() {
1378 this.load(deepCopy(this.data));
1379 },
1380 deep: true
1381 }
1382 }
1383 };
1384
1385 function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
1386 if (typeof shadowMode !== 'boolean') {
1387 createInjectorSSR = createInjector;
1388 createInjector = shadowMode;
1389 shadowMode = false;
1390 }
1391 // Vue.extend constructor export interop.
1392 const options = typeof script === 'function' ? script.options : script;
1393 // render functions
1394 if (template && template.render) {
1395 options.render = template.render;
1396 options.staticRenderFns = template.staticRenderFns;
1397 options._compiled = true;
1398 // functional template
1399 if (isFunctionalTemplate) {
1400 options.functional = true;
1401 }
1402 }
1403 // scopedId
1404 if (scopeId) {
1405 options._scopeId = scopeId;
1406 }
1407 let hook;
1408 if (moduleIdentifier) {
1409 // server build
1410 hook = function (context) {
1411 // 2.3 injection
1412 context =
1413 context || // cached call
1414 (this.$vnode && this.$vnode.ssrContext) || // stateful
1415 (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional
1416 // 2.2 with runInNewContext: true
1417 if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
1418 context = __VUE_SSR_CONTEXT__;
1419 }
1420 // inject component styles
1421 if (style) {
1422 style.call(this, createInjectorSSR(context));
1423 }
1424 // register component module identifier for async chunk inference
1425 if (context && context._registeredComponents) {
1426 context._registeredComponents.add(moduleIdentifier);
1427 }
1428 };
1429 // used by ssr in case component is cached and beforeCreate
1430 // never gets called
1431 options._ssrRegister = hook;
1432 }
1433 else if (style) {
1434 hook = shadowMode
1435 ? function (context) {
1436 style.call(this, createInjectorShadow(context, this.$root.$options.shadowRoot));
1437 }
1438 : function (context) {
1439 style.call(this, createInjector(context));
1440 };
1441 }
1442 if (hook) {
1443 if (options.functional) {
1444 // register for functional component in vue file
1445 const originalRender = options.render;
1446 options.render = function renderWithStyleInjection(h, context) {
1447 hook.call(context);
1448 return originalRender(h, context);
1449 };
1450 }
1451 else {
1452 // inject component registration as beforeCreate hook
1453 const existing = options.beforeCreate;
1454 options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
1455 }
1456 }
1457 return script;
1458 }
1459
1460 /* script */
1461 const __vue_script__ = script;
1462
1463 /* template */
1464 var __vue_render__ = function() {
1465 var _vm = this;
1466 var _h = _vm.$createElement;
1467 var _c = _vm._self._c || _h;
1468 return _c("table")
1469 };
1470 var __vue_staticRenderFns__ = [];
1471 __vue_render__._withStripped = true;
1472
1473 /* style */
1474 const __vue_inject_styles__ = undefined;
1475 /* scoped */
1476 const __vue_scope_id__ = undefined;
1477 /* module identifier */
1478 const __vue_module_identifier__ = undefined;
1479 /* functional template */
1480 const __vue_is_functional_template__ = false;
1481 /* style inject */
1482
1483 /* style inject SSR */
1484
1485 /* style inject shadow dom */
1486
1487
1488
1489 const __vue_component__ = /*#__PURE__*/normalizeComponent(
1490 { render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
1491 __vue_inject_styles__,
1492 __vue_script__,
1493 __vue_scope_id__,
1494 __vue_is_functional_template__,
1495 __vue_module_identifier__,
1496 false,
1497 undefined,
1498 undefined,
1499 undefined
1500 );
1501
1502 return __vue_component__;
1503
1504})));