bootstrap-table-ru-RU.js 38 KB

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