@aplus-frontend/ui 0.4.11 → 0.4.13
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-field/date-range/index.vue.mjs +65 -57
- package/es/src/ap-field/hooks/use-default-presets.d.ts +7 -4
- package/es/src/ap-field/hooks/use-default-presets.mjs +24 -13
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +2 -0
- package/es/src/business/ap-ladder/ApLadder.vue2.mjs +109 -127
- package/es/src/business/ap-ladder/index.d.ts +1 -0
- package/es/src/business/ap-ladder/useWatchEllipsis.d.ts +3 -0
- package/es/src/business/ap-ladder/useWatchEllipsis.mjs +35 -0
- package/es/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +5 -2
- package/es/src/business/ap-table-modal/hooks/use-table-select-modal.mjs +31 -21
- package/es/src/business/ap-table-modal/interface.d.ts +3 -1
- package/es/src/business/ap-table-modal/table-layout/index.vue.d.ts +4 -2
- package/es/src/business/ap-table-modal/table-layout/index.vue2.mjs +53 -46
- package/es/src/business/ap-title/interface.d.ts +1 -1
- package/es/src/config-provider/hooks/use-locale.mjs +7 -7
- package/es/src/full-screen/index.vue.d.ts +2 -2
- package/es/src/full-screen/index.vue.mjs +19 -18
- package/es/src/hooks/useFullScreen.mjs +12 -11
- package/es/src/utils/data-range-persets.d.ts +23 -40
- package/es/src/utils/data-range-persets.mjs +95 -102
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/hooks/use-default-presets.d.ts +7 -4
- package/lib/src/ap-field/hooks/use-default-presets.js +1 -1
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +2 -0
- package/lib/src/business/ap-ladder/ApLadder.vue2.js +1 -1
- package/lib/src/business/ap-ladder/index.d.ts +1 -0
- package/lib/src/business/ap-ladder/useWatchEllipsis.d.ts +3 -0
- package/lib/src/business/ap-ladder/useWatchEllipsis.js +1 -0
- package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +5 -2
- package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.js +1 -1
- package/lib/src/business/ap-table-modal/interface.d.ts +3 -1
- package/lib/src/business/ap-table-modal/table-layout/index.vue.d.ts +4 -2
- package/lib/src/business/ap-table-modal/table-layout/index.vue2.js +1 -1
- package/lib/src/business/ap-title/interface.d.ts +1 -1
- package/lib/src/config-provider/hooks/use-locale.js +1 -1
- package/lib/src/full-screen/index.vue.d.ts +2 -2
- package/lib/src/full-screen/index.vue.js +1 -1
- package/lib/src/hooks/useFullScreen.js +1 -1
- package/lib/src/utils/data-range-persets.d.ts +23 -40
- package/lib/src/utils/data-range-persets.js +1 -1
- package/package.json +3 -3
- package/theme/ap-form/ap-form-item.css +8 -5
- package/theme/ap-form/ap-form-item.less +11 -8
- package/theme/ap-form/index.css +8 -5
- package/theme/ap-form/search-form.css +8 -5
- package/theme/ap-form/search-form.less +0 -1
- package/theme/ap-table/ap-table.css +8 -5
- package/theme/ap-table-modal/index.css +8 -5
- package/theme/editable-table/index.css +8 -5
- package/theme/index.css +8 -5
|
@@ -211,10 +211,6 @@
|
|
|
211
211
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
212
212
|
padding: 0;
|
|
213
213
|
}
|
|
214
|
-
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
215
|
-
padding-inline: 11px;
|
|
216
|
-
flex: 1;
|
|
217
|
-
}
|
|
218
214
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
219
215
|
padding-left: 11px;
|
|
220
216
|
}
|
|
@@ -225,7 +221,7 @@
|
|
|
225
221
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
226
222
|
height: 30px !important;
|
|
227
223
|
}
|
|
228
|
-
.aplus-ap-form-item--bordered:has(.ant-select
|
|
224
|
+
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
229
225
|
padding-right: 0px;
|
|
230
226
|
}
|
|
231
227
|
.aplus-ap-form-item--bordered .ant-form-item-label > label {
|
|
@@ -263,6 +259,13 @@
|
|
|
263
259
|
margin-top: 4px;
|
|
264
260
|
margin-bottom: 12px;
|
|
265
261
|
}
|
|
262
|
+
.aplus-ap-form-item .ant-input-group .ant-picker:only-child {
|
|
263
|
+
width: 100%;
|
|
264
|
+
}
|
|
265
|
+
.aplus-ap-form-item .ant-input-group .ant-select + .ant-picker {
|
|
266
|
+
padding-inline: 11px;
|
|
267
|
+
flex: 1;
|
|
268
|
+
}
|
|
266
269
|
.aplus-ap-form-drawer-form__resize-bar {
|
|
267
270
|
width: 4px;
|
|
268
271
|
cursor: ew-resize;
|
|
@@ -25,10 +25,6 @@
|
|
|
25
25
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
26
26
|
padding: 0;
|
|
27
27
|
}
|
|
28
|
-
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
29
|
-
padding-inline: 11px;
|
|
30
|
-
flex: 1;
|
|
31
|
-
}
|
|
32
28
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
33
29
|
padding-left: 11px;
|
|
34
30
|
}
|
|
@@ -39,7 +35,7 @@
|
|
|
39
35
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
40
36
|
height: 30px !important;
|
|
41
37
|
}
|
|
42
|
-
.aplus-ap-form-item--bordered:has(.ant-select
|
|
38
|
+
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
43
39
|
padding-right: 0px;
|
|
44
40
|
}
|
|
45
41
|
.aplus-ap-form-item--bordered .ant-form-item-label > label {
|
|
@@ -77,6 +73,13 @@
|
|
|
77
73
|
margin-top: 4px;
|
|
78
74
|
margin-bottom: 12px;
|
|
79
75
|
}
|
|
76
|
+
.aplus-ap-form-item .ant-input-group .ant-picker:only-child {
|
|
77
|
+
width: 100%;
|
|
78
|
+
}
|
|
79
|
+
.aplus-ap-form-item .ant-input-group .ant-select + .ant-picker {
|
|
80
|
+
padding-inline: 11px;
|
|
81
|
+
flex: 1;
|
|
82
|
+
}
|
|
80
83
|
.aplus-ap-form-drawer-form__resize-bar {
|
|
81
84
|
width: 4px;
|
|
82
85
|
cursor: ew-resize;
|
package/theme/index.css
CHANGED
|
@@ -375,10 +375,6 @@
|
|
|
375
375
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
376
376
|
padding: 0;
|
|
377
377
|
}
|
|
378
|
-
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
379
|
-
padding-inline: 11px;
|
|
380
|
-
flex: 1;
|
|
381
|
-
}
|
|
382
378
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
383
379
|
padding-left: 11px;
|
|
384
380
|
}
|
|
@@ -389,7 +385,7 @@
|
|
|
389
385
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
390
386
|
height: 30px !important;
|
|
391
387
|
}
|
|
392
|
-
.aplus-ap-form-item--bordered:has(.ant-select
|
|
388
|
+
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
393
389
|
padding-right: 0px;
|
|
394
390
|
}
|
|
395
391
|
.aplus-ap-form-item--bordered .ant-form-item-label > label {
|
|
@@ -427,6 +423,13 @@
|
|
|
427
423
|
margin-top: 4px;
|
|
428
424
|
margin-bottom: 12px;
|
|
429
425
|
}
|
|
426
|
+
.aplus-ap-form-item .ant-input-group .ant-picker:only-child {
|
|
427
|
+
width: 100%;
|
|
428
|
+
}
|
|
429
|
+
.aplus-ap-form-item .ant-input-group .ant-select + .ant-picker {
|
|
430
|
+
padding-inline: 11px;
|
|
431
|
+
flex: 1;
|
|
432
|
+
}
|
|
430
433
|
.aplus-ap-form-drawer-form__resize-bar {
|
|
431
434
|
width: 4px;
|
|
432
435
|
cursor: ew-resize;
|