@taocompany/magic-grid 0.6.0 → 0.6.1

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.
@@ -2445,6 +2445,8 @@ export declare interface RowClickedEvent {
2445
2445
  rowId: BusinessRowId;
2446
2446
  rowIndex: number;
2447
2447
  rowNode: RowNode;
2448
+ /** 行数据快照(与 getData 导出规则一致) */
2449
+ rowData: RowNode['data'];
2448
2450
  /** 触发点击的列 colId */
2449
2451
  colId: string;
2450
2452
  }
@@ -2470,6 +2472,8 @@ export declare interface RowDoubleClickedEvent {
2470
2472
  rowId: BusinessRowId;
2471
2473
  rowIndex: number;
2472
2474
  rowNode: RowNode;
2475
+ /** 行数据快照(与 getData 导出规则一致) */
2476
+ rowData: RowNode['data'];
2473
2477
  /** 触发双击的列 colId */
2474
2478
  colId: string;
2475
2479
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taocompany/magic-grid",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "A high-performance virtual table component library for Vue 3",
5
5
  "type": "module",
6
6
  "license": "MIT",