@updog/data-editor 0.1.71 → 0.1.72
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 +21 -5
- package/index.js +5494 -5053
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -162,8 +162,10 @@ declare var export_default = {
|
|
|
162
162
|
xmlFormat: "XML (.xml)",
|
|
163
163
|
},
|
|
164
164
|
statusBar: {
|
|
165
|
-
|
|
166
|
-
|
|
165
|
+
totalRows_one: "{{total}} row",
|
|
166
|
+
totalRows_other: "{{total}} rows",
|
|
167
|
+
filteredRows_one: "{{filtered}} of {{total}} row",
|
|
168
|
+
filteredRows_other: "{{filtered}} of {{total}} rows",
|
|
167
169
|
},
|
|
168
170
|
toast: {
|
|
169
171
|
dismiss: "Dismiss",
|
|
@@ -176,12 +178,18 @@ declare var export_default = {
|
|
|
176
178
|
loading: "Loading data...",
|
|
177
179
|
emptyCell: "Empty",
|
|
178
180
|
a11y: {
|
|
179
|
-
|
|
181
|
+
cellEditor: "Edit {{column}}, row {{row}}",
|
|
180
182
|
cellFocus: "Row {{row}}, {{column}}: {{value}}",
|
|
181
183
|
cellFocusEmpty: "Row {{row}}, {{column}}: empty",
|
|
184
|
+
cellInvalid: "Invalid: {{messages}}",
|
|
185
|
+
cellMisplaced: "Misplaced: {{messages}}",
|
|
186
|
+
contextMenu: "Grid actions",
|
|
187
|
+
gridLabel: "Data editor",
|
|
182
188
|
selectAll: "All cells selected",
|
|
183
|
-
|
|
184
|
-
|
|
189
|
+
rowsSelected_one: "{{count}} row selected",
|
|
190
|
+
rowsSelected_other: "{{count}} rows selected",
|
|
191
|
+
columnsSelected_one: "{{count}} column selected",
|
|
192
|
+
columnsSelected_other: "{{count}} columns selected",
|
|
185
193
|
},
|
|
186
194
|
contextMenu: {
|
|
187
195
|
cut: "Cut",
|
|
@@ -303,6 +311,7 @@ declare var export_default = {
|
|
|
303
311
|
applyToRows_one: "Apply to {{count}} row",
|
|
304
312
|
applyToRows_other: "Apply to {{count}} rows",
|
|
305
313
|
selectColumn: "Select column",
|
|
314
|
+
selectColumnNumber: "Select column {{number}}",
|
|
306
315
|
title: "Merge",
|
|
307
316
|
},
|
|
308
317
|
transformSplit: {
|
|
@@ -318,6 +327,7 @@ declare var export_default = {
|
|
|
318
327
|
preview: "Preview",
|
|
319
328
|
removeColumn: "Remove column",
|
|
320
329
|
selectColumn: "Select column",
|
|
330
|
+
selectColumnNumber: "Select column {{number}}",
|
|
321
331
|
splitBy: "Split by",
|
|
322
332
|
splitByPlaceholder: "e.g. space, comma",
|
|
323
333
|
title: "Split",
|
|
@@ -331,6 +341,7 @@ declare var export_default = {
|
|
|
331
341
|
sorting: "Sorting rows...",
|
|
332
342
|
undoing: "Reverting changes...",
|
|
333
343
|
redoing: "Reapplying changes...",
|
|
344
|
+
reverting: "Reverting changes...",
|
|
334
345
|
deleting: "Deleting rows...",
|
|
335
346
|
deletingSource: "Removing data source...",
|
|
336
347
|
importing: "Importing data...",
|
|
@@ -380,6 +391,10 @@ declare var export_default = {
|
|
|
380
391
|
max: "Max",
|
|
381
392
|
from: "From",
|
|
382
393
|
to: "To",
|
|
394
|
+
rangeMin: "{{label}}, minimum",
|
|
395
|
+
rangeMax: "{{label}}, maximum",
|
|
396
|
+
rangeFrom: "{{label}}, from",
|
|
397
|
+
rangeTo: "{{label}}, to",
|
|
383
398
|
replaceAll: "Replace all",
|
|
384
399
|
resetFilters: "Reset filters",
|
|
385
400
|
showMore: "View error details",
|
|
@@ -549,6 +564,7 @@ declare var export_default = {
|
|
|
549
564
|
chat: {
|
|
550
565
|
emptyTitle: "What would you like to fix?",
|
|
551
566
|
header: "Chat with AI",
|
|
567
|
+
inputLabel: "Ask AI about your data",
|
|
552
568
|
placeholder: "Ask AI...",
|
|
553
569
|
send: "Send",
|
|
554
570
|
},
|