@updog/data-editor 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.
Files changed (4) hide show
  1. package/index.css +1 -1
  2. package/index.d.ts +23 -5
  3. package/index.js +5551 -5070
  4. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -162,10 +162,14 @@ declare var export_default = {
162
162
  xmlFormat: "XML (.xml)",
163
163
  },
164
164
  statusBar: {
165
- totalRows: "{{total}} rows",
166
- filteredRows: "{{filtered}} of {{total}} rows",
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: {
171
+ clipboardWriteFailed:
172
+ "The browser blocked the copy to the clipboard. You can paste inside this table.",
169
173
  dismiss: "Dismiss",
170
174
  rowMayNotBeVisible:
171
175
  "Row has been added but may not be visible due to active filters or sorting",
@@ -176,12 +180,18 @@ declare var export_default = {
176
180
  loading: "Loading data...",
177
181
  emptyCell: "Empty",
178
182
  a11y: {
179
- gridLabel: "Data editor",
183
+ cellEditor: "Edit {{column}}, row {{row}}",
180
184
  cellFocus: "Row {{row}}, {{column}}: {{value}}",
181
185
  cellFocusEmpty: "Row {{row}}, {{column}}: empty",
186
+ cellInvalid: "Invalid: {{messages}}",
187
+ cellMisplaced: "Misplaced: {{messages}}",
188
+ contextMenu: "Grid actions",
189
+ gridLabel: "Data editor",
182
190
  selectAll: "All cells selected",
183
- rowsSelected: "{{count}} rows selected",
184
- columnsSelected: "{{count}} columns selected",
191
+ rowsSelected_one: "{{count}} row selected",
192
+ rowsSelected_other: "{{count}} rows selected",
193
+ columnsSelected_one: "{{count}} column selected",
194
+ columnsSelected_other: "{{count}} columns selected",
185
195
  },
186
196
  contextMenu: {
187
197
  cut: "Cut",
@@ -303,6 +313,7 @@ declare var export_default = {
303
313
  applyToRows_one: "Apply to {{count}} row",
304
314
  applyToRows_other: "Apply to {{count}} rows",
305
315
  selectColumn: "Select column",
316
+ selectColumnNumber: "Select column {{number}}",
306
317
  title: "Merge",
307
318
  },
308
319
  transformSplit: {
@@ -318,6 +329,7 @@ declare var export_default = {
318
329
  preview: "Preview",
319
330
  removeColumn: "Remove column",
320
331
  selectColumn: "Select column",
332
+ selectColumnNumber: "Select column {{number}}",
321
333
  splitBy: "Split by",
322
334
  splitByPlaceholder: "e.g. space, comma",
323
335
  title: "Split",
@@ -331,6 +343,7 @@ declare var export_default = {
331
343
  sorting: "Sorting rows...",
332
344
  undoing: "Reverting changes...",
333
345
  redoing: "Reapplying changes...",
346
+ reverting: "Reverting changes...",
334
347
  deleting: "Deleting rows...",
335
348
  deletingSource: "Removing data source...",
336
349
  importing: "Importing data...",
@@ -380,6 +393,10 @@ declare var export_default = {
380
393
  max: "Max",
381
394
  from: "From",
382
395
  to: "To",
396
+ rangeMin: "{{label}}, minimum",
397
+ rangeMax: "{{label}}, maximum",
398
+ rangeFrom: "{{label}}, from",
399
+ rangeTo: "{{label}}, to",
383
400
  replaceAll: "Replace all",
384
401
  resetFilters: "Reset filters",
385
402
  showMore: "View error details",
@@ -549,6 +566,7 @@ declare var export_default = {
549
566
  chat: {
550
567
  emptyTitle: "What would you like to fix?",
551
568
  header: "Chat with AI",
569
+ inputLabel: "Ask AI about your data",
552
570
  placeholder: "Ask AI...",
553
571
  send: "Send",
554
572
  },