@updog/data-editor 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.
- package/index.d.ts +5 -2
- package/index.js +3129 -3061
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -494,6 +494,7 @@ declare var export_default = {
|
|
|
494
494
|
matchColumns: {
|
|
495
495
|
allMatched: "All columns are matched",
|
|
496
496
|
banner: "Some columns could not be automatically matched",
|
|
497
|
+
changeHeaderRow: "Change header row",
|
|
497
498
|
importedColumns: "Imported columns",
|
|
498
499
|
matchedCount: "{{matched}}/{{total}} matched",
|
|
499
500
|
targetColumns: "Target columns",
|
|
@@ -2177,7 +2178,7 @@ interface Command<TRow extends DataEditorRow = DataEditorRow> {
|
|
|
2177
2178
|
*
|
|
2178
2179
|
* When operation cost >= LARGE_OP_CELLS:
|
|
2179
2180
|
* 1. Viewport rows are applied synchronously (instant visual result)
|
|
2180
|
-
* 2. Remaining rows are processed in chunks via
|
|
2181
|
+
* 2. Remaining rows are processed in chunks via MessageChannel
|
|
2181
2182
|
* 3. Validation runs chunked after all mutations complete
|
|
2182
2183
|
* 4. Command is pushed to history only after everything finishes
|
|
2183
2184
|
*
|
|
@@ -2689,7 +2690,9 @@ type DataEditorBaseProps<TRow extends DataEditorRow = DataEditorRow> = {
|
|
|
2689
2690
|
* target (a column ID/title, or an option value); the array lists aliases the
|
|
2690
2691
|
* matching engine treats as equivalent. Merged with the built-ins per key.
|
|
2691
2692
|
*
|
|
2692
|
-
*
|
|
2693
|
+
* `result.learnedSynonyms` comes out as `{ source, target }` entries under
|
|
2694
|
+
* `columns` and `values`. Group each pair's source under its target to
|
|
2695
|
+
* build this shape.
|
|
2693
2696
|
*
|
|
2694
2697
|
* @example
|
|
2695
2698
|
* ```ts
|