@aplus-frontend/ui 0.2.19 → 0.2.21
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 +193 -189
- package/es/src/ap-descriptions/help-message/index.vue2.mjs +18 -18
- package/es/src/ap-form/index.d.ts +5 -1
- package/es/src/ap-form/index.mjs +17 -9
- package/es/src/ap-form/interface.d.ts +10 -1
- package/es/src/ap-form/item/index.vue.mjs +48 -51
- package/es/src/ap-form/items/number/index.vue.d.ts +20 -20
- package/es/src/ap-form/items/text/index.vue.d.ts +20 -20
- package/es/src/ap-form/items/text/password.vue.d.ts +20 -20
- package/es/src/ap-form/items/text-area/index.vue.d.ts +18 -18
- package/es/src/ap-form/render/control.vue.d.ts +29 -0
- package/es/src/ap-form/render/control.vue.mjs +23 -0
- package/es/src/ap-form/render/control.vue2.mjs +4 -0
- package/es/src/ap-form/render/item.vue.d.ts +63 -0
- package/es/src/ap-form/render/item.vue.mjs +72 -0
- package/es/src/ap-form/render/item.vue2.mjs +4 -0
- package/es/src/ap-form/render/style/css.d.ts +1 -0
- package/es/src/ap-form/render/style/css.js +1 -0
- package/es/src/ap-form/render/style/style.d.ts +1 -0
- package/es/src/ap-list/index.vue.d.ts +10 -2
- package/es/src/ap-list/index.vue.mjs +135 -85
- package/es/src/ap-list/interface.d.ts +22 -3
- package/es/src/ap-table/constants.d.ts +102 -102
- package/es/src/ap-tag/ap-tag.vue.mjs +16 -13
- package/es/src/business/ap-group-search/index.d.ts +36 -36
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +1 -1
- package/es/src/business/ap-ladder/index.d.ts +7 -7
- package/es/src/config-provider/config-provider.d.ts +5 -0
- package/es/src/config-provider/css-var.d.ts +5 -0
- package/es/src/config-provider/css-var.mjs +20 -10
- package/es/src/config-provider/index.d.ts +30 -0
- package/es/src/index.mjs +154 -150
- package/es/src/path-map.mjs +3 -1
- package/lib/index.js +1 -1
- package/lib/src/ap-descriptions/help-message/index.vue2.js +1 -1
- package/lib/src/ap-form/index.d.ts +5 -1
- package/lib/src/ap-form/index.js +1 -1
- package/lib/src/ap-form/interface.d.ts +10 -1
- package/lib/src/ap-form/item/index.vue.js +1 -1
- package/lib/src/ap-form/items/number/index.vue.d.ts +20 -20
- package/lib/src/ap-form/items/text/index.vue.d.ts +20 -20
- package/lib/src/ap-form/items/text/password.vue.d.ts +20 -20
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +18 -18
- package/lib/src/ap-form/render/control.vue.d.ts +29 -0
- package/lib/src/ap-form/render/control.vue.js +1 -0
- package/lib/src/ap-form/render/control.vue2.js +1 -0
- package/lib/src/ap-form/render/item.vue.d.ts +63 -0
- package/lib/src/ap-form/render/item.vue.js +1 -0
- package/lib/src/ap-form/render/item.vue2.js +1 -0
- package/lib/src/ap-form/render/style/css.d.ts +1 -0
- package/lib/src/ap-form/render/style/css.js +1 -0
- package/lib/src/ap-form/render/style/style.d.ts +1 -0
- package/lib/src/ap-list/index.vue.d.ts +10 -2
- package/lib/src/ap-list/index.vue.js +1 -1
- package/lib/src/ap-list/interface.d.ts +22 -3
- package/lib/src/ap-table/constants.d.ts +102 -102
- package/lib/src/ap-tag/ap-tag.vue.js +1 -1
- package/lib/src/business/ap-group-search/index.d.ts +36 -36
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +1 -1
- package/lib/src/business/ap-ladder/index.d.ts +7 -7
- package/lib/src/config-provider/config-provider.d.ts +5 -0
- package/lib/src/config-provider/css-var.d.ts +5 -0
- package/lib/src/config-provider/css-var.js +1 -1
- package/lib/src/config-provider/index.d.ts +30 -0
- package/lib/src/index.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/package.json +5 -4
|
@@ -110,12 +110,12 @@ declare const ApGroupSearch: {
|
|
|
110
110
|
autofocus: {
|
|
111
111
|
type: PropType<boolean>;
|
|
112
112
|
};
|
|
113
|
-
defaultValue: {
|
|
114
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
115
|
-
};
|
|
116
113
|
'onUpdate:value': {
|
|
117
114
|
type: PropType<(val: SelectValue) => void>;
|
|
118
115
|
};
|
|
116
|
+
defaultValue: {
|
|
117
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
118
|
+
};
|
|
119
119
|
clearIcon: {
|
|
120
120
|
type: PropType<any>;
|
|
121
121
|
};
|
|
@@ -352,12 +352,12 @@ declare const ApGroupSearch: {
|
|
|
352
352
|
autofocus: {
|
|
353
353
|
type: PropType<boolean>;
|
|
354
354
|
};
|
|
355
|
-
defaultValue: {
|
|
356
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
357
|
-
};
|
|
358
355
|
'onUpdate:value': {
|
|
359
356
|
type: PropType<(val: SelectValue) => void>;
|
|
360
357
|
};
|
|
358
|
+
defaultValue: {
|
|
359
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
360
|
+
};
|
|
361
361
|
clearIcon: {
|
|
362
362
|
type: PropType<any>;
|
|
363
363
|
};
|
|
@@ -602,12 +602,12 @@ declare const ApGroupSearch: {
|
|
|
602
602
|
autofocus: {
|
|
603
603
|
type: PropType<boolean>;
|
|
604
604
|
};
|
|
605
|
-
defaultValue: {
|
|
606
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
607
|
-
};
|
|
608
605
|
'onUpdate:value': {
|
|
609
606
|
type: PropType<(val: SelectValue) => void>;
|
|
610
607
|
};
|
|
608
|
+
defaultValue: {
|
|
609
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
610
|
+
};
|
|
611
611
|
clearIcon: {
|
|
612
612
|
type: PropType<any>;
|
|
613
613
|
};
|
|
@@ -849,12 +849,12 @@ declare const ApGroupSearch: {
|
|
|
849
849
|
autofocus: {
|
|
850
850
|
type: PropType<boolean>;
|
|
851
851
|
};
|
|
852
|
-
defaultValue: {
|
|
853
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
854
|
-
};
|
|
855
852
|
'onUpdate:value': {
|
|
856
853
|
type: PropType<(val: SelectValue) => void>;
|
|
857
854
|
};
|
|
855
|
+
defaultValue: {
|
|
856
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
857
|
+
};
|
|
858
858
|
clearIcon: {
|
|
859
859
|
type: PropType<any>;
|
|
860
860
|
};
|
|
@@ -1098,12 +1098,12 @@ declare const ApExtensionSelect: {
|
|
|
1098
1098
|
autofocus: {
|
|
1099
1099
|
type: PropType<boolean>;
|
|
1100
1100
|
};
|
|
1101
|
-
defaultValue: {
|
|
1102
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1103
|
-
};
|
|
1104
1101
|
'onUpdate:value': {
|
|
1105
1102
|
type: PropType<(val: SelectValue) => void>;
|
|
1106
1103
|
};
|
|
1104
|
+
defaultValue: {
|
|
1105
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1106
|
+
};
|
|
1107
1107
|
clearIcon: {
|
|
1108
1108
|
type: PropType<any>;
|
|
1109
1109
|
};
|
|
@@ -1325,12 +1325,12 @@ declare const ApExtensionSelect: {
|
|
|
1325
1325
|
autofocus: {
|
|
1326
1326
|
type: PropType<boolean>;
|
|
1327
1327
|
};
|
|
1328
|
-
defaultValue: {
|
|
1329
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1330
|
-
};
|
|
1331
1328
|
'onUpdate:value': {
|
|
1332
1329
|
type: PropType<(val: SelectValue) => void>;
|
|
1333
1330
|
};
|
|
1331
|
+
defaultValue: {
|
|
1332
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1333
|
+
};
|
|
1334
1334
|
clearIcon: {
|
|
1335
1335
|
type: PropType<any>;
|
|
1336
1336
|
};
|
|
@@ -1557,12 +1557,12 @@ declare const ApExtensionSelect: {
|
|
|
1557
1557
|
autofocus: {
|
|
1558
1558
|
type: PropType<boolean>;
|
|
1559
1559
|
};
|
|
1560
|
-
defaultValue: {
|
|
1561
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1562
|
-
};
|
|
1563
1560
|
'onUpdate:value': {
|
|
1564
1561
|
type: PropType<(val: SelectValue) => void>;
|
|
1565
1562
|
};
|
|
1563
|
+
defaultValue: {
|
|
1564
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1565
|
+
};
|
|
1566
1566
|
clearIcon: {
|
|
1567
1567
|
type: PropType<any>;
|
|
1568
1568
|
};
|
|
@@ -1786,12 +1786,12 @@ declare const ApExtensionSelect: {
|
|
|
1786
1786
|
autofocus: {
|
|
1787
1787
|
type: PropType<boolean>;
|
|
1788
1788
|
};
|
|
1789
|
-
defaultValue: {
|
|
1790
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1791
|
-
};
|
|
1792
1789
|
'onUpdate:value': {
|
|
1793
1790
|
type: PropType<(val: SelectValue) => void>;
|
|
1794
1791
|
};
|
|
1792
|
+
defaultValue: {
|
|
1793
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
1794
|
+
};
|
|
1795
1795
|
clearIcon: {
|
|
1796
1796
|
type: PropType<any>;
|
|
1797
1797
|
};
|
|
@@ -2019,12 +2019,12 @@ declare const ApPopoverSelect: {
|
|
|
2019
2019
|
autofocus: {
|
|
2020
2020
|
type: PropType<boolean>;
|
|
2021
2021
|
};
|
|
2022
|
-
defaultValue: {
|
|
2023
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2024
|
-
};
|
|
2025
2022
|
'onUpdate:value': {
|
|
2026
2023
|
type: PropType<(val: SelectValue) => void>;
|
|
2027
2024
|
};
|
|
2025
|
+
defaultValue: {
|
|
2026
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2027
|
+
};
|
|
2028
2028
|
clearIcon: {
|
|
2029
2029
|
type: PropType<any>;
|
|
2030
2030
|
};
|
|
@@ -2249,12 +2249,12 @@ declare const ApPopoverSelect: {
|
|
|
2249
2249
|
autofocus: {
|
|
2250
2250
|
type: PropType<boolean>;
|
|
2251
2251
|
};
|
|
2252
|
-
defaultValue: {
|
|
2253
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2254
|
-
};
|
|
2255
2252
|
'onUpdate:value': {
|
|
2256
2253
|
type: PropType<(val: SelectValue) => void>;
|
|
2257
2254
|
};
|
|
2255
|
+
defaultValue: {
|
|
2256
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2257
|
+
};
|
|
2258
2258
|
clearIcon: {
|
|
2259
2259
|
type: PropType<any>;
|
|
2260
2260
|
};
|
|
@@ -2483,12 +2483,12 @@ declare const ApPopoverSelect: {
|
|
|
2483
2483
|
autofocus: {
|
|
2484
2484
|
type: PropType<boolean>;
|
|
2485
2485
|
};
|
|
2486
|
-
defaultValue: {
|
|
2487
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2488
|
-
};
|
|
2489
2486
|
'onUpdate:value': {
|
|
2490
2487
|
type: PropType<(val: SelectValue) => void>;
|
|
2491
2488
|
};
|
|
2489
|
+
defaultValue: {
|
|
2490
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2491
|
+
};
|
|
2492
2492
|
clearIcon: {
|
|
2493
2493
|
type: PropType<any>;
|
|
2494
2494
|
};
|
|
@@ -2714,12 +2714,12 @@ declare const ApPopoverSelect: {
|
|
|
2714
2714
|
autofocus: {
|
|
2715
2715
|
type: PropType<boolean>;
|
|
2716
2716
|
};
|
|
2717
|
-
defaultValue: {
|
|
2718
|
-
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2719
|
-
};
|
|
2720
2717
|
'onUpdate:value': {
|
|
2721
2718
|
type: PropType<(val: SelectValue) => void>;
|
|
2722
2719
|
};
|
|
2720
|
+
defaultValue: {
|
|
2721
|
+
type: PropType<(string | number) | LabeledValue | (string | number)[] | LabeledValue[]>;
|
|
2722
|
+
};
|
|
2723
2723
|
clearIcon: {
|
|
2724
2724
|
type: PropType<any>;
|
|
2725
2725
|
};
|
|
@@ -126,7 +126,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
|
|
|
126
126
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
127
127
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
128
128
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
129
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
129
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>;
|
|
130
130
|
major: string;
|
|
131
131
|
minor: string;
|
|
132
132
|
majorColor: string;
|
|
@@ -81,7 +81,7 @@ declare const ApLadder: {
|
|
|
81
81
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
82
82
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
83
83
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
84
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
84
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>>;
|
|
85
85
|
required: true;
|
|
86
86
|
default: () => {
|
|
87
87
|
title: undefined;
|
|
@@ -199,7 +199,7 @@ declare const ApLadder: {
|
|
|
199
199
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
200
200
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
201
201
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
202
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
202
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>>;
|
|
203
203
|
required: true;
|
|
204
204
|
default: () => {
|
|
205
205
|
title: undefined;
|
|
@@ -308,7 +308,7 @@ declare const ApLadder: {
|
|
|
308
308
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
309
309
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
310
310
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
311
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
311
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>;
|
|
312
312
|
major: string;
|
|
313
313
|
minor: string;
|
|
314
314
|
majorColor: string;
|
|
@@ -394,7 +394,7 @@ declare const ApLadder: {
|
|
|
394
394
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
395
395
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
396
396
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
397
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
397
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>>;
|
|
398
398
|
required: true;
|
|
399
399
|
default: () => {
|
|
400
400
|
title: undefined;
|
|
@@ -503,7 +503,7 @@ declare const ApLadder: {
|
|
|
503
503
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
504
504
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
505
505
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
506
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
506
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>;
|
|
507
507
|
major: string;
|
|
508
508
|
minor: string;
|
|
509
509
|
majorColor: string;
|
|
@@ -586,7 +586,7 @@ declare const ApLadder: {
|
|
|
586
586
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
587
587
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
588
588
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
589
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
589
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>>;
|
|
590
590
|
required: true;
|
|
591
591
|
default: () => {
|
|
592
592
|
title: undefined;
|
|
@@ -695,7 +695,7 @@ declare const ApLadder: {
|
|
|
695
695
|
'onUpdate:visible': PropType<(vis: boolean) => void>;
|
|
696
696
|
onOpenChange: PropType<(vis: boolean) => void>;
|
|
697
697
|
'onUpdate:open': PropType<(vis: boolean) => void>;
|
|
698
|
-
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "
|
|
698
|
+
}>>, "title" | "placement" | "color" | "mouseEnterDelay" | "trigger" | "getPopupContainer" | "align" | "overlayStyle" | "overlayInnerStyle" | "overlayClassName" | "mouseLeaveDelay" | "arrowPointAtCenter" | "arrow" | "autoAdjustOverflow" | "destroyTooltipOnHide">>;
|
|
699
699
|
major: string;
|
|
700
700
|
minor: string;
|
|
701
701
|
majorColor: string;
|
|
@@ -444,6 +444,11 @@ export declare const ConfigProvider: DefineComponent<{
|
|
|
444
444
|
primary: string;
|
|
445
445
|
};
|
|
446
446
|
};
|
|
447
|
+
'batch-input-group': {
|
|
448
|
+
trigger: {
|
|
449
|
+
color: string;
|
|
450
|
+
};
|
|
451
|
+
};
|
|
447
452
|
}>;
|
|
448
453
|
}, {}>;
|
|
449
454
|
export type ConfigProviderInstance = InstanceType<typeof ConfigProvider>;
|
|
@@ -95,6 +95,11 @@ declare const aplusCssVarObj: {
|
|
|
95
95
|
primary: string;
|
|
96
96
|
};
|
|
97
97
|
};
|
|
98
|
+
'batch-input-group': {
|
|
99
|
+
trigger: {
|
|
100
|
+
color: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
98
103
|
};
|
|
99
104
|
export type CssVarType = RecursivePartial<typeof aplusCssVarObj>;
|
|
100
105
|
export declare function generateCssVar(cssVarRawObj: CssVarType): Record<string, any>;
|
|
@@ -93,8 +93,13 @@ const F = {
|
|
|
93
93
|
border: "#DEE4ED",
|
|
94
94
|
primary: "#0070FF"
|
|
95
95
|
}
|
|
96
|
+
},
|
|
97
|
+
"batch-input-group": {
|
|
98
|
+
trigger: {
|
|
99
|
+
color: "#526a90"
|
|
100
|
+
}
|
|
96
101
|
}
|
|
97
|
-
},
|
|
102
|
+
}, p = {
|
|
98
103
|
"ap-form": {
|
|
99
104
|
bordered: {
|
|
100
105
|
"border-color": {
|
|
@@ -189,28 +194,33 @@ const F = {
|
|
|
189
194
|
border: "#D9D9D9",
|
|
190
195
|
primary: "#34b77c"
|
|
191
196
|
}
|
|
197
|
+
},
|
|
198
|
+
"batch-input-group": {
|
|
199
|
+
trigger: {
|
|
200
|
+
color: "#999999"
|
|
201
|
+
}
|
|
192
202
|
}
|
|
193
203
|
};
|
|
194
|
-
function i(
|
|
204
|
+
function i(e) {
|
|
195
205
|
const o = {};
|
|
196
206
|
function r(a, l) {
|
|
197
207
|
const s = Object.keys(a);
|
|
198
208
|
for (const c of s) {
|
|
199
|
-
const
|
|
200
|
-
|
|
209
|
+
const t = a[c], n = [...l, c];
|
|
210
|
+
t !== null && typeof t == "object" ? r(t, n) : o[`--${n.join("-")}`] = t;
|
|
201
211
|
}
|
|
202
212
|
}
|
|
203
|
-
return r(
|
|
213
|
+
return r(e, []), o;
|
|
204
214
|
}
|
|
205
|
-
const
|
|
206
|
-
function u(
|
|
207
|
-
Object.entries(
|
|
215
|
+
const b = i(F), d = i(p);
|
|
216
|
+
function u(e) {
|
|
217
|
+
Object.entries(e).forEach(([o, r]) => {
|
|
208
218
|
document.documentElement.style.setProperty(o, r);
|
|
209
219
|
});
|
|
210
220
|
}
|
|
211
221
|
export {
|
|
212
|
-
|
|
213
|
-
|
|
222
|
+
d as adminCssVar,
|
|
223
|
+
b as aplusCssVar,
|
|
214
224
|
i as generateCssVar,
|
|
215
225
|
u as setCSSVariables
|
|
216
226
|
};
|
|
@@ -259,6 +259,11 @@ export declare const APConfigProvider: {
|
|
|
259
259
|
primary: string;
|
|
260
260
|
};
|
|
261
261
|
};
|
|
262
|
+
'batch-input-group': {
|
|
263
|
+
trigger: {
|
|
264
|
+
color: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
262
267
|
}>>;
|
|
263
268
|
default: () => {};
|
|
264
269
|
};
|
|
@@ -503,6 +508,11 @@ export declare const APConfigProvider: {
|
|
|
503
508
|
primary: string;
|
|
504
509
|
};
|
|
505
510
|
};
|
|
511
|
+
'batch-input-group': {
|
|
512
|
+
trigger: {
|
|
513
|
+
color: string;
|
|
514
|
+
};
|
|
515
|
+
};
|
|
506
516
|
}>>;
|
|
507
517
|
default: () => {};
|
|
508
518
|
};
|
|
@@ -641,6 +651,11 @@ export declare const APConfigProvider: {
|
|
|
641
651
|
primary: string;
|
|
642
652
|
};
|
|
643
653
|
};
|
|
654
|
+
'batch-input-group': {
|
|
655
|
+
trigger: {
|
|
656
|
+
color: string;
|
|
657
|
+
};
|
|
658
|
+
};
|
|
644
659
|
}>;
|
|
645
660
|
}, true, {}, {}, {
|
|
646
661
|
P: {};
|
|
@@ -890,6 +905,11 @@ export declare const APConfigProvider: {
|
|
|
890
905
|
primary: string;
|
|
891
906
|
};
|
|
892
907
|
};
|
|
908
|
+
'batch-input-group': {
|
|
909
|
+
trigger: {
|
|
910
|
+
color: string;
|
|
911
|
+
};
|
|
912
|
+
};
|
|
893
913
|
}>>;
|
|
894
914
|
default: () => {};
|
|
895
915
|
};
|
|
@@ -1028,6 +1048,11 @@ export declare const APConfigProvider: {
|
|
|
1028
1048
|
primary: string;
|
|
1029
1049
|
};
|
|
1030
1050
|
};
|
|
1051
|
+
'batch-input-group': {
|
|
1052
|
+
trigger: {
|
|
1053
|
+
color: string;
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1031
1056
|
}>;
|
|
1032
1057
|
}>;
|
|
1033
1058
|
__isFragment?: never;
|
|
@@ -1316,6 +1341,11 @@ export declare const APConfigProvider: {
|
|
|
1316
1341
|
primary: string;
|
|
1317
1342
|
};
|
|
1318
1343
|
};
|
|
1344
|
+
'batch-input-group': {
|
|
1345
|
+
trigger: {
|
|
1346
|
+
color: string;
|
|
1347
|
+
};
|
|
1348
|
+
};
|
|
1319
1349
|
}>;
|
|
1320
1350
|
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & ( Plugin & (new (...args: any[]) => {
|
|
1321
1351
|
$props: {
|