UNPKG

81.1 kBJavaScriptView Raw
1(function (global, factory) {
2 typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('jquery')) :
3 typeof define === 'function' && define.amd ? define(['exports', 'jquery'], factory) :
4 (global = global || self, factory(global.BootstrapTable = {}, global.jQuery));
5}(this, (function (exports, $) { 'use strict';
6
7 $ = $ && Object.prototype.hasOwnProperty.call($, 'default') ? $['default'] : $;
8
9 var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
10
11 function createCommonjsModule(fn, module) {
12 return module = { exports: {} }, fn(module, module.exports), module.exports;
13 }
14
15 var check = function (it) {
16 return it && it.Math == Math && it;
17 };
18
19 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
20 var global_1 =
21 // eslint-disable-next-line no-undef
22 check(typeof globalThis == 'object' && globalThis) ||
23 check(typeof window == 'object' && window) ||
24 check(typeof self == 'object' && self) ||
25 check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
26 // eslint-disable-next-line no-new-func
27 Function('return this')();
28
29 var fails = function (exec) {
30 try {
31 return !!exec();
32 } catch (error) {
33 return true;
34 }
35 };
36
37 // Thank's IE8 for his funny defineProperty
38 var descriptors = !fails(function () {
39 return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
40 });
41
42 var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
43 var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
44
45 // Nashorn ~ JDK8 bug
46 var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
47
48 // `Object.prototype.propertyIsEnumerable` method implementation
49 // https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable
50 var f = NASHORN_BUG ? function propertyIsEnumerable(V) {
51 var descriptor = getOwnPropertyDescriptor(this, V);
52 return !!descriptor && descriptor.enumerable;
53 } : nativePropertyIsEnumerable;
54
55 var objectPropertyIsEnumerable = {
56 f: f
57 };
58
59 var createPropertyDescriptor = function (bitmap, value) {
60 return {
61 enumerable: !(bitmap & 1),
62 configurable: !(bitmap & 2),
63 writable: !(bitmap & 4),
64 value: value
65 };
66 };
67
68 var toString = {}.toString;
69
70 var classofRaw = function (it) {
71 return toString.call(it).slice(8, -1);
72 };
73
74 var split = ''.split;
75
76 // fallback for non-array-like ES3 and non-enumerable old V8 strings
77 var indexedObject = fails(function () {
78 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
79 // eslint-disable-next-line no-prototype-builtins
80 return !Object('z').propertyIsEnumerable(0);
81 }) ? function (it) {
82 return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
83 } : Object;
84
85 // `RequireObjectCoercible` abstract operation
86 // https://tc39.github.io/ecma262/#sec-requireobjectcoercible
87 var requireObjectCoercible = function (it) {
88 if (it == undefined) throw TypeError("Can't call method on " + it);
89 return it;
90 };
91
92 // toObject with fallback for non-array-like ES3 strings
93
94
95
96 var toIndexedObject = function (it) {
97 return indexedObject(requireObjectCoercible(it));
98 };
99
100 var isObject = function (it) {
101 return typeof it === 'object' ? it !== null : typeof it === 'function';
102 };
103
104 // `ToPrimitive` abstract operation
105 // https://tc39.github.io/ecma262/#sec-toprimitive
106 // instead of the ES6 spec version, we didn't implement @@toPrimitive case
107 // and the second argument - flag - preferred type is a string
108 var toPrimitive = function (input, PREFERRED_STRING) {
109 if (!isObject(input)) return input;
110 var fn, val;
111 if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
112 if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
113 if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
114 throw TypeError("Can't convert object to primitive value");
115 };
116
117 var hasOwnProperty = {}.hasOwnProperty;
118
119 var has = function (it, key) {
120 return hasOwnProperty.call(it, key);
121 };
122
123 var document$1 = global_1.document;
124 // typeof document.createElement is 'object' in old IE
125 var EXISTS = isObject(document$1) && isObject(document$1.createElement);
126
127 var documentCreateElement = function (it) {
128 return EXISTS ? document$1.createElement(it) : {};
129 };
130
131 // Thank's IE8 for his funny defineProperty
132 var ie8DomDefine = !descriptors && !fails(function () {
133 return Object.defineProperty(documentCreateElement('div'), 'a', {
134 get: function () { return 7; }
135 }).a != 7;
136 });
137
138 var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
139
140 // `Object.getOwnPropertyDescriptor` method
141 // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor
142 var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
143 O = toIndexedObject(O);
144 P = toPrimitive(P, true);
145 if (ie8DomDefine) try {
146 return nativeGetOwnPropertyDescriptor(O, P);
147 } catch (error) { /* empty */ }
148 if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
149 };
150
151 var objectGetOwnPropertyDescriptor = {
152 f: f$1
153 };
154
155 var anObject = function (it) {
156 if (!isObject(it)) {
157 throw TypeError(String(it) + ' is not an object');
158 } return it;
159 };
160
161 var nativeDefineProperty = Object.defineProperty;
162
163 // `Object.defineProperty` method
164 // https://tc39.github.io/ecma262/#sec-object.defineproperty
165 var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
166 anObject(O);
167 P = toPrimitive(P, true);
168 anObject(Attributes);
169 if (ie8DomDefine) try {
170 return nativeDefineProperty(O, P, Attributes);
171 } catch (error) { /* empty */ }
172 if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
173 if ('value' in Attributes) O[P] = Attributes.value;
174 return O;
175 };
176
177 var objectDefineProperty = {
178 f: f$2
179 };
180
181 var createNonEnumerableProperty = descriptors ? function (object, key, value) {
182 return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
183 } : function (object, key, value) {
184 object[key] = value;
185 return object;
186 };
187
188 var setGlobal = function (key, value) {
189 try {
190 createNonEnumerableProperty(global_1, key, value);
191 } catch (error) {
192 global_1[key] = value;
193 } return value;
194 };
195
196 var SHARED = '__core-js_shared__';
197 var store = global_1[SHARED] || setGlobal(SHARED, {});
198
199 var sharedStore = store;
200
201 var functionToString = Function.toString;
202
203 // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
204 if (typeof sharedStore.inspectSource != 'function') {
205 sharedStore.inspectSource = function (it) {
206 return functionToString.call(it);
207 };
208 }
209
210 var inspectSource = sharedStore.inspectSource;
211
212 var WeakMap = global_1.WeakMap;
213
214 var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
215
216 var shared = createCommonjsModule(function (module) {
217 (module.exports = function (key, value) {
218 return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
219 })('versions', []).push({
220 version: '3.6.0',
221 mode: 'global',
222 copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
223 });
224 });
225
226 var id = 0;
227 var postfix = Math.random();
228
229 var uid = function (key) {
230 return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
231 };
232
233 var keys = shared('keys');
234
235 var sharedKey = function (key) {
236 return keys[key] || (keys[key] = uid(key));
237 };
238
239 var hiddenKeys = {};
240
241 var WeakMap$1 = global_1.WeakMap;
242 var set, get, has$1;
243
244 var enforce = function (it) {
245 return has$1(it) ? get(it) : set(it, {});
246 };
247
248 var getterFor = function (TYPE) {
249 return function (it) {
250 var state;
251 if (!isObject(it) || (state = get(it)).type !== TYPE) {
252 throw TypeError('Incompatible receiver, ' + TYPE + ' required');
253 } return state;
254 };
255 };
256
257 if (nativeWeakMap) {
258 var store$1 = new WeakMap$1();
259 var wmget = store$1.get;
260 var wmhas = store$1.has;
261 var wmset = store$1.set;
262 set = function (it, metadata) {
263 wmset.call(store$1, it, metadata);
264 return metadata;
265 };
266 get = function (it) {
267 return wmget.call(store$1, it) || {};
268 };
269 has$1 = function (it) {
270 return wmhas.call(store$1, it);
271 };
272 } else {
273 var STATE = sharedKey('state');
274 hiddenKeys[STATE] = true;
275 set = function (it, metadata) {
276 createNonEnumerableProperty(it, STATE, metadata);
277 return metadata;
278 };
279 get = function (it) {
280 return has(it, STATE) ? it[STATE] : {};
281 };
282 has$1 = function (it) {
283 return has(it, STATE);
284 };
285 }
286
287 var internalState = {
288 set: set,
289 get: get,
290 has: has$1,
291 enforce: enforce,
292 getterFor: getterFor
293 };
294
295 var redefine = createCommonjsModule(function (module) {
296 var getInternalState = internalState.get;
297 var enforceInternalState = internalState.enforce;
298 var TEMPLATE = String(String).split('String');
299
300 (module.exports = function (O, key, value, options) {
301 var unsafe = options ? !!options.unsafe : false;
302 var simple = options ? !!options.enumerable : false;
303 var noTargetGet = options ? !!options.noTargetGet : false;
304 if (typeof value == 'function') {
305 if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);
306 enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
307 }
308 if (O === global_1) {
309 if (simple) O[key] = value;
310 else setGlobal(key, value);
311 return;
312 } else if (!unsafe) {
313 delete O[key];
314 } else if (!noTargetGet && O[key]) {
315 simple = true;
316 }
317 if (simple) O[key] = value;
318 else createNonEnumerableProperty(O, key, value);
319 // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
320 })(Function.prototype, 'toString', function toString() {
321 return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
322 });
323 });
324
325 var path = global_1;
326
327 var aFunction = function (variable) {
328 return typeof variable == 'function' ? variable : undefined;
329 };
330
331 var getBuiltIn = function (namespace, method) {
332 return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
333 : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
334 };
335
336 var ceil = Math.ceil;
337 var floor = Math.floor;
338
339 // `ToInteger` abstract operation
340 // https://tc39.github.io/ecma262/#sec-tointeger
341 var toInteger = function (argument) {
342 return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
343 };
344
345 var min = Math.min;
346
347 // `ToLength` abstract operation
348 // https://tc39.github.io/ecma262/#sec-tolength
349 var toLength = function (argument) {
350 return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
351 };
352
353 var max = Math.max;
354 var min$1 = Math.min;
355
356 // Helper for a popular repeating case of the spec:
357 // Let integer be ? ToInteger(index).
358 // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
359 var toAbsoluteIndex = function (index, length) {
360 var integer = toInteger(index);
361 return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
362 };
363
364 // `Array.prototype.{ indexOf, includes }` methods implementation
365 var createMethod = function (IS_INCLUDES) {
366 return function ($this, el, fromIndex) {
367 var O = toIndexedObject($this);
368 var length = toLength(O.length);
369 var index = toAbsoluteIndex(fromIndex, length);
370 var value;
371 // Array#includes uses SameValueZero equality algorithm
372 // eslint-disable-next-line no-self-compare
373 if (IS_INCLUDES && el != el) while (length > index) {
374 value = O[index++];
375 // eslint-disable-next-line no-self-compare
376 if (value != value) return true;
377 // Array#indexOf ignores holes, Array#includes - not
378 } else for (;length > index; index++) {
379 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
380 } return !IS_INCLUDES && -1;
381 };
382 };
383
384 var arrayIncludes = {
385 // `Array.prototype.includes` method
386 // https://tc39.github.io/ecma262/#sec-array.prototype.includes
387 includes: createMethod(true),
388 // `Array.prototype.indexOf` method
389 // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
390 indexOf: createMethod(false)
391 };
392
393 var indexOf = arrayIncludes.indexOf;
394
395
396 var objectKeysInternal = function (object, names) {
397 var O = toIndexedObject(object);
398 var i = 0;
399 var result = [];
400 var key;
401 for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
402 // Don't enum bug & hidden keys
403 while (names.length > i) if (has(O, key = names[i++])) {
404 ~indexOf(result, key) || result.push(key);
405 }
406 return result;
407 };
408
409 // IE8- don't enum bug keys
410 var enumBugKeys = [
411 'constructor',
412 'hasOwnProperty',
413 'isPrototypeOf',
414 'propertyIsEnumerable',
415 'toLocaleString',
416 'toString',
417 'valueOf'
418 ];
419
420 var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
421
422 // `Object.getOwnPropertyNames` method
423 // https://tc39.github.io/ecma262/#sec-object.getownpropertynames
424 var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
425 return objectKeysInternal(O, hiddenKeys$1);
426 };
427
428 var objectGetOwnPropertyNames = {
429 f: f$3
430 };
431
432 var f$4 = Object.getOwnPropertySymbols;
433
434 var objectGetOwnPropertySymbols = {
435 f: f$4
436 };
437
438 // all object keys, includes non-enumerable and symbols
439 var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
440 var keys = objectGetOwnPropertyNames.f(anObject(it));
441 var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
442 return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
443 };
444
445 var copyConstructorProperties = function (target, source) {
446 var keys = ownKeys(source);
447 var defineProperty = objectDefineProperty.f;
448 var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
449 for (var i = 0; i < keys.length; i++) {
450 var key = keys[i];
451 if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
452 }
453 };
454
455 var replacement = /#|\.prototype\./;
456
457 var isForced = function (feature, detection) {
458 var value = data[normalize(feature)];
459 return value == POLYFILL ? true
460 : value == NATIVE ? false
461 : typeof detection == 'function' ? fails(detection)
462 : !!detection;
463 };
464
465 var normalize = isForced.normalize = function (string) {
466 return String(string).replace(replacement, '.').toLowerCase();
467 };
468
469 var data = isForced.data = {};
470 var NATIVE = isForced.NATIVE = 'N';
471 var POLYFILL = isForced.POLYFILL = 'P';
472
473 var isForced_1 = isForced;
474
475 var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
476
477
478
479
480
481
482 /*
483 options.target - name of the target object
484 options.global - target is the global object
485 options.stat - export as static methods of target
486 options.proto - export as prototype methods of target
487 options.real - real prototype method for the `pure` version
488 options.forced - export even if the native feature is available
489 options.bind - bind methods to the target, required for the `pure` version
490 options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
491 options.unsafe - use the simple assignment of property instead of delete + defineProperty
492 options.sham - add a flag to not completely full polyfills
493 options.enumerable - export as enumerable property
494 options.noTargetGet - prevent calling a getter on target
495 */
496 var _export = function (options, source) {
497 var TARGET = options.target;
498 var GLOBAL = options.global;
499 var STATIC = options.stat;
500 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
501 if (GLOBAL) {
502 target = global_1;
503 } else if (STATIC) {
504 target = global_1[TARGET] || setGlobal(TARGET, {});
505 } else {
506 target = (global_1[TARGET] || {}).prototype;
507 }
508 if (target) for (key in source) {
509 sourceProperty = source[key];
510 if (options.noTargetGet) {
511 descriptor = getOwnPropertyDescriptor$1(target, key);
512 targetProperty = descriptor && descriptor.value;
513 } else targetProperty = target[key];
514 FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
515 // contained in target
516 if (!FORCED && targetProperty !== undefined) {
517 if (typeof sourceProperty === typeof targetProperty) continue;
518 copyConstructorProperties(sourceProperty, targetProperty);
519 }
520 // add a flag to not completely full polyfills
521 if (options.sham || (targetProperty && targetProperty.sham)) {
522 createNonEnumerableProperty(sourceProperty, 'sham', true);
523 }
524 // extend global
525 redefine(target, key, sourceProperty, options);
526 }
527 };
528
529 // `IsArray` abstract operation
530 // https://tc39.github.io/ecma262/#sec-isarray
531 var isArray = Array.isArray || function isArray(arg) {
532 return classofRaw(arg) == 'Array';
533 };
534
535 // `ToObject` abstract operation
536 // https://tc39.github.io/ecma262/#sec-toobject
537 var toObject = function (argument) {
538 return Object(requireObjectCoercible(argument));
539 };
540
541 var createProperty = function (object, key, value) {
542 var propertyKey = toPrimitive(key);
543 if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
544 else object[propertyKey] = value;
545 };
546
547 var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
548 // Chrome 38 Symbol has incorrect toString conversion
549 // eslint-disable-next-line no-undef
550 return !String(Symbol());
551 });
552
553 var useSymbolAsUid = nativeSymbol
554 // eslint-disable-next-line no-undef
555 && !Symbol.sham
556 // eslint-disable-next-line no-undef
557 && typeof Symbol() == 'symbol';
558
559 var WellKnownSymbolsStore = shared('wks');
560 var Symbol$1 = global_1.Symbol;
561 var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : uid;
562
563 var wellKnownSymbol = function (name) {
564 if (!has(WellKnownSymbolsStore, name)) {
565 if (nativeSymbol && has(Symbol$1, name)) WellKnownSymbolsStore[name] = Symbol$1[name];
566 else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
567 } return WellKnownSymbolsStore[name];
568 };
569
570 var SPECIES = wellKnownSymbol('species');
571
572 // `ArraySpeciesCreate` abstract operation
573 // https://tc39.github.io/ecma262/#sec-arrayspeciescreate
574 var arraySpeciesCreate = function (originalArray, length) {
575 var C;
576 if (isArray(originalArray)) {
577 C = originalArray.constructor;
578 // cross-realm fallback
579 if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
580 else if (isObject(C)) {
581 C = C[SPECIES];
582 if (C === null) C = undefined;
583 }
584 } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
585 };
586
587 var userAgent = getBuiltIn('navigator', 'userAgent') || '';
588
589 var process = global_1.process;
590 var versions = process && process.versions;
591 var v8 = versions && versions.v8;
592 var match, version;
593
594 if (v8) {
595 match = v8.split('.');
596 version = match[0] + match[1];
597 } else if (userAgent) {
598 match = userAgent.match(/Edge\/(\d+)/);
599 if (!match || match[1] >= 74) {
600 match = userAgent.match(/Chrome\/(\d+)/);
601 if (match) version = match[1];
602 }
603 }
604
605 var v8Version = version && +version;
606
607 var SPECIES$1 = wellKnownSymbol('species');
608
609 var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
610 // We can't use this feature detection in V8 since it causes
611 // deoptimization and serious performance degradation
612 // https://github.com/zloirock/core-js/issues/677
613 return v8Version >= 51 || !fails(function () {
614 var array = [];
615 var constructor = array.constructor = {};
616 constructor[SPECIES$1] = function () {
617 return { foo: 1 };
618 };
619 return array[METHOD_NAME](Boolean).foo !== 1;
620 });
621 };
622
623 var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
624 var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
625 var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
626
627 // We can't use this feature detection in V8 since it causes
628 // deoptimization and serious performance degradation
629 // https://github.com/zloirock/core-js/issues/679
630 var IS_CONCAT_SPREADABLE_SUPPORT = v8Version >= 51 || !fails(function () {
631 var array = [];
632 array[IS_CONCAT_SPREADABLE] = false;
633 return array.concat()[0] !== array;
634 });
635
636 var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
637
638 var isConcatSpreadable = function (O) {
639 if (!isObject(O)) return false;
640 var spreadable = O[IS_CONCAT_SPREADABLE];
641 return spreadable !== undefined ? !!spreadable : isArray(O);
642 };
643
644 var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
645
646 // `Array.prototype.concat` method
647 // https://tc39.github.io/ecma262/#sec-array.prototype.concat
648 // with adding support of @@isConcatSpreadable and @@species
649 _export({ target: 'Array', proto: true, forced: FORCED }, {
650 concat: function concat(arg) { // eslint-disable-line no-unused-vars
651 var O = toObject(this);
652 var A = arraySpeciesCreate(O, 0);
653 var n = 0;
654 var i, k, length, len, E;
655 for (i = -1, length = arguments.length; i < length; i++) {
656 E = i === -1 ? O : arguments[i];
657 if (isConcatSpreadable(E)) {
658 len = toLength(E.length);
659 if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
660 for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
661 } else {
662 if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
663 createProperty(A, n++, E);
664 }
665 }
666 A.length = n;
667 return A;
668 }
669 });
670
671 var aFunction$1 = function (it) {
672 if (typeof it != 'function') {
673 throw TypeError(String(it) + ' is not a function');
674 } return it;
675 };
676
677 // optional / simple context binding
678 var bindContext = function (fn, that, length) {
679 aFunction$1(fn);
680 if (that === undefined) return fn;
681 switch (length) {
682 case 0: return function () {
683 return fn.call(that);
684 };
685 case 1: return function (a) {
686 return fn.call(that, a);
687 };
688 case 2: return function (a, b) {
689 return fn.call(that, a, b);
690 };
691 case 3: return function (a, b, c) {
692 return fn.call(that, a, b, c);
693 };
694 }
695 return function (/* ...args */) {
696 return fn.apply(that, arguments);
697 };
698 };
699
700 var push = [].push;
701
702 // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation
703 var createMethod$1 = function (TYPE) {
704 var IS_MAP = TYPE == 1;
705 var IS_FILTER = TYPE == 2;
706 var IS_SOME = TYPE == 3;
707 var IS_EVERY = TYPE == 4;
708 var IS_FIND_INDEX = TYPE == 6;
709 var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
710 return function ($this, callbackfn, that, specificCreate) {
711 var O = toObject($this);
712 var self = indexedObject(O);
713 var boundFunction = bindContext(callbackfn, that, 3);
714 var length = toLength(self.length);
715 var index = 0;
716 var create = specificCreate || arraySpeciesCreate;
717 var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;
718 var value, result;
719 for (;length > index; index++) if (NO_HOLES || index in self) {
720 value = self[index];
721 result = boundFunction(value, index, O);
722 if (TYPE) {
723 if (IS_MAP) target[index] = result; // map
724 else if (result) switch (TYPE) {
725 case 3: return true; // some
726 case 5: return value; // find
727 case 6: return index; // findIndex
728 case 2: push.call(target, value); // filter
729 } else if (IS_EVERY) return false; // every
730 }
731 }
732 return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
733 };
734 };
735
736 var arrayIteration = {
737 // `Array.prototype.forEach` method
738 // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
739 forEach: createMethod$1(0),
740 // `Array.prototype.map` method
741 // https://tc39.github.io/ecma262/#sec-array.prototype.map
742 map: createMethod$1(1),
743 // `Array.prototype.filter` method
744 // https://tc39.github.io/ecma262/#sec-array.prototype.filter
745 filter: createMethod$1(2),
746 // `Array.prototype.some` method
747 // https://tc39.github.io/ecma262/#sec-array.prototype.some
748 some: createMethod$1(3),
749 // `Array.prototype.every` method
750 // https://tc39.github.io/ecma262/#sec-array.prototype.every
751 every: createMethod$1(4),
752 // `Array.prototype.find` method
753 // https://tc39.github.io/ecma262/#sec-array.prototype.find
754 find: createMethod$1(5),
755 // `Array.prototype.findIndex` method
756 // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
757 findIndex: createMethod$1(6)
758 };
759
760 var $filter = arrayIteration.filter;
761
762
763
764 var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');
765 // Edge 14- issue
766 var USES_TO_LENGTH = HAS_SPECIES_SUPPORT && !fails(function () {
767 [].filter.call({ length: -1, 0: 1 }, function (it) { throw it; });
768 });
769
770 // `Array.prototype.filter` method
771 // https://tc39.github.io/ecma262/#sec-array.prototype.filter
772 // with adding support of @@species
773 _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {
774 filter: function filter(callbackfn /* , thisArg */) {
775 return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
776 }
777 });
778
779 // `Object.keys` method
780 // https://tc39.github.io/ecma262/#sec-object.keys
781 var objectKeys = Object.keys || function keys(O) {
782 return objectKeysInternal(O, enumBugKeys);
783 };
784
785 // `Object.defineProperties` method
786 // https://tc39.github.io/ecma262/#sec-object.defineproperties
787 var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
788 anObject(O);
789 var keys = objectKeys(Properties);
790 var length = keys.length;
791 var index = 0;
792 var key;
793 while (length > index) objectDefineProperty.f(O, key = keys[index++], Properties[key]);
794 return O;
795 };
796
797 var html = getBuiltIn('document', 'documentElement');
798
799 var GT = '>';
800 var LT = '<';
801 var PROTOTYPE = 'prototype';
802 var SCRIPT = 'script';
803 var IE_PROTO = sharedKey('IE_PROTO');
804
805 var EmptyConstructor = function () { /* empty */ };
806
807 var scriptTag = function (content) {
808 return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
809 };
810
811 // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
812 var NullProtoObjectViaActiveX = function (activeXDocument) {
813 activeXDocument.write(scriptTag(''));
814 activeXDocument.close();
815 var temp = activeXDocument.parentWindow.Object;
816 activeXDocument = null; // avoid memory leak
817 return temp;
818 };
819
820 // Create object with fake `null` prototype: use iframe Object with cleared prototype
821 var NullProtoObjectViaIFrame = function () {
822 // Thrash, waste and sodomy: IE GC bug
823 var iframe = documentCreateElement('iframe');
824 var JS = 'java' + SCRIPT + ':';
825 var iframeDocument;
826 iframe.style.display = 'none';
827 html.appendChild(iframe);
828 // https://github.com/zloirock/core-js/issues/475
829 iframe.src = String(JS);
830 iframeDocument = iframe.contentWindow.document;
831 iframeDocument.open();
832 iframeDocument.write(scriptTag('document.F=Object'));
833 iframeDocument.close();
834 return iframeDocument.F;
835 };
836
837 // Check for document.domain and active x support
838 // No need to use active x approach when document.domain is not set
839 // see https://github.com/es-shims/es5-shim/issues/150
840 // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
841 // avoid IE GC bug
842 var activeXDocument;
843 var NullProtoObject = function () {
844 try {
845 /* global ActiveXObject */
846 activeXDocument = document.domain && new ActiveXObject('htmlfile');
847 } catch (error) { /* ignore */ }
848 NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
849 var length = enumBugKeys.length;
850 while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
851 return NullProtoObject();
852 };
853
854 hiddenKeys[IE_PROTO] = true;
855
856 // `Object.create` method
857 // https://tc39.github.io/ecma262/#sec-object.create
858 var objectCreate = Object.create || function create(O, Properties) {
859 var result;
860 if (O !== null) {
861 EmptyConstructor[PROTOTYPE] = anObject(O);
862 result = new EmptyConstructor();
863 EmptyConstructor[PROTOTYPE] = null;
864 // add "__proto__" for Object.getPrototypeOf polyfill
865 result[IE_PROTO] = O;
866 } else result = NullProtoObject();
867 return Properties === undefined ? result : objectDefineProperties(result, Properties);
868 };
869
870 var UNSCOPABLES = wellKnownSymbol('unscopables');
871 var ArrayPrototype = Array.prototype;
872
873 // Array.prototype[@@unscopables]
874 // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
875 if (ArrayPrototype[UNSCOPABLES] == undefined) {
876 objectDefineProperty.f(ArrayPrototype, UNSCOPABLES, {
877 configurable: true,
878 value: objectCreate(null)
879 });
880 }
881
882 // add a key to Array.prototype[@@unscopables]
883 var addToUnscopables = function (key) {
884 ArrayPrototype[UNSCOPABLES][key] = true;
885 };
886
887 var $find = arrayIteration.find;
888
889
890 var FIND = 'find';
891 var SKIPS_HOLES = true;
892
893 // Shouldn't skip holes
894 if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
895
896 // `Array.prototype.find` method
897 // https://tc39.github.io/ecma262/#sec-array.prototype.find
898 _export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
899 find: function find(callbackfn /* , that = undefined */) {
900 return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
901 }
902 });
903
904 // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
905 addToUnscopables(FIND);
906
907 var $includes = arrayIncludes.includes;
908
909
910 // `Array.prototype.includes` method
911 // https://tc39.github.io/ecma262/#sec-array.prototype.includes
912 _export({ target: 'Array', proto: true }, {
913 includes: function includes(el /* , fromIndex = 0 */) {
914 return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
915 }
916 });
917
918 // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
919 addToUnscopables('includes');
920
921 var sloppyArrayMethod = function (METHOD_NAME, argument) {
922 var method = [][METHOD_NAME];
923 return !method || !fails(function () {
924 // eslint-disable-next-line no-useless-call,no-throw-literal
925 method.call(null, argument || function () { throw 1; }, 1);
926 });
927 };
928
929 var $indexOf = arrayIncludes.indexOf;
930
931
932 var nativeIndexOf = [].indexOf;
933
934 var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;
935 var SLOPPY_METHOD = sloppyArrayMethod('indexOf');
936
937 // `Array.prototype.indexOf` method
938 // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
939 _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {
940 indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
941 return NEGATIVE_ZERO
942 // convert -0 to +0
943 ? nativeIndexOf.apply(this, arguments) || 0
944 : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);
945 }
946 });
947
948 var nativeJoin = [].join;
949
950 var ES3_STRINGS = indexedObject != Object;
951 var SLOPPY_METHOD$1 = sloppyArrayMethod('join', ',');
952
953 // `Array.prototype.join` method
954 // https://tc39.github.io/ecma262/#sec-array.prototype.join
955 _export({ target: 'Array', proto: true, forced: ES3_STRINGS || SLOPPY_METHOD$1 }, {
956 join: function join(separator) {
957 return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
958 }
959 });
960
961 var test = [];
962 var nativeSort = test.sort;
963
964 // IE8-
965 var FAILS_ON_UNDEFINED = fails(function () {
966 test.sort(undefined);
967 });
968 // V8 bug
969 var FAILS_ON_NULL = fails(function () {
970 test.sort(null);
971 });
972 // Old WebKit
973 var SLOPPY_METHOD$2 = sloppyArrayMethod('sort');
974
975 var FORCED$1 = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || SLOPPY_METHOD$2;
976
977 // `Array.prototype.sort` method
978 // https://tc39.github.io/ecma262/#sec-array.prototype.sort
979 _export({ target: 'Array', proto: true, forced: FORCED$1 }, {
980 sort: function sort(comparefn) {
981 return comparefn === undefined
982 ? nativeSort.call(toObject(this))
983 : nativeSort.call(toObject(this), aFunction$1(comparefn));
984 }
985 });
986
987 var FAILS_ON_PRIMITIVES = fails(function () { objectKeys(1); });
988
989 // `Object.keys` method
990 // https://tc39.github.io/ecma262/#sec-object.keys
991 _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
992 keys: function keys(it) {
993 return objectKeys(toObject(it));
994 }
995 });
996
997 var TO_STRING_TAG = wellKnownSymbol('toStringTag');
998 var test$1 = {};
999
1000 test$1[TO_STRING_TAG] = 'z';
1001
1002 var toStringTagSupport = String(test$1) === '[object z]';
1003
1004 var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag');
1005 // ES3 wrong here
1006 var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
1007
1008 // fallback for IE11 Script Access Denied error
1009 var tryGet = function (it, key) {
1010 try {
1011 return it[key];
1012 } catch (error) { /* empty */ }
1013 };
1014
1015 // getting tag from ES6+ `Object.prototype.toString`
1016 var classof = toStringTagSupport ? classofRaw : function (it) {
1017 var O, tag, result;
1018 return it === undefined ? 'Undefined' : it === null ? 'Null'
1019 // @@toStringTag case
1020 : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG$1)) == 'string' ? tag
1021 // builtinTag case
1022 : CORRECT_ARGUMENTS ? classofRaw(O)
1023 // ES3 arguments fallback
1024 : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
1025 };
1026
1027 // `Object.prototype.toString` method implementation
1028 // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1029 var objectToString = toStringTagSupport ? {}.toString : function toString() {
1030 return '[object ' + classof(this) + ']';
1031 };
1032
1033 // `Object.prototype.toString` method
1034 // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
1035 if (!toStringTagSupport) {
1036 redefine(Object.prototype, 'toString', objectToString, { unsafe: true });
1037 }
1038
1039 // `RegExp.prototype.flags` getter implementation
1040 // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
1041 var regexpFlags = function () {
1042 var that = anObject(this);
1043 var result = '';
1044 if (that.global) result += 'g';
1045 if (that.ignoreCase) result += 'i';
1046 if (that.multiline) result += 'm';
1047 if (that.dotAll) result += 's';
1048 if (that.unicode) result += 'u';
1049 if (that.sticky) result += 'y';
1050 return result;
1051 };
1052
1053 // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
1054 // so we use an intermediate function.
1055 function RE(s, f) {
1056 return RegExp(s, f);
1057 }
1058
1059 var UNSUPPORTED_Y = fails(function () {
1060 // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
1061 var re = RE('a', 'y');
1062 re.lastIndex = 2;
1063 return re.exec('abcd') != null;
1064 });
1065
1066 var BROKEN_CARET = fails(function () {
1067 // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
1068 var re = RE('^r', 'gy');
1069 re.lastIndex = 2;
1070 return re.exec('str') != null;
1071 });
1072
1073 var regexpStickyHelpers = {
1074 UNSUPPORTED_Y: UNSUPPORTED_Y,
1075 BROKEN_CARET: BROKEN_CARET
1076 };
1077
1078 var nativeExec = RegExp.prototype.exec;
1079 // This always refers to the native implementation, because the
1080 // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
1081 // which loads this file before patching the method.
1082 var nativeReplace = String.prototype.replace;
1083
1084 var patchedExec = nativeExec;
1085
1086 var UPDATES_LAST_INDEX_WRONG = (function () {
1087 var re1 = /a/;
1088 var re2 = /b*/g;
1089 nativeExec.call(re1, 'a');
1090 nativeExec.call(re2, 'a');
1091 return re1.lastIndex !== 0 || re2.lastIndex !== 0;
1092 })();
1093
1094 var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET;
1095
1096 // nonparticipating capturing group, copied from es5-shim's String#split patch.
1097 var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
1098
1099 var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1;
1100
1101 if (PATCH) {
1102 patchedExec = function exec(str) {
1103 var re = this;
1104 var lastIndex, reCopy, match, i;
1105 var sticky = UNSUPPORTED_Y$1 && re.sticky;
1106 var flags = regexpFlags.call(re);
1107 var source = re.source;
1108 var charsAdded = 0;
1109 var strCopy = str;
1110
1111 if (sticky) {
1112 flags = flags.replace('y', '');
1113 if (flags.indexOf('g') === -1) {
1114 flags += 'g';
1115 }
1116
1117 strCopy = String(str).slice(re.lastIndex);
1118 // Support anchored sticky behavior.
1119 if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
1120 source = '(?: ' + source + ')';
1121 strCopy = ' ' + strCopy;
1122 charsAdded++;
1123 }
1124 // ^(? + rx + ) is needed, in combination with some str slicing, to
1125 // simulate the 'y' flag.
1126 reCopy = new RegExp('^(?:' + source + ')', flags);
1127 }
1128
1129 if (NPCG_INCLUDED) {
1130 reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
1131 }
1132 if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
1133
1134 match = nativeExec.call(sticky ? reCopy : re, strCopy);
1135
1136 if (sticky) {
1137 if (match) {
1138 match.input = match.input.slice(charsAdded);
1139 match[0] = match[0].slice(charsAdded);
1140 match.index = re.lastIndex;
1141 re.lastIndex += match[0].length;
1142 } else re.lastIndex = 0;
1143 } else if (UPDATES_LAST_INDEX_WRONG && match) {
1144 re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
1145 }
1146 if (NPCG_INCLUDED && match && match.length > 1) {
1147 // Fix browsers whose `exec` methods don't consistently return `undefined`
1148 // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
1149 nativeReplace.call(match[0], reCopy, function () {
1150 for (i = 1; i < arguments.length - 2; i++) {
1151 if (arguments[i] === undefined) match[i] = undefined;
1152 }
1153 });
1154 }
1155
1156 return match;
1157 };
1158 }
1159
1160 var regexpExec = patchedExec;
1161
1162 _export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, {
1163 exec: regexpExec
1164 });
1165
1166 var TO_STRING = 'toString';
1167 var RegExpPrototype = RegExp.prototype;
1168 var nativeToString = RegExpPrototype[TO_STRING];
1169
1170 var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
1171 // FF44- RegExp#toString has a wrong name
1172 var INCORRECT_NAME = nativeToString.name != TO_STRING;
1173
1174 // `RegExp.prototype.toString` method
1175 // https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring
1176 if (NOT_GENERIC || INCORRECT_NAME) {
1177 redefine(RegExp.prototype, TO_STRING, function toString() {
1178 var R = anObject(this);
1179 var p = String(R.source);
1180 var rf = R.flags;
1181 var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? regexpFlags.call(R) : rf);
1182 return '/' + p + '/' + f;
1183 }, { unsafe: true });
1184 }
1185
1186 var SPECIES$2 = wellKnownSymbol('species');
1187
1188 var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
1189 // #replace needs built-in support for named groups.
1190 // #match works fine because it just return the exec results, even if it has
1191 // a "grops" property.
1192 var re = /./;
1193 re.exec = function () {
1194 var result = [];
1195 result.groups = { a: '7' };
1196 return result;
1197 };
1198 return ''.replace(re, '$<a>') !== '7';
1199 });
1200
1201 // IE <= 11 replaces $0 with the whole match, as if it was $&
1202 // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
1203 var REPLACE_KEEPS_$0 = (function () {
1204 return 'a'.replace(/./, '$0') === '$0';
1205 })();
1206
1207 // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
1208 // Weex JS has frozen built-in prototypes, so use try / catch wrapper
1209 var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
1210 var re = /(?:)/;
1211 var originalExec = re.exec;
1212 re.exec = function () { return originalExec.apply(this, arguments); };
1213 var result = 'ab'.split(re);
1214 return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
1215 });
1216
1217 var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
1218 var SYMBOL = wellKnownSymbol(KEY);
1219
1220 var DELEGATES_TO_SYMBOL = !fails(function () {
1221 // String methods call symbol-named RegEp methods
1222 var O = {};
1223 O[SYMBOL] = function () { return 7; };
1224 return ''[KEY](O) != 7;
1225 });
1226
1227 var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
1228 // Symbol-named RegExp methods call .exec
1229 var execCalled = false;
1230 var re = /a/;
1231
1232 if (KEY === 'split') {
1233 // We can't use real regex here since it causes deoptimization
1234 // and serious performance degradation in V8
1235 // https://github.com/zloirock/core-js/issues/306
1236 re = {};
1237 // RegExp[@@split] doesn't call the regex's exec method, but first creates
1238 // a new one. We need to return the patched regex when creating the new one.
1239 re.constructor = {};
1240 re.constructor[SPECIES$2] = function () { return re; };
1241 re.flags = '';
1242 re[SYMBOL] = /./[SYMBOL];
1243 }
1244
1245 re.exec = function () { execCalled = true; return null; };
1246
1247 re[SYMBOL]('');
1248 return !execCalled;
1249 });
1250
1251 if (
1252 !DELEGATES_TO_SYMBOL ||
1253 !DELEGATES_TO_EXEC ||
1254 (KEY === 'replace' && !(REPLACE_SUPPORTS_NAMED_GROUPS && REPLACE_KEEPS_$0)) ||
1255 (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
1256 ) {
1257 var nativeRegExpMethod = /./[SYMBOL];
1258 var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
1259 if (regexp.exec === regexpExec) {
1260 if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
1261 // The native String method already delegates to @@method (this
1262 // polyfilled function), leasing to infinite recursion.
1263 // We avoid it by directly calling the native @@method method.
1264 return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
1265 }
1266 return { done: true, value: nativeMethod.call(str, regexp, arg2) };
1267 }
1268 return { done: false };
1269 }, { REPLACE_KEEPS_$0: REPLACE_KEEPS_$0 });
1270 var stringMethod = methods[0];
1271 var regexMethod = methods[1];
1272
1273 redefine(String.prototype, KEY, stringMethod);
1274 redefine(RegExp.prototype, SYMBOL, length == 2
1275 // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
1276 // 21.2.5.11 RegExp.prototype[@@split](string, limit)
1277 ? function (string, arg) { return regexMethod.call(string, this, arg); }
1278 // 21.2.5.6 RegExp.prototype[@@match](string)
1279 // 21.2.5.9 RegExp.prototype[@@search](string)
1280 : function (string) { return regexMethod.call(string, this); }
1281 );
1282 }
1283
1284 if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);
1285 };
1286
1287 // `String.prototype.{ codePointAt, at }` methods implementation
1288 var createMethod$2 = function (CONVERT_TO_STRING) {
1289 return function ($this, pos) {
1290 var S = String(requireObjectCoercible($this));
1291 var position = toInteger(pos);
1292 var size = S.length;
1293 var first, second;
1294 if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
1295 first = S.charCodeAt(position);
1296 return first < 0xD800 || first > 0xDBFF || position + 1 === size
1297 || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
1298 ? CONVERT_TO_STRING ? S.charAt(position) : first
1299 : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
1300 };
1301 };
1302
1303 var stringMultibyte = {
1304 // `String.prototype.codePointAt` method
1305 // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat
1306 codeAt: createMethod$2(false),
1307 // `String.prototype.at` method
1308 // https://github.com/mathiasbynens/String.prototype.at
1309 charAt: createMethod$2(true)
1310 };
1311
1312 var charAt = stringMultibyte.charAt;
1313
1314 // `AdvanceStringIndex` abstract operation
1315 // https://tc39.github.io/ecma262/#sec-advancestringindex
1316 var advanceStringIndex = function (S, index, unicode) {
1317 return index + (unicode ? charAt(S, index).length : 1);
1318 };
1319
1320 // `RegExpExec` abstract operation
1321 // https://tc39.github.io/ecma262/#sec-regexpexec
1322 var regexpExecAbstract = function (R, S) {
1323 var exec = R.exec;
1324 if (typeof exec === 'function') {
1325 var result = exec.call(R, S);
1326 if (typeof result !== 'object') {
1327 throw TypeError('RegExp exec method returned something other than an Object or null');
1328 }
1329 return result;
1330 }
1331
1332 if (classofRaw(R) !== 'RegExp') {
1333 throw TypeError('RegExp#exec called on incompatible receiver');
1334 }
1335
1336 return regexpExec.call(R, S);
1337 };
1338
1339 // @@match logic
1340 fixRegexpWellKnownSymbolLogic('match', 1, function (MATCH, nativeMatch, maybeCallNative) {
1341 return [
1342 // `String.prototype.match` method
1343 // https://tc39.github.io/ecma262/#sec-string.prototype.match
1344 function match(regexp) {
1345 var O = requireObjectCoercible(this);
1346 var matcher = regexp == undefined ? undefined : regexp[MATCH];
1347 return matcher !== undefined ? matcher.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));
1348 },
1349 // `RegExp.prototype[@@match]` method
1350 // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@match
1351 function (regexp) {
1352 var res = maybeCallNative(nativeMatch, regexp, this);
1353 if (res.done) return res.value;
1354
1355 var rx = anObject(regexp);
1356 var S = String(this);
1357
1358 if (!rx.global) return regexpExecAbstract(rx, S);
1359
1360 var fullUnicode = rx.unicode;
1361 rx.lastIndex = 0;
1362 var A = [];
1363 var n = 0;
1364 var result;
1365 while ((result = regexpExecAbstract(rx, S)) !== null) {
1366 var matchStr = String(result[0]);
1367 A[n] = matchStr;
1368 if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
1369 n++;
1370 }
1371 return n === 0 ? null : A;
1372 }
1373 ];
1374 });
1375
1376 var max$1 = Math.max;
1377 var min$2 = Math.min;
1378 var floor$1 = Math.floor;
1379 var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g;
1380 var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g;
1381
1382 var maybeToString = function (it) {
1383 return it === undefined ? it : String(it);
1384 };
1385
1386 // @@replace logic
1387 fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {
1388 return [
1389 // `String.prototype.replace` method
1390 // https://tc39.github.io/ecma262/#sec-string.prototype.replace
1391 function replace(searchValue, replaceValue) {
1392 var O = requireObjectCoercible(this);
1393 var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
1394 return replacer !== undefined
1395 ? replacer.call(searchValue, O, replaceValue)
1396 : nativeReplace.call(String(O), searchValue, replaceValue);
1397 },
1398 // `RegExp.prototype[@@replace]` method
1399 // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
1400 function (regexp, replaceValue) {
1401 if (reason.REPLACE_KEEPS_$0 || (typeof replaceValue === 'string' && replaceValue.indexOf('$0') === -1)) {
1402 var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
1403 if (res.done) return res.value;
1404 }
1405
1406 var rx = anObject(regexp);
1407 var S = String(this);
1408
1409 var functionalReplace = typeof replaceValue === 'function';
1410 if (!functionalReplace) replaceValue = String(replaceValue);
1411
1412 var global = rx.global;
1413 if (global) {
1414 var fullUnicode = rx.unicode;
1415 rx.lastIndex = 0;
1416 }
1417 var results = [];
1418 while (true) {
1419 var result = regexpExecAbstract(rx, S);
1420 if (result === null) break;
1421
1422 results.push(result);
1423 if (!global) break;
1424
1425 var matchStr = String(result[0]);
1426 if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
1427 }
1428
1429 var accumulatedResult = '';
1430 var nextSourcePosition = 0;
1431 for (var i = 0; i < results.length; i++) {
1432 result = results[i];
1433
1434 var matched = String(result[0]);
1435 var position = max$1(min$2(toInteger(result.index), S.length), 0);
1436 var captures = [];
1437 // NOTE: This is equivalent to
1438 // captures = result.slice(1).map(maybeToString)
1439 // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
1440 // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
1441 // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
1442 for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
1443 var namedCaptures = result.groups;
1444 if (functionalReplace) {
1445 var replacerArgs = [matched].concat(captures, position, S);
1446 if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
1447 var replacement = String(replaceValue.apply(undefined, replacerArgs));
1448 } else {
1449 replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
1450 }
1451 if (position >= nextSourcePosition) {
1452 accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
1453 nextSourcePosition = position + matched.length;
1454 }
1455 }
1456 return accumulatedResult + S.slice(nextSourcePosition);
1457 }
1458 ];
1459
1460 // https://tc39.github.io/ecma262/#sec-getsubstitution
1461 function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
1462 var tailPos = position + matched.length;
1463 var m = captures.length;
1464 var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
1465 if (namedCaptures !== undefined) {
1466 namedCaptures = toObject(namedCaptures);
1467 symbols = SUBSTITUTION_SYMBOLS;
1468 }
1469 return nativeReplace.call(replacement, symbols, function (match, ch) {
1470 var capture;
1471 switch (ch.charAt(0)) {
1472 case '$': return '$';
1473 case '&': return matched;
1474 case '`': return str.slice(0, position);
1475 case "'": return str.slice(tailPos);
1476 case '<':
1477 capture = namedCaptures[ch.slice(1, -1)];
1478 break;
1479 default: // \d\d?
1480 var n = +ch;
1481 if (n === 0) return match;
1482 if (n > m) {
1483 var f = floor$1(n / 10);
1484 if (f === 0) return match;
1485 if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
1486 return match;
1487 }
1488 capture = captures[n - 1];
1489 }
1490 return capture === undefined ? '' : capture;
1491 });
1492 }
1493 });
1494
1495 var MATCH = wellKnownSymbol('match');
1496
1497 // `IsRegExp` abstract operation
1498 // https://tc39.github.io/ecma262/#sec-isregexp
1499 var isRegexp = function (it) {
1500 var isRegExp;
1501 return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp');
1502 };
1503
1504 var SPECIES$3 = wellKnownSymbol('species');
1505
1506 // `SpeciesConstructor` abstract operation
1507 // https://tc39.github.io/ecma262/#sec-speciesconstructor
1508 var speciesConstructor = function (O, defaultConstructor) {
1509 var C = anObject(O).constructor;
1510 var S;
1511 return C === undefined || (S = anObject(C)[SPECIES$3]) == undefined ? defaultConstructor : aFunction$1(S);
1512 };
1513
1514 var arrayPush = [].push;
1515 var min$3 = Math.min;
1516 var MAX_UINT32 = 0xFFFFFFFF;
1517
1518 // babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError
1519 var SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); });
1520
1521 // @@split logic
1522 fixRegexpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) {
1523 var internalSplit;
1524 if (
1525 'abbc'.split(/(b)*/)[1] == 'c' ||
1526 'test'.split(/(?:)/, -1).length != 4 ||
1527 'ab'.split(/(?:ab)*/).length != 2 ||
1528 '.'.split(/(.?)(.?)/).length != 4 ||
1529 '.'.split(/()()/).length > 1 ||
1530 ''.split(/.?/).length
1531 ) {
1532 // based on es5-shim implementation, need to rework it
1533 internalSplit = function (separator, limit) {
1534 var string = String(requireObjectCoercible(this));
1535 var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
1536 if (lim === 0) return [];
1537 if (separator === undefined) return [string];
1538 // If `separator` is not a regex, use native split
1539 if (!isRegexp(separator)) {
1540 return nativeSplit.call(string, separator, lim);
1541 }
1542 var output = [];
1543 var flags = (separator.ignoreCase ? 'i' : '') +
1544 (separator.multiline ? 'm' : '') +
1545 (separator.unicode ? 'u' : '') +
1546 (separator.sticky ? 'y' : '');
1547 var lastLastIndex = 0;
1548 // Make `global` and avoid `lastIndex` issues by working with a copy
1549 var separatorCopy = new RegExp(separator.source, flags + 'g');
1550 var match, lastIndex, lastLength;
1551 while (match = regexpExec.call(separatorCopy, string)) {
1552 lastIndex = separatorCopy.lastIndex;
1553 if (lastIndex > lastLastIndex) {
1554 output.push(string.slice(lastLastIndex, match.index));
1555 if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1));
1556 lastLength = match[0].length;
1557 lastLastIndex = lastIndex;
1558 if (output.length >= lim) break;
1559 }
1560 if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
1561 }
1562 if (lastLastIndex === string.length) {
1563 if (lastLength || !separatorCopy.test('')) output.push('');
1564 } else output.push(string.slice(lastLastIndex));
1565 return output.length > lim ? output.slice(0, lim) : output;
1566 };
1567 // Chakra, V8
1568 } else if ('0'.split(undefined, 0).length) {
1569 internalSplit = function (separator, limit) {
1570 return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit);
1571 };
1572 } else internalSplit = nativeSplit;
1573
1574 return [
1575 // `String.prototype.split` method
1576 // https://tc39.github.io/ecma262/#sec-string.prototype.split
1577 function split(separator, limit) {
1578 var O = requireObjectCoercible(this);
1579 var splitter = separator == undefined ? undefined : separator[SPLIT];
1580 return splitter !== undefined
1581 ? splitter.call(separator, O, limit)
1582 : internalSplit.call(String(O), separator, limit);
1583 },
1584 // `RegExp.prototype[@@split]` method
1585 // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split
1586 //
1587 // NOTE: This cannot be properly polyfilled in engines that don't support
1588 // the 'y' flag.
1589 function (regexp, limit) {
1590 var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit);
1591 if (res.done) return res.value;
1592
1593 var rx = anObject(regexp);
1594 var S = String(this);
1595 var C = speciesConstructor(rx, RegExp);
1596
1597 var unicodeMatching = rx.unicode;
1598 var flags = (rx.ignoreCase ? 'i' : '') +
1599 (rx.multiline ? 'm' : '') +
1600 (rx.unicode ? 'u' : '') +
1601 (SUPPORTS_Y ? 'y' : 'g');
1602
1603 // ^(? + rx + ) is needed, in combination with some S slicing, to
1604 // simulate the 'y' flag.
1605 var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags);
1606 var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
1607 if (lim === 0) return [];
1608 if (S.length === 0) return regexpExecAbstract(splitter, S) === null ? [S] : [];
1609 var p = 0;
1610 var q = 0;
1611 var A = [];
1612 while (q < S.length) {
1613 splitter.lastIndex = SUPPORTS_Y ? q : 0;
1614 var z = regexpExecAbstract(splitter, SUPPORTS_Y ? S : S.slice(q));
1615 var e;
1616 if (
1617 z === null ||
1618 (e = min$3(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p
1619 ) {
1620 q = advanceStringIndex(S, q, unicodeMatching);
1621 } else {
1622 A.push(S.slice(p, q));
1623 if (A.length === lim) return A;
1624 for (var i = 1; i <= z.length - 1; i++) {
1625 A.push(z[i]);
1626 if (A.length === lim) return A;
1627 }
1628 q = p = e;
1629 }
1630 }
1631 A.push(S.slice(p));
1632 return A;
1633 }
1634 ];
1635 }, !SUPPORTS_Y);
1636
1637 // a string of all valid unicode whitespaces
1638 // eslint-disable-next-line max-len
1639 var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
1640
1641 var whitespace = '[' + whitespaces + ']';
1642 var ltrim = RegExp('^' + whitespace + whitespace + '*');
1643 var rtrim = RegExp(whitespace + whitespace + '*$');
1644
1645 // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
1646 var createMethod$3 = function (TYPE) {
1647 return function ($this) {
1648 var string = String(requireObjectCoercible($this));
1649 if (TYPE & 1) string = string.replace(ltrim, '');
1650 if (TYPE & 2) string = string.replace(rtrim, '');
1651 return string;
1652 };
1653 };
1654
1655 var stringTrim = {
1656 // `String.prototype.{ trimLeft, trimStart }` methods
1657 // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart
1658 start: createMethod$3(1),
1659 // `String.prototype.{ trimRight, trimEnd }` methods
1660 // https://tc39.github.io/ecma262/#sec-string.prototype.trimend
1661 end: createMethod$3(2),
1662 // `String.prototype.trim` method
1663 // https://tc39.github.io/ecma262/#sec-string.prototype.trim
1664 trim: createMethod$3(3)
1665 };
1666
1667 var non = '\u200B\u0085\u180E';
1668
1669 // check that a method works with the correct list
1670 // of whitespaces and has a correct name
1671 var forcedStringTrimMethod = function (METHOD_NAME) {
1672 return fails(function () {
1673 return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME;
1674 });
1675 };
1676
1677 var $trim = stringTrim.trim;
1678
1679
1680 // `String.prototype.trim` method
1681 // https://tc39.github.io/ecma262/#sec-string.prototype.trim
1682 _export({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
1683 trim: function trim() {
1684 return $trim(this);
1685 }
1686 });
1687
1688 // iterable DOM collections
1689 // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
1690 var domIterables = {
1691 CSSRuleList: 0,
1692 CSSStyleDeclaration: 0,
1693 CSSValueList: 0,
1694 ClientRectList: 0,
1695 DOMRectList: 0,
1696 DOMStringList: 0,
1697 DOMTokenList: 1,
1698 DataTransferItemList: 0,
1699 FileList: 0,
1700 HTMLAllCollection: 0,
1701 HTMLCollection: 0,
1702 HTMLFormElement: 0,
1703 HTMLSelectElement: 0,
1704 MediaList: 0,
1705 MimeTypeArray: 0,
1706 NamedNodeMap: 0,
1707 NodeList: 1,
1708 PaintRequestList: 0,
1709 Plugin: 0,
1710 PluginArray: 0,
1711 SVGLengthList: 0,
1712 SVGNumberList: 0,
1713 SVGPathSegList: 0,
1714 SVGPointList: 0,
1715 SVGStringList: 0,
1716 SVGTransformList: 0,
1717 SourceBufferList: 0,
1718 StyleSheetList: 0,
1719 TextTrackCueList: 0,
1720 TextTrackList: 0,
1721 TouchList: 0
1722 };
1723
1724 var $forEach = arrayIteration.forEach;
1725
1726
1727 // `Array.prototype.forEach` method implementation
1728 // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
1729 var arrayForEach = sloppyArrayMethod('forEach') ? function forEach(callbackfn /* , thisArg */) {
1730 return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
1731 } : [].forEach;
1732
1733 for (var COLLECTION_NAME in domIterables) {
1734 var Collection = global_1[COLLECTION_NAME];
1735 var CollectionPrototype = Collection && Collection.prototype;
1736 // some Chrome versions have non-configurable methods on DOMTokenList
1737 if (CollectionPrototype && CollectionPrototype.forEach !== arrayForEach) try {
1738 createNonEnumerableProperty(CollectionPrototype, 'forEach', arrayForEach);
1739 } catch (error) {
1740 CollectionPrototype.forEach = arrayForEach;
1741 }
1742 }
1743
1744 function _typeof(obj) {
1745 if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
1746 _typeof = function (obj) {
1747 return typeof obj;
1748 };
1749 } else {
1750 _typeof = function (obj) {
1751 return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
1752 };
1753 }
1754
1755 return _typeof(obj);
1756 }
1757
1758 var Utils = $.fn.bootstrapTable.utils;
1759 var searchControls = 'select, input:not([type="checkbox"]):not([type="radio"])';
1760 function getOptionsFromSelectControl(selectControl) {
1761 return selectControl.get(selectControl.length - 1).options;
1762 }
1763 function getControlContainer(that) {
1764 if (that.options.filterControlContainer) {
1765 return $("".concat(that.options.filterControlContainer));
1766 }
1767
1768 return that.$header;
1769 }
1770 function getSearchControls(that) {
1771 return getControlContainer(that).find(searchControls);
1772 }
1773 function hideUnusedSelectOptions(selectControl, uniqueValues) {
1774 var options = getOptionsFromSelectControl(selectControl);
1775
1776 for (var i = 0; i < options.length; i++) {
1777 if (options[i].value !== '') {
1778 if (!uniqueValues.hasOwnProperty(options[i].value)) {
1779 selectControl.find(Utils.sprintf('option[value=\'%s\']', options[i].value)).hide();
1780 } else {
1781 selectControl.find(Utils.sprintf('option[value=\'%s\']', options[i].value)).show();
1782 }
1783 }
1784 }
1785 }
1786 function existOptionInSelectControl(selectControl, value) {
1787 var options = getOptionsFromSelectControl(selectControl);
1788
1789 for (var i = 0; i < options.length; i++) {
1790 if (options[i].value === value.toString()) {
1791 // The value is not valid to add
1792 return true;
1793 }
1794 } // If we get here, the value is valid to add
1795
1796
1797 return false;
1798 }
1799 function addOptionToSelectControl(selectControl, _value, text, selected) {
1800 var value = _value === undefined || _value === null ? '' : _value.toString().trim();
1801 var $selectControl = $(selectControl.get(selectControl.length - 1));
1802
1803 if (!existOptionInSelectControl(selectControl, value)) {
1804 var option = $("<option value=\"".concat(value, "\">").concat(text, "</option>"));
1805
1806 if (value === selected) {
1807 option.attr('selected', true);
1808 }
1809
1810 $selectControl.append(option);
1811 }
1812 }
1813 function sortSelectControl(selectControl, orderBy) {
1814 var $selectControl = $(selectControl.get(selectControl.length - 1));
1815 var $opts = $selectControl.find('option:gt(0)');
1816
1817 if (orderBy !== 'server') {
1818 $opts.sort(function (a, b) {
1819 return Utils.sort(a.textContent, b.textContent, orderBy === 'desc' ? -1 : 1);
1820 });
1821 }
1822
1823 $selectControl.find('option:gt(0)').remove();
1824 $selectControl.append($opts);
1825 }
1826 function fixHeaderCSS(_ref) {
1827 var $tableHeader = _ref.$tableHeader;
1828 $tableHeader.css('height', '89px');
1829 }
1830 function getElementClass($element) {
1831 return $element.attr('class').replace('form-control', '').replace('focus-temp', '').replace('search-input', '').trim();
1832 }
1833 function getCursorPosition(el) {
1834 if (Utils.isIEBrowser()) {
1835 if ($(el).is('input[type=text]')) {
1836 var pos = 0;
1837
1838 if ('selectionStart' in el) {
1839 pos = el.selectionStart;
1840 } else if ('selection' in document) {
1841 el.focus();
1842 var Sel = document.selection.createRange();
1843 var SelLength = document.selection.createRange().text.length;
1844 Sel.moveStart('character', -el.value.length);
1845 pos = Sel.text.length - SelLength;
1846 }
1847
1848 return pos;
1849 }
1850
1851 return -1;
1852 }
1853
1854 return -1;
1855 }
1856 function setCursorPosition(el) {
1857 $(el).val(el.value);
1858 }
1859 function copyValues(that) {
1860 var searchControls = getSearchControls(that);
1861 that.options.valuesFilterControl = [];
1862 searchControls.each(function () {
1863 var $field = $(this);
1864
1865 if (that.options.height) {
1866 var fieldClass = getElementClass($field);
1867 $field = $(".fixed-table-header .".concat(fieldClass));
1868 }
1869
1870 that.options.valuesFilterControl.push({
1871 field: $field.closest('[data-field]').data('field'),
1872 value: $field.val(),
1873 position: getCursorPosition($field.get(0)),
1874 hasFocus: $field.is(':focus')
1875 });
1876 });
1877 }
1878 function setValues(that) {
1879 var field = null;
1880 var result = [];
1881 var searchControls = getSearchControls(that);
1882
1883 if (that.options.valuesFilterControl.length > 0) {
1884 // Callback to apply after settings fields values
1885 var fieldToFocusCallback = null;
1886 searchControls.each(function (index, ele) {
1887 var $this = $(this);
1888 field = $this.closest('[data-field]').data('field');
1889 result = that.options.valuesFilterControl.filter(function (valueObj) {
1890 return valueObj.field === field;
1891 });
1892
1893 if (result.length > 0) {
1894 if ($this.is('[type=radio]')) {
1895 return;
1896 }
1897
1898 $this.val(result[0].value);
1899
1900 if (result[0].hasFocus && result[0].value !== '') {
1901 // set callback if the field had the focus.
1902 fieldToFocusCallback = function (fieldToFocus, carretPosition) {
1903 // Closure here to capture the field and cursor position
1904 var closedCallback = function closedCallback() {
1905 fieldToFocus.focus();
1906 setCursorPosition(fieldToFocus);
1907 };
1908
1909 return closedCallback;
1910 }($this.get(0), result[0].position);
1911 }
1912 }
1913 }); // Callback call.
1914
1915 if (fieldToFocusCallback !== null) {
1916 fieldToFocusCallback();
1917 }
1918 }
1919 }
1920 function collectBootstrapCookies() {
1921 var cookies = [];
1922 var foundCookies = document.cookie.match(/(?:bs.table.)(\w*)/g);
1923 var foundLocalStorage = localStorage;
1924
1925 if (foundCookies) {
1926 $.each(foundCookies, function (i, _cookie) {
1927 var cookie = _cookie;
1928
1929 if (/./.test(cookie)) {
1930 cookie = cookie.split('.').pop();
1931 }
1932
1933 if ($.inArray(cookie, cookies) === -1) {
1934 cookies.push(cookie);
1935 }
1936 });
1937 }
1938
1939 if (foundLocalStorage) {
1940 for (var i = 0; i < foundLocalStorage.length; i++) {
1941 var cookie = foundLocalStorage.key(i);
1942
1943 if (/./.test(cookie)) {
1944 cookie = cookie.split('.').pop();
1945 }
1946
1947 if (!cookies.includes(cookie)) {
1948 cookies.push(cookie);
1949 }
1950 }
1951 }
1952
1953 return cookies;
1954 }
1955 function escapeID(id) {
1956 // eslint-disable-next-line no-useless-escape
1957 return String(id).replace(/([:.\[\],])/g, '\\$1');
1958 }
1959 function isColumnSearchableViaSelect(_ref2) {
1960 var filterControl = _ref2.filterControl,
1961 searchable = _ref2.searchable;
1962 return filterControl && filterControl.toLowerCase() === 'select' && searchable;
1963 }
1964 function isFilterDataNotGiven(_ref3) {
1965 var filterData = _ref3.filterData;
1966 return filterData === undefined || filterData.toLowerCase() === 'column';
1967 }
1968 function hasSelectControlElement(selectControl) {
1969 return selectControl && selectControl.length > 0;
1970 }
1971 function initFilterSelectControls(that) {
1972 var data = that.data;
1973 var z = that.options.pagination ? that.options.sidePagination === 'server' ? that.pageTo : that.options.totalRows : that.pageTo;
1974 $.each(that.header.fields, function (j, field) {
1975 var column = that.columns[that.fieldsColumnsIndex[field]];
1976 var selectControl = getControlContainer(that).find("select.bootstrap-table-filter-control-".concat(escapeID(column.field)));
1977
1978 if (isColumnSearchableViaSelect(column) && isFilterDataNotGiven(column) && hasSelectControlElement(selectControl)) {
1979 if (selectControl.get(selectControl.length - 1).options.length === 0) {
1980 // Added the default option
1981 addOptionToSelectControl(selectControl, '', column.filterControlPlaceholder, column.filterDefault);
1982 }
1983
1984 var uniqueValues = {};
1985
1986 for (var i = 0; i < z; i++) {
1987 // Added a new value
1988 var fieldValue = data[i][field];
1989 var formatter = that.options.editable && column.editable ? column._formatter : that.header.formatters[j];
1990 var formattedValue = Utils.calculateObjectValue(that.header, formatter, [fieldValue, data[i], i], fieldValue);
1991
1992 if (column.filterDataCollector) {
1993 formattedValue = Utils.calculateObjectValue(that.header, column.filterDataCollector, [fieldValue, data[i], formattedValue], formattedValue);
1994 }
1995
1996 if (column.searchFormatter) {
1997 fieldValue = formattedValue;
1998 }
1999
2000 uniqueValues[formattedValue] = fieldValue;
2001
2002 if (_typeof(formattedValue) === 'object' && formattedValue !== null) {
2003 formattedValue.forEach(function (value) {
2004 addOptionToSelectControl(selectControl, value, value, column.filterDefault);
2005 });
2006 continue;
2007 }
2008
2009 for (var key in uniqueValues) {
2010 addOptionToSelectControl(selectControl, uniqueValues[key], key, column.filterDefault);
2011 }
2012 }
2013
2014 sortSelectControl(selectControl, column.filterOrderBy);
2015
2016 if (that.options.hideUnusedSelectOptions) {
2017 hideUnusedSelectOptions(selectControl, uniqueValues);
2018 }
2019 }
2020 });
2021 }
2022 function getFilterDataMethod(objFilterDataMethod, searchTerm) {
2023 var keys = Object.keys(objFilterDataMethod);
2024
2025 for (var i = 0; i < keys.length; i++) {
2026 if (keys[i] === searchTerm) {
2027 return objFilterDataMethod[searchTerm];
2028 }
2029 }
2030
2031 return null;
2032 }
2033 function createControls(that, header) {
2034 var addedFilterControl = false;
2035 var html;
2036 $.each(that.columns, function (_, column) {
2037 html = [];
2038
2039 if (!column.visible) {
2040 return;
2041 }
2042
2043 if (!column.filterControl && !that.options.filterControlContainer) {
2044 html.push('<div class="no-filter-control"></div>');
2045 } else if (that.options.filterControlContainer) {
2046 var $filterControls = $(".bootstrap-table-filter-control-".concat(column.field));
2047 $.each($filterControls, function (_, filterControl) {
2048 var $filterControl = $(filterControl);
2049
2050 if (!$filterControl.is('[type=radio]')) {
2051 var placeholder = column.filterControlPlaceholder ? column.filterControlPlaceholder : '';
2052 $filterControl.attr('placeholder', placeholder).val(column.filterDefault);
2053 }
2054
2055 $filterControl.attr('data-field', column.field);
2056 });
2057 addedFilterControl = true;
2058 } else {
2059 var nameControl = column.filterControl.toLowerCase();
2060 html.push('<div class="filter-control">');
2061 addedFilterControl = true;
2062
2063 if (column.searchable && that.options.filterTemplate[nameControl]) {
2064 html.push(that.options.filterTemplate[nameControl](that, column.field, column.filterControlPlaceholder ? column.filterControlPlaceholder : '', column.filterDefault));
2065 }
2066 }
2067
2068 if (!column.filterControl && '' !== column.filterDefault && 'undefined' !== typeof column.filterDefault) {
2069 if ($.isEmptyObject(that.filterColumnsPartial)) {
2070 that.filterColumnsPartial = {};
2071 }
2072
2073 that.filterColumnsPartial[column.field] = column.filterDefault;
2074 }
2075
2076 $.each(header.find('th'), function (i, th) {
2077 var $th = $(th);
2078
2079 if ($th.data('field') === column.field) {
2080 $th.find('.fht-cell').append(html.join(''));
2081 return false;
2082 }
2083 });
2084
2085 if (column.filterData && column.filterData.toLowerCase() !== 'column') {
2086 var filterDataType = getFilterDataMethod(
2087 /* eslint-disable no-use-before-define */
2088 filterDataMethods, column.filterData.substring(0, column.filterData.indexOf(':')));
2089 var filterDataSource;
2090 var selectControl;
2091
2092 if (filterDataType) {
2093 filterDataSource = column.filterData.substring(column.filterData.indexOf(':') + 1, column.filterData.length);
2094 selectControl = header.find(".bootstrap-table-filter-control-".concat(escapeID(column.field)));
2095 addOptionToSelectControl(selectControl, '', column.filterControlPlaceholder, column.filterDefault);
2096 filterDataType(filterDataSource, selectControl, that.options.filterOrderBy, column.filterDefault);
2097 } else {
2098 throw new SyntaxError('Error. You should use any of these allowed filter data methods: var, obj, json, url, func.' + ' Use like this: var: {key: "value"}');
2099 }
2100 }
2101 });
2102
2103 if (addedFilterControl) {
2104 header.off('keyup', 'input').on('keyup', 'input', function (_ref4, obj) {
2105 var currentTarget = _ref4.currentTarget,
2106 keyCode = _ref4.keyCode;
2107 syncControls(that); // Simulate enter key action from clear button
2108
2109 keyCode = obj ? obj.keyCode : keyCode;
2110
2111 if (that.options.searchOnEnterKey && keyCode !== 13) {
2112 return;
2113 }
2114
2115 if ($.inArray(keyCode, [37, 38, 39, 40]) > -1) {
2116 return;
2117 }
2118
2119 var $currentTarget = $(currentTarget);
2120
2121 if ($currentTarget.is(':checkbox') || $currentTarget.is(':radio')) {
2122 return;
2123 }
2124
2125 clearTimeout(currentTarget.timeoutId || 0);
2126 currentTarget.timeoutId = setTimeout(function () {
2127 that.onColumnSearch({
2128 currentTarget: currentTarget,
2129 keyCode: keyCode
2130 });
2131 }, that.options.searchTimeOut);
2132 });
2133 header.off('change', 'select:not(".ms-offscreen")').on('change', 'select:not(".ms-offscreen")', function (_ref5) {
2134 var currentTarget = _ref5.currentTarget,
2135 keyCode = _ref5.keyCode;
2136 syncControls(that);
2137 var $select = $(currentTarget);
2138 var value = $select.val();
2139
2140 if (value && value.length > 0 && value.trim()) {
2141 $select.find('option[selected]').removeAttr('selected');
2142 $select.find('option[value="' + value + '"]').attr('selected', true);
2143 } else {
2144 $select.find('option[selected]').removeAttr('selected');
2145 }
2146
2147 clearTimeout(currentTarget.timeoutId || 0);
2148 currentTarget.timeoutId = setTimeout(function () {
2149 that.onColumnSearch({
2150 currentTarget: currentTarget,
2151 keyCode: keyCode
2152 });
2153 }, that.options.searchTimeOut);
2154 });
2155 header.off('mouseup', 'input:not([type=radio])').on('mouseup', 'input:not([type=radio])', function (_ref6) {
2156 var currentTarget = _ref6.currentTarget,
2157 keyCode = _ref6.keyCode;
2158 var $input = $(currentTarget);
2159 var oldValue = $input.val();
2160
2161 if (oldValue === '') {
2162 return;
2163 }
2164
2165 setTimeout(function () {
2166 syncControls(that);
2167 var newValue = $input.val();
2168
2169 if (newValue === '') {
2170 clearTimeout(currentTarget.timeoutId || 0);
2171 currentTarget.timeoutId = setTimeout(function () {
2172 that.onColumnSearch({
2173 currentTarget: currentTarget,
2174 keyCode: keyCode
2175 });
2176 }, that.options.searchTimeOut);
2177 }
2178 }, 1);
2179 });
2180 header.off('change', 'input[type=radio]').on('change', 'input[type=radio]', function (_ref7) {
2181 var currentTarget = _ref7.currentTarget,
2182 keyCode = _ref7.keyCode;
2183 clearTimeout(currentTarget.timeoutId || 0);
2184 currentTarget.timeoutId = setTimeout(function () {
2185 syncControls(that);
2186 that.onColumnSearch({
2187 currentTarget: currentTarget,
2188 keyCode: keyCode
2189 });
2190 }, that.options.searchTimeOut);
2191 });
2192
2193 if (header.find('.date-filter-control').length > 0) {
2194 $.each(that.columns, function (i, _ref8) {
2195 var filterControl = _ref8.filterControl,
2196 field = _ref8.field,
2197 filterDatepickerOptions = _ref8.filterDatepickerOptions;
2198
2199 if (filterControl !== undefined && filterControl.toLowerCase() === 'datepicker') {
2200 header.find(".date-filter-control.bootstrap-table-filter-control-".concat(field)).datepicker(filterDatepickerOptions).on('changeDate', function (_ref9) {
2201 var currentTarget = _ref9.currentTarget,
2202 keyCode = _ref9.keyCode;
2203 clearTimeout(currentTarget.timeoutId || 0);
2204 currentTarget.timeoutId = setTimeout(function () {
2205 syncControls(that);
2206 that.onColumnSearch({
2207 currentTarget: currentTarget,
2208 keyCode: keyCode
2209 });
2210 }, that.options.searchTimeOut);
2211 });
2212 }
2213 });
2214 }
2215
2216 if (that.options.sidePagination !== 'server' && !that.options.height) {
2217 that.triggerSearch();
2218 }
2219
2220 if (!that.options.filterControlVisible) {
2221 header.find('.filter-control, .no-filter-control').hide();
2222 }
2223 } else {
2224 header.find('.filter-control, .no-filter-control').hide();
2225 }
2226
2227 that.trigger('created-controls');
2228 }
2229 function getDirectionOfSelectOptions(_alignment) {
2230 var alignment = _alignment === undefined ? 'left' : _alignment.toLowerCase();
2231
2232 switch (alignment) {
2233 case 'left':
2234 return 'ltr';
2235
2236 case 'right':
2237 return 'rtl';
2238
2239 case 'auto':
2240 return 'auto';
2241
2242 default:
2243 return 'ltr';
2244 }
2245 }
2246 function syncControls(that) {
2247 if (that.options.height) {
2248 var controlsTableHeader = that.$tableHeader.find(searchControls);
2249 that.$header.find(searchControls).each(function (_, control) {
2250 var $control = $(control);
2251 var controlClass = getElementClass($control);
2252 var foundControl = controlsTableHeader.filter(function (_, ele) {
2253 var eleClass = getElementClass($(ele));
2254 return controlClass === eleClass;
2255 });
2256
2257 if (foundControl.length === 0) {
2258 return;
2259 }
2260
2261 if ($control.is('select')) {
2262 $control.find('option:selected').removeAttr('selected');
2263 $control.find("option[value='".concat(foundControl.val(), "']")).attr('selected', true);
2264 } else {
2265 $control.val(foundControl.val());
2266 }
2267 });
2268 }
2269 }
2270 var filterDataMethods = {
2271 func: function func(filterDataSource, selectControl, filterOrderBy, selected) {
2272 var variableValues = window[filterDataSource].apply();
2273
2274 for (var key in variableValues) {
2275 addOptionToSelectControl(selectControl, key, variableValues[key], selected);
2276 }
2277
2278 sortSelectControl(selectControl, filterOrderBy);
2279 },
2280 obj: function obj(filterDataSource, selectControl, filterOrderBy, selected) {
2281 var objectKeys = filterDataSource.split('.');
2282 var variableName = objectKeys.shift();
2283 var variableValues = window[variableName];
2284
2285 if (objectKeys.length > 0) {
2286 objectKeys.forEach(function (key) {
2287 variableValues = variableValues[key];
2288 });
2289 }
2290
2291 for (var key in variableValues) {
2292 addOptionToSelectControl(selectControl, key, variableValues[key], selected);
2293 }
2294
2295 sortSelectControl(selectControl, filterOrderBy);
2296 },
2297 var: function _var(filterDataSource, selectControl, filterOrderBy, selected) {
2298 var variableValues = window[filterDataSource];
2299 var isArray = Array.isArray(variableValues);
2300
2301 for (var key in variableValues) {
2302 if (isArray) {
2303 addOptionToSelectControl(selectControl, variableValues[key], variableValues[key], selected);
2304 } else {
2305 addOptionToSelectControl(selectControl, key, variableValues[key], selected);
2306 }
2307 }
2308
2309 sortSelectControl(selectControl, filterOrderBy);
2310 },
2311 url: function url(filterDataSource, selectControl, filterOrderBy, selected) {
2312 $.ajax({
2313 url: filterDataSource,
2314 dataType: 'json',
2315 success: function success(data) {
2316 for (var key in data) {
2317 addOptionToSelectControl(selectControl, key, data[key], selected);
2318 }
2319
2320 sortSelectControl(selectControl, filterOrderBy);
2321 }
2322 });
2323 },
2324 json: function json(filterDataSource, selectControl, filterOrderBy, selected) {
2325 var variableValues = JSON.parse(filterDataSource);
2326
2327 for (var key in variableValues) {
2328 addOptionToSelectControl(selectControl, key, variableValues[key], selected);
2329 }
2330
2331 sortSelectControl(selectControl, filterOrderBy);
2332 }
2333 };
2334
2335 exports.addOptionToSelectControl = addOptionToSelectControl;
2336 exports.collectBootstrapCookies = collectBootstrapCookies;
2337 exports.copyValues = copyValues;
2338 exports.createControls = createControls;
2339 exports.escapeID = escapeID;
2340 exports.existOptionInSelectControl = existOptionInSelectControl;
2341 exports.fixHeaderCSS = fixHeaderCSS;
2342 exports.getControlContainer = getControlContainer;
2343 exports.getCursorPosition = getCursorPosition;
2344 exports.getDirectionOfSelectOptions = getDirectionOfSelectOptions;
2345 exports.getElementClass = getElementClass;
2346 exports.getFilterDataMethod = getFilterDataMethod;
2347 exports.getOptionsFromSelectControl = getOptionsFromSelectControl;
2348 exports.getSearchControls = getSearchControls;
2349 exports.hasSelectControlElement = hasSelectControlElement;
2350 exports.hideUnusedSelectOptions = hideUnusedSelectOptions;
2351 exports.initFilterSelectControls = initFilterSelectControls;
2352 exports.isColumnSearchableViaSelect = isColumnSearchableViaSelect;
2353 exports.isFilterDataNotGiven = isFilterDataNotGiven;
2354 exports.setCursorPosition = setCursorPosition;
2355 exports.setValues = setValues;
2356 exports.sortSelectControl = sortSelectControl;
2357 exports.syncControls = syncControls;
2358
2359 Object.defineProperty(exports, '__esModule', { value: true });
2360
2361})));