arthub-table 0.2.72-next.2 → 0.2.72

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.
@@ -51,7 +51,6 @@ export interface ITableHeader {
51
51
  showFilterIcon?: boolean;
52
52
  /** 筛选命中该列时为 true:筛选图标常驻显示且显示激活色 */
53
53
  filterIconActive?: boolean;
54
- viewerConfig?: Record<string, any>;
55
54
  }
56
55
  /**
57
56
  * AssetMatrix ViewerNames 到 DataGrid ColumnType 的映射表
@@ -3,7 +3,7 @@
3
3
  * Displays task names with tree hierarchy, expand/collapse buttons,
4
4
  * task icons, child count badges, and error/warning indicators
5
5
  */
6
- import type { CellViewer, TextViewerWithSwitcherData, ViewerRenderContext } from './types';
6
+ import type { CellViewer, ViewerRenderContext, TextViewerWithSwitcherData } from './types';
7
7
  /**
8
8
  * TextViewerWithSwitcher renders task names with tree hierarchy
9
9
  * Supports expand/collapse, task icons, child count, error indicators
@@ -23,7 +23,6 @@ declare class TextViewerWithSwitcher implements CellViewer<TextViewerWithSwitche
23
23
  private _sm;
24
24
  private arrowColoredCanvas;
25
25
  private arrowColoredColor;
26
- private childCountIconColoredCanvases;
27
26
  constructor();
28
27
  /**
29
28
  * Preload SVG icons
@@ -109,10 +108,6 @@ declare class TextViewerWithSwitcher implements CellViewer<TextViewerWithSwitche
109
108
  * Calculate right reserved width for totalNum, downstream, and error icons
110
109
  */
111
110
  private calcRightReservedWidth;
112
- private normalizeOpacity;
113
- private normalizeChildCountTextPart;
114
- private resolveChildCountRender;
115
- private calcChildCountRenderWidth;
116
111
  /**
117
112
  * Draw right area: totalNum icon, downstream indicator, error/warning icon
118
113
  */
@@ -127,9 +122,6 @@ declare class TextViewerWithSwitcher implements CellViewer<TextViewerWithSwitche
127
122
  * @returns New right X position (moving leftward)
128
123
  */
129
124
  private drawTotalNum;
130
- private drawCustomTotalNum;
131
- private drawChildCountTextPart;
132
- private drawChildCountIcon;
133
125
  /**
134
126
  * Draw downstream node indicator (icon_history1.svg, colored #ffb74d, 16x16)
135
127
  * @returns New right X position (moving leftward)
@@ -660,26 +660,6 @@ export interface ModuleViewerData extends CellViewerData {
660
660
  /**
661
661
  * Text viewer with switcher data (tree expand/collapse + task name)
662
662
  */
663
- export interface TextViewerChildCountTextPart {
664
- text: string | number;
665
- color?: string;
666
- opacity?: number;
667
- }
668
- export interface TextViewerChildCountIconPart {
669
- color?: string;
670
- opacity?: number;
671
- }
672
- export interface TextViewerChildCountRenderResult {
673
- text?: string | number | TextViewerChildCountTextPart;
674
- prefix?: string | number | TextViewerChildCountTextPart;
675
- icon?: TextViewerChildCountIconPart;
676
- }
677
- export type TextViewerChildCountRenderer = (params: {
678
- data: CellViewerData & Record<string, any>;
679
- rowData?: Record<string, any>;
680
- count: number;
681
- defaultText: string;
682
- }) => TextViewerChildCountRenderResult | string | number | null | undefined;
683
663
  export interface TextViewerWithSwitcherData extends CellViewerData {
684
664
  value: string | number | null;
685
665
  /** Display label (overrides value when present) */
@@ -702,8 +682,6 @@ export interface TextViewerWithSwitcherData extends CellViewerData {
702
682
  iconFile?: string;
703
683
  /** Child node count */
704
684
  count?: number;
705
- /** Optional column-level child-count render resolver. Defaults to the existing icon + count. */
706
- renderChildCount?: TextViewerChildCountRenderer;
707
685
  /** Whether the node has downstream nodes */
708
686
  hasDownstreamNode?: boolean;
709
687
  /** Rich text HTML content */
@@ -10,7 +10,7 @@ export { install };
10
10
  export default DataGrid;
11
11
  export type { CellData, CellStyle, RowData, ColData, DataGridOptions, Position, Size, Rect, Range, CellRange, HistoryItem, ValidatorRule, ColumnType, ColumnConfig, SelectorState, EditorState, AutofillState, RangeState, DrawOptions, TextOptions, ClipboardState, EventHandlers, Direction, ScrollDirection, GroupLevel, SeparateLevel, BaseGroupedRowData, GroupRowData, SeparateRowData, NormalRowData, GroupedTableRowData, GroupRowStyle, SeparatorRowStyle, StatisticOption, FooterCellData, FooterData, FooterCellClickInfo, } from './core/types';
12
12
  export { isGroupRow, isSeparateRow, isNormalRow, isRowSelectable, GROUP_TABLE_CONSTANTS, DEFAULT_GROUP_STYLES, DEFAULT_SEPARATOR_STYLES, } from './core/types';
13
- export type { CellBounds, ViewerRenderContext, ViewerDragState, CellViewer, CellViewerData, ViewerOption, ViewerStyle, TextViewerData, DropdownViewerData, ImageViewerData, PreImageViewerData, PersonViewerData, PersonInfo, ProgressViewerData, DatetimeViewerData, BooleanViewerData, StatusViewerData, StatusOption, GroupHeaderViewerData, GroupNameViewerData, GroupNameTagItem, GroupNamePersonItem, SeparatorRowViewerData, PunchViewerData, PunchValue, ModuleInfo, ModuleViewerData, TextViewerChildCountTextPart, TextViewerChildCountIconPart, TextViewerChildCountRenderResult, TextViewerChildCountRenderer, TextViewerWithSwitcherData, FileItem, FileViewerData, HyperlinkTextViewerData, IUpstreamModule, IUpstreamReminderProperties, IUpstreamSyncProperty, IUpstreamFieldViewItem, UpstreamViewerData, TaskNodeItem, TaskNodeViewerData, NestedGridViewerData, NestedColumnConfig, ViewerConstructor, ViewerFactory, ViewerTypeMap, ViewerType, TypedCellData, TableActionButtonOption, TableActionButtonViewerData, } from './core/viewers/types';
13
+ export type { CellBounds, ViewerRenderContext, ViewerDragState, CellViewer, CellViewerData, ViewerOption, ViewerStyle, TextViewerData, DropdownViewerData, ImageViewerData, PreImageViewerData, PersonViewerData, PersonInfo, ProgressViewerData, DatetimeViewerData, BooleanViewerData, StatusViewerData, StatusOption, GroupHeaderViewerData, GroupNameViewerData, GroupNameTagItem, GroupNamePersonItem, SeparatorRowViewerData, PunchViewerData, PunchValue, ModuleInfo, ModuleViewerData, TextViewerWithSwitcherData, FileItem, FileViewerData, HyperlinkTextViewerData, IUpstreamModule, IUpstreamReminderProperties, IUpstreamSyncProperty, IUpstreamFieldViewItem, UpstreamViewerData, TaskNodeItem, TaskNodeViewerData, NestedGridViewerData, NestedColumnConfig, ViewerConstructor, ViewerFactory, ViewerTypeMap, ViewerType, TypedCellData, TableActionButtonOption, TableActionButtonViewerData, } from './core/viewers/types';
14
14
  export { isTextViewerData, isDropdownViewerData, isPersonViewerData, isProgressViewerData, isNestedGridViewerData, } from './core/viewers/types';
15
15
  export { default as ViewerRegistry, getViewerRegistry, } from './core/viewers/ViewerRegistry';
16
16
  export { registerDefaultViewers, defaultViewers } from './core/viewers/index';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.2.72-next.2",
3
+ "version": "0.2.72",
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",