@aplus-frontend/ui 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/src/ap-download/ap-download.vue.mjs +27 -27
- package/es/src/ap-download/hooks/useStyle.d.ts +1 -1
- package/es/src/ap-download/hooks/useStyle.mjs +13 -13
- package/es/src/business/ap-input-radio/ApInputRadio.vue2.mjs +31 -28
- package/es/src/business/ap-input-radio/interface.d.ts +1 -1
- package/es/src/business/ap-label/style.css +3 -0
- package/es/src/business/ap-status/ApStatusGroup.vue2.mjs +12 -14
- package/es/src/business/index.d.ts +0 -2
- package/es/src/editable-table/index.vue.d.ts +1 -0
- package/es/src/editable-table/index.vue.mjs +97 -87
- package/es/src/editable-table/interface.d.ts +6 -1
- package/es/src/hooks/useControllableValue.mjs +3 -0
- package/es/src/theme/antd-global-overwrite/admin/form.css +5 -12
- package/es/src/theme/antd-global-overwrite/admin/index.css +128 -28
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +16 -16
- package/es/src/theme/antd-global-overwrite/admin/table.css +107 -0
- package/es/src/theme/antd-global-overwrite/aplus/form.css +14 -21
- package/es/src/theme/antd-global-overwrite/aplus/index.css +174 -74
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +20 -20
- package/es/src/theme/antd-global-overwrite/aplus/table.css +140 -33
- package/es/src/theme/ap-label/ap-label.css +3 -0
- package/es/src/utils/ap-trans-data/index.d.ts +12 -0
- package/lib/src/ap-download/ap-download.vue.js +1 -1
- package/lib/src/ap-download/hooks/useStyle.d.ts +1 -1
- package/lib/src/ap-download/hooks/useStyle.js +1 -1
- package/lib/src/business/ap-input-radio/ApInputRadio.vue2.js +1 -1
- package/lib/src/business/ap-input-radio/interface.d.ts +1 -1
- package/lib/src/business/ap-label/style.css +3 -0
- package/lib/src/business/ap-status/ApStatusGroup.vue2.js +1 -1
- package/lib/src/business/index.d.ts +0 -2
- package/lib/src/editable-table/index.vue.d.ts +1 -0
- package/lib/src/editable-table/index.vue.js +1 -1
- package/lib/src/editable-table/interface.d.ts +6 -1
- package/lib/src/hooks/useControllableValue.js +1 -1
- package/lib/src/theme/antd-global-overwrite/admin/form.css +5 -12
- package/lib/src/theme/antd-global-overwrite/admin/index.css +128 -28
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +16 -16
- package/lib/src/theme/antd-global-overwrite/admin/table.css +107 -0
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +14 -21
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +174 -74
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +20 -20
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +140 -33
- package/lib/src/theme/ap-label/ap-label.css +3 -0
- package/lib/src/utils/ap-trans-data/index.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
[class
|
|
2
|
-
[class
|
|
1
|
+
[class*='-basic-table'],
|
|
2
|
+
[class*='-basic-table-form-container'] {
|
|
3
3
|
width: 100%;
|
|
4
4
|
height: 100%;
|
|
5
5
|
}
|
|
6
|
-
[class
|
|
7
|
-
[class
|
|
8
|
-
[class
|
|
9
|
-
[class
|
|
6
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
7
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
8
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title,
|
|
9
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title {
|
|
10
10
|
display: flex;
|
|
11
11
|
align-items: center;
|
|
12
12
|
justify-content: space-between;
|
|
@@ -14,18 +14,18 @@
|
|
|
14
14
|
padding: 0 0 10px;
|
|
15
15
|
border: none;
|
|
16
16
|
}
|
|
17
|
-
[class
|
|
18
|
-
[class
|
|
17
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table,
|
|
18
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table {
|
|
19
19
|
width: 100%;
|
|
20
20
|
overflow-x: hidden;
|
|
21
21
|
border-radius: 0;
|
|
22
22
|
}
|
|
23
|
-
[class
|
|
24
|
-
[class
|
|
23
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
24
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header {
|
|
25
25
|
border-radius: 0;
|
|
26
26
|
}
|
|
27
|
-
[class
|
|
28
|
-
[class
|
|
27
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th,
|
|
28
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th {
|
|
29
29
|
color: #182948;
|
|
30
30
|
font-weight: 700;
|
|
31
31
|
font-size: 14px;
|
|
@@ -34,22 +34,22 @@
|
|
|
34
34
|
text-transform: none;
|
|
35
35
|
background: #f2f6f9;
|
|
36
36
|
}
|
|
37
|
-
[class
|
|
38
|
-
[class
|
|
37
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before,
|
|
38
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before {
|
|
39
39
|
display: none;
|
|
40
40
|
width: 0;
|
|
41
41
|
visibility: hidden;
|
|
42
42
|
}
|
|
43
|
-
[class
|
|
44
|
-
[class
|
|
43
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover,
|
|
44
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover {
|
|
45
45
|
background: #f6f9fa;
|
|
46
46
|
}
|
|
47
|
-
[class
|
|
48
|
-
[class
|
|
47
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td,
|
|
48
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
49
49
|
background: #f6f9fa;
|
|
50
50
|
}
|
|
51
|
-
[class
|
|
52
|
-
[class
|
|
51
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td,
|
|
52
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td {
|
|
53
53
|
color: #182948;
|
|
54
54
|
font-weight: 400;
|
|
55
55
|
font-size: 14px;
|
|
@@ -58,36 +58,143 @@
|
|
|
58
58
|
text-transform: none;
|
|
59
59
|
transition: unset;
|
|
60
60
|
}
|
|
61
|
-
[class
|
|
62
|
-
[class
|
|
61
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th,
|
|
62
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th {
|
|
63
63
|
padding: 12px 16px;
|
|
64
64
|
line-height: 22px;
|
|
65
65
|
}
|
|
66
|
-
[class
|
|
67
|
-
[class
|
|
66
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
67
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td {
|
|
68
68
|
border-top: 1px solid;
|
|
69
69
|
border-top-color: transparent;
|
|
70
70
|
}
|
|
71
|
-
[class
|
|
72
|
-
[class
|
|
71
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
72
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell {
|
|
73
73
|
padding: 12px 16px;
|
|
74
74
|
line-height: 22px;
|
|
75
75
|
}
|
|
76
|
-
[class
|
|
77
|
-
[class
|
|
76
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th,
|
|
77
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th {
|
|
78
78
|
padding: 10.5px 16px;
|
|
79
79
|
line-height: 18px;
|
|
80
80
|
}
|
|
81
|
-
[class
|
|
82
|
-
[class
|
|
81
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
82
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td {
|
|
83
83
|
border-top: 1px solid;
|
|
84
84
|
border-top-color: transparent;
|
|
85
85
|
}
|
|
86
|
-
[class
|
|
87
|
-
[class
|
|
86
|
+
[class*='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
87
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell {
|
|
88
88
|
padding: 10.5px 16px;
|
|
89
89
|
line-height: 18px;
|
|
90
90
|
}
|
|
91
|
-
[class
|
|
91
|
+
[class*='-basic-table-row__striped'] td {
|
|
92
92
|
background-color: #f6f9fa;
|
|
93
93
|
}
|
|
94
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
95
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
96
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
97
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
98
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
99
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
100
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
101
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
102
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
103
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
104
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
105
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper,
|
|
106
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
107
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
108
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
109
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
110
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
111
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container {
|
|
112
|
+
overflow: visible;
|
|
113
|
+
}
|
|
114
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
115
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
116
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
117
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
118
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
119
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
120
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
121
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
122
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
123
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
124
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
125
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
126
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
127
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
128
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
129
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
130
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
131
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table {
|
|
132
|
+
overflow: visible;
|
|
133
|
+
}
|
|
134
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
135
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
136
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
137
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
138
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
139
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
140
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
141
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
142
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
143
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
144
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
145
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
146
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
147
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
148
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
149
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
150
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
151
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
152
|
+
overflow: visible;
|
|
153
|
+
}
|
|
154
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
155
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
156
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
157
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
158
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
159
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
160
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
161
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
162
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
163
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
164
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
165
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
166
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
167
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
168
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
169
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
170
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
171
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
172
|
+
position: sticky;
|
|
173
|
+
top: 0;
|
|
174
|
+
z-index: 99;
|
|
175
|
+
}
|
|
176
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
177
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
178
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
179
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
180
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
181
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
182
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
183
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
184
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
185
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
186
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
187
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
188
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
189
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
190
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
191
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
192
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
193
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination {
|
|
194
|
+
position: sticky;
|
|
195
|
+
bottom: 0;
|
|
196
|
+
z-index: 99;
|
|
197
|
+
margin: 0;
|
|
198
|
+
padding: 16px 0;
|
|
199
|
+
background-color: #ffffff;
|
|
200
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type options = {
|
|
2
|
+
data: Array<Record<string, any>>;
|
|
3
|
+
transfrom: Record<string, any>;
|
|
4
|
+
targetObj: Record<string, any>;
|
|
5
|
+
targetKey: 'comp' | 'server';
|
|
6
|
+
};
|
|
7
|
+
export declare function ApTransformData(opts: options): Error | undefined;
|
|
8
|
+
export declare function getTransfromKeysAndValues(transfrom: Record<string, any>): {
|
|
9
|
+
primeKey: string;
|
|
10
|
+
primeValuesKeys: string[];
|
|
11
|
+
};
|
|
12
|
+
export {};
|