@updog/data-editor 0.1.83 → 0.1.84

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 -2
  2. package/index.js +2284 -2282
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -2177,7 +2177,7 @@ interface Command<TRow extends DataEditorRow = DataEditorRow> {
2177
2177
  *
2178
2178
  * When operation cost >= LARGE_OP_CELLS:
2179
2179
  * 1. Viewport rows are applied synchronously (instant visual result)
2180
- * 2. Remaining rows are processed in chunks via requestIdleCallback
2180
+ * 2. Remaining rows are processed in chunks via MessageChannel
2181
2181
  * 3. Validation runs chunked after all mutations complete
2182
2182
  * 4. Command is pushed to history only after everything finishes
2183
2183
  *
@@ -2689,7 +2689,9 @@ type DataEditorBaseProps<TRow extends DataEditorRow = DataEditorRow> = {
2689
2689
  * target (a column ID/title, or an option value); the array lists aliases the
2690
2690
  * matching engine treats as equivalent. Merged with the built-ins per key.
2691
2691
  *
2692
- * Feed `result.learnedSynonyms` straight back it comes out in this shape.
2692
+ * `result.learnedSynonyms` comes out as `{ source, target }` entries under
2693
+ * `columns` and `values`. Group each pair's source under its target to
2694
+ * build this shape.
2693
2695
  *
2694
2696
  * @example
2695
2697
  * ```ts