arthub-table 0.2.5 → 0.2.6-next.1

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.
@@ -790,6 +790,7 @@ declare class DataGrid {
790
790
  edgeScroller: EdgeScroller;
791
791
  rowIdMap: Map<string, number>;
792
792
  selectedRowIds: Set<string>;
793
+ _groupSelectedRowIds: Map<string, string[]>;
793
794
  lastSelectedRowIndex: number;
794
795
  /** Footer 行高度(showFooter 为 false 时返回 0) */
795
796
  get footerHeight(): number;
@@ -307,6 +307,12 @@ export interface ThemeTokens {
307
307
  warningColor: string;
308
308
  /** 分割线色 */
309
309
  dividerColor: string;
310
+ /** IOMC 提单成功(已提单)图标色 */
311
+ iomcStateDoneColor: string;
312
+ /** IOMC 未提单图标色 */
313
+ iomcStateNotSubmitColor: string;
314
+ /** IOMC 已驳回图标色 */
315
+ iomcStateRejectColor: string;
310
316
  /** 路径文本色 */
311
317
  pathTextColor: string;
312
318
  /** StatusText 默认文本色 */
@@ -15,6 +15,7 @@ declare class TextViewerWithSwitcher implements CellViewer<TextViewerWithSwitche
15
15
  private totalNumImage;
16
16
  private iomcImages;
17
17
  private iomcColoredCanvases;
18
+ private iomcColoredColors;
18
19
  private downstreamImage;
19
20
  private downstreamColoredCanvas;
20
21
  private loadingAngle;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.2.5",
3
+ "version": "0.2.6-next.1",
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",