@dao-style/core 1.13.1-beta.5 → 1.13.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/virtual-select/props.d.ts +1 -1
- package/dist/components/virtual-select/virtual-select.d.ts +7 -7
- package/dist/components/virtual-select/virtual-select.vue.d.ts +3 -3
- package/dist/dao-style.js +7 -7
- package/dist/dao-style.mjs +2460 -2448
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ declare const DaoVirtualSelect: {
|
|
|
13
13
|
appendTo: string | false | HTMLElement;
|
|
14
14
|
size: string;
|
|
15
15
|
multiple: boolean;
|
|
16
|
-
options: OptionType[];
|
|
16
|
+
options: string[] | OptionType[];
|
|
17
17
|
loading: boolean;
|
|
18
18
|
status: "default" | "error" | "success";
|
|
19
19
|
clearable: boolean;
|
|
@@ -34,7 +34,7 @@ declare const DaoVirtualSelect: {
|
|
|
34
34
|
default: boolean;
|
|
35
35
|
};
|
|
36
36
|
options: {
|
|
37
|
-
type: import("vue").PropType<OptionType[]>;
|
|
37
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
38
38
|
default: () => never[];
|
|
39
39
|
};
|
|
40
40
|
labelKey: {
|
|
@@ -142,7 +142,7 @@ declare const DaoVirtualSelect: {
|
|
|
142
142
|
default: boolean;
|
|
143
143
|
};
|
|
144
144
|
options: {
|
|
145
|
-
type: import("vue").PropType<OptionType[]>;
|
|
145
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
146
146
|
default: () => never[];
|
|
147
147
|
};
|
|
148
148
|
labelKey: {
|
|
@@ -648,7 +648,7 @@ declare const DaoVirtualSelect: {
|
|
|
648
648
|
appendTo: string | false | HTMLElement;
|
|
649
649
|
size: string;
|
|
650
650
|
multiple: boolean;
|
|
651
|
-
options: OptionType[];
|
|
651
|
+
options: string[] | OptionType[];
|
|
652
652
|
loading: boolean;
|
|
653
653
|
status: "default" | "error" | "success";
|
|
654
654
|
clearable: boolean;
|
|
@@ -689,7 +689,7 @@ declare const DaoVirtualSelect: {
|
|
|
689
689
|
default: boolean;
|
|
690
690
|
};
|
|
691
691
|
options: {
|
|
692
|
-
type: import("vue").PropType<OptionType[]>;
|
|
692
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
693
693
|
default: () => never[];
|
|
694
694
|
};
|
|
695
695
|
labelKey: {
|
|
@@ -1198,7 +1198,7 @@ declare const DaoVirtualSelect: {
|
|
|
1198
1198
|
default: boolean;
|
|
1199
1199
|
};
|
|
1200
1200
|
options: {
|
|
1201
|
-
type: import("vue").PropType<OptionType[]>;
|
|
1201
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
1202
1202
|
default: () => never[];
|
|
1203
1203
|
};
|
|
1204
1204
|
labelKey: {
|
|
@@ -1704,7 +1704,7 @@ declare const DaoVirtualSelect: {
|
|
|
1704
1704
|
appendTo: string | false | HTMLElement;
|
|
1705
1705
|
size: string;
|
|
1706
1706
|
multiple: boolean;
|
|
1707
|
-
options: OptionType[];
|
|
1707
|
+
options: string[] | OptionType[];
|
|
1708
1708
|
loading: boolean;
|
|
1709
1709
|
status: "default" | "error" | "success";
|
|
1710
1710
|
clearable: boolean;
|
|
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
default: boolean;
|
|
8
8
|
};
|
|
9
9
|
options: {
|
|
10
|
-
type: import("vue").PropType<OptionType[]>;
|
|
10
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
11
11
|
default: () => never[];
|
|
12
12
|
};
|
|
13
13
|
labelKey: {
|
|
@@ -505,7 +505,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
505
505
|
default: boolean;
|
|
506
506
|
};
|
|
507
507
|
options: {
|
|
508
|
-
type: import("vue").PropType<OptionType[]>;
|
|
508
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
509
509
|
default: () => never[];
|
|
510
510
|
};
|
|
511
511
|
labelKey: {
|
|
@@ -600,7 +600,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
600
600
|
appendTo: string | false | HTMLElement;
|
|
601
601
|
size: string;
|
|
602
602
|
multiple: boolean;
|
|
603
|
-
options: OptionType[];
|
|
603
|
+
options: string[] | OptionType[];
|
|
604
604
|
loading: boolean;
|
|
605
605
|
status: "default" | "error" | "success";
|
|
606
606
|
clearable: boolean;
|