arthub-table 0.2.0-beta.21 → 0.2.0-beta.22

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.
@@ -192,6 +192,12 @@ declare class NestedGrid {
192
192
  parentColKey: string;
193
193
  };
194
194
  } | null;
195
+ /**
196
+ * Handle double-click inside nested grid.
197
+ * Delegates to viewer.onDblClick (e.g. FileViewer opens file detail on dblclick).
198
+ * Returns true if the double-click was handled by a viewer.
199
+ */
200
+ handleDblClick(mouseX: number, mouseY: number): boolean;
195
201
  /**
196
202
  * Check if mouse is on the boolean checkbox area within a cell
197
203
  */
@@ -110,9 +110,9 @@ declare class FileViewer implements CellViewer<FileViewerData> {
110
110
  */
111
111
  /**
112
112
  * 绘制交付物角标(右下角圆形图标)
113
- * 与 DOM .mark-icon 样式对齐:
114
- * - ah-icon_finish1: 白底 + 绿色 #00bd77 勾(已完成)
115
- * - ah-icon_help2: 白底 + 橙色 #ed954f 问号(待验收)
113
+ * 与 DOM .mark-icon iconfont 图标对齐:
114
+ * - ah-icon_finish1: 绿色 #00bd77 圆形背景 + 白色勾(已完成)
115
+ * - ah-icon_help2: 橙色 #ed954f 圆形背景 + 白色问号(待验收)
116
116
  */
117
117
  private drawMarkIcon;
118
118
  private drawIconByFileStatus;
@@ -62,9 +62,9 @@ declare class ImageViewer implements CellViewer<ImageViewerData> {
62
62
  private drawSinglePlaceholder;
63
63
  /**
64
64
  * 绘制交付物角标(右下角圆形图标)
65
- * 与 DOM .mark-icon 样式对齐:
66
- * - ah-icon_finish1: 白底 + 绿色 #00bd77 勾(已完成)
67
- * - ah-icon_help2: 白底 + 橙色 #ed954f 问号(待验收)
65
+ * 与 DOM .mark-icon iconfont 图标对齐:
66
+ * - ah-icon_finish1: 绿色 #00bd77 圆形背景 + 白色勾(已完成)
67
+ * - ah-icon_help2: 橙色 #ed954f 圆形背景 + 白色问号(待验收)
68
68
  */
69
69
  private drawMarkIcon;
70
70
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.2.0-beta.21",
3
+ "version": "0.2.0-beta.22",
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",