@aplus-frontend/ui 6.26.3 → 6.26.5
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/hooks/use-virtual-config.d.ts +5 -0
- package/es/src/ag-grid/hooks/use-virtual-config.mjs +25 -0
- package/es/src/ag-grid/index.vue.mjs +225 -206
- package/es/src/ag-grid/interface.d.ts +22 -1
- package/es/src/ag-grid/theme.mjs +4 -3
- package/es/src/ap-field/select/index.vue.d.ts +51 -21
- package/es/src/ap-field/select/index.vue.mjs +51 -49
- package/es/src/ap-field/select/read.vue2.mjs +4 -1
- package/es/src/ap-field/tree-select/index.vue.d.ts +29 -21
- package/es/src/ap-field/tree-select/index.vue.mjs +11 -9
- package/es/src/ap-field/tree-select/read.vue2.mjs +7 -5
- package/es/src/ap-form/ap-form.vue.d.ts +28 -2
- package/es/src/ap-form/ap-form.vue2.mjs +8 -7
- package/es/src/ap-form/drawer-form/index.vue.d.ts +22 -0
- package/es/src/ap-form/drawer-form/index.vue.mjs +1 -0
- package/es/src/ap-form/items/select/index.vue.d.ts +64 -28
- package/es/src/ap-form/items/tree-select/index.vue.d.ts +40 -28
- package/es/src/ap-form/modal-form/index.vue.d.ts +22 -0
- package/es/src/ap-form/modal-form/index.vue.mjs +31 -30
- package/es/src/ap-form/search-form/index.vue.d.ts +24 -2
- package/es/src/ap-form/search-form/index.vue.mjs +72 -68
- package/es/src/ap-modal/interface.d.ts +10 -3
- package/es/src/ap-modal/utils/createModalStream.mjs +67 -58
- package/es/src/ap-table/constants.d.ts +52 -28
- package/es/src/business/ap-value-select-card/index.vue2.mjs +81 -90
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +11 -0
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +11 -0
- package/es/src/config-provider/config-provider-props.d.ts +14 -1
- package/es/src/config-provider/config-provider.d.ts +31 -1
- package/es/src/config-provider/hooks/use-global-config.d.ts +14 -1
- package/es/src/config-provider/index.d.ts +52 -1
- package/es/src/utils/config-provider-preset.d.ts +11 -1
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +11 -0
- package/lib/src/ag-grid/hooks/use-virtual-config.d.ts +5 -0
- package/lib/src/ag-grid/hooks/use-virtual-config.js +1 -0
- package/lib/src/ag-grid/index.vue.js +1 -1
- package/lib/src/ag-grid/interface.d.ts +22 -1
- package/lib/src/ag-grid/theme.js +1 -1
- package/lib/src/ap-field/select/index.vue.d.ts +51 -21
- package/lib/src/ap-field/select/index.vue.js +1 -1
- package/lib/src/ap-field/select/read.vue2.js +1 -1
- package/lib/src/ap-field/tree-select/index.vue.d.ts +29 -21
- package/lib/src/ap-field/tree-select/index.vue.js +1 -1
- package/lib/src/ap-field/tree-select/read.vue2.js +1 -1
- package/lib/src/ap-form/ap-form.vue.d.ts +28 -2
- package/lib/src/ap-form/ap-form.vue2.js +1 -1
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +22 -0
- package/lib/src/ap-form/drawer-form/index.vue.js +1 -1
- package/lib/src/ap-form/items/select/index.vue.d.ts +64 -28
- package/lib/src/ap-form/items/tree-select/index.vue.d.ts +40 -28
- package/lib/src/ap-form/modal-form/index.vue.d.ts +22 -0
- package/lib/src/ap-form/modal-form/index.vue.js +1 -1
- package/lib/src/ap-form/search-form/index.vue.d.ts +24 -2
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-modal/interface.d.ts +10 -3
- package/lib/src/ap-modal/utils/createModalStream.js +1 -1
- package/lib/src/ap-table/constants.d.ts +52 -28
- package/lib/src/business/ap-value-select-card/index.vue2.js +1 -1
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +11 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +11 -0
- package/lib/src/config-provider/config-provider-props.d.ts +14 -1
- package/lib/src/config-provider/config-provider.d.ts +31 -1
- package/lib/src/config-provider/hooks/use-global-config.d.ts +14 -1
- package/lib/src/config-provider/index.d.ts +52 -1
- package/lib/src/utils/config-provider-preset.d.ts +11 -1
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +11 -0
- package/package.json +3 -3
- package/theme/ag-grid/index.css +5 -0
- package/theme/ag-grid/index.less +12 -0
- package/theme/ap-pro-card/index.css +5 -5
- package/theme/ap-pro-card/index.less +5 -5
- package/theme/ap-value-select-card/index.css +1 -1
- package/theme/ap-value-select-card/index.less +2 -1
- package/theme/index.css +11 -6
|
@@ -228,12 +228,11 @@
|
|
|
228
228
|
.b(pro-card-operation, {
|
|
229
229
|
display: flex;
|
|
230
230
|
flex-direction: column;
|
|
231
|
-
justify-content:
|
|
232
|
-
margin-block: 24px;
|
|
231
|
+
justify-content: center;
|
|
233
232
|
margin-inline: 0;
|
|
234
233
|
font-weight: 500;
|
|
235
234
|
font-size: 20px;
|
|
236
|
-
line-height:
|
|
235
|
+
line-height: 26px;
|
|
237
236
|
});
|
|
238
237
|
|
|
239
238
|
.b(pro-card-statistic, {
|
|
@@ -274,14 +273,14 @@
|
|
|
274
273
|
&-content {
|
|
275
274
|
width: 100%;
|
|
276
275
|
.ant-statistic-content {
|
|
277
|
-
font-size:
|
|
276
|
+
font-size: 20px;
|
|
278
277
|
line-height: 24px;
|
|
279
278
|
font-weight: bold;
|
|
280
|
-
font-family: DDinBold,OPPOSans,sans-serif;
|
|
281
279
|
}
|
|
282
280
|
}
|
|
283
281
|
&-description {
|
|
284
282
|
width: 100%;
|
|
283
|
+
margin-top: 4px;
|
|
285
284
|
}
|
|
286
285
|
.ant-statistic-title {
|
|
287
286
|
color: var(--ap-text-color-1);
|
|
@@ -295,6 +294,7 @@
|
|
|
295
294
|
}
|
|
296
295
|
.ant-statistic-content {
|
|
297
296
|
font-size: 16px;
|
|
297
|
+
line-height: 22px;
|
|
298
298
|
}
|
|
299
299
|
}
|
|
300
300
|
&-trend-up {
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
.aplus-ap-value-select-card-list {
|
|
55
55
|
display: grid;
|
|
56
56
|
grid-template-columns: repeat(var(--ap-value-select-card-column-count, 5), minmax(var(--ap-value-select-card-max-width, 150px), 1fr));
|
|
57
|
+
grid-auto-rows: 1fr;
|
|
57
58
|
gap: 12px;
|
|
58
59
|
}
|
|
59
60
|
.aplus-ap-value-select-card-list-item {
|
|
@@ -64,7 +65,6 @@
|
|
|
64
65
|
border: 1px solid var(--ap-color-bg);
|
|
65
66
|
border-radius: 4px;
|
|
66
67
|
cursor: pointer;
|
|
67
|
-
transition: all 0.2s ease-in-out;
|
|
68
68
|
}
|
|
69
69
|
.aplus-ap-value-select-card-list-item-close {
|
|
70
70
|
position: absolute;
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
&-list {
|
|
14
14
|
display: grid;
|
|
15
15
|
grid-template-columns: repeat(var(--ap-value-select-card-column-count, 5), minmax(var(--ap-value-select-card-max-width, 150px), 1fr));
|
|
16
|
+
grid-auto-rows: 1fr;
|
|
16
17
|
gap: 12px;
|
|
17
18
|
|
|
18
19
|
&-item {
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
border: 1px solid var(--ap-color-bg);
|
|
24
25
|
border-radius: @border-radius;
|
|
25
26
|
cursor: pointer;
|
|
26
|
-
transition: all 0.2s ease-in-out;
|
|
27
|
+
// transition: all 0.2s ease-in-out;
|
|
27
28
|
|
|
28
29
|
&-close {
|
|
29
30
|
position: absolute;
|
package/theme/index.css
CHANGED
|
@@ -4378,6 +4378,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4378
4378
|
.aplus-ag-grid .ag-tooltip {
|
|
4379
4379
|
max-width: 300px;
|
|
4380
4380
|
}
|
|
4381
|
+
.aplus-ag-grid .ag-unselectable {
|
|
4382
|
+
-moz-user-select: text;
|
|
4383
|
+
user-select: text;
|
|
4384
|
+
-webkit-user-select: text;
|
|
4385
|
+
}
|
|
4381
4386
|
.aplus-ap-value-select-card {
|
|
4382
4387
|
position: relative;
|
|
4383
4388
|
margin-top: 8px;
|
|
@@ -4388,6 +4393,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4388
4393
|
.aplus-ap-value-select-card-list {
|
|
4389
4394
|
display: grid;
|
|
4390
4395
|
grid-template-columns: repeat(var(--ap-value-select-card-column-count, 5), minmax(var(--ap-value-select-card-max-width, 150px), 1fr));
|
|
4396
|
+
grid-auto-rows: 1fr;
|
|
4391
4397
|
gap: 12px;
|
|
4392
4398
|
}
|
|
4393
4399
|
.aplus-ap-value-select-card-list-item {
|
|
@@ -4398,7 +4404,6 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4398
4404
|
border: 1px solid var(--ap-color-bg);
|
|
4399
4405
|
border-radius: 4px;
|
|
4400
4406
|
cursor: pointer;
|
|
4401
|
-
transition: all 0.2s ease-in-out;
|
|
4402
4407
|
}
|
|
4403
4408
|
.aplus-ap-value-select-card-list-item-close {
|
|
4404
4409
|
position: absolute;
|
|
@@ -4806,12 +4811,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4806
4811
|
.aplus-pro-card-operation {
|
|
4807
4812
|
display: flex;
|
|
4808
4813
|
flex-direction: column;
|
|
4809
|
-
justify-content:
|
|
4810
|
-
margin-block: 24px;
|
|
4814
|
+
justify-content: center;
|
|
4811
4815
|
margin-inline: 0;
|
|
4812
4816
|
font-weight: 500;
|
|
4813
4817
|
font-size: 20px;
|
|
4814
|
-
line-height:
|
|
4818
|
+
line-height: 26px;
|
|
4815
4819
|
}
|
|
4816
4820
|
.aplus-pro-card-statistic {
|
|
4817
4821
|
display: flex;
|
|
@@ -4853,13 +4857,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4853
4857
|
width: 100%;
|
|
4854
4858
|
}
|
|
4855
4859
|
.aplus-pro-card-statistic-content .ant-statistic-content {
|
|
4856
|
-
font-size:
|
|
4860
|
+
font-size: 20px;
|
|
4857
4861
|
line-height: 24px;
|
|
4858
4862
|
font-weight: bold;
|
|
4859
|
-
font-family: DDinBold, OPPOSans, sans-serif;
|
|
4860
4863
|
}
|
|
4861
4864
|
.aplus-pro-card-statistic-description {
|
|
4862
4865
|
width: 100%;
|
|
4866
|
+
margin-top: 4px;
|
|
4863
4867
|
}
|
|
4864
4868
|
.aplus-pro-card-statistic .ant-statistic-title {
|
|
4865
4869
|
color: var(--ap-text-color-1);
|
|
@@ -4872,6 +4876,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4872
4876
|
}
|
|
4873
4877
|
.aplus-pro-card-statistic-size-small .ant-statistic-content {
|
|
4874
4878
|
font-size: 16px;
|
|
4879
|
+
line-height: 22px;
|
|
4875
4880
|
}
|
|
4876
4881
|
.aplus-pro-card-statistic-trend-up .ant-statistic-content {
|
|
4877
4882
|
color: var(--ap-color-error);
|