@aplus-frontend/ui 0.4.12 → 0.4.14
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 +84 -80
- package/es/src/ap-descriptions/help-message/index.vue2.mjs +17 -12
- package/es/src/ap-field/date/helper.mjs +9 -9
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +62 -62
- package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +79 -67
- 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/hooks/index.d.ts +1 -0
- package/es/src/hooks/index.mjs +6 -4
- package/es/src/hooks/useResize.d.ts +8 -0
- package/es/src/hooks/useResize.mjs +23 -0
- package/es/src/index.d.ts +1 -0
- package/es/src/index.mjs +212 -209
- package/es/src/path-map.mjs +2 -1
- package/es/src/resize-observer/index.d.ts +3 -0
- package/es/src/resize-observer/index.mjs +2 -0
- package/es/src/resize-observer/index.vue.d.ts +25 -0
- package/es/src/resize-observer/index.vue.mjs +45 -0
- package/es/src/resize-observer/index.vue2.mjs +4 -0
- package/es/src/resize-observer/interface.d.ts +27 -0
- package/es/src/resize-observer/interface.mjs +1 -0
- package/es/src/resize-observer/style/css.d.ts +1 -0
- package/es/src/resize-observer/style/css.js +1 -0
- package/es/src/resize-observer/style/index.d.ts +1 -0
- package/es/src/resize-observer/style/index.js +1 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-descriptions/help-message/index.vue2.js +1 -1
- package/lib/src/ap-field/date/helper.js +1 -1
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/business/ap-export-group/ApExportGroup.vue2.js +1 -1
- 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/hooks/index.d.ts +1 -0
- package/lib/src/hooks/index.js +1 -1
- package/lib/src/hooks/useResize.d.ts +8 -0
- package/lib/src/hooks/useResize.js +1 -0
- package/lib/src/index.d.ts +1 -0
- package/lib/src/index.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/resize-observer/index.d.ts +3 -0
- package/lib/src/resize-observer/index.js +1 -0
- package/lib/src/resize-observer/index.vue.d.ts +25 -0
- package/lib/src/resize-observer/index.vue.js +1 -0
- package/lib/src/resize-observer/index.vue2.js +1 -0
- package/lib/src/resize-observer/interface.d.ts +27 -0
- package/lib/src/resize-observer/interface.js +1 -0
- package/lib/src/resize-observer/style/css.cjs +1 -0
- package/lib/src/resize-observer/style/css.d.ts +1 -0
- package/lib/src/resize-observer/style/index.cjs +1 -0
- package/lib/src/resize-observer/style/index.d.ts +1 -0
- package/package.json +1 -1
- package/theme/ap-descriptions/ap-descriptions.css +3 -0
- package/theme/ap-descriptions/ap-descriptions.less +7 -0
- package/theme/ap-form/ap-form-item.css +7 -4
- package/theme/ap-form/ap-form-item.less +10 -7
- package/theme/ap-form/index.css +7 -7
- package/theme/ap-form/search-form.css +7 -7
- package/theme/ap-form/search-form.less +0 -6
- package/theme/ap-table/ap-table.css +8 -8
- package/theme/ap-table/ap-table.less +1 -1
- package/theme/ap-table-modal/index.css +8 -8
- package/theme/editable-table/index.css +7 -7
- package/theme/index.css +11 -8
|
@@ -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
|
}
|
|
@@ -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;
|
|
@@ -305,9 +308,6 @@
|
|
|
305
308
|
.aplus-ap-form-search-form .ant-form-item-control .ant-picker {
|
|
306
309
|
display: flex;
|
|
307
310
|
}
|
|
308
|
-
.aplus-ap-form-search-form .ant-form-item-control .ant-input-group .ant-picker {
|
|
309
|
-
flex: 1;
|
|
310
|
-
}
|
|
311
311
|
.aplus-ap-form-search-form .ant-form-item-control .ant-input-number {
|
|
312
312
|
width: 100%;
|
|
313
313
|
}
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
flex-direction: column;
|
|
476
476
|
}
|
|
477
477
|
.aplus-ap-table__table-wrapper-card {
|
|
478
|
-
padding: 16px;
|
|
478
|
+
padding: 12px 16px 16px;
|
|
479
479
|
background-color: #fff;
|
|
480
480
|
overflow: hidden;
|
|
481
481
|
}
|
|
@@ -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
|
}
|
|
@@ -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;
|
|
@@ -305,9 +308,6 @@
|
|
|
305
308
|
.aplus-ap-form-search-form .ant-form-item-control .ant-picker {
|
|
306
309
|
display: flex;
|
|
307
310
|
}
|
|
308
|
-
.aplus-ap-form-search-form .ant-form-item-control .ant-input-group .ant-picker {
|
|
309
|
-
flex: 1;
|
|
310
|
-
}
|
|
311
311
|
.aplus-ap-form-search-form .ant-form-item-control .ant-input-number {
|
|
312
312
|
width: 100%;
|
|
313
313
|
}
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
flex-direction: column;
|
|
476
476
|
}
|
|
477
477
|
.aplus-ap-table__table-wrapper-card {
|
|
478
|
-
padding: 16px;
|
|
478
|
+
padding: 12px 16px 16px;
|
|
479
479
|
background-color: #fff;
|
|
480
480
|
overflow: hidden;
|
|
481
481
|
}
|
|
@@ -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
|
}
|
|
@@ -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;
|
|
@@ -119,9 +122,6 @@
|
|
|
119
122
|
.aplus-ap-form-search-form .ant-form-item-control .ant-picker {
|
|
120
123
|
display: flex;
|
|
121
124
|
}
|
|
122
|
-
.aplus-ap-form-search-form .ant-form-item-control .ant-input-group .ant-picker {
|
|
123
|
-
flex: 1;
|
|
124
|
-
}
|
|
125
125
|
.aplus-ap-form-search-form .ant-form-item-control .ant-input-number {
|
|
126
126
|
width: 100%;
|
|
127
127
|
}
|
package/theme/index.css
CHANGED
|
@@ -184,6 +184,9 @@
|
|
|
184
184
|
.aplus-ap-descriptions .ant-descriptions .ant-descriptions-item-label::after {
|
|
185
185
|
margin-inline: 4px 20px;
|
|
186
186
|
}
|
|
187
|
+
.aplus-ap-descriptions--item-label .ant-typography-single-line {
|
|
188
|
+
white-space: normal;
|
|
189
|
+
}
|
|
187
190
|
.aplus-ap-descriptions .ant-descriptions-row .ant-descriptions-item-label .ant-typography {
|
|
188
191
|
color: inherit;
|
|
189
192
|
}
|
|
@@ -375,10 +378,6 @@
|
|
|
375
378
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
376
379
|
padding: 0;
|
|
377
380
|
}
|
|
378
|
-
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
379
|
-
padding-inline: 11px;
|
|
380
|
-
flex: 1;
|
|
381
|
-
}
|
|
382
381
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
383
382
|
padding-left: 11px;
|
|
384
383
|
}
|
|
@@ -427,6 +426,13 @@
|
|
|
427
426
|
margin-top: 4px;
|
|
428
427
|
margin-bottom: 12px;
|
|
429
428
|
}
|
|
429
|
+
.aplus-ap-form-item .ant-input-group .ant-picker:only-child {
|
|
430
|
+
width: 100%;
|
|
431
|
+
}
|
|
432
|
+
.aplus-ap-form-item .ant-input-group .ant-select + .ant-picker {
|
|
433
|
+
padding-inline: 11px;
|
|
434
|
+
flex: 1;
|
|
435
|
+
}
|
|
430
436
|
.aplus-ap-form-drawer-form__resize-bar {
|
|
431
437
|
width: 4px;
|
|
432
438
|
cursor: ew-resize;
|
|
@@ -469,9 +475,6 @@
|
|
|
469
475
|
.aplus-ap-form-search-form .ant-form-item-control .ant-picker {
|
|
470
476
|
display: flex;
|
|
471
477
|
}
|
|
472
|
-
.aplus-ap-form-search-form .ant-form-item-control .ant-input-group .ant-picker {
|
|
473
|
-
flex: 1;
|
|
474
|
-
}
|
|
475
478
|
.aplus-ap-form-search-form .ant-form-item-control .ant-input-number {
|
|
476
479
|
width: 100%;
|
|
477
480
|
}
|
|
@@ -1063,7 +1066,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1063
1066
|
flex-direction: column;
|
|
1064
1067
|
}
|
|
1065
1068
|
.aplus-ap-table__table-wrapper-card {
|
|
1066
|
-
padding: 16px;
|
|
1069
|
+
padding: 12px 16px 16px;
|
|
1067
1070
|
background-color: #fff;
|
|
1068
1071
|
overflow: hidden;
|
|
1069
1072
|
}
|