arthub-table 0.2.57-next.0 → 0.2.57

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.
@@ -67,17 +67,6 @@ declare class Body {
67
67
  resizeColumn(colIndex: number, width: number): void;
68
68
  resizeAllColumn(width: number): void;
69
69
  resizeRow(rowIndex: number, height: number): void;
70
- /**
71
- * 从行数据中提取行唯一标识,与 Row 构造函数中的 `_rowId` 计算逻辑保持一致。
72
- * 优先级:_rowId > _originalPathId > pathId > _pathId > rowKey > row_N
73
- */
74
- private getRowId;
75
- /**
76
- * 递归收集全量数据行。
77
- * 展开的分组(expanded !== false):子行已在扁平数组中,跳过 children 避免重复。
78
- * 折叠的分组(expanded === false):子行仅在 children 中,需要递归展开。
79
- */
80
- private collectAllDataRows;
81
70
  handleCheckRow(y?: number): void;
82
71
  handleCheckHeader(): void;
83
72
  mouseMove(x: number, y: number): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.2.57-next.0",
3
+ "version": "0.2.57",
4
4
  "description": "High-performance canvas-based table/grid component for Vue 3 with TypeScript support, featuring virtual scrolling, cell viewers, grouped rows, and nested grids.",
5
5
  "main": "dist/arthub-table.common.js",
6
6
  "module": "dist/arthub-table.umd.min.js",