@dao-style/core 1.9.0 → 1.9.1-beta.2
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/action-icon/action-icon.d.ts +23 -1
- package/dist/components/action-icon/action-icon.vue.d.ts +10 -0
- package/dist/components/action-icon/props.d.ts +4 -0
- package/dist/components/select/props.d.ts +4 -0
- package/dist/components/select/select.d.ts +26 -1
- package/dist/components/select/select.vue.d.ts +11 -0
- package/dist/components/transfer/props.d.ts +4 -0
- package/dist/components/transfer/transfer.d.ts +20 -1
- package/dist/components/transfer/transfer.vue.d.ts +9 -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 +3458 -3408
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ declare const DaoActionIcon: {
|
|
|
9
9
|
disabled: boolean;
|
|
10
10
|
name: string;
|
|
11
11
|
size: import("./props").ActionIconSize;
|
|
12
|
+
active: boolean;
|
|
12
13
|
tooltipContent: string;
|
|
13
14
|
tooltipDisabled: boolean;
|
|
14
15
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -37,7 +38,11 @@ declare const DaoActionIcon: {
|
|
|
37
38
|
type: BooleanConstructor;
|
|
38
39
|
default: boolean;
|
|
39
40
|
};
|
|
40
|
-
|
|
41
|
+
active: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "name" | "size" | "active" | "tooltipContent" | "tooltipDisabled">;
|
|
41
46
|
$attrs: {
|
|
42
47
|
[x: string]: unknown;
|
|
43
48
|
};
|
|
@@ -77,14 +82,20 @@ declare const DaoActionIcon: {
|
|
|
77
82
|
type: BooleanConstructor;
|
|
78
83
|
default: boolean;
|
|
79
84
|
};
|
|
85
|
+
active: {
|
|
86
|
+
type: BooleanConstructor;
|
|
87
|
+
default: boolean;
|
|
88
|
+
};
|
|
80
89
|
}>>, {
|
|
81
90
|
isDivider: boolean;
|
|
82
91
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
92
|
+
classList: import("vue").ComputedRef<string[]>;
|
|
83
93
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
84
94
|
type: import("./props").ActionIconType;
|
|
85
95
|
disabled: boolean;
|
|
86
96
|
name: string;
|
|
87
97
|
size: import("./props").ActionIconSize;
|
|
98
|
+
active: boolean;
|
|
88
99
|
tooltipContent: string;
|
|
89
100
|
tooltipDisabled: boolean;
|
|
90
101
|
}, {}, string> & {
|
|
@@ -133,9 +144,14 @@ declare const DaoActionIcon: {
|
|
|
133
144
|
type: BooleanConstructor;
|
|
134
145
|
default: boolean;
|
|
135
146
|
};
|
|
147
|
+
active: {
|
|
148
|
+
type: BooleanConstructor;
|
|
149
|
+
default: boolean;
|
|
150
|
+
};
|
|
136
151
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
137
152
|
isDivider: boolean;
|
|
138
153
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
154
|
+
classList: import("vue").ComputedRef<string[]>;
|
|
139
155
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
140
156
|
__isFragment?: undefined;
|
|
141
157
|
__isTeleport?: undefined;
|
|
@@ -166,14 +182,20 @@ declare const DaoActionIcon: {
|
|
|
166
182
|
type: BooleanConstructor;
|
|
167
183
|
default: boolean;
|
|
168
184
|
};
|
|
185
|
+
active: {
|
|
186
|
+
type: BooleanConstructor;
|
|
187
|
+
default: boolean;
|
|
188
|
+
};
|
|
169
189
|
}>>, {
|
|
170
190
|
isDivider: boolean;
|
|
171
191
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
192
|
+
classList: import("vue").ComputedRef<string[]>;
|
|
172
193
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
173
194
|
type: import("./props").ActionIconType;
|
|
174
195
|
disabled: boolean;
|
|
175
196
|
name: string;
|
|
176
197
|
size: import("./props").ActionIconSize;
|
|
198
|
+
active: boolean;
|
|
177
199
|
tooltipContent: string;
|
|
178
200
|
tooltipDisabled: boolean;
|
|
179
201
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -24,9 +24,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
type: BooleanConstructor;
|
|
25
25
|
default: boolean;
|
|
26
26
|
};
|
|
27
|
+
active: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
27
31
|
}, {
|
|
28
32
|
isDivider: boolean;
|
|
29
33
|
realDisabled: import("vue").ComputedRef<boolean>;
|
|
34
|
+
classList: import("vue").ComputedRef<string[]>;
|
|
30
35
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
36
|
name: {
|
|
32
37
|
type: StringConstructor;
|
|
@@ -53,11 +58,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
58
|
type: BooleanConstructor;
|
|
54
59
|
default: boolean;
|
|
55
60
|
};
|
|
61
|
+
active: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
56
65
|
}>>, {
|
|
57
66
|
type: import("./props").ActionIconType;
|
|
58
67
|
disabled: boolean;
|
|
59
68
|
name: string;
|
|
60
69
|
size: import("./props").ActionIconSize;
|
|
70
|
+
active: boolean;
|
|
61
71
|
tooltipContent: string;
|
|
62
72
|
tooltipDisabled: boolean;
|
|
63
73
|
}>;
|
|
@@ -56,6 +56,10 @@ export declare const selectProps: {
|
|
|
56
56
|
type: BooleanConstructor;
|
|
57
57
|
default: boolean;
|
|
58
58
|
};
|
|
59
|
+
clearable: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
59
63
|
};
|
|
60
64
|
export type SelectProps = ExtractPropTypes<typeof selectProps>;
|
|
61
65
|
export declare const optionProps: {
|
|
@@ -14,6 +14,7 @@ declare const DaoSelect: {
|
|
|
14
14
|
multiple: boolean;
|
|
15
15
|
loading: boolean;
|
|
16
16
|
status: "default" | "error" | "success" | "validating";
|
|
17
|
+
clearable: boolean;
|
|
17
18
|
placeholder: string;
|
|
18
19
|
optionsPlaceholder: string;
|
|
19
20
|
searchPlaceholder: string;
|
|
@@ -74,13 +75,17 @@ declare const DaoSelect: {
|
|
|
74
75
|
type: BooleanConstructor;
|
|
75
76
|
default: boolean;
|
|
76
77
|
};
|
|
78
|
+
clearable: {
|
|
79
|
+
type: BooleanConstructor;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
77
82
|
}>> & {
|
|
78
83
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
79
84
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
80
85
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
81
86
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
82
87
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
83
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "loading" | "status" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "hideSelectAll">;
|
|
88
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "loading" | "status" | "clearable" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "hideSelectAll">;
|
|
84
89
|
$attrs: {
|
|
85
90
|
[x: string]: unknown;
|
|
86
91
|
};
|
|
@@ -149,6 +154,10 @@ declare const DaoSelect: {
|
|
|
149
154
|
type: BooleanConstructor;
|
|
150
155
|
default: boolean;
|
|
151
156
|
};
|
|
157
|
+
clearable: {
|
|
158
|
+
type: BooleanConstructor;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
152
161
|
}>> & {
|
|
153
162
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
154
163
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -161,6 +170,7 @@ declare const DaoSelect: {
|
|
|
161
170
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
162
171
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
163
172
|
}>, never, string, string>;
|
|
173
|
+
showClear: import("vue").ComputedRef<boolean>;
|
|
164
174
|
popper: import("vue").Ref<({
|
|
165
175
|
new (...args: any[]): {
|
|
166
176
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -591,6 +601,7 @@ declare const DaoSelect: {
|
|
|
591
601
|
end(): void;
|
|
592
602
|
};
|
|
593
603
|
handleCheckAll: (checked: boolean) => void;
|
|
604
|
+
resetCurrentVal: () => void;
|
|
594
605
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close" | "change" | "update:modelValue" | "search-change")[], string, {
|
|
595
606
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
596
607
|
modelValue: string | number | boolean | unknown[];
|
|
@@ -600,6 +611,7 @@ declare const DaoSelect: {
|
|
|
600
611
|
multiple: boolean;
|
|
601
612
|
loading: boolean;
|
|
602
613
|
status: "default" | "error" | "success" | "validating";
|
|
614
|
+
clearable: boolean;
|
|
603
615
|
placeholder: string;
|
|
604
616
|
optionsPlaceholder: string;
|
|
605
617
|
searchPlaceholder: string;
|
|
@@ -680,6 +692,10 @@ declare const DaoSelect: {
|
|
|
680
692
|
type: BooleanConstructor;
|
|
681
693
|
default: boolean;
|
|
682
694
|
};
|
|
695
|
+
clearable: {
|
|
696
|
+
type: BooleanConstructor;
|
|
697
|
+
default: boolean;
|
|
698
|
+
};
|
|
683
699
|
}>> & {
|
|
684
700
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
685
701
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -692,6 +708,7 @@ declare const DaoSelect: {
|
|
|
692
708
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
693
709
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
694
710
|
}>, never, string, string>;
|
|
711
|
+
showClear: import("vue").ComputedRef<boolean>;
|
|
695
712
|
popper: import("vue").Ref<({
|
|
696
713
|
new (...args: any[]): {
|
|
697
714
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -1122,6 +1139,7 @@ declare const DaoSelect: {
|
|
|
1122
1139
|
end(): void;
|
|
1123
1140
|
};
|
|
1124
1141
|
handleCheckAll: (checked: boolean) => void;
|
|
1142
|
+
resetCurrentVal: () => void;
|
|
1125
1143
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
1126
1144
|
__isFragment?: undefined;
|
|
1127
1145
|
__isTeleport?: undefined;
|
|
@@ -1181,6 +1199,10 @@ declare const DaoSelect: {
|
|
|
1181
1199
|
type: BooleanConstructor;
|
|
1182
1200
|
default: boolean;
|
|
1183
1201
|
};
|
|
1202
|
+
clearable: {
|
|
1203
|
+
type: BooleanConstructor;
|
|
1204
|
+
default: boolean;
|
|
1205
|
+
};
|
|
1184
1206
|
}>> & {
|
|
1185
1207
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1186
1208
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1193,6 +1215,7 @@ declare const DaoSelect: {
|
|
|
1193
1215
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
1194
1216
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
1195
1217
|
}>, never, string, string>;
|
|
1218
|
+
showClear: import("vue").ComputedRef<boolean>;
|
|
1196
1219
|
popper: import("vue").Ref<({
|
|
1197
1220
|
new (...args: any[]): {
|
|
1198
1221
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -1623,6 +1646,7 @@ declare const DaoSelect: {
|
|
|
1623
1646
|
end(): void;
|
|
1624
1647
|
};
|
|
1625
1648
|
handleCheckAll: (checked: boolean) => void;
|
|
1649
|
+
resetCurrentVal: () => void;
|
|
1626
1650
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close" | "change" | "update:modelValue" | "search-change")[], "open" | "close" | "change" | "update:modelValue" | "search-change", {
|
|
1627
1651
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
1628
1652
|
modelValue: string | number | boolean | unknown[];
|
|
@@ -1632,6 +1656,7 @@ declare const DaoSelect: {
|
|
|
1632
1656
|
multiple: boolean;
|
|
1633
1657
|
loading: boolean;
|
|
1634
1658
|
status: "default" | "error" | "success" | "validating";
|
|
1659
|
+
clearable: boolean;
|
|
1635
1660
|
placeholder: string;
|
|
1636
1661
|
optionsPlaceholder: string;
|
|
1637
1662
|
searchPlaceholder: string;
|
|
@@ -55,12 +55,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
55
55
|
type: BooleanConstructor;
|
|
56
56
|
default: boolean;
|
|
57
57
|
};
|
|
58
|
+
clearable: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
58
62
|
}, {
|
|
59
63
|
t: import("vue-i18n").ComposerTranslation<{
|
|
60
64
|
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
61
65
|
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
62
66
|
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
63
67
|
}>, never, string, string>;
|
|
68
|
+
showClear: import("vue").ComputedRef<boolean>;
|
|
64
69
|
popper: import("vue").Ref<({
|
|
65
70
|
new (...args: any[]): {
|
|
66
71
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -491,6 +496,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
491
496
|
end(): void;
|
|
492
497
|
};
|
|
493
498
|
handleCheckAll: (checked: boolean) => void;
|
|
499
|
+
resetCurrentVal: () => void;
|
|
494
500
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close" | "change" | "update:modelValue" | "search-change")[], "open" | "close" | "change" | "update:modelValue" | "search-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
495
501
|
modelValue: {
|
|
496
502
|
type: (StringConstructor | BooleanConstructor | ArrayConstructor | NumberConstructor)[];
|
|
@@ -546,6 +552,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
546
552
|
type: BooleanConstructor;
|
|
547
553
|
default: boolean;
|
|
548
554
|
};
|
|
555
|
+
clearable: {
|
|
556
|
+
type: BooleanConstructor;
|
|
557
|
+
default: boolean;
|
|
558
|
+
};
|
|
549
559
|
}>> & {
|
|
550
560
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
551
561
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -561,6 +571,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
561
571
|
multiple: boolean;
|
|
562
572
|
loading: boolean;
|
|
563
573
|
status: "default" | "error" | "success" | "validating";
|
|
574
|
+
clearable: boolean;
|
|
564
575
|
placeholder: string;
|
|
565
576
|
optionsPlaceholder: string;
|
|
566
577
|
searchPlaceholder: string;
|
|
@@ -56,6 +56,10 @@ export declare const transferProps: {
|
|
|
56
56
|
type: PropType<unknown[]>;
|
|
57
57
|
default: () => never[];
|
|
58
58
|
};
|
|
59
|
+
selectedData: {
|
|
60
|
+
type: PropType<DataItem[]>;
|
|
61
|
+
default: () => never[];
|
|
62
|
+
};
|
|
59
63
|
disabledKeys: {
|
|
60
64
|
type: PropType<unknown[]>;
|
|
61
65
|
default: () => never[];
|
|
@@ -21,6 +21,7 @@ declare const DaoTransfer: {
|
|
|
21
21
|
currentPage: number;
|
|
22
22
|
pageSizerWidth: number;
|
|
23
23
|
pageLayout: import("..").PaginationLayoutKey[];
|
|
24
|
+
selectedData: import("./props").DataItem[];
|
|
24
25
|
disabledKeys: unknown[];
|
|
25
26
|
filterable: boolean[];
|
|
26
27
|
filterMethod: ((query: string, item: import("./props").DataItem) => boolean)[];
|
|
@@ -75,6 +76,10 @@ declare const DaoTransfer: {
|
|
|
75
76
|
type: import("vue").PropType<unknown[]>;
|
|
76
77
|
default: () => never[];
|
|
77
78
|
};
|
|
79
|
+
selectedData: {
|
|
80
|
+
type: import("vue").PropType<import("./props").DataItem[]>;
|
|
81
|
+
default: () => never[];
|
|
82
|
+
};
|
|
78
83
|
disabledKeys: {
|
|
79
84
|
type: import("vue").PropType<unknown[]>;
|
|
80
85
|
default: () => never[];
|
|
@@ -127,7 +132,7 @@ declare const DaoTransfer: {
|
|
|
127
132
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
128
133
|
"onLeft-search"?: ((...args: any[]) => any) | undefined;
|
|
129
134
|
"onRight-search"?: ((...args: any[]) => any) | undefined;
|
|
130
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "props" | "source" | "total" | "pageSize" | "pageSizeOptions" | "pageFormat" | "totalFormat" | "currentPage" | "pageSizerWidth" | "pageLayout" | "disabledKeys" | "filterable" | "filterMethod" | "filterPlaceholder" | "hideDesc" | "hideCheckAll" | "hideClear">;
|
|
135
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "props" | "source" | "total" | "pageSize" | "pageSizeOptions" | "pageFormat" | "totalFormat" | "currentPage" | "pageSizerWidth" | "pageLayout" | "selectedData" | "disabledKeys" | "filterable" | "filterMethod" | "filterPlaceholder" | "hideDesc" | "hideCheckAll" | "hideClear">;
|
|
131
136
|
$attrs: {
|
|
132
137
|
[x: string]: unknown;
|
|
133
138
|
};
|
|
@@ -188,6 +193,10 @@ declare const DaoTransfer: {
|
|
|
188
193
|
type: import("vue").PropType<unknown[]>;
|
|
189
194
|
default: () => never[];
|
|
190
195
|
};
|
|
196
|
+
selectedData: {
|
|
197
|
+
type: import("vue").PropType<import("./props").DataItem[]>;
|
|
198
|
+
default: () => never[];
|
|
199
|
+
};
|
|
191
200
|
disabledKeys: {
|
|
192
201
|
type: import("vue").PropType<unknown[]>;
|
|
193
202
|
default: () => never[];
|
|
@@ -277,6 +286,7 @@ declare const DaoTransfer: {
|
|
|
277
286
|
currentPage: number;
|
|
278
287
|
pageSizerWidth: number;
|
|
279
288
|
pageLayout: import("..").PaginationLayoutKey[];
|
|
289
|
+
selectedData: import("./props").DataItem[];
|
|
280
290
|
disabledKeys: unknown[];
|
|
281
291
|
filterable: boolean[];
|
|
282
292
|
filterMethod: ((query: string, item: import("./props").DataItem) => boolean)[];
|
|
@@ -351,6 +361,10 @@ declare const DaoTransfer: {
|
|
|
351
361
|
type: import("vue").PropType<unknown[]>;
|
|
352
362
|
default: () => never[];
|
|
353
363
|
};
|
|
364
|
+
selectedData: {
|
|
365
|
+
type: import("vue").PropType<import("./props").DataItem[]>;
|
|
366
|
+
default: () => never[];
|
|
367
|
+
};
|
|
354
368
|
disabledKeys: {
|
|
355
369
|
type: import("vue").PropType<unknown[]>;
|
|
356
370
|
default: () => never[];
|
|
@@ -474,6 +488,10 @@ declare const DaoTransfer: {
|
|
|
474
488
|
type: import("vue").PropType<unknown[]>;
|
|
475
489
|
default: () => never[];
|
|
476
490
|
};
|
|
491
|
+
selectedData: {
|
|
492
|
+
type: import("vue").PropType<import("./props").DataItem[]>;
|
|
493
|
+
default: () => never[];
|
|
494
|
+
};
|
|
477
495
|
disabledKeys: {
|
|
478
496
|
type: import("vue").PropType<unknown[]>;
|
|
479
497
|
default: () => never[];
|
|
@@ -563,6 +581,7 @@ declare const DaoTransfer: {
|
|
|
563
581
|
currentPage: number;
|
|
564
582
|
pageSizerWidth: number;
|
|
565
583
|
pageLayout: import("..").PaginationLayoutKey[];
|
|
584
|
+
selectedData: import("./props").DataItem[];
|
|
566
585
|
disabledKeys: unknown[];
|
|
567
586
|
filterable: boolean[];
|
|
568
587
|
filterMethod: ((query: string, item: import("./props").DataItem) => boolean)[];
|
|
@@ -47,6 +47,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
type: import("vue").PropType<unknown[]>;
|
|
48
48
|
default: () => never[];
|
|
49
49
|
};
|
|
50
|
+
selectedData: {
|
|
51
|
+
type: import("vue").PropType<DataItem[]>;
|
|
52
|
+
default: () => never[];
|
|
53
|
+
};
|
|
50
54
|
disabledKeys: {
|
|
51
55
|
type: import("vue").PropType<unknown[]>;
|
|
52
56
|
default: () => never[];
|
|
@@ -150,6 +154,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
150
154
|
type: import("vue").PropType<unknown[]>;
|
|
151
155
|
default: () => never[];
|
|
152
156
|
};
|
|
157
|
+
selectedData: {
|
|
158
|
+
type: import("vue").PropType<DataItem[]>;
|
|
159
|
+
default: () => never[];
|
|
160
|
+
};
|
|
153
161
|
disabledKeys: {
|
|
154
162
|
type: import("vue").PropType<unknown[]>;
|
|
155
163
|
default: () => never[];
|
|
@@ -219,6 +227,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
219
227
|
currentPage: number;
|
|
220
228
|
pageSizerWidth: number;
|
|
221
229
|
pageLayout: import("../pagination").PaginationLayoutKey[];
|
|
230
|
+
selectedData: DataItem[];
|
|
222
231
|
disabledKeys: unknown[];
|
|
223
232
|
filterable: boolean[];
|
|
224
233
|
filterMethod: ((query: string, item: DataItem) => boolean)[];
|
|
@@ -72,6 +72,10 @@ export declare const virtualSelectProps: {
|
|
|
72
72
|
type: BooleanConstructor;
|
|
73
73
|
default: boolean;
|
|
74
74
|
};
|
|
75
|
+
clearable: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
75
79
|
};
|
|
76
80
|
export type virtualSelectProps = ExtractPropTypes<typeof virtualSelectProps>;
|
|
77
81
|
export declare const virtualOptionProps: {
|
|
@@ -16,6 +16,7 @@ declare const DaoVirtualSelect: {
|
|
|
16
16
|
options: OptionType[];
|
|
17
17
|
loading: boolean;
|
|
18
18
|
status: "default" | "error" | "success" | "validating";
|
|
19
|
+
clearable: boolean;
|
|
19
20
|
placeholder: string;
|
|
20
21
|
optionsPlaceholder: string;
|
|
21
22
|
searchPlaceholder: string;
|
|
@@ -95,13 +96,17 @@ declare const DaoVirtualSelect: {
|
|
|
95
96
|
type: BooleanConstructor;
|
|
96
97
|
default: boolean;
|
|
97
98
|
};
|
|
99
|
+
clearable: {
|
|
100
|
+
type: BooleanConstructor;
|
|
101
|
+
default: boolean;
|
|
102
|
+
};
|
|
98
103
|
}>> & {
|
|
99
104
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
100
105
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
101
106
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
102
107
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
103
108
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
104
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "options" | "loading" | "status" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "hideSelectAll" | "valueKey" | "labelKey" | "itemHeight">;
|
|
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">;
|
|
105
110
|
$attrs: {
|
|
106
111
|
[x: string]: unknown;
|
|
107
112
|
};
|
|
@@ -186,6 +191,10 @@ declare const DaoVirtualSelect: {
|
|
|
186
191
|
type: BooleanConstructor;
|
|
187
192
|
default: boolean;
|
|
188
193
|
};
|
|
194
|
+
clearable: {
|
|
195
|
+
type: BooleanConstructor;
|
|
196
|
+
default: boolean;
|
|
197
|
+
};
|
|
189
198
|
}>> & {
|
|
190
199
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
191
200
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -616,6 +625,7 @@ declare const DaoVirtualSelect: {
|
|
|
616
625
|
options: OptionType[];
|
|
617
626
|
loading: boolean;
|
|
618
627
|
status: "default" | "error" | "success" | "validating";
|
|
628
|
+
clearable: boolean;
|
|
619
629
|
placeholder: string;
|
|
620
630
|
optionsPlaceholder: string;
|
|
621
631
|
searchPlaceholder: string;
|
|
@@ -715,6 +725,10 @@ declare const DaoVirtualSelect: {
|
|
|
715
725
|
type: BooleanConstructor;
|
|
716
726
|
default: boolean;
|
|
717
727
|
};
|
|
728
|
+
clearable: {
|
|
729
|
+
type: BooleanConstructor;
|
|
730
|
+
default: boolean;
|
|
731
|
+
};
|
|
718
732
|
}>> & {
|
|
719
733
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
720
734
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1210,6 +1224,10 @@ declare const DaoVirtualSelect: {
|
|
|
1210
1224
|
type: BooleanConstructor;
|
|
1211
1225
|
default: boolean;
|
|
1212
1226
|
};
|
|
1227
|
+
clearable: {
|
|
1228
|
+
type: BooleanConstructor;
|
|
1229
|
+
default: boolean;
|
|
1230
|
+
};
|
|
1213
1231
|
}>> & {
|
|
1214
1232
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1215
1233
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1640,6 +1658,7 @@ declare const DaoVirtualSelect: {
|
|
|
1640
1658
|
options: OptionType[];
|
|
1641
1659
|
loading: boolean;
|
|
1642
1660
|
status: "default" | "error" | "success" | "validating";
|
|
1661
|
+
clearable: boolean;
|
|
1643
1662
|
placeholder: string;
|
|
1644
1663
|
optionsPlaceholder: string;
|
|
1645
1664
|
searchPlaceholder: string;
|
|
@@ -73,6 +73,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
73
73
|
type: BooleanConstructor;
|
|
74
74
|
default: boolean;
|
|
75
75
|
};
|
|
76
|
+
clearable: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
76
80
|
}, {
|
|
77
81
|
t: import("vue-i18n").ComposerTranslation<{
|
|
78
82
|
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
@@ -558,6 +562,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
558
562
|
type: BooleanConstructor;
|
|
559
563
|
default: boolean;
|
|
560
564
|
};
|
|
565
|
+
clearable: {
|
|
566
|
+
type: BooleanConstructor;
|
|
567
|
+
default: boolean;
|
|
568
|
+
};
|
|
561
569
|
}>> & {
|
|
562
570
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
563
571
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -574,6 +582,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
574
582
|
options: OptionType[];
|
|
575
583
|
loading: boolean;
|
|
576
584
|
status: "default" | "error" | "success" | "validating";
|
|
585
|
+
clearable: boolean;
|
|
577
586
|
placeholder: string;
|
|
578
587
|
optionsPlaceholder: string;
|
|
579
588
|
searchPlaceholder: string;
|