arthub-table 0.2.7-next.1 → 0.2.7-next.2
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/adapters/DataGridIntegration.d.ts +2 -0
- package/dist/types/core/DataGrid.d.ts +4 -0
- package/package.json +1 -1
|
@@ -599,6 +599,8 @@ export interface DataGridCallbacks {
|
|
|
599
599
|
data: any;
|
|
600
600
|
selectedRowIds: string[];
|
|
601
601
|
}) => void;
|
|
602
|
+
/** 组头 checked 是否由外部完全受控(配合 onGroupCheckboxChange 使用) */
|
|
603
|
+
groupCheckedControlled?: boolean;
|
|
602
604
|
/**
|
|
603
605
|
* Cell value transformer callback.
|
|
604
606
|
* Called by Cell.drawWithViewer() before passing data to viewer.draw().
|
|
@@ -732,6 +732,8 @@ export interface DataGridOptions {
|
|
|
732
732
|
data: any;
|
|
733
733
|
selectedRowIds: string[];
|
|
734
734
|
}) => void;
|
|
735
|
+
/** 组头 checked 状态是否由外部完全受控(不再内部计算 syncGroupCheckedState) */
|
|
736
|
+
groupCheckedControlled?: boolean;
|
|
735
737
|
/**
|
|
736
738
|
/** Cell value transformer callback.
|
|
737
739
|
* Called by Cell.drawWithViewer() before passing data to viewer.draw().
|
|
@@ -964,6 +966,8 @@ declare class DataGrid {
|
|
|
964
966
|
data: any;
|
|
965
967
|
selectedRowIds: string[];
|
|
966
968
|
}) => void;
|
|
969
|
+
/** 组头 checked 状态是否由外部完全受控 */
|
|
970
|
+
groupCheckedControlled?: boolean;
|
|
967
971
|
/** 折叠所有任务回调 */
|
|
968
972
|
onCollapseAll?: () => void;
|
|
969
973
|
/** 展开所有任务回调 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arthub-table",
|
|
3
|
-
"version": "0.2.7-next.
|
|
3
|
+
"version": "0.2.7-next.2",
|
|
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",
|