easy-ep-ui 0.1.0 → 0.1.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/LICENSE +172 -0
- package/README.md +29 -14
- package/dist/easy-ep-ui.js +1 -1
- package/dist/style.css +1 -1
- package/es/charts/BaseBar/index.d.ts +2 -0
- package/es/charts/BaseBar/src/index.vue.d.ts +45 -0
- package/es/charts/BaseLine/index.d.ts +2 -0
- package/es/charts/BaseLine/src/index.vue.d.ts +47 -0
- package/es/charts/BasePie/index.d.ts +2 -0
- package/es/charts/BasePie/src/index.vue.d.ts +41 -0
- package/es/charts/BaseRadar/index.d.ts +2 -0
- package/es/charts/BaseRadar/src/index.vue.d.ts +47 -0
- package/es/charts/config.d.ts +32 -0
- package/es/charts/index.d.ts +8 -0
- package/es/charts/useChart.d.ts +21 -0
- package/es/components/ee-dept-cascader/index.d.ts +2 -0
- package/es/components/ee-dept-cascader/src/index.vue.d.ts +26 -0
- package/es/components/ee-dept-cascader/type.d.ts +39 -0
- package/es/components/ee-dict-select/src/index.vue.d.ts +20 -17
- package/es/components/ee-dict-select/type.d.ts +54 -0
- package/es/components/ee-form-dialog/src/index.vue.d.ts +110 -8
- package/es/components/ee-form-table/src/components/FormAuto.vue.d.ts +115 -0
- package/es/components/ee-form-table/src/components/FormDrawer.vue.d.ts +311 -0
- package/es/components/ee-form-table/src/components/SearchArea.vue.d.ts +39 -0
- package/es/components/ee-form-table/src/components/TableToolbar.vue.d.ts +43 -0
- package/es/components/ee-form-table/src/constants.d.ts +31 -0
- package/es/components/ee-form-table/src/hooks/useAuth.d.ts +14 -0
- package/es/components/ee-form-table/src/hooks/useCrud.d.ts +41 -0
- package/es/components/ee-form-table/src/hooks/useDict.d.ts +12 -0
- package/es/components/ee-form-table/src/hooks/useExport.d.ts +34 -0
- package/es/components/ee-form-table/src/hooks/useForm.d.ts +33 -0
- package/es/components/ee-form-table/src/hooks/usePagination.d.ts +22 -0
- package/es/components/ee-form-table/src/hooks/useSearch.d.ts +39 -0
- package/es/components/ee-form-table/src/hooks/useTable.d.ts +49 -0
- package/es/components/ee-form-table/src/index.vue.d.ts +1090 -533
- package/es/components/ee-form-table/types.d.ts +238 -0
- package/es/components/ee-remote-select/index.d.ts +2 -0
- package/es/components/ee-remote-select/src/index.vue.d.ts +30 -0
- package/es/components/ee-remote-select/type.d.ts +53 -0
- package/es/components/ee-role-select/index.d.ts +2 -0
- package/es/components/ee-role-select/src/index.vue.d.ts +29 -0
- package/es/components/ee-role-select/type.d.ts +44 -0
- package/es/components/ee-search-bar/src/index.vue.d.ts +82 -10
- package/es/components/ee-status-tag/src/index.vue.d.ts +1 -1
- package/es/components/ee-user-select/index.d.ts +2 -0
- package/es/components/ee-user-select/src/index.vue.d.ts +29 -0
- package/es/components/ee-user-select/type.d.ts +46 -0
- package/es/hooks/index.d.ts +4 -0
- package/es/hooks/useRemoteSelectPagination.d.ts +68 -0
- package/es/hooks/useSelectEcho.d.ts +27 -0
- package/es/index.d.ts +51 -2
- package/es/index.mjs +3135 -345
- package/es/locale/en.d.ts +3 -0
- package/es/locale/index.d.ts +86 -0
- package/es/locale/useLocale.d.ts +13 -0
- package/es/locale/zh-cn.d.ts +3 -0
- package/es/style.css +1 -1
- package/es/utils/types.d.ts +39 -0
- package/lib/charts/BaseBar/index.d.ts +2 -0
- package/lib/charts/BaseBar/src/index.vue.d.ts +45 -0
- package/lib/charts/BaseLine/index.d.ts +2 -0
- package/lib/charts/BaseLine/src/index.vue.d.ts +47 -0
- package/lib/charts/BasePie/index.d.ts +2 -0
- package/lib/charts/BasePie/src/index.vue.d.ts +41 -0
- package/lib/charts/BaseRadar/index.d.ts +2 -0
- package/lib/charts/BaseRadar/src/index.vue.d.ts +47 -0
- package/lib/charts/config.d.ts +32 -0
- package/lib/charts/index.d.ts +8 -0
- package/lib/charts/useChart.d.ts +21 -0
- package/lib/components/ee-dept-cascader/index.d.ts +2 -0
- package/lib/components/ee-dept-cascader/src/index.vue.d.ts +26 -0
- package/lib/components/ee-dept-cascader/type.d.ts +39 -0
- package/lib/components/ee-dict-select/src/index.vue.d.ts +20 -17
- package/lib/components/ee-dict-select/type.d.ts +54 -0
- package/lib/components/ee-form-dialog/src/index.vue.d.ts +110 -8
- package/lib/components/ee-form-table/src/components/FormAuto.vue.d.ts +115 -0
- package/lib/components/ee-form-table/src/components/FormDrawer.vue.d.ts +311 -0
- package/lib/components/ee-form-table/src/components/SearchArea.vue.d.ts +39 -0
- package/lib/components/ee-form-table/src/components/TableToolbar.vue.d.ts +43 -0
- package/lib/components/ee-form-table/src/constants.d.ts +31 -0
- package/lib/components/ee-form-table/src/hooks/useAuth.d.ts +14 -0
- package/lib/components/ee-form-table/src/hooks/useCrud.d.ts +41 -0
- package/lib/components/ee-form-table/src/hooks/useDict.d.ts +12 -0
- package/lib/components/ee-form-table/src/hooks/useExport.d.ts +34 -0
- package/lib/components/ee-form-table/src/hooks/useForm.d.ts +33 -0
- package/lib/components/ee-form-table/src/hooks/usePagination.d.ts +22 -0
- package/lib/components/ee-form-table/src/hooks/useSearch.d.ts +39 -0
- package/lib/components/ee-form-table/src/hooks/useTable.d.ts +49 -0
- package/lib/components/ee-form-table/src/index.vue.d.ts +1090 -533
- package/lib/components/ee-form-table/types.d.ts +238 -0
- package/lib/components/ee-remote-select/index.d.ts +2 -0
- package/lib/components/ee-remote-select/src/index.vue.d.ts +30 -0
- package/lib/components/ee-remote-select/type.d.ts +53 -0
- package/lib/components/ee-role-select/index.d.ts +2 -0
- package/lib/components/ee-role-select/src/index.vue.d.ts +29 -0
- package/lib/components/ee-role-select/type.d.ts +44 -0
- package/lib/components/ee-search-bar/src/index.vue.d.ts +82 -10
- package/lib/components/ee-status-tag/src/index.vue.d.ts +1 -1
- package/lib/components/ee-user-select/index.d.ts +2 -0
- package/lib/components/ee-user-select/src/index.vue.d.ts +29 -0
- package/lib/components/ee-user-select/type.d.ts +46 -0
- package/lib/hooks/index.d.ts +4 -0
- package/lib/hooks/useRemoteSelectPagination.d.ts +68 -0
- package/lib/hooks/useSelectEcho.d.ts +27 -0
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +51 -2
- package/lib/locale/en.d.ts +3 -0
- package/lib/locale/index.d.ts +86 -0
- package/lib/locale/useLocale.d.ts +13 -0
- package/lib/locale/zh-cn.d.ts +3 -0
- package/lib/style.css +1 -1
- package/lib/utils/types.d.ts +39 -0
- package/package.json +9 -5
|
@@ -1,38 +1,336 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TableColumn, ActionConfig, ToolbarConfig, DictOption } from '../types';
|
|
2
2
|
type __VLS_Props = {
|
|
3
|
-
data: Record<string, unknown>[];
|
|
4
3
|
columns: TableColumn[];
|
|
5
|
-
|
|
6
|
-
pagination: Pagination;
|
|
4
|
+
data?: Record<string, any>[];
|
|
7
5
|
loading?: boolean;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
6
|
+
searchConfig?: any;
|
|
7
|
+
pagination?: any;
|
|
8
|
+
actionConfig?: ActionConfig | boolean;
|
|
9
|
+
toolbarConfig?: ToolbarConfig | boolean;
|
|
10
|
+
crudConfig?: any;
|
|
11
|
+
selectionConfig?: any;
|
|
12
|
+
exportConfig?: any;
|
|
13
|
+
drawerConfig?: any;
|
|
14
|
+
columnSetting?: any;
|
|
15
|
+
autoHeight?: any;
|
|
16
|
+
dictMap?: Record<string, DictOption[]>;
|
|
17
|
+
authChecker?: (auth: string) => boolean;
|
|
18
|
+
authMode?: 'hide' | 'disabled';
|
|
19
|
+
emptyText?: string;
|
|
20
|
+
tableHeight?: string | number;
|
|
21
|
+
tableMaxHeight?: string | number;
|
|
22
|
+
size?: 'large' | 'default' | 'small';
|
|
23
|
+
stripe?: boolean;
|
|
24
|
+
border?: boolean;
|
|
25
|
+
highlightCurrentRow?: boolean;
|
|
26
|
+
rowKey?: string;
|
|
15
27
|
};
|
|
16
28
|
declare function __VLS_template(): {
|
|
17
29
|
attrs: Partial<{}>;
|
|
18
30
|
slots: Partial<Record<string, (_: {
|
|
19
31
|
row: import('element-plus/es/components/table/src/table/defaults.mjs').DefaultRow;
|
|
20
32
|
index: number;
|
|
33
|
+
column: TableColumn;
|
|
21
34
|
}) => any>> & {
|
|
22
|
-
|
|
23
|
-
|
|
35
|
+
'search-action'?(_: {
|
|
36
|
+
params: Record<string, unknown>;
|
|
37
|
+
}): any;
|
|
38
|
+
'toolbar-right'?(_: {}): any;
|
|
39
|
+
'action-before'?(_: {
|
|
40
|
+
row: import('element-plus/es/components/table/src/table/defaults.mjs').DefaultRow;
|
|
41
|
+
}): any;
|
|
42
|
+
action?(_: {
|
|
43
|
+
row: import('element-plus/es/components/table/src/table/defaults.mjs').DefaultRow;
|
|
44
|
+
}): any;
|
|
45
|
+
empty?(_: {}): any;
|
|
46
|
+
'add-form'?(_: {
|
|
47
|
+
row: Record<string, unknown> | null;
|
|
48
|
+
formData: Record<string, unknown>;
|
|
49
|
+
}): any;
|
|
50
|
+
'edit-form'?(_: {
|
|
51
|
+
row: Record<string, unknown> | null;
|
|
52
|
+
formData: Record<string, unknown>;
|
|
53
|
+
}): any;
|
|
54
|
+
'view-form'?(_: {
|
|
55
|
+
row: Record<string, unknown> | null;
|
|
56
|
+
formData: Record<string, unknown>;
|
|
57
|
+
}): any;
|
|
24
58
|
};
|
|
25
59
|
refs: {
|
|
26
60
|
tableRef: {
|
|
27
61
|
ns: {
|
|
28
62
|
namespace: import('vue').ComputedRef<string>;
|
|
29
|
-
b: (blockSuffix
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
63
|
+
b: (blockSuffix
|
|
64
|
+
/**
|
|
65
|
+
* EeFormTable — 企业级表格组件
|
|
66
|
+
*
|
|
67
|
+
* ██ 功能特性 ██
|
|
68
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
69
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
70
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
71
|
+
* - 分页
|
|
72
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
73
|
+
* - 列设置(显示/隐藏列)
|
|
74
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
75
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
76
|
+
* - 权限控制(authPass 过滤器)
|
|
77
|
+
* - 自适应高度
|
|
78
|
+
*
|
|
79
|
+
* ██ 架构 ██
|
|
80
|
+
* 采用 子组件 + composables 组合模式:
|
|
81
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
82
|
+
* - components/ → 模板子组件
|
|
83
|
+
* - style.css → 所有样式集中管理
|
|
84
|
+
*/
|
|
85
|
+
?: string) => string;
|
|
86
|
+
e: (element
|
|
87
|
+
/**
|
|
88
|
+
* EeFormTable — 企业级表格组件
|
|
89
|
+
*
|
|
90
|
+
* ██ 功能特性 ██
|
|
91
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
92
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
93
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
94
|
+
* - 分页
|
|
95
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
96
|
+
* - 列设置(显示/隐藏列)
|
|
97
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
98
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
99
|
+
* - 权限控制(authPass 过滤器)
|
|
100
|
+
* - 自适应高度
|
|
101
|
+
*
|
|
102
|
+
* ██ 架构 ██
|
|
103
|
+
* 采用 子组件 + composables 组合模式:
|
|
104
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
105
|
+
* - components/ → 模板子组件
|
|
106
|
+
* - style.css → 所有样式集中管理
|
|
107
|
+
*/
|
|
108
|
+
?: string) => string;
|
|
109
|
+
m: (modifier
|
|
110
|
+
/**
|
|
111
|
+
* EeFormTable — 企业级表格组件
|
|
112
|
+
*
|
|
113
|
+
* ██ 功能特性 ██
|
|
114
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
115
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
116
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
117
|
+
* - 分页
|
|
118
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
119
|
+
* - 列设置(显示/隐藏列)
|
|
120
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
121
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
122
|
+
* - 权限控制(authPass 过滤器)
|
|
123
|
+
* - 自适应高度
|
|
124
|
+
*
|
|
125
|
+
* ██ 架构 ██
|
|
126
|
+
* 采用 子组件 + composables 组合模式:
|
|
127
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
128
|
+
* - components/ → 模板子组件
|
|
129
|
+
* - style.css → 所有样式集中管理
|
|
130
|
+
*/
|
|
131
|
+
?: string) => string;
|
|
132
|
+
be: (blockSuffix
|
|
133
|
+
/**
|
|
134
|
+
* EeFormTable — 企业级表格组件
|
|
135
|
+
*
|
|
136
|
+
* ██ 功能特性 ██
|
|
137
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
138
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
139
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
140
|
+
* - 分页
|
|
141
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
142
|
+
* - 列设置(显示/隐藏列)
|
|
143
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
144
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
145
|
+
* - 权限控制(authPass 过滤器)
|
|
146
|
+
* - 自适应高度
|
|
147
|
+
*
|
|
148
|
+
* ██ 架构 ██
|
|
149
|
+
* 采用 子组件 + composables 组合模式:
|
|
150
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
151
|
+
* - components/ → 模板子组件
|
|
152
|
+
* - style.css → 所有样式集中管理
|
|
153
|
+
*/
|
|
154
|
+
?: string, element
|
|
155
|
+
/**
|
|
156
|
+
* EeFormTable — 企业级表格组件
|
|
157
|
+
*
|
|
158
|
+
* ██ 功能特性 ██
|
|
159
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
160
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
161
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
162
|
+
* - 分页
|
|
163
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
164
|
+
* - 列设置(显示/隐藏列)
|
|
165
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
166
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
167
|
+
* - 权限控制(authPass 过滤器)
|
|
168
|
+
* - 自适应高度
|
|
169
|
+
*
|
|
170
|
+
* ██ 架构 ██
|
|
171
|
+
* 采用 子组件 + composables 组合模式:
|
|
172
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
173
|
+
* - components/ → 模板子组件
|
|
174
|
+
* - style.css → 所有样式集中管理
|
|
175
|
+
*/
|
|
176
|
+
?: string) => string;
|
|
177
|
+
em: (element
|
|
178
|
+
/**
|
|
179
|
+
* EeFormTable — 企业级表格组件
|
|
180
|
+
*
|
|
181
|
+
* ██ 功能特性 ██
|
|
182
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
183
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
184
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
185
|
+
* - 分页
|
|
186
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
187
|
+
* - 列设置(显示/隐藏列)
|
|
188
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
189
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
190
|
+
* - 权限控制(authPass 过滤器)
|
|
191
|
+
* - 自适应高度
|
|
192
|
+
*
|
|
193
|
+
* ██ 架构 ██
|
|
194
|
+
* 采用 子组件 + composables 组合模式:
|
|
195
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
196
|
+
* - components/ → 模板子组件
|
|
197
|
+
* - style.css → 所有样式集中管理
|
|
198
|
+
*/
|
|
199
|
+
?: string, modifier
|
|
200
|
+
/**
|
|
201
|
+
* EeFormTable — 企业级表格组件
|
|
202
|
+
*
|
|
203
|
+
* ██ 功能特性 ██
|
|
204
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
205
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
206
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
207
|
+
* - 分页
|
|
208
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
209
|
+
* - 列设置(显示/隐藏列)
|
|
210
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
211
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
212
|
+
* - 权限控制(authPass 过滤器)
|
|
213
|
+
* - 自适应高度
|
|
214
|
+
*
|
|
215
|
+
* ██ 架构 ██
|
|
216
|
+
* 采用 子组件 + composables 组合模式:
|
|
217
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
218
|
+
* - components/ → 模板子组件
|
|
219
|
+
* - style.css → 所有样式集中管理
|
|
220
|
+
*/
|
|
221
|
+
?: string) => string;
|
|
222
|
+
bm: (blockSuffix
|
|
223
|
+
/**
|
|
224
|
+
* EeFormTable — 企业级表格组件
|
|
225
|
+
*
|
|
226
|
+
* ██ 功能特性 ██
|
|
227
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
228
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
229
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
230
|
+
* - 分页
|
|
231
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
232
|
+
* - 列设置(显示/隐藏列)
|
|
233
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
234
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
235
|
+
* - 权限控制(authPass 过滤器)
|
|
236
|
+
* - 自适应高度
|
|
237
|
+
*
|
|
238
|
+
* ██ 架构 ██
|
|
239
|
+
* 采用 子组件 + composables 组合模式:
|
|
240
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
241
|
+
* - components/ → 模板子组件
|
|
242
|
+
* - style.css → 所有样式集中管理
|
|
243
|
+
*/
|
|
244
|
+
?: string, modifier
|
|
245
|
+
/**
|
|
246
|
+
* EeFormTable — 企业级表格组件
|
|
247
|
+
*
|
|
248
|
+
* ██ 功能特性 ██
|
|
249
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
250
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
251
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
252
|
+
* - 分页
|
|
253
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
254
|
+
* - 列设置(显示/隐藏列)
|
|
255
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
256
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
257
|
+
* - 权限控制(authPass 过滤器)
|
|
258
|
+
* - 自适应高度
|
|
259
|
+
*
|
|
260
|
+
* ██ 架构 ██
|
|
261
|
+
* 采用 子组件 + composables 组合模式:
|
|
262
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
263
|
+
* - components/ → 模板子组件
|
|
264
|
+
* - style.css → 所有样式集中管理
|
|
265
|
+
*/
|
|
266
|
+
?: string) => string;
|
|
267
|
+
bem: (blockSuffix
|
|
268
|
+
/**
|
|
269
|
+
* EeFormTable — 企业级表格组件
|
|
270
|
+
*
|
|
271
|
+
* ██ 功能特性 ██
|
|
272
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
273
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
274
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
275
|
+
* - 分页
|
|
276
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
277
|
+
* - 列设置(显示/隐藏列)
|
|
278
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
279
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
280
|
+
* - 权限控制(authPass 过滤器)
|
|
281
|
+
* - 自适应高度
|
|
282
|
+
*
|
|
283
|
+
* ██ 架构 ██
|
|
284
|
+
* 采用 子组件 + composables 组合模式:
|
|
285
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
286
|
+
* - components/ → 模板子组件
|
|
287
|
+
* - style.css → 所有样式集中管理
|
|
288
|
+
*/
|
|
289
|
+
?: string, element
|
|
290
|
+
/**
|
|
291
|
+
* EeFormTable — 企业级表格组件
|
|
292
|
+
*
|
|
293
|
+
* ██ 功能特性 ██
|
|
294
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
295
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
296
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
297
|
+
* - 分页
|
|
298
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
299
|
+
* - 列设置(显示/隐藏列)
|
|
300
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
301
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
302
|
+
* - 权限控制(authPass 过滤器)
|
|
303
|
+
* - 自适应高度
|
|
304
|
+
*
|
|
305
|
+
* ██ 架构 ██
|
|
306
|
+
* 采用 子组件 + composables 组合模式:
|
|
307
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
308
|
+
* - components/ → 模板子组件
|
|
309
|
+
* - style.css → 所有样式集中管理
|
|
310
|
+
*/
|
|
311
|
+
?: string, modifier
|
|
312
|
+
/**
|
|
313
|
+
* EeFormTable — 企业级表格组件
|
|
314
|
+
*
|
|
315
|
+
* ██ 功能特性 ██
|
|
316
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
317
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
318
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
319
|
+
* - 分页
|
|
320
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
321
|
+
* - 列设置(显示/隐藏列)
|
|
322
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
323
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
324
|
+
* - 权限控制(authPass 过滤器)
|
|
325
|
+
* - 自适应高度
|
|
326
|
+
*
|
|
327
|
+
* ██ 架构 ██
|
|
328
|
+
* 采用 子组件 + composables 组合模式:
|
|
329
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
330
|
+
* - components/ → 模板子组件
|
|
331
|
+
* - style.css → 所有样式集中管理
|
|
332
|
+
*/
|
|
333
|
+
?: string) => string;
|
|
36
334
|
is: {
|
|
37
335
|
(name: string, state: boolean | undefined): string;
|
|
38
336
|
(name: string): string;
|
|
@@ -42,462 +340,462 @@ declare function __VLS_template(): {
|
|
|
42
340
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
43
341
|
cssVarBlockName: (name: string) => string;
|
|
44
342
|
};
|
|
45
|
-
layout: import('element-plus/es/components/table/src/table-layout.mjs').default<Record<string,
|
|
343
|
+
layout: import('element-plus/es/components/table/src/table-layout.mjs').default<Record<string, any>>;
|
|
46
344
|
store: {
|
|
47
345
|
mutations: {
|
|
48
346
|
setData(states: {
|
|
49
347
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
50
|
-
currentRow: import('vue').Ref<Record<string,
|
|
348
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
51
349
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
52
350
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
53
351
|
indent: import('vue').Ref<number, number>;
|
|
54
352
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
55
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
353
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
56
354
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
57
355
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
58
356
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
59
|
-
expandRows: import('vue').Ref<Record<string,
|
|
357
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
60
358
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
61
359
|
tableSize: import('vue').Ref<any, any>;
|
|
62
360
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
63
|
-
data: import('vue').Ref<Record<string,
|
|
64
|
-
_data: import('vue').Ref<Record<string,
|
|
361
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
362
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
65
363
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
66
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
67
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
68
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
69
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
70
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
71
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
72
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
73
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
364
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
365
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
366
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
367
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
368
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
369
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
370
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
371
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
74
372
|
updateOrderFns: (() => void)[];
|
|
75
373
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
76
374
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
77
375
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
78
376
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
79
|
-
selection: import('vue').Ref<Record<string,
|
|
377
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
80
378
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
81
379
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
82
380
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
83
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
84
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
381
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
382
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
85
383
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
86
|
-
filteredData: import('vue').Ref<Record<string,
|
|
87
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
384
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
385
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
88
386
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
89
387
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
90
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
91
|
-
}, data: Record<string,
|
|
388
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
389
|
+
}, data: Record<string, any>[]): void;
|
|
92
390
|
insertColumn(states: {
|
|
93
391
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
94
|
-
currentRow: import('vue').Ref<Record<string,
|
|
392
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
95
393
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
96
394
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
97
395
|
indent: import('vue').Ref<number, number>;
|
|
98
396
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
99
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
397
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
100
398
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
101
399
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
102
400
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
103
|
-
expandRows: import('vue').Ref<Record<string,
|
|
401
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
104
402
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
105
403
|
tableSize: import('vue').Ref<any, any>;
|
|
106
404
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
107
|
-
data: import('vue').Ref<Record<string,
|
|
108
|
-
_data: import('vue').Ref<Record<string,
|
|
405
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
406
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
109
407
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
110
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
111
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
112
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
113
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
114
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
115
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
116
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
117
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
408
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
409
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
410
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
411
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
412
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
413
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
414
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
415
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
118
416
|
updateOrderFns: (() => void)[];
|
|
119
417
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
120
418
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
121
419
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
122
420
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
123
|
-
selection: import('vue').Ref<Record<string,
|
|
421
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
124
422
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
125
423
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
126
424
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
127
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
128
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
425
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
426
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
129
427
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
130
|
-
filteredData: import('vue').Ref<Record<string,
|
|
131
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
428
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
429
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
132
430
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
133
431
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
134
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
135
|
-
}, column: import('element-plus').TableColumnCtx<Record<string,
|
|
432
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
433
|
+
}, column: import('element-plus').TableColumnCtx<Record<string, any>>, parent: import('element-plus').TableColumnCtx<Record<string, any>>, updateColumnOrder: () => void): void;
|
|
136
434
|
updateColumnOrder(states: {
|
|
137
435
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
138
|
-
currentRow: import('vue').Ref<Record<string,
|
|
436
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
139
437
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
140
438
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
141
439
|
indent: import('vue').Ref<number, number>;
|
|
142
440
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
143
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
441
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
144
442
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
145
443
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
146
444
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
147
|
-
expandRows: import('vue').Ref<Record<string,
|
|
445
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
148
446
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
149
447
|
tableSize: import('vue').Ref<any, any>;
|
|
150
448
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
151
|
-
data: import('vue').Ref<Record<string,
|
|
152
|
-
_data: import('vue').Ref<Record<string,
|
|
449
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
450
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
153
451
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
154
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
155
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
156
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
157
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
158
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
159
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
160
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
161
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
452
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
453
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
454
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
455
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
456
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
457
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
458
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
459
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
162
460
|
updateOrderFns: (() => void)[];
|
|
163
461
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
164
462
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
165
463
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
166
464
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
167
|
-
selection: import('vue').Ref<Record<string,
|
|
465
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
168
466
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
169
467
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
170
468
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
171
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
172
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
469
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
470
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
173
471
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
174
|
-
filteredData: import('vue').Ref<Record<string,
|
|
175
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
472
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
473
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
176
474
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
177
475
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
178
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
179
|
-
}, column: import('element-plus').TableColumnCtx<Record<string,
|
|
476
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
477
|
+
}, column: import('element-plus').TableColumnCtx<Record<string, any>>): void;
|
|
180
478
|
removeColumn(states: {
|
|
181
479
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
182
|
-
currentRow: import('vue').Ref<Record<string,
|
|
480
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
183
481
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
184
482
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
185
483
|
indent: import('vue').Ref<number, number>;
|
|
186
484
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
187
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
485
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
188
486
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
189
487
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
190
488
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
191
|
-
expandRows: import('vue').Ref<Record<string,
|
|
489
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
192
490
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
193
491
|
tableSize: import('vue').Ref<any, any>;
|
|
194
492
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
195
|
-
data: import('vue').Ref<Record<string,
|
|
196
|
-
_data: import('vue').Ref<Record<string,
|
|
493
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
494
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
197
495
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
198
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
199
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
200
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
201
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
202
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
203
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
204
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
205
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
496
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
497
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
498
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
499
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
500
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
501
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
502
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
503
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
206
504
|
updateOrderFns: (() => void)[];
|
|
207
505
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
208
506
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
209
507
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
210
508
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
211
|
-
selection: import('vue').Ref<Record<string,
|
|
509
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
212
510
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
213
511
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
214
512
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
215
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
216
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
513
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
514
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
217
515
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
218
|
-
filteredData: import('vue').Ref<Record<string,
|
|
219
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
516
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
517
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
220
518
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
221
519
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
222
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
223
|
-
}, column: import('element-plus').TableColumnCtx<Record<string,
|
|
520
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
521
|
+
}, column: import('element-plus').TableColumnCtx<Record<string, any>>, parent: import('element-plus').TableColumnCtx<Record<string, any>>, updateColumnOrder: () => void): void;
|
|
224
522
|
sort(states: {
|
|
225
523
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
226
|
-
currentRow: import('vue').Ref<Record<string,
|
|
524
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
227
525
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
228
526
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
229
527
|
indent: import('vue').Ref<number, number>;
|
|
230
528
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
231
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
529
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
232
530
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
233
531
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
234
532
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
235
|
-
expandRows: import('vue').Ref<Record<string,
|
|
533
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
236
534
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
237
535
|
tableSize: import('vue').Ref<any, any>;
|
|
238
536
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
239
|
-
data: import('vue').Ref<Record<string,
|
|
240
|
-
_data: import('vue').Ref<Record<string,
|
|
537
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
538
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
241
539
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
242
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
243
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
244
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
245
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
246
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
247
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
248
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
249
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
540
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
541
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
542
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
543
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
544
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
545
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
546
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
547
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
250
548
|
updateOrderFns: (() => void)[];
|
|
251
549
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
252
550
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
253
551
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
254
552
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
255
|
-
selection: import('vue').Ref<Record<string,
|
|
553
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
256
554
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
257
555
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
258
556
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
259
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
260
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
557
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
558
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
261
559
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
262
|
-
filteredData: import('vue').Ref<Record<string,
|
|
263
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
560
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
561
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
264
562
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
265
563
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
266
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
564
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
267
565
|
}, options: import('element-plus').Sort): void;
|
|
268
566
|
changeSortCondition(states: {
|
|
269
567
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
270
|
-
currentRow: import('vue').Ref<Record<string,
|
|
568
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
271
569
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
272
570
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
273
571
|
indent: import('vue').Ref<number, number>;
|
|
274
572
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
275
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
573
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
276
574
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
277
575
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
278
576
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
279
|
-
expandRows: import('vue').Ref<Record<string,
|
|
577
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
280
578
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
281
579
|
tableSize: import('vue').Ref<any, any>;
|
|
282
580
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
283
|
-
data: import('vue').Ref<Record<string,
|
|
284
|
-
_data: import('vue').Ref<Record<string,
|
|
581
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
582
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
285
583
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
286
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
287
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
288
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
289
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
290
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
291
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
292
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
293
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
584
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
585
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
586
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
587
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
588
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
589
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
590
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
591
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
294
592
|
updateOrderFns: (() => void)[];
|
|
295
593
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
296
594
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
297
595
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
298
596
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
299
|
-
selection: import('vue').Ref<Record<string,
|
|
597
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
300
598
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
301
599
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
302
600
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
303
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
304
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
601
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
602
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
305
603
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
306
|
-
filteredData: import('vue').Ref<Record<string,
|
|
307
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
604
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
605
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
308
606
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
309
607
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
310
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
608
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
311
609
|
}, options: import('element-plus').Sort): void;
|
|
312
610
|
filterChange(_states: {
|
|
313
611
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
314
|
-
currentRow: import('vue').Ref<Record<string,
|
|
612
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
315
613
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
316
614
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
317
615
|
indent: import('vue').Ref<number, number>;
|
|
318
616
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
319
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
617
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
320
618
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
321
619
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
322
620
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
323
|
-
expandRows: import('vue').Ref<Record<string,
|
|
621
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
324
622
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
325
623
|
tableSize: import('vue').Ref<any, any>;
|
|
326
624
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
327
|
-
data: import('vue').Ref<Record<string,
|
|
328
|
-
_data: import('vue').Ref<Record<string,
|
|
625
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
626
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
329
627
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
330
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
331
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
332
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
333
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
334
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
335
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
336
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
337
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
628
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
629
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
630
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
631
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
632
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
633
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
634
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
635
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
338
636
|
updateOrderFns: (() => void)[];
|
|
339
637
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
340
638
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
341
639
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
342
640
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
343
|
-
selection: import('vue').Ref<Record<string,
|
|
641
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
344
642
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
345
643
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
346
644
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
347
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
348
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
645
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
646
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
349
647
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
350
|
-
filteredData: import('vue').Ref<Record<string,
|
|
351
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
648
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
649
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
352
650
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
353
651
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
354
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
355
|
-
}, options: import('element-plus').Filter<Record<string,
|
|
652
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
653
|
+
}, options: import('element-plus').Filter<Record<string, any>>): void;
|
|
356
654
|
toggleAllSelection(): void;
|
|
357
655
|
rowSelectedChanged(_states: {
|
|
358
656
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
359
|
-
currentRow: import('vue').Ref<Record<string,
|
|
657
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
360
658
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
361
659
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
362
660
|
indent: import('vue').Ref<number, number>;
|
|
363
661
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
364
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
662
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
365
663
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
366
664
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
367
665
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
368
|
-
expandRows: import('vue').Ref<Record<string,
|
|
666
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
369
667
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
370
668
|
tableSize: import('vue').Ref<any, any>;
|
|
371
669
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
372
|
-
data: import('vue').Ref<Record<string,
|
|
373
|
-
_data: import('vue').Ref<Record<string,
|
|
670
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
671
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
374
672
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
375
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
376
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
377
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
378
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
379
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
380
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
381
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
382
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
673
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
674
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
675
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
676
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
677
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
678
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
679
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
680
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
383
681
|
updateOrderFns: (() => void)[];
|
|
384
682
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
385
683
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
386
684
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
387
685
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
388
|
-
selection: import('vue').Ref<Record<string,
|
|
686
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
389
687
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
390
688
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
391
689
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
392
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
393
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
690
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
691
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
394
692
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
395
|
-
filteredData: import('vue').Ref<Record<string,
|
|
396
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
693
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
694
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
397
695
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
398
696
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
399
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
400
|
-
}, row: Record<string,
|
|
697
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
698
|
+
}, row: Record<string, any>): void;
|
|
401
699
|
setHoverRow(states: {
|
|
402
700
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
403
|
-
currentRow: import('vue').Ref<Record<string,
|
|
701
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
404
702
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
405
703
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
406
704
|
indent: import('vue').Ref<number, number>;
|
|
407
705
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
408
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
706
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
409
707
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
410
708
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
411
709
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
412
|
-
expandRows: import('vue').Ref<Record<string,
|
|
710
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
413
711
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
414
712
|
tableSize: import('vue').Ref<any, any>;
|
|
415
713
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
416
|
-
data: import('vue').Ref<Record<string,
|
|
417
|
-
_data: import('vue').Ref<Record<string,
|
|
714
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
715
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
418
716
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
419
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
420
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
421
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
422
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
423
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
424
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
425
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
426
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
717
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
718
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
719
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
720
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
721
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
722
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
723
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
724
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
427
725
|
updateOrderFns: (() => void)[];
|
|
428
726
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
429
727
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
430
728
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
431
729
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
432
|
-
selection: import('vue').Ref<Record<string,
|
|
730
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
433
731
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
434
732
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
435
733
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
436
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
437
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
734
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
735
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
438
736
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
439
|
-
filteredData: import('vue').Ref<Record<string,
|
|
440
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
737
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
738
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
441
739
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
442
740
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
443
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
444
|
-
}, row: Record<string,
|
|
741
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
742
|
+
}, row: Record<string, any>): void;
|
|
445
743
|
setCurrentRow(_states: {
|
|
446
744
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
447
|
-
currentRow: import('vue').Ref<Record<string,
|
|
745
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
448
746
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
449
747
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
450
748
|
indent: import('vue').Ref<number, number>;
|
|
451
749
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
452
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
750
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
453
751
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
454
752
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
455
753
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
456
|
-
expandRows: import('vue').Ref<Record<string,
|
|
754
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
457
755
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
458
756
|
tableSize: import('vue').Ref<any, any>;
|
|
459
757
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
460
|
-
data: import('vue').Ref<Record<string,
|
|
461
|
-
_data: import('vue').Ref<Record<string,
|
|
758
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
759
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
462
760
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
463
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
464
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
465
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
466
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
467
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
468
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
469
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
470
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
761
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
762
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
763
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
764
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
765
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
766
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
767
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
768
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
471
769
|
updateOrderFns: (() => void)[];
|
|
472
770
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
473
771
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
474
772
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
475
773
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
476
|
-
selection: import('vue').Ref<Record<string,
|
|
774
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
477
775
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
478
776
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
479
777
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
480
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
481
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
778
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
779
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
482
780
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
483
|
-
filteredData: import('vue').Ref<Record<string,
|
|
484
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
781
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
782
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
485
783
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
486
784
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
487
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
488
|
-
}, row: Record<string,
|
|
785
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
786
|
+
}, row: Record<string, any>): void;
|
|
489
787
|
};
|
|
490
788
|
commit: (name: "sort" | "setData" | "insertColumn" | "updateColumnOrder" | "removeColumn" | "changeSortCondition" | "filterChange" | "toggleAllSelection" | "rowSelectedChanged" | "setHoverRow" | "setCurrentRow", ...args: any[]) => void;
|
|
491
789
|
updateTableScrollY: () => void;
|
|
492
790
|
assertRowKey: () => void;
|
|
493
791
|
updateColumns: () => void;
|
|
494
792
|
scheduleLayout: (needUpdateColumns?: boolean, immediate?: boolean) => void;
|
|
495
|
-
isSelected: (row: Record<string,
|
|
793
|
+
isSelected: (row: Record<string, any>) => boolean;
|
|
496
794
|
clearSelection: () => void;
|
|
497
795
|
cleanSelection: () => void;
|
|
498
|
-
getSelectionRows: () => Record<string,
|
|
499
|
-
getHalfSelectionRows: () => Record<string,
|
|
500
|
-
toggleRowSelection: (row: Record<string,
|
|
796
|
+
getSelectionRows: () => Record<string, any>[];
|
|
797
|
+
getHalfSelectionRows: () => Record<string, any>[];
|
|
798
|
+
toggleRowSelection: (row: Record<string, any>, selected?: boolean, emitChange?: boolean, ignoreSelectable?: boolean) => void;
|
|
501
799
|
_toggleAllSelection: () => void;
|
|
502
800
|
toggleAllSelection: (() => void) | null;
|
|
503
801
|
updateAllSelected: () => void;
|
|
@@ -505,10 +803,10 @@ declare function __VLS_template(): {
|
|
|
505
803
|
emitChange?: boolean;
|
|
506
804
|
rowIndexMap?: Map<string, number>;
|
|
507
805
|
}) => void;
|
|
508
|
-
getRowIndeterminate: (row: Record<string,
|
|
509
|
-
updateFilters: (column: import('element-plus').TableColumnCtx<Record<string,
|
|
510
|
-
updateCurrentRow: (_currentRow: Record<string,
|
|
511
|
-
updateSort: (column: import('element-plus').TableColumnCtx<Record<string,
|
|
806
|
+
getRowIndeterminate: (row: Record<string, any>) => boolean;
|
|
807
|
+
updateFilters: (column: import('element-plus').TableColumnCtx<Record<string, any>>, values: string[]) => Record<string, string[]>;
|
|
808
|
+
updateCurrentRow: (_currentRow: Record<string, any>) => void;
|
|
809
|
+
updateSort: (column: import('element-plus').TableColumnCtx<Record<string, any>> | null, prop: string | null, order: import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null) => void;
|
|
512
810
|
execFilter: () => void;
|
|
513
811
|
execSort: () => void;
|
|
514
812
|
execQuery: (ignore?: {
|
|
@@ -516,59 +814,59 @@ declare function __VLS_template(): {
|
|
|
516
814
|
} | undefined) => void;
|
|
517
815
|
clearFilter: (columnKeys?: string[] | string) => void;
|
|
518
816
|
clearSort: () => void;
|
|
519
|
-
toggleRowExpansion: (row: Record<string,
|
|
817
|
+
toggleRowExpansion: (row: Record<string, any>, expanded?: boolean) => void;
|
|
520
818
|
setExpandRowKeysAdapter: (val: string[]) => void;
|
|
521
819
|
setCurrentRowKey: (key: string) => void;
|
|
522
|
-
toggleRowExpansionAdapter: (row: Record<string,
|
|
523
|
-
isRowExpanded: (row: Record<string,
|
|
820
|
+
toggleRowExpansionAdapter: (row: Record<string, any>, expanded?: boolean) => void;
|
|
821
|
+
isRowExpanded: (row: Record<string, any>) => boolean;
|
|
524
822
|
updateExpandRows: () => void;
|
|
525
823
|
updateCurrentRowData: () => void;
|
|
526
|
-
loadOrToggle: (row: Record<string,
|
|
824
|
+
loadOrToggle: (row: Record<string, any>) => void;
|
|
527
825
|
updateTreeData: (ifChangeExpandRowKeys?: boolean, ifExpandAll?: boolean) => void;
|
|
528
|
-
updateKeyChildren: (key: string, data: Record<string,
|
|
826
|
+
updateKeyChildren: (key: string, data: Record<string, any>[]) => void;
|
|
529
827
|
states: {
|
|
530
828
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
531
|
-
currentRow: import('vue').Ref<Record<string,
|
|
829
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
532
830
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
533
831
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
534
832
|
indent: import('vue').Ref<number, number>;
|
|
535
833
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
536
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
834
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
537
835
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
538
836
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
539
837
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
540
|
-
expandRows: import('vue').Ref<Record<string,
|
|
838
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
541
839
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
542
840
|
tableSize: import('vue').Ref<any, any>;
|
|
543
841
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
544
|
-
data: import('vue').Ref<Record<string,
|
|
545
|
-
_data: import('vue').Ref<Record<string,
|
|
842
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
843
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
546
844
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
547
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
548
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
549
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
550
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
551
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
552
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
553
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
554
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
845
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
846
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
847
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
848
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
849
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
850
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
851
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
852
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
555
853
|
updateOrderFns: (() => void)[];
|
|
556
854
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
557
855
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
558
856
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
559
857
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
560
|
-
selection: import('vue').Ref<Record<string,
|
|
858
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
561
859
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
562
860
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
563
861
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
564
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
565
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
862
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
863
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
566
864
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
567
|
-
filteredData: import('vue').Ref<Record<string,
|
|
568
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
865
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
866
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
569
867
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
570
868
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
571
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
869
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
572
870
|
};
|
|
573
871
|
ns: {
|
|
574
872
|
namespace: import('vue').ComputedRef<string>;
|
|
@@ -590,14 +888,14 @@ declare function __VLS_template(): {
|
|
|
590
888
|
};
|
|
591
889
|
t: import('element-plus').Translator;
|
|
592
890
|
};
|
|
593
|
-
columns: import('element-plus').TableColumnCtx<Record<string,
|
|
891
|
+
columns: import('element-plus').TableColumnCtx<Record<string, any>>[];
|
|
594
892
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
595
893
|
handleMouseLeave: () => void;
|
|
596
894
|
tableId: string;
|
|
597
|
-
tableSize: "" | "
|
|
895
|
+
tableSize: "" | "large" | "default" | "small";
|
|
598
896
|
isHidden: boolean;
|
|
599
897
|
isEmpty: boolean;
|
|
600
|
-
renderExpanded: import('element-plus/es/components/table/src/table/defaults.mjs').RenderExpanded<Record<string,
|
|
898
|
+
renderExpanded: import('element-plus/es/components/table/src/table/defaults.mjs').RenderExpanded<Record<string, any>> | null;
|
|
601
899
|
resizeProxyVisible: boolean;
|
|
602
900
|
resizeState: {
|
|
603
901
|
width: null | number;
|
|
@@ -614,25 +912,25 @@ declare function __VLS_template(): {
|
|
|
614
912
|
height: string;
|
|
615
913
|
} | undefined;
|
|
616
914
|
debouncedUpdateLayout: import('lodash').DebouncedFunc<() => void>;
|
|
617
|
-
setCurrentRow: (row?: Record<string,
|
|
618
|
-
getSelectionRows: () => Record<string,
|
|
619
|
-
getHalfSelectionRows: () => Record<string,
|
|
620
|
-
toggleRowSelection: (row: Record<string,
|
|
915
|
+
setCurrentRow: (row?: Record<string, any> | undefined) => void;
|
|
916
|
+
getSelectionRows: () => Record<string, any>[];
|
|
917
|
+
getHalfSelectionRows: () => Record<string, any>[];
|
|
918
|
+
toggleRowSelection: (row: Record<string, any>, selected?: boolean, ignoreSelectable?: boolean) => void;
|
|
621
919
|
clearSelection: () => void;
|
|
622
920
|
clearFilter: (columnKeys?: string[] | string) => void;
|
|
623
921
|
toggleAllSelection: () => void;
|
|
624
|
-
toggleRowExpansion: (row: Record<string,
|
|
922
|
+
toggleRowExpansion: (row: Record<string, any>, expanded?: boolean) => void;
|
|
625
923
|
clearSort: () => void;
|
|
626
924
|
doLayout: () => void;
|
|
627
925
|
sort: (prop: string, order: string) => void;
|
|
628
|
-
updateKeyChildren: (key: string, data: Record<string,
|
|
926
|
+
updateKeyChildren: (key: string, data: Record<string, any>[]) => void;
|
|
629
927
|
t: import('element-plus').Translator;
|
|
630
928
|
setDragVisible: (visible: boolean) => void;
|
|
631
|
-
context: import('element-plus').Table<Record<string,
|
|
929
|
+
context: import('element-plus').Table<Record<string, any>>;
|
|
632
930
|
computedSumText: string;
|
|
633
931
|
computedEmptyText: string;
|
|
634
932
|
computedTooltipEffect: string | undefined;
|
|
635
|
-
computedTooltipOptions: Partial<Omit<import('element-plus').UseTooltipProps, "persistent" | "visible" | "
|
|
933
|
+
computedTooltipOptions: Partial<Omit<import('element-plus').UseTooltipProps, "persistent" | "visible" | "referenceEl" | "triggerTargetEl" | "virtualTriggering" | "content" | "rawContent" | "autoClose" | "virtualRef">> | undefined;
|
|
636
934
|
tableLayout: "fixed" | "auto";
|
|
637
935
|
scrollbarViewStyle: {
|
|
638
936
|
display: string;
|
|
@@ -655,43 +953,302 @@ declare function __VLS_template(): {
|
|
|
655
953
|
allowDragLastColumn: boolean;
|
|
656
954
|
} | null;
|
|
657
955
|
};
|
|
658
|
-
rootEl:
|
|
956
|
+
rootEl: any;
|
|
659
957
|
};
|
|
660
958
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
661
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
959
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
960
|
+
refresh: () => Promise<void>;
|
|
961
|
+
fetchData: () => Promise<void>;
|
|
962
|
+
getSelection: () => Record<string, unknown>[];
|
|
963
|
+
tableRef: import('vue').Ref<any, any>;
|
|
964
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
965
|
+
[x: string]: any;
|
|
668
966
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
669
|
-
|
|
670
|
-
onReset?: (() => any) | undefined;
|
|
671
|
-
"onSelection-change"?: ((val: unknown[]) => any) | undefined;
|
|
672
|
-
"onSort-change"?: ((val: unknown) => any) | undefined;
|
|
673
|
-
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
674
|
-
"onSize-change"?: ((val: number) => any) | undefined;
|
|
967
|
+
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
675
968
|
}>, {
|
|
969
|
+
size: "large" | "default" | "small";
|
|
676
970
|
loading: boolean;
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
paginationLayout: string;
|
|
971
|
+
emptyText: string;
|
|
972
|
+
border: boolean;
|
|
973
|
+
stripe: boolean;
|
|
974
|
+
authMode: "hide" | "disabled";
|
|
975
|
+
highlightCurrentRow: boolean;
|
|
976
|
+
rowKey: string;
|
|
684
977
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
685
978
|
tableRef: {
|
|
686
979
|
ns: {
|
|
687
980
|
namespace: import('vue').ComputedRef<string>;
|
|
688
|
-
b: (blockSuffix
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
981
|
+
b: (blockSuffix
|
|
982
|
+
/**
|
|
983
|
+
* EeFormTable — 企业级表格组件
|
|
984
|
+
*
|
|
985
|
+
* ██ 功能特性 ██
|
|
986
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
987
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
988
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
989
|
+
* - 分页
|
|
990
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
991
|
+
* - 列设置(显示/隐藏列)
|
|
992
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
993
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
994
|
+
* - 权限控制(authPass 过滤器)
|
|
995
|
+
* - 自适应高度
|
|
996
|
+
*
|
|
997
|
+
* ██ 架构 ██
|
|
998
|
+
* 采用 子组件 + composables 组合模式:
|
|
999
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1000
|
+
* - components/ → 模板子组件
|
|
1001
|
+
* - style.css → 所有样式集中管理
|
|
1002
|
+
*/
|
|
1003
|
+
?: string) => string;
|
|
1004
|
+
e: (element
|
|
1005
|
+
/**
|
|
1006
|
+
* EeFormTable — 企业级表格组件
|
|
1007
|
+
*
|
|
1008
|
+
* ██ 功能特性 ██
|
|
1009
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1010
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1011
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1012
|
+
* - 分页
|
|
1013
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1014
|
+
* - 列设置(显示/隐藏列)
|
|
1015
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1016
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1017
|
+
* - 权限控制(authPass 过滤器)
|
|
1018
|
+
* - 自适应高度
|
|
1019
|
+
*
|
|
1020
|
+
* ██ 架构 ██
|
|
1021
|
+
* 采用 子组件 + composables 组合模式:
|
|
1022
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1023
|
+
* - components/ → 模板子组件
|
|
1024
|
+
* - style.css → 所有样式集中管理
|
|
1025
|
+
*/
|
|
1026
|
+
?: string) => string;
|
|
1027
|
+
m: (modifier
|
|
1028
|
+
/**
|
|
1029
|
+
* EeFormTable — 企业级表格组件
|
|
1030
|
+
*
|
|
1031
|
+
* ██ 功能特性 ██
|
|
1032
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1033
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1034
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1035
|
+
* - 分页
|
|
1036
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1037
|
+
* - 列设置(显示/隐藏列)
|
|
1038
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1039
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1040
|
+
* - 权限控制(authPass 过滤器)
|
|
1041
|
+
* - 自适应高度
|
|
1042
|
+
*
|
|
1043
|
+
* ██ 架构 ██
|
|
1044
|
+
* 采用 子组件 + composables 组合模式:
|
|
1045
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1046
|
+
* - components/ → 模板子组件
|
|
1047
|
+
* - style.css → 所有样式集中管理
|
|
1048
|
+
*/
|
|
1049
|
+
?: string) => string;
|
|
1050
|
+
be: (blockSuffix
|
|
1051
|
+
/**
|
|
1052
|
+
* EeFormTable — 企业级表格组件
|
|
1053
|
+
*
|
|
1054
|
+
* ██ 功能特性 ██
|
|
1055
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1056
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1057
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1058
|
+
* - 分页
|
|
1059
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1060
|
+
* - 列设置(显示/隐藏列)
|
|
1061
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1062
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1063
|
+
* - 权限控制(authPass 过滤器)
|
|
1064
|
+
* - 自适应高度
|
|
1065
|
+
*
|
|
1066
|
+
* ██ 架构 ██
|
|
1067
|
+
* 采用 子组件 + composables 组合模式:
|
|
1068
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1069
|
+
* - components/ → 模板子组件
|
|
1070
|
+
* - style.css → 所有样式集中管理
|
|
1071
|
+
*/
|
|
1072
|
+
?: string, element
|
|
1073
|
+
/**
|
|
1074
|
+
* EeFormTable — 企业级表格组件
|
|
1075
|
+
*
|
|
1076
|
+
* ██ 功能特性 ██
|
|
1077
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1078
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1079
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1080
|
+
* - 分页
|
|
1081
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1082
|
+
* - 列设置(显示/隐藏列)
|
|
1083
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1084
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1085
|
+
* - 权限控制(authPass 过滤器)
|
|
1086
|
+
* - 自适应高度
|
|
1087
|
+
*
|
|
1088
|
+
* ██ 架构 ██
|
|
1089
|
+
* 采用 子组件 + composables 组合模式:
|
|
1090
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1091
|
+
* - components/ → 模板子组件
|
|
1092
|
+
* - style.css → 所有样式集中管理
|
|
1093
|
+
*/
|
|
1094
|
+
?: string) => string;
|
|
1095
|
+
em: (element
|
|
1096
|
+
/**
|
|
1097
|
+
* EeFormTable — 企业级表格组件
|
|
1098
|
+
*
|
|
1099
|
+
* ██ 功能特性 ██
|
|
1100
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1101
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1102
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1103
|
+
* - 分页
|
|
1104
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1105
|
+
* - 列设置(显示/隐藏列)
|
|
1106
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1107
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1108
|
+
* - 权限控制(authPass 过滤器)
|
|
1109
|
+
* - 自适应高度
|
|
1110
|
+
*
|
|
1111
|
+
* ██ 架构 ██
|
|
1112
|
+
* 采用 子组件 + composables 组合模式:
|
|
1113
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1114
|
+
* - components/ → 模板子组件
|
|
1115
|
+
* - style.css → 所有样式集中管理
|
|
1116
|
+
*/
|
|
1117
|
+
?: string, modifier
|
|
1118
|
+
/**
|
|
1119
|
+
* EeFormTable — 企业级表格组件
|
|
1120
|
+
*
|
|
1121
|
+
* ██ 功能特性 ██
|
|
1122
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1123
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1124
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1125
|
+
* - 分页
|
|
1126
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1127
|
+
* - 列设置(显示/隐藏列)
|
|
1128
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1129
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1130
|
+
* - 权限控制(authPass 过滤器)
|
|
1131
|
+
* - 自适应高度
|
|
1132
|
+
*
|
|
1133
|
+
* ██ 架构 ██
|
|
1134
|
+
* 采用 子组件 + composables 组合模式:
|
|
1135
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1136
|
+
* - components/ → 模板子组件
|
|
1137
|
+
* - style.css → 所有样式集中管理
|
|
1138
|
+
*/
|
|
1139
|
+
?: string) => string;
|
|
1140
|
+
bm: (blockSuffix
|
|
1141
|
+
/**
|
|
1142
|
+
* EeFormTable — 企业级表格组件
|
|
1143
|
+
*
|
|
1144
|
+
* ██ 功能特性 ██
|
|
1145
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1146
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1147
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1148
|
+
* - 分页
|
|
1149
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1150
|
+
* - 列设置(显示/隐藏列)
|
|
1151
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1152
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1153
|
+
* - 权限控制(authPass 过滤器)
|
|
1154
|
+
* - 自适应高度
|
|
1155
|
+
*
|
|
1156
|
+
* ██ 架构 ██
|
|
1157
|
+
* 采用 子组件 + composables 组合模式:
|
|
1158
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1159
|
+
* - components/ → 模板子组件
|
|
1160
|
+
* - style.css → 所有样式集中管理
|
|
1161
|
+
*/
|
|
1162
|
+
?: string, modifier
|
|
1163
|
+
/**
|
|
1164
|
+
* EeFormTable — 企业级表格组件
|
|
1165
|
+
*
|
|
1166
|
+
* ██ 功能特性 ██
|
|
1167
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1168
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1169
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1170
|
+
* - 分页
|
|
1171
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1172
|
+
* - 列设置(显示/隐藏列)
|
|
1173
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1174
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1175
|
+
* - 权限控制(authPass 过滤器)
|
|
1176
|
+
* - 自适应高度
|
|
1177
|
+
*
|
|
1178
|
+
* ██ 架构 ██
|
|
1179
|
+
* 采用 子组件 + composables 组合模式:
|
|
1180
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1181
|
+
* - components/ → 模板子组件
|
|
1182
|
+
* - style.css → 所有样式集中管理
|
|
1183
|
+
*/
|
|
1184
|
+
?: string) => string;
|
|
1185
|
+
bem: (blockSuffix
|
|
1186
|
+
/**
|
|
1187
|
+
* EeFormTable — 企业级表格组件
|
|
1188
|
+
*
|
|
1189
|
+
* ██ 功能特性 ██
|
|
1190
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1191
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1192
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1193
|
+
* - 分页
|
|
1194
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1195
|
+
* - 列设置(显示/隐藏列)
|
|
1196
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1197
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1198
|
+
* - 权限控制(authPass 过滤器)
|
|
1199
|
+
* - 自适应高度
|
|
1200
|
+
*
|
|
1201
|
+
* ██ 架构 ██
|
|
1202
|
+
* 采用 子组件 + composables 组合模式:
|
|
1203
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1204
|
+
* - components/ → 模板子组件
|
|
1205
|
+
* - style.css → 所有样式集中管理
|
|
1206
|
+
*/
|
|
1207
|
+
?: string, element
|
|
1208
|
+
/**
|
|
1209
|
+
* EeFormTable — 企业级表格组件
|
|
1210
|
+
*
|
|
1211
|
+
* ██ 功能特性 ██
|
|
1212
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1213
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1214
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1215
|
+
* - 分页
|
|
1216
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1217
|
+
* - 列设置(显示/隐藏列)
|
|
1218
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1219
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1220
|
+
* - 权限控制(authPass 过滤器)
|
|
1221
|
+
* - 自适应高度
|
|
1222
|
+
*
|
|
1223
|
+
* ██ 架构 ██
|
|
1224
|
+
* 采用 子组件 + composables 组合模式:
|
|
1225
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1226
|
+
* - components/ → 模板子组件
|
|
1227
|
+
* - style.css → 所有样式集中管理
|
|
1228
|
+
*/
|
|
1229
|
+
?: string, modifier
|
|
1230
|
+
/**
|
|
1231
|
+
* EeFormTable — 企业级表格组件
|
|
1232
|
+
*
|
|
1233
|
+
* ██ 功能特性 ██
|
|
1234
|
+
* - 搜索区域(支持 7 种控件类型、折叠展开)
|
|
1235
|
+
* - 工具栏(新增/导入/导出/批量删除/自定义按钮)
|
|
1236
|
+
* - 表格主体(多选/单选、排序、字典映射、自定义插槽)
|
|
1237
|
+
* - 分页
|
|
1238
|
+
* - 新增/编辑表单(drawer 或 dialog 模式)
|
|
1239
|
+
* - 列设置(显示/隐藏列)
|
|
1240
|
+
* - CRUD 操作(查/增/改/删/批量删)
|
|
1241
|
+
* - Excel 导出(动态加载 xlsx,可选依赖)
|
|
1242
|
+
* - 权限控制(authPass 过滤器)
|
|
1243
|
+
* - 自适应高度
|
|
1244
|
+
*
|
|
1245
|
+
* ██ 架构 ██
|
|
1246
|
+
* 采用 子组件 + composables 组合模式:
|
|
1247
|
+
* - hooks/ → 按功能拆分的组合函数
|
|
1248
|
+
* - components/ → 模板子组件
|
|
1249
|
+
* - style.css → 所有样式集中管理
|
|
1250
|
+
*/
|
|
1251
|
+
?: string) => string;
|
|
695
1252
|
is: {
|
|
696
1253
|
(name: string, state: boolean | undefined): string;
|
|
697
1254
|
(name: string): string;
|
|
@@ -701,462 +1258,462 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
701
1258
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
702
1259
|
cssVarBlockName: (name: string) => string;
|
|
703
1260
|
};
|
|
704
|
-
layout: import('element-plus/es/components/table/src/table-layout.mjs').default<Record<string,
|
|
1261
|
+
layout: import('element-plus/es/components/table/src/table-layout.mjs').default<Record<string, any>>;
|
|
705
1262
|
store: {
|
|
706
1263
|
mutations: {
|
|
707
1264
|
setData(states: {
|
|
708
1265
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
709
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1266
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
710
1267
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
711
1268
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
712
1269
|
indent: import('vue').Ref<number, number>;
|
|
713
1270
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
714
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1271
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
715
1272
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
716
1273
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
717
1274
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
718
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1275
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
719
1276
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
720
1277
|
tableSize: import('vue').Ref<any, any>;
|
|
721
1278
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
722
|
-
data: import('vue').Ref<Record<string,
|
|
723
|
-
_data: import('vue').Ref<Record<string,
|
|
1279
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1280
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
724
1281
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
725
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
726
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
727
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
728
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
729
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
730
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
731
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
732
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1282
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1283
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1284
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1285
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1286
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1287
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1288
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1289
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
733
1290
|
updateOrderFns: (() => void)[];
|
|
734
1291
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
735
1292
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
736
1293
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
737
1294
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
738
|
-
selection: import('vue').Ref<Record<string,
|
|
1295
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
739
1296
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
740
1297
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
741
1298
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
742
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
743
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1299
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1300
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
744
1301
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
745
|
-
filteredData: import('vue').Ref<Record<string,
|
|
746
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1302
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1303
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
747
1304
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
748
1305
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
749
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
750
|
-
}, data: Record<string,
|
|
1306
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1307
|
+
}, data: Record<string, any>[]): void;
|
|
751
1308
|
insertColumn(states: {
|
|
752
1309
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
753
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1310
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
754
1311
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
755
1312
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
756
1313
|
indent: import('vue').Ref<number, number>;
|
|
757
1314
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
758
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1315
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
759
1316
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
760
1317
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
761
1318
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
762
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1319
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
763
1320
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
764
1321
|
tableSize: import('vue').Ref<any, any>;
|
|
765
1322
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
766
|
-
data: import('vue').Ref<Record<string,
|
|
767
|
-
_data: import('vue').Ref<Record<string,
|
|
1323
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1324
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
768
1325
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
769
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
770
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
771
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
772
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
773
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
774
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
775
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
776
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1326
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1327
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1328
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1329
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1330
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1331
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1332
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1333
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
777
1334
|
updateOrderFns: (() => void)[];
|
|
778
1335
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
779
1336
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
780
1337
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
781
1338
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
782
|
-
selection: import('vue').Ref<Record<string,
|
|
1339
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
783
1340
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
784
1341
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
785
1342
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
786
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
787
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1343
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1344
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
788
1345
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
789
|
-
filteredData: import('vue').Ref<Record<string,
|
|
790
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1346
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1347
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
791
1348
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
792
1349
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
793
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
794
|
-
}, column: import('element-plus').TableColumnCtx<Record<string,
|
|
1350
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1351
|
+
}, column: import('element-plus').TableColumnCtx<Record<string, any>>, parent: import('element-plus').TableColumnCtx<Record<string, any>>, updateColumnOrder: () => void): void;
|
|
795
1352
|
updateColumnOrder(states: {
|
|
796
1353
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
797
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1354
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
798
1355
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
799
1356
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
800
1357
|
indent: import('vue').Ref<number, number>;
|
|
801
1358
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
802
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1359
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
803
1360
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
804
1361
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
805
1362
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
806
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1363
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
807
1364
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
808
1365
|
tableSize: import('vue').Ref<any, any>;
|
|
809
1366
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
810
|
-
data: import('vue').Ref<Record<string,
|
|
811
|
-
_data: import('vue').Ref<Record<string,
|
|
1367
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1368
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
812
1369
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
813
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
814
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
815
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
816
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
817
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
818
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
819
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
820
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1370
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1371
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1372
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1373
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1374
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1375
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1376
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1377
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
821
1378
|
updateOrderFns: (() => void)[];
|
|
822
1379
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
823
1380
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
824
1381
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
825
1382
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
826
|
-
selection: import('vue').Ref<Record<string,
|
|
1383
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
827
1384
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
828
1385
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
829
1386
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
830
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
831
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1387
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1388
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
832
1389
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
833
|
-
filteredData: import('vue').Ref<Record<string,
|
|
834
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1390
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1391
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
835
1392
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
836
1393
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
837
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
838
|
-
}, column: import('element-plus').TableColumnCtx<Record<string,
|
|
1394
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1395
|
+
}, column: import('element-plus').TableColumnCtx<Record<string, any>>): void;
|
|
839
1396
|
removeColumn(states: {
|
|
840
1397
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
841
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1398
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
842
1399
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
843
1400
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
844
1401
|
indent: import('vue').Ref<number, number>;
|
|
845
1402
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
846
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1403
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
847
1404
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
848
1405
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
849
1406
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
850
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1407
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
851
1408
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
852
1409
|
tableSize: import('vue').Ref<any, any>;
|
|
853
1410
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
854
|
-
data: import('vue').Ref<Record<string,
|
|
855
|
-
_data: import('vue').Ref<Record<string,
|
|
1411
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1412
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
856
1413
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
857
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
858
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
859
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
860
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
861
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
862
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
863
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
864
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1414
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1415
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1416
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1417
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1418
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1419
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1420
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1421
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
865
1422
|
updateOrderFns: (() => void)[];
|
|
866
1423
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
867
1424
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
868
1425
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
869
1426
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
870
|
-
selection: import('vue').Ref<Record<string,
|
|
1427
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
871
1428
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
872
1429
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
873
1430
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
874
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
875
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1431
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1432
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
876
1433
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
877
|
-
filteredData: import('vue').Ref<Record<string,
|
|
878
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1434
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1435
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
879
1436
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
880
1437
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
881
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
882
|
-
}, column: import('element-plus').TableColumnCtx<Record<string,
|
|
1438
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1439
|
+
}, column: import('element-plus').TableColumnCtx<Record<string, any>>, parent: import('element-plus').TableColumnCtx<Record<string, any>>, updateColumnOrder: () => void): void;
|
|
883
1440
|
sort(states: {
|
|
884
1441
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
885
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1442
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
886
1443
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
887
1444
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
888
1445
|
indent: import('vue').Ref<number, number>;
|
|
889
1446
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
890
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1447
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
891
1448
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
892
1449
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
893
1450
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
894
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1451
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
895
1452
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
896
1453
|
tableSize: import('vue').Ref<any, any>;
|
|
897
1454
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
898
|
-
data: import('vue').Ref<Record<string,
|
|
899
|
-
_data: import('vue').Ref<Record<string,
|
|
1455
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1456
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
900
1457
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
901
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
902
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
903
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
904
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
905
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
906
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
907
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
908
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1458
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1459
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1460
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1461
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1462
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1463
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1464
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1465
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
909
1466
|
updateOrderFns: (() => void)[];
|
|
910
1467
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
911
1468
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
912
1469
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
913
1470
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
914
|
-
selection: import('vue').Ref<Record<string,
|
|
1471
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
915
1472
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
916
1473
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
917
1474
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
918
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
919
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1475
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1476
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
920
1477
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
921
|
-
filteredData: import('vue').Ref<Record<string,
|
|
922
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1478
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1479
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
923
1480
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
924
1481
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
925
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
1482
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
926
1483
|
}, options: import('element-plus').Sort): void;
|
|
927
1484
|
changeSortCondition(states: {
|
|
928
1485
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
929
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1486
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
930
1487
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
931
1488
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
932
1489
|
indent: import('vue').Ref<number, number>;
|
|
933
1490
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
934
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1491
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
935
1492
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
936
1493
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
937
1494
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
938
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1495
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
939
1496
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
940
1497
|
tableSize: import('vue').Ref<any, any>;
|
|
941
1498
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
942
|
-
data: import('vue').Ref<Record<string,
|
|
943
|
-
_data: import('vue').Ref<Record<string,
|
|
1499
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1500
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
944
1501
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
945
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
946
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
947
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
948
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
949
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
950
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
951
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
952
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1502
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1503
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1504
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1505
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1506
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1507
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1508
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1509
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
953
1510
|
updateOrderFns: (() => void)[];
|
|
954
1511
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
955
1512
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
956
1513
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
957
1514
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
958
|
-
selection: import('vue').Ref<Record<string,
|
|
1515
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
959
1516
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
960
1517
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
961
1518
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
962
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
963
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1519
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1520
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
964
1521
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
965
|
-
filteredData: import('vue').Ref<Record<string,
|
|
966
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1522
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1523
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
967
1524
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
968
1525
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
969
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
1526
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
970
1527
|
}, options: import('element-plus').Sort): void;
|
|
971
1528
|
filterChange(_states: {
|
|
972
1529
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
973
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1530
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
974
1531
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
975
1532
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
976
1533
|
indent: import('vue').Ref<number, number>;
|
|
977
1534
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
978
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1535
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
979
1536
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
980
1537
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
981
1538
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
982
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1539
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
983
1540
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
984
1541
|
tableSize: import('vue').Ref<any, any>;
|
|
985
1542
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
986
|
-
data: import('vue').Ref<Record<string,
|
|
987
|
-
_data: import('vue').Ref<Record<string,
|
|
1543
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1544
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
988
1545
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
989
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
990
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
991
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
992
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
993
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
994
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
995
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
996
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1546
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1547
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1548
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1549
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1550
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1551
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1552
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1553
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
997
1554
|
updateOrderFns: (() => void)[];
|
|
998
1555
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
999
1556
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1000
1557
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1001
1558
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
1002
|
-
selection: import('vue').Ref<Record<string,
|
|
1559
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1003
1560
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
1004
1561
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
1005
1562
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
1006
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
1007
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1563
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1564
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1008
1565
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
1009
|
-
filteredData: import('vue').Ref<Record<string,
|
|
1010
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1566
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1567
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
1011
1568
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
1012
1569
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
1013
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
1014
|
-
}, options: import('element-plus').Filter<Record<string,
|
|
1570
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1571
|
+
}, options: import('element-plus').Filter<Record<string, any>>): void;
|
|
1015
1572
|
toggleAllSelection(): void;
|
|
1016
1573
|
rowSelectedChanged(_states: {
|
|
1017
1574
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
1018
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1575
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1019
1576
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
1020
1577
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
1021
1578
|
indent: import('vue').Ref<number, number>;
|
|
1022
1579
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
1023
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1580
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
1024
1581
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
1025
1582
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
1026
1583
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
1027
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1584
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1028
1585
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
1029
1586
|
tableSize: import('vue').Ref<any, any>;
|
|
1030
1587
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
1031
|
-
data: import('vue').Ref<Record<string,
|
|
1032
|
-
_data: import('vue').Ref<Record<string,
|
|
1588
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1589
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1033
1590
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
1034
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1035
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1036
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1037
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1038
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1039
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1040
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1041
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1591
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1592
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1593
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1594
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1595
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1596
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1597
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1598
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1042
1599
|
updateOrderFns: (() => void)[];
|
|
1043
1600
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
1044
1601
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1045
1602
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1046
1603
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
1047
|
-
selection: import('vue').Ref<Record<string,
|
|
1604
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1048
1605
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
1049
1606
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
1050
1607
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
1051
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
1052
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1608
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1609
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1053
1610
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
1054
|
-
filteredData: import('vue').Ref<Record<string,
|
|
1055
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1611
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1612
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
1056
1613
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
1057
1614
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
1058
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
1059
|
-
}, row: Record<string,
|
|
1615
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1616
|
+
}, row: Record<string, any>): void;
|
|
1060
1617
|
setHoverRow(states: {
|
|
1061
1618
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
1062
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1619
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1063
1620
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
1064
1621
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
1065
1622
|
indent: import('vue').Ref<number, number>;
|
|
1066
1623
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
1067
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1624
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
1068
1625
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
1069
1626
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
1070
1627
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
1071
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1628
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1072
1629
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
1073
1630
|
tableSize: import('vue').Ref<any, any>;
|
|
1074
1631
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
1075
|
-
data: import('vue').Ref<Record<string,
|
|
1076
|
-
_data: import('vue').Ref<Record<string,
|
|
1632
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1633
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1077
1634
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
1078
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1079
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1080
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1081
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1082
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1083
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1084
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1085
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1635
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1636
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1637
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1638
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1639
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1640
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1641
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1642
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1086
1643
|
updateOrderFns: (() => void)[];
|
|
1087
1644
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
1088
1645
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1089
1646
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1090
1647
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
1091
|
-
selection: import('vue').Ref<Record<string,
|
|
1648
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1092
1649
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
1093
1650
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
1094
1651
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
1095
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
1096
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1652
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1653
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1097
1654
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
1098
|
-
filteredData: import('vue').Ref<Record<string,
|
|
1099
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1655
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1656
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
1100
1657
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
1101
1658
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
1102
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
1103
|
-
}, row: Record<string,
|
|
1659
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1660
|
+
}, row: Record<string, any>): void;
|
|
1104
1661
|
setCurrentRow(_states: {
|
|
1105
1662
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
1106
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1663
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1107
1664
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
1108
1665
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
1109
1666
|
indent: import('vue').Ref<number, number>;
|
|
1110
1667
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
1111
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1668
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
1112
1669
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
1113
1670
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
1114
1671
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
1115
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1672
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1116
1673
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
1117
1674
|
tableSize: import('vue').Ref<any, any>;
|
|
1118
1675
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
1119
|
-
data: import('vue').Ref<Record<string,
|
|
1120
|
-
_data: import('vue').Ref<Record<string,
|
|
1676
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1677
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1121
1678
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
1122
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1123
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1124
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1125
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1126
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1127
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1128
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1129
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1679
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1680
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1681
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1682
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1683
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1684
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1685
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1686
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1130
1687
|
updateOrderFns: (() => void)[];
|
|
1131
1688
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
1132
1689
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1133
1690
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1134
1691
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
1135
|
-
selection: import('vue').Ref<Record<string,
|
|
1692
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1136
1693
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
1137
1694
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
1138
1695
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
1139
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
1140
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1696
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1697
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1141
1698
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
1142
|
-
filteredData: import('vue').Ref<Record<string,
|
|
1143
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1699
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1700
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
1144
1701
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
1145
1702
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
1146
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
1147
|
-
}, row: Record<string,
|
|
1703
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1704
|
+
}, row: Record<string, any>): void;
|
|
1148
1705
|
};
|
|
1149
1706
|
commit: (name: "sort" | "setData" | "insertColumn" | "updateColumnOrder" | "removeColumn" | "changeSortCondition" | "filterChange" | "toggleAllSelection" | "rowSelectedChanged" | "setHoverRow" | "setCurrentRow", ...args: any[]) => void;
|
|
1150
1707
|
updateTableScrollY: () => void;
|
|
1151
1708
|
assertRowKey: () => void;
|
|
1152
1709
|
updateColumns: () => void;
|
|
1153
1710
|
scheduleLayout: (needUpdateColumns?: boolean, immediate?: boolean) => void;
|
|
1154
|
-
isSelected: (row: Record<string,
|
|
1711
|
+
isSelected: (row: Record<string, any>) => boolean;
|
|
1155
1712
|
clearSelection: () => void;
|
|
1156
1713
|
cleanSelection: () => void;
|
|
1157
|
-
getSelectionRows: () => Record<string,
|
|
1158
|
-
getHalfSelectionRows: () => Record<string,
|
|
1159
|
-
toggleRowSelection: (row: Record<string,
|
|
1714
|
+
getSelectionRows: () => Record<string, any>[];
|
|
1715
|
+
getHalfSelectionRows: () => Record<string, any>[];
|
|
1716
|
+
toggleRowSelection: (row: Record<string, any>, selected?: boolean, emitChange?: boolean, ignoreSelectable?: boolean) => void;
|
|
1160
1717
|
_toggleAllSelection: () => void;
|
|
1161
1718
|
toggleAllSelection: (() => void) | null;
|
|
1162
1719
|
updateAllSelected: () => void;
|
|
@@ -1164,10 +1721,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1164
1721
|
emitChange?: boolean;
|
|
1165
1722
|
rowIndexMap?: Map<string, number>;
|
|
1166
1723
|
}) => void;
|
|
1167
|
-
getRowIndeterminate: (row: Record<string,
|
|
1168
|
-
updateFilters: (column: import('element-plus').TableColumnCtx<Record<string,
|
|
1169
|
-
updateCurrentRow: (_currentRow: Record<string,
|
|
1170
|
-
updateSort: (column: import('element-plus').TableColumnCtx<Record<string,
|
|
1724
|
+
getRowIndeterminate: (row: Record<string, any>) => boolean;
|
|
1725
|
+
updateFilters: (column: import('element-plus').TableColumnCtx<Record<string, any>>, values: string[]) => Record<string, string[]>;
|
|
1726
|
+
updateCurrentRow: (_currentRow: Record<string, any>) => void;
|
|
1727
|
+
updateSort: (column: import('element-plus').TableColumnCtx<Record<string, any>> | null, prop: string | null, order: import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null) => void;
|
|
1171
1728
|
execFilter: () => void;
|
|
1172
1729
|
execSort: () => void;
|
|
1173
1730
|
execQuery: (ignore?: {
|
|
@@ -1175,59 +1732,59 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1175
1732
|
} | undefined) => void;
|
|
1176
1733
|
clearFilter: (columnKeys?: string[] | string) => void;
|
|
1177
1734
|
clearSort: () => void;
|
|
1178
|
-
toggleRowExpansion: (row: Record<string,
|
|
1735
|
+
toggleRowExpansion: (row: Record<string, any>, expanded?: boolean) => void;
|
|
1179
1736
|
setExpandRowKeysAdapter: (val: string[]) => void;
|
|
1180
1737
|
setCurrentRowKey: (key: string) => void;
|
|
1181
|
-
toggleRowExpansionAdapter: (row: Record<string,
|
|
1182
|
-
isRowExpanded: (row: Record<string,
|
|
1738
|
+
toggleRowExpansionAdapter: (row: Record<string, any>, expanded?: boolean) => void;
|
|
1739
|
+
isRowExpanded: (row: Record<string, any>) => boolean;
|
|
1183
1740
|
updateExpandRows: () => void;
|
|
1184
1741
|
updateCurrentRowData: () => void;
|
|
1185
|
-
loadOrToggle: (row: Record<string,
|
|
1742
|
+
loadOrToggle: (row: Record<string, any>) => void;
|
|
1186
1743
|
updateTreeData: (ifChangeExpandRowKeys?: boolean, ifExpandAll?: boolean) => void;
|
|
1187
|
-
updateKeyChildren: (key: string, data: Record<string,
|
|
1744
|
+
updateKeyChildren: (key: string, data: Record<string, any>[]) => void;
|
|
1188
1745
|
states: {
|
|
1189
1746
|
_currentRowKey: import('vue').Ref<string | null, string | null>;
|
|
1190
|
-
currentRow: import('vue').Ref<Record<string,
|
|
1747
|
+
currentRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1191
1748
|
expandRowKeys: import('vue').Ref<string[], string[]>;
|
|
1192
1749
|
treeData: import('vue').Ref<Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>, Record<string, import('element-plus/es/components/table/src/store/tree.mjs').TreeData>>;
|
|
1193
1750
|
indent: import('vue').Ref<number, number>;
|
|
1194
1751
|
lazy: import('vue').Ref<boolean, boolean>;
|
|
1195
|
-
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string,
|
|
1752
|
+
lazyTreeNodeMap: import('vue').Ref<Record<string, Record<string, any>[]>, Record<string, Record<string, any>[]>>;
|
|
1196
1753
|
lazyColumnIdentifier: import('vue').Ref<string, string>;
|
|
1197
1754
|
childrenColumnName: import('vue').Ref<string, string>;
|
|
1198
1755
|
checkStrictly: import('vue').Ref<boolean, boolean>;
|
|
1199
|
-
expandRows: import('vue').Ref<Record<string,
|
|
1756
|
+
expandRows: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1200
1757
|
defaultExpandAll: import('vue').Ref<boolean, boolean>;
|
|
1201
1758
|
tableSize: import('vue').Ref<any, any>;
|
|
1202
1759
|
rowKey: import('vue').Ref<string | null, string | null>;
|
|
1203
|
-
data: import('vue').Ref<Record<string,
|
|
1204
|
-
_data: import('vue').Ref<Record<string,
|
|
1760
|
+
data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1761
|
+
_data: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1205
1762
|
isComplex: import('vue').Ref<boolean, boolean>;
|
|
1206
|
-
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1207
|
-
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1208
|
-
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1209
|
-
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1210
|
-
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1211
|
-
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1212
|
-
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1213
|
-
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1763
|
+
_columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1764
|
+
originColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1765
|
+
columns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1766
|
+
fixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1767
|
+
rightFixedColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1768
|
+
leafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1769
|
+
fixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1770
|
+
rightFixedLeafColumns: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>>[], import('element-plus').TableColumnCtx<Record<string, any>>[]>;
|
|
1214
1771
|
updateOrderFns: (() => void)[];
|
|
1215
1772
|
leafColumnsLength: import('vue').Ref<number, number>;
|
|
1216
1773
|
fixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1217
1774
|
rightFixedLeafColumnsLength: import('vue').Ref<number, number>;
|
|
1218
1775
|
isAllSelected: import('vue').Ref<boolean, boolean>;
|
|
1219
|
-
selection: import('vue').Ref<Record<string,
|
|
1776
|
+
selection: import('vue').Ref<Record<string, any>[], Record<string, any>[]>;
|
|
1220
1777
|
selectionIndeterminate: import('vue').Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
1221
1778
|
reserveSelection: import('vue').Ref<boolean, boolean>;
|
|
1222
1779
|
selectOnIndeterminate: import('vue').Ref<boolean, boolean>;
|
|
1223
|
-
selectable: import('vue').Ref<((row: Record<string,
|
|
1224
|
-
rowExpandable: import('vue').Ref<((row: Record<string,
|
|
1780
|
+
selectable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1781
|
+
rowExpandable: import('vue').Ref<((row: Record<string, any>, index: number) => boolean) | null, ((row: Record<string, any>, index: number) => boolean) | null>;
|
|
1225
1782
|
filters: import('vue').Ref<import('element-plus/es/components/table/src/store/index.mjs').StoreFilter, import('element-plus/es/components/table/src/store/index.mjs').StoreFilter>;
|
|
1226
|
-
filteredData: import('vue').Ref<Record<string,
|
|
1227
|
-
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string,
|
|
1783
|
+
filteredData: import('vue').Ref<Record<string, any>[] | null, Record<string, any>[] | null>;
|
|
1784
|
+
sortingColumn: import('vue').Ref<import('element-plus').TableColumnCtx<Record<string, any>> | null, import('element-plus').TableColumnCtx<Record<string, any>> | null>;
|
|
1228
1785
|
sortProp: import('vue').Ref<string | null, string | null>;
|
|
1229
1786
|
sortOrder: import('vue').Ref<import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null, import('element-plus/es/components/table/src/table/defaults.mjs').TableSortOrder | null>;
|
|
1230
|
-
hoverRow: import('vue').Ref<Record<string,
|
|
1787
|
+
hoverRow: import('vue').Ref<Record<string, any> | null, Record<string, any> | null>;
|
|
1231
1788
|
};
|
|
1232
1789
|
ns: {
|
|
1233
1790
|
namespace: import('vue').ComputedRef<string>;
|
|
@@ -1249,14 +1806,14 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1249
1806
|
};
|
|
1250
1807
|
t: import('element-plus').Translator;
|
|
1251
1808
|
};
|
|
1252
|
-
columns: import('element-plus').TableColumnCtx<Record<string,
|
|
1809
|
+
columns: import('element-plus').TableColumnCtx<Record<string, any>>[];
|
|
1253
1810
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
1254
1811
|
handleMouseLeave: () => void;
|
|
1255
1812
|
tableId: string;
|
|
1256
|
-
tableSize: "" | "
|
|
1813
|
+
tableSize: "" | "large" | "default" | "small";
|
|
1257
1814
|
isHidden: boolean;
|
|
1258
1815
|
isEmpty: boolean;
|
|
1259
|
-
renderExpanded: import('element-plus/es/components/table/src/table/defaults.mjs').RenderExpanded<Record<string,
|
|
1816
|
+
renderExpanded: import('element-plus/es/components/table/src/table/defaults.mjs').RenderExpanded<Record<string, any>> | null;
|
|
1260
1817
|
resizeProxyVisible: boolean;
|
|
1261
1818
|
resizeState: {
|
|
1262
1819
|
width: null | number;
|
|
@@ -1273,25 +1830,25 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1273
1830
|
height: string;
|
|
1274
1831
|
} | undefined;
|
|
1275
1832
|
debouncedUpdateLayout: import('lodash').DebouncedFunc<() => void>;
|
|
1276
|
-
setCurrentRow: (row?: Record<string,
|
|
1277
|
-
getSelectionRows: () => Record<string,
|
|
1278
|
-
getHalfSelectionRows: () => Record<string,
|
|
1279
|
-
toggleRowSelection: (row: Record<string,
|
|
1833
|
+
setCurrentRow: (row?: Record<string, any> | undefined) => void;
|
|
1834
|
+
getSelectionRows: () => Record<string, any>[];
|
|
1835
|
+
getHalfSelectionRows: () => Record<string, any>[];
|
|
1836
|
+
toggleRowSelection: (row: Record<string, any>, selected?: boolean, ignoreSelectable?: boolean) => void;
|
|
1280
1837
|
clearSelection: () => void;
|
|
1281
1838
|
clearFilter: (columnKeys?: string[] | string) => void;
|
|
1282
1839
|
toggleAllSelection: () => void;
|
|
1283
|
-
toggleRowExpansion: (row: Record<string,
|
|
1840
|
+
toggleRowExpansion: (row: Record<string, any>, expanded?: boolean) => void;
|
|
1284
1841
|
clearSort: () => void;
|
|
1285
1842
|
doLayout: () => void;
|
|
1286
1843
|
sort: (prop: string, order: string) => void;
|
|
1287
|
-
updateKeyChildren: (key: string, data: Record<string,
|
|
1844
|
+
updateKeyChildren: (key: string, data: Record<string, any>[]) => void;
|
|
1288
1845
|
t: import('element-plus').Translator;
|
|
1289
1846
|
setDragVisible: (visible: boolean) => void;
|
|
1290
|
-
context: import('element-plus').Table<Record<string,
|
|
1847
|
+
context: import('element-plus').Table<Record<string, any>>;
|
|
1291
1848
|
computedSumText: string;
|
|
1292
1849
|
computedEmptyText: string;
|
|
1293
1850
|
computedTooltipEffect: string | undefined;
|
|
1294
|
-
computedTooltipOptions: Partial<Omit<import('element-plus').UseTooltipProps, "persistent" | "visible" | "
|
|
1851
|
+
computedTooltipOptions: Partial<Omit<import('element-plus').UseTooltipProps, "persistent" | "visible" | "referenceEl" | "triggerTargetEl" | "virtualTriggering" | "content" | "rawContent" | "autoClose" | "virtualRef">> | undefined;
|
|
1295
1852
|
tableLayout: "fixed" | "auto";
|
|
1296
1853
|
scrollbarViewStyle: {
|
|
1297
1854
|
display: string;
|
|
@@ -1313,7 +1870,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1313
1870
|
setScrollTop: (top?: number) => void;
|
|
1314
1871
|
allowDragLastColumn: boolean;
|
|
1315
1872
|
} | null;
|
|
1316
|
-
},
|
|
1873
|
+
}, any>;
|
|
1317
1874
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1318
1875
|
export default _default;
|
|
1319
1876
|
type __VLS_WithTemplateSlots<T, S> = T & {
|