bootstrap-table-ru-RU.js 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410
  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 ($$2) { 'use strict';
  6. var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
  7. var check = function (it) {
  8. return it && it.Math === Math && it;
  9. };
  10. // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
  11. var global$a =
  12. // eslint-disable-next-line es/no-global-this -- safe
  13. check(typeof globalThis == 'object' && globalThis) ||
  14. check(typeof window == 'object' && window) ||
  15. // eslint-disable-next-line no-restricted-globals -- safe
  16. check(typeof self == 'object' && self) ||
  17. check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
  18. check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
  19. // eslint-disable-next-line no-new-func -- fallback
  20. (function () { return this; })() || Function('return this')();
  21. var objectGetOwnPropertyDescriptor = {};
  22. var fails$c = function (exec) {
  23. try {
  24. return !!exec();
  25. } catch (error) {
  26. return true;
  27. }
  28. };
  29. var fails$b = fails$c;
  30. // Detect IE8's incomplete defineProperty implementation
  31. var descriptors = !fails$b(function () {
  32. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  33. return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
  34. });
  35. var fails$a = fails$c;
  36. var functionBindNative = !fails$a(function () {
  37. // eslint-disable-next-line es/no-function-prototype-bind -- safe
  38. var test = (function () { /* empty */ }).bind();
  39. // eslint-disable-next-line no-prototype-builtins -- safe
  40. return typeof test != 'function' || test.hasOwnProperty('prototype');
  41. });
  42. var NATIVE_BIND$1 = functionBindNative;
  43. var call$5 = Function.prototype.call;
  44. var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
  45. return call$5.apply(call$5, arguments);
  46. };
  47. var objectPropertyIsEnumerable = {};
  48. var $propertyIsEnumerable = {}.propertyIsEnumerable;
  49. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  50. var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
  51. // Nashorn ~ JDK8 bug
  52. var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
  53. // `Object.prototype.propertyIsEnumerable` method implementation
  54. // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
  55. objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
  56. var descriptor = getOwnPropertyDescriptor$1(this, V);
  57. return !!descriptor && descriptor.enumerable;
  58. } : $propertyIsEnumerable;
  59. var createPropertyDescriptor$3 = function (bitmap, value) {
  60. return {
  61. enumerable: !(bitmap & 1),
  62. configurable: !(bitmap & 2),
  63. writable: !(bitmap & 4),
  64. value: value
  65. };
  66. };
  67. var NATIVE_BIND = functionBindNative;
  68. var FunctionPrototype$1 = Function.prototype;
  69. var call$4 = FunctionPrototype$1.call;
  70. var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$4, call$4);
  71. var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
  72. return function () {
  73. return call$4.apply(fn, arguments);
  74. };
  75. };
  76. var uncurryThis$a = functionUncurryThis;
  77. var toString$1 = uncurryThis$a({}.toString);
  78. var stringSlice$1 = uncurryThis$a(''.slice);
  79. var classofRaw$1 = function (it) {
  80. return stringSlice$1(toString$1(it), 8, -1);
  81. };
  82. var uncurryThis$9 = functionUncurryThis;
  83. var fails$9 = fails$c;
  84. var classof$3 = classofRaw$1;
  85. var $Object$3 = Object;
  86. var split = uncurryThis$9(''.split);
  87. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  88. var indexedObject = fails$9(function () {
  89. // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  90. // eslint-disable-next-line no-prototype-builtins -- safe
  91. return !$Object$3('z').propertyIsEnumerable(0);
  92. }) ? function (it) {
  93. return classof$3(it) === 'String' ? split(it, '') : $Object$3(it);
  94. } : $Object$3;
  95. // we can't use just `it == null` since of `document.all` special case
  96. // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
  97. var isNullOrUndefined$2 = function (it) {
  98. return it === null || it === undefined;
  99. };
  100. var isNullOrUndefined$1 = isNullOrUndefined$2;
  101. var $TypeError$6 = TypeError;
  102. // `RequireObjectCoercible` abstract operation
  103. // https://tc39.es/ecma262/#sec-requireobjectcoercible
  104. var requireObjectCoercible$2 = function (it) {
  105. if (isNullOrUndefined$1(it)) throw new $TypeError$6("Can't call method on " + it);
  106. return it;
  107. };
  108. // toObject with fallback for non-array-like ES3 strings
  109. var IndexedObject$1 = indexedObject;
  110. var requireObjectCoercible$1 = requireObjectCoercible$2;
  111. var toIndexedObject$3 = function (it) {
  112. return IndexedObject$1(requireObjectCoercible$1(it));
  113. };
  114. // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
  115. var documentAll = typeof document == 'object' && document.all;
  116. // `IsCallable` abstract operation
  117. // https://tc39.es/ecma262/#sec-iscallable
  118. // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
  119. var isCallable$c = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
  120. return typeof argument == 'function' || argument === documentAll;
  121. } : function (argument) {
  122. return typeof argument == 'function';
  123. };
  124. var isCallable$b = isCallable$c;
  125. var isObject$7 = function (it) {
  126. return typeof it == 'object' ? it !== null : isCallable$b(it);
  127. };
  128. var global$9 = global$a;
  129. var isCallable$a = isCallable$c;
  130. var aFunction = function (argument) {
  131. return isCallable$a(argument) ? argument : undefined;
  132. };
  133. var getBuiltIn$3 = function (namespace, method) {
  134. return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
  135. };
  136. var uncurryThis$8 = functionUncurryThis;
  137. var objectIsPrototypeOf = uncurryThis$8({}.isPrototypeOf);
  138. var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
  139. var global$8 = global$a;
  140. var userAgent = engineUserAgent;
  141. var process = global$8.process;
  142. var Deno = global$8.Deno;
  143. var versions = process && process.versions || Deno && Deno.version;
  144. var v8 = versions && versions.v8;
  145. var match, version;
  146. if (v8) {
  147. match = v8.split('.');
  148. // in old Chrome, versions of V8 isn't V8 = Chrome / 10
  149. // but their correct versions are not interesting for us
  150. version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
  151. }
  152. // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
  153. // so check `userAgent` even if `.v8` exists, but 0
  154. if (!version && userAgent) {
  155. match = userAgent.match(/Edge\/(\d+)/);
  156. if (!match || match[1] >= 74) {
  157. match = userAgent.match(/Chrome\/(\d+)/);
  158. if (match) version = +match[1];
  159. }
  160. }
  161. var engineV8Version = version;
  162. /* eslint-disable es/no-symbol -- required for testing */
  163. var V8_VERSION$2 = engineV8Version;
  164. var fails$8 = fails$c;
  165. var global$7 = global$a;
  166. var $String$3 = global$7.String;
  167. // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
  168. var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
  169. var symbol = Symbol('symbol detection');
  170. // Chrome 38 Symbol has incorrect toString conversion
  171. // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
  172. // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
  173. // of course, fail.
  174. return !$String$3(symbol) || !(Object(symbol) instanceof Symbol) ||
  175. // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
  176. !Symbol.sham && V8_VERSION$2 && V8_VERSION$2 < 41;
  177. });
  178. /* eslint-disable es/no-symbol -- required for testing */
  179. var NATIVE_SYMBOL$1 = symbolConstructorDetection;
  180. var useSymbolAsUid = NATIVE_SYMBOL$1
  181. && !Symbol.sham
  182. && typeof Symbol.iterator == 'symbol';
  183. var getBuiltIn$2 = getBuiltIn$3;
  184. var isCallable$9 = isCallable$c;
  185. var isPrototypeOf = objectIsPrototypeOf;
  186. var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
  187. var $Object$2 = Object;
  188. var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
  189. return typeof it == 'symbol';
  190. } : function (it) {
  191. var $Symbol = getBuiltIn$2('Symbol');
  192. return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
  193. };
  194. var $String$2 = String;
  195. var tryToString$1 = function (argument) {
  196. try {
  197. return $String$2(argument);
  198. } catch (error) {
  199. return 'Object';
  200. }
  201. };
  202. var isCallable$8 = isCallable$c;
  203. var tryToString = tryToString$1;
  204. var $TypeError$5 = TypeError;
  205. // `Assert: IsCallable(argument) is true`
  206. var aCallable$1 = function (argument) {
  207. if (isCallable$8(argument)) return argument;
  208. throw new $TypeError$5(tryToString(argument) + ' is not a function');
  209. };
  210. var aCallable = aCallable$1;
  211. var isNullOrUndefined = isNullOrUndefined$2;
  212. // `GetMethod` abstract operation
  213. // https://tc39.es/ecma262/#sec-getmethod
  214. var getMethod$1 = function (V, P) {
  215. var func = V[P];
  216. return isNullOrUndefined(func) ? undefined : aCallable(func);
  217. };
  218. var call$3 = functionCall;
  219. var isCallable$7 = isCallable$c;
  220. var isObject$6 = isObject$7;
  221. var $TypeError$4 = TypeError;
  222. // `OrdinaryToPrimitive` abstract operation
  223. // https://tc39.es/ecma262/#sec-ordinarytoprimitive
  224. var ordinaryToPrimitive$1 = function (input, pref) {
  225. var fn, val;
  226. if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
  227. if (isCallable$7(fn = input.valueOf) && !isObject$6(val = call$3(fn, input))) return val;
  228. if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
  229. throw new $TypeError$4("Can't convert object to primitive value");
  230. };
  231. var sharedStore = {exports: {}};
  232. var global$6 = global$a;
  233. // eslint-disable-next-line es/no-object-defineproperty -- safe
  234. var defineProperty$2 = Object.defineProperty;
  235. var defineGlobalProperty$3 = function (key, value) {
  236. try {
  237. defineProperty$2(global$6, key, { value: value, configurable: true, writable: true });
  238. } catch (error) {
  239. global$6[key] = value;
  240. } return value;
  241. };
  242. var globalThis$1 = global$a;
  243. var defineGlobalProperty$2 = defineGlobalProperty$3;
  244. var SHARED = '__core-js_shared__';
  245. var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
  246. (store$3.versions || (store$3.versions = [])).push({
  247. version: '3.36.1',
  248. mode: 'global',
  249. copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
  250. license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
  251. source: 'https://github.com/zloirock/core-js'
  252. });
  253. var sharedStoreExports = sharedStore.exports;
  254. var store$2 = sharedStoreExports;
  255. var shared$3 = function (key, value) {
  256. return store$2[key] || (store$2[key] = value || {});
  257. };
  258. var requireObjectCoercible = requireObjectCoercible$2;
  259. var $Object$1 = Object;
  260. // `ToObject` abstract operation
  261. // https://tc39.es/ecma262/#sec-toobject
  262. var toObject$3 = function (argument) {
  263. return $Object$1(requireObjectCoercible(argument));
  264. };
  265. var uncurryThis$7 = functionUncurryThis;
  266. var toObject$2 = toObject$3;
  267. var hasOwnProperty = uncurryThis$7({}.hasOwnProperty);
  268. // `HasOwnProperty` abstract operation
  269. // https://tc39.es/ecma262/#sec-hasownproperty
  270. // eslint-disable-next-line es/no-object-hasown -- safe
  271. var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
  272. return hasOwnProperty(toObject$2(it), key);
  273. };
  274. var uncurryThis$6 = functionUncurryThis;
  275. var id = 0;
  276. var postfix = Math.random();
  277. var toString = uncurryThis$6(1.0.toString);
  278. var uid$2 = function (key) {
  279. return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
  280. };
  281. var global$5 = global$a;
  282. var shared$2 = shared$3;
  283. var hasOwn$6 = hasOwnProperty_1;
  284. var uid$1 = uid$2;
  285. var NATIVE_SYMBOL = symbolConstructorDetection;
  286. var USE_SYMBOL_AS_UID = useSymbolAsUid;
  287. var Symbol$1 = global$5.Symbol;
  288. var WellKnownSymbolsStore = shared$2('wks');
  289. var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
  290. var wellKnownSymbol$6 = function (name) {
  291. if (!hasOwn$6(WellKnownSymbolsStore, name)) {
  292. WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)
  293. ? Symbol$1[name]
  294. : createWellKnownSymbol('Symbol.' + name);
  295. } return WellKnownSymbolsStore[name];
  296. };
  297. var call$2 = functionCall;
  298. var isObject$5 = isObject$7;
  299. var isSymbol$1 = isSymbol$2;
  300. var getMethod = getMethod$1;
  301. var ordinaryToPrimitive = ordinaryToPrimitive$1;
  302. var wellKnownSymbol$5 = wellKnownSymbol$6;
  303. var $TypeError$3 = TypeError;
  304. var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
  305. // `ToPrimitive` abstract operation
  306. // https://tc39.es/ecma262/#sec-toprimitive
  307. var toPrimitive$1 = function (input, pref) {
  308. if (!isObject$5(input) || isSymbol$1(input)) return input;
  309. var exoticToPrim = getMethod(input, TO_PRIMITIVE);
  310. var result;
  311. if (exoticToPrim) {
  312. if (pref === undefined) pref = 'default';
  313. result = call$2(exoticToPrim, input, pref);
  314. if (!isObject$5(result) || isSymbol$1(result)) return result;
  315. throw new $TypeError$3("Can't convert object to primitive value");
  316. }
  317. if (pref === undefined) pref = 'number';
  318. return ordinaryToPrimitive(input, pref);
  319. };
  320. var toPrimitive = toPrimitive$1;
  321. var isSymbol = isSymbol$2;
  322. // `ToPropertyKey` abstract operation
  323. // https://tc39.es/ecma262/#sec-topropertykey
  324. var toPropertyKey$2 = function (argument) {
  325. var key = toPrimitive(argument, 'string');
  326. return isSymbol(key) ? key : key + '';
  327. };
  328. var global$4 = global$a;
  329. var isObject$4 = isObject$7;
  330. var document$1 = global$4.document;
  331. // typeof document.createElement is 'object' in old IE
  332. var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
  333. var documentCreateElement = function (it) {
  334. return EXISTS$1 ? document$1.createElement(it) : {};
  335. };
  336. var DESCRIPTORS$8 = descriptors;
  337. var fails$7 = fails$c;
  338. var createElement = documentCreateElement;
  339. // Thanks to IE8 for its funny defineProperty
  340. var ie8DomDefine = !DESCRIPTORS$8 && !fails$7(function () {
  341. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  342. return Object.defineProperty(createElement('div'), 'a', {
  343. get: function () { return 7; }
  344. }).a !== 7;
  345. });
  346. var DESCRIPTORS$7 = descriptors;
  347. var call$1 = functionCall;
  348. var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
  349. var createPropertyDescriptor$2 = createPropertyDescriptor$3;
  350. var toIndexedObject$2 = toIndexedObject$3;
  351. var toPropertyKey$1 = toPropertyKey$2;
  352. var hasOwn$5 = hasOwnProperty_1;
  353. var IE8_DOM_DEFINE$1 = ie8DomDefine;
  354. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  355. var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
  356. // `Object.getOwnPropertyDescriptor` method
  357. // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
  358. objectGetOwnPropertyDescriptor.f = DESCRIPTORS$7 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
  359. O = toIndexedObject$2(O);
  360. P = toPropertyKey$1(P);
  361. if (IE8_DOM_DEFINE$1) try {
  362. return $getOwnPropertyDescriptor$1(O, P);
  363. } catch (error) { /* empty */ }
  364. if (hasOwn$5(O, P)) return createPropertyDescriptor$2(!call$1(propertyIsEnumerableModule$1.f, O, P), O[P]);
  365. };
  366. var objectDefineProperty = {};
  367. var DESCRIPTORS$6 = descriptors;
  368. var fails$6 = fails$c;
  369. // V8 ~ Chrome 36-
  370. // https://bugs.chromium.org/p/v8/issues/detail?id=3334
  371. var v8PrototypeDefineBug = DESCRIPTORS$6 && fails$6(function () {
  372. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  373. return Object.defineProperty(function () { /* empty */ }, 'prototype', {
  374. value: 42,
  375. writable: false
  376. }).prototype !== 42;
  377. });
  378. var isObject$3 = isObject$7;
  379. var $String$1 = String;
  380. var $TypeError$2 = TypeError;
  381. // `Assert: Type(argument) is Object`
  382. var anObject$2 = function (argument) {
  383. if (isObject$3(argument)) return argument;
  384. throw new $TypeError$2($String$1(argument) + ' is not an object');
  385. };
  386. var DESCRIPTORS$5 = descriptors;
  387. var IE8_DOM_DEFINE = ie8DomDefine;
  388. var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
  389. var anObject$1 = anObject$2;
  390. var toPropertyKey = toPropertyKey$2;
  391. var $TypeError$1 = TypeError;
  392. // eslint-disable-next-line es/no-object-defineproperty -- safe
  393. var $defineProperty = Object.defineProperty;
  394. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  395. var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  396. var ENUMERABLE = 'enumerable';
  397. var CONFIGURABLE$1 = 'configurable';
  398. var WRITABLE = 'writable';
  399. // `Object.defineProperty` method
  400. // https://tc39.es/ecma262/#sec-object.defineproperty
  401. objectDefineProperty.f = DESCRIPTORS$5 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
  402. anObject$1(O);
  403. P = toPropertyKey(P);
  404. anObject$1(Attributes);
  405. if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
  406. var current = $getOwnPropertyDescriptor(O, P);
  407. if (current && current[WRITABLE]) {
  408. O[P] = Attributes.value;
  409. Attributes = {
  410. configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
  411. enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
  412. writable: false
  413. };
  414. }
  415. } return $defineProperty(O, P, Attributes);
  416. } : $defineProperty : function defineProperty(O, P, Attributes) {
  417. anObject$1(O);
  418. P = toPropertyKey(P);
  419. anObject$1(Attributes);
  420. if (IE8_DOM_DEFINE) try {
  421. return $defineProperty(O, P, Attributes);
  422. } catch (error) { /* empty */ }
  423. if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$1('Accessors not supported');
  424. if ('value' in Attributes) O[P] = Attributes.value;
  425. return O;
  426. };
  427. var DESCRIPTORS$4 = descriptors;
  428. var definePropertyModule$3 = objectDefineProperty;
  429. var createPropertyDescriptor$1 = createPropertyDescriptor$3;
  430. var createNonEnumerableProperty$2 = DESCRIPTORS$4 ? function (object, key, value) {
  431. return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
  432. } : function (object, key, value) {
  433. object[key] = value;
  434. return object;
  435. };
  436. var makeBuiltIn$2 = {exports: {}};
  437. var DESCRIPTORS$3 = descriptors;
  438. var hasOwn$4 = hasOwnProperty_1;
  439. var FunctionPrototype = Function.prototype;
  440. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  441. var getDescriptor = DESCRIPTORS$3 && Object.getOwnPropertyDescriptor;
  442. var EXISTS = hasOwn$4(FunctionPrototype, 'name');
  443. // additional protection from minified / mangled / dropped function names
  444. var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
  445. var CONFIGURABLE = EXISTS && (!DESCRIPTORS$3 || (DESCRIPTORS$3 && getDescriptor(FunctionPrototype, 'name').configurable));
  446. var functionName = {
  447. EXISTS: EXISTS,
  448. PROPER: PROPER,
  449. CONFIGURABLE: CONFIGURABLE
  450. };
  451. var uncurryThis$5 = functionUncurryThis;
  452. var isCallable$6 = isCallable$c;
  453. var store$1 = sharedStoreExports;
  454. var functionToString = uncurryThis$5(Function.toString);
  455. // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
  456. if (!isCallable$6(store$1.inspectSource)) {
  457. store$1.inspectSource = function (it) {
  458. return functionToString(it);
  459. };
  460. }
  461. var inspectSource$2 = store$1.inspectSource;
  462. var global$3 = global$a;
  463. var isCallable$5 = isCallable$c;
  464. var WeakMap$1 = global$3.WeakMap;
  465. var weakMapBasicDetection = isCallable$5(WeakMap$1) && /native code/.test(String(WeakMap$1));
  466. var shared$1 = shared$3;
  467. var uid = uid$2;
  468. var keys = shared$1('keys');
  469. var sharedKey$1 = function (key) {
  470. return keys[key] || (keys[key] = uid(key));
  471. };
  472. var hiddenKeys$3 = {};
  473. var NATIVE_WEAK_MAP = weakMapBasicDetection;
  474. var global$2 = global$a;
  475. var isObject$2 = isObject$7;
  476. var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
  477. var hasOwn$3 = hasOwnProperty_1;
  478. var shared = sharedStoreExports;
  479. var sharedKey = sharedKey$1;
  480. var hiddenKeys$2 = hiddenKeys$3;
  481. var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
  482. var TypeError$1 = global$2.TypeError;
  483. var WeakMap = global$2.WeakMap;
  484. var set, get, has;
  485. var enforce = function (it) {
  486. return has(it) ? get(it) : set(it, {});
  487. };
  488. var getterFor = function (TYPE) {
  489. return function (it) {
  490. var state;
  491. if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
  492. throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
  493. } return state;
  494. };
  495. };
  496. if (NATIVE_WEAK_MAP || shared.state) {
  497. var store = shared.state || (shared.state = new WeakMap());
  498. /* eslint-disable no-self-assign -- prototype methods protection */
  499. store.get = store.get;
  500. store.has = store.has;
  501. store.set = store.set;
  502. /* eslint-enable no-self-assign -- prototype methods protection */
  503. set = function (it, metadata) {
  504. if (store.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
  505. metadata.facade = it;
  506. store.set(it, metadata);
  507. return metadata;
  508. };
  509. get = function (it) {
  510. return store.get(it) || {};
  511. };
  512. has = function (it) {
  513. return store.has(it);
  514. };
  515. } else {
  516. var STATE = sharedKey('state');
  517. hiddenKeys$2[STATE] = true;
  518. set = function (it, metadata) {
  519. if (hasOwn$3(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
  520. metadata.facade = it;
  521. createNonEnumerableProperty$1(it, STATE, metadata);
  522. return metadata;
  523. };
  524. get = function (it) {
  525. return hasOwn$3(it, STATE) ? it[STATE] : {};
  526. };
  527. has = function (it) {
  528. return hasOwn$3(it, STATE);
  529. };
  530. }
  531. var internalState = {
  532. set: set,
  533. get: get,
  534. has: has,
  535. enforce: enforce,
  536. getterFor: getterFor
  537. };
  538. var uncurryThis$4 = functionUncurryThis;
  539. var fails$5 = fails$c;
  540. var isCallable$4 = isCallable$c;
  541. var hasOwn$2 = hasOwnProperty_1;
  542. var DESCRIPTORS$2 = descriptors;
  543. var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
  544. var inspectSource$1 = inspectSource$2;
  545. var InternalStateModule = internalState;
  546. var enforceInternalState = InternalStateModule.enforce;
  547. var getInternalState = InternalStateModule.get;
  548. var $String = String;
  549. // eslint-disable-next-line es/no-object-defineproperty -- safe
  550. var defineProperty$1 = Object.defineProperty;
  551. var stringSlice = uncurryThis$4(''.slice);
  552. var replace = uncurryThis$4(''.replace);
  553. var join = uncurryThis$4([].join);
  554. var CONFIGURABLE_LENGTH = DESCRIPTORS$2 && !fails$5(function () {
  555. return defineProperty$1(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
  556. });
  557. var TEMPLATE = String(String).split('String');
  558. var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
  559. if (stringSlice($String(name), 0, 7) === 'Symbol(') {
  560. name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
  561. }
  562. if (options && options.getter) name = 'get ' + name;
  563. if (options && options.setter) name = 'set ' + name;
  564. if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
  565. if (DESCRIPTORS$2) defineProperty$1(value, 'name', { value: name, configurable: true });
  566. else value.name = name;
  567. }
  568. if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
  569. defineProperty$1(value, 'length', { value: options.arity });
  570. }
  571. try {
  572. if (options && hasOwn$2(options, 'constructor') && options.constructor) {
  573. if (DESCRIPTORS$2) defineProperty$1(value, 'prototype', { writable: false });
  574. // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
  575. } else if (value.prototype) value.prototype = undefined;
  576. } catch (error) { /* empty */ }
  577. var state = enforceInternalState(value);
  578. if (!hasOwn$2(state, 'source')) {
  579. state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
  580. } return value;
  581. };
  582. // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
  583. // eslint-disable-next-line no-extend-native -- required
  584. Function.prototype.toString = makeBuiltIn$1(function toString() {
  585. return isCallable$4(this) && getInternalState(this).source || inspectSource$1(this);
  586. }, 'toString');
  587. var makeBuiltInExports = makeBuiltIn$2.exports;
  588. var isCallable$3 = isCallable$c;
  589. var definePropertyModule$2 = objectDefineProperty;
  590. var makeBuiltIn = makeBuiltInExports;
  591. var defineGlobalProperty$1 = defineGlobalProperty$3;
  592. var defineBuiltIn$1 = function (O, key, value, options) {
  593. if (!options) options = {};
  594. var simple = options.enumerable;
  595. var name = options.name !== undefined ? options.name : key;
  596. if (isCallable$3(value)) makeBuiltIn(value, name, options);
  597. if (options.global) {
  598. if (simple) O[key] = value;
  599. else defineGlobalProperty$1(key, value);
  600. } else {
  601. try {
  602. if (!options.unsafe) delete O[key];
  603. else if (O[key]) simple = true;
  604. } catch (error) { /* empty */ }
  605. if (simple) O[key] = value;
  606. else definePropertyModule$2.f(O, key, {
  607. value: value,
  608. enumerable: false,
  609. configurable: !options.nonConfigurable,
  610. writable: !options.nonWritable
  611. });
  612. } return O;
  613. };
  614. var objectGetOwnPropertyNames = {};
  615. var ceil = Math.ceil;
  616. var floor = Math.floor;
  617. // `Math.trunc` method
  618. // https://tc39.es/ecma262/#sec-math.trunc
  619. // eslint-disable-next-line es/no-math-trunc -- safe
  620. var mathTrunc = Math.trunc || function trunc(x) {
  621. var n = +x;
  622. return (n > 0 ? floor : ceil)(n);
  623. };
  624. var trunc = mathTrunc;
  625. // `ToIntegerOrInfinity` abstract operation
  626. // https://tc39.es/ecma262/#sec-tointegerorinfinity
  627. var toIntegerOrInfinity$2 = function (argument) {
  628. var number = +argument;
  629. // eslint-disable-next-line no-self-compare -- NaN check
  630. return number !== number || number === 0 ? 0 : trunc(number);
  631. };
  632. var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
  633. var max = Math.max;
  634. var min$1 = Math.min;
  635. // Helper for a popular repeating case of the spec:
  636. // Let integer be ? ToInteger(index).
  637. // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
  638. var toAbsoluteIndex$1 = function (index, length) {
  639. var integer = toIntegerOrInfinity$1(index);
  640. return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
  641. };
  642. var toIntegerOrInfinity = toIntegerOrInfinity$2;
  643. var min = Math.min;
  644. // `ToLength` abstract operation
  645. // https://tc39.es/ecma262/#sec-tolength
  646. var toLength$1 = function (argument) {
  647. var len = toIntegerOrInfinity(argument);
  648. return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
  649. };
  650. var toLength = toLength$1;
  651. // `LengthOfArrayLike` abstract operation
  652. // https://tc39.es/ecma262/#sec-lengthofarraylike
  653. var lengthOfArrayLike$2 = function (obj) {
  654. return toLength(obj.length);
  655. };
  656. var toIndexedObject$1 = toIndexedObject$3;
  657. var toAbsoluteIndex = toAbsoluteIndex$1;
  658. var lengthOfArrayLike$1 = lengthOfArrayLike$2;
  659. // `Array.prototype.{ indexOf, includes }` methods implementation
  660. var createMethod = function (IS_INCLUDES) {
  661. return function ($this, el, fromIndex) {
  662. var O = toIndexedObject$1($this);
  663. var length = lengthOfArrayLike$1(O);
  664. if (length === 0) return !IS_INCLUDES && -1;
  665. var index = toAbsoluteIndex(fromIndex, length);
  666. var value;
  667. // Array#includes uses SameValueZero equality algorithm
  668. // eslint-disable-next-line no-self-compare -- NaN check
  669. if (IS_INCLUDES && el !== el) while (length > index) {
  670. value = O[index++];
  671. // eslint-disable-next-line no-self-compare -- NaN check
  672. if (value !== value) return true;
  673. // Array#indexOf ignores holes, Array#includes - not
  674. } else for (;length > index; index++) {
  675. if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
  676. } return !IS_INCLUDES && -1;
  677. };
  678. };
  679. var arrayIncludes = {
  680. // `Array.prototype.includes` method
  681. // https://tc39.es/ecma262/#sec-array.prototype.includes
  682. includes: createMethod(true),
  683. // `Array.prototype.indexOf` method
  684. // https://tc39.es/ecma262/#sec-array.prototype.indexof
  685. indexOf: createMethod(false)
  686. };
  687. var uncurryThis$3 = functionUncurryThis;
  688. var hasOwn$1 = hasOwnProperty_1;
  689. var toIndexedObject = toIndexedObject$3;
  690. var indexOf = arrayIncludes.indexOf;
  691. var hiddenKeys$1 = hiddenKeys$3;
  692. var push = uncurryThis$3([].push);
  693. var objectKeysInternal = function (object, names) {
  694. var O = toIndexedObject(object);
  695. var i = 0;
  696. var result = [];
  697. var key;
  698. for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push(result, key);
  699. // Don't enum bug & hidden keys
  700. while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
  701. ~indexOf(result, key) || push(result, key);
  702. }
  703. return result;
  704. };
  705. // IE8- don't enum bug keys
  706. var enumBugKeys$2 = [
  707. 'constructor',
  708. 'hasOwnProperty',
  709. 'isPrototypeOf',
  710. 'propertyIsEnumerable',
  711. 'toLocaleString',
  712. 'toString',
  713. 'valueOf'
  714. ];
  715. var internalObjectKeys$1 = objectKeysInternal;
  716. var enumBugKeys$1 = enumBugKeys$2;
  717. var hiddenKeys = enumBugKeys$1.concat('length', 'prototype');
  718. // `Object.getOwnPropertyNames` method
  719. // https://tc39.es/ecma262/#sec-object.getownpropertynames
  720. // eslint-disable-next-line es/no-object-getownpropertynames -- safe
  721. objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
  722. return internalObjectKeys$1(O, hiddenKeys);
  723. };
  724. var objectGetOwnPropertySymbols = {};
  725. // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
  726. objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
  727. var getBuiltIn$1 = getBuiltIn$3;
  728. var uncurryThis$2 = functionUncurryThis;
  729. var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
  730. var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
  731. var anObject = anObject$2;
  732. var concat$1 = uncurryThis$2([].concat);
  733. // all object keys, includes non-enumerable and symbols
  734. var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
  735. var keys = getOwnPropertyNamesModule.f(anObject(it));
  736. var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
  737. return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
  738. };
  739. var hasOwn = hasOwnProperty_1;
  740. var ownKeys = ownKeys$1;
  741. var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
  742. var definePropertyModule$1 = objectDefineProperty;
  743. var copyConstructorProperties$1 = function (target, source, exceptions) {
  744. var keys = ownKeys(source);
  745. var defineProperty = definePropertyModule$1.f;
  746. var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
  747. for (var i = 0; i < keys.length; i++) {
  748. var key = keys[i];
  749. if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
  750. defineProperty(target, key, getOwnPropertyDescriptor(source, key));
  751. }
  752. }
  753. };
  754. var fails$4 = fails$c;
  755. var isCallable$2 = isCallable$c;
  756. var replacement = /#|\.prototype\./;
  757. var isForced$1 = function (feature, detection) {
  758. var value = data[normalize(feature)];
  759. return value === POLYFILL ? true
  760. : value === NATIVE ? false
  761. : isCallable$2(detection) ? fails$4(detection)
  762. : !!detection;
  763. };
  764. var normalize = isForced$1.normalize = function (string) {
  765. return String(string).replace(replacement, '.').toLowerCase();
  766. };
  767. var data = isForced$1.data = {};
  768. var NATIVE = isForced$1.NATIVE = 'N';
  769. var POLYFILL = isForced$1.POLYFILL = 'P';
  770. var isForced_1 = isForced$1;
  771. var global$1 = global$a;
  772. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  773. var createNonEnumerableProperty = createNonEnumerableProperty$2;
  774. var defineBuiltIn = defineBuiltIn$1;
  775. var defineGlobalProperty = defineGlobalProperty$3;
  776. var copyConstructorProperties = copyConstructorProperties$1;
  777. var isForced = isForced_1;
  778. /*
  779. options.target - name of the target object
  780. options.global - target is the global object
  781. options.stat - export as static methods of target
  782. options.proto - export as prototype methods of target
  783. options.real - real prototype method for the `pure` version
  784. options.forced - export even if the native feature is available
  785. options.bind - bind methods to the target, required for the `pure` version
  786. options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
  787. options.unsafe - use the simple assignment of property instead of delete + defineProperty
  788. options.sham - add a flag to not completely full polyfills
  789. options.enumerable - export as enumerable property
  790. options.dontCallGetSet - prevent calling a getter on target
  791. options.name - the .name of the function if it does not match the key
  792. */
  793. var _export = function (options, source) {
  794. var TARGET = options.target;
  795. var GLOBAL = options.global;
  796. var STATIC = options.stat;
  797. var FORCED, target, key, targetProperty, sourceProperty, descriptor;
  798. if (GLOBAL) {
  799. target = global$1;
  800. } else if (STATIC) {
  801. target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
  802. } else {
  803. target = global$1[TARGET] && global$1[TARGET].prototype;
  804. }
  805. if (target) for (key in source) {
  806. sourceProperty = source[key];
  807. if (options.dontCallGetSet) {
  808. descriptor = getOwnPropertyDescriptor(target, key);
  809. targetProperty = descriptor && descriptor.value;
  810. } else targetProperty = target[key];
  811. FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
  812. // contained in target
  813. if (!FORCED && targetProperty !== undefined) {
  814. if (typeof sourceProperty == typeof targetProperty) continue;
  815. copyConstructorProperties(sourceProperty, targetProperty);
  816. }
  817. // add a flag to not completely full polyfills
  818. if (options.sham || (targetProperty && targetProperty.sham)) {
  819. createNonEnumerableProperty(sourceProperty, 'sham', true);
  820. }
  821. defineBuiltIn(target, key, sourceProperty, options);
  822. }
  823. };
  824. var classof$2 = classofRaw$1;
  825. // `IsArray` abstract operation
  826. // https://tc39.es/ecma262/#sec-isarray
  827. // eslint-disable-next-line es/no-array-isarray -- safe
  828. var isArray$2 = Array.isArray || function isArray(argument) {
  829. return classof$2(argument) === 'Array';
  830. };
  831. var $TypeError = TypeError;
  832. var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
  833. var doesNotExceedSafeInteger$1 = function (it) {
  834. if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
  835. return it;
  836. };
  837. var DESCRIPTORS$1 = descriptors;
  838. var definePropertyModule = objectDefineProperty;
  839. var createPropertyDescriptor = createPropertyDescriptor$3;
  840. var createProperty$1 = function (object, key, value) {
  841. if (DESCRIPTORS$1) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
  842. else object[key] = value;
  843. };
  844. var wellKnownSymbol$4 = wellKnownSymbol$6;
  845. var TO_STRING_TAG$1 = wellKnownSymbol$4('toStringTag');
  846. var test = {};
  847. test[TO_STRING_TAG$1] = 'z';
  848. var toStringTagSupport = String(test) === '[object z]';
  849. var TO_STRING_TAG_SUPPORT = toStringTagSupport;
  850. var isCallable$1 = isCallable$c;
  851. var classofRaw = classofRaw$1;
  852. var wellKnownSymbol$3 = wellKnownSymbol$6;
  853. var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
  854. var $Object = Object;
  855. // ES3 wrong here
  856. var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
  857. // fallback for IE11 Script Access Denied error
  858. var tryGet = function (it, key) {
  859. try {
  860. return it[key];
  861. } catch (error) { /* empty */ }
  862. };
  863. // getting tag from ES6+ `Object.prototype.toString`
  864. var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
  865. var O, tag, result;
  866. return it === undefined ? 'Undefined' : it === null ? 'Null'
  867. // @@toStringTag case
  868. : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
  869. // builtinTag case
  870. : CORRECT_ARGUMENTS ? classofRaw(O)
  871. // ES3 arguments fallback
  872. : (result = classofRaw(O)) === 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
  873. };
  874. var uncurryThis$1 = functionUncurryThis;
  875. var fails$3 = fails$c;
  876. var isCallable = isCallable$c;
  877. var classof = classof$1;
  878. var getBuiltIn = getBuiltIn$3;
  879. var inspectSource = inspectSource$2;
  880. var noop = function () { /* empty */ };
  881. var construct = getBuiltIn('Reflect', 'construct');
  882. var constructorRegExp = /^\s*(?:class|function)\b/;
  883. var exec = uncurryThis$1(constructorRegExp.exec);
  884. var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
  885. var isConstructorModern = function isConstructor(argument) {
  886. if (!isCallable(argument)) return false;
  887. try {
  888. construct(noop, [], argument);
  889. return true;
  890. } catch (error) {
  891. return false;
  892. }
  893. };
  894. var isConstructorLegacy = function isConstructor(argument) {
  895. if (!isCallable(argument)) return false;
  896. switch (classof(argument)) {
  897. case 'AsyncFunction':
  898. case 'GeneratorFunction':
  899. case 'AsyncGeneratorFunction': return false;
  900. }
  901. try {
  902. // we can't check .prototype since constructors produced by .bind haven't it
  903. // `Function#toString` throws on some built-it function in some legacy engines
  904. // (for example, `DOMQuad` and similar in FF41-)
  905. return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
  906. } catch (error) {
  907. return true;
  908. }
  909. };
  910. isConstructorLegacy.sham = true;
  911. // `IsConstructor` abstract operation
  912. // https://tc39.es/ecma262/#sec-isconstructor
  913. var isConstructor$1 = !construct || fails$3(function () {
  914. var called;
  915. return isConstructorModern(isConstructorModern.call)
  916. || !isConstructorModern(Object)
  917. || !isConstructorModern(function () { called = true; })
  918. || called;
  919. }) ? isConstructorLegacy : isConstructorModern;
  920. var isArray$1 = isArray$2;
  921. var isConstructor = isConstructor$1;
  922. var isObject$1 = isObject$7;
  923. var wellKnownSymbol$2 = wellKnownSymbol$6;
  924. var SPECIES$1 = wellKnownSymbol$2('species');
  925. var $Array = Array;
  926. // a part of `ArraySpeciesCreate` abstract operation
  927. // https://tc39.es/ecma262/#sec-arrayspeciescreate
  928. var arraySpeciesConstructor$1 = function (originalArray) {
  929. var C;
  930. if (isArray$1(originalArray)) {
  931. C = originalArray.constructor;
  932. // cross-realm fallback
  933. if (isConstructor(C) && (C === $Array || isArray$1(C.prototype))) C = undefined;
  934. else if (isObject$1(C)) {
  935. C = C[SPECIES$1];
  936. if (C === null) C = undefined;
  937. }
  938. } return C === undefined ? $Array : C;
  939. };
  940. var arraySpeciesConstructor = arraySpeciesConstructor$1;
  941. // `ArraySpeciesCreate` abstract operation
  942. // https://tc39.es/ecma262/#sec-arrayspeciescreate
  943. var arraySpeciesCreate$1 = function (originalArray, length) {
  944. return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
  945. };
  946. var fails$2 = fails$c;
  947. var wellKnownSymbol$1 = wellKnownSymbol$6;
  948. var V8_VERSION$1 = engineV8Version;
  949. var SPECIES = wellKnownSymbol$1('species');
  950. var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
  951. // We can't use this feature detection in V8 since it causes
  952. // deoptimization and serious performance degradation
  953. // https://github.com/zloirock/core-js/issues/677
  954. return V8_VERSION$1 >= 51 || !fails$2(function () {
  955. var array = [];
  956. var constructor = array.constructor = {};
  957. constructor[SPECIES] = function () {
  958. return { foo: 1 };
  959. };
  960. return array[METHOD_NAME](Boolean).foo !== 1;
  961. });
  962. };
  963. var $$1 = _export;
  964. var fails$1 = fails$c;
  965. var isArray = isArray$2;
  966. var isObject = isObject$7;
  967. var toObject$1 = toObject$3;
  968. var lengthOfArrayLike = lengthOfArrayLike$2;
  969. var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
  970. var createProperty = createProperty$1;
  971. var arraySpeciesCreate = arraySpeciesCreate$1;
  972. var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
  973. var wellKnownSymbol = wellKnownSymbol$6;
  974. var V8_VERSION = engineV8Version;
  975. var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
  976. // We can't use this feature detection in V8 since it causes
  977. // deoptimization and serious performance degradation
  978. // https://github.com/zloirock/core-js/issues/679
  979. var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails$1(function () {
  980. var array = [];
  981. array[IS_CONCAT_SPREADABLE] = false;
  982. return array.concat()[0] !== array;
  983. });
  984. var isConcatSpreadable = function (O) {
  985. if (!isObject(O)) return false;
  986. var spreadable = O[IS_CONCAT_SPREADABLE];
  987. return spreadable !== undefined ? !!spreadable : isArray(O);
  988. };
  989. var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !arrayMethodHasSpeciesSupport('concat');
  990. // `Array.prototype.concat` method
  991. // https://tc39.es/ecma262/#sec-array.prototype.concat
  992. // with adding support of @@isConcatSpreadable and @@species
  993. $$1({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
  994. // eslint-disable-next-line no-unused-vars -- required for `.length`
  995. concat: function concat(arg) {
  996. var O = toObject$1(this);
  997. var A = arraySpeciesCreate(O, 0);
  998. var n = 0;
  999. var i, k, length, len, E;
  1000. for (i = -1, length = arguments.length; i < length; i++) {
  1001. E = i === -1 ? O : arguments[i];
  1002. if (isConcatSpreadable(E)) {
  1003. len = lengthOfArrayLike(E);
  1004. doesNotExceedSafeInteger(n + len);
  1005. for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
  1006. } else {
  1007. doesNotExceedSafeInteger(n + 1);
  1008. createProperty(A, n++, E);
  1009. }
  1010. }
  1011. A.length = n;
  1012. return A;
  1013. }
  1014. });
  1015. var internalObjectKeys = objectKeysInternal;
  1016. var enumBugKeys = enumBugKeys$2;
  1017. // `Object.keys` method
  1018. // https://tc39.es/ecma262/#sec-object.keys
  1019. // eslint-disable-next-line es/no-object-keys -- safe
  1020. var objectKeys$1 = Object.keys || function keys(O) {
  1021. return internalObjectKeys(O, enumBugKeys);
  1022. };
  1023. var DESCRIPTORS = descriptors;
  1024. var uncurryThis = functionUncurryThis;
  1025. var call = functionCall;
  1026. var fails = fails$c;
  1027. var objectKeys = objectKeys$1;
  1028. var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
  1029. var propertyIsEnumerableModule = objectPropertyIsEnumerable;
  1030. var toObject = toObject$3;
  1031. var IndexedObject = indexedObject;
  1032. // eslint-disable-next-line es/no-object-assign -- safe
  1033. var $assign = Object.assign;
  1034. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  1035. var defineProperty = Object.defineProperty;
  1036. var concat = uncurryThis([].concat);
  1037. // `Object.assign` method
  1038. // https://tc39.es/ecma262/#sec-object.assign
  1039. var objectAssign = !$assign || fails(function () {
  1040. // should have correct order of operations (Edge bug)
  1041. if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
  1042. enumerable: true,
  1043. get: function () {
  1044. defineProperty(this, 'b', {
  1045. value: 3,
  1046. enumerable: false
  1047. });
  1048. }
  1049. }), { b: 2 })).b !== 1) return true;
  1050. // should work with symbols and should have deterministic property order (V8 bug)
  1051. var A = {};
  1052. var B = {};
  1053. // eslint-disable-next-line es/no-symbol -- safe
  1054. var symbol = Symbol('assign detection');
  1055. var alphabet = 'abcdefghijklmnopqrst';
  1056. A[symbol] = 7;
  1057. alphabet.split('').forEach(function (chr) { B[chr] = chr; });
  1058. return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join('') !== alphabet;
  1059. }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
  1060. var T = toObject(target);
  1061. var argumentsLength = arguments.length;
  1062. var index = 1;
  1063. var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
  1064. var propertyIsEnumerable = propertyIsEnumerableModule.f;
  1065. while (argumentsLength > index) {
  1066. var S = IndexedObject(arguments[index++]);
  1067. var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
  1068. var length = keys.length;
  1069. var j = 0;
  1070. var key;
  1071. while (length > j) {
  1072. key = keys[j++];
  1073. if (!DESCRIPTORS || call(propertyIsEnumerable, S, key)) T[key] = S[key];
  1074. }
  1075. } return T;
  1076. } : $assign;
  1077. var $ = _export;
  1078. var assign = objectAssign;
  1079. // `Object.assign` method
  1080. // https://tc39.es/ecma262/#sec-object.assign
  1081. // eslint-disable-next-line es/no-object-assign -- required for testing
  1082. $({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
  1083. assign: assign
  1084. });
  1085. /**
  1086. * Bootstrap Table Russian translation
  1087. * Author: Dunaevsky Maxim <dunmaksim@yandex.ru>
  1088. */
  1089. $$2.fn.bootstrapTable.locales['ru-RU'] = $$2.fn.bootstrapTable.locales['ru'] = {
  1090. formatCopyRows: function formatCopyRows() {
  1091. return 'Скопировать строки';
  1092. },
  1093. formatPrint: function formatPrint() {
  1094. return 'Печать';
  1095. },
  1096. formatLoadingMessage: function formatLoadingMessage() {
  1097. return 'Пожалуйста, подождите, идёт загрузка';
  1098. },
  1099. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1100. return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
  1101. },
  1102. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
  1103. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  1104. return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows, " (\u043E\u0442\u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E, \u0432\u0441\u0435\u0433\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 ").concat(totalNotFiltered, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439)");
  1105. }
  1106. return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows);
  1107. },
  1108. formatSRPaginationPreText: function formatSRPaginationPreText() {
  1109. return 'предыдущая страница';
  1110. },
  1111. formatSRPaginationPageText: function formatSRPaginationPageText(page) {
  1112. return "\u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 ".concat(page);
  1113. },
  1114. formatSRPaginationNextText: function formatSRPaginationNextText() {
  1115. return 'следующая страница';
  1116. },
  1117. formatDetailPagination: function formatDetailPagination(totalRows) {
  1118. return "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u043E ".concat(totalRows, " \u0441\u0442\u0440\u043E\u043A");
  1119. },
  1120. formatClearSearch: function formatClearSearch() {
  1121. return 'Очистить фильтры';
  1122. },
  1123. formatSearch: function formatSearch() {
  1124. return 'Поиск';
  1125. },
  1126. formatNoMatches: function formatNoMatches() {
  1127. return 'Ничего не найдено';
  1128. },
  1129. formatPaginationSwitch: function formatPaginationSwitch() {
  1130. return 'Скрыть/Показать постраничную навигацию';
  1131. },
  1132. formatPaginationSwitchDown: function formatPaginationSwitchDown() {
  1133. return 'Показать постраничную навигацию';
  1134. },
  1135. formatPaginationSwitchUp: function formatPaginationSwitchUp() {
  1136. return 'Скрыть постраничную навигацию';
  1137. },
  1138. formatRefresh: function formatRefresh() {
  1139. return 'Обновить';
  1140. },
  1141. formatToggleOn: function formatToggleOn() {
  1142. return 'Показать записи в виде карточек';
  1143. },
  1144. formatToggleOff: function formatToggleOff() {
  1145. return 'Табличный режим просмотра';
  1146. },
  1147. formatColumns: function formatColumns() {
  1148. return 'Колонки';
  1149. },
  1150. formatColumnsToggleAll: function formatColumnsToggleAll() {
  1151. return 'Выбрать все';
  1152. },
  1153. formatFullscreen: function formatFullscreen() {
  1154. return 'Полноэкранный режим';
  1155. },
  1156. formatAllRows: function formatAllRows() {
  1157. return 'Все';
  1158. },
  1159. formatAutoRefresh: function formatAutoRefresh() {
  1160. return 'Автоматическое обновление';
  1161. },
  1162. formatExport: function formatExport() {
  1163. return 'Экспортировать данные';
  1164. },
  1165. formatJumpTo: function formatJumpTo() {
  1166. return 'Стр.';
  1167. },
  1168. formatAdvancedSearch: function formatAdvancedSearch() {
  1169. return 'Расширенный поиск';
  1170. },
  1171. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1172. return 'Закрыть';
  1173. },
  1174. formatFilterControlSwitch: function formatFilterControlSwitch() {
  1175. return 'Скрыть/Показать панель инструментов';
  1176. },
  1177. formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
  1178. return 'Скрыть панель инструментов';
  1179. },
  1180. formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
  1181. return 'Показать панель инструментов';
  1182. }
  1183. };
  1184. Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ru-RU']);
  1185. }));