bootstrap-table-ru-RU.js 45 KB

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