@aplus-frontend/ui 0.1.15 → 0.1.16
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/index.mjs +56 -54
- package/es/src/ap-table/ap-table.vue.mjs +132 -129
- package/es/src/ap-table/interface.d.ts +20 -13
- package/es/src/ap-table/utils.d.ts +8340 -1
- package/es/src/ap-table/utils.mjs +135 -79
- package/es/src/business/index.d.ts +2 -0
- package/es/src/business/index.mjs +20 -18
- package/es/src/config-provider/config-provider-props.d.ts +5 -1
- package/es/src/config-provider/config-provider-props.mjs +4 -0
- package/es/src/config-provider/config-provider.d.ts +10 -1
- package/es/src/config-provider/config-provider.mjs +18 -17
- package/es/src/config-provider/constants.d.ts +6 -2
- package/es/src/config-provider/hooks/use-global-config.d.ts +5 -1
- package/es/src/config-provider/index.d.ts +20 -1
- package/es/src/editable-table/form-item.vue.mjs +85 -72
- package/es/src/editable-table/index.vue.mjs +99 -86
- package/es/src/editable-table/utils.mjs +31 -30
- package/es/src/index.mjs +45 -43
- package/es/src/theme/antd-global-overwrite/admin/form.css +10 -5
- package/es/src/theme/antd-global-overwrite/admin/index.css +117 -38
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
- package/es/src/theme/antd-global-overwrite/admin/table.css +53 -17
- package/es/src/theme/antd-global-overwrite/aplus/form.css +28 -14
- package/es/src/theme/antd-global-overwrite/aplus/index.css +159 -67
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
- package/es/src/theme/antd-global-overwrite/aplus/table.css +65 -33
- package/es/src/utils/ap-trans-data/index.d.ts +9 -10
- package/es/src/utils/ap-trans-data/index.mjs +20 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-table/ap-table.vue.js +1 -1
- package/lib/src/ap-table/interface.d.ts +20 -13
- package/lib/src/ap-table/utils.d.ts +8340 -1
- package/lib/src/ap-table/utils.js +1 -1
- package/lib/src/business/index.d.ts +2 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/config-provider/config-provider-props.d.ts +5 -1
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/config-provider.d.ts +10 -1
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/constants.d.ts +6 -2
- package/lib/src/config-provider/hooks/use-global-config.d.ts +5 -1
- package/lib/src/config-provider/index.d.ts +20 -1
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/editable-table/index.vue.js +1 -1
- package/lib/src/editable-table/utils.js +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/theme/antd-global-overwrite/admin/form.css +10 -5
- package/lib/src/theme/antd-global-overwrite/admin/index.css +117 -38
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
- package/lib/src/theme/antd-global-overwrite/admin/table.css +53 -17
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +28 -14
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +159 -67
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +65 -33
- package/lib/src/utils/ap-trans-data/index.d.ts +9 -10
- package/lib/src/utils/ap-trans-data/index.js +1 -0
- package/package.json +1 -1
package/es/src/index.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Icon as n, SvgIcon as A } from "./icon/index.mjs";
|
|
2
|
-
import { APConfigProvider as
|
|
2
|
+
import { APConfigProvider as T } from "./config-provider/index.mjs";
|
|
3
3
|
import { Scrollbar as C } from "./scroll-bar/index.mjs";
|
|
4
4
|
import { CollapseContainer as I, ScrollContainer as b } from "./container/index.mjs";
|
|
5
|
-
import { IconPicker as
|
|
5
|
+
import { IconPicker as D } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
7
|
import { BasicArrow as h, BasicHelp as R, BasicTitle as v } from "./basic/index.mjs";
|
|
8
|
-
import { ExpandTransition as w, ExpandXTransition as B, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as
|
|
8
|
+
import { ExpandTransition as w, ExpandXTransition as B, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as H, SlideYTransition as O } from "./transition/index.mjs";
|
|
9
9
|
import { Description as z } from "./description/index.mjs";
|
|
10
10
|
import { Field as j } from "./pro-form/index.mjs";
|
|
11
11
|
import { BaseButton as J } from "./base-button/index.mjs";
|
|
@@ -19,7 +19,7 @@ import "./pro-table/index.mjs";
|
|
|
19
19
|
import { ApForm as io } from "./ap-form/index.mjs";
|
|
20
20
|
import { ApField as uo } from "./ap-field/index.mjs";
|
|
21
21
|
import { adminToken as Ao, aplusToken as co } from "./design-token/index.mjs";
|
|
22
|
-
import { ApActionItem as
|
|
22
|
+
import { ApActionItem as Fo } from "./ap-action/index.mjs";
|
|
23
23
|
import "./ap-custom-column/index.mjs";
|
|
24
24
|
import "./work-order-modal/index.mjs";
|
|
25
25
|
import "./ap-tag/index.mjs";
|
|
@@ -29,13 +29,13 @@ import "./ap-download/index.mjs";
|
|
|
29
29
|
import { CheckCard as So } from "./check-card/index.mjs";
|
|
30
30
|
import { ApModal as bo } from "./ap-modal/index.mjs";
|
|
31
31
|
import "./ap-list/index.mjs";
|
|
32
|
-
import { ApBatchAction as
|
|
32
|
+
import { ApBatchAction as Do, ApExpandAlert as Po, ApExportGroup as ho, ApInputRadio as Ro, ApLabel as vo, ApLabelGroup as Go, ApSelectLayout as wo, ApStatus as Bo, ApStatusGroup as Mo, ApTitle as ko } from "./business/index.mjs";
|
|
33
33
|
import "./ap-table/index.mjs";
|
|
34
34
|
import "./editable-table/index.mjs";
|
|
35
35
|
import "./ap-descriptions/index.mjs";
|
|
36
36
|
import { configProviderProps as No } from "./config-provider/config-provider-props.mjs";
|
|
37
37
|
import { configProviderContextKey as Eo, tableDefaultConfig as Ko } from "./config-provider/constants.mjs";
|
|
38
|
-
import { keysOf as Yo, provideGlobalConfig as
|
|
38
|
+
import { keysOf as Yo, provideGlobalConfig as Ho, useGlobalConfig as Oo } from "./config-provider/hooks/use-global-config.mjs";
|
|
39
39
|
import { buildLocaleContext as zo, buildTranslator as Uo, localeContextKey as jo, translate as qo, useLocale as Jo } from "./config-provider/hooks/use-locale.mjs";
|
|
40
40
|
import { defaultNamespace as Vo, namespaceContextKey as Zo, useGetDerivedNamespace as _o, useNamespace as $o } from "./config-provider/hooks/use-namespace.mjs";
|
|
41
41
|
import { ConfigProvider as ee, globalConfigCached as re } from "./config-provider/config-provider.mjs";
|
|
@@ -45,11 +45,11 @@ import { default as le } from "./transition/collapse-transition.vue.mjs";
|
|
|
45
45
|
import { useDescription as se } from "./description/use-description.mjs";
|
|
46
46
|
import { useComponentRegister as xe } from "./pro-form/hooks/use-component-register.mjs";
|
|
47
47
|
import { useForm as ne } from "./pro-form/hooks/use-form.mjs";
|
|
48
|
-
import { isComponentFormSchema as ce, isSlotFormSchema as
|
|
48
|
+
import { isComponentFormSchema as ce, isSlotFormSchema as Te } from "./pro-form/types/form.mjs";
|
|
49
49
|
import { default as Ce } from "./pro-form/components/api-cascader.vue.mjs";
|
|
50
50
|
import { default as Ie } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
51
51
|
import { default as ge } from "./pro-form/components/api-select.vue.mjs";
|
|
52
|
-
import { default as
|
|
52
|
+
import { default as Pe } from "./pro-form/components/api-transfer.vue.mjs";
|
|
53
53
|
import { default as Re } from "./pro-form/components/api-tree.vue.mjs";
|
|
54
54
|
import { default as Ge } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
55
55
|
import { default as Be } from "./pro-form/pro-form.vue.mjs";
|
|
@@ -57,7 +57,7 @@ import { default as ke } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
|
57
57
|
import { default as Ne } from "./pro-form/table-form.vue.mjs";
|
|
58
58
|
import { default as Ee } from "./pro-form/table-form-inner.vue.mjs";
|
|
59
59
|
import { default as Xe } from "./base-button/modal-button.vue.mjs";
|
|
60
|
-
import { default as
|
|
60
|
+
import { default as He } from "./base-button/pop-confirm-button.vue.mjs";
|
|
61
61
|
import { useModalContext as We } from "./modal/hooks/use-modal-context.mjs";
|
|
62
62
|
import { useModal as Ue, useModalInner as je } from "./modal/hooks/use-modal.mjs";
|
|
63
63
|
import { default as Je } from "./pro-table/pro-table.vue.mjs";
|
|
@@ -72,10 +72,10 @@ import { default as sr } from "./ap-form/items/date/index.vue.mjs";
|
|
|
72
72
|
import { default as xr } from "./ap-form/items/date-range/index.vue.mjs";
|
|
73
73
|
import { default as nr } from "./ap-form/items/radio/index.vue.mjs";
|
|
74
74
|
import { default as cr } from "./ap-form/items/select/index.vue.mjs";
|
|
75
|
-
import { default as
|
|
75
|
+
import { default as Fr } from "./ap-form/items/switch/index.vue.mjs";
|
|
76
76
|
import { default as Sr } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
77
77
|
import { default as br } from "./ap-form/items/text/password.vue.mjs";
|
|
78
|
-
import { default as
|
|
78
|
+
import { default as Dr } from "./ap-form/ap-form-item.vue.mjs";
|
|
79
79
|
import { default as hr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
80
80
|
import { default as vr } from "./ap-form/ap-form-list.vue.mjs";
|
|
81
81
|
import { default as wr } from "./ap-form/search-form/index.vue.mjs";
|
|
@@ -84,7 +84,7 @@ import { ApFieldText as Lr } from "./ap-field/text/index.mjs";
|
|
|
84
84
|
import { default as yr } from "./ap-field/checkbox/index.vue.mjs";
|
|
85
85
|
import { default as Kr } from "./ap-field/date/index.vue.mjs";
|
|
86
86
|
import { default as Yr } from "./ap-field/number/index.vue.mjs";
|
|
87
|
-
import { default as
|
|
87
|
+
import { default as Or } from "./ap-field/radio/index.vue.mjs";
|
|
88
88
|
import { default as zr } from "./ap-field/switch/index.vue.mjs";
|
|
89
89
|
import { default as jr } from "./ap-field/text-area/index.vue.mjs";
|
|
90
90
|
import { default as Jr } from "./ap-field/date-range/index.vue.mjs";
|
|
@@ -99,10 +99,10 @@ import { default as st } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
|
99
99
|
import { default as xt } from "./ap-action/group/index.vue.mjs";
|
|
100
100
|
import { generateTableList as nt } from "./ap-custom-column/utils.mjs";
|
|
101
101
|
import { useCacheColumnSetting as ct } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
102
|
-
import { default as
|
|
102
|
+
import { default as Ft } from "./ap-custom-column/custom-column.vue.mjs";
|
|
103
103
|
import { default as St } from "./ap-custom-column/column-select.vue.mjs";
|
|
104
104
|
import { DictCode as bt } from "./work-order-modal/interfaces.mjs";
|
|
105
|
-
import { createWorkOrderModal as
|
|
105
|
+
import { createWorkOrderModal as Dt } from "./work-order-modal/createWorkOrder.mjs";
|
|
106
106
|
import { default as ht } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
107
107
|
import { default as vt } from "./ap-tag/ap-tag.vue.mjs";
|
|
108
108
|
import { default as wt } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
@@ -111,27 +111,28 @@ import { NeedNameKeyDefault as Lt } from "./ap-upload/apUploadTypes.mjs";
|
|
|
111
111
|
import { default as yt } from "./ap-upload/apUpload.vue.mjs";
|
|
112
112
|
import { ApDownLoadNeedNameKeyDefault as Kt } from "./ap-download/interface.mjs";
|
|
113
113
|
import { default as Yt } from "./ap-download/ap-download.vue.mjs";
|
|
114
|
-
import { default as
|
|
114
|
+
import { default as Ot } from "./check-card/group.vue.mjs";
|
|
115
115
|
import { default as zt } from "./ap-list/index.vue.mjs";
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import { default as Vt } from "./
|
|
119
|
-
import { default as _t } from "./editable-table/
|
|
120
|
-
import { default as oa } from "./
|
|
116
|
+
import { ApTransformDataHelper as jt } from "./utils/ap-trans-data/index.mjs";
|
|
117
|
+
import { useTablePaging as Jt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
118
|
+
import { default as Vt } from "./ap-table/ap-table.vue.mjs";
|
|
119
|
+
import { default as _t } from "./editable-table/index.vue.mjs";
|
|
120
|
+
import { default as oa } from "./editable-table/form-item.vue.mjs";
|
|
121
|
+
import { default as ra } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
121
122
|
export {
|
|
122
|
-
|
|
123
|
+
T as APConfigProvider,
|
|
123
124
|
xt as ApActionGroup,
|
|
124
|
-
|
|
125
|
+
Fo as ApActionItem,
|
|
125
126
|
st as ApActionItemDropdown,
|
|
126
127
|
ft as ApActionItemModal,
|
|
127
128
|
lt as ApActionItemPopconfirm,
|
|
128
|
-
|
|
129
|
-
|
|
129
|
+
Do as ApBatchAction,
|
|
130
|
+
Ft as ApCustomColumn,
|
|
130
131
|
St as ApCustomSelect,
|
|
131
|
-
|
|
132
|
+
ra as ApDescriptions,
|
|
132
133
|
Kt as ApDownLoadNeedNameKeyDefault,
|
|
133
134
|
Yt as ApDownload,
|
|
134
|
-
|
|
135
|
+
Po as ApExpandAlert,
|
|
135
136
|
ho as ApExportGroup,
|
|
136
137
|
uo as ApField,
|
|
137
138
|
yr as ApFieldCheckbox,
|
|
@@ -139,7 +140,7 @@ export {
|
|
|
139
140
|
Jr as ApFieldDateRange,
|
|
140
141
|
Yr as ApFieldNumber,
|
|
141
142
|
_r as ApFieldPassword,
|
|
142
|
-
|
|
143
|
+
Or as ApFieldRadio,
|
|
143
144
|
at as ApFieldRate,
|
|
144
145
|
rt as ApFieldSegmented,
|
|
145
146
|
Vr as ApFieldSelect,
|
|
@@ -148,7 +149,7 @@ export {
|
|
|
148
149
|
Lr as ApFieldText,
|
|
149
150
|
jr as ApFieldTextArea,
|
|
150
151
|
io as ApForm,
|
|
151
|
-
|
|
152
|
+
Dr as ApFormItem,
|
|
152
153
|
Sr as ApFormItemCheckbox,
|
|
153
154
|
sr as ApFormItemDate,
|
|
154
155
|
xr as ApFormItemDateRange,
|
|
@@ -156,7 +157,7 @@ export {
|
|
|
156
157
|
lr as ApFormItemNumber,
|
|
157
158
|
nr as ApFormItemRadio,
|
|
158
159
|
cr as ApFormItemSelect,
|
|
159
|
-
|
|
160
|
+
Fr as ApFormItemSwitch,
|
|
160
161
|
ar as ApFormItemText,
|
|
161
162
|
fr as ApFormItemTextArea,
|
|
162
163
|
br as ApFormItemTextPassword,
|
|
@@ -172,15 +173,16 @@ export {
|
|
|
172
173
|
wo as ApSelectLayout,
|
|
173
174
|
Bo as ApStatus,
|
|
174
175
|
Mo as ApStatusGroup,
|
|
175
|
-
|
|
176
|
+
Vt as ApTable,
|
|
176
177
|
vt as ApTag,
|
|
177
178
|
wt as ApTagGroup,
|
|
178
179
|
ko as ApTitle,
|
|
180
|
+
jt as ApTransformDataHelper,
|
|
179
181
|
yt as ApUpload,
|
|
180
182
|
Ce as ApiCascader,
|
|
181
183
|
Ie as ApiRadioGroup,
|
|
182
184
|
ge as ApiSelect,
|
|
183
|
-
|
|
185
|
+
Pe as ApiTransfer,
|
|
184
186
|
Re as ApiTree,
|
|
185
187
|
ke as ApiTreeSelect,
|
|
186
188
|
J as BaseButton,
|
|
@@ -189,7 +191,7 @@ export {
|
|
|
189
191
|
R as BasicHelp,
|
|
190
192
|
v as BasicTitle,
|
|
191
193
|
So as CheckCard,
|
|
192
|
-
|
|
194
|
+
Ot as CheckCardGroup,
|
|
193
195
|
I as CollapseContainer,
|
|
194
196
|
le as CollapseTransition,
|
|
195
197
|
ee as ConfigProvider,
|
|
@@ -201,17 +203,17 @@ export {
|
|
|
201
203
|
bt as DictCode,
|
|
202
204
|
lo as Dropdown,
|
|
203
205
|
_e as EditTableHeaderIcon,
|
|
204
|
-
|
|
205
|
-
|
|
206
|
+
_t as EditableTable,
|
|
207
|
+
oa as EditableTableFormItem,
|
|
206
208
|
w as ExpandTransition,
|
|
207
209
|
B as ExpandXTransition,
|
|
208
210
|
M as FadeTransition,
|
|
209
211
|
j as Field,
|
|
210
212
|
n as Icon,
|
|
211
|
-
|
|
213
|
+
D as IconPicker,
|
|
212
214
|
Xe as ModalButton,
|
|
213
215
|
Lt as NeedNameKeyDefault,
|
|
214
|
-
|
|
216
|
+
He as PopConfirmButton,
|
|
215
217
|
Be as ProForm,
|
|
216
218
|
Je as ProTable,
|
|
217
219
|
Ne as ProTableForm,
|
|
@@ -227,8 +229,8 @@ export {
|
|
|
227
229
|
C as Scrollbar,
|
|
228
230
|
X as SlideXReverseTransition,
|
|
229
231
|
Y as SlideXTransition,
|
|
230
|
-
|
|
231
|
-
|
|
232
|
+
H as SlideYReverseTransition,
|
|
233
|
+
O as SlideYTransition,
|
|
232
234
|
V as StrengthMeter,
|
|
233
235
|
A as SvgIcon,
|
|
234
236
|
Ve as TableAction,
|
|
@@ -241,17 +243,17 @@ export {
|
|
|
241
243
|
Eo as configProviderContextKey,
|
|
242
244
|
No as configProviderProps,
|
|
243
245
|
fo as createPrompt,
|
|
244
|
-
|
|
246
|
+
Dt as createWorkOrderModal,
|
|
245
247
|
Vo as defaultNamespace,
|
|
246
248
|
fe as en,
|
|
247
249
|
nt as generateTableList,
|
|
248
250
|
re as globalConfigCached,
|
|
249
251
|
ce as isComponentFormSchema,
|
|
250
|
-
|
|
252
|
+
Te as isSlotFormSchema,
|
|
251
253
|
Yo as keysOf,
|
|
252
254
|
jo as localeContextKey,
|
|
253
255
|
Zo as namespaceContextKey,
|
|
254
|
-
|
|
256
|
+
Ho as provideGlobalConfig,
|
|
255
257
|
Ko as tableDefaultConfig,
|
|
256
258
|
qo as translate,
|
|
257
259
|
ct as useCacheColumnSetting,
|
|
@@ -259,13 +261,13 @@ export {
|
|
|
259
261
|
se as useDescription,
|
|
260
262
|
ne as useForm,
|
|
261
263
|
_o as useGetDerivedNamespace,
|
|
262
|
-
|
|
264
|
+
Oo as useGlobalConfig,
|
|
263
265
|
Jo as useLocale,
|
|
264
266
|
Ue as useModal,
|
|
265
267
|
We as useModalContext,
|
|
266
268
|
je as useModalInner,
|
|
267
269
|
$o as useNamespace,
|
|
268
270
|
rr as useTable,
|
|
269
|
-
|
|
271
|
+
Jt as useTablePaging,
|
|
270
272
|
ae as zhCn
|
|
271
273
|
};
|
|
@@ -37,22 +37,27 @@
|
|
|
37
37
|
input.ant-input[disabled] {
|
|
38
38
|
color: #666666;
|
|
39
39
|
}
|
|
40
|
-
div[class
|
|
40
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'],
|
|
41
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] {
|
|
41
42
|
padding: 16px;
|
|
42
43
|
}
|
|
43
|
-
div[class
|
|
44
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content,
|
|
45
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
44
46
|
display: flex;
|
|
45
47
|
align-items: center;
|
|
46
48
|
justify-content: flex-end;
|
|
47
49
|
}
|
|
48
|
-
div[class
|
|
50
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary,
|
|
51
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
49
52
|
order: 1;
|
|
50
53
|
}
|
|
51
|
-
div[class
|
|
54
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default,
|
|
55
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
52
56
|
order: 2;
|
|
53
57
|
margin-right: 0;
|
|
54
58
|
}
|
|
55
|
-
div[class
|
|
59
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link,
|
|
60
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
56
61
|
order: 3;
|
|
57
62
|
margin-left: 0.5rem;
|
|
58
63
|
}
|
|
@@ -117,22 +117,27 @@
|
|
|
117
117
|
input.ant-input[disabled] {
|
|
118
118
|
color: #666666;
|
|
119
119
|
}
|
|
120
|
-
div[class
|
|
120
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'],
|
|
121
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] {
|
|
121
122
|
padding: 16px;
|
|
122
123
|
}
|
|
123
|
-
div[class
|
|
124
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content,
|
|
125
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
124
126
|
display: flex;
|
|
125
127
|
align-items: center;
|
|
126
128
|
justify-content: flex-end;
|
|
127
129
|
}
|
|
128
|
-
div[class
|
|
130
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary,
|
|
131
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
129
132
|
order: 1;
|
|
130
133
|
}
|
|
131
|
-
div[class
|
|
134
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default,
|
|
135
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
132
136
|
order: 2;
|
|
133
137
|
margin-right: 0;
|
|
134
138
|
}
|
|
135
|
-
div[class
|
|
139
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link,
|
|
140
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
136
141
|
order: 3;
|
|
137
142
|
margin-left: 0.5rem;
|
|
138
143
|
}
|
|
@@ -271,22 +276,30 @@ div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
271
276
|
color: #ff4d4f;
|
|
272
277
|
}
|
|
273
278
|
[class$='-basic-table'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right,
|
|
274
|
-
[class
|
|
279
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right,
|
|
280
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right,
|
|
281
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right {
|
|
275
282
|
margin: 16px 0 0;
|
|
276
283
|
}
|
|
277
284
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination,
|
|
278
|
-
[class
|
|
285
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination,
|
|
286
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination,
|
|
287
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination {
|
|
279
288
|
position: relative;
|
|
280
289
|
}
|
|
281
290
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text,
|
|
282
|
-
[class
|
|
291
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text,
|
|
292
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text,
|
|
293
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text {
|
|
283
294
|
position: absolute;
|
|
284
295
|
left: 0;
|
|
285
296
|
height: 30px;
|
|
286
297
|
line-height: 30px;
|
|
287
298
|
}
|
|
288
299
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item,
|
|
289
|
-
[class
|
|
300
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item,
|
|
301
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item,
|
|
302
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item {
|
|
290
303
|
box-sizing: border-box;
|
|
291
304
|
min-width: 30px;
|
|
292
305
|
height: 30px;
|
|
@@ -298,13 +311,27 @@ div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
298
311
|
border-radius: 4px;
|
|
299
312
|
}
|
|
300
313
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
301
|
-
[class
|
|
302
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class
|
|
303
|
-
[class
|
|
314
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
315
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
316
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
317
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
318
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
319
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
320
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
321
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
322
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
323
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
324
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
325
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
326
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
327
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
328
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active) {
|
|
304
329
|
border: 1px solid #d9d9d9;
|
|
305
330
|
}
|
|
306
331
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-prev,
|
|
307
|
-
[class
|
|
332
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-prev,
|
|
333
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-prev,
|
|
334
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-prev {
|
|
308
335
|
width: 30px;
|
|
309
336
|
height: 30px;
|
|
310
337
|
margin: 0 4px;
|
|
@@ -312,7 +339,9 @@ div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
312
339
|
border: 1px solid #d9d9d9;
|
|
313
340
|
}
|
|
314
341
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next,
|
|
315
|
-
[class
|
|
342
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next,
|
|
343
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-next,
|
|
344
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-next {
|
|
316
345
|
width: 30px;
|
|
317
346
|
height: 30px;
|
|
318
347
|
margin: 0 4px;
|
|
@@ -320,34 +349,48 @@ div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
320
349
|
border: 1px solid #d9d9d9;
|
|
321
350
|
}
|
|
322
351
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled,
|
|
323
|
-
[class
|
|
352
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled,
|
|
353
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled,
|
|
354
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled {
|
|
324
355
|
border: 1px solid #d9d9d9;
|
|
325
356
|
}
|
|
326
357
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options,
|
|
327
|
-
[class
|
|
358
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options,
|
|
359
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options,
|
|
360
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options {
|
|
328
361
|
margin-left: 4px;
|
|
329
362
|
}
|
|
330
363
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector,
|
|
331
|
-
[class
|
|
364
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector,
|
|
365
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector,
|
|
366
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector {
|
|
332
367
|
min-width: 90px;
|
|
333
368
|
height: 30px;
|
|
334
369
|
}
|
|
335
370
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item,
|
|
336
|
-
[class
|
|
371
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item,
|
|
372
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item,
|
|
373
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item {
|
|
337
374
|
line-height: 28px;
|
|
338
375
|
}
|
|
339
376
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow,
|
|
340
|
-
[class
|
|
377
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow,
|
|
378
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow,
|
|
379
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow {
|
|
341
380
|
color: #333333;
|
|
342
381
|
}
|
|
343
382
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper,
|
|
344
|
-
[class
|
|
383
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper,
|
|
384
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper,
|
|
385
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper {
|
|
345
386
|
margin-left: 20px;
|
|
346
387
|
color: #333333;
|
|
347
388
|
font-size: 14px;
|
|
348
389
|
}
|
|
349
390
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input,
|
|
350
|
-
[class
|
|
391
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input,
|
|
392
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input,
|
|
393
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input {
|
|
351
394
|
min-width: 60px;
|
|
352
395
|
height: 30px;
|
|
353
396
|
margin: 0 8px;
|
|
@@ -482,20 +525,28 @@ div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
482
525
|
line-height: 25px;
|
|
483
526
|
}
|
|
484
527
|
[class$='-basic-table'],
|
|
485
|
-
[class$='-basic-table-form-container']
|
|
528
|
+
[class$='-basic-table-form-container'],
|
|
529
|
+
[class$='-basic-table ap-table--sticky'],
|
|
530
|
+
[class$='-basic-table-form-container ap-table--sticky'] {
|
|
486
531
|
width: 100%;
|
|
487
532
|
height: 100%;
|
|
488
533
|
}
|
|
489
534
|
[class$='-basic-table'] .ant-table-wrapper,
|
|
490
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper
|
|
535
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper,
|
|
536
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper,
|
|
537
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper {
|
|
491
538
|
padding: 12px 16px 16px;
|
|
492
539
|
background-color: #ffffff;
|
|
493
540
|
border-radius: 0;
|
|
494
541
|
}
|
|
495
542
|
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle > .ant-table-title,
|
|
496
543
|
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle > .ant-table-title,
|
|
544
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle > .ant-table-title,
|
|
545
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle > .ant-table-title,
|
|
497
546
|
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small > .ant-table-title,
|
|
498
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small > .ant-table-title
|
|
547
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small > .ant-table-title,
|
|
548
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small > .ant-table-title,
|
|
549
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small > .ant-table-title {
|
|
499
550
|
display: flex;
|
|
500
551
|
align-items: center;
|
|
501
552
|
justify-content: space-between;
|
|
@@ -504,63 +555,91 @@ div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
504
555
|
border: none;
|
|
505
556
|
}
|
|
506
557
|
[class$='-basic-table'] .ant-table-wrapper .ant-table,
|
|
507
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table
|
|
558
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table,
|
|
559
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table,
|
|
560
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table {
|
|
508
561
|
width: 100%;
|
|
509
562
|
overflow-x: hidden;
|
|
510
563
|
border-radius: 0;
|
|
511
564
|
}
|
|
512
565
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container,
|
|
513
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container
|
|
566
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container,
|
|
567
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container,
|
|
568
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container {
|
|
514
569
|
border-radius: 0;
|
|
515
570
|
}
|
|
516
571
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container table,
|
|
517
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container table
|
|
572
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container table,
|
|
573
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container table,
|
|
574
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container table {
|
|
518
575
|
border-radius: 0;
|
|
519
576
|
}
|
|
520
577
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container table > thead > tr:first-child > *:first-child,
|
|
521
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container table > thead > tr:first-child > *:first-child
|
|
578
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container table > thead > tr:first-child > *:first-child,
|
|
579
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container table > thead > tr:first-child > *:first-child,
|
|
580
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container table > thead > tr:first-child > *:first-child {
|
|
522
581
|
border-radius: 0;
|
|
523
582
|
}
|
|
524
583
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
525
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header
|
|
584
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
585
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
586
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header {
|
|
526
587
|
border-radius: 0;
|
|
527
588
|
}
|
|
528
589
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
529
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td
|
|
590
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
591
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
592
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td {
|
|
530
593
|
background-color: #f3fbf7;
|
|
531
594
|
}
|
|
532
595
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td,
|
|
533
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td
|
|
596
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td,
|
|
597
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td,
|
|
598
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td {
|
|
534
599
|
background-color: #e6f6ef;
|
|
535
600
|
}
|
|
536
601
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td,
|
|
537
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td
|
|
602
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td,
|
|
603
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td,
|
|
604
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td {
|
|
538
605
|
padding: 13.5px 16px;
|
|
539
606
|
line-height: 20px;
|
|
540
607
|
}
|
|
541
608
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-thead > tr > th,
|
|
542
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-thead > tr > th
|
|
609
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-thead > tr > th,
|
|
610
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-thead > tr > th,
|
|
611
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-thead > tr > th {
|
|
543
612
|
padding: 13.5px 16px;
|
|
544
613
|
line-height: 20px;
|
|
545
614
|
}
|
|
546
615
|
[class$='-basic-table'] .ant-table-wrapper .ant-table-footer,
|
|
547
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer
|
|
616
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer,
|
|
617
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-footer,
|
|
618
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-footer {
|
|
548
619
|
padding: 0;
|
|
549
620
|
}
|
|
550
621
|
[class$='-basic-table'] .ant-table-wrapper .ant-table-footer .ant-table-wrapper,
|
|
551
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer .ant-table-wrapper
|
|
622
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer .ant-table-wrapper,
|
|
623
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-footer .ant-table-wrapper,
|
|
624
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-footer .ant-table-wrapper {
|
|
552
625
|
padding: 0;
|
|
553
626
|
}
|
|
554
627
|
[class$='-basic-table'] .ant-table-wrapper .ant-table-footer table,
|
|
555
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer table
|
|
628
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer table,
|
|
629
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-footer table,
|
|
630
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-footer table {
|
|
556
631
|
border: none;
|
|
557
632
|
}
|
|
558
633
|
[class$='-basic-table'] .ant-table-wrapper .ant-table-footer .ant-table-body,
|
|
559
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer .ant-table-body
|
|
634
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer .ant-table-body,
|
|
635
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-footer .ant-table-body,
|
|
636
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-footer .ant-table-body {
|
|
560
637
|
overflow-x: hidden;
|
|
561
638
|
}
|
|
562
639
|
[class$='-basic-table'] .ant-table-wrapper .ant-table-footer td,
|
|
563
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer td
|
|
640
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-footer td,
|
|
641
|
+
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-footer td,
|
|
642
|
+
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-footer td {
|
|
564
643
|
padding: 12px 8px;
|
|
565
644
|
}
|
|
566
645
|
[class$='-basic-table-form-container'] {
|