@dao-style/core 1.9.1-beta.4 → 1.9.1-beta.6
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/dist/components/select/props.d.ts +4 -0
- package/dist/components/select/select.d.ts +23 -1
- package/dist/components/select/select.vue.d.ts +10 -0
- package/dist/components/virtual-select/props.d.ts +4 -0
- package/dist/components/virtual-select/virtual-select.d.ts +20 -1
- package/dist/components/virtual-select/virtual-select.vue.d.ts +9 -0
- package/dist/dao-style.js +7 -7
- package/dist/dao-style.mjs +3966 -3987
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ declare const DaoSelect: {
|
|
|
19
19
|
optionsPlaceholder: string;
|
|
20
20
|
searchPlaceholder: string;
|
|
21
21
|
menuClass: string;
|
|
22
|
+
optionLoading: boolean;
|
|
22
23
|
hideSelectAll: boolean;
|
|
23
24
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
24
25
|
modelValue: {
|
|
@@ -71,6 +72,10 @@ declare const DaoSelect: {
|
|
|
71
72
|
type: BooleanConstructor;
|
|
72
73
|
default: boolean;
|
|
73
74
|
};
|
|
75
|
+
optionLoading: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
74
79
|
hideSelectAll: {
|
|
75
80
|
type: BooleanConstructor;
|
|
76
81
|
default: boolean;
|
|
@@ -85,7 +90,7 @@ declare const DaoSelect: {
|
|
|
85
90
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
86
91
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
87
92
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
88
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "loading" | "status" | "clearable" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "hideSelectAll">;
|
|
93
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "loading" | "status" | "clearable" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "optionLoading" | "hideSelectAll">;
|
|
89
94
|
$attrs: {
|
|
90
95
|
[x: string]: unknown;
|
|
91
96
|
};
|
|
@@ -150,6 +155,10 @@ declare const DaoSelect: {
|
|
|
150
155
|
type: BooleanConstructor;
|
|
151
156
|
default: boolean;
|
|
152
157
|
};
|
|
158
|
+
optionLoading: {
|
|
159
|
+
type: BooleanConstructor;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
153
162
|
hideSelectAll: {
|
|
154
163
|
type: BooleanConstructor;
|
|
155
164
|
default: boolean;
|
|
@@ -170,6 +179,7 @@ declare const DaoSelect: {
|
|
|
170
179
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
171
180
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
172
181
|
}>, never, string, string>;
|
|
182
|
+
isDisabled: import("vue").ComputedRef<boolean>;
|
|
173
183
|
showClear: import("vue").ComputedRef<boolean>;
|
|
174
184
|
popper: import("vue").Ref<({
|
|
175
185
|
new (...args: any[]): {
|
|
@@ -616,6 +626,7 @@ declare const DaoSelect: {
|
|
|
616
626
|
optionsPlaceholder: string;
|
|
617
627
|
searchPlaceholder: string;
|
|
618
628
|
menuClass: string;
|
|
629
|
+
optionLoading: boolean;
|
|
619
630
|
hideSelectAll: boolean;
|
|
620
631
|
}, {}, string> & {
|
|
621
632
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -688,6 +699,10 @@ declare const DaoSelect: {
|
|
|
688
699
|
type: BooleanConstructor;
|
|
689
700
|
default: boolean;
|
|
690
701
|
};
|
|
702
|
+
optionLoading: {
|
|
703
|
+
type: BooleanConstructor;
|
|
704
|
+
default: boolean;
|
|
705
|
+
};
|
|
691
706
|
hideSelectAll: {
|
|
692
707
|
type: BooleanConstructor;
|
|
693
708
|
default: boolean;
|
|
@@ -708,6 +723,7 @@ declare const DaoSelect: {
|
|
|
708
723
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
709
724
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
710
725
|
}>, never, string, string>;
|
|
726
|
+
isDisabled: import("vue").ComputedRef<boolean>;
|
|
711
727
|
showClear: import("vue").ComputedRef<boolean>;
|
|
712
728
|
popper: import("vue").Ref<({
|
|
713
729
|
new (...args: any[]): {
|
|
@@ -1195,6 +1211,10 @@ declare const DaoSelect: {
|
|
|
1195
1211
|
type: BooleanConstructor;
|
|
1196
1212
|
default: boolean;
|
|
1197
1213
|
};
|
|
1214
|
+
optionLoading: {
|
|
1215
|
+
type: BooleanConstructor;
|
|
1216
|
+
default: boolean;
|
|
1217
|
+
};
|
|
1198
1218
|
hideSelectAll: {
|
|
1199
1219
|
type: BooleanConstructor;
|
|
1200
1220
|
default: boolean;
|
|
@@ -1215,6 +1235,7 @@ declare const DaoSelect: {
|
|
|
1215
1235
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
1216
1236
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
1217
1237
|
}>, never, string, string>;
|
|
1238
|
+
isDisabled: import("vue").ComputedRef<boolean>;
|
|
1218
1239
|
showClear: import("vue").ComputedRef<boolean>;
|
|
1219
1240
|
popper: import("vue").Ref<({
|
|
1220
1241
|
new (...args: any[]): {
|
|
@@ -1661,6 +1682,7 @@ declare const DaoSelect: {
|
|
|
1661
1682
|
optionsPlaceholder: string;
|
|
1662
1683
|
searchPlaceholder: string;
|
|
1663
1684
|
menuClass: string;
|
|
1685
|
+
optionLoading: boolean;
|
|
1664
1686
|
hideSelectAll: boolean;
|
|
1665
1687
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new <T_1 extends boolean>({ multiple: T, }: {
|
|
1666
1688
|
multiple: any;
|
|
@@ -51,6 +51,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
type: BooleanConstructor;
|
|
52
52
|
default: boolean;
|
|
53
53
|
};
|
|
54
|
+
optionLoading: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
54
58
|
hideSelectAll: {
|
|
55
59
|
type: BooleanConstructor;
|
|
56
60
|
default: boolean;
|
|
@@ -65,6 +69,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
69
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
66
70
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
67
71
|
}>, never, string, string>;
|
|
72
|
+
isDisabled: import("vue").ComputedRef<boolean>;
|
|
68
73
|
showClear: import("vue").ComputedRef<boolean>;
|
|
69
74
|
popper: import("vue").Ref<({
|
|
70
75
|
new (...args: any[]): {
|
|
@@ -548,6 +553,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
548
553
|
type: BooleanConstructor;
|
|
549
554
|
default: boolean;
|
|
550
555
|
};
|
|
556
|
+
optionLoading: {
|
|
557
|
+
type: BooleanConstructor;
|
|
558
|
+
default: boolean;
|
|
559
|
+
};
|
|
551
560
|
hideSelectAll: {
|
|
552
561
|
type: BooleanConstructor;
|
|
553
562
|
default: boolean;
|
|
@@ -576,6 +585,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
576
585
|
optionsPlaceholder: string;
|
|
577
586
|
searchPlaceholder: string;
|
|
578
587
|
menuClass: string;
|
|
588
|
+
optionLoading: boolean;
|
|
579
589
|
hideSelectAll: boolean;
|
|
580
590
|
}>;
|
|
581
591
|
export default _default;
|
|
@@ -21,6 +21,7 @@ declare const DaoVirtualSelect: {
|
|
|
21
21
|
optionsPlaceholder: string;
|
|
22
22
|
searchPlaceholder: string;
|
|
23
23
|
menuClass: string;
|
|
24
|
+
optionLoading: boolean;
|
|
24
25
|
hideSelectAll: boolean;
|
|
25
26
|
valueKey: string;
|
|
26
27
|
labelKey: string;
|
|
@@ -92,6 +93,10 @@ declare const DaoVirtualSelect: {
|
|
|
92
93
|
type: BooleanConstructor;
|
|
93
94
|
default: boolean;
|
|
94
95
|
};
|
|
96
|
+
optionLoading: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
95
100
|
hideSelectAll: {
|
|
96
101
|
type: BooleanConstructor;
|
|
97
102
|
default: boolean;
|
|
@@ -106,7 +111,7 @@ declare const DaoVirtualSelect: {
|
|
|
106
111
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
107
112
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
108
113
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
109
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "options" | "loading" | "status" | "clearable" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "hideSelectAll" | "valueKey" | "labelKey" | "itemHeight">;
|
|
114
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "options" | "loading" | "status" | "clearable" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "optionLoading" | "hideSelectAll" | "valueKey" | "labelKey" | "itemHeight">;
|
|
110
115
|
$attrs: {
|
|
111
116
|
[x: string]: unknown;
|
|
112
117
|
};
|
|
@@ -187,6 +192,10 @@ declare const DaoVirtualSelect: {
|
|
|
187
192
|
type: BooleanConstructor;
|
|
188
193
|
default: boolean;
|
|
189
194
|
};
|
|
195
|
+
optionLoading: {
|
|
196
|
+
type: BooleanConstructor;
|
|
197
|
+
default: boolean;
|
|
198
|
+
};
|
|
190
199
|
hideSelectAll: {
|
|
191
200
|
type: BooleanConstructor;
|
|
192
201
|
default: boolean;
|
|
@@ -624,6 +633,7 @@ declare const DaoVirtualSelect: {
|
|
|
624
633
|
optionsPlaceholder: string;
|
|
625
634
|
searchPlaceholder: string;
|
|
626
635
|
menuClass: string;
|
|
636
|
+
optionLoading: boolean;
|
|
627
637
|
hideSelectAll: boolean;
|
|
628
638
|
valueKey: string;
|
|
629
639
|
labelKey: string;
|
|
@@ -715,6 +725,10 @@ declare const DaoVirtualSelect: {
|
|
|
715
725
|
type: BooleanConstructor;
|
|
716
726
|
default: boolean;
|
|
717
727
|
};
|
|
728
|
+
optionLoading: {
|
|
729
|
+
type: BooleanConstructor;
|
|
730
|
+
default: boolean;
|
|
731
|
+
};
|
|
718
732
|
hideSelectAll: {
|
|
719
733
|
type: BooleanConstructor;
|
|
720
734
|
default: boolean;
|
|
@@ -1208,6 +1222,10 @@ declare const DaoVirtualSelect: {
|
|
|
1208
1222
|
type: BooleanConstructor;
|
|
1209
1223
|
default: boolean;
|
|
1210
1224
|
};
|
|
1225
|
+
optionLoading: {
|
|
1226
|
+
type: BooleanConstructor;
|
|
1227
|
+
default: boolean;
|
|
1228
|
+
};
|
|
1211
1229
|
hideSelectAll: {
|
|
1212
1230
|
type: BooleanConstructor;
|
|
1213
1231
|
default: boolean;
|
|
@@ -1645,6 +1663,7 @@ declare const DaoVirtualSelect: {
|
|
|
1645
1663
|
optionsPlaceholder: string;
|
|
1646
1664
|
searchPlaceholder: string;
|
|
1647
1665
|
menuClass: string;
|
|
1666
|
+
optionLoading: boolean;
|
|
1648
1667
|
hideSelectAll: boolean;
|
|
1649
1668
|
valueKey: string;
|
|
1650
1669
|
labelKey: string;
|
|
@@ -68,6 +68,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
68
|
type: BooleanConstructor;
|
|
69
69
|
default: boolean;
|
|
70
70
|
};
|
|
71
|
+
optionLoading: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
71
75
|
hideSelectAll: {
|
|
72
76
|
type: BooleanConstructor;
|
|
73
77
|
default: boolean;
|
|
@@ -551,6 +555,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
551
555
|
type: BooleanConstructor;
|
|
552
556
|
default: boolean;
|
|
553
557
|
};
|
|
558
|
+
optionLoading: {
|
|
559
|
+
type: BooleanConstructor;
|
|
560
|
+
default: boolean;
|
|
561
|
+
};
|
|
554
562
|
hideSelectAll: {
|
|
555
563
|
type: BooleanConstructor;
|
|
556
564
|
default: boolean;
|
|
@@ -580,6 +588,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
580
588
|
optionsPlaceholder: string;
|
|
581
589
|
searchPlaceholder: string;
|
|
582
590
|
menuClass: string;
|
|
591
|
+
optionLoading: boolean;
|
|
583
592
|
hideSelectAll: boolean;
|
|
584
593
|
valueKey: string;
|
|
585
594
|
labelKey: string;
|