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