arthub-table 0.2.19 → 0.2.20
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.
- package/dist/arthub-table.common.js +1 -1
- package/dist/arthub-table.common.js.map +1 -1
- package/dist/arthub-table.umd.js +1 -1
- package/dist/arthub-table.umd.js.map +1 -1
- package/dist/arthub-table.umd.min.js +1 -1
- package/dist/arthub-table.umd.min.js.map +1 -1
- package/dist/types/core/viewers/RelatedTaskViewer.d.ts +11 -0
- package/dist/types/core/viewers/types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -84,6 +84,17 @@ declare class RelatedTaskViewer implements CellViewer<RelatedTaskViewerData> {
|
|
|
84
84
|
* Draw empty placeholder — consistent with other viewers
|
|
85
85
|
*/
|
|
86
86
|
private drawEmptyPlaceholder;
|
|
87
|
+
/**
|
|
88
|
+
* Draw the deliverable acceptance mark badge (bottom-right circle) on a thumbnail.
|
|
89
|
+
* Aligned with FileViewer.drawMarkIcon / ImageViewer.drawMarkIcon:
|
|
90
|
+
* - ah-icon_finish1: green circle + white check (已验收)
|
|
91
|
+
* - ah-icon_help2: orange circle + white question mark (待验收)
|
|
92
|
+
*
|
|
93
|
+
* Only invoked when the related-task display field's fileData item carries a `mark`
|
|
94
|
+
* (the business layer gates it by 被引用字段.showAcceptanceRemind && 节点关联任务列.isAcceptanceRemind).
|
|
95
|
+
*/
|
|
96
|
+
private drawFileMark;
|
|
97
|
+
private drawMarkIcon;
|
|
87
98
|
/**
|
|
88
99
|
* Draw a file status/format icon when coverUrl is not available.
|
|
89
100
|
* Uses the same getIconByFileStatus logic as FileViewer for visual consistency.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arthub-table",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.20",
|
|
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",
|