@updog/data-editor 0.1.67 → 0.1.68
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/index.css +1 -1
- package/index.d.ts +19 -0
- package/index.js +290 -229
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -100,9 +100,26 @@ declare var export_default = {
|
|
|
100
100
|
formField: {
|
|
101
101
|
optional: "Optional",
|
|
102
102
|
},
|
|
103
|
+
pagination: {
|
|
104
|
+
goToNextPage: "Go to next page",
|
|
105
|
+
goToPage: "Go to page {{pageNumber}}",
|
|
106
|
+
goToPrevPage: "Go to previous page",
|
|
107
|
+
itemsPerPage: "Items per page",
|
|
108
|
+
itemsRange: "{{from}}–{{to}} of {{total}}",
|
|
109
|
+
pagination: "Pagination",
|
|
110
|
+
show: "Show",
|
|
111
|
+
},
|
|
103
112
|
segment: {
|
|
104
113
|
segmentControl: "Segment control",
|
|
105
114
|
},
|
|
115
|
+
table: {
|
|
116
|
+
clickableRow: "Select row",
|
|
117
|
+
dataTableAriaLabel: "Data table",
|
|
118
|
+
selectAllButton: "Select all {{total}}",
|
|
119
|
+
selectAllItemsOnPageAriaLabel: "Select all items on this page",
|
|
120
|
+
selectionSummary: "{{count}} of {{total}} selected",
|
|
121
|
+
selectionSummaryAll: "All {{total}} selected",
|
|
122
|
+
},
|
|
106
123
|
},
|
|
107
124
|
dataEditor: {
|
|
108
125
|
modal: {
|
|
@@ -452,6 +469,7 @@ declare var export_default = {
|
|
|
452
469
|
csvWarning_other:
|
|
453
470
|
"{{count}} rows had formatting issues (rows {{rows}})",
|
|
454
471
|
downloadExample: "Download sample file",
|
|
472
|
+
fileInputLabel: "Choose files to upload",
|
|
455
473
|
fileTooLarge: "The file is too large to process",
|
|
456
474
|
reset: "Reset",
|
|
457
475
|
uploading: "Uploading file",
|
|
@@ -463,6 +481,7 @@ declare var export_default = {
|
|
|
463
481
|
},
|
|
464
482
|
headerSelection: {
|
|
465
483
|
noHeaderLabel: "My data has no header row",
|
|
484
|
+
previewGridLabel: "File preview",
|
|
466
485
|
},
|
|
467
486
|
import: {
|
|
468
487
|
collapsedFiles_one:
|