@updog/data-editor-wc 0.1.71 → 0.1.73
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 +23 -5
- package/index.js +9274 -8793
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -160,10 +160,14 @@ 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: {
|
|
169
|
+
clipboardWriteFailed:
|
|
170
|
+
"The browser blocked the copy to the clipboard. You can paste inside this table.",
|
|
167
171
|
dismiss: "Dismiss",
|
|
168
172
|
rowMayNotBeVisible:
|
|
169
173
|
"Row has been added but may not be visible due to active filters or sorting",
|
|
@@ -174,12 +178,18 @@ declare var export_default = {
|
|
|
174
178
|
loading: "Loading data...",
|
|
175
179
|
emptyCell: "Empty",
|
|
176
180
|
a11y: {
|
|
177
|
-
|
|
181
|
+
cellEditor: "Edit {{column}}, row {{row}}",
|
|
178
182
|
cellFocus: "Row {{row}}, {{column}}: {{value}}",
|
|
179
183
|
cellFocusEmpty: "Row {{row}}, {{column}}: empty",
|
|
184
|
+
cellInvalid: "Invalid: {{messages}}",
|
|
185
|
+
cellMisplaced: "Misplaced: {{messages}}",
|
|
186
|
+
contextMenu: "Grid actions",
|
|
187
|
+
gridLabel: "Data editor",
|
|
180
188
|
selectAll: "All cells selected",
|
|
181
|
-
|
|
182
|
-
|
|
189
|
+
rowsSelected_one: "{{count}} row selected",
|
|
190
|
+
rowsSelected_other: "{{count}} rows selected",
|
|
191
|
+
columnsSelected_one: "{{count}} column selected",
|
|
192
|
+
columnsSelected_other: "{{count}} columns selected",
|
|
183
193
|
},
|
|
184
194
|
contextMenu: {
|
|
185
195
|
cut: "Cut",
|
|
@@ -301,6 +311,7 @@ declare var export_default = {
|
|
|
301
311
|
applyToRows_one: "Apply to {{count}} row",
|
|
302
312
|
applyToRows_other: "Apply to {{count}} rows",
|
|
303
313
|
selectColumn: "Select column",
|
|
314
|
+
selectColumnNumber: "Select column {{number}}",
|
|
304
315
|
title: "Merge",
|
|
305
316
|
},
|
|
306
317
|
transformSplit: {
|
|
@@ -316,6 +327,7 @@ declare var export_default = {
|
|
|
316
327
|
preview: "Preview",
|
|
317
328
|
removeColumn: "Remove column",
|
|
318
329
|
selectColumn: "Select column",
|
|
330
|
+
selectColumnNumber: "Select column {{number}}",
|
|
319
331
|
splitBy: "Split by",
|
|
320
332
|
splitByPlaceholder: "e.g. space, comma",
|
|
321
333
|
title: "Split",
|
|
@@ -329,6 +341,7 @@ declare var export_default = {
|
|
|
329
341
|
sorting: "Sorting rows...",
|
|
330
342
|
undoing: "Reverting changes...",
|
|
331
343
|
redoing: "Reapplying changes...",
|
|
344
|
+
reverting: "Reverting changes...",
|
|
332
345
|
deleting: "Deleting rows...",
|
|
333
346
|
deletingSource: "Removing data source...",
|
|
334
347
|
importing: "Importing data...",
|
|
@@ -378,6 +391,10 @@ declare var export_default = {
|
|
|
378
391
|
max: "Max",
|
|
379
392
|
from: "From",
|
|
380
393
|
to: "To",
|
|
394
|
+
rangeMin: "{{label}}, minimum",
|
|
395
|
+
rangeMax: "{{label}}, maximum",
|
|
396
|
+
rangeFrom: "{{label}}, from",
|
|
397
|
+
rangeTo: "{{label}}, to",
|
|
381
398
|
replaceAll: "Replace all",
|
|
382
399
|
resetFilters: "Reset filters",
|
|
383
400
|
showMore: "View error details",
|
|
@@ -547,6 +564,7 @@ declare var export_default = {
|
|
|
547
564
|
chat: {
|
|
548
565
|
emptyTitle: "What would you like to fix?",
|
|
549
566
|
header: "Chat with AI",
|
|
567
|
+
inputLabel: "Ask AI about your data",
|
|
550
568
|
placeholder: "Ask AI...",
|
|
551
569
|
send: "Send",
|
|
552
570
|
},
|