@aimerthyr/virtual-table 1.3.4 → 1.4.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.4.0] - 2026-03-22
4
+
5
+ ### Features
6
+
7
+ - 支持行编辑功能
8
+ - 支持异步设置 tree children 属性
9
+
3
10
  ## [1.3.4] - 2026-03-20
4
11
 
5
12
  ### Fixed
package/README.md CHANGED
@@ -372,6 +372,7 @@ const handleSelectionChange = (rows: any[]) => {
372
372
  | --------------- | -------------------------------------------------------- | ------------------- |
373
373
  | `tanstackTable` | `Table<TData>` | TanStack Table 实例 |
374
374
  | `scrollToIndex` | `(index: number, behavior?: 'auto' \| 'smooth') => void` | 滚动到指定行 |
375
+ | `setEditingRow` | `(rowId: string \| number \| null) => void` | 设置当前编辑行 |
375
376
 
376
377
  使用示例:
377
378