Skip to content

Commit 0fe785a

Browse files
committed
Update to 1.19.0
1 parent 6a1752f commit 0fe785a

File tree

199 files changed

+3546
-1887
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+3546
-1887
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ algolia:
2727
index_name: bootstrap-table
2828

2929
# Custom variables
30-
current_version: 1.18.3
30+
current_version: 1.19.0
3131
title: "Bootstrap Table"
3232
description: "An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)"
3333
authors: "Zhixin Wen, and Bootstrap Table contributors"

bootstrap-table.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-table",
3-
"version": "1.18.3",
3+
"version": "1.19.0",
44
"title": "Bootstrap Table",
55
"description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
66
"author": {

dist/bootstrap-table-locale-all.js

Lines changed: 43 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
2020

2121
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
2222
var global_1 =
23-
/* global globalThis -- safe */
23+
// eslint-disable-next-line es/no-global-this -- safe
2424
check(typeof globalThis == 'object' && globalThis) ||
2525
check(typeof window == 'object' && window) ||
26+
// eslint-disable-next-line no-restricted-globals -- safe
2627
check(typeof self == 'object' && self) ||
2728
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
2829
// eslint-disable-next-line no-new-func -- fallback
@@ -38,21 +39,23 @@
3839

3940
// Detect IE8's incomplete defineProperty implementation
4041
var descriptors = !fails(function () {
42+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
4143
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
4244
});
4345

44-
var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
46+
var $propertyIsEnumerable = {}.propertyIsEnumerable;
47+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
4548
var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
4649

4750
// Nashorn ~ JDK8 bug
48-
var NASHORN_BUG = getOwnPropertyDescriptor$1 && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
51+
var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
4952

5053
// `Object.prototype.propertyIsEnumerable` method implementation
5154
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
5255
var f$4 = NASHORN_BUG ? function propertyIsEnumerable(V) {
5356
var descriptor = getOwnPropertyDescriptor$1(this, V);
5457
return !!descriptor && descriptor.enumerable;
55-
} : nativePropertyIsEnumerable;
58+
} : $propertyIsEnumerable;
5659

5760
var objectPropertyIsEnumerable = {
5861
f: f$4
@@ -132,20 +135,22 @@
132135

133136
// Thank's IE8 for his funny defineProperty
134137
var ie8DomDefine = !descriptors && !fails(function () {
138+
// eslint-disable-next-line es/no-object-defineproperty -- requied for testing
135139
return Object.defineProperty(documentCreateElement('div'), 'a', {
136140
get: function () { return 7; }
137141
}).a != 7;
138142
});
139143

140-
var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
144+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
145+
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
141146

142147
// `Object.getOwnPropertyDescriptor` method
143148
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
144-
var f$3 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
149+
var f$3 = descriptors ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
145150
O = toIndexedObject(O);
146151
P = toPrimitive(P, true);
147152
if (ie8DomDefine) try {
148-
return nativeGetOwnPropertyDescriptor(O, P);
153+
return $getOwnPropertyDescriptor(O, P);
149154
} catch (error) { /* empty */ }
150155
if (has$1(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
151156
};
@@ -160,16 +165,17 @@
160165
} return it;
161166
};
162167

163-
var nativeDefineProperty = Object.defineProperty;
168+
// eslint-disable-next-line es/no-object-defineproperty -- safe
169+
var $defineProperty = Object.defineProperty;
164170

165171
// `Object.defineProperty` method
166172
// https://tc39.es/ecma262/#sec-object.defineproperty
167-
var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
173+
var f$2 = descriptors ? $defineProperty : function defineProperty(O, P, Attributes) {
168174
anObject(O);
169175
P = toPrimitive(P, true);
170176
anObject(Attributes);
171177
if (ie8DomDefine) try {
172-
return nativeDefineProperty(O, P, Attributes);
178+
return $defineProperty(O, P, Attributes);
173179
} catch (error) { /* empty */ }
174180
if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
175181
if ('value' in Attributes) O[P] = Attributes.value;
@@ -219,7 +225,7 @@
219225
(module.exports = function (key, value) {
220226
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
221227
})('versions', []).push({
222-
version: '3.9.1',
228+
version: '3.10.1',
223229
mode: 'global',
224230
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
225231
});
@@ -431,6 +437,7 @@
431437

432438
// `Object.getOwnPropertyNames` method
433439
// https://tc39.es/ecma262/#sec-object.getownpropertynames
440+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
434441
var f$1 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
435442
return objectKeysInternal(O, hiddenKeys);
436443
};
@@ -439,6 +446,7 @@
439446
f: f$1
440447
};
441448

449+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
442450
var f = Object.getOwnPropertySymbols;
443451

444452
var objectGetOwnPropertySymbols = {
@@ -538,6 +546,7 @@
538546

539547
// `IsArray` abstract operation
540548
// https://tc39.es/ecma262/#sec-isarray
549+
// eslint-disable-next-line es/no-array-isarray -- safe
541550
var isArray = Array.isArray || function isArray(arg) {
542551
return classofRaw(arg) == 'Array';
543552
};
@@ -576,16 +585,19 @@
576585

577586
var engineV8Version = version && +version;
578587

588+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
579589
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
580-
/* global Symbol -- required for testing */
590+
// eslint-disable-next-line es/no-symbol -- required for testing
581591
return !Symbol.sham &&
582592
// Chrome 38 Symbol has incorrect toString conversion
583593
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
584594
(engineIsNode ? engineV8Version === 38 : engineV8Version > 37 && engineV8Version < 41);
585595
});
586596

597+
/* eslint-disable es/no-symbol -- required for testing */
598+
599+
587600
var useSymbolAsUid = nativeSymbol
588-
/* global Symbol -- safe */
589601
&& !Symbol.sham
590602
&& typeof Symbol.iterator == 'symbol';
591603

@@ -2112,36 +2124,37 @@
21122124
* Author: Felix Vera ([email protected])
21132125
* Copiado: Mauricio Vera ([email protected])
21142126
* Revisión: J Manuel Corona ([email protected]) (13/Feb/2018).
2127+
* Revisión: Ricardo González ([email protected]) (20/Oct/2021)
21152128
*/
21162129

21172130
$__default['default'].fn.bootstrapTable.locales['es-MX'] = {
21182131
formatCopyRows: function formatCopyRows() {
2119-
return 'Copy Rows';
2132+
return 'Copiar Filas';
21202133
},
21212134
formatPrint: function formatPrint() {
2122-
return 'Print';
2135+
return 'Imprimir';
21232136
},
21242137
formatLoadingMessage: function formatLoadingMessage() {
21252138
return 'Cargando, espere por favor';
21262139
},
21272140
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
2128-
return "".concat(pageNumber, " registros por p\xE1gina");
2141+
return "".concat(pageNumber, " resultados por p\xE1gina");
21292142
},
21302143
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
21312144
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
2132-
return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtered from ").concat(totalNotFiltered, " total rows)");
2145+
return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " filas totales)");
21332146
}
21342147

21352148
return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
21362149
},
21372150
formatSRPaginationPreText: function formatSRPaginationPreText() {
2138-
return 'previous page';
2151+
return 'página anterior';
21392152
},
21402153
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
2141-
return "to page ".concat(page);
2154+
return "ir a la p\xE1gina ".concat(page);
21422155
},
21432156
formatSRPaginationNextText: function formatSRPaginationNextText() {
2144-
return 'next page';
2157+
return 'página siguiente';
21452158
},
21462159
formatDetailPagination: function formatDetailPagination(totalRows) {
21472160
return "Mostrando ".concat(totalRows, " filas");
@@ -2159,10 +2172,10 @@
21592172
return 'Mostrar/ocultar paginación';
21602173
},
21612174
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
2162-
return 'Show pagination';
2175+
return 'Mostrar paginación';
21632176
},
21642177
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
2165-
return 'Hide pagination';
2178+
return 'Ocultar paginación';
21662179
},
21672180
formatRefresh: function formatRefresh() {
21682181
return 'Actualizar';
@@ -2171,16 +2184,16 @@
21712184
return 'Cambiar vista';
21722185
},
21732186
formatToggleOn: function formatToggleOn() {
2174-
return 'Show card view';
2187+
return 'Mostrar vista';
21752188
},
21762189
formatToggleOff: function formatToggleOff() {
2177-
return 'Hide card view';
2190+
return 'Ocultar vista';
21782191
},
21792192
formatColumns: function formatColumns() {
21802193
return 'Columnas';
21812194
},
21822195
formatColumnsToggleAll: function formatColumnsToggleAll() {
2183-
return 'Toggle all';
2196+
return 'Alternar todo';
21842197
},
21852198
formatFullscreen: function formatFullscreen() {
21862199
return 'Pantalla completa';
@@ -2189,19 +2202,19 @@
21892202
return 'Todo';
21902203
},
21912204
formatAutoRefresh: function formatAutoRefresh() {
2192-
return 'Auto Refresh';
2205+
return 'Auto actualizar';
21932206
},
21942207
formatExport: function formatExport() {
2195-
return 'Export data';
2208+
return 'Exportar datos';
21962209
},
21972210
formatJumpTo: function formatJumpTo() {
2198-
return 'GO';
2211+
return 'IR';
21992212
},
22002213
formatAdvancedSearch: function formatAdvancedSearch() {
2201-
return 'Advanced search';
2214+
return 'Búsqueda avanzada';
22022215
},
22032216
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
2204-
return 'Close';
2217+
return 'Cerrar';
22052218
},
22062219
formatFilterControlSwitch: function formatFilterControlSwitch() {
22072220
return 'Ocultar/Mostrar controles';

dist/bootstrap-table-locale-all.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)