@updog/data-editor-wc 0.1.83 → 0.1.85

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 (3) hide show
  1. package/index.d.ts +4 -1
  2. package/index.js +6801 -6733
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -492,6 +492,7 @@ declare var export_default = {
492
492
  matchColumns: {
493
493
  allMatched: "All columns are matched",
494
494
  banner: "Some columns could not be automatically matched",
495
+ changeHeaderRow: "Change header row",
495
496
  importedColumns: "Imported columns",
496
497
  matchedCount: "{{matched}}/{{total}} matched",
497
498
  targetColumns: "Target columns",
@@ -1464,7 +1465,9 @@ type DataEditorBaseProps<TRow extends DataEditorRow = DataEditorRow> = {
1464
1465
  * target (a column ID/title, or an option value); the array lists aliases the
1465
1466
  * matching engine treats as equivalent. Merged with the built-ins per key.
1466
1467
  *
1467
- * Feed `result.learnedSynonyms` straight back it comes out in this shape.
1468
+ * `result.learnedSynonyms` comes out as `{ source, target }` entries under
1469
+ * `columns` and `values`. Group each pair's source under its target to
1470
+ * build this shape.
1468
1471
  *
1469
1472
  * @example
1470
1473
  * ```ts