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