UNPKG

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