gzhr-ui 1.1.14 → 1.1.15

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.
@@ -0,0 +1,13 @@
1
+ import { Ref } from 'vue';
2
+ /**
3
+ * 固定列设置面板(右键表头/菜单触发)
4
+ * - 面板列来源:vxe-grid 实例的 getColumns()
5
+ * - 仅处理“叶子列”(最终数据列),排除 seq/checkbox/radio/expand/action 等内置列
6
+ * - 不做持久化:关闭页面恢复默认
7
+ */
8
+ export declare function useFixedColumnPanel(gridRef: Ref<any>): {
9
+ openFixPanel: () => void;
10
+ clearAllFixed: () => void;
11
+ freezeToLeft: (column: any) => void;
12
+ freezeToRight: (column: any) => void;
13
+ };