@aplus-frontend/ui 6.29.1 → 6.29.3
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/ag-grid/components/header-cell/index.vue2.mjs +15 -16
- package/es/src/ag-grid/hooks/use-columns.d.ts +1 -0
- package/es/src/ag-grid/hooks/use-columns.mjs +17 -12
- package/es/src/ag-grid/hooks/use-search-form.mjs +14 -14
- package/es/src/ag-grid/index.vue.mjs +241 -233
- package/es/src/ag-grid/interface.d.ts +4 -0
- package/es/src/ag-grid/utils.d.ts +6 -0
- package/es/src/ag-grid/utils.mjs +16 -11
- package/es/src/ap-field/checkbox/index.vue.mjs +20 -20
- package/es/src/ap-field/radio/index.vue.mjs +24 -24
- package/es/src/ap-form/item-group/helper.mjs +36 -31
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +27 -26
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/lib/src/ag-grid/components/header-cell/index.vue2.js +1 -1
- package/lib/src/ag-grid/hooks/use-columns.d.ts +1 -0
- package/lib/src/ag-grid/hooks/use-columns.js +1 -1
- package/lib/src/ag-grid/hooks/use-search-form.js +1 -1
- package/lib/src/ag-grid/index.vue.js +1 -1
- package/lib/src/ag-grid/interface.d.ts +4 -0
- package/lib/src/ag-grid/utils.d.ts +6 -0
- package/lib/src/ag-grid/utils.js +1 -1
- package/lib/src/ap-field/checkbox/index.vue.js +1 -1
- package/lib/src/ap-field/radio/index.vue.js +1 -1
- package/lib/src/ap-form/item-group/helper.js +1 -1
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.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 +6 -0
- package/theme/antdv-override.css +6 -0
- package/theme/antdv-override.less +17 -0
- package/theme/ap-field/checkbox.css +3 -0
- package/theme/ap-field/checkbox.less +3 -0
- package/theme/ap-field/index.css +6 -0
- package/theme/ap-field/radio.css +3 -0
- package/theme/ap-field/radio.less +3 -0
- package/theme/ap-grid/index.css +6 -0
- package/theme/ap-table/ap-table.css +6 -0
- package/theme/ap-table-modal/index.css +6 -0
- package/theme/batch-input-group/index.css +6 -0
- package/theme/editable-table/index.css +6 -0
- package/theme/index.css +12 -0
|
@@ -307,6 +307,14 @@
|
|
|
307
307
|
.ant-tooltip div[role='tooltip'] {
|
|
308
308
|
padding-block: 6px;
|
|
309
309
|
}
|
|
310
|
+
// Drawer
|
|
311
|
+
.ant-drawer {
|
|
312
|
+
&-right {
|
|
313
|
+
.ant-drawer-content-wrapper {
|
|
314
|
+
box-shadow: -8px 2px 24px 0 rgba(24, 41, 72, 0.2);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
310
318
|
}
|
|
311
319
|
|
|
312
320
|
[data-aplus-ui-mode='admin'] {
|
|
@@ -619,4 +627,13 @@
|
|
|
619
627
|
.ant-input-clear-icon {
|
|
620
628
|
line-height: 18px;
|
|
621
629
|
}
|
|
630
|
+
|
|
631
|
+
// Drawer
|
|
632
|
+
.ant-drawer {
|
|
633
|
+
&-right {
|
|
634
|
+
.ant-drawer-content-wrapper {
|
|
635
|
+
box-shadow: -8px 2px 24px 0 rgba(51, 51, 51, 0.2);
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
622
639
|
}
|
package/theme/ap-field/index.css
CHANGED
|
@@ -51,6 +51,9 @@
|
|
|
51
51
|
display: flex;
|
|
52
52
|
margin-block-end: 12px;
|
|
53
53
|
}
|
|
54
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
55
|
+
color: unset;
|
|
56
|
+
}
|
|
54
57
|
.aplus-field-number-label-left {
|
|
55
58
|
padding-right: 4px;
|
|
56
59
|
}
|
|
@@ -61,6 +64,9 @@
|
|
|
61
64
|
display: flex;
|
|
62
65
|
margin-block-end: 12px;
|
|
63
66
|
}
|
|
67
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
68
|
+
color: unset;
|
|
69
|
+
}
|
|
64
70
|
.aplus-field-text-area {
|
|
65
71
|
white-space: pre-wrap;
|
|
66
72
|
word-wrap: break-word;
|
package/theme/ap-field/radio.css
CHANGED
package/theme/ap-grid/index.css
CHANGED
|
@@ -419,6 +419,9 @@
|
|
|
419
419
|
display: flex;
|
|
420
420
|
margin-block-end: 12px;
|
|
421
421
|
}
|
|
422
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
423
|
+
color: unset;
|
|
424
|
+
}
|
|
422
425
|
.aplus-field-number-label-left {
|
|
423
426
|
padding-right: 4px;
|
|
424
427
|
}
|
|
@@ -429,6 +432,9 @@
|
|
|
429
432
|
display: flex;
|
|
430
433
|
margin-block-end: 12px;
|
|
431
434
|
}
|
|
435
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
436
|
+
color: unset;
|
|
437
|
+
}
|
|
432
438
|
.aplus-field-text-area {
|
|
433
439
|
white-space: pre-wrap;
|
|
434
440
|
word-wrap: break-word;
|
|
@@ -612,6 +612,9 @@
|
|
|
612
612
|
display: flex;
|
|
613
613
|
margin-block-end: 12px;
|
|
614
614
|
}
|
|
615
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
616
|
+
color: unset;
|
|
617
|
+
}
|
|
615
618
|
.aplus-field-number-label-left {
|
|
616
619
|
padding-right: 4px;
|
|
617
620
|
}
|
|
@@ -622,6 +625,9 @@
|
|
|
622
625
|
display: flex;
|
|
623
626
|
margin-block-end: 12px;
|
|
624
627
|
}
|
|
628
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
629
|
+
color: unset;
|
|
630
|
+
}
|
|
625
631
|
.aplus-field-text-area {
|
|
626
632
|
white-space: pre-wrap;
|
|
627
633
|
word-wrap: break-word;
|
|
@@ -612,6 +612,9 @@
|
|
|
612
612
|
display: flex;
|
|
613
613
|
margin-block-end: 12px;
|
|
614
614
|
}
|
|
615
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
616
|
+
color: unset;
|
|
617
|
+
}
|
|
615
618
|
.aplus-field-number-label-left {
|
|
616
619
|
padding-right: 4px;
|
|
617
620
|
}
|
|
@@ -622,6 +625,9 @@
|
|
|
622
625
|
display: flex;
|
|
623
626
|
margin-block-end: 12px;
|
|
624
627
|
}
|
|
628
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
629
|
+
color: unset;
|
|
630
|
+
}
|
|
625
631
|
.aplus-field-text-area {
|
|
626
632
|
white-space: pre-wrap;
|
|
627
633
|
word-wrap: break-word;
|
|
@@ -51,6 +51,9 @@
|
|
|
51
51
|
display: flex;
|
|
52
52
|
margin-block-end: 12px;
|
|
53
53
|
}
|
|
54
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
55
|
+
color: unset;
|
|
56
|
+
}
|
|
54
57
|
.aplus-field-number-label-left {
|
|
55
58
|
padding-right: 4px;
|
|
56
59
|
}
|
|
@@ -61,6 +64,9 @@
|
|
|
61
64
|
display: flex;
|
|
62
65
|
margin-block-end: 12px;
|
|
63
66
|
}
|
|
67
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
68
|
+
color: unset;
|
|
69
|
+
}
|
|
64
70
|
.aplus-field-text-area {
|
|
65
71
|
white-space: pre-wrap;
|
|
66
72
|
word-wrap: break-word;
|
|
@@ -419,6 +419,9 @@
|
|
|
419
419
|
display: flex;
|
|
420
420
|
margin-block-end: 12px;
|
|
421
421
|
}
|
|
422
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
423
|
+
color: unset;
|
|
424
|
+
}
|
|
422
425
|
.aplus-field-number-label-left {
|
|
423
426
|
padding-right: 4px;
|
|
424
427
|
}
|
|
@@ -429,6 +432,9 @@
|
|
|
429
432
|
display: flex;
|
|
430
433
|
margin-block-end: 12px;
|
|
431
434
|
}
|
|
435
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
436
|
+
color: unset;
|
|
437
|
+
}
|
|
432
438
|
.aplus-field-text-area {
|
|
433
439
|
white-space: pre-wrap;
|
|
434
440
|
word-wrap: break-word;
|
package/theme/index.css
CHANGED
|
@@ -369,6 +369,9 @@
|
|
|
369
369
|
[data-aplus-ui-mode='aplus'] .ant-tooltip div[role='tooltip'] {
|
|
370
370
|
padding-block: 6px;
|
|
371
371
|
}
|
|
372
|
+
[data-aplus-ui-mode='aplus'] .ant-drawer-right .ant-drawer-content-wrapper {
|
|
373
|
+
box-shadow: -8px 2px 24px 0 rgba(24, 41, 72, 0.2);
|
|
374
|
+
}
|
|
372
375
|
[data-aplus-ui-mode='admin'] .ant-alert .ant-alert-close-icon {
|
|
373
376
|
line-height: 18px;
|
|
374
377
|
}
|
|
@@ -643,6 +646,9 @@
|
|
|
643
646
|
[data-aplus-ui-mode='admin'] .ant-input-clear-icon {
|
|
644
647
|
line-height: 18px;
|
|
645
648
|
}
|
|
649
|
+
[data-aplus-ui-mode='admin'] .ant-drawer-right .ant-drawer-content-wrapper {
|
|
650
|
+
box-shadow: -8px 2px 24px 0 rgba(51, 51, 51, 0.2);
|
|
651
|
+
}
|
|
646
652
|
.reset-component {
|
|
647
653
|
box-sizing: border-box;
|
|
648
654
|
margin: 0;
|
|
@@ -1059,6 +1065,9 @@
|
|
|
1059
1065
|
display: flex;
|
|
1060
1066
|
margin-block-end: 12px;
|
|
1061
1067
|
}
|
|
1068
|
+
.aplus-field-checkbox .ant-checkbox-disabled + span {
|
|
1069
|
+
color: unset;
|
|
1070
|
+
}
|
|
1062
1071
|
.aplus-field-number-label-left {
|
|
1063
1072
|
padding-right: 4px;
|
|
1064
1073
|
}
|
|
@@ -1069,6 +1078,9 @@
|
|
|
1069
1078
|
display: flex;
|
|
1070
1079
|
margin-block-end: 12px;
|
|
1071
1080
|
}
|
|
1081
|
+
.aplus-field-radio .ant-radio-wrapper-disabled {
|
|
1082
|
+
color: unset;
|
|
1083
|
+
}
|
|
1072
1084
|
.aplus-field-text-area {
|
|
1073
1085
|
white-space: pre-wrap;
|
|
1074
1086
|
word-wrap: break-word;
|