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