@lx-frontend/wrap-element-ui 1.0.1-beta.2 → 1.0.1-beta.4
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/README.md +45 -45
- package/package.json +15 -16
- package/src/components/AddMembers/index.vue +157 -157
- package/src/components/AuditSteps/index.vue +140 -140
- package/src/components/DemoComponent/index.vue +20 -20
- package/src/components/EditableTable/README.md +147 -147
- package/src/components/EditableTable/index.less +724 -716
- package/src/components/EditableTable/index.vue +914 -841
- package/src/components/EditableTable/types.ts +116 -94
- package/src/components/EditableTable/useCellHover.ts +71 -71
- package/src/components/EditableTable/useColumnHeaderOperation.ts +325 -187
- package/src/components/EditableTable/useDefaultOperation.ts +95 -95
- package/src/components/EditableTable/useDragSort.ts +290 -291
- package/src/components/EditableTable/usePagination.ts +30 -33
- package/src/components/EditableTable/useRowBgColor.ts +50 -50
- package/src/components/EditableTable/useViewSetting.ts +119 -67
- package/src/components/Ellipsis/MultilineEllipsis.vue +141 -141
- package/src/components/Ellipsis/index.vue +119 -119
- package/src/components/LxTable/index.vue +296 -296
- package/src/components/PopoverForm/index.vue +66 -66
- package/src/components/SearchForm/index.vue +243 -243
- package/src/components/SearchSelect/index.vue +153 -153
- package/src/components/index.ts +24 -24
- package/src/components/singleMessage/index.ts +44 -44
- package/dist/AddMembers/index.vue.d.ts +0 -31
- package/dist/AuditSteps/index.vue.d.ts +0 -46
- package/dist/DemoComponent/index.vue.d.ts +0 -2
- package/dist/EditableTable/index.vue.d.ts +0 -186
- package/dist/EditableTable/types.d.ts +0 -123
- package/dist/EditableTable/useCellHover.d.ts +0 -11
- package/dist/EditableTable/useColumnHeaderOperation.d.ts +0 -106
- package/dist/EditableTable/useDefaultOperation.d.ts +0 -22
- package/dist/EditableTable/useDragSort.d.ts +0 -15
- package/dist/EditableTable/usePagination.d.ts +0 -13
- package/dist/EditableTable/useRowBgColor.d.ts +0 -16
- package/dist/EditableTable/useViewSetting.d.ts +0 -58
- package/dist/Ellipsis/MultilineEllipsis.vue.d.ts +0 -91
- package/dist/Ellipsis/index.vue.d.ts +0 -89
- package/dist/LxTable/index.vue.d.ts +0 -2
- package/dist/PopoverForm/index.vue.d.ts +0 -50
- package/dist/SearchForm/index.vue.d.ts +0 -105
- package/dist/SearchSelect/index.vue.d.ts +0 -53
- package/dist/index.css +0 -1
- package/dist/index.d.ts +0 -12
- package/dist/index.mjs +0 -40826
- package/dist/singleMessage/index.d.ts +0 -4
|
@@ -1,188 +1,326 @@
|
|
|
1
|
-
import { computed, ref, watch, nextTick } from "vue"
|
|
2
|
-
import { IColumnConfig, IProps } from './types';
|
|
3
|
-
|
|
4
|
-
interface IUseColumnHeaderOperationParams {
|
|
5
|
-
props: IProps
|
|
6
|
-
tableDomRef: any
|
|
7
|
-
sortFilterPopoverRef: any
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
const
|
|
37
|
-
|
|
38
|
-
const
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
sums[index] =
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
tempSortType.value =
|
|
98
|
-
tempSortingColumn.value =
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
if (
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
.
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
1
|
+
import { computed, ref, watch, nextTick, Ref } from "vue"
|
|
2
|
+
import { IColumnConfig, IEmits, IProps } from './types';
|
|
3
|
+
|
|
4
|
+
interface IUseColumnHeaderOperationParams {
|
|
5
|
+
props: IProps
|
|
6
|
+
tableDomRef: any
|
|
7
|
+
sortFilterPopoverRef: any
|
|
8
|
+
emit: IEmits;
|
|
9
|
+
showingColumns: Ref<string[]>
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export default function useColumnHeaderOperation({ props, tableDomRef, sortFilterPopoverRef, emit, showingColumns }: IUseColumnHeaderOperationParams) {
|
|
13
|
+
|
|
14
|
+
// column如果有sortable属性,点击列头部,会直接触发排序,为了在弹窗点确定时再触发排序,需要阻止点击立即排序
|
|
15
|
+
// 所以,初始渲染时,将sortable设置为false,在触发排序逻辑时再设置成真实的值,再利用el-table自身的排序逻辑触发排序
|
|
16
|
+
const inSorting = ref(false);
|
|
17
|
+
|
|
18
|
+
// 生效中的排序配置
|
|
19
|
+
const sortType = ref<'ascending' | 'descending' | null>(null);
|
|
20
|
+
const sortingColumn = ref<IColumnConfig | null>(null);
|
|
21
|
+
|
|
22
|
+
// 临时的排序配置
|
|
23
|
+
const tempSortType = ref<'ascending' | 'descending' | null>(null);
|
|
24
|
+
const tempSortingColumn = ref<IColumnConfig | null>(null);
|
|
25
|
+
|
|
26
|
+
// 生效中的过滤配置 和 临时过滤配置
|
|
27
|
+
const filteredValue = ref<Record<string, string | number | number[] | string[]>>({});
|
|
28
|
+
const tempFilteredValue = ref<Record<string, string | number | number[] | string[]>>({});
|
|
29
|
+
|
|
30
|
+
// 生效中的统计配置 和 临时统计配置
|
|
31
|
+
const tempSummaryList = ref<string[]>([]);
|
|
32
|
+
const summaryList = ref<string[]>([]);
|
|
33
|
+
|
|
34
|
+
// 生效中的搜索配置 和 临时搜索配置
|
|
35
|
+
const searchValue = ref<Record<string, string>>({});
|
|
36
|
+
const tempSearchValue = ref<Record<string, string>>({});
|
|
37
|
+
|
|
38
|
+
const isColumnFiltering = computed(() => Object.keys(tempFilteredValue.value).some(k => {
|
|
39
|
+
if (!Array.isArray(tempFilteredValue.value[k])) return tempFilteredValue.value[k]
|
|
40
|
+
return tempFilteredValue.value[k]?.length;
|
|
41
|
+
}));
|
|
42
|
+
|
|
43
|
+
const showColumnHeadSortIcon = (column: IColumnConfig) => column.filters || column.isColumnSortable || column.search || column.summary;
|
|
44
|
+
|
|
45
|
+
watch(
|
|
46
|
+
() => props.columnConfig,
|
|
47
|
+
(val) => {
|
|
48
|
+
filteredValue.value = val.reduce((prev, curr) => ({ ...prev, [curr.prop]: [] }), {});
|
|
49
|
+
tempFilteredValue.value = { ...filteredValue.value };
|
|
50
|
+
},
|
|
51
|
+
{ immediate: true }
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
const tableSummaryMethod = (param) => {
|
|
55
|
+
const { columns, data } = param;
|
|
56
|
+
const sums: (string | number)[] = []
|
|
57
|
+
columns.forEach((column, index) => {
|
|
58
|
+
if (index === 0) {
|
|
59
|
+
sums[index] = '合计';
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
if (!summaryList.value.includes(column.property)) {
|
|
63
|
+
sums[index] = '';
|
|
64
|
+
} else {
|
|
65
|
+
const values = data.map(item => item[column.property]);
|
|
66
|
+
// 找到对应列的summaryMethod函数
|
|
67
|
+
const summaryMethod = props.columnConfig.find(c => c.prop === column.property)?.summaryMethod ?? (() => '');
|
|
68
|
+
sums[index] = summaryMethod(values);
|
|
69
|
+
}
|
|
70
|
+
})
|
|
71
|
+
|
|
72
|
+
return sums
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const isColumnHeadActive = (column: IColumnConfig) => {
|
|
76
|
+
return (
|
|
77
|
+
column.filters && (Array.isArray(column.filters)
|
|
78
|
+
? (filteredValue.value[column.prop] as any[]).length
|
|
79
|
+
: column.filters.type === 'radio'
|
|
80
|
+
? filteredValue.value[column.prop]
|
|
81
|
+
: (filteredValue.value[column.prop] as any[]).length)
|
|
82
|
+
) ||
|
|
83
|
+
(
|
|
84
|
+
column.search
|
|
85
|
+
? Array.isArray(column.search) && column.search?.some(v => searchValue.value[v.prop])
|
|
86
|
+
: searchValue.value[column.prop]
|
|
87
|
+
) ||
|
|
88
|
+
sortingColumn.value?.prop === column.prop ||
|
|
89
|
+
summaryList.value.includes(column.prop);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
const handleHeaderPopoverShow = (column) => {
|
|
93
|
+
// 关闭其他的排序和筛选弹窗(理论上不写也能关闭其他,但是就是有些列会出现两个弹窗同时出现的情况)
|
|
94
|
+
closeSortAndFilterPopover(column.prop);
|
|
95
|
+
tempFilteredValue.value = { ...filteredValue.value };
|
|
96
|
+
tempSearchValue.value = { ...searchValue.value };
|
|
97
|
+
tempSortType.value = sortType.value;
|
|
98
|
+
tempSortingColumn.value = sortingColumn.value ? { ...sortingColumn.value } as IColumnConfig : null;
|
|
99
|
+
// 临时合计项设置成实际的合计项
|
|
100
|
+
tempSummaryList.value = [...summaryList.value];
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
const closeSortAndFilterPopover = (exceptProp?: string) => {
|
|
104
|
+
sortFilterPopoverRef.value?.forEach((item: any) => {
|
|
105
|
+
if (!exceptProp || exceptProp !== item.$el.dataset.prop) {
|
|
106
|
+
item.doClose();
|
|
107
|
+
}
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
const handleSort = (type: 'ascending' | 'descending', column) => {
|
|
112
|
+
tempSortType.value = type;
|
|
113
|
+
tempSortingColumn.value = column;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
const columnMap = computed(() => {
|
|
117
|
+
const obj: Record<string, IColumnConfig> = {}
|
|
118
|
+
props.columnConfig.forEach(column => {
|
|
119
|
+
obj[column.prop] = column
|
|
120
|
+
})
|
|
121
|
+
return obj
|
|
122
|
+
})
|
|
123
|
+
|
|
124
|
+
const emitSearch = () => {
|
|
125
|
+
const params: Record<string, any> = {};
|
|
126
|
+
// 仅提交显示的列的相关数据
|
|
127
|
+
showingColumns.value.forEach(prop => {
|
|
128
|
+
const column = columnMap.value[prop]
|
|
129
|
+
if (column.filters) {
|
|
130
|
+
params[prop] = filteredValue.value[prop]
|
|
131
|
+
}
|
|
132
|
+
if (column.search) {
|
|
133
|
+
if (Array.isArray(column.search)) {
|
|
134
|
+
column.search.forEach(v => {
|
|
135
|
+
params[v.prop] = searchValue.value[v.prop]
|
|
136
|
+
})
|
|
137
|
+
} else {
|
|
138
|
+
params[prop] = searchValue.value[prop]
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
})
|
|
142
|
+
|
|
143
|
+
Object.keys(params).forEach(key => {
|
|
144
|
+
if (params[key] === undefined) delete params[key]
|
|
145
|
+
})
|
|
146
|
+
|
|
147
|
+
emit('search', params);
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
const handleHeaderOperationConfirm = async (column: IColumnConfig, scope) => {
|
|
151
|
+
if (column.search) {
|
|
152
|
+
// 校验
|
|
153
|
+
if (Array.isArray(column.search)) {
|
|
154
|
+
let validate = true;
|
|
155
|
+
column.search.forEach(v => {
|
|
156
|
+
if (!tempSearchValue.value[v.prop]) tempSearchValue.value[v.prop] = ''
|
|
157
|
+
if (!validate) return
|
|
158
|
+
if (v.validator) {
|
|
159
|
+
const result = v.validator(tempSearchValue.value[v.prop]);
|
|
160
|
+
if (validate && !result) validate = false;
|
|
161
|
+
}
|
|
162
|
+
})
|
|
163
|
+
// 校验未通过
|
|
164
|
+
if (!validate) return
|
|
165
|
+
} else {
|
|
166
|
+
if (!tempSearchValue.value[column.prop]) tempSearchValue.value[column.prop] = ''
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
summaryList.value = [...tempSummaryList.value];
|
|
171
|
+
sortingColumn.value = tempSortingColumn.value ? { ...tempSortingColumn.value } : null;
|
|
172
|
+
sortType.value = tempSortType.value;
|
|
173
|
+
|
|
174
|
+
if (sortingColumn.value) { // 确认时提交排序
|
|
175
|
+
if (props.localSort) {
|
|
176
|
+
// 恢复列配置的sortable属性,只有列配置的sortable为true,才能用下面的sort方法
|
|
177
|
+
inSorting.value = true;
|
|
178
|
+
await nextTick();
|
|
179
|
+
tableDomRef.value?.sort(sortingColumn.value.prop, sortType.value);
|
|
180
|
+
inSorting.value = false
|
|
181
|
+
} else {
|
|
182
|
+
emit('sort-change', { order: sortType.value, prop: sortingColumn.value.prop });
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
filteredValue.value = { ...tempFilteredValue.value };
|
|
187
|
+
searchValue.value = { ...tempSearchValue.value };
|
|
188
|
+
|
|
189
|
+
emitSearch();
|
|
190
|
+
|
|
191
|
+
filterColumns(scope.store);
|
|
192
|
+
|
|
193
|
+
closeSortAndFilterPopover();
|
|
194
|
+
await nextTick()
|
|
195
|
+
tableDomRef.value?.doLayout();
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
const clearSort = () => {
|
|
199
|
+
sortingColumn.value = null;
|
|
200
|
+
sortType.value = null;
|
|
201
|
+
if (props.localSort) { // 前端过滤
|
|
202
|
+
tableDomRef.value?.clearSort();
|
|
203
|
+
} else { // 接口过滤
|
|
204
|
+
emit('sort-change', { order: null, prop: '' });
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
const setSort = (params: { order: 'ascending' | 'descending', prop: string }) => {
|
|
209
|
+
const column = props.columnConfig.find(c => c.prop === params.prop);
|
|
210
|
+
if (column) {
|
|
211
|
+
sortingColumn.value = column;
|
|
212
|
+
sortType.value = params.order;
|
|
213
|
+
if (props.localSort) {
|
|
214
|
+
tableDomRef.value?.sort(params.prop, params.order);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
const handleHeaderOperationReset = async (column: IColumnConfig, scope) => {
|
|
220
|
+
if (sortingColumn.value && sortingColumn.value.prop === column.prop) {
|
|
221
|
+
clearSort();
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// 合计
|
|
225
|
+
summaryList.value = summaryList.value.filter(item => item !== column.prop);
|
|
226
|
+
|
|
227
|
+
if (column.filters) {
|
|
228
|
+
filteredValue.value[column.prop] = Array.isArray(column.filters)
|
|
229
|
+
? []
|
|
230
|
+
: column.filters.default ?? []
|
|
231
|
+
}
|
|
232
|
+
if (column.search) {
|
|
233
|
+
if (!Array.isArray(column.search)) {
|
|
234
|
+
searchValue.value[column.prop] = '';
|
|
235
|
+
} else {
|
|
236
|
+
column.search.forEach(v => {
|
|
237
|
+
searchValue.value[v.prop] = '';
|
|
238
|
+
})
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
emitSearch();
|
|
243
|
+
|
|
244
|
+
filterColumns(scope.store);
|
|
245
|
+
|
|
246
|
+
closeSortAndFilterPopover();
|
|
247
|
+
await nextTick();
|
|
248
|
+
tableDomRef.value?.doLayout();
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
const filterColumns = (store) => {
|
|
252
|
+
if (!props.localFilter) return
|
|
253
|
+
store.states.columns.forEach(column => {
|
|
254
|
+
if (filteredValue.value[column.property]) {
|
|
255
|
+
store.commit('filterChange', {
|
|
256
|
+
column,
|
|
257
|
+
values: filteredValue.value[column.property],
|
|
258
|
+
});
|
|
259
|
+
}
|
|
260
|
+
});
|
|
261
|
+
|
|
262
|
+
// 根据searchValue过滤数据
|
|
263
|
+
const data = store.states.data.filter(item => {
|
|
264
|
+
const flag = Object.keys(searchValue.value)
|
|
265
|
+
.filter(key => searchValue.value[key])
|
|
266
|
+
.reduce((pre, key) => {
|
|
267
|
+
const value = searchValue.value[key];
|
|
268
|
+
|
|
269
|
+
return pre && item[key] && `${item[key]}`.indexOf(value) > -1;
|
|
270
|
+
}, true);
|
|
271
|
+
|
|
272
|
+
return flag;
|
|
273
|
+
});
|
|
274
|
+
|
|
275
|
+
store.states.data = data;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
const setSearchParams = (params: Record<string, any>) => {
|
|
279
|
+
const _searchValue = {};
|
|
280
|
+
const _filteredValue = {};
|
|
281
|
+
|
|
282
|
+
// 设置搜索和过滤参数时,如果使用 showingColumns 遍历,会导致通过外部设置未显示的列的搜索和过滤参数丢失
|
|
283
|
+
props.columnConfig.forEach(column => {
|
|
284
|
+
if (column.search) {
|
|
285
|
+
if (Array.isArray(column.search)) {
|
|
286
|
+
column.search.forEach(v => {
|
|
287
|
+
_searchValue[v.prop] = params[v.prop];
|
|
288
|
+
});
|
|
289
|
+
} else {
|
|
290
|
+
_searchValue[column.prop] = params[column.prop] ?? '';
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
if (column.filters) {
|
|
294
|
+
const value = params[column.prop] ?? (Array.isArray(column.filters) ? [] : column.filters.default);
|
|
295
|
+
_filteredValue[column.prop] = value;
|
|
296
|
+
}
|
|
297
|
+
})
|
|
298
|
+
|
|
299
|
+
searchValue.value = { ...searchValue.value, ..._searchValue }
|
|
300
|
+
filteredValue.value = { ...filteredValue.value, ..._filteredValue }
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
return {
|
|
304
|
+
setSort,
|
|
305
|
+
clearSort,
|
|
306
|
+
setSearchParams,
|
|
307
|
+
isColumnHeadActive,
|
|
308
|
+
handleHeaderPopoverShow,
|
|
309
|
+
handleSort,
|
|
310
|
+
handleHeaderOperationConfirm,
|
|
311
|
+
handleHeaderOperationReset,
|
|
312
|
+
summaryList,
|
|
313
|
+
tableSummaryMethod,
|
|
314
|
+
filteredValue,
|
|
315
|
+
showColumnHeadSortIcon,
|
|
316
|
+
tempSortingColumn,
|
|
317
|
+
tempSearchValue,
|
|
318
|
+
tempFilteredValue,
|
|
319
|
+
tempSummaryList,
|
|
320
|
+
tempSortType,
|
|
321
|
+
sortingColumn,
|
|
322
|
+
isColumnFiltering,
|
|
323
|
+
searchValue,
|
|
324
|
+
inSorting,
|
|
325
|
+
}
|
|
188
326
|
}
|