@jiaozhiye/qm-design-react 1.11.2 → 1.11.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/lib/form/style/index.less +3 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/lang/en.d.ts +4 -4
- package/lib/locale/lang/en.js +4 -4
- package/lib/locale/lang/zh-cn.d.ts +4 -4
- package/lib/locale/lang/zh-cn.js +4 -4
- package/lib/pivot-grid/src/main/Context.d.ts +6 -2
- package/lib/pivot-grid/src/utils/index.d.ts +4 -2
- package/lib/pivot-grid/style/grid-layout.less +1 -0
- package/lib/pivot-grid/style/top-bar.less +34 -3
- package/lib/pivot-grid/style/variable.less +7 -7
- package/lib/scrollbar/src/scrollbar.d.ts +1 -0
- package/lib/scrollbar/style/index.less +1 -0
- package/lib/style/index.css +50 -10
- package/lib/style/index.less +43 -43
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/body/DraggableTr.d.ts +2 -1
- package/lib/table/src/body/index.d.ts +2 -6
- package/lib/table/src/config/index.d.ts +1 -0
- package/lib/table/src/context/index.d.ts +3 -8
- package/lib/table/src/export/useExport.d.ts +1 -1
- package/lib/table/src/footer/index.d.ts +1 -4
- package/lib/table/src/header/index.d.ts +1 -3
- package/lib/table/src/hooks/useImperativeMethod.d.ts +0 -1
- package/lib/table/src/hooks/useTableCore.d.ts +3 -17
- package/lib/table/src/hooks/useTableEffect.d.ts +0 -2
- package/lib/table/src/hooks/useTableLayout.d.ts +3 -15
- package/lib/table/src/hooks/useTableMemo.d.ts +1 -3
- package/lib/table/src/hooks/useTableRef.d.ts +4 -33
- package/lib/table/src/hooks/useTableState.d.ts +5 -14
- package/lib/table/src/hooks/useTableVirtual.d.ts +17 -0
- package/lib/table/src/table/props.d.ts +0 -1
- package/lib/table/src/table/types.d.ts +3 -2
- package/lib/table/style/body.less +103 -103
- package/lib/table/style/column-filter.less +5 -5
- package/lib/table/style/index.less +31 -31
- package/lib/table/style/pivot-grid.less +19 -19
- package/lib/virtual-list/index.d.ts +1 -1
- package/lib/virtual-list/src/list-item.d.ts +2 -1
- package/lib/virtual-list/src/virtual-list.d.ts +5 -4
- package/lib/virtual-list/style/index.less +21 -16
- package/package.json +1 -1
package/lib/locale/lang/en.d.ts
CHANGED
package/lib/locale/lang/en.js
CHANGED
|
@@ -324,11 +324,11 @@ export default {
|
|
|
324
324
|
clear: 'Clear condition',
|
|
325
325
|
queryPrev: 'Find previous',
|
|
326
326
|
queryNext: 'Find next'
|
|
327
|
+
},
|
|
328
|
+
pivotGrid: {
|
|
329
|
+
text: 'Pivot Grid',
|
|
330
|
+
settingTitle: 'Pivot Grid Dashboard'
|
|
327
331
|
}
|
|
328
|
-
},
|
|
329
|
-
pivotGrid: {
|
|
330
|
-
text: 'Pivot Grid',
|
|
331
|
-
settingTitle: 'Pivot Grid Dashboard'
|
|
332
332
|
}
|
|
333
333
|
}
|
|
334
334
|
};
|
package/lib/locale/lang/zh-cn.js
CHANGED
|
@@ -324,11 +324,11 @@ export default {
|
|
|
324
324
|
clear: '清空条件',
|
|
325
325
|
queryPrev: '查找上一个',
|
|
326
326
|
queryNext: '查找下一个'
|
|
327
|
+
},
|
|
328
|
+
pivotGrid: {
|
|
329
|
+
text: '透视表',
|
|
330
|
+
settingTitle: '透视表看板'
|
|
327
331
|
}
|
|
328
|
-
},
|
|
329
|
-
pivotGrid: {
|
|
330
|
-
text: '透视表',
|
|
331
|
-
settingTitle: '透视表看板'
|
|
332
332
|
}
|
|
333
333
|
}
|
|
334
334
|
};
|
|
@@ -15,7 +15,9 @@ export type IPivotGridContext = {
|
|
|
15
15
|
viewMode: IPivotMode;
|
|
16
16
|
size: ComponentSize;
|
|
17
17
|
columns: IColumn[];
|
|
18
|
-
|
|
18
|
+
gridData: IRecord[];
|
|
19
|
+
originGridData: IRecord[];
|
|
20
|
+
groupGridData: Record<string, any> | Record<string, any>[];
|
|
19
21
|
groupList: GroupItem[];
|
|
20
22
|
filterList: ISuperFilter[];
|
|
21
23
|
sorterList: SorterItem[];
|
|
@@ -23,6 +25,7 @@ export type IPivotGridContext = {
|
|
|
23
25
|
};
|
|
24
26
|
type IProps = {
|
|
25
27
|
prefixCls: string;
|
|
28
|
+
tableData: IRecord[];
|
|
26
29
|
flatColumns: IColumn[];
|
|
27
30
|
children?: React.ReactNode;
|
|
28
31
|
};
|
|
@@ -30,7 +33,8 @@ export declare const PivotGridProvider: React.FC<IProps>;
|
|
|
30
33
|
export declare const usePivotGridContext: () => (IPivotGridContext & {
|
|
31
34
|
setContext: (data: Partial<IPivotGridContext>) => void;
|
|
32
35
|
setColumns: (items: IColumn[]) => void;
|
|
33
|
-
|
|
36
|
+
setGridData: (items: IRecord[]) => void;
|
|
37
|
+
setGroupGridData: (data: Record<string, any> | Record<string, any>[]) => void;
|
|
34
38
|
setGroupList: (items: GroupItem[]) => void;
|
|
35
39
|
setFilterList: (items: ISuperFilter[]) => void;
|
|
36
40
|
setSorterList: (items: SorterItem[]) => void;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { IRecord, IOrderBy, IColumn } from '../../../table/src/table/types';
|
|
2
|
+
export declare const createGridColumns: (columns: IColumn[]) => IColumn[];
|
|
3
|
+
export declare const getStickyLeft: (flattenColumns: IColumn[], fieldName: string) => number;
|
|
2
4
|
export declare const groupMultiData: (records: IRecord[], groupKeys: Record<string, IOrderBy>[] | undefined, fn: (row: IRecord, key: string) => string | number) => any;
|
|
5
|
+
export declare const getAllKeys: (data: Record<string, any> | Record<string, any>[], parentKey?: string) => string[];
|
|
3
6
|
export type Subtotal = {
|
|
4
7
|
[key: string]: number;
|
|
5
8
|
};
|
|
@@ -18,7 +21,7 @@ export type FieldCalculations = Record<string, (dataList: number[]) => number>;
|
|
|
18
21
|
export declare const calculateSummary: (groupData: Record<string, any> | Record<string, any>[], fieldCalculations: Record<string, (data: number[]) => number>) => Summary;
|
|
19
22
|
export declare const calculations: {
|
|
20
23
|
sum: (arr: number[]) => number;
|
|
21
|
-
avg: (arr: number[]) =>
|
|
24
|
+
avg: (arr: number[]) => string | 0;
|
|
22
25
|
max: (arr: number[]) => number | undefined;
|
|
23
26
|
min: (arr: number[]) => number | undefined;
|
|
24
27
|
count: (arr: number[]) => number;
|
|
@@ -26,4 +29,3 @@ export declare const calculations: {
|
|
|
26
29
|
empty: (arr: number[]) => number;
|
|
27
30
|
notEmpty: (arr: number[]) => number;
|
|
28
31
|
};
|
|
29
|
-
export declare const getStickyLeft: (flattenColumns: IColumn[], fieldName: string) => number;
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
* @Author: 焦质晔
|
|
3
3
|
* @Date: 2022-03-16 19:05:30
|
|
4
4
|
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time: 2024-
|
|
5
|
+
* @Last Modified time: 2024-12-04 09:17:17
|
|
6
6
|
*/
|
|
7
7
|
@import '../../style/common';
|
|
8
8
|
|
|
9
9
|
.button-icon {
|
|
10
|
-
display: inline-
|
|
10
|
+
display: inline-flex;
|
|
11
11
|
text-align: center;
|
|
12
12
|
text-transform: none;
|
|
13
13
|
text-decoration: none;
|
|
14
14
|
background: transparent;
|
|
15
15
|
border: 0;
|
|
16
16
|
outline: 0;
|
|
17
|
-
line-height:
|
|
17
|
+
line-height: 1;
|
|
18
18
|
padding: 5px;
|
|
19
19
|
color: @--text-color-placeholder;
|
|
20
20
|
border-radius: @--border-radius-lg;
|
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
.@{prefix-pivot-grid}__popper {
|
|
29
29
|
.container {
|
|
30
30
|
padding: 6px 15px;
|
|
31
|
+
&.scroll-y {
|
|
32
|
+
overflow-y: auto;
|
|
33
|
+
max-height: calc(100vh - 10px);
|
|
34
|
+
}
|
|
31
35
|
& > .label {
|
|
32
36
|
display: flex;
|
|
33
37
|
justify-content: space-between;
|
|
@@ -70,6 +74,33 @@
|
|
|
70
74
|
display: none;
|
|
71
75
|
}
|
|
72
76
|
}
|
|
77
|
+
li.sort-item {
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
border-radius: @--border-radius-lg;
|
|
81
|
+
transition: none;
|
|
82
|
+
.handle {
|
|
83
|
+
padding: 5px 6px 5px 2px;
|
|
84
|
+
color: @--text-color-placeholder;
|
|
85
|
+
cursor: s-resize;
|
|
86
|
+
}
|
|
87
|
+
.label {
|
|
88
|
+
flex: 1 0;
|
|
89
|
+
display: inline-flex;
|
|
90
|
+
align-items: center;
|
|
91
|
+
.title {
|
|
92
|
+
flex: 1 0;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
li.divider {
|
|
97
|
+
padding: 6px;
|
|
98
|
+
&::after {
|
|
99
|
+
content: '';
|
|
100
|
+
display: block;
|
|
101
|
+
border-top: 1px solid @--border-color-secondary;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
73
104
|
}
|
|
74
105
|
& > .add-record {
|
|
75
106
|
display: flex;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2020-02-28 21:58:58
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time: 2024-11-28 20:04:56
|
|
6
|
-
*/
|
|
7
|
-
@prefix-pivot-grid: ~'@{qm-prefix}-pivot-grid';
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2020-02-28 21:58:58
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2024-11-28 20:04:56
|
|
6
|
+
*/
|
|
7
|
+
@prefix-pivot-grid: ~'@{qm-prefix}-pivot-grid';
|
package/lib/style/index.css
CHANGED
|
@@ -27492,6 +27492,7 @@ body {
|
|
|
27492
27492
|
.qm-scrollbar__wrap {
|
|
27493
27493
|
display: grid;
|
|
27494
27494
|
height: 100%;
|
|
27495
|
+
max-height: inherit;
|
|
27495
27496
|
overflow: auto;
|
|
27496
27497
|
}
|
|
27497
27498
|
.qm-scrollbar__wrap--hidden {
|
|
@@ -28143,6 +28144,10 @@ body {
|
|
|
28143
28144
|
.qm-form-region-select--sm {
|
|
28144
28145
|
padding: 15px 10px 5px !important;
|
|
28145
28146
|
}
|
|
28147
|
+
.qm-form-fields-filter {
|
|
28148
|
+
min-width: 160px;
|
|
28149
|
+
max-width: 220px;
|
|
28150
|
+
}
|
|
28146
28151
|
.qm-form-fields-filter .reset {
|
|
28147
28152
|
padding-bottom: 2px;
|
|
28148
28153
|
margin-bottom: 4px;
|
|
@@ -28159,7 +28164,7 @@ body {
|
|
|
28159
28164
|
margin: 0;
|
|
28160
28165
|
}
|
|
28161
28166
|
.qm-form-fields-filter .fields-list ul li.item {
|
|
28162
|
-
line-height: 1.
|
|
28167
|
+
line-height: 1.85;
|
|
28163
28168
|
overflow: hidden;
|
|
28164
28169
|
text-overflow: ellipsis;
|
|
28165
28170
|
white-space: nowrap;
|
|
@@ -29193,13 +29198,13 @@ body {
|
|
|
29193
29198
|
}
|
|
29194
29199
|
.column-filter__popper {
|
|
29195
29200
|
padding: 0 !important;
|
|
29196
|
-
min-width:
|
|
29197
|
-
max-width:
|
|
29201
|
+
min-width: 160px;
|
|
29202
|
+
max-width: 220px;
|
|
29198
29203
|
}
|
|
29199
29204
|
.column-item__popper {
|
|
29200
29205
|
padding-right: 10px !important;
|
|
29201
|
-
min-width:
|
|
29202
|
-
max-width:
|
|
29206
|
+
min-width: 160px;
|
|
29207
|
+
max-width: 220px;
|
|
29203
29208
|
}
|
|
29204
29209
|
.column-item__popper .ant-popover-arrow {
|
|
29205
29210
|
display: none;
|
|
@@ -29216,7 +29221,7 @@ body {
|
|
|
29216
29221
|
.column-filter__popper .column-filter--wrap li.item,
|
|
29217
29222
|
.column-item__popper .column-filter--wrap li.item {
|
|
29218
29223
|
position: relative;
|
|
29219
|
-
line-height: 1.
|
|
29224
|
+
line-height: 1.85;
|
|
29220
29225
|
overflow: hidden;
|
|
29221
29226
|
text-overflow: ellipsis;
|
|
29222
29227
|
white-space: nowrap;
|
|
@@ -31009,17 +31014,17 @@ body {
|
|
|
31009
31014
|
* @Author: 焦质晔
|
|
31010
31015
|
* @Date: 2022-03-16 19:05:30
|
|
31011
31016
|
* @Last Modified by: 焦质晔
|
|
31012
|
-
* @Last Modified time: 2024-
|
|
31017
|
+
* @Last Modified time: 2024-12-04 09:17:17
|
|
31013
31018
|
*/
|
|
31014
31019
|
.button-icon {
|
|
31015
|
-
display: inline-
|
|
31020
|
+
display: inline-flex;
|
|
31016
31021
|
text-align: center;
|
|
31017
31022
|
text-transform: none;
|
|
31018
31023
|
text-decoration: none;
|
|
31019
31024
|
background: transparent;
|
|
31020
31025
|
border: 0;
|
|
31021
31026
|
outline: 0;
|
|
31022
|
-
line-height:
|
|
31027
|
+
line-height: 1;
|
|
31023
31028
|
padding: 5px;
|
|
31024
31029
|
color: rgba(0, 0, 0, 0.45);
|
|
31025
31030
|
border-radius: 4px;
|
|
@@ -31032,6 +31037,10 @@ body {
|
|
|
31032
31037
|
.qm-pivot-grid__popper .container {
|
|
31033
31038
|
padding: 6px 15px;
|
|
31034
31039
|
}
|
|
31040
|
+
.qm-pivot-grid__popper .container.scroll-y {
|
|
31041
|
+
overflow-y: auto;
|
|
31042
|
+
max-height: calc(100vh - 10px);
|
|
31043
|
+
}
|
|
31035
31044
|
.qm-pivot-grid__popper .container > .label {
|
|
31036
31045
|
display: flex;
|
|
31037
31046
|
justify-content: space-between;
|
|
@@ -31071,6 +31080,33 @@ body {
|
|
|
31071
31080
|
color: #1890ff;
|
|
31072
31081
|
display: none;
|
|
31073
31082
|
}
|
|
31083
|
+
.qm-pivot-grid__popper .container > .list li.sort-item {
|
|
31084
|
+
display: flex;
|
|
31085
|
+
align-items: center;
|
|
31086
|
+
border-radius: 4px;
|
|
31087
|
+
transition: none;
|
|
31088
|
+
}
|
|
31089
|
+
.qm-pivot-grid__popper .container > .list li.sort-item .handle {
|
|
31090
|
+
padding: 5px 6px 5px 2px;
|
|
31091
|
+
color: rgba(0, 0, 0, 0.45);
|
|
31092
|
+
cursor: s-resize;
|
|
31093
|
+
}
|
|
31094
|
+
.qm-pivot-grid__popper .container > .list li.sort-item .label {
|
|
31095
|
+
flex: 1 0;
|
|
31096
|
+
display: inline-flex;
|
|
31097
|
+
align-items: center;
|
|
31098
|
+
}
|
|
31099
|
+
.qm-pivot-grid__popper .container > .list li.sort-item .label .title {
|
|
31100
|
+
flex: 1 0;
|
|
31101
|
+
}
|
|
31102
|
+
.qm-pivot-grid__popper .container > .list li.divider {
|
|
31103
|
+
padding: 6px;
|
|
31104
|
+
}
|
|
31105
|
+
.qm-pivot-grid__popper .container > .list li.divider::after {
|
|
31106
|
+
content: '';
|
|
31107
|
+
display: block;
|
|
31108
|
+
border-top: 1px solid #e8e8e8;
|
|
31109
|
+
}
|
|
31074
31110
|
.qm-pivot-grid__popper .container > .add-record {
|
|
31075
31111
|
display: flex;
|
|
31076
31112
|
justify-content: space-between;
|
|
@@ -31196,6 +31232,7 @@ body {
|
|
|
31196
31232
|
.qm-pivot-grid__layout .body .group-card .label-row .label-cell .title {
|
|
31197
31233
|
flex-shrink: 0;
|
|
31198
31234
|
margin-right: 20px;
|
|
31235
|
+
font-weight: 700;
|
|
31199
31236
|
}
|
|
31200
31237
|
.qm-pivot-grid__layout .body .group-card .grid-list {
|
|
31201
31238
|
margin: 0;
|
|
@@ -31379,6 +31416,9 @@ body {
|
|
|
31379
31416
|
list-style: none;
|
|
31380
31417
|
font-feature-settings: 'tnum';
|
|
31381
31418
|
}
|
|
31382
|
-
.qm-virtual-list .
|
|
31419
|
+
.qm-virtual-list .container {
|
|
31420
|
+
display: block;
|
|
31421
|
+
}
|
|
31422
|
+
.qm-virtual-list .container ul li.list-item {
|
|
31383
31423
|
list-style: none;
|
|
31384
31424
|
}
|
package/lib/style/index.less
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2021-07-23 18:23:59
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time: 2024-12-02 09:06:40
|
|
6
|
-
*/
|
|
7
|
-
@import '../antd/index.less';
|
|
8
|
-
@import './var.less';
|
|
9
|
-
@import './reset.less';
|
|
10
|
-
|
|
11
|
-
/* QmDesign */
|
|
12
|
-
@import '../button/style/index.less';
|
|
13
|
-
@import '../space/style/index.less';
|
|
14
|
-
@import '../divider/style/index.less';
|
|
15
|
-
@import '../split/style/index.less';
|
|
16
|
-
@import '../countup/style/index.less';
|
|
17
|
-
@import '../empty/style/index.less';
|
|
18
|
-
@import '../spin/style/index.less';
|
|
19
|
-
@import '../scrollbar/style/index.less';
|
|
20
|
-
@import '../download/style/index.less';
|
|
21
|
-
@import '../anchor/style/index.less';
|
|
22
|
-
@import '../tabs/style/index.less';
|
|
23
|
-
@import '../drawer/style/index.less';
|
|
24
|
-
@import '../modal/style/index.less';
|
|
25
|
-
@import '../form/style/index.less';
|
|
26
|
-
@import '../tinymce/style/index.less';
|
|
27
|
-
@import '../cropper/style/index.less';
|
|
28
|
-
@import '../collapse/style/index.less';
|
|
29
|
-
@import '../upload-file/style/index.less';
|
|
30
|
-
@import '../upload-img/style/index.less';
|
|
31
|
-
@import '../table/style/index.less';
|
|
32
|
-
@import '../search-helper/style/index.less';
|
|
33
|
-
@import '../tree-helper/style/index.less';
|
|
34
|
-
@import '../tree-table-helper/style/index.less';
|
|
35
|
-
@import '../range-table-helper/style/index.less';
|
|
36
|
-
@import '../search-tree/style/index.less';
|
|
37
|
-
@import '../tour/style/index.less';
|
|
38
|
-
@import '../guide-tracker/style/index.less';
|
|
39
|
-
@import '../print/style/index.less';
|
|
40
|
-
@import '../lazy-load/style/index.less';
|
|
41
|
-
@import '../signature/style/index.less';
|
|
42
|
-
@import '../pivot-grid/style/index.less';
|
|
43
|
-
@import '../virtual-list/style/index.less';
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2021-07-23 18:23:59
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2024-12-02 09:06:40
|
|
6
|
+
*/
|
|
7
|
+
@import '../antd/index.less';
|
|
8
|
+
@import './var.less';
|
|
9
|
+
@import './reset.less';
|
|
10
|
+
|
|
11
|
+
/* QmDesign */
|
|
12
|
+
@import '../button/style/index.less';
|
|
13
|
+
@import '../space/style/index.less';
|
|
14
|
+
@import '../divider/style/index.less';
|
|
15
|
+
@import '../split/style/index.less';
|
|
16
|
+
@import '../countup/style/index.less';
|
|
17
|
+
@import '../empty/style/index.less';
|
|
18
|
+
@import '../spin/style/index.less';
|
|
19
|
+
@import '../scrollbar/style/index.less';
|
|
20
|
+
@import '../download/style/index.less';
|
|
21
|
+
@import '../anchor/style/index.less';
|
|
22
|
+
@import '../tabs/style/index.less';
|
|
23
|
+
@import '../drawer/style/index.less';
|
|
24
|
+
@import '../modal/style/index.less';
|
|
25
|
+
@import '../form/style/index.less';
|
|
26
|
+
@import '../tinymce/style/index.less';
|
|
27
|
+
@import '../cropper/style/index.less';
|
|
28
|
+
@import '../collapse/style/index.less';
|
|
29
|
+
@import '../upload-file/style/index.less';
|
|
30
|
+
@import '../upload-img/style/index.less';
|
|
31
|
+
@import '../table/style/index.less';
|
|
32
|
+
@import '../search-helper/style/index.less';
|
|
33
|
+
@import '../tree-helper/style/index.less';
|
|
34
|
+
@import '../tree-table-helper/style/index.less';
|
|
35
|
+
@import '../range-table-helper/style/index.less';
|
|
36
|
+
@import '../search-tree/style/index.less';
|
|
37
|
+
@import '../tour/style/index.less';
|
|
38
|
+
@import '../guide-tracker/style/index.less';
|
|
39
|
+
@import '../print/style/index.less';
|
|
40
|
+
@import '../lazy-load/style/index.less';
|
|
41
|
+
@import '../signature/style/index.less';
|
|
42
|
+
@import '../pivot-grid/style/index.less';
|
|
43
|
+
@import '../virtual-list/style/index.less';
|