bootstrap-table-editable.js 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451
  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 = global || self, factory(global.jQuery));
  5. }(this, function ($) { 'use strict';
  6. $ = $ && $.hasOwnProperty('default') ? $['default'] : $;
  7. var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
  8. function createCommonjsModule(fn, module) {
  9. return module = { exports: {} }, fn(module, module.exports), module.exports;
  10. }
  11. var O = 'object';
  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 no-undef
  18. check(typeof globalThis == O && globalThis) ||
  19. check(typeof window == O && window) ||
  20. check(typeof self == O && self) ||
  21. check(typeof commonjsGlobal == O && commonjsGlobal) ||
  22. // eslint-disable-next-line no-new-func
  23. Function('return this')();
  24. var fails = function (exec) {
  25. try {
  26. return !!exec();
  27. } catch (error) {
  28. return true;
  29. }
  30. };
  31. // Thank's IE8 for his funny defineProperty
  32. var descriptors = !fails(function () {
  33. return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
  34. });
  35. var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
  36. var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  37. // Nashorn ~ JDK8 bug
  38. var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
  39. // `Object.prototype.propertyIsEnumerable` method implementation
  40. // https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable
  41. var f = NASHORN_BUG ? function propertyIsEnumerable(V) {
  42. var descriptor = getOwnPropertyDescriptor(this, V);
  43. return !!descriptor && descriptor.enumerable;
  44. } : nativePropertyIsEnumerable;
  45. var objectPropertyIsEnumerable = {
  46. f: f
  47. };
  48. var createPropertyDescriptor = function (bitmap, value) {
  49. return {
  50. enumerable: !(bitmap & 1),
  51. configurable: !(bitmap & 2),
  52. writable: !(bitmap & 4),
  53. value: value
  54. };
  55. };
  56. var toString = {}.toString;
  57. var classofRaw = function (it) {
  58. return toString.call(it).slice(8, -1);
  59. };
  60. var split = ''.split;
  61. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  62. var indexedObject = fails(function () {
  63. // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  64. // eslint-disable-next-line no-prototype-builtins
  65. return !Object('z').propertyIsEnumerable(0);
  66. }) ? function (it) {
  67. return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
  68. } : Object;
  69. // `RequireObjectCoercible` abstract operation
  70. // https://tc39.github.io/ecma262/#sec-requireobjectcoercible
  71. var requireObjectCoercible = function (it) {
  72. if (it == undefined) throw TypeError("Can't call method on " + it);
  73. return it;
  74. };
  75. // toObject with fallback for non-array-like ES3 strings
  76. var toIndexedObject = function (it) {
  77. return indexedObject(requireObjectCoercible(it));
  78. };
  79. var isObject = function (it) {
  80. return typeof it === 'object' ? it !== null : typeof it === 'function';
  81. };
  82. // `ToPrimitive` abstract operation
  83. // https://tc39.github.io/ecma262/#sec-toprimitive
  84. // instead of the ES6 spec version, we didn't implement @@toPrimitive case
  85. // and the second argument - flag - preferred type is a string
  86. var toPrimitive = function (input, PREFERRED_STRING) {
  87. if (!isObject(input)) return input;
  88. var fn, val;
  89. if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
  90. if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
  91. if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
  92. throw TypeError("Can't convert object to primitive value");
  93. };
  94. var hasOwnProperty = {}.hasOwnProperty;
  95. var has = function (it, key) {
  96. return hasOwnProperty.call(it, key);
  97. };
  98. var document = global_1.document;
  99. // typeof document.createElement is 'object' in old IE
  100. var EXISTS = isObject(document) && isObject(document.createElement);
  101. var documentCreateElement = function (it) {
  102. return EXISTS ? document.createElement(it) : {};
  103. };
  104. // Thank's IE8 for his funny defineProperty
  105. var ie8DomDefine = !descriptors && !fails(function () {
  106. return Object.defineProperty(documentCreateElement('div'), 'a', {
  107. get: function () { return 7; }
  108. }).a != 7;
  109. });
  110. var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  111. // `Object.getOwnPropertyDescriptor` method
  112. // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor
  113. var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
  114. O = toIndexedObject(O);
  115. P = toPrimitive(P, true);
  116. if (ie8DomDefine) try {
  117. return nativeGetOwnPropertyDescriptor(O, P);
  118. } catch (error) { /* empty */ }
  119. if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
  120. };
  121. var objectGetOwnPropertyDescriptor = {
  122. f: f$1
  123. };
  124. var anObject = function (it) {
  125. if (!isObject(it)) {
  126. throw TypeError(String(it) + ' is not an object');
  127. } return it;
  128. };
  129. var nativeDefineProperty = Object.defineProperty;
  130. // `Object.defineProperty` method
  131. // https://tc39.github.io/ecma262/#sec-object.defineproperty
  132. var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
  133. anObject(O);
  134. P = toPrimitive(P, true);
  135. anObject(Attributes);
  136. if (ie8DomDefine) try {
  137. return nativeDefineProperty(O, P, Attributes);
  138. } catch (error) { /* empty */ }
  139. if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
  140. if ('value' in Attributes) O[P] = Attributes.value;
  141. return O;
  142. };
  143. var objectDefineProperty = {
  144. f: f$2
  145. };
  146. var hide = descriptors ? function (object, key, value) {
  147. return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
  148. } : function (object, key, value) {
  149. object[key] = value;
  150. return object;
  151. };
  152. var setGlobal = function (key, value) {
  153. try {
  154. hide(global_1, key, value);
  155. } catch (error) {
  156. global_1[key] = value;
  157. } return value;
  158. };
  159. var shared = createCommonjsModule(function (module) {
  160. var SHARED = '__core-js_shared__';
  161. var store = global_1[SHARED] || setGlobal(SHARED, {});
  162. (module.exports = function (key, value) {
  163. return store[key] || (store[key] = value !== undefined ? value : {});
  164. })('versions', []).push({
  165. version: '3.1.3',
  166. mode: 'global',
  167. copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
  168. });
  169. });
  170. var functionToString = shared('native-function-to-string', Function.toString);
  171. var WeakMap = global_1.WeakMap;
  172. var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(functionToString.call(WeakMap));
  173. var id = 0;
  174. var postfix = Math.random();
  175. var uid = function (key) {
  176. return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
  177. };
  178. var keys = shared('keys');
  179. var sharedKey = function (key) {
  180. return keys[key] || (keys[key] = uid(key));
  181. };
  182. var hiddenKeys = {};
  183. var WeakMap$1 = global_1.WeakMap;
  184. var set, get, has$1;
  185. var enforce = function (it) {
  186. return has$1(it) ? get(it) : set(it, {});
  187. };
  188. var getterFor = function (TYPE) {
  189. return function (it) {
  190. var state;
  191. if (!isObject(it) || (state = get(it)).type !== TYPE) {
  192. throw TypeError('Incompatible receiver, ' + TYPE + ' required');
  193. } return state;
  194. };
  195. };
  196. if (nativeWeakMap) {
  197. var store = new WeakMap$1();
  198. var wmget = store.get;
  199. var wmhas = store.has;
  200. var wmset = store.set;
  201. set = function (it, metadata) {
  202. wmset.call(store, it, metadata);
  203. return metadata;
  204. };
  205. get = function (it) {
  206. return wmget.call(store, it) || {};
  207. };
  208. has$1 = function (it) {
  209. return wmhas.call(store, it);
  210. };
  211. } else {
  212. var STATE = sharedKey('state');
  213. hiddenKeys[STATE] = true;
  214. set = function (it, metadata) {
  215. hide(it, STATE, metadata);
  216. return metadata;
  217. };
  218. get = function (it) {
  219. return has(it, STATE) ? it[STATE] : {};
  220. };
  221. has$1 = function (it) {
  222. return has(it, STATE);
  223. };
  224. }
  225. var internalState = {
  226. set: set,
  227. get: get,
  228. has: has$1,
  229. enforce: enforce,
  230. getterFor: getterFor
  231. };
  232. var redefine = createCommonjsModule(function (module) {
  233. var getInternalState = internalState.get;
  234. var enforceInternalState = internalState.enforce;
  235. var TEMPLATE = String(functionToString).split('toString');
  236. shared('inspectSource', function (it) {
  237. return functionToString.call(it);
  238. });
  239. (module.exports = function (O, key, value, options) {
  240. var unsafe = options ? !!options.unsafe : false;
  241. var simple = options ? !!options.enumerable : false;
  242. var noTargetGet = options ? !!options.noTargetGet : false;
  243. if (typeof value == 'function') {
  244. if (typeof key == 'string' && !has(value, 'name')) hide(value, 'name', key);
  245. enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
  246. }
  247. if (O === global_1) {
  248. if (simple) O[key] = value;
  249. else setGlobal(key, value);
  250. return;
  251. } else if (!unsafe) {
  252. delete O[key];
  253. } else if (!noTargetGet && O[key]) {
  254. simple = true;
  255. }
  256. if (simple) O[key] = value;
  257. else hide(O, key, value);
  258. // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
  259. })(Function.prototype, 'toString', function toString() {
  260. return typeof this == 'function' && getInternalState(this).source || functionToString.call(this);
  261. });
  262. });
  263. var path = global_1;
  264. var aFunction = function (variable) {
  265. return typeof variable == 'function' ? variable : undefined;
  266. };
  267. var getBuiltIn = function (namespace, method) {
  268. return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
  269. : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
  270. };
  271. var ceil = Math.ceil;
  272. var floor = Math.floor;
  273. // `ToInteger` abstract operation
  274. // https://tc39.github.io/ecma262/#sec-tointeger
  275. var toInteger = function (argument) {
  276. return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
  277. };
  278. var min = Math.min;
  279. // `ToLength` abstract operation
  280. // https://tc39.github.io/ecma262/#sec-tolength
  281. var toLength = function (argument) {
  282. return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
  283. };
  284. var max = Math.max;
  285. var min$1 = Math.min;
  286. // Helper for a popular repeating case of the spec:
  287. // Let integer be ? ToInteger(index).
  288. // If integer < 0, let result be max((length + integer), 0); else let result be min(length, length).
  289. var toAbsoluteIndex = function (index, length) {
  290. var integer = toInteger(index);
  291. return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
  292. };
  293. // `Array.prototype.{ indexOf, includes }` methods implementation
  294. var createMethod = function (IS_INCLUDES) {
  295. return function ($this, el, fromIndex) {
  296. var O = toIndexedObject($this);
  297. var length = toLength(O.length);
  298. var index = toAbsoluteIndex(fromIndex, length);
  299. var value;
  300. // Array#includes uses SameValueZero equality algorithm
  301. // eslint-disable-next-line no-self-compare
  302. if (IS_INCLUDES && el != el) while (length > index) {
  303. value = O[index++];
  304. // eslint-disable-next-line no-self-compare
  305. if (value != value) return true;
  306. // Array#indexOf ignores holes, Array#includes - not
  307. } else for (;length > index; index++) {
  308. if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
  309. } return !IS_INCLUDES && -1;
  310. };
  311. };
  312. var arrayIncludes = {
  313. // `Array.prototype.includes` method
  314. // https://tc39.github.io/ecma262/#sec-array.prototype.includes
  315. includes: createMethod(true),
  316. // `Array.prototype.indexOf` method
  317. // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
  318. indexOf: createMethod(false)
  319. };
  320. var indexOf = arrayIncludes.indexOf;
  321. var objectKeysInternal = function (object, names) {
  322. var O = toIndexedObject(object);
  323. var i = 0;
  324. var result = [];
  325. var key;
  326. for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
  327. // Don't enum bug & hidden keys
  328. while (names.length > i) if (has(O, key = names[i++])) {
  329. ~indexOf(result, key) || result.push(key);
  330. }
  331. return result;
  332. };
  333. // IE8- don't enum bug keys
  334. var enumBugKeys = [
  335. 'constructor',
  336. 'hasOwnProperty',
  337. 'isPrototypeOf',
  338. 'propertyIsEnumerable',
  339. 'toLocaleString',
  340. 'toString',
  341. 'valueOf'
  342. ];
  343. var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
  344. // `Object.getOwnPropertyNames` method
  345. // https://tc39.github.io/ecma262/#sec-object.getownpropertynames
  346. var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
  347. return objectKeysInternal(O, hiddenKeys$1);
  348. };
  349. var objectGetOwnPropertyNames = {
  350. f: f$3
  351. };
  352. var f$4 = Object.getOwnPropertySymbols;
  353. var objectGetOwnPropertySymbols = {
  354. f: f$4
  355. };
  356. // all object keys, includes non-enumerable and symbols
  357. var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
  358. var keys = objectGetOwnPropertyNames.f(anObject(it));
  359. var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
  360. return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
  361. };
  362. var copyConstructorProperties = function (target, source) {
  363. var keys = ownKeys(source);
  364. var defineProperty = objectDefineProperty.f;
  365. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  366. for (var i = 0; i < keys.length; i++) {
  367. var key = keys[i];
  368. if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
  369. }
  370. };
  371. var replacement = /#|\.prototype\./;
  372. var isForced = function (feature, detection) {
  373. var value = data[normalize(feature)];
  374. return value == POLYFILL ? true
  375. : value == NATIVE ? false
  376. : typeof detection == 'function' ? fails(detection)
  377. : !!detection;
  378. };
  379. var normalize = isForced.normalize = function (string) {
  380. return String(string).replace(replacement, '.').toLowerCase();
  381. };
  382. var data = isForced.data = {};
  383. var NATIVE = isForced.NATIVE = 'N';
  384. var POLYFILL = isForced.POLYFILL = 'P';
  385. var isForced_1 = isForced;
  386. var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
  387. /*
  388. options.target - name of the target object
  389. options.global - target is the global object
  390. options.stat - export as static methods of target
  391. options.proto - export as prototype methods of target
  392. options.real - real prototype method for the `pure` version
  393. options.forced - export even if the native feature is available
  394. options.bind - bind methods to the target, required for the `pure` version
  395. options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
  396. options.unsafe - use the simple assignment of property instead of delete + defineProperty
  397. options.sham - add a flag to not completely full polyfills
  398. options.enumerable - export as enumerable property
  399. options.noTargetGet - prevent calling a getter on target
  400. */
  401. var _export = function (options, source) {
  402. var TARGET = options.target;
  403. var GLOBAL = options.global;
  404. var STATIC = options.stat;
  405. var FORCED, target, key, targetProperty, sourceProperty, descriptor;
  406. if (GLOBAL) {
  407. target = global_1;
  408. } else if (STATIC) {
  409. target = global_1[TARGET] || setGlobal(TARGET, {});
  410. } else {
  411. target = (global_1[TARGET] || {}).prototype;
  412. }
  413. if (target) for (key in source) {
  414. sourceProperty = source[key];
  415. if (options.noTargetGet) {
  416. descriptor = getOwnPropertyDescriptor$1(target, key);
  417. targetProperty = descriptor && descriptor.value;
  418. } else targetProperty = target[key];
  419. FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
  420. // contained in target
  421. if (!FORCED && targetProperty !== undefined) {
  422. if (typeof sourceProperty === typeof targetProperty) continue;
  423. copyConstructorProperties(sourceProperty, targetProperty);
  424. }
  425. // add a flag to not completely full polyfills
  426. if (options.sham || (targetProperty && targetProperty.sham)) {
  427. hide(sourceProperty, 'sham', true);
  428. }
  429. // extend global
  430. redefine(target, key, sourceProperty, options);
  431. }
  432. };
  433. // `IsArray` abstract operation
  434. // https://tc39.github.io/ecma262/#sec-isarray
  435. var isArray = Array.isArray || function isArray(arg) {
  436. return classofRaw(arg) == 'Array';
  437. };
  438. // `ToObject` abstract operation
  439. // https://tc39.github.io/ecma262/#sec-toobject
  440. var toObject = function (argument) {
  441. return Object(requireObjectCoercible(argument));
  442. };
  443. var createProperty = function (object, key, value) {
  444. var propertyKey = toPrimitive(key);
  445. if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
  446. else object[propertyKey] = value;
  447. };
  448. var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
  449. // Chrome 38 Symbol has incorrect toString conversion
  450. // eslint-disable-next-line no-undef
  451. return !String(Symbol());
  452. });
  453. var Symbol$1 = global_1.Symbol;
  454. var store$1 = shared('wks');
  455. var wellKnownSymbol = function (name) {
  456. return store$1[name] || (store$1[name] = nativeSymbol && Symbol$1[name]
  457. || (nativeSymbol ? Symbol$1 : uid)('Symbol.' + name));
  458. };
  459. var SPECIES = wellKnownSymbol('species');
  460. // `ArraySpeciesCreate` abstract operation
  461. // https://tc39.github.io/ecma262/#sec-arrayspeciescreate
  462. var arraySpeciesCreate = function (originalArray, length) {
  463. var C;
  464. if (isArray(originalArray)) {
  465. C = originalArray.constructor;
  466. // cross-realm fallback
  467. if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
  468. else if (isObject(C)) {
  469. C = C[SPECIES];
  470. if (C === null) C = undefined;
  471. }
  472. } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
  473. };
  474. var SPECIES$1 = wellKnownSymbol('species');
  475. var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
  476. return !fails(function () {
  477. var array = [];
  478. var constructor = array.constructor = {};
  479. constructor[SPECIES$1] = function () {
  480. return { foo: 1 };
  481. };
  482. return array[METHOD_NAME](Boolean).foo !== 1;
  483. });
  484. };
  485. var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
  486. var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
  487. var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
  488. var IS_CONCAT_SPREADABLE_SUPPORT = !fails(function () {
  489. var array = [];
  490. array[IS_CONCAT_SPREADABLE] = false;
  491. return array.concat()[0] !== array;
  492. });
  493. var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
  494. var isConcatSpreadable = function (O) {
  495. if (!isObject(O)) return false;
  496. var spreadable = O[IS_CONCAT_SPREADABLE];
  497. return spreadable !== undefined ? !!spreadable : isArray(O);
  498. };
  499. var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
  500. // `Array.prototype.concat` method
  501. // https://tc39.github.io/ecma262/#sec-array.prototype.concat
  502. // with adding support of @@isConcatSpreadable and @@species
  503. _export({ target: 'Array', proto: true, forced: FORCED }, {
  504. concat: function concat(arg) { // eslint-disable-line no-unused-vars
  505. var O = toObject(this);
  506. var A = arraySpeciesCreate(O, 0);
  507. var n = 0;
  508. var i, k, length, len, E;
  509. for (i = -1, length = arguments.length; i < length; i++) {
  510. E = i === -1 ? O : arguments[i];
  511. if (isConcatSpreadable(E)) {
  512. len = toLength(E.length);
  513. if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  514. for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
  515. } else {
  516. if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  517. createProperty(A, n++, E);
  518. }
  519. }
  520. A.length = n;
  521. return A;
  522. }
  523. });
  524. var aFunction$1 = function (it) {
  525. if (typeof it != 'function') {
  526. throw TypeError(String(it) + ' is not a function');
  527. } return it;
  528. };
  529. // optional / simple context binding
  530. var bindContext = function (fn, that, length) {
  531. aFunction$1(fn);
  532. if (that === undefined) return fn;
  533. switch (length) {
  534. case 0: return function () {
  535. return fn.call(that);
  536. };
  537. case 1: return function (a) {
  538. return fn.call(that, a);
  539. };
  540. case 2: return function (a, b) {
  541. return fn.call(that, a, b);
  542. };
  543. case 3: return function (a, b, c) {
  544. return fn.call(that, a, b, c);
  545. };
  546. }
  547. return function (/* ...args */) {
  548. return fn.apply(that, arguments);
  549. };
  550. };
  551. var push = [].push;
  552. // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation
  553. var createMethod$1 = function (TYPE) {
  554. var IS_MAP = TYPE == 1;
  555. var IS_FILTER = TYPE == 2;
  556. var IS_SOME = TYPE == 3;
  557. var IS_EVERY = TYPE == 4;
  558. var IS_FIND_INDEX = TYPE == 6;
  559. var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
  560. return function ($this, callbackfn, that, specificCreate) {
  561. var O = toObject($this);
  562. var self = indexedObject(O);
  563. var boundFunction = bindContext(callbackfn, that, 3);
  564. var length = toLength(self.length);
  565. var index = 0;
  566. var create = specificCreate || arraySpeciesCreate;
  567. var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;
  568. var value, result;
  569. for (;length > index; index++) if (NO_HOLES || index in self) {
  570. value = self[index];
  571. result = boundFunction(value, index, O);
  572. if (TYPE) {
  573. if (IS_MAP) target[index] = result; // map
  574. else if (result) switch (TYPE) {
  575. case 3: return true; // some
  576. case 5: return value; // find
  577. case 6: return index; // findIndex
  578. case 2: push.call(target, value); // filter
  579. } else if (IS_EVERY) return false; // every
  580. }
  581. }
  582. return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
  583. };
  584. };
  585. var arrayIteration = {
  586. // `Array.prototype.forEach` method
  587. // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
  588. forEach: createMethod$1(0),
  589. // `Array.prototype.map` method
  590. // https://tc39.github.io/ecma262/#sec-array.prototype.map
  591. map: createMethod$1(1),
  592. // `Array.prototype.filter` method
  593. // https://tc39.github.io/ecma262/#sec-array.prototype.filter
  594. filter: createMethod$1(2),
  595. // `Array.prototype.some` method
  596. // https://tc39.github.io/ecma262/#sec-array.prototype.some
  597. some: createMethod$1(3),
  598. // `Array.prototype.every` method
  599. // https://tc39.github.io/ecma262/#sec-array.prototype.every
  600. every: createMethod$1(4),
  601. // `Array.prototype.find` method
  602. // https://tc39.github.io/ecma262/#sec-array.prototype.find
  603. find: createMethod$1(5),
  604. // `Array.prototype.findIndex` method
  605. // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
  606. findIndex: createMethod$1(6)
  607. };
  608. // `Object.keys` method
  609. // https://tc39.github.io/ecma262/#sec-object.keys
  610. var objectKeys = Object.keys || function keys(O) {
  611. return objectKeysInternal(O, enumBugKeys);
  612. };
  613. // `Object.defineProperties` method
  614. // https://tc39.github.io/ecma262/#sec-object.defineproperties
  615. var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
  616. anObject(O);
  617. var keys = objectKeys(Properties);
  618. var length = keys.length;
  619. var index = 0;
  620. var key;
  621. while (length > index) objectDefineProperty.f(O, key = keys[index++], Properties[key]);
  622. return O;
  623. };
  624. var html = getBuiltIn('document', 'documentElement');
  625. var IE_PROTO = sharedKey('IE_PROTO');
  626. var PROTOTYPE = 'prototype';
  627. var Empty = function () { /* empty */ };
  628. // Create object with fake `null` prototype: use iframe Object with cleared prototype
  629. var createDict = function () {
  630. // Thrash, waste and sodomy: IE GC bug
  631. var iframe = documentCreateElement('iframe');
  632. var length = enumBugKeys.length;
  633. var lt = '<';
  634. var script = 'script';
  635. var gt = '>';
  636. var js = 'java' + script + ':';
  637. var iframeDocument;
  638. iframe.style.display = 'none';
  639. html.appendChild(iframe);
  640. iframe.src = String(js);
  641. iframeDocument = iframe.contentWindow.document;
  642. iframeDocument.open();
  643. iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt);
  644. iframeDocument.close();
  645. createDict = iframeDocument.F;
  646. while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]];
  647. return createDict();
  648. };
  649. // `Object.create` method
  650. // https://tc39.github.io/ecma262/#sec-object.create
  651. var objectCreate = Object.create || function create(O, Properties) {
  652. var result;
  653. if (O !== null) {
  654. Empty[PROTOTYPE] = anObject(O);
  655. result = new Empty();
  656. Empty[PROTOTYPE] = null;
  657. // add "__proto__" for Object.getPrototypeOf polyfill
  658. result[IE_PROTO] = O;
  659. } else result = createDict();
  660. return Properties === undefined ? result : objectDefineProperties(result, Properties);
  661. };
  662. hiddenKeys[IE_PROTO] = true;
  663. var UNSCOPABLES = wellKnownSymbol('unscopables');
  664. var ArrayPrototype = Array.prototype;
  665. // Array.prototype[@@unscopables]
  666. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  667. if (ArrayPrototype[UNSCOPABLES] == undefined) {
  668. hide(ArrayPrototype, UNSCOPABLES, objectCreate(null));
  669. }
  670. // add a key to Array.prototype[@@unscopables]
  671. var addToUnscopables = function (key) {
  672. ArrayPrototype[UNSCOPABLES][key] = true;
  673. };
  674. var $find = arrayIteration.find;
  675. var FIND = 'find';
  676. var SKIPS_HOLES = true;
  677. // Shouldn't skip holes
  678. if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
  679. // `Array.prototype.find` method
  680. // https://tc39.github.io/ecma262/#sec-array.prototype.find
  681. _export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
  682. find: function find(callbackfn /* , that = undefined */) {
  683. return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
  684. }
  685. });
  686. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  687. addToUnscopables(FIND);
  688. var sloppyArrayMethod = function (METHOD_NAME, argument) {
  689. var method = [][METHOD_NAME];
  690. return !method || !fails(function () {
  691. // eslint-disable-next-line no-useless-call,no-throw-literal
  692. method.call(null, argument || function () { throw 1; }, 1);
  693. });
  694. };
  695. var $indexOf = arrayIncludes.indexOf;
  696. var nativeIndexOf = [].indexOf;
  697. var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;
  698. var SLOPPY_METHOD = sloppyArrayMethod('indexOf');
  699. // `Array.prototype.indexOf` method
  700. // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
  701. _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {
  702. indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
  703. return NEGATIVE_ZERO
  704. // convert -0 to +0
  705. ? nativeIndexOf.apply(this, arguments) || 0
  706. : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);
  707. }
  708. });
  709. var nativeJoin = [].join;
  710. var ES3_STRINGS = indexedObject != Object;
  711. var SLOPPY_METHOD$1 = sloppyArrayMethod('join', ',');
  712. // `Array.prototype.join` method
  713. // https://tc39.github.io/ecma262/#sec-array.prototype.join
  714. _export({ target: 'Array', proto: true, forced: ES3_STRINGS || SLOPPY_METHOD$1 }, {
  715. join: function join(separator) {
  716. return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
  717. }
  718. });
  719. // `RegExp.prototype.flags` getter implementation
  720. // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
  721. var regexpFlags = function () {
  722. var that = anObject(this);
  723. var result = '';
  724. if (that.global) result += 'g';
  725. if (that.ignoreCase) result += 'i';
  726. if (that.multiline) result += 'm';
  727. if (that.dotAll) result += 's';
  728. if (that.unicode) result += 'u';
  729. if (that.sticky) result += 'y';
  730. return result;
  731. };
  732. var nativeExec = RegExp.prototype.exec;
  733. // This always refers to the native implementation, because the
  734. // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
  735. // which loads this file before patching the method.
  736. var nativeReplace = String.prototype.replace;
  737. var patchedExec = nativeExec;
  738. var UPDATES_LAST_INDEX_WRONG = (function () {
  739. var re1 = /a/;
  740. var re2 = /b*/g;
  741. nativeExec.call(re1, 'a');
  742. nativeExec.call(re2, 'a');
  743. return re1.lastIndex !== 0 || re2.lastIndex !== 0;
  744. })();
  745. // nonparticipating capturing group, copied from es5-shim's String#split patch.
  746. var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
  747. var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;
  748. if (PATCH) {
  749. patchedExec = function exec(str) {
  750. var re = this;
  751. var lastIndex, reCopy, match, i;
  752. if (NPCG_INCLUDED) {
  753. reCopy = new RegExp('^' + re.source + '$(?!\\s)', regexpFlags.call(re));
  754. }
  755. if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
  756. match = nativeExec.call(re, str);
  757. if (UPDATES_LAST_INDEX_WRONG && match) {
  758. re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
  759. }
  760. if (NPCG_INCLUDED && match && match.length > 1) {
  761. // Fix browsers whose `exec` methods don't consistently return `undefined`
  762. // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
  763. nativeReplace.call(match[0], reCopy, function () {
  764. for (i = 1; i < arguments.length - 2; i++) {
  765. if (arguments[i] === undefined) match[i] = undefined;
  766. }
  767. });
  768. }
  769. return match;
  770. };
  771. }
  772. var regexpExec = patchedExec;
  773. var SPECIES$2 = wellKnownSymbol('species');
  774. var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
  775. // #replace needs built-in support for named groups.
  776. // #match works fine because it just return the exec results, even if it has
  777. // a "grops" property.
  778. var re = /./;
  779. re.exec = function () {
  780. var result = [];
  781. result.groups = { a: '7' };
  782. return result;
  783. };
  784. return ''.replace(re, '$<a>') !== '7';
  785. });
  786. // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
  787. // Weex JS has frozen built-in prototypes, so use try / catch wrapper
  788. var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
  789. var re = /(?:)/;
  790. var originalExec = re.exec;
  791. re.exec = function () { return originalExec.apply(this, arguments); };
  792. var result = 'ab'.split(re);
  793. return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
  794. });
  795. var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
  796. var SYMBOL = wellKnownSymbol(KEY);
  797. var DELEGATES_TO_SYMBOL = !fails(function () {
  798. // String methods call symbol-named RegEp methods
  799. var O = {};
  800. O[SYMBOL] = function () { return 7; };
  801. return ''[KEY](O) != 7;
  802. });
  803. var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
  804. // Symbol-named RegExp methods call .exec
  805. var execCalled = false;
  806. var re = /a/;
  807. re.exec = function () { execCalled = true; return null; };
  808. if (KEY === 'split') {
  809. // RegExp[@@split] doesn't call the regex's exec method, but first creates
  810. // a new one. We need to return the patched regex when creating the new one.
  811. re.constructor = {};
  812. re.constructor[SPECIES$2] = function () { return re; };
  813. }
  814. re[SYMBOL]('');
  815. return !execCalled;
  816. });
  817. if (
  818. !DELEGATES_TO_SYMBOL ||
  819. !DELEGATES_TO_EXEC ||
  820. (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||
  821. (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
  822. ) {
  823. var nativeRegExpMethod = /./[SYMBOL];
  824. var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
  825. if (regexp.exec === regexpExec) {
  826. if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
  827. // The native String method already delegates to @@method (this
  828. // polyfilled function), leasing to infinite recursion.
  829. // We avoid it by directly calling the native @@method method.
  830. return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
  831. }
  832. return { done: true, value: nativeMethod.call(str, regexp, arg2) };
  833. }
  834. return { done: false };
  835. });
  836. var stringMethod = methods[0];
  837. var regexMethod = methods[1];
  838. redefine(String.prototype, KEY, stringMethod);
  839. redefine(RegExp.prototype, SYMBOL, length == 2
  840. // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
  841. // 21.2.5.11 RegExp.prototype[@@split](string, limit)
  842. ? function (string, arg) { return regexMethod.call(string, this, arg); }
  843. // 21.2.5.6 RegExp.prototype[@@match](string)
  844. // 21.2.5.9 RegExp.prototype[@@search](string)
  845. : function (string) { return regexMethod.call(string, this); }
  846. );
  847. if (sham) hide(RegExp.prototype[SYMBOL], 'sham', true);
  848. }
  849. };
  850. // `String.prototype.{ codePointAt, at }` methods implementation
  851. var createMethod$2 = function (CONVERT_TO_STRING) {
  852. return function ($this, pos) {
  853. var S = String(requireObjectCoercible($this));
  854. var position = toInteger(pos);
  855. var size = S.length;
  856. var first, second;
  857. if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
  858. first = S.charCodeAt(position);
  859. return first < 0xD800 || first > 0xDBFF || position + 1 === size
  860. || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
  861. ? CONVERT_TO_STRING ? S.charAt(position) : first
  862. : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
  863. };
  864. };
  865. var stringMultibyte = {
  866. // `String.prototype.codePointAt` method
  867. // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat
  868. codeAt: createMethod$2(false),
  869. // `String.prototype.at` method
  870. // https://github.com/mathiasbynens/String.prototype.at
  871. charAt: createMethod$2(true)
  872. };
  873. var charAt = stringMultibyte.charAt;
  874. // `AdvanceStringIndex` abstract operation
  875. // https://tc39.github.io/ecma262/#sec-advancestringindex
  876. var advanceStringIndex = function (S, index, unicode) {
  877. return index + (unicode ? charAt(S, index).length : 1);
  878. };
  879. // `RegExpExec` abstract operation
  880. // https://tc39.github.io/ecma262/#sec-regexpexec
  881. var regexpExecAbstract = function (R, S) {
  882. var exec = R.exec;
  883. if (typeof exec === 'function') {
  884. var result = exec.call(R, S);
  885. if (typeof result !== 'object') {
  886. throw TypeError('RegExp exec method returned something other than an Object or null');
  887. }
  888. return result;
  889. }
  890. if (classofRaw(R) !== 'RegExp') {
  891. throw TypeError('RegExp#exec called on incompatible receiver');
  892. }
  893. return regexpExec.call(R, S);
  894. };
  895. var max$1 = Math.max;
  896. var min$2 = Math.min;
  897. var floor$1 = Math.floor;
  898. var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g;
  899. var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g;
  900. var maybeToString = function (it) {
  901. return it === undefined ? it : String(it);
  902. };
  903. // @@replace logic
  904. fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative) {
  905. return [
  906. // `String.prototype.replace` method
  907. // https://tc39.github.io/ecma262/#sec-string.prototype.replace
  908. function replace(searchValue, replaceValue) {
  909. var O = requireObjectCoercible(this);
  910. var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
  911. return replacer !== undefined
  912. ? replacer.call(searchValue, O, replaceValue)
  913. : nativeReplace.call(String(O), searchValue, replaceValue);
  914. },
  915. // `RegExp.prototype[@@replace]` method
  916. // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
  917. function (regexp, replaceValue) {
  918. var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
  919. if (res.done) return res.value;
  920. var rx = anObject(regexp);
  921. var S = String(this);
  922. var functionalReplace = typeof replaceValue === 'function';
  923. if (!functionalReplace) replaceValue = String(replaceValue);
  924. var global = rx.global;
  925. if (global) {
  926. var fullUnicode = rx.unicode;
  927. rx.lastIndex = 0;
  928. }
  929. var results = [];
  930. while (true) {
  931. var result = regexpExecAbstract(rx, S);
  932. if (result === null) break;
  933. results.push(result);
  934. if (!global) break;
  935. var matchStr = String(result[0]);
  936. if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
  937. }
  938. var accumulatedResult = '';
  939. var nextSourcePosition = 0;
  940. for (var i = 0; i < results.length; i++) {
  941. result = results[i];
  942. var matched = String(result[0]);
  943. var position = max$1(min$2(toInteger(result.index), S.length), 0);
  944. var captures = [];
  945. // NOTE: This is equivalent to
  946. // captures = result.slice(1).map(maybeToString)
  947. // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
  948. // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
  949. // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
  950. for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
  951. var namedCaptures = result.groups;
  952. if (functionalReplace) {
  953. var replacerArgs = [matched].concat(captures, position, S);
  954. if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
  955. var replacement = String(replaceValue.apply(undefined, replacerArgs));
  956. } else {
  957. replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
  958. }
  959. if (position >= nextSourcePosition) {
  960. accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
  961. nextSourcePosition = position + matched.length;
  962. }
  963. }
  964. return accumulatedResult + S.slice(nextSourcePosition);
  965. }
  966. ];
  967. // https://tc39.github.io/ecma262/#sec-getsubstitution
  968. function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
  969. var tailPos = position + matched.length;
  970. var m = captures.length;
  971. var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
  972. if (namedCaptures !== undefined) {
  973. namedCaptures = toObject(namedCaptures);
  974. symbols = SUBSTITUTION_SYMBOLS;
  975. }
  976. return nativeReplace.call(replacement, symbols, function (match, ch) {
  977. var capture;
  978. switch (ch.charAt(0)) {
  979. case '$': return '$';
  980. case '&': return matched;
  981. case '`': return str.slice(0, position);
  982. case "'": return str.slice(tailPos);
  983. case '<':
  984. capture = namedCaptures[ch.slice(1, -1)];
  985. break;
  986. default: // \d\d?
  987. var n = +ch;
  988. if (n === 0) return match;
  989. if (n > m) {
  990. var f = floor$1(n / 10);
  991. if (f === 0) return match;
  992. if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
  993. return match;
  994. }
  995. capture = captures[n - 1];
  996. }
  997. return capture === undefined ? '' : capture;
  998. });
  999. }
  1000. });
  1001. function _classCallCheck(instance, Constructor) {
  1002. if (!(instance instanceof Constructor)) {
  1003. throw new TypeError("Cannot call a class as a function");
  1004. }
  1005. }
  1006. function _defineProperties(target, props) {
  1007. for (var i = 0; i < props.length; i++) {
  1008. var descriptor = props[i];
  1009. descriptor.enumerable = descriptor.enumerable || false;
  1010. descriptor.configurable = true;
  1011. if ("value" in descriptor) descriptor.writable = true;
  1012. Object.defineProperty(target, descriptor.key, descriptor);
  1013. }
  1014. }
  1015. function _createClass(Constructor, protoProps, staticProps) {
  1016. if (protoProps) _defineProperties(Constructor.prototype, protoProps);
  1017. if (staticProps) _defineProperties(Constructor, staticProps);
  1018. return Constructor;
  1019. }
  1020. function _inherits(subClass, superClass) {
  1021. if (typeof superClass !== "function" && superClass !== null) {
  1022. throw new TypeError("Super expression must either be null or a function");
  1023. }
  1024. subClass.prototype = Object.create(superClass && superClass.prototype, {
  1025. constructor: {
  1026. value: subClass,
  1027. writable: true,
  1028. configurable: true
  1029. }
  1030. });
  1031. if (superClass) _setPrototypeOf(subClass, superClass);
  1032. }
  1033. function _getPrototypeOf(o) {
  1034. _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
  1035. return o.__proto__ || Object.getPrototypeOf(o);
  1036. };
  1037. return _getPrototypeOf(o);
  1038. }
  1039. function _setPrototypeOf(o, p) {
  1040. _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
  1041. o.__proto__ = p;
  1042. return o;
  1043. };
  1044. return _setPrototypeOf(o, p);
  1045. }
  1046. function _assertThisInitialized(self) {
  1047. if (self === void 0) {
  1048. throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
  1049. }
  1050. return self;
  1051. }
  1052. function _possibleConstructorReturn(self, call) {
  1053. if (call && (typeof call === "object" || typeof call === "function")) {
  1054. return call;
  1055. }
  1056. return _assertThisInitialized(self);
  1057. }
  1058. function _superPropBase(object, property) {
  1059. while (!Object.prototype.hasOwnProperty.call(object, property)) {
  1060. object = _getPrototypeOf(object);
  1061. if (object === null) break;
  1062. }
  1063. return object;
  1064. }
  1065. function _get(target, property, receiver) {
  1066. if (typeof Reflect !== "undefined" && Reflect.get) {
  1067. _get = Reflect.get;
  1068. } else {
  1069. _get = function _get(target, property, receiver) {
  1070. var base = _superPropBase(target, property);
  1071. if (!base) return;
  1072. var desc = Object.getOwnPropertyDescriptor(base, property);
  1073. if (desc.get) {
  1074. return desc.get.call(receiver);
  1075. }
  1076. return desc.value;
  1077. };
  1078. }
  1079. return _get(target, property, receiver || target);
  1080. }
  1081. /**
  1082. * @author zhixin wen <wenzhixin2010@gmail.com>
  1083. * extensions: https://github.com/vitalets/x-editable
  1084. */
  1085. var Utils = $.fn.bootstrapTable.utils;
  1086. $.extend($.fn.bootstrapTable.defaults, {
  1087. editable: true,
  1088. onEditableInit: function onEditableInit() {
  1089. return false;
  1090. },
  1091. onEditableSave: function onEditableSave(field, row, rowIndex, oldValue, $el) {
  1092. return false;
  1093. },
  1094. onEditableShown: function onEditableShown(field, row, $el, editable) {
  1095. return false;
  1096. },
  1097. onEditableHidden: function onEditableHidden(field, row, $el, reason) {
  1098. return false;
  1099. }
  1100. });
  1101. $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
  1102. 'editable-init.bs.table': 'onEditableInit',
  1103. 'editable-save.bs.table': 'onEditableSave',
  1104. 'editable-shown.bs.table': 'onEditableShown',
  1105. 'editable-hidden.bs.table': 'onEditableHidden'
  1106. });
  1107. $.BootstrapTable =
  1108. /*#__PURE__*/
  1109. function (_$$BootstrapTable) {
  1110. _inherits(_class, _$$BootstrapTable);
  1111. function _class() {
  1112. _classCallCheck(this, _class);
  1113. return _possibleConstructorReturn(this, _getPrototypeOf(_class).apply(this, arguments));
  1114. }
  1115. _createClass(_class, [{
  1116. key: "initTable",
  1117. value: function initTable() {
  1118. var _this = this;
  1119. _get(_getPrototypeOf(_class.prototype), "initTable", this).call(this);
  1120. if (!this.options.editable) {
  1121. return;
  1122. }
  1123. $.each(this.columns, function (i, column) {
  1124. if (!column.editable) {
  1125. return;
  1126. }
  1127. var editableOptions = {};
  1128. var editableDataMarkup = [];
  1129. var editableDataPrefix = 'editable-';
  1130. var processDataOptions = function processDataOptions(key, value) {
  1131. // Replace camel case with dashes.
  1132. var dashKey = key.replace(/([A-Z])/g, function ($1) {
  1133. return "-".concat($1.toLowerCase());
  1134. });
  1135. if (dashKey.indexOf(editableDataPrefix) === 0) {
  1136. editableOptions[dashKey.replace(editableDataPrefix, 'data-')] = value;
  1137. }
  1138. };
  1139. $.each(_this.options, processDataOptions);
  1140. column.formatter = column.formatter || function (value) {
  1141. return value;
  1142. };
  1143. column._formatter = column._formatter ? column._formatter : column.formatter;
  1144. column.formatter = function (value, row, index) {
  1145. var result = Utils.calculateObjectValue(column, column._formatter, [value, row, index], value);
  1146. result = typeof result === 'undefined' || result === null ? _this.options.undefinedText : result;
  1147. $.each(column, processDataOptions);
  1148. $.each(editableOptions, function (key, value) {
  1149. editableDataMarkup.push(" ".concat(key, "=\"").concat(value, "\""));
  1150. });
  1151. var _dont_edit_formatter = false;
  1152. if (column.editable.hasOwnProperty('noeditFormatter')) {
  1153. _dont_edit_formatter = column.editable.noeditFormatter(value, row, index);
  1154. }
  1155. if (_dont_edit_formatter === false) {
  1156. return "<a href=\"javascript:void(0)\"\n data-name=\"".concat(column.field, "\"\n data-pk=\"").concat(row[_this.options.idField], "\"\n data-value=\"").concat(result, "\"\n ").concat(editableDataMarkup.join(''), "></a>");
  1157. }
  1158. return _dont_edit_formatter;
  1159. };
  1160. });
  1161. }
  1162. }, {
  1163. key: "initBody",
  1164. value: function initBody(fixedScroll) {
  1165. var _this2 = this;
  1166. _get(_getPrototypeOf(_class.prototype), "initBody", this).call(this, fixedScroll);
  1167. if (!this.options.editable) {
  1168. return;
  1169. }
  1170. $.each(this.columns, function (i, column) {
  1171. if (!column.editable) {
  1172. return;
  1173. }
  1174. var data = _this2.getData();
  1175. var $field = _this2.$body.find("a[data-name=\"".concat(column.field, "\"]"));
  1176. $field.each(function (i, element) {
  1177. var $element = $(element);
  1178. var $tr = $element.closest('tr');
  1179. var index = $tr.data('index');
  1180. var row = data[index];
  1181. var editableOpts = Utils.calculateObjectValue(column, column.editable, [index, row, $element], {});
  1182. $element.editable(editableOpts);
  1183. });
  1184. $field.off('save').on('save', function (_ref, _ref2) {
  1185. var currentTarget = _ref.currentTarget;
  1186. var submitValue = _ref2.submitValue;
  1187. var $this = $(currentTarget);
  1188. var data = _this2.getData();
  1189. var rowIndex = $this.parents('tr[data-index]').data('index');
  1190. var row = data[rowIndex];
  1191. var oldValue = row[column.field];
  1192. $this.data('value', submitValue);
  1193. row[column.field] = submitValue;
  1194. _this2.trigger('editable-save', column.field, row, rowIndex, oldValue, $this);
  1195. _this2.initBody();
  1196. });
  1197. $field.off('shown').on('shown', function (_ref3, editable) {
  1198. var currentTarget = _ref3.currentTarget;
  1199. var $this = $(currentTarget);
  1200. var data = _this2.getData();
  1201. var rowIndex = $this.parents('tr[data-index]').data('index');
  1202. var row = data[rowIndex];
  1203. _this2.trigger('editable-shown', column.field, row, $this, editable);
  1204. });
  1205. $field.off('hidden').on('hidden', function (_ref4, reason) {
  1206. var currentTarget = _ref4.currentTarget;
  1207. var $this = $(currentTarget);
  1208. var data = _this2.getData();
  1209. var rowIndex = $this.parents('tr[data-index]').data('index');
  1210. var row = data[rowIndex];
  1211. _this2.trigger('editable-hidden', column.field, row, $this, reason);
  1212. });
  1213. });
  1214. this.trigger('editable-init');
  1215. }
  1216. }]);
  1217. return _class;
  1218. }($.BootstrapTable);
  1219. }));