arthub-table 0.2.78 → 0.2.79-next.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.
@@ -36,6 +36,8 @@ export interface DataGridInitOptions {
36
36
  rowKey?: string;
37
37
  /** 行高,默认 34 */
38
38
  rowHeight?: number;
39
+ /** ⊕ 添加任务行固定高度(不随 rowHeight 联动),不传则与普通行一致 */
40
+ addTaskRowHeight?: number;
39
41
  /** 表头高度,默认 34 */
40
42
  headerHeight?: number;
41
43
  /** 是否显示底部统计行 */
@@ -884,6 +884,8 @@ declare class DataGrid {
884
884
  stripedOddColor: string;
885
885
  stripedEvenColor: string;
886
886
  rowHeight: number;
887
+ /** ⊕ 添加任务行固定高度(不随 rowHeight 联动),不传则与普通行一致 */
888
+ addTaskRowHeight?: number;
887
889
  hoverRowIndex: number;
888
890
  hoverColIndex: number;
889
891
  isScrolling: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.2.78",
3
+ "version": "0.2.79-next.0",
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",