@updog/data-editor 0.1.49 → 0.1.51

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 +6 -0
  3. package/index.js +871 -616
  4. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -439,6 +439,7 @@ declare var export_default = {
439
439
  steps: {
440
440
  selectFiles: "Select files",
441
441
  sheetSelection: "Select sheet",
442
+ headerSelection: "Header selection",
442
443
  matchColumns: "Match columns",
443
444
  matchValues: "Match values",
444
445
  primaryKey: "Primary key",
@@ -459,12 +460,17 @@ declare var export_default = {
459
460
  emptyData: "The source returned no data",
460
461
  fetchError: "Failed to load data",
461
462
  },
463
+ headerSelection: {
464
+ noHeaderLabel: "My data has no header row",
465
+ },
462
466
  matchColumns: {
463
467
  banner: "Some columns could not be automatically matched",
464
468
  importedColumns: "Imported columns",
465
469
  matchedCount: "{{matched}}/{{total}} matched",
466
470
  targetColumns: "Target columns",
467
471
  selectColumnPlaceholder: "Select column",
472
+ syntheticColumn: "C{{index}}",
473
+ syntheticColumnValue: "C{{index}}: {{value}}",
468
474
  bestMatch: "Best match",
469
475
  createColumn: "Create column",
470
476
  createColumnNameLabel: "Column name",