@aplus-frontend/ui 6.38.0 → 6.39.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.mjs +110 -104
- package/es/src/ag-grid/hooks/use-columns-def.mjs +73 -71
- package/es/src/ag-grid/index.vue.mjs +201 -200
- package/es/src/ag-grid/interface.d.ts +14 -0
- package/es/src/ap-form/drawer-form/index.vue.d.ts +4 -0
- package/es/src/ap-form/modal-form/index.vue.d.ts +9 -1
- package/es/src/ap-modal/utils/createModal.mjs +34 -36
- package/es/src/ap-table/components/setting/modal/index.vue2.mjs +72 -71
- package/es/src/ap-table/interface.d.ts +6 -0
- package/es/src/business/ag-grid-modal/constants.d.ts +4 -0
- package/es/src/business/ag-grid-modal/constants.mjs +6 -0
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-instance.d.ts +33 -0
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-instance.mjs +50 -0
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-modal.d.ts +3 -0
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-modal.mjs +95 -0
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.d.ts +2 -0
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.mjs +165 -0
- package/es/src/business/ag-grid-modal/hooks/use-modal-title.d.ts +24 -0
- package/es/src/business/ag-grid-modal/hooks/use-modal-title.mjs +49 -0
- package/es/src/business/ag-grid-modal/index.d.ts +3 -0
- package/es/src/business/ag-grid-modal/index.mjs +8 -0
- package/es/src/business/ag-grid-modal/interface.d.ts +141 -0
- package/es/src/business/ag-grid-modal/modal-layout/index.vue.d.ts +44 -0
- package/es/src/business/ag-grid-modal/modal-layout/index.vue.mjs +4 -0
- package/es/src/business/ag-grid-modal/modal-layout/index.vue2.mjs +106 -0
- package/es/src/business/ag-grid-modal/selected-items/default.vue.d.ts +25 -0
- package/es/src/business/ag-grid-modal/selected-items/default.vue.mjs +4 -0
- package/es/src/business/ag-grid-modal/selected-items/default.vue2.mjs +33 -0
- package/es/src/business/ag-grid-modal/selected-items/index.d.ts +36 -0
- package/es/src/business/ag-grid-modal/selected-items/index.mjs +8 -0
- package/es/src/business/ag-grid-modal/selected-items/style/css.d.ts +0 -0
- package/es/src/business/ag-grid-modal/selected-items/style/css.js +1 -0
- package/es/src/business/ag-grid-modal/selected-items/style/index.d.ts +0 -0
- package/es/src/business/ag-grid-modal/selected-items/style/index.js +1 -0
- package/es/src/business/ag-grid-modal/style/css.d.ts +0 -0
- package/es/src/business/ag-grid-modal/style/css.js +1 -0
- package/es/src/business/ag-grid-modal/style/index.d.ts +0 -0
- package/es/src/business/ag-grid-modal/style/index.js +1 -0
- package/es/src/business/ag-grid-modal/utils.d.ts +54 -0
- package/es/src/business/ag-grid-modal/utils.mjs +72 -0
- package/es/src/business/ag-grid-modal/wrapper/index.vue.d.ts +23 -0
- package/es/src/business/ag-grid-modal/wrapper/index.vue.mjs +4 -0
- package/es/src/business/ag-grid-modal/wrapper/index.vue2.mjs +25 -0
- package/es/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +1 -0
- package/es/src/business/ap-table-modal/hooks/use-table-modal.d.ts +1 -0
- package/es/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +1 -0
- package/es/src/business/ap-table-modal/index.d.ts +3 -0
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +1 -0
- package/es/src/business/ap-table-modal/table-modal.vue2.mjs +23 -23
- package/es/src/business/hooks/usePageListApTable.d.ts +1 -0
- package/es/src/business/index.d.ts +1 -0
- package/es/src/business/index.mjs +55 -54
- package/es/src/index.mjs +95 -89
- package/es/src/path-map.mjs +4 -1
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/lib/index.js +1 -1
- package/lib/src/ag-grid/hooks/use-columns-def.js +1 -1
- package/lib/src/ag-grid/index.vue.js +1 -1
- package/lib/src/ag-grid/interface.d.ts +14 -0
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +4 -0
- package/lib/src/ap-form/modal-form/index.vue.d.ts +9 -1
- package/lib/src/ap-modal/utils/createModal.js +1 -1
- package/lib/src/ap-table/components/setting/modal/index.vue2.js +1 -1
- package/lib/src/ap-table/interface.d.ts +6 -0
- package/lib/src/business/ag-grid-modal/constants.d.ts +4 -0
- package/lib/src/business/ag-grid-modal/constants.js +1 -0
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-instance.d.ts +33 -0
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-instance.js +1 -0
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-modal.d.ts +3 -0
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-modal.js +1 -0
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.d.ts +2 -0
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.js +1 -0
- package/lib/src/business/ag-grid-modal/hooks/use-modal-title.d.ts +24 -0
- package/lib/src/business/ag-grid-modal/hooks/use-modal-title.js +1 -0
- package/lib/src/business/ag-grid-modal/index.d.ts +3 -0
- package/lib/src/business/ag-grid-modal/index.js +1 -0
- package/lib/src/business/ag-grid-modal/interface.d.ts +141 -0
- package/lib/src/business/ag-grid-modal/modal-layout/index.vue.d.ts +44 -0
- package/lib/src/business/ag-grid-modal/modal-layout/index.vue.js +1 -0
- package/lib/src/business/ag-grid-modal/modal-layout/index.vue2.js +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/default.vue.d.ts +25 -0
- package/lib/src/business/ag-grid-modal/selected-items/default.vue.js +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/default.vue2.js +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/index.d.ts +36 -0
- package/lib/src/business/ag-grid-modal/selected-items/index.js +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/css.cjs +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/css.d.ts +0 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/index.cjs +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/index.d.ts +0 -0
- package/lib/src/business/ag-grid-modal/style/css.cjs +1 -0
- package/lib/src/business/ag-grid-modal/style/css.d.ts +0 -0
- package/lib/src/business/ag-grid-modal/style/index.cjs +1 -0
- package/lib/src/business/ag-grid-modal/style/index.d.ts +0 -0
- package/lib/src/business/ag-grid-modal/utils.d.ts +54 -0
- package/lib/src/business/ag-grid-modal/utils.js +1 -0
- package/lib/src/business/ag-grid-modal/wrapper/index.vue.d.ts +23 -0
- package/lib/src/business/ag-grid-modal/wrapper/index.vue.js +1 -0
- package/lib/src/business/ag-grid-modal/wrapper/index.vue2.js +1 -0
- package/lib/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +1 -0
- package/lib/src/business/ap-table-modal/hooks/use-table-modal.d.ts +1 -0
- package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +1 -0
- package/lib/src/business/ap-table-modal/index.d.ts +3 -0
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +1 -0
- package/lib/src/business/ap-table-modal/table-modal.vue2.js +1 -1
- package/lib/src/business/hooks/usePageListApTable.d.ts +1 -0
- package/lib/src/business/index.d.ts +1 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/package.json +3 -3
- package/theme/ag-grid/index.css +3 -0
- package/theme/ag-grid-modal/index.css +789 -0
- package/theme/ag-grid-modal/index.less +73 -0
- package/theme/ag-grid-modal/selected-items.css +72 -0
- package/theme/ag-grid-modal/selected-items.less +34 -0
- package/theme/ap-form/ap-form-item.css +3 -0
- package/theme/ap-form/ap-form-item.less +3 -0
- package/theme/ap-form/index.css +3 -0
- package/theme/ap-form/search-form.css +3 -0
- package/theme/ap-grid/index.css +3 -0
- package/theme/ap-table/ap-table.css +3 -0
- package/theme/ap-table-modal/index.css +3 -0
- package/theme/ap-upload/index.css +5 -0
- package/theme/ap-upload/multiple-file.css +5 -0
- package/theme/ap-upload/multiple-file.less +6 -0
- package/theme/editable-table/index.css +3 -0
- package/theme/index.css +96 -0
- package/theme/index.less +2 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
@import '../mixins/mixins.less';
|
|
2
|
+
@import '../mixins/config.less';
|
|
3
|
+
// 使用到的组件
|
|
4
|
+
@import '../ag-grid/index.less';
|
|
5
|
+
|
|
6
|
+
.b(ag-grid-modal, {
|
|
7
|
+
&--bordered {
|
|
8
|
+
border: 1px solid var(--ap-color-bg);
|
|
9
|
+
padding: 16px;
|
|
10
|
+
border-radius: 4px;
|
|
11
|
+
--ag-grid-modal-layout-divider-offset: 32px;
|
|
12
|
+
}
|
|
13
|
+
&__empty {
|
|
14
|
+
display: flex;
|
|
15
|
+
height: 100%;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
align-items: center;
|
|
18
|
+
}
|
|
19
|
+
&--table-layout {
|
|
20
|
+
box-sizing: border-box;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex: 1;
|
|
23
|
+
justify-content: space-between;
|
|
24
|
+
height: 100%;
|
|
25
|
+
&.complex-layout {
|
|
26
|
+
height: 100%;
|
|
27
|
+
position: relative;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
&-left {
|
|
32
|
+
flex: 1;
|
|
33
|
+
min-width: 0px;
|
|
34
|
+
padding-right: 20px;
|
|
35
|
+
box-sizing: border-box;
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
&-content {
|
|
39
|
+
flex: 1;
|
|
40
|
+
.ant-table-body {
|
|
41
|
+
height: 100%;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&-right {
|
|
47
|
+
max-height: 100%;
|
|
48
|
+
width: 410px;
|
|
49
|
+
padding-left: 20px;
|
|
50
|
+
position: relative;
|
|
51
|
+
display: flex;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
&-content {
|
|
54
|
+
flex-grow: 1;
|
|
55
|
+
height: 0;
|
|
56
|
+
overflow-y: hidden;
|
|
57
|
+
|
|
58
|
+
&:hover {
|
|
59
|
+
overflow-y: auto;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
&::before {
|
|
63
|
+
content: '';
|
|
64
|
+
height: calc(100% + var(--ag-grid-modal-layout-divider-offset,16px));
|
|
65
|
+
width: 1px;
|
|
66
|
+
background-color: var(--ap-color-bg);
|
|
67
|
+
position: absolute;
|
|
68
|
+
left: 0px;
|
|
69
|
+
top: -16px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
});
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: #182948;
|
|
6
|
+
font-size: 12px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 18px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.reset-scrollbar ::-webkit-scrollbar {
|
|
12
|
+
width: 10px;
|
|
13
|
+
height: 10px;
|
|
14
|
+
}
|
|
15
|
+
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
16
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
17
|
+
background-clip: content-box;
|
|
18
|
+
border: 1px solid transparent;
|
|
19
|
+
border-radius: 4px;
|
|
20
|
+
}
|
|
21
|
+
.reset-scrollbar ::-webkit-scrollbar-track,
|
|
22
|
+
.reset-scrollbar ::-webkit-scrollbar-corner {
|
|
23
|
+
background-color: var(--ap-table-header-bg, #f2f6f9);
|
|
24
|
+
}
|
|
25
|
+
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
26
|
+
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
27
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
28
|
+
}
|
|
29
|
+
.clear-fix::before {
|
|
30
|
+
display: table;
|
|
31
|
+
content: '';
|
|
32
|
+
}
|
|
33
|
+
.clear-fix::after {
|
|
34
|
+
display: table;
|
|
35
|
+
clear: both;
|
|
36
|
+
content: '';
|
|
37
|
+
}
|
|
38
|
+
.common-style {
|
|
39
|
+
box-sizing: border-box;
|
|
40
|
+
font-size: 12px;
|
|
41
|
+
font-family: inherit;
|
|
42
|
+
}
|
|
43
|
+
.common-style::before,
|
|
44
|
+
.common-style::after {
|
|
45
|
+
box-sizing: border-box;
|
|
46
|
+
}
|
|
47
|
+
.aplus-ap-selected-items__default {
|
|
48
|
+
display: flex;
|
|
49
|
+
justify-content: space-between;
|
|
50
|
+
align-items: center;
|
|
51
|
+
padding: 8px;
|
|
52
|
+
gap: 16px;
|
|
53
|
+
border-radius: 4px;
|
|
54
|
+
}
|
|
55
|
+
.aplus-ap-selected-items__default:hover .aplus-ap-selected-items__del-icon {
|
|
56
|
+
opacity: 1;
|
|
57
|
+
}
|
|
58
|
+
.aplus-ap-selected-items__default:hover {
|
|
59
|
+
background-color: var(--ap-color-bg-2);
|
|
60
|
+
}
|
|
61
|
+
.aplus-ap-selected-items__default-content {
|
|
62
|
+
width: 0px;
|
|
63
|
+
flex-grow: 1;
|
|
64
|
+
}
|
|
65
|
+
.aplus-ap-selected-items__del-icon {
|
|
66
|
+
font-size: 14px;
|
|
67
|
+
cursor: pointer;
|
|
68
|
+
opacity: 0;
|
|
69
|
+
}
|
|
70
|
+
.aplus-ap-selected-items__del-icon:hover {
|
|
71
|
+
color: var(--ap-color-error);
|
|
72
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
@import '../mixins/mixins.less';
|
|
2
|
+
@import '../mixins/config.less';
|
|
3
|
+
|
|
4
|
+
@ap-selected-items-del-icon: ~'@{ns}-ap-selected-items__del-icon';
|
|
5
|
+
|
|
6
|
+
.b(ap-selected-items, {
|
|
7
|
+
&__default {
|
|
8
|
+
display: flex;
|
|
9
|
+
justify-content: space-between;
|
|
10
|
+
align-items: center;
|
|
11
|
+
padding: 8px;
|
|
12
|
+
gap: 16px;
|
|
13
|
+
border-radius: 4px;
|
|
14
|
+
&:hover .@{ap-selected-items-del-icon}{
|
|
15
|
+
opacity: 1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&:hover {
|
|
19
|
+
background-color: var(--ap-color-bg-2);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
&__default-content {
|
|
23
|
+
width: 0px;
|
|
24
|
+
flex-grow: 1;
|
|
25
|
+
}
|
|
26
|
+
&__del-icon {
|
|
27
|
+
font-size: 14px;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
opacity: 0;
|
|
30
|
+
&:hover {
|
|
31
|
+
color: var(--ap-color-error);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
});
|
|
@@ -78,6 +78,9 @@
|
|
|
78
78
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
79
79
|
height: 30px !important;
|
|
80
80
|
}
|
|
81
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
82
|
+
padding-left: 0;
|
|
83
|
+
}
|
|
81
84
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
82
85
|
padding-right: 0;
|
|
83
86
|
}
|
package/theme/ap-form/index.css
CHANGED
|
@@ -87,6 +87,9 @@
|
|
|
87
87
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
88
88
|
height: 30px !important;
|
|
89
89
|
}
|
|
90
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
91
|
+
padding-left: 0;
|
|
92
|
+
}
|
|
90
93
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
91
94
|
padding-right: 0;
|
|
92
95
|
}
|
|
@@ -78,6 +78,9 @@
|
|
|
78
78
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
79
79
|
height: 30px !important;
|
|
80
80
|
}
|
|
81
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
82
|
+
padding-left: 0;
|
|
83
|
+
}
|
|
81
84
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
82
85
|
padding-right: 0;
|
|
83
86
|
}
|
package/theme/ap-grid/index.css
CHANGED
|
@@ -87,6 +87,9 @@
|
|
|
87
87
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
88
88
|
height: 30px !important;
|
|
89
89
|
}
|
|
90
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
91
|
+
padding-left: 0;
|
|
92
|
+
}
|
|
90
93
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
91
94
|
padding-right: 0;
|
|
92
95
|
}
|
|
@@ -280,6 +280,9 @@
|
|
|
280
280
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
281
281
|
height: 30px !important;
|
|
282
282
|
}
|
|
283
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
284
|
+
padding-left: 0;
|
|
285
|
+
}
|
|
283
286
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
284
287
|
padding-right: 0;
|
|
285
288
|
}
|
|
@@ -280,6 +280,9 @@
|
|
|
280
280
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
281
281
|
height: 30px !important;
|
|
282
282
|
}
|
|
283
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
284
|
+
padding-left: 0;
|
|
285
|
+
}
|
|
283
286
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
284
287
|
padding-right: 0;
|
|
285
288
|
}
|
|
@@ -72,6 +72,11 @@
|
|
|
72
72
|
.aplus-ap-upload-multiple-file .ant-upload-wrapper .ant-upload-list .ant-upload-list-item:hover .ant-upload-list-item-actions .ant-upload-list-item-action:focus {
|
|
73
73
|
opacity: 1;
|
|
74
74
|
}
|
|
75
|
+
.aplus-ap-upload-multiple-file .ant-upload-list-item-actions {
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
flex-shrink: 0;
|
|
79
|
+
}
|
|
75
80
|
.aplus-ap-upload-multiple-file .ant-upload-wrapper .ant-upload-list .ant-upload-list-item .ant-upload-list-item-actions .ant-upload-list-item-action:focus {
|
|
76
81
|
opacity: 0;
|
|
77
82
|
}
|
|
@@ -72,6 +72,11 @@
|
|
|
72
72
|
.aplus-ap-upload-multiple-file .ant-upload-wrapper .ant-upload-list .ant-upload-list-item:hover .ant-upload-list-item-actions .ant-upload-list-item-action:focus {
|
|
73
73
|
opacity: 1;
|
|
74
74
|
}
|
|
75
|
+
.aplus-ap-upload-multiple-file .ant-upload-list-item-actions {
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
flex-shrink: 0;
|
|
79
|
+
}
|
|
75
80
|
.aplus-ap-upload-multiple-file .ant-upload-wrapper .ant-upload-list .ant-upload-list-item .ant-upload-list-item-actions .ant-upload-list-item-action:focus {
|
|
76
81
|
opacity: 0;
|
|
77
82
|
}
|
|
@@ -33,6 +33,12 @@
|
|
|
33
33
|
opacity: 1;
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
|
+
|
|
37
|
+
.ant-upload-list-item-actions {
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
flex-shrink: 0;
|
|
41
|
+
}
|
|
36
42
|
|
|
37
43
|
.ant-upload-wrapper .ant-upload-list .ant-upload-list-item .ant-upload-list-item-actions .ant-upload-list-item-action:focus {
|
|
38
44
|
opacity: 0;
|
|
@@ -87,6 +87,9 @@
|
|
|
87
87
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
88
88
|
height: 30px !important;
|
|
89
89
|
}
|
|
90
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
91
|
+
padding-left: 0;
|
|
92
|
+
}
|
|
90
93
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
91
94
|
padding-right: 0;
|
|
92
95
|
}
|
package/theme/index.css
CHANGED
|
@@ -1131,6 +1131,9 @@
|
|
|
1131
1131
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
1132
1132
|
height: 30px !important;
|
|
1133
1133
|
}
|
|
1134
|
+
.aplus-ap-form-item--bordered input.ant-input-number-input {
|
|
1135
|
+
padding-left: 0;
|
|
1136
|
+
}
|
|
1134
1137
|
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
1135
1138
|
padding-right: 0;
|
|
1136
1139
|
}
|
|
@@ -2554,6 +2557,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2554
2557
|
.aplus-ap-upload-multiple-file .ant-upload-wrapper .ant-upload-list .ant-upload-list-item:hover .ant-upload-list-item-actions .ant-upload-list-item-action:focus {
|
|
2555
2558
|
opacity: 1;
|
|
2556
2559
|
}
|
|
2560
|
+
.aplus-ap-upload-multiple-file .ant-upload-list-item-actions {
|
|
2561
|
+
display: flex;
|
|
2562
|
+
align-items: center;
|
|
2563
|
+
flex-shrink: 0;
|
|
2564
|
+
}
|
|
2557
2565
|
.aplus-ap-upload-multiple-file .ant-upload-wrapper .ant-upload-list .ant-upload-list-item .ant-upload-list-item-actions .ant-upload-list-item-action:focus {
|
|
2558
2566
|
opacity: 0;
|
|
2559
2567
|
}
|
|
@@ -5022,3 +5030,91 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
5022
5030
|
padding-block-start: 16px;
|
|
5023
5031
|
border-block-start: var(--ap-pro-card-border-line-width) var(--ap-pro-card-border-line-type) var(--ap-pro-card-border-color-split);
|
|
5024
5032
|
}
|
|
5033
|
+
.aplus-ag-grid-modal--bordered {
|
|
5034
|
+
border: 1px solid var(--ap-color-bg);
|
|
5035
|
+
padding: 16px;
|
|
5036
|
+
border-radius: 4px;
|
|
5037
|
+
--ag-grid-modal-layout-divider-offset: 32px;
|
|
5038
|
+
}
|
|
5039
|
+
.aplus-ag-grid-modal__empty {
|
|
5040
|
+
display: flex;
|
|
5041
|
+
height: 100%;
|
|
5042
|
+
justify-content: center;
|
|
5043
|
+
align-items: center;
|
|
5044
|
+
}
|
|
5045
|
+
.aplus-ag-grid-modal--table-layout {
|
|
5046
|
+
box-sizing: border-box;
|
|
5047
|
+
display: flex;
|
|
5048
|
+
flex: 1;
|
|
5049
|
+
justify-content: space-between;
|
|
5050
|
+
height: 100%;
|
|
5051
|
+
}
|
|
5052
|
+
.aplus-ag-grid-modal--table-layout.complex-layout {
|
|
5053
|
+
height: 100%;
|
|
5054
|
+
position: relative;
|
|
5055
|
+
}
|
|
5056
|
+
.aplus-ag-grid-modal--table-layout-left {
|
|
5057
|
+
flex: 1;
|
|
5058
|
+
min-width: 0px;
|
|
5059
|
+
padding-right: 20px;
|
|
5060
|
+
box-sizing: border-box;
|
|
5061
|
+
display: flex;
|
|
5062
|
+
flex-direction: column;
|
|
5063
|
+
}
|
|
5064
|
+
.aplus-ag-grid-modal--table-layout-left-content {
|
|
5065
|
+
flex: 1;
|
|
5066
|
+
}
|
|
5067
|
+
.aplus-ag-grid-modal--table-layout-left-content .ant-table-body {
|
|
5068
|
+
height: 100%;
|
|
5069
|
+
}
|
|
5070
|
+
.aplus-ag-grid-modal--table-layout-right {
|
|
5071
|
+
max-height: 100%;
|
|
5072
|
+
width: 410px;
|
|
5073
|
+
padding-left: 20px;
|
|
5074
|
+
position: relative;
|
|
5075
|
+
display: flex;
|
|
5076
|
+
flex-direction: column;
|
|
5077
|
+
}
|
|
5078
|
+
.aplus-ag-grid-modal--table-layout-right-content {
|
|
5079
|
+
flex-grow: 1;
|
|
5080
|
+
height: 0;
|
|
5081
|
+
overflow-y: hidden;
|
|
5082
|
+
}
|
|
5083
|
+
.aplus-ag-grid-modal--table-layout-right-content:hover {
|
|
5084
|
+
overflow-y: auto;
|
|
5085
|
+
}
|
|
5086
|
+
.aplus-ag-grid-modal--table-layout-right::before {
|
|
5087
|
+
content: '';
|
|
5088
|
+
height: calc(100% + var(--ag-grid-modal-layout-divider-offset, 16px));
|
|
5089
|
+
width: 1px;
|
|
5090
|
+
background-color: var(--ap-color-bg);
|
|
5091
|
+
position: absolute;
|
|
5092
|
+
left: 0px;
|
|
5093
|
+
top: -16px;
|
|
5094
|
+
}
|
|
5095
|
+
.aplus-ap-selected-items__default {
|
|
5096
|
+
display: flex;
|
|
5097
|
+
justify-content: space-between;
|
|
5098
|
+
align-items: center;
|
|
5099
|
+
padding: 8px;
|
|
5100
|
+
gap: 16px;
|
|
5101
|
+
border-radius: 4px;
|
|
5102
|
+
}
|
|
5103
|
+
.aplus-ap-selected-items__default:hover .aplus-ap-selected-items__del-icon {
|
|
5104
|
+
opacity: 1;
|
|
5105
|
+
}
|
|
5106
|
+
.aplus-ap-selected-items__default:hover {
|
|
5107
|
+
background-color: var(--ap-color-bg-2);
|
|
5108
|
+
}
|
|
5109
|
+
.aplus-ap-selected-items__default-content {
|
|
5110
|
+
width: 0px;
|
|
5111
|
+
flex-grow: 1;
|
|
5112
|
+
}
|
|
5113
|
+
.aplus-ap-selected-items__del-icon {
|
|
5114
|
+
font-size: 14px;
|
|
5115
|
+
cursor: pointer;
|
|
5116
|
+
opacity: 0;
|
|
5117
|
+
}
|
|
5118
|
+
.aplus-ap-selected-items__del-icon:hover {
|
|
5119
|
+
color: var(--ap-color-error);
|
|
5120
|
+
}
|