bootstrap-table-mobile.js 68 KB

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