arthub-table 0.2.58-next.0 → 0.2.58

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.
@@ -26,10 +26,6 @@ export interface PreprocessedRow {
26
26
  _searchMatch: SearchMatchResult;
27
27
  _cellBgColors: Record<string, string>;
28
28
  _bgColor?: string;
29
- /** CP 行高亮标记 */
30
- _cpHighLight?: boolean;
31
- /** CP 高亮行中需要使用高亮文字色的列 key */
32
- _cpHighLightFields?: string[];
33
29
  _isTopLevelEntity?: boolean;
34
30
  _isEmpty?: boolean;
35
31
  _isGroup?: boolean;
@@ -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;
@@ -173,10 +173,6 @@ export interface ThemeTokens {
173
173
  bgTopLevelEntity: string;
174
174
  /** 顶层实体行 hover 背景色 */
175
175
  bgTopLevelEntityHover: string;
176
- /** CP 高亮行背景色 */
177
- bgCpHighlight: string;
178
- /** CP 高亮行文字色 */
179
- textCpHighlight: string;
180
176
  /** 需求变更-新增需求背景色 */
181
177
  bgDemandChangeAdd: string;
182
178
  /** 需求变更-新增需求 hover 背景色 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.2.58-next.0",
3
+ "version": "0.2.58",
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",