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