bootstrap-table-rails 1.15.4 → 1.15.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -21
- data/lib/bootstrap-table-rails/version.rb +1 -1
- data/vendor/assets/javascripts/bootstrap-table/bootstrap-table-locale-all.js +182 -0
- data/vendor/assets/javascripts/bootstrap-table/bootstrap-table.css +1 -1
- data/vendor/assets/javascripts/bootstrap-table/bootstrap-table.js +145 -110
- data/vendor/assets/javascripts/bootstrap-table/extensions/export/bootstrap-table-export.js +34 -28
- data/vendor/assets/javascripts/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.js +2 -2
- data/vendor/assets/javascripts/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.js +6 -2
- data/vendor/assets/javascripts/bootstrap-table/locale/bootstrap-table-sr-Cyrl-RS.js +721 -0
- data/vendor/assets/javascripts/bootstrap-table/locale/bootstrap-table-sr-Latn-RS.js +721 -0
- data/vendor/assets/javascripts/bootstrap-table/themes/bulma/bootstrap-table-bulma.js +1 -1
- data/vendor/assets/javascripts/bootstrap-table/themes/foundation/bootstrap-table-foundation.js +1 -1
- data/vendor/assets/javascripts/bootstrap-table/themes/materialize/bootstrap-table-materialize.js +1 -1
- data/vendor/assets/javascripts/bootstrap-table/themes/semantic/bootstrap-table-semantic.js +1 -1
- metadata +4 -12
- data/vendor/assets/javascripts/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.css +0 -3
- data/vendor/assets/javascripts/bootstrap-table/extensions/group-by/bootstrap-table-group-by.css +0 -53
- data/vendor/assets/javascripts/bootstrap-table/extensions/group-by/bootstrap-table-group-by.js +0 -257
- data/vendor/assets/javascripts/bootstrap-table/extensions/multi-column-toggle/bootstrap-table-multi-toggle.js +0 -105
- data/vendor/assets/javascripts/bootstrap-table/extensions/multiple-search/bootstrap-table-multiple-search.js +0 -85
- data/vendor/assets/javascripts/bootstrap-table/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.css +0 -17
- data/vendor/assets/javascripts/bootstrap-table/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.js +0 -143
- data/vendor/assets/javascripts/bootstrap-table/extensions/select2-filter/bootstrap-table-select2-filter.js +0 -341
- data/vendor/assets/javascripts/bootstrap-table/extensions/tree-column/bootstrap-table-tree-column.css +0 -1
- data/vendor/assets/javascripts/bootstrap-table/extensions/tree-column/bootstrap-table-tree-column.js +0 -142
@@ -0,0 +1,721 @@
|
|
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
|
+
|
7
|
+
$ = $ && $.hasOwnProperty('default') ? $['default'] : $;
|
8
|
+
|
9
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
10
|
+
|
11
|
+
function createCommonjsModule(fn, module) {
|
12
|
+
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
13
|
+
}
|
14
|
+
|
15
|
+
var O = 'object';
|
16
|
+
var check = function (it) {
|
17
|
+
return it && it.Math == Math && it;
|
18
|
+
};
|
19
|
+
|
20
|
+
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
21
|
+
var global_1 =
|
22
|
+
// eslint-disable-next-line no-undef
|
23
|
+
check(typeof globalThis == O && globalThis) ||
|
24
|
+
check(typeof window == O && window) ||
|
25
|
+
check(typeof self == O && self) ||
|
26
|
+
check(typeof commonjsGlobal == O && commonjsGlobal) ||
|
27
|
+
// eslint-disable-next-line no-new-func
|
28
|
+
Function('return this')();
|
29
|
+
|
30
|
+
var fails = function (exec) {
|
31
|
+
try {
|
32
|
+
return !!exec();
|
33
|
+
} catch (error) {
|
34
|
+
return true;
|
35
|
+
}
|
36
|
+
};
|
37
|
+
|
38
|
+
// Thank's IE8 for his funny defineProperty
|
39
|
+
var descriptors = !fails(function () {
|
40
|
+
return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
|
41
|
+
});
|
42
|
+
|
43
|
+
var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
|
44
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
45
|
+
|
46
|
+
// Nashorn ~ JDK8 bug
|
47
|
+
var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
|
48
|
+
|
49
|
+
// `Object.prototype.propertyIsEnumerable` method implementation
|
50
|
+
// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable
|
51
|
+
var f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
52
|
+
var descriptor = getOwnPropertyDescriptor(this, V);
|
53
|
+
return !!descriptor && descriptor.enumerable;
|
54
|
+
} : nativePropertyIsEnumerable;
|
55
|
+
|
56
|
+
var objectPropertyIsEnumerable = {
|
57
|
+
f: f
|
58
|
+
};
|
59
|
+
|
60
|
+
var createPropertyDescriptor = function (bitmap, value) {
|
61
|
+
return {
|
62
|
+
enumerable: !(bitmap & 1),
|
63
|
+
configurable: !(bitmap & 2),
|
64
|
+
writable: !(bitmap & 4),
|
65
|
+
value: value
|
66
|
+
};
|
67
|
+
};
|
68
|
+
|
69
|
+
var toString = {}.toString;
|
70
|
+
|
71
|
+
var classofRaw = function (it) {
|
72
|
+
return toString.call(it).slice(8, -1);
|
73
|
+
};
|
74
|
+
|
75
|
+
var split = ''.split;
|
76
|
+
|
77
|
+
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
78
|
+
var indexedObject = fails(function () {
|
79
|
+
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
80
|
+
// eslint-disable-next-line no-prototype-builtins
|
81
|
+
return !Object('z').propertyIsEnumerable(0);
|
82
|
+
}) ? function (it) {
|
83
|
+
return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
|
84
|
+
} : Object;
|
85
|
+
|
86
|
+
// `RequireObjectCoercible` abstract operation
|
87
|
+
// https://tc39.github.io/ecma262/#sec-requireobjectcoercible
|
88
|
+
var requireObjectCoercible = function (it) {
|
89
|
+
if (it == undefined) throw TypeError("Can't call method on " + it);
|
90
|
+
return it;
|
91
|
+
};
|
92
|
+
|
93
|
+
// toObject with fallback for non-array-like ES3 strings
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
var toIndexedObject = function (it) {
|
98
|
+
return indexedObject(requireObjectCoercible(it));
|
99
|
+
};
|
100
|
+
|
101
|
+
var isObject = function (it) {
|
102
|
+
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
103
|
+
};
|
104
|
+
|
105
|
+
// `ToPrimitive` abstract operation
|
106
|
+
// https://tc39.github.io/ecma262/#sec-toprimitive
|
107
|
+
// instead of the ES6 spec version, we didn't implement @@toPrimitive case
|
108
|
+
// and the second argument - flag - preferred type is a string
|
109
|
+
var toPrimitive = function (input, PREFERRED_STRING) {
|
110
|
+
if (!isObject(input)) return input;
|
111
|
+
var fn, val;
|
112
|
+
if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
|
113
|
+
if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
|
114
|
+
if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
|
115
|
+
throw TypeError("Can't convert object to primitive value");
|
116
|
+
};
|
117
|
+
|
118
|
+
var hasOwnProperty = {}.hasOwnProperty;
|
119
|
+
|
120
|
+
var has = function (it, key) {
|
121
|
+
return hasOwnProperty.call(it, key);
|
122
|
+
};
|
123
|
+
|
124
|
+
var document = global_1.document;
|
125
|
+
// typeof document.createElement is 'object' in old IE
|
126
|
+
var EXISTS = isObject(document) && isObject(document.createElement);
|
127
|
+
|
128
|
+
var documentCreateElement = function (it) {
|
129
|
+
return EXISTS ? document.createElement(it) : {};
|
130
|
+
};
|
131
|
+
|
132
|
+
// Thank's IE8 for his funny defineProperty
|
133
|
+
var ie8DomDefine = !descriptors && !fails(function () {
|
134
|
+
return Object.defineProperty(documentCreateElement('div'), 'a', {
|
135
|
+
get: function () { return 7; }
|
136
|
+
}).a != 7;
|
137
|
+
});
|
138
|
+
|
139
|
+
var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
140
|
+
|
141
|
+
// `Object.getOwnPropertyDescriptor` method
|
142
|
+
// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor
|
143
|
+
var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
144
|
+
O = toIndexedObject(O);
|
145
|
+
P = toPrimitive(P, true);
|
146
|
+
if (ie8DomDefine) try {
|
147
|
+
return nativeGetOwnPropertyDescriptor(O, P);
|
148
|
+
} catch (error) { /* empty */ }
|
149
|
+
if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
|
150
|
+
};
|
151
|
+
|
152
|
+
var objectGetOwnPropertyDescriptor = {
|
153
|
+
f: f$1
|
154
|
+
};
|
155
|
+
|
156
|
+
var anObject = function (it) {
|
157
|
+
if (!isObject(it)) {
|
158
|
+
throw TypeError(String(it) + ' is not an object');
|
159
|
+
} return it;
|
160
|
+
};
|
161
|
+
|
162
|
+
var nativeDefineProperty = Object.defineProperty;
|
163
|
+
|
164
|
+
// `Object.defineProperty` method
|
165
|
+
// https://tc39.github.io/ecma262/#sec-object.defineproperty
|
166
|
+
var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
|
167
|
+
anObject(O);
|
168
|
+
P = toPrimitive(P, true);
|
169
|
+
anObject(Attributes);
|
170
|
+
if (ie8DomDefine) try {
|
171
|
+
return nativeDefineProperty(O, P, Attributes);
|
172
|
+
} catch (error) { /* empty */ }
|
173
|
+
if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
|
174
|
+
if ('value' in Attributes) O[P] = Attributes.value;
|
175
|
+
return O;
|
176
|
+
};
|
177
|
+
|
178
|
+
var objectDefineProperty = {
|
179
|
+
f: f$2
|
180
|
+
};
|
181
|
+
|
182
|
+
var hide = descriptors ? function (object, key, value) {
|
183
|
+
return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
|
184
|
+
} : function (object, key, value) {
|
185
|
+
object[key] = value;
|
186
|
+
return object;
|
187
|
+
};
|
188
|
+
|
189
|
+
var setGlobal = function (key, value) {
|
190
|
+
try {
|
191
|
+
hide(global_1, key, value);
|
192
|
+
} catch (error) {
|
193
|
+
global_1[key] = value;
|
194
|
+
} return value;
|
195
|
+
};
|
196
|
+
|
197
|
+
var shared = createCommonjsModule(function (module) {
|
198
|
+
var SHARED = '__core-js_shared__';
|
199
|
+
var store = global_1[SHARED] || setGlobal(SHARED, {});
|
200
|
+
|
201
|
+
(module.exports = function (key, value) {
|
202
|
+
return store[key] || (store[key] = value !== undefined ? value : {});
|
203
|
+
})('versions', []).push({
|
204
|
+
version: '3.1.3',
|
205
|
+
mode: 'global',
|
206
|
+
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
|
207
|
+
});
|
208
|
+
});
|
209
|
+
|
210
|
+
var functionToString = shared('native-function-to-string', Function.toString);
|
211
|
+
|
212
|
+
var WeakMap = global_1.WeakMap;
|
213
|
+
|
214
|
+
var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(functionToString.call(WeakMap));
|
215
|
+
|
216
|
+
var id = 0;
|
217
|
+
var postfix = Math.random();
|
218
|
+
|
219
|
+
var uid = function (key) {
|
220
|
+
return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
|
221
|
+
};
|
222
|
+
|
223
|
+
var keys = shared('keys');
|
224
|
+
|
225
|
+
var sharedKey = function (key) {
|
226
|
+
return keys[key] || (keys[key] = uid(key));
|
227
|
+
};
|
228
|
+
|
229
|
+
var hiddenKeys = {};
|
230
|
+
|
231
|
+
var WeakMap$1 = global_1.WeakMap;
|
232
|
+
var set, get, has$1;
|
233
|
+
|
234
|
+
var enforce = function (it) {
|
235
|
+
return has$1(it) ? get(it) : set(it, {});
|
236
|
+
};
|
237
|
+
|
238
|
+
var getterFor = function (TYPE) {
|
239
|
+
return function (it) {
|
240
|
+
var state;
|
241
|
+
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
242
|
+
throw TypeError('Incompatible receiver, ' + TYPE + ' required');
|
243
|
+
} return state;
|
244
|
+
};
|
245
|
+
};
|
246
|
+
|
247
|
+
if (nativeWeakMap) {
|
248
|
+
var store = new WeakMap$1();
|
249
|
+
var wmget = store.get;
|
250
|
+
var wmhas = store.has;
|
251
|
+
var wmset = store.set;
|
252
|
+
set = function (it, metadata) {
|
253
|
+
wmset.call(store, it, metadata);
|
254
|
+
return metadata;
|
255
|
+
};
|
256
|
+
get = function (it) {
|
257
|
+
return wmget.call(store, it) || {};
|
258
|
+
};
|
259
|
+
has$1 = function (it) {
|
260
|
+
return wmhas.call(store, it);
|
261
|
+
};
|
262
|
+
} else {
|
263
|
+
var STATE = sharedKey('state');
|
264
|
+
hiddenKeys[STATE] = true;
|
265
|
+
set = function (it, metadata) {
|
266
|
+
hide(it, STATE, metadata);
|
267
|
+
return metadata;
|
268
|
+
};
|
269
|
+
get = function (it) {
|
270
|
+
return has(it, STATE) ? it[STATE] : {};
|
271
|
+
};
|
272
|
+
has$1 = function (it) {
|
273
|
+
return has(it, STATE);
|
274
|
+
};
|
275
|
+
}
|
276
|
+
|
277
|
+
var internalState = {
|
278
|
+
set: set,
|
279
|
+
get: get,
|
280
|
+
has: has$1,
|
281
|
+
enforce: enforce,
|
282
|
+
getterFor: getterFor
|
283
|
+
};
|
284
|
+
|
285
|
+
var redefine = createCommonjsModule(function (module) {
|
286
|
+
var getInternalState = internalState.get;
|
287
|
+
var enforceInternalState = internalState.enforce;
|
288
|
+
var TEMPLATE = String(functionToString).split('toString');
|
289
|
+
|
290
|
+
shared('inspectSource', function (it) {
|
291
|
+
return functionToString.call(it);
|
292
|
+
});
|
293
|
+
|
294
|
+
(module.exports = function (O, key, value, options) {
|
295
|
+
var unsafe = options ? !!options.unsafe : false;
|
296
|
+
var simple = options ? !!options.enumerable : false;
|
297
|
+
var noTargetGet = options ? !!options.noTargetGet : false;
|
298
|
+
if (typeof value == 'function') {
|
299
|
+
if (typeof key == 'string' && !has(value, 'name')) hide(value, 'name', key);
|
300
|
+
enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
|
301
|
+
}
|
302
|
+
if (O === global_1) {
|
303
|
+
if (simple) O[key] = value;
|
304
|
+
else setGlobal(key, value);
|
305
|
+
return;
|
306
|
+
} else if (!unsafe) {
|
307
|
+
delete O[key];
|
308
|
+
} else if (!noTargetGet && O[key]) {
|
309
|
+
simple = true;
|
310
|
+
}
|
311
|
+
if (simple) O[key] = value;
|
312
|
+
else hide(O, key, value);
|
313
|
+
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
314
|
+
})(Function.prototype, 'toString', function toString() {
|
315
|
+
return typeof this == 'function' && getInternalState(this).source || functionToString.call(this);
|
316
|
+
});
|
317
|
+
});
|
318
|
+
|
319
|
+
var path = global_1;
|
320
|
+
|
321
|
+
var aFunction = function (variable) {
|
322
|
+
return typeof variable == 'function' ? variable : undefined;
|
323
|
+
};
|
324
|
+
|
325
|
+
var getBuiltIn = function (namespace, method) {
|
326
|
+
return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
|
327
|
+
: path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
|
328
|
+
};
|
329
|
+
|
330
|
+
var ceil = Math.ceil;
|
331
|
+
var floor = Math.floor;
|
332
|
+
|
333
|
+
// `ToInteger` abstract operation
|
334
|
+
// https://tc39.github.io/ecma262/#sec-tointeger
|
335
|
+
var toInteger = function (argument) {
|
336
|
+
return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
|
337
|
+
};
|
338
|
+
|
339
|
+
var min = Math.min;
|
340
|
+
|
341
|
+
// `ToLength` abstract operation
|
342
|
+
// https://tc39.github.io/ecma262/#sec-tolength
|
343
|
+
var toLength = function (argument) {
|
344
|
+
return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
345
|
+
};
|
346
|
+
|
347
|
+
var max = Math.max;
|
348
|
+
var min$1 = Math.min;
|
349
|
+
|
350
|
+
// Helper for a popular repeating case of the spec:
|
351
|
+
// Let integer be ? ToInteger(index).
|
352
|
+
// If integer < 0, let result be max((length + integer), 0); else let result be min(length, length).
|
353
|
+
var toAbsoluteIndex = function (index, length) {
|
354
|
+
var integer = toInteger(index);
|
355
|
+
return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
|
356
|
+
};
|
357
|
+
|
358
|
+
// `Array.prototype.{ indexOf, includes }` methods implementation
|
359
|
+
var createMethod = function (IS_INCLUDES) {
|
360
|
+
return function ($this, el, fromIndex) {
|
361
|
+
var O = toIndexedObject($this);
|
362
|
+
var length = toLength(O.length);
|
363
|
+
var index = toAbsoluteIndex(fromIndex, length);
|
364
|
+
var value;
|
365
|
+
// Array#includes uses SameValueZero equality algorithm
|
366
|
+
// eslint-disable-next-line no-self-compare
|
367
|
+
if (IS_INCLUDES && el != el) while (length > index) {
|
368
|
+
value = O[index++];
|
369
|
+
// eslint-disable-next-line no-self-compare
|
370
|
+
if (value != value) return true;
|
371
|
+
// Array#indexOf ignores holes, Array#includes - not
|
372
|
+
} else for (;length > index; index++) {
|
373
|
+
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
374
|
+
} return !IS_INCLUDES && -1;
|
375
|
+
};
|
376
|
+
};
|
377
|
+
|
378
|
+
var arrayIncludes = {
|
379
|
+
// `Array.prototype.includes` method
|
380
|
+
// https://tc39.github.io/ecma262/#sec-array.prototype.includes
|
381
|
+
includes: createMethod(true),
|
382
|
+
// `Array.prototype.indexOf` method
|
383
|
+
// https://tc39.github.io/ecma262/#sec-array.prototype.indexof
|
384
|
+
indexOf: createMethod(false)
|
385
|
+
};
|
386
|
+
|
387
|
+
var indexOf = arrayIncludes.indexOf;
|
388
|
+
|
389
|
+
|
390
|
+
var objectKeysInternal = function (object, names) {
|
391
|
+
var O = toIndexedObject(object);
|
392
|
+
var i = 0;
|
393
|
+
var result = [];
|
394
|
+
var key;
|
395
|
+
for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
|
396
|
+
// Don't enum bug & hidden keys
|
397
|
+
while (names.length > i) if (has(O, key = names[i++])) {
|
398
|
+
~indexOf(result, key) || result.push(key);
|
399
|
+
}
|
400
|
+
return result;
|
401
|
+
};
|
402
|
+
|
403
|
+
// IE8- don't enum bug keys
|
404
|
+
var enumBugKeys = [
|
405
|
+
'constructor',
|
406
|
+
'hasOwnProperty',
|
407
|
+
'isPrototypeOf',
|
408
|
+
'propertyIsEnumerable',
|
409
|
+
'toLocaleString',
|
410
|
+
'toString',
|
411
|
+
'valueOf'
|
412
|
+
];
|
413
|
+
|
414
|
+
var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
|
415
|
+
|
416
|
+
// `Object.getOwnPropertyNames` method
|
417
|
+
// https://tc39.github.io/ecma262/#sec-object.getownpropertynames
|
418
|
+
var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
419
|
+
return objectKeysInternal(O, hiddenKeys$1);
|
420
|
+
};
|
421
|
+
|
422
|
+
var objectGetOwnPropertyNames = {
|
423
|
+
f: f$3
|
424
|
+
};
|
425
|
+
|
426
|
+
var f$4 = Object.getOwnPropertySymbols;
|
427
|
+
|
428
|
+
var objectGetOwnPropertySymbols = {
|
429
|
+
f: f$4
|
430
|
+
};
|
431
|
+
|
432
|
+
// all object keys, includes non-enumerable and symbols
|
433
|
+
var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
434
|
+
var keys = objectGetOwnPropertyNames.f(anObject(it));
|
435
|
+
var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
|
436
|
+
return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
|
437
|
+
};
|
438
|
+
|
439
|
+
var copyConstructorProperties = function (target, source) {
|
440
|
+
var keys = ownKeys(source);
|
441
|
+
var defineProperty = objectDefineProperty.f;
|
442
|
+
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
443
|
+
for (var i = 0; i < keys.length; i++) {
|
444
|
+
var key = keys[i];
|
445
|
+
if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
446
|
+
}
|
447
|
+
};
|
448
|
+
|
449
|
+
var replacement = /#|\.prototype\./;
|
450
|
+
|
451
|
+
var isForced = function (feature, detection) {
|
452
|
+
var value = data[normalize(feature)];
|
453
|
+
return value == POLYFILL ? true
|
454
|
+
: value == NATIVE ? false
|
455
|
+
: typeof detection == 'function' ? fails(detection)
|
456
|
+
: !!detection;
|
457
|
+
};
|
458
|
+
|
459
|
+
var normalize = isForced.normalize = function (string) {
|
460
|
+
return String(string).replace(replacement, '.').toLowerCase();
|
461
|
+
};
|
462
|
+
|
463
|
+
var data = isForced.data = {};
|
464
|
+
var NATIVE = isForced.NATIVE = 'N';
|
465
|
+
var POLYFILL = isForced.POLYFILL = 'P';
|
466
|
+
|
467
|
+
var isForced_1 = isForced;
|
468
|
+
|
469
|
+
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
470
|
+
|
471
|
+
|
472
|
+
|
473
|
+
|
474
|
+
|
475
|
+
|
476
|
+
/*
|
477
|
+
options.target - name of the target object
|
478
|
+
options.global - target is the global object
|
479
|
+
options.stat - export as static methods of target
|
480
|
+
options.proto - export as prototype methods of target
|
481
|
+
options.real - real prototype method for the `pure` version
|
482
|
+
options.forced - export even if the native feature is available
|
483
|
+
options.bind - bind methods to the target, required for the `pure` version
|
484
|
+
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
485
|
+
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
486
|
+
options.sham - add a flag to not completely full polyfills
|
487
|
+
options.enumerable - export as enumerable property
|
488
|
+
options.noTargetGet - prevent calling a getter on target
|
489
|
+
*/
|
490
|
+
var _export = function (options, source) {
|
491
|
+
var TARGET = options.target;
|
492
|
+
var GLOBAL = options.global;
|
493
|
+
var STATIC = options.stat;
|
494
|
+
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
495
|
+
if (GLOBAL) {
|
496
|
+
target = global_1;
|
497
|
+
} else if (STATIC) {
|
498
|
+
target = global_1[TARGET] || setGlobal(TARGET, {});
|
499
|
+
} else {
|
500
|
+
target = (global_1[TARGET] || {}).prototype;
|
501
|
+
}
|
502
|
+
if (target) for (key in source) {
|
503
|
+
sourceProperty = source[key];
|
504
|
+
if (options.noTargetGet) {
|
505
|
+
descriptor = getOwnPropertyDescriptor$1(target, key);
|
506
|
+
targetProperty = descriptor && descriptor.value;
|
507
|
+
} else targetProperty = target[key];
|
508
|
+
FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
509
|
+
// contained in target
|
510
|
+
if (!FORCED && targetProperty !== undefined) {
|
511
|
+
if (typeof sourceProperty === typeof targetProperty) continue;
|
512
|
+
copyConstructorProperties(sourceProperty, targetProperty);
|
513
|
+
}
|
514
|
+
// add a flag to not completely full polyfills
|
515
|
+
if (options.sham || (targetProperty && targetProperty.sham)) {
|
516
|
+
hide(sourceProperty, 'sham', true);
|
517
|
+
}
|
518
|
+
// extend global
|
519
|
+
redefine(target, key, sourceProperty, options);
|
520
|
+
}
|
521
|
+
};
|
522
|
+
|
523
|
+
// `IsArray` abstract operation
|
524
|
+
// https://tc39.github.io/ecma262/#sec-isarray
|
525
|
+
var isArray = Array.isArray || function isArray(arg) {
|
526
|
+
return classofRaw(arg) == 'Array';
|
527
|
+
};
|
528
|
+
|
529
|
+
// `ToObject` abstract operation
|
530
|
+
// https://tc39.github.io/ecma262/#sec-toobject
|
531
|
+
var toObject = function (argument) {
|
532
|
+
return Object(requireObjectCoercible(argument));
|
533
|
+
};
|
534
|
+
|
535
|
+
var createProperty = function (object, key, value) {
|
536
|
+
var propertyKey = toPrimitive(key);
|
537
|
+
if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
|
538
|
+
else object[propertyKey] = value;
|
539
|
+
};
|
540
|
+
|
541
|
+
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
|
542
|
+
// Chrome 38 Symbol has incorrect toString conversion
|
543
|
+
// eslint-disable-next-line no-undef
|
544
|
+
return !String(Symbol());
|
545
|
+
});
|
546
|
+
|
547
|
+
var Symbol$1 = global_1.Symbol;
|
548
|
+
var store$1 = shared('wks');
|
549
|
+
|
550
|
+
var wellKnownSymbol = function (name) {
|
551
|
+
return store$1[name] || (store$1[name] = nativeSymbol && Symbol$1[name]
|
552
|
+
|| (nativeSymbol ? Symbol$1 : uid)('Symbol.' + name));
|
553
|
+
};
|
554
|
+
|
555
|
+
var SPECIES = wellKnownSymbol('species');
|
556
|
+
|
557
|
+
// `ArraySpeciesCreate` abstract operation
|
558
|
+
// https://tc39.github.io/ecma262/#sec-arrayspeciescreate
|
559
|
+
var arraySpeciesCreate = function (originalArray, length) {
|
560
|
+
var C;
|
561
|
+
if (isArray(originalArray)) {
|
562
|
+
C = originalArray.constructor;
|
563
|
+
// cross-realm fallback
|
564
|
+
if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
|
565
|
+
else if (isObject(C)) {
|
566
|
+
C = C[SPECIES];
|
567
|
+
if (C === null) C = undefined;
|
568
|
+
}
|
569
|
+
} return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
|
570
|
+
};
|
571
|
+
|
572
|
+
var SPECIES$1 = wellKnownSymbol('species');
|
573
|
+
|
574
|
+
var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
|
575
|
+
return !fails(function () {
|
576
|
+
var array = [];
|
577
|
+
var constructor = array.constructor = {};
|
578
|
+
constructor[SPECIES$1] = function () {
|
579
|
+
return { foo: 1 };
|
580
|
+
};
|
581
|
+
return array[METHOD_NAME](Boolean).foo !== 1;
|
582
|
+
});
|
583
|
+
};
|
584
|
+
|
585
|
+
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
|
586
|
+
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
|
587
|
+
var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
|
588
|
+
|
589
|
+
var IS_CONCAT_SPREADABLE_SUPPORT = !fails(function () {
|
590
|
+
var array = [];
|
591
|
+
array[IS_CONCAT_SPREADABLE] = false;
|
592
|
+
return array.concat()[0] !== array;
|
593
|
+
});
|
594
|
+
|
595
|
+
var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
|
596
|
+
|
597
|
+
var isConcatSpreadable = function (O) {
|
598
|
+
if (!isObject(O)) return false;
|
599
|
+
var spreadable = O[IS_CONCAT_SPREADABLE];
|
600
|
+
return spreadable !== undefined ? !!spreadable : isArray(O);
|
601
|
+
};
|
602
|
+
|
603
|
+
var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
|
604
|
+
|
605
|
+
// `Array.prototype.concat` method
|
606
|
+
// https://tc39.github.io/ecma262/#sec-array.prototype.concat
|
607
|
+
// with adding support of @@isConcatSpreadable and @@species
|
608
|
+
_export({ target: 'Array', proto: true, forced: FORCED }, {
|
609
|
+
concat: function concat(arg) { // eslint-disable-line no-unused-vars
|
610
|
+
var O = toObject(this);
|
611
|
+
var A = arraySpeciesCreate(O, 0);
|
612
|
+
var n = 0;
|
613
|
+
var i, k, length, len, E;
|
614
|
+
for (i = -1, length = arguments.length; i < length; i++) {
|
615
|
+
E = i === -1 ? O : arguments[i];
|
616
|
+
if (isConcatSpreadable(E)) {
|
617
|
+
len = toLength(E.length);
|
618
|
+
if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
|
619
|
+
for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
|
620
|
+
} else {
|
621
|
+
if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
|
622
|
+
createProperty(A, n++, E);
|
623
|
+
}
|
624
|
+
}
|
625
|
+
A.length = n;
|
626
|
+
return A;
|
627
|
+
}
|
628
|
+
});
|
629
|
+
|
630
|
+
/**
|
631
|
+
* Bootstrap Table Serbian Cyrilic RS translation
|
632
|
+
* Author: Vladimir Kanazir (vladimir@kanazir.com)
|
633
|
+
*/
|
634
|
+
|
635
|
+
$.fn.bootstrapTable.locales['sr-Cyrl-RS'] = {
|
636
|
+
formatLoadingMessage: function formatLoadingMessage() {
|
637
|
+
return 'Молим сачекај';
|
638
|
+
},
|
639
|
+
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
640
|
+
return "".concat(pageNumber, " \u0440\u0435\u0434\u043E\u0432\u0430 \u043F\u043E \u0441\u0442\u0440\u0430\u043D\u0438");
|
641
|
+
},
|
642
|
+
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
|
643
|
+
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
|
644
|
+
return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows, " (\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u043E \u043E\u0434 ").concat(totalNotFiltered, ")");
|
645
|
+
}
|
646
|
+
|
647
|
+
return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows);
|
648
|
+
},
|
649
|
+
formatSRPaginationPreText: function formatSRPaginationPreText() {
|
650
|
+
return 'претходна страна';
|
651
|
+
},
|
652
|
+
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
|
653
|
+
return "\u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0443 ".concat(page);
|
654
|
+
},
|
655
|
+
formatSRPaginationNextText: function formatSRPaginationNextText() {
|
656
|
+
return 'следећа страна';
|
657
|
+
},
|
658
|
+
formatDetailPagination: function formatDetailPagination(totalRows) {
|
659
|
+
return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(totalRows, " \u0440\u0435\u0434\u043E\u0432\u0430");
|
660
|
+
},
|
661
|
+
formatClearSearch: function formatClearSearch() {
|
662
|
+
return 'Обриши претрагу';
|
663
|
+
},
|
664
|
+
formatSearch: function formatSearch() {
|
665
|
+
return 'Пронађи';
|
666
|
+
},
|
667
|
+
formatNoMatches: function formatNoMatches() {
|
668
|
+
return 'Није пронађен ни један податак';
|
669
|
+
},
|
670
|
+
formatPaginationSwitch: function formatPaginationSwitch() {
|
671
|
+
return 'Прикажи/сакриј пагинацију';
|
672
|
+
},
|
673
|
+
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
|
674
|
+
return 'Прикажи пагинацију';
|
675
|
+
},
|
676
|
+
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
|
677
|
+
return 'Сакриј пагинацију';
|
678
|
+
},
|
679
|
+
formatRefresh: function formatRefresh() {
|
680
|
+
return 'Освежи';
|
681
|
+
},
|
682
|
+
formatToggle: function formatToggle() {
|
683
|
+
return 'Промени приказ';
|
684
|
+
},
|
685
|
+
formatToggleOn: function formatToggleOn() {
|
686
|
+
return 'Прикажи картице';
|
687
|
+
},
|
688
|
+
formatToggleOff: function formatToggleOff() {
|
689
|
+
return 'Сакриј картице';
|
690
|
+
},
|
691
|
+
formatColumns: function formatColumns() {
|
692
|
+
return 'Колоне';
|
693
|
+
},
|
694
|
+
formatColumnsToggleAll: function formatColumnsToggleAll() {
|
695
|
+
return 'Прикажи/сакриј све';
|
696
|
+
},
|
697
|
+
formatFullscreen: function formatFullscreen() {
|
698
|
+
return 'Цео екран';
|
699
|
+
},
|
700
|
+
formatAllRows: function formatAllRows() {
|
701
|
+
return 'Све';
|
702
|
+
},
|
703
|
+
formatAutoRefresh: function formatAutoRefresh() {
|
704
|
+
return 'Аутоматско освежавање';
|
705
|
+
},
|
706
|
+
formatExport: function formatExport() {
|
707
|
+
return 'Извези податке';
|
708
|
+
},
|
709
|
+
formatJumpTo: function formatJumpTo() {
|
710
|
+
return 'Иди';
|
711
|
+
},
|
712
|
+
formatAdvancedSearch: function formatAdvancedSearch() {
|
713
|
+
return 'Напредна претрага';
|
714
|
+
},
|
715
|
+
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
716
|
+
return 'Затвори';
|
717
|
+
}
|
718
|
+
};
|
719
|
+
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['sr-Cyrl-RS']);
|
720
|
+
|
721
|
+
}));
|