UNPKG

63.9 kBJavaScriptView Raw
1(function (global, factory) {
2 typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
3 typeof define === 'function' && define.amd ? define(['jquery'], factory) :
4 (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.jQuery));
5})(this, (function ($$4) { 'use strict';
6
7 function _classCallCheck(instance, Constructor) {
8 if (!(instance instanceof Constructor)) {
9 throw new TypeError("Cannot call a class as a function");
10 }
11 }
12 function _defineProperties(target, props) {
13 for (var i = 0; i < props.length; i++) {
14 var descriptor = props[i];
15 descriptor.enumerable = descriptor.enumerable || false;
16 descriptor.configurable = true;
17 if ("value" in descriptor) descriptor.writable = true;
18 Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
19 }
20 }
21 function _createClass(Constructor, protoProps, staticProps) {
22 if (protoProps) _defineProperties(Constructor.prototype, protoProps);
23 if (staticProps) _defineProperties(Constructor, staticProps);
24 Object.defineProperty(Constructor, "prototype", {
25 writable: false
26 });
27 return Constructor;
28 }
29 function _inherits(subClass, superClass) {
30 if (typeof superClass !== "function" && superClass !== null) {
31 throw new TypeError("Super expression must either be null or a function");
32 }
33 subClass.prototype = Object.create(superClass && superClass.prototype, {
34 constructor: {
35 value: subClass,
36 writable: true,
37 configurable: true
38 }
39 });
40 Object.defineProperty(subClass, "prototype", {
41 writable: false
42 });
43 if (superClass) _setPrototypeOf(subClass, superClass);
44 }
45 function _getPrototypeOf(o) {
46 _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
47 return o.__proto__ || Object.getPrototypeOf(o);
48 };
49 return _getPrototypeOf(o);
50 }
51 function _setPrototypeOf(o, p) {
52 _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
53 o.__proto__ = p;
54 return o;
55 };
56 return _setPrototypeOf(o, p);
57 }
58 function _isNativeReflectConstruct() {
59 if (typeof Reflect === "undefined" || !Reflect.construct) return false;
60 if (Reflect.construct.sham) return false;
61 if (typeof Proxy === "function") return true;
62 try {
63 Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
64 return true;
65 } catch (e) {
66 return false;
67 }
68 }
69 function _assertThisInitialized(self) {
70 if (self === void 0) {
71 throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
72 }
73 return self;
74 }
75 function _possibleConstructorReturn(self, call) {
76 if (call && (typeof call === "object" || typeof call === "function")) {
77 return call;
78 } else if (call !== void 0) {
79 throw new TypeError("Derived constructors may only return object or undefined");
80 }
81 return _assertThisInitialized(self);
82 }
83 function _createSuper(Derived) {
84 var hasNativeReflectConstruct = _isNativeReflectConstruct();
85 return function _createSuperInternal() {
86 var Super = _getPrototypeOf(Derived),
87 result;
88 if (hasNativeReflectConstruct) {
89 var NewTarget = _getPrototypeOf(this).constructor;
90 result = Reflect.construct(Super, arguments, NewTarget);
91 } else {
92 result = Super.apply(this, arguments);
93 }
94 return _possibleConstructorReturn(this, result);
95 };
96 }
97 function _superPropBase(object, property) {
98 while (!Object.prototype.hasOwnProperty.call(object, property)) {
99 object = _getPrototypeOf(object);
100 if (object === null) break;
101 }
102 return object;
103 }
104 function _get() {
105 if (typeof Reflect !== "undefined" && Reflect.get) {
106 _get = Reflect.get.bind();
107 } else {
108 _get = function _get(target, property, receiver) {
109 var base = _superPropBase(target, property);
110 if (!base) return;
111 var desc = Object.getOwnPropertyDescriptor(base, property);
112 if (desc.get) {
113 return desc.get.call(arguments.length < 3 ? target : receiver);
114 }
115 return desc.value;
116 };
117 }
118 return _get.apply(this, arguments);
119 }
120 function _unsupportedIterableToArray(o, minLen) {
121 if (!o) return;
122 if (typeof o === "string") return _arrayLikeToArray(o, minLen);
123 var n = Object.prototype.toString.call(o).slice(8, -1);
124 if (n === "Object" && o.constructor) n = o.constructor.name;
125 if (n === "Map" || n === "Set") return Array.from(o);
126 if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
127 }
128 function _arrayLikeToArray(arr, len) {
129 if (len == null || len > arr.length) len = arr.length;
130 for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
131 return arr2;
132 }
133 function _createForOfIteratorHelper(o, allowArrayLike) {
134 var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
135 if (!it) {
136 if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
137 if (it) o = it;
138 var i = 0;
139 var F = function () {};
140 return {
141 s: F,
142 n: function () {
143 if (i >= o.length) return {
144 done: true
145 };
146 return {
147 done: false,
148 value: o[i++]
149 };
150 },
151 e: function (e) {
152 throw e;
153 },
154 f: F
155 };
156 }
157 throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
158 }
159 var normalCompletion = true,
160 didErr = false,
161 err;
162 return {
163 s: function () {
164 it = it.call(o);
165 },
166 n: function () {
167 var step = it.next();
168 normalCompletion = step.done;
169 return step;
170 },
171 e: function (e) {
172 didErr = true;
173 err = e;
174 },
175 f: function () {
176 try {
177 if (!normalCompletion && it.return != null) it.return();
178 } finally {
179 if (didErr) throw err;
180 }
181 }
182 };
183 }
184 function _toPrimitive(input, hint) {
185 if (typeof input !== "object" || input === null) return input;
186 var prim = input[Symbol.toPrimitive];
187 if (prim !== undefined) {
188 var res = prim.call(input, hint || "default");
189 if (typeof res !== "object") return res;
190 throw new TypeError("@@toPrimitive must return a primitive value.");
191 }
192 return (hint === "string" ? String : Number)(input);
193 }
194 function _toPropertyKey(arg) {
195 var key = _toPrimitive(arg, "string");
196 return typeof key === "symbol" ? key : String(key);
197 }
198
199 var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
200
201 var check = function (it) {
202 return it && it.Math == Math && it;
203 };
204
205 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
206 var global$a =
207 // eslint-disable-next-line es/no-global-this -- safe
208 check(typeof globalThis == 'object' && globalThis) ||
209 check(typeof window == 'object' && window) ||
210 // eslint-disable-next-line no-restricted-globals -- safe
211 check(typeof self == 'object' && self) ||
212 check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
213 // eslint-disable-next-line no-new-func -- fallback
214 (function () { return this; })() || Function('return this')();
215
216 var objectGetOwnPropertyDescriptor = {};
217
218 var fails$d = function (exec) {
219 try {
220 return !!exec();
221 } catch (error) {
222 return true;
223 }
224 };
225
226 var fails$c = fails$d;
227
228 // Detect IE8's incomplete defineProperty implementation
229 var descriptors = !fails$c(function () {
230 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
231 return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
232 });
233
234 var fails$b = fails$d;
235
236 var functionBindNative = !fails$b(function () {
237 // eslint-disable-next-line es/no-function-prototype-bind -- safe
238 var test = (function () { /* empty */ }).bind();
239 // eslint-disable-next-line no-prototype-builtins -- safe
240 return typeof test != 'function' || test.hasOwnProperty('prototype');
241 });
242
243 var NATIVE_BIND$2 = functionBindNative;
244
245 var call$5 = Function.prototype.call;
246
247 var functionCall = NATIVE_BIND$2 ? call$5.bind(call$5) : function () {
248 return call$5.apply(call$5, arguments);
249 };
250
251 var objectPropertyIsEnumerable = {};
252
253 var $propertyIsEnumerable = {}.propertyIsEnumerable;
254 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
255 var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
256
257 // Nashorn ~ JDK8 bug
258 var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
259
260 // `Object.prototype.propertyIsEnumerable` method implementation
261 // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
262 objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
263 var descriptor = getOwnPropertyDescriptor$1(this, V);
264 return !!descriptor && descriptor.enumerable;
265 } : $propertyIsEnumerable;
266
267 var createPropertyDescriptor$3 = function (bitmap, value) {
268 return {
269 enumerable: !(bitmap & 1),
270 configurable: !(bitmap & 2),
271 writable: !(bitmap & 4),
272 value: value
273 };
274 };
275
276 var NATIVE_BIND$1 = functionBindNative;
277
278 var FunctionPrototype$1 = Function.prototype;
279 var call$4 = FunctionPrototype$1.call;
280 var uncurryThisWithBind = NATIVE_BIND$1 && FunctionPrototype$1.bind.bind(call$4, call$4);
281
282 var functionUncurryThis = NATIVE_BIND$1 ? uncurryThisWithBind : function (fn) {
283 return function () {
284 return call$4.apply(fn, arguments);
285 };
286 };
287
288 var uncurryThis$e = functionUncurryThis;
289
290 var toString$2 = uncurryThis$e({}.toString);
291 var stringSlice$1 = uncurryThis$e(''.slice);
292
293 var classofRaw$2 = function (it) {
294 return stringSlice$1(toString$2(it), 8, -1);
295 };
296
297 var uncurryThis$d = functionUncurryThis;
298 var fails$a = fails$d;
299 var classof$4 = classofRaw$2;
300
301 var $Object$3 = Object;
302 var split = uncurryThis$d(''.split);
303
304 // fallback for non-array-like ES3 and non-enumerable old V8 strings
305 var indexedObject = fails$a(function () {
306 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
307 // eslint-disable-next-line no-prototype-builtins -- safe
308 return !$Object$3('z').propertyIsEnumerable(0);
309 }) ? function (it) {
310 return classof$4(it) == 'String' ? split(it, '') : $Object$3(it);
311 } : $Object$3;
312
313 // we can't use just `it == null` since of `document.all` special case
314 // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
315 var isNullOrUndefined$2 = function (it) {
316 return it === null || it === undefined;
317 };
318
319 var isNullOrUndefined$1 = isNullOrUndefined$2;
320
321 var $TypeError$6 = TypeError;
322
323 // `RequireObjectCoercible` abstract operation
324 // https://tc39.es/ecma262/#sec-requireobjectcoercible
325 var requireObjectCoercible$2 = function (it) {
326 if (isNullOrUndefined$1(it)) throw $TypeError$6("Can't call method on " + it);
327 return it;
328 };
329
330 // toObject with fallback for non-array-like ES3 strings
331 var IndexedObject$3 = indexedObject;
332 var requireObjectCoercible$1 = requireObjectCoercible$2;
333
334 var toIndexedObject$4 = function (it) {
335 return IndexedObject$3(requireObjectCoercible$1(it));
336 };
337
338 var documentAll$2 = typeof document == 'object' && document.all;
339
340 // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
341 // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
342 var IS_HTMLDDA = typeof documentAll$2 == 'undefined' && documentAll$2 !== undefined;
343
344 var documentAll_1 = {
345 all: documentAll$2,
346 IS_HTMLDDA: IS_HTMLDDA
347 };
348
349 var $documentAll$1 = documentAll_1;
350
351 var documentAll$1 = $documentAll$1.all;
352
353 // `IsCallable` abstract operation
354 // https://tc39.es/ecma262/#sec-iscallable
355 var isCallable$c = $documentAll$1.IS_HTMLDDA ? function (argument) {
356 return typeof argument == 'function' || argument === documentAll$1;
357 } : function (argument) {
358 return typeof argument == 'function';
359 };
360
361 var isCallable$b = isCallable$c;
362 var $documentAll = documentAll_1;
363
364 var documentAll = $documentAll.all;
365
366 var isObject$7 = $documentAll.IS_HTMLDDA ? function (it) {
367 return typeof it == 'object' ? it !== null : isCallable$b(it) || it === documentAll;
368 } : function (it) {
369 return typeof it == 'object' ? it !== null : isCallable$b(it);
370 };
371
372 var global$9 = global$a;
373 var isCallable$a = isCallable$c;
374
375 var aFunction = function (argument) {
376 return isCallable$a(argument) ? argument : undefined;
377 };
378
379 var getBuiltIn$3 = function (namespace, method) {
380 return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
381 };
382
383 var uncurryThis$c = functionUncurryThis;
384
385 var objectIsPrototypeOf = uncurryThis$c({}.isPrototypeOf);
386
387 var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
388
389 var global$8 = global$a;
390 var userAgent = engineUserAgent;
391
392 var process = global$8.process;
393 var Deno = global$8.Deno;
394 var versions = process && process.versions || Deno && Deno.version;
395 var v8 = versions && versions.v8;
396 var match, version;
397
398 if (v8) {
399 match = v8.split('.');
400 // in old Chrome, versions of V8 isn't V8 = Chrome / 10
401 // but their correct versions are not interesting for us
402 version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
403 }
404
405 // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
406 // so check `userAgent` even if `.v8` exists, but 0
407 if (!version && userAgent) {
408 match = userAgent.match(/Edge\/(\d+)/);
409 if (!match || match[1] >= 74) {
410 match = userAgent.match(/Chrome\/(\d+)/);
411 if (match) version = +match[1];
412 }
413 }
414
415 var engineV8Version = version;
416
417 /* eslint-disable es/no-symbol -- required for testing */
418
419 var V8_VERSION$2 = engineV8Version;
420 var fails$9 = fails$d;
421
422 // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
423 var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$9(function () {
424 var symbol = Symbol();
425 // Chrome 38 Symbol has incorrect toString conversion
426 // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
427 return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
428 // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
429 !Symbol.sham && V8_VERSION$2 && V8_VERSION$2 < 41;
430 });
431
432 /* eslint-disable es/no-symbol -- required for testing */
433
434 var NATIVE_SYMBOL$1 = symbolConstructorDetection;
435
436 var useSymbolAsUid = NATIVE_SYMBOL$1
437 && !Symbol.sham
438 && typeof Symbol.iterator == 'symbol';
439
440 var getBuiltIn$2 = getBuiltIn$3;
441 var isCallable$9 = isCallable$c;
442 var isPrototypeOf = objectIsPrototypeOf;
443 var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
444
445 var $Object$2 = Object;
446
447 var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
448 return typeof it == 'symbol';
449 } : function (it) {
450 var $Symbol = getBuiltIn$2('Symbol');
451 return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
452 };
453
454 var $String$2 = String;
455
456 var tryToString$1 = function (argument) {
457 try {
458 return $String$2(argument);
459 } catch (error) {
460 return 'Object';
461 }
462 };
463
464 var isCallable$8 = isCallable$c;
465 var tryToString = tryToString$1;
466
467 var $TypeError$5 = TypeError;
468
469 // `Assert: IsCallable(argument) is true`
470 var aCallable$2 = function (argument) {
471 if (isCallable$8(argument)) return argument;
472 throw $TypeError$5(tryToString(argument) + ' is not a function');
473 };
474
475 var aCallable$1 = aCallable$2;
476 var isNullOrUndefined = isNullOrUndefined$2;
477
478 // `GetMethod` abstract operation
479 // https://tc39.es/ecma262/#sec-getmethod
480 var getMethod$1 = function (V, P) {
481 var func = V[P];
482 return isNullOrUndefined(func) ? undefined : aCallable$1(func);
483 };
484
485 var call$3 = functionCall;
486 var isCallable$7 = isCallable$c;
487 var isObject$6 = isObject$7;
488
489 var $TypeError$4 = TypeError;
490
491 // `OrdinaryToPrimitive` abstract operation
492 // https://tc39.es/ecma262/#sec-ordinarytoprimitive
493 var ordinaryToPrimitive$1 = function (input, pref) {
494 var fn, val;
495 if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
496 if (isCallable$7(fn = input.valueOf) && !isObject$6(val = call$3(fn, input))) return val;
497 if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
498 throw $TypeError$4("Can't convert object to primitive value");
499 };
500
501 var sharedExports = {};
502 var shared$3 = {
503 get exports(){ return sharedExports; },
504 set exports(v){ sharedExports = v; },
505 };
506
507 var global$7 = global$a;
508
509 // eslint-disable-next-line es/no-object-defineproperty -- safe
510 var defineProperty$2 = Object.defineProperty;
511
512 var defineGlobalProperty$3 = function (key, value) {
513 try {
514 defineProperty$2(global$7, key, { value: value, configurable: true, writable: true });
515 } catch (error) {
516 global$7[key] = value;
517 } return value;
518 };
519
520 var global$6 = global$a;
521 var defineGlobalProperty$2 = defineGlobalProperty$3;
522
523 var SHARED = '__core-js_shared__';
524 var store$3 = global$6[SHARED] || defineGlobalProperty$2(SHARED, {});
525
526 var sharedStore = store$3;
527
528 var store$2 = sharedStore;
529
530 (shared$3.exports = function (key, value) {
531 return store$2[key] || (store$2[key] = value !== undefined ? value : {});
532 })('versions', []).push({
533 version: '3.29.0',
534 mode: 'global',
535 copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
536 license: 'https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE',
537 source: 'https://github.com/zloirock/core-js'
538 });
539
540 var requireObjectCoercible = requireObjectCoercible$2;
541
542 var $Object$1 = Object;
543
544 // `ToObject` abstract operation
545 // https://tc39.es/ecma262/#sec-toobject
546 var toObject$4 = function (argument) {
547 return $Object$1(requireObjectCoercible(argument));
548 };
549
550 var uncurryThis$b = functionUncurryThis;
551 var toObject$3 = toObject$4;
552
553 var hasOwnProperty = uncurryThis$b({}.hasOwnProperty);
554
555 // `HasOwnProperty` abstract operation
556 // https://tc39.es/ecma262/#sec-hasownproperty
557 // eslint-disable-next-line es/no-object-hasown -- safe
558 var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
559 return hasOwnProperty(toObject$3(it), key);
560 };
561
562 var uncurryThis$a = functionUncurryThis;
563
564 var id = 0;
565 var postfix = Math.random();
566 var toString$1 = uncurryThis$a(1.0.toString);
567
568 var uid$2 = function (key) {
569 return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$1(++id + postfix, 36);
570 };
571
572 var global$5 = global$a;
573 var shared$2 = sharedExports;
574 var hasOwn$6 = hasOwnProperty_1;
575 var uid$1 = uid$2;
576 var NATIVE_SYMBOL = symbolConstructorDetection;
577 var USE_SYMBOL_AS_UID = useSymbolAsUid;
578
579 var Symbol$1 = global$5.Symbol;
580 var WellKnownSymbolsStore = shared$2('wks');
581 var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
582
583 var wellKnownSymbol$6 = function (name) {
584 if (!hasOwn$6(WellKnownSymbolsStore, name)) {
585 WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)
586 ? Symbol$1[name]
587 : createWellKnownSymbol('Symbol.' + name);
588 } return WellKnownSymbolsStore[name];
589 };
590
591 var call$2 = functionCall;
592 var isObject$5 = isObject$7;
593 var isSymbol$1 = isSymbol$2;
594 var getMethod = getMethod$1;
595 var ordinaryToPrimitive = ordinaryToPrimitive$1;
596 var wellKnownSymbol$5 = wellKnownSymbol$6;
597
598 var $TypeError$3 = TypeError;
599 var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
600
601 // `ToPrimitive` abstract operation
602 // https://tc39.es/ecma262/#sec-toprimitive
603 var toPrimitive$1 = function (input, pref) {
604 if (!isObject$5(input) || isSymbol$1(input)) return input;
605 var exoticToPrim = getMethod(input, TO_PRIMITIVE);
606 var result;
607 if (exoticToPrim) {
608 if (pref === undefined) pref = 'default';
609 result = call$2(exoticToPrim, input, pref);
610 if (!isObject$5(result) || isSymbol$1(result)) return result;
611 throw $TypeError$3("Can't convert object to primitive value");
612 }
613 if (pref === undefined) pref = 'number';
614 return ordinaryToPrimitive(input, pref);
615 };
616
617 var toPrimitive = toPrimitive$1;
618 var isSymbol = isSymbol$2;
619
620 // `ToPropertyKey` abstract operation
621 // https://tc39.es/ecma262/#sec-topropertykey
622 var toPropertyKey$3 = function (argument) {
623 var key = toPrimitive(argument, 'string');
624 return isSymbol(key) ? key : key + '';
625 };
626
627 var global$4 = global$a;
628 var isObject$4 = isObject$7;
629
630 var document$1 = global$4.document;
631 // typeof document.createElement is 'object' in old IE
632 var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
633
634 var documentCreateElement = function (it) {
635 return EXISTS$1 ? document$1.createElement(it) : {};
636 };
637
638 var DESCRIPTORS$7 = descriptors;
639 var fails$8 = fails$d;
640 var createElement = documentCreateElement;
641
642 // Thanks to IE8 for its funny defineProperty
643 var ie8DomDefine = !DESCRIPTORS$7 && !fails$8(function () {
644 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
645 return Object.defineProperty(createElement('div'), 'a', {
646 get: function () { return 7; }
647 }).a != 7;
648 });
649
650 var DESCRIPTORS$6 = descriptors;
651 var call$1 = functionCall;
652 var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
653 var createPropertyDescriptor$2 = createPropertyDescriptor$3;
654 var toIndexedObject$3 = toIndexedObject$4;
655 var toPropertyKey$2 = toPropertyKey$3;
656 var hasOwn$5 = hasOwnProperty_1;
657 var IE8_DOM_DEFINE$1 = ie8DomDefine;
658
659 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
660 var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
661
662 // `Object.getOwnPropertyDescriptor` method
663 // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
664 objectGetOwnPropertyDescriptor.f = DESCRIPTORS$6 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
665 O = toIndexedObject$3(O);
666 P = toPropertyKey$2(P);
667 if (IE8_DOM_DEFINE$1) try {
668 return $getOwnPropertyDescriptor$1(O, P);
669 } catch (error) { /* empty */ }
670 if (hasOwn$5(O, P)) return createPropertyDescriptor$2(!call$1(propertyIsEnumerableModule$1.f, O, P), O[P]);
671 };
672
673 var objectDefineProperty = {};
674
675 var DESCRIPTORS$5 = descriptors;
676 var fails$7 = fails$d;
677
678 // V8 ~ Chrome 36-
679 // https://bugs.chromium.org/p/v8/issues/detail?id=3334
680 var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$7(function () {
681 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
682 return Object.defineProperty(function () { /* empty */ }, 'prototype', {
683 value: 42,
684 writable: false
685 }).prototype != 42;
686 });
687
688 var isObject$3 = isObject$7;
689
690 var $String$1 = String;
691 var $TypeError$2 = TypeError;
692
693 // `Assert: Type(argument) is Object`
694 var anObject$2 = function (argument) {
695 if (isObject$3(argument)) return argument;
696 throw $TypeError$2($String$1(argument) + ' is not an object');
697 };
698
699 var DESCRIPTORS$4 = descriptors;
700 var IE8_DOM_DEFINE = ie8DomDefine;
701 var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
702 var anObject$1 = anObject$2;
703 var toPropertyKey$1 = toPropertyKey$3;
704
705 var $TypeError$1 = TypeError;
706 // eslint-disable-next-line es/no-object-defineproperty -- safe
707 var $defineProperty = Object.defineProperty;
708 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
709 var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
710 var ENUMERABLE = 'enumerable';
711 var CONFIGURABLE$1 = 'configurable';
712 var WRITABLE = 'writable';
713
714 // `Object.defineProperty` method
715 // https://tc39.es/ecma262/#sec-object.defineproperty
716 objectDefineProperty.f = DESCRIPTORS$4 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
717 anObject$1(O);
718 P = toPropertyKey$1(P);
719 anObject$1(Attributes);
720 if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
721 var current = $getOwnPropertyDescriptor(O, P);
722 if (current && current[WRITABLE]) {
723 O[P] = Attributes.value;
724 Attributes = {
725 configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
726 enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
727 writable: false
728 };
729 }
730 } return $defineProperty(O, P, Attributes);
731 } : $defineProperty : function defineProperty(O, P, Attributes) {
732 anObject$1(O);
733 P = toPropertyKey$1(P);
734 anObject$1(Attributes);
735 if (IE8_DOM_DEFINE) try {
736 return $defineProperty(O, P, Attributes);
737 } catch (error) { /* empty */ }
738 if ('get' in Attributes || 'set' in Attributes) throw $TypeError$1('Accessors not supported');
739 if ('value' in Attributes) O[P] = Attributes.value;
740 return O;
741 };
742
743 var DESCRIPTORS$3 = descriptors;
744 var definePropertyModule$3 = objectDefineProperty;
745 var createPropertyDescriptor$1 = createPropertyDescriptor$3;
746
747 var createNonEnumerableProperty$2 = DESCRIPTORS$3 ? function (object, key, value) {
748 return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
749 } : function (object, key, value) {
750 object[key] = value;
751 return object;
752 };
753
754 var makeBuiltInExports = {};
755 var makeBuiltIn$2 = {
756 get exports(){ return makeBuiltInExports; },
757 set exports(v){ makeBuiltInExports = v; },
758 };
759
760 var DESCRIPTORS$2 = descriptors;
761 var hasOwn$4 = hasOwnProperty_1;
762
763 var FunctionPrototype = Function.prototype;
764 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
765 var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
766
767 var EXISTS = hasOwn$4(FunctionPrototype, 'name');
768 // additional protection from minified / mangled / dropped function names
769 var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
770 var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
771
772 var functionName = {
773 EXISTS: EXISTS,
774 PROPER: PROPER,
775 CONFIGURABLE: CONFIGURABLE
776 };
777
778 var uncurryThis$9 = functionUncurryThis;
779 var isCallable$6 = isCallable$c;
780 var store$1 = sharedStore;
781
782 var functionToString = uncurryThis$9(Function.toString);
783
784 // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
785 if (!isCallable$6(store$1.inspectSource)) {
786 store$1.inspectSource = function (it) {
787 return functionToString(it);
788 };
789 }
790
791 var inspectSource$2 = store$1.inspectSource;
792
793 var global$3 = global$a;
794 var isCallable$5 = isCallable$c;
795
796 var WeakMap$1 = global$3.WeakMap;
797
798 var weakMapBasicDetection = isCallable$5(WeakMap$1) && /native code/.test(String(WeakMap$1));
799
800 var shared$1 = sharedExports;
801 var uid = uid$2;
802
803 var keys = shared$1('keys');
804
805 var sharedKey$1 = function (key) {
806 return keys[key] || (keys[key] = uid(key));
807 };
808
809 var hiddenKeys$3 = {};
810
811 var NATIVE_WEAK_MAP = weakMapBasicDetection;
812 var global$2 = global$a;
813 var isObject$2 = isObject$7;
814 var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
815 var hasOwn$3 = hasOwnProperty_1;
816 var shared = sharedStore;
817 var sharedKey = sharedKey$1;
818 var hiddenKeys$2 = hiddenKeys$3;
819
820 var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
821 var TypeError$1 = global$2.TypeError;
822 var WeakMap = global$2.WeakMap;
823 var set, get, has;
824
825 var enforce = function (it) {
826 return has(it) ? get(it) : set(it, {});
827 };
828
829 var getterFor = function (TYPE) {
830 return function (it) {
831 var state;
832 if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
833 throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
834 } return state;
835 };
836 };
837
838 if (NATIVE_WEAK_MAP || shared.state) {
839 var store = shared.state || (shared.state = new WeakMap());
840 /* eslint-disable no-self-assign -- prototype methods protection */
841 store.get = store.get;
842 store.has = store.has;
843 store.set = store.set;
844 /* eslint-enable no-self-assign -- prototype methods protection */
845 set = function (it, metadata) {
846 if (store.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
847 metadata.facade = it;
848 store.set(it, metadata);
849 return metadata;
850 };
851 get = function (it) {
852 return store.get(it) || {};
853 };
854 has = function (it) {
855 return store.has(it);
856 };
857 } else {
858 var STATE = sharedKey('state');
859 hiddenKeys$2[STATE] = true;
860 set = function (it, metadata) {
861 if (hasOwn$3(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
862 metadata.facade = it;
863 createNonEnumerableProperty$1(it, STATE, metadata);
864 return metadata;
865 };
866 get = function (it) {
867 return hasOwn$3(it, STATE) ? it[STATE] : {};
868 };
869 has = function (it) {
870 return hasOwn$3(it, STATE);
871 };
872 }
873
874 var internalState = {
875 set: set,
876 get: get,
877 has: has,
878 enforce: enforce,
879 getterFor: getterFor
880 };
881
882 var uncurryThis$8 = functionUncurryThis;
883 var fails$6 = fails$d;
884 var isCallable$4 = isCallable$c;
885 var hasOwn$2 = hasOwnProperty_1;
886 var DESCRIPTORS$1 = descriptors;
887 var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
888 var inspectSource$1 = inspectSource$2;
889 var InternalStateModule = internalState;
890
891 var enforceInternalState = InternalStateModule.enforce;
892 var getInternalState = InternalStateModule.get;
893 var $String = String;
894 // eslint-disable-next-line es/no-object-defineproperty -- safe
895 var defineProperty$1 = Object.defineProperty;
896 var stringSlice = uncurryThis$8(''.slice);
897 var replace = uncurryThis$8(''.replace);
898 var join = uncurryThis$8([].join);
899
900 var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$6(function () {
901 return defineProperty$1(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
902 });
903
904 var TEMPLATE = String(String).split('String');
905
906 var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
907 if (stringSlice($String(name), 0, 7) === 'Symbol(') {
908 name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
909 }
910 if (options && options.getter) name = 'get ' + name;
911 if (options && options.setter) name = 'set ' + name;
912 if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
913 if (DESCRIPTORS$1) defineProperty$1(value, 'name', { value: name, configurable: true });
914 else value.name = name;
915 }
916 if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
917 defineProperty$1(value, 'length', { value: options.arity });
918 }
919 try {
920 if (options && hasOwn$2(options, 'constructor') && options.constructor) {
921 if (DESCRIPTORS$1) defineProperty$1(value, 'prototype', { writable: false });
922 // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
923 } else if (value.prototype) value.prototype = undefined;
924 } catch (error) { /* empty */ }
925 var state = enforceInternalState(value);
926 if (!hasOwn$2(state, 'source')) {
927 state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
928 } return value;
929 };
930
931 // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
932 // eslint-disable-next-line no-extend-native -- required
933 Function.prototype.toString = makeBuiltIn$1(function toString() {
934 return isCallable$4(this) && getInternalState(this).source || inspectSource$1(this);
935 }, 'toString');
936
937 var isCallable$3 = isCallable$c;
938 var definePropertyModule$2 = objectDefineProperty;
939 var makeBuiltIn = makeBuiltInExports;
940 var defineGlobalProperty$1 = defineGlobalProperty$3;
941
942 var defineBuiltIn$2 = function (O, key, value, options) {
943 if (!options) options = {};
944 var simple = options.enumerable;
945 var name = options.name !== undefined ? options.name : key;
946 if (isCallable$3(value)) makeBuiltIn(value, name, options);
947 if (options.global) {
948 if (simple) O[key] = value;
949 else defineGlobalProperty$1(key, value);
950 } else {
951 try {
952 if (!options.unsafe) delete O[key];
953 else if (O[key]) simple = true;
954 } catch (error) { /* empty */ }
955 if (simple) O[key] = value;
956 else definePropertyModule$2.f(O, key, {
957 value: value,
958 enumerable: false,
959 configurable: !options.nonConfigurable,
960 writable: !options.nonWritable
961 });
962 } return O;
963 };
964
965 var objectGetOwnPropertyNames = {};
966
967 var ceil = Math.ceil;
968 var floor = Math.floor;
969
970 // `Math.trunc` method
971 // https://tc39.es/ecma262/#sec-math.trunc
972 // eslint-disable-next-line es/no-math-trunc -- safe
973 var mathTrunc = Math.trunc || function trunc(x) {
974 var n = +x;
975 return (n > 0 ? floor : ceil)(n);
976 };
977
978 var trunc = mathTrunc;
979
980 // `ToIntegerOrInfinity` abstract operation
981 // https://tc39.es/ecma262/#sec-tointegerorinfinity
982 var toIntegerOrInfinity$2 = function (argument) {
983 var number = +argument;
984 // eslint-disable-next-line no-self-compare -- NaN check
985 return number !== number || number === 0 ? 0 : trunc(number);
986 };
987
988 var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
989
990 var max = Math.max;
991 var min$1 = Math.min;
992
993 // Helper for a popular repeating case of the spec:
994 // Let integer be ? ToInteger(index).
995 // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
996 var toAbsoluteIndex$1 = function (index, length) {
997 var integer = toIntegerOrInfinity$1(index);
998 return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
999 };
1000
1001 var toIntegerOrInfinity = toIntegerOrInfinity$2;
1002
1003 var min = Math.min;
1004
1005 // `ToLength` abstract operation
1006 // https://tc39.es/ecma262/#sec-tolength
1007 var toLength$1 = function (argument) {
1008 return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1009 };
1010
1011 var toLength = toLength$1;
1012
1013 // `LengthOfArrayLike` abstract operation
1014 // https://tc39.es/ecma262/#sec-lengthofarraylike
1015 var lengthOfArrayLike$3 = function (obj) {
1016 return toLength(obj.length);
1017 };
1018
1019 var toIndexedObject$2 = toIndexedObject$4;
1020 var toAbsoluteIndex = toAbsoluteIndex$1;
1021 var lengthOfArrayLike$2 = lengthOfArrayLike$3;
1022
1023 // `Array.prototype.{ indexOf, includes }` methods implementation
1024 var createMethod$1 = function (IS_INCLUDES) {
1025 return function ($this, el, fromIndex) {
1026 var O = toIndexedObject$2($this);
1027 var length = lengthOfArrayLike$2(O);
1028 var index = toAbsoluteIndex(fromIndex, length);
1029 var value;
1030 // Array#includes uses SameValueZero equality algorithm
1031 // eslint-disable-next-line no-self-compare -- NaN check
1032 if (IS_INCLUDES && el != el) while (length > index) {
1033 value = O[index++];
1034 // eslint-disable-next-line no-self-compare -- NaN check
1035 if (value != value) return true;
1036 // Array#indexOf ignores holes, Array#includes - not
1037 } else for (;length > index; index++) {
1038 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
1039 } return !IS_INCLUDES && -1;
1040 };
1041 };
1042
1043 var arrayIncludes = {
1044 // `Array.prototype.includes` method
1045 // https://tc39.es/ecma262/#sec-array.prototype.includes
1046 includes: createMethod$1(true),
1047 // `Array.prototype.indexOf` method
1048 // https://tc39.es/ecma262/#sec-array.prototype.indexof
1049 indexOf: createMethod$1(false)
1050 };
1051
1052 var uncurryThis$7 = functionUncurryThis;
1053 var hasOwn$1 = hasOwnProperty_1;
1054 var toIndexedObject$1 = toIndexedObject$4;
1055 var indexOf = arrayIncludes.indexOf;
1056 var hiddenKeys$1 = hiddenKeys$3;
1057
1058 var push$1 = uncurryThis$7([].push);
1059
1060 var objectKeysInternal = function (object, names) {
1061 var O = toIndexedObject$1(object);
1062 var i = 0;
1063 var result = [];
1064 var key;
1065 for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push$1(result, key);
1066 // Don't enum bug & hidden keys
1067 while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
1068 ~indexOf(result, key) || push$1(result, key);
1069 }
1070 return result;
1071 };
1072
1073 // IE8- don't enum bug keys
1074 var enumBugKeys$2 = [
1075 'constructor',
1076 'hasOwnProperty',
1077 'isPrototypeOf',
1078 'propertyIsEnumerable',
1079 'toLocaleString',
1080 'toString',
1081 'valueOf'
1082 ];
1083
1084 var internalObjectKeys$1 = objectKeysInternal;
1085 var enumBugKeys$1 = enumBugKeys$2;
1086
1087 var hiddenKeys = enumBugKeys$1.concat('length', 'prototype');
1088
1089 // `Object.getOwnPropertyNames` method
1090 // https://tc39.es/ecma262/#sec-object.getownpropertynames
1091 // eslint-disable-next-line es/no-object-getownpropertynames -- safe
1092 objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1093 return internalObjectKeys$1(O, hiddenKeys);
1094 };
1095
1096 var objectGetOwnPropertySymbols = {};
1097
1098 // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1099 objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1100
1101 var getBuiltIn$1 = getBuiltIn$3;
1102 var uncurryThis$6 = functionUncurryThis;
1103 var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1104 var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
1105 var anObject = anObject$2;
1106
1107 var concat$1 = uncurryThis$6([].concat);
1108
1109 // all object keys, includes non-enumerable and symbols
1110 var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
1111 var keys = getOwnPropertyNamesModule.f(anObject(it));
1112 var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
1113 return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
1114 };
1115
1116 var hasOwn = hasOwnProperty_1;
1117 var ownKeys = ownKeys$1;
1118 var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1119 var definePropertyModule$1 = objectDefineProperty;
1120
1121 var copyConstructorProperties$1 = function (target, source, exceptions) {
1122 var keys = ownKeys(source);
1123 var defineProperty = definePropertyModule$1.f;
1124 var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1125 for (var i = 0; i < keys.length; i++) {
1126 var key = keys[i];
1127 if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
1128 defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1129 }
1130 }
1131 };
1132
1133 var fails$5 = fails$d;
1134 var isCallable$2 = isCallable$c;
1135
1136 var replacement = /#|\.prototype\./;
1137
1138 var isForced$1 = function (feature, detection) {
1139 var value = data[normalize(feature)];
1140 return value == POLYFILL ? true
1141 : value == NATIVE ? false
1142 : isCallable$2(detection) ? fails$5(detection)
1143 : !!detection;
1144 };
1145
1146 var normalize = isForced$1.normalize = function (string) {
1147 return String(string).replace(replacement, '.').toLowerCase();
1148 };
1149
1150 var data = isForced$1.data = {};
1151 var NATIVE = isForced$1.NATIVE = 'N';
1152 var POLYFILL = isForced$1.POLYFILL = 'P';
1153
1154 var isForced_1 = isForced$1;
1155
1156 var global$1 = global$a;
1157 var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
1158 var createNonEnumerableProperty = createNonEnumerableProperty$2;
1159 var defineBuiltIn$1 = defineBuiltIn$2;
1160 var defineGlobalProperty = defineGlobalProperty$3;
1161 var copyConstructorProperties = copyConstructorProperties$1;
1162 var isForced = isForced_1;
1163
1164 /*
1165 options.target - name of the target object
1166 options.global - target is the global object
1167 options.stat - export as static methods of target
1168 options.proto - export as prototype methods of target
1169 options.real - real prototype method for the `pure` version
1170 options.forced - export even if the native feature is available
1171 options.bind - bind methods to the target, required for the `pure` version
1172 options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
1173 options.unsafe - use the simple assignment of property instead of delete + defineProperty
1174 options.sham - add a flag to not completely full polyfills
1175 options.enumerable - export as enumerable property
1176 options.dontCallGetSet - prevent calling a getter on target
1177 options.name - the .name of the function if it does not match the key
1178 */
1179 var _export = function (options, source) {
1180 var TARGET = options.target;
1181 var GLOBAL = options.global;
1182 var STATIC = options.stat;
1183 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1184 if (GLOBAL) {
1185 target = global$1;
1186 } else if (STATIC) {
1187 target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
1188 } else {
1189 target = (global$1[TARGET] || {}).prototype;
1190 }
1191 if (target) for (key in source) {
1192 sourceProperty = source[key];
1193 if (options.dontCallGetSet) {
1194 descriptor = getOwnPropertyDescriptor(target, key);
1195 targetProperty = descriptor && descriptor.value;
1196 } else targetProperty = target[key];
1197 FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1198 // contained in target
1199 if (!FORCED && targetProperty !== undefined) {
1200 if (typeof sourceProperty == typeof targetProperty) continue;
1201 copyConstructorProperties(sourceProperty, targetProperty);
1202 }
1203 // add a flag to not completely full polyfills
1204 if (options.sham || (targetProperty && targetProperty.sham)) {
1205 createNonEnumerableProperty(sourceProperty, 'sham', true);
1206 }
1207 defineBuiltIn$1(target, key, sourceProperty, options);
1208 }
1209 };
1210
1211 var internalObjectKeys = objectKeysInternal;
1212 var enumBugKeys = enumBugKeys$2;
1213
1214 // `Object.keys` method
1215 // https://tc39.es/ecma262/#sec-object.keys
1216 // eslint-disable-next-line es/no-object-keys -- safe
1217 var objectKeys$1 = Object.keys || function keys(O) {
1218 return internalObjectKeys(O, enumBugKeys);
1219 };
1220
1221 var DESCRIPTORS = descriptors;
1222 var uncurryThis$5 = functionUncurryThis;
1223 var call = functionCall;
1224 var fails$4 = fails$d;
1225 var objectKeys = objectKeys$1;
1226 var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1227 var propertyIsEnumerableModule = objectPropertyIsEnumerable;
1228 var toObject$2 = toObject$4;
1229 var IndexedObject$2 = indexedObject;
1230
1231 // eslint-disable-next-line es/no-object-assign -- safe
1232 var $assign = Object.assign;
1233 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1234 var defineProperty = Object.defineProperty;
1235 var concat = uncurryThis$5([].concat);
1236
1237 // `Object.assign` method
1238 // https://tc39.es/ecma262/#sec-object.assign
1239 var objectAssign = !$assign || fails$4(function () {
1240 // should have correct order of operations (Edge bug)
1241 if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
1242 enumerable: true,
1243 get: function () {
1244 defineProperty(this, 'b', {
1245 value: 3,
1246 enumerable: false
1247 });
1248 }
1249 }), { b: 2 })).b !== 1) return true;
1250 // should work with symbols and should have deterministic property order (V8 bug)
1251 var A = {};
1252 var B = {};
1253 // eslint-disable-next-line es/no-symbol -- safe
1254 var symbol = Symbol();
1255 var alphabet = 'abcdefghijklmnopqrst';
1256 A[symbol] = 7;
1257 alphabet.split('').forEach(function (chr) { B[chr] = chr; });
1258 return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet;
1259 }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
1260 var T = toObject$2(target);
1261 var argumentsLength = arguments.length;
1262 var index = 1;
1263 var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1264 var propertyIsEnumerable = propertyIsEnumerableModule.f;
1265 while (argumentsLength > index) {
1266 var S = IndexedObject$2(arguments[index++]);
1267 var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
1268 var length = keys.length;
1269 var j = 0;
1270 var key;
1271 while (length > j) {
1272 key = keys[j++];
1273 if (!DESCRIPTORS || call(propertyIsEnumerable, S, key)) T[key] = S[key];
1274 }
1275 } return T;
1276 } : $assign;
1277
1278 var $$3 = _export;
1279 var assign = objectAssign;
1280
1281 // `Object.assign` method
1282 // https://tc39.es/ecma262/#sec-object.assign
1283 // eslint-disable-next-line es/no-object-assign -- required for testing
1284 $$3({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1285 assign: assign
1286 });
1287
1288 var classof$3 = classofRaw$2;
1289
1290 // `IsArray` abstract operation
1291 // https://tc39.es/ecma262/#sec-isarray
1292 // eslint-disable-next-line es/no-array-isarray -- safe
1293 var isArray$2 = Array.isArray || function isArray(argument) {
1294 return classof$3(argument) == 'Array';
1295 };
1296
1297 var $TypeError = TypeError;
1298 var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
1299
1300 var doesNotExceedSafeInteger$1 = function (it) {
1301 if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
1302 return it;
1303 };
1304
1305 var toPropertyKey = toPropertyKey$3;
1306 var definePropertyModule = objectDefineProperty;
1307 var createPropertyDescriptor = createPropertyDescriptor$3;
1308
1309 var createProperty$1 = function (object, key, value) {
1310 var propertyKey = toPropertyKey(key);
1311 if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
1312 else object[propertyKey] = value;
1313 };
1314
1315 var wellKnownSymbol$4 = wellKnownSymbol$6;
1316
1317 var TO_STRING_TAG$1 = wellKnownSymbol$4('toStringTag');
1318 var test = {};
1319
1320 test[TO_STRING_TAG$1] = 'z';
1321
1322 var toStringTagSupport = String(test) === '[object z]';
1323
1324 var TO_STRING_TAG_SUPPORT$2 = toStringTagSupport;
1325 var isCallable$1 = isCallable$c;
1326 var classofRaw$1 = classofRaw$2;
1327 var wellKnownSymbol$3 = wellKnownSymbol$6;
1328
1329 var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
1330 var $Object = Object;
1331
1332 // ES3 wrong here
1333 var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) == 'Arguments';
1334
1335 // fallback for IE11 Script Access Denied error
1336 var tryGet = function (it, key) {
1337 try {
1338 return it[key];
1339 } catch (error) { /* empty */ }
1340 };
1341
1342 // getting tag from ES6+ `Object.prototype.toString`
1343 var classof$2 = TO_STRING_TAG_SUPPORT$2 ? classofRaw$1 : function (it) {
1344 var O, tag, result;
1345 return it === undefined ? 'Undefined' : it === null ? 'Null'
1346 // @@toStringTag case
1347 : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1348 // builtinTag case
1349 : CORRECT_ARGUMENTS ? classofRaw$1(O)
1350 // ES3 arguments fallback
1351 : (result = classofRaw$1(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
1352 };
1353
1354 var uncurryThis$4 = functionUncurryThis;
1355 var fails$3 = fails$d;
1356 var isCallable = isCallable$c;
1357 var classof$1 = classof$2;
1358 var getBuiltIn = getBuiltIn$3;
1359 var inspectSource = inspectSource$2;
1360
1361 var noop = function () { /* empty */ };
1362 var empty = [];
1363 var construct = getBuiltIn('Reflect', 'construct');
1364 var constructorRegExp = /^\s*(?:class|function)\b/;
1365 var exec = uncurryThis$4(constructorRegExp.exec);
1366 var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
1367
1368 var isConstructorModern = function isConstructor(argument) {
1369 if (!isCallable(argument)) return false;
1370 try {
1371 construct(noop, empty, argument);
1372 return true;
1373 } catch (error) {
1374 return false;
1375 }
1376 };
1377
1378 var isConstructorLegacy = function isConstructor(argument) {
1379 if (!isCallable(argument)) return false;
1380 switch (classof$1(argument)) {
1381 case 'AsyncFunction':
1382 case 'GeneratorFunction':
1383 case 'AsyncGeneratorFunction': return false;
1384 }
1385 try {
1386 // we can't check .prototype since constructors produced by .bind haven't it
1387 // `Function#toString` throws on some built-it function in some legacy engines
1388 // (for example, `DOMQuad` and similar in FF41-)
1389 return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
1390 } catch (error) {
1391 return true;
1392 }
1393 };
1394
1395 isConstructorLegacy.sham = true;
1396
1397 // `IsConstructor` abstract operation
1398 // https://tc39.es/ecma262/#sec-isconstructor
1399 var isConstructor$1 = !construct || fails$3(function () {
1400 var called;
1401 return isConstructorModern(isConstructorModern.call)
1402 || !isConstructorModern(Object)
1403 || !isConstructorModern(function () { called = true; })
1404 || called;
1405 }) ? isConstructorLegacy : isConstructorModern;
1406
1407 var isArray$1 = isArray$2;
1408 var isConstructor = isConstructor$1;
1409 var isObject$1 = isObject$7;
1410 var wellKnownSymbol$2 = wellKnownSymbol$6;
1411
1412 var SPECIES$1 = wellKnownSymbol$2('species');
1413 var $Array = Array;
1414
1415 // a part of `ArraySpeciesCreate` abstract operation
1416 // https://tc39.es/ecma262/#sec-arrayspeciescreate
1417 var arraySpeciesConstructor$1 = function (originalArray) {
1418 var C;
1419 if (isArray$1(originalArray)) {
1420 C = originalArray.constructor;
1421 // cross-realm fallback
1422 if (isConstructor(C) && (C === $Array || isArray$1(C.prototype))) C = undefined;
1423 else if (isObject$1(C)) {
1424 C = C[SPECIES$1];
1425 if (C === null) C = undefined;
1426 }
1427 } return C === undefined ? $Array : C;
1428 };
1429
1430 var arraySpeciesConstructor = arraySpeciesConstructor$1;
1431
1432 // `ArraySpeciesCreate` abstract operation
1433 // https://tc39.es/ecma262/#sec-arrayspeciescreate
1434 var arraySpeciesCreate$2 = function (originalArray, length) {
1435 return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
1436 };
1437
1438 var fails$2 = fails$d;
1439 var wellKnownSymbol$1 = wellKnownSymbol$6;
1440 var V8_VERSION$1 = engineV8Version;
1441
1442 var SPECIES = wellKnownSymbol$1('species');
1443
1444 var arrayMethodHasSpeciesSupport$2 = function (METHOD_NAME) {
1445 // We can't use this feature detection in V8 since it causes
1446 // deoptimization and serious performance degradation
1447 // https://github.com/zloirock/core-js/issues/677
1448 return V8_VERSION$1 >= 51 || !fails$2(function () {
1449 var array = [];
1450 var constructor = array.constructor = {};
1451 constructor[SPECIES] = function () {
1452 return { foo: 1 };
1453 };
1454 return array[METHOD_NAME](Boolean).foo !== 1;
1455 });
1456 };
1457
1458 var $$2 = _export;
1459 var fails$1 = fails$d;
1460 var isArray = isArray$2;
1461 var isObject = isObject$7;
1462 var toObject$1 = toObject$4;
1463 var lengthOfArrayLike$1 = lengthOfArrayLike$3;
1464 var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
1465 var createProperty = createProperty$1;
1466 var arraySpeciesCreate$1 = arraySpeciesCreate$2;
1467 var arrayMethodHasSpeciesSupport$1 = arrayMethodHasSpeciesSupport$2;
1468 var wellKnownSymbol = wellKnownSymbol$6;
1469 var V8_VERSION = engineV8Version;
1470
1471 var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
1472
1473 // We can't use this feature detection in V8 since it causes
1474 // deoptimization and serious performance degradation
1475 // https://github.com/zloirock/core-js/issues/679
1476 var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails$1(function () {
1477 var array = [];
1478 array[IS_CONCAT_SPREADABLE] = false;
1479 return array.concat()[0] !== array;
1480 });
1481
1482 var isConcatSpreadable = function (O) {
1483 if (!isObject(O)) return false;
1484 var spreadable = O[IS_CONCAT_SPREADABLE];
1485 return spreadable !== undefined ? !!spreadable : isArray(O);
1486 };
1487
1488 var FORCED$1 = !IS_CONCAT_SPREADABLE_SUPPORT || !arrayMethodHasSpeciesSupport$1('concat');
1489
1490 // `Array.prototype.concat` method
1491 // https://tc39.es/ecma262/#sec-array.prototype.concat
1492 // with adding support of @@isConcatSpreadable and @@species
1493 $$2({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
1494 // eslint-disable-next-line no-unused-vars -- required for `.length`
1495 concat: function concat(arg) {
1496 var O = toObject$1(this);
1497 var A = arraySpeciesCreate$1(O, 0);
1498 var n = 0;
1499 var i, k, length, len, E;
1500 for (i = -1, length = arguments.length; i < length; i++) {
1501 E = i === -1 ? O : arguments[i];
1502 if (isConcatSpreadable(E)) {
1503 len = lengthOfArrayLike$1(E);
1504 doesNotExceedSafeInteger(n + len);
1505 for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
1506 } else {
1507 doesNotExceedSafeInteger(n + 1);
1508 createProperty(A, n++, E);
1509 }
1510 }
1511 A.length = n;
1512 return A;
1513 }
1514 });
1515
1516 var classofRaw = classofRaw$2;
1517 var uncurryThis$3 = functionUncurryThis;
1518
1519 var functionUncurryThisClause = function (fn) {
1520 // Nashorn bug:
1521 // https://github.com/zloirock/core-js/issues/1128
1522 // https://github.com/zloirock/core-js/issues/1130
1523 if (classofRaw(fn) === 'Function') return uncurryThis$3(fn);
1524 };
1525
1526 var uncurryThis$2 = functionUncurryThisClause;
1527 var aCallable = aCallable$2;
1528 var NATIVE_BIND = functionBindNative;
1529
1530 var bind$1 = uncurryThis$2(uncurryThis$2.bind);
1531
1532 // optional / simple context binding
1533 var functionBindContext = function (fn, that) {
1534 aCallable(fn);
1535 return that === undefined ? fn : NATIVE_BIND ? bind$1(fn, that) : function (/* ...args */) {
1536 return fn.apply(that, arguments);
1537 };
1538 };
1539
1540 var bind = functionBindContext;
1541 var uncurryThis$1 = functionUncurryThis;
1542 var IndexedObject$1 = indexedObject;
1543 var toObject = toObject$4;
1544 var lengthOfArrayLike = lengthOfArrayLike$3;
1545 var arraySpeciesCreate = arraySpeciesCreate$2;
1546
1547 var push = uncurryThis$1([].push);
1548
1549 // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
1550 var createMethod = function (TYPE) {
1551 var IS_MAP = TYPE == 1;
1552 var IS_FILTER = TYPE == 2;
1553 var IS_SOME = TYPE == 3;
1554 var IS_EVERY = TYPE == 4;
1555 var IS_FIND_INDEX = TYPE == 6;
1556 var IS_FILTER_REJECT = TYPE == 7;
1557 var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
1558 return function ($this, callbackfn, that, specificCreate) {
1559 var O = toObject($this);
1560 var self = IndexedObject$1(O);
1561 var boundFunction = bind(callbackfn, that);
1562 var length = lengthOfArrayLike(self);
1563 var index = 0;
1564 var create = specificCreate || arraySpeciesCreate;
1565 var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
1566 var value, result;
1567 for (;length > index; index++) if (NO_HOLES || index in self) {
1568 value = self[index];
1569 result = boundFunction(value, index, O);
1570 if (TYPE) {
1571 if (IS_MAP) target[index] = result; // map
1572 else if (result) switch (TYPE) {
1573 case 3: return true; // some
1574 case 5: return value; // find
1575 case 6: return index; // findIndex
1576 case 2: push(target, value); // filter
1577 } else switch (TYPE) {
1578 case 4: return false; // every
1579 case 7: push(target, value); // filterReject
1580 }
1581 }
1582 }
1583 return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
1584 };
1585 };
1586
1587 var arrayIteration = {
1588 // `Array.prototype.forEach` method
1589 // https://tc39.es/ecma262/#sec-array.prototype.foreach
1590 forEach: createMethod(0),
1591 // `Array.prototype.map` method
1592 // https://tc39.es/ecma262/#sec-array.prototype.map
1593 map: createMethod(1),
1594 // `Array.prototype.filter` method
1595 // https://tc39.es/ecma262/#sec-array.prototype.filter
1596 filter: createMethod(2),
1597 // `Array.prototype.some` method
1598 // https://tc39.es/ecma262/#sec-array.prototype.some
1599 some: createMethod(3),
1600 // `Array.prototype.every` method
1601 // https://tc39.es/ecma262/#sec-array.prototype.every
1602 every: createMethod(4),
1603 // `Array.prototype.find` method
1604 // https://tc39.es/ecma262/#sec-array.prototype.find
1605 find: createMethod(5),
1606 // `Array.prototype.findIndex` method
1607 // https://tc39.es/ecma262/#sec-array.prototype.findIndex
1608 findIndex: createMethod(6),
1609 // `Array.prototype.filterReject` method
1610 // https://github.com/tc39/proposal-array-filtering
1611 filterReject: createMethod(7)
1612 };
1613
1614 var $$1 = _export;
1615 var $filter = arrayIteration.filter;
1616 var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$2;
1617
1618 var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');
1619
1620 // `Array.prototype.filter` method
1621 // https://tc39.es/ecma262/#sec-array.prototype.filter
1622 // with adding support of @@species
1623 $$1({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1624 filter: function filter(callbackfn /* , thisArg */) {
1625 return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
1626 }
1627 });
1628
1629 var TO_STRING_TAG_SUPPORT$1 = toStringTagSupport;
1630 var classof = classof$2;
1631
1632 // `Object.prototype.toString` method implementation
1633 // https://tc39.es/ecma262/#sec-object.prototype.tostring
1634 var objectToString = TO_STRING_TAG_SUPPORT$1 ? {}.toString : function toString() {
1635 return '[object ' + classof(this) + ']';
1636 };
1637
1638 var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1639 var defineBuiltIn = defineBuiltIn$2;
1640 var toString = objectToString;
1641
1642 // `Object.prototype.toString` method
1643 // https://tc39.es/ecma262/#sec-object.prototype.tostring
1644 if (!TO_STRING_TAG_SUPPORT) {
1645 defineBuiltIn(Object.prototype, 'toString', toString, { unsafe: true });
1646 }
1647
1648 var fails = fails$d;
1649
1650 var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
1651 var method = [][METHOD_NAME];
1652 return !!method && fails(function () {
1653 // eslint-disable-next-line no-useless-call -- required for testing
1654 method.call(null, argument || function () { return 1; }, 1);
1655 });
1656 };
1657
1658 var $ = _export;
1659 var uncurryThis = functionUncurryThis;
1660 var IndexedObject = indexedObject;
1661 var toIndexedObject = toIndexedObject$4;
1662 var arrayMethodIsStrict = arrayMethodIsStrict$1;
1663
1664 var nativeJoin = uncurryThis([].join);
1665
1666 var ES3_STRINGS = IndexedObject != Object;
1667 var FORCED = ES3_STRINGS || !arrayMethodIsStrict('join', ',');
1668
1669 // `Array.prototype.join` method
1670 // https://tc39.es/ecma262/#sec-array.prototype.join
1671 $({ target: 'Array', proto: true, forced: FORCED }, {
1672 join: function join(separator) {
1673 return nativeJoin(toIndexedObject(this), separator === undefined ? ',' : separator);
1674 }
1675 });
1676
1677 /**
1678 * @author: YL
1679 * @update: zhixin wen <wenzhixin2010@gmail.com>
1680 */
1681
1682 var Utils = $$4.fn.bootstrapTable.utils;
1683 Object.assign($$4.fn.bootstrapTable.defaults, {
1684 treeEnable: false,
1685 treeShowField: null,
1686 idField: 'id',
1687 parentIdField: 'pid',
1688 rootParentId: null
1689 });
1690 $$4.BootstrapTable = /*#__PURE__*/function (_$$BootstrapTable) {
1691 _inherits(_class, _$$BootstrapTable);
1692 var _super = _createSuper(_class);
1693 function _class() {
1694 _classCallCheck(this, _class);
1695 return _super.apply(this, arguments);
1696 }
1697 _createClass(_class, [{
1698 key: "init",
1699 value: function init() {
1700 var _get2;
1701 this._rowStyle = this.options.rowStyle;
1702 for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
1703 args[_key] = arguments[_key];
1704 }
1705 (_get2 = _get(_getPrototypeOf(_class.prototype), "init", this)).call.apply(_get2, [this].concat(args));
1706 }
1707 }, {
1708 key: "initHeader",
1709 value: function initHeader() {
1710 var _get3;
1711 for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
1712 args[_key2] = arguments[_key2];
1713 }
1714 (_get3 = _get(_getPrototypeOf(_class.prototype), "initHeader", this)).call.apply(_get3, [this].concat(args));
1715 var treeShowField = this.options.treeShowField;
1716 if (treeShowField) {
1717 var _iterator = _createForOfIteratorHelper(this.header.fields),
1718 _step;
1719 try {
1720 for (_iterator.s(); !(_step = _iterator.n()).done;) {
1721 var field = _step.value;
1722 if (treeShowField === field) {
1723 this.treeEnable = true;
1724 break;
1725 }
1726 }
1727 } catch (err) {
1728 _iterator.e(err);
1729 } finally {
1730 _iterator.f();
1731 }
1732 }
1733 }
1734 }, {
1735 key: "initBody",
1736 value: function initBody() {
1737 var _get4;
1738 if (this.treeEnable) {
1739 this.options.virtualScroll = false;
1740 }
1741 for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
1742 args[_key3] = arguments[_key3];
1743 }
1744 (_get4 = _get(_getPrototypeOf(_class.prototype), "initBody", this)).call.apply(_get4, [this].concat(args));
1745 }
1746 }, {
1747 key: "initTr",
1748 value: function initTr(item, idx, data, parentDom) {
1749 var _this = this;
1750 var nodes = data.filter(function (it) {
1751 return item[_this.options.idField] === it[_this.options.parentIdField];
1752 });
1753 parentDom.append(_get(_getPrototypeOf(_class.prototype), "initRow", this).call(this, item, idx, data, parentDom));
1754
1755 // init sub node
1756 var len = nodes.length - 1;
1757 for (var i = 0; i <= len; i++) {
1758 var node = nodes[i];
1759 var defaultItem = Utils.extend(true, {}, item);
1760 node._level = defaultItem._level + 1;
1761 node._parent = defaultItem;
1762 if (i === len) {
1763 node._last = 1;
1764 }
1765 // jquery.treegrid.js
1766 this.options.rowStyle = function (item, idx) {
1767 var res = _this._rowStyle(item, idx);
1768 var id = item[_this.options.idField] ? item[_this.options.idField] : 0;
1769 var pid = item[_this.options.parentIdField] ? item[_this.options.parentIdField] : 0;
1770 res.classes = [res.classes || '', "treegrid-".concat(id), "treegrid-parent-".concat(pid)].join(' ');
1771 return res;
1772 };
1773 this.initTr(node, $$4.inArray(node, data), data, parentDom);
1774 }
1775 }
1776 }, {
1777 key: "initRow",
1778 value: function initRow(item, idx, data, parentDom) {
1779 var _this2 = this;
1780 if (this.treeEnable) {
1781 if (this.options.rootParentId === item[this.options.parentIdField] || !item[this.options.parentIdField]) {
1782 if (item._level === undefined) {
1783 item._level = 0;
1784 }
1785 // jquery.treegrid.js
1786 this.options.rowStyle = function (item, idx) {
1787 var res = _this2._rowStyle(item, idx);
1788 var x = item[_this2.options.idField] ? item[_this2.options.idField] : 0;
1789 res.classes = [res.classes || '', "treegrid-".concat(x)].join(' ');
1790 return res;
1791 };
1792 this.initTr(item, idx, data, parentDom);
1793 return true;
1794 }
1795 return false;
1796 }
1797 return _get(_getPrototypeOf(_class.prototype), "initRow", this).call(this, item, idx, data, parentDom);
1798 }
1799 }, {
1800 key: "destroy",
1801 value: function destroy() {
1802 var _get5;
1803 for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
1804 args[_key4] = arguments[_key4];
1805 }
1806 (_get5 = _get(_getPrototypeOf(_class.prototype), "destroy", this)).call.apply(_get5, [this].concat(args));
1807 this.options.rowStyle = this._rowStyle;
1808 }
1809 }]);
1810 return _class;
1811 }($$4.BootstrapTable);
1812
1813}));