@nubitio/core 0.8.2 → 0.9.0
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.
- package/dist/index.cjs +6 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -280,6 +280,9 @@ const coreTranslationsEs = {
|
|
|
280
280
|
"crudPage.auditTrailButton": "Historial",
|
|
281
281
|
"crudPage.allColumns": "Todas",
|
|
282
282
|
"crudPage.columnsLabel": "Columnas:",
|
|
283
|
+
"crudPage.columnChooserLabel": "Elegir columnas",
|
|
284
|
+
"crudPage.columnChooserSelectAll": "Mostrar todas",
|
|
285
|
+
"crudPage.columnChooserReset": "Restablecer",
|
|
283
286
|
"crudPage.dialogTitleAdd": "Nuevo",
|
|
284
287
|
"crudPage.dialogTitleEdit": "Editar",
|
|
285
288
|
"crudPage.dialogTitleView": "Ver",
|
|
@@ -411,6 +414,9 @@ const coreTranslationsEn = {
|
|
|
411
414
|
"crudPage.auditTrailButton": "History",
|
|
412
415
|
"crudPage.allColumns": "All",
|
|
413
416
|
"crudPage.columnsLabel": "Columns:",
|
|
417
|
+
"crudPage.columnChooserLabel": "Choose columns",
|
|
418
|
+
"crudPage.columnChooserSelectAll": "Show all",
|
|
419
|
+
"crudPage.columnChooserReset": "Reset",
|
|
414
420
|
"crudPage.dialogTitleAdd": "New",
|
|
415
421
|
"crudPage.dialogTitleEdit": "Edit",
|
|
416
422
|
"crudPage.dialogTitleView": "View",
|
package/dist/index.d.cts
CHANGED
|
@@ -194,6 +194,9 @@ interface CoreTranslationKeys {
|
|
|
194
194
|
'crudPage.auditTrailButton': string;
|
|
195
195
|
'crudPage.allColumns': string;
|
|
196
196
|
'crudPage.columnsLabel': string;
|
|
197
|
+
'crudPage.columnChooserLabel': string;
|
|
198
|
+
'crudPage.columnChooserSelectAll': string;
|
|
199
|
+
'crudPage.columnChooserReset': string;
|
|
197
200
|
'crudPage.dialogTitleAdd': string;
|
|
198
201
|
'crudPage.dialogTitleEdit': string;
|
|
199
202
|
'crudPage.dialogTitleView': string;
|
package/dist/index.d.mts
CHANGED
|
@@ -194,6 +194,9 @@ interface CoreTranslationKeys {
|
|
|
194
194
|
'crudPage.auditTrailButton': string;
|
|
195
195
|
'crudPage.allColumns': string;
|
|
196
196
|
'crudPage.columnsLabel': string;
|
|
197
|
+
'crudPage.columnChooserLabel': string;
|
|
198
|
+
'crudPage.columnChooserSelectAll': string;
|
|
199
|
+
'crudPage.columnChooserReset': string;
|
|
197
200
|
'crudPage.dialogTitleAdd': string;
|
|
198
201
|
'crudPage.dialogTitleEdit': string;
|
|
199
202
|
'crudPage.dialogTitleView': string;
|
package/dist/index.mjs
CHANGED
|
@@ -255,6 +255,9 @@ const coreTranslationsEs = {
|
|
|
255
255
|
"crudPage.auditTrailButton": "Historial",
|
|
256
256
|
"crudPage.allColumns": "Todas",
|
|
257
257
|
"crudPage.columnsLabel": "Columnas:",
|
|
258
|
+
"crudPage.columnChooserLabel": "Elegir columnas",
|
|
259
|
+
"crudPage.columnChooserSelectAll": "Mostrar todas",
|
|
260
|
+
"crudPage.columnChooserReset": "Restablecer",
|
|
258
261
|
"crudPage.dialogTitleAdd": "Nuevo",
|
|
259
262
|
"crudPage.dialogTitleEdit": "Editar",
|
|
260
263
|
"crudPage.dialogTitleView": "Ver",
|
|
@@ -386,6 +389,9 @@ const coreTranslationsEn = {
|
|
|
386
389
|
"crudPage.auditTrailButton": "History",
|
|
387
390
|
"crudPage.allColumns": "All",
|
|
388
391
|
"crudPage.columnsLabel": "Columns:",
|
|
392
|
+
"crudPage.columnChooserLabel": "Choose columns",
|
|
393
|
+
"crudPage.columnChooserSelectAll": "Show all",
|
|
394
|
+
"crudPage.columnChooserReset": "Reset",
|
|
389
395
|
"crudPage.dialogTitleAdd": "New",
|
|
390
396
|
"crudPage.dialogTitleEdit": "Edit",
|
|
391
397
|
"crudPage.dialogTitleView": "View",
|
package/package.json
CHANGED