@dao-style/core 1.14.1-beta.2 → 1.14.1-beta.3
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/autocomplete/autocomplete.d.ts +13 -13
- package/dist/components/autocomplete/autocomplete.vue.d.ts +4 -4
- package/dist/components/dialog/dialog.d.ts +4 -4
- package/dist/components/dialog/dialog.vue.d.ts +1 -1
- package/dist/components/expansion/expansion-item.d.ts +42 -1
- package/dist/components/expansion/expansion-item.vue.d.ts +19 -0
- package/dist/components/expansion/props.d.ts +9 -0
- package/dist/components/input/input.d.ts +4 -4
- package/dist/components/input/input.vue.d.ts +1 -1
- package/dist/components/select/select.d.ts +4 -4
- package/dist/components/select/select.vue.d.ts +1 -1
- package/dist/components/virtual-select/virtual-select.d.ts +4 -4
- package/dist/components/virtual-select/virtual-select.vue.d.ts +1 -1
- package/dist/dao-style.js +2 -2
- package/dist/dao-style.mjs +1063 -1044
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -8,11 +8,11 @@ declare const DaoAutocomplete: {
|
|
|
8
8
|
$props: Partial<{
|
|
9
9
|
modelValue: import("..").ModalValueType;
|
|
10
10
|
disabled: boolean;
|
|
11
|
+
status: import("..").InputStatus;
|
|
11
12
|
size: import("..").InputSize;
|
|
12
13
|
block: boolean;
|
|
13
14
|
options: AutocompleteOption;
|
|
14
15
|
loading: boolean;
|
|
15
|
-
status: import("..").InputStatus;
|
|
16
16
|
append: string;
|
|
17
17
|
prepend: string;
|
|
18
18
|
placeholder: string;
|
|
@@ -85,7 +85,7 @@ declare const DaoAutocomplete: {
|
|
|
85
85
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
86
86
|
onChange?: ((val: import("..").ModalValueType) => any) | undefined;
|
|
87
87
|
"onUpdate:modelValue"?: ((val: import("..").ModalValueType) => any) | undefined;
|
|
88
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "disabled" | "
|
|
88
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "disabled" | "status" | "size" | "block" | "options" | "loading" | "append" | "prepend" | "placeholder" | "debounce" | "valueKey" | "triggerOnFocus">;
|
|
89
89
|
$attrs: {
|
|
90
90
|
[x: string]: unknown;
|
|
91
91
|
};
|
|
@@ -198,9 +198,9 @@ declare const DaoAutocomplete: {
|
|
|
198
198
|
type: import("..").InputType;
|
|
199
199
|
modelValue: import("..").ModalValueType;
|
|
200
200
|
disabled: boolean;
|
|
201
|
+
status: import("..").InputStatus;
|
|
201
202
|
size: import("..").InputSize;
|
|
202
203
|
block: boolean;
|
|
203
|
-
status: import("..").InputStatus;
|
|
204
204
|
borderless: boolean;
|
|
205
205
|
append: string;
|
|
206
206
|
prepend: string;
|
|
@@ -254,7 +254,7 @@ declare const DaoAutocomplete: {
|
|
|
254
254
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
255
255
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
256
256
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
257
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "
|
|
257
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "status" | "size" | "block" | "borderless" | "append" | "prepend">;
|
|
258
258
|
$attrs: {
|
|
259
259
|
[x: string]: unknown;
|
|
260
260
|
};
|
|
@@ -351,9 +351,9 @@ declare const DaoAutocomplete: {
|
|
|
351
351
|
type: import("..").InputType;
|
|
352
352
|
modelValue: import("..").ModalValueType;
|
|
353
353
|
disabled: boolean;
|
|
354
|
+
status: import("..").InputStatus;
|
|
354
355
|
size: import("..").InputSize;
|
|
355
356
|
block: boolean;
|
|
356
|
-
status: import("..").InputStatus;
|
|
357
357
|
borderless: boolean;
|
|
358
358
|
append: string;
|
|
359
359
|
prepend: string;
|
|
@@ -474,11 +474,11 @@ declare const DaoAutocomplete: {
|
|
|
474
474
|
}, string, {
|
|
475
475
|
modelValue: import("..").ModalValueType;
|
|
476
476
|
disabled: boolean;
|
|
477
|
+
status: import("..").InputStatus;
|
|
477
478
|
size: import("..").InputSize;
|
|
478
479
|
block: boolean;
|
|
479
480
|
options: AutocompleteOption;
|
|
480
481
|
loading: boolean;
|
|
481
|
-
status: import("..").InputStatus;
|
|
482
482
|
append: string;
|
|
483
483
|
prepend: string;
|
|
484
484
|
placeholder: string;
|
|
@@ -604,9 +604,9 @@ declare const DaoAutocomplete: {
|
|
|
604
604
|
type: import("..").InputType;
|
|
605
605
|
modelValue: import("..").ModalValueType;
|
|
606
606
|
disabled: boolean;
|
|
607
|
+
status: import("..").InputStatus;
|
|
607
608
|
size: import("..").InputSize;
|
|
608
609
|
block: boolean;
|
|
609
|
-
status: import("..").InputStatus;
|
|
610
610
|
borderless: boolean;
|
|
611
611
|
append: string;
|
|
612
612
|
prepend: string;
|
|
@@ -660,7 +660,7 @@ declare const DaoAutocomplete: {
|
|
|
660
660
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
661
661
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
662
662
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
663
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "
|
|
663
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "status" | "size" | "block" | "borderless" | "append" | "prepend">;
|
|
664
664
|
$attrs: {
|
|
665
665
|
[x: string]: unknown;
|
|
666
666
|
};
|
|
@@ -757,9 +757,9 @@ declare const DaoAutocomplete: {
|
|
|
757
757
|
type: import("..").InputType;
|
|
758
758
|
modelValue: import("..").ModalValueType;
|
|
759
759
|
disabled: boolean;
|
|
760
|
+
status: import("..").InputStatus;
|
|
760
761
|
size: import("..").InputSize;
|
|
761
762
|
block: boolean;
|
|
762
|
-
status: import("..").InputStatus;
|
|
763
763
|
borderless: boolean;
|
|
764
764
|
append: string;
|
|
765
765
|
prepend: string;
|
|
@@ -975,9 +975,9 @@ declare const DaoAutocomplete: {
|
|
|
975
975
|
type: import("..").InputType;
|
|
976
976
|
modelValue: import("..").ModalValueType;
|
|
977
977
|
disabled: boolean;
|
|
978
|
+
status: import("..").InputStatus;
|
|
978
979
|
size: import("..").InputSize;
|
|
979
980
|
block: boolean;
|
|
980
|
-
status: import("..").InputStatus;
|
|
981
981
|
borderless: boolean;
|
|
982
982
|
append: string;
|
|
983
983
|
prepend: string;
|
|
@@ -1031,7 +1031,7 @@ declare const DaoAutocomplete: {
|
|
|
1031
1031
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1032
1032
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1033
1033
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
1034
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "
|
|
1034
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "status" | "size" | "block" | "borderless" | "append" | "prepend">;
|
|
1035
1035
|
$attrs: {
|
|
1036
1036
|
[x: string]: unknown;
|
|
1037
1037
|
};
|
|
@@ -1128,9 +1128,9 @@ declare const DaoAutocomplete: {
|
|
|
1128
1128
|
type: import("..").InputType;
|
|
1129
1129
|
modelValue: import("..").ModalValueType;
|
|
1130
1130
|
disabled: boolean;
|
|
1131
|
+
status: import("..").InputStatus;
|
|
1131
1132
|
size: import("..").InputSize;
|
|
1132
1133
|
block: boolean;
|
|
1133
|
-
status: import("..").InputStatus;
|
|
1134
1134
|
borderless: boolean;
|
|
1135
1135
|
append: string;
|
|
1136
1136
|
prepend: string;
|
|
@@ -1251,11 +1251,11 @@ declare const DaoAutocomplete: {
|
|
|
1251
1251
|
}, string, {
|
|
1252
1252
|
modelValue: import("..").ModalValueType;
|
|
1253
1253
|
disabled: boolean;
|
|
1254
|
+
status: import("..").InputStatus;
|
|
1254
1255
|
size: import("..").InputSize;
|
|
1255
1256
|
block: boolean;
|
|
1256
1257
|
options: AutocompleteOption;
|
|
1257
1258
|
loading: boolean;
|
|
1258
|
-
status: import("..").InputStatus;
|
|
1259
1259
|
append: string;
|
|
1260
1260
|
prepend: string;
|
|
1261
1261
|
placeholder: string;
|
|
@@ -94,9 +94,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
94
94
|
type: import("../input").InputType;
|
|
95
95
|
modelValue: import("../input").ModalValueType;
|
|
96
96
|
disabled: boolean;
|
|
97
|
+
status: import("../input").InputStatus;
|
|
97
98
|
size: import("../input").InputSize;
|
|
98
99
|
block: boolean;
|
|
99
|
-
status: import("../input").InputStatus;
|
|
100
100
|
borderless: boolean;
|
|
101
101
|
append: string;
|
|
102
102
|
prepend: string;
|
|
@@ -150,7 +150,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
150
150
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
151
151
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
152
152
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
153
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "
|
|
153
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "status" | "size" | "block" | "borderless" | "append" | "prepend">;
|
|
154
154
|
$attrs: {
|
|
155
155
|
[x: string]: unknown;
|
|
156
156
|
};
|
|
@@ -247,9 +247,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
247
247
|
type: import("../input").InputType;
|
|
248
248
|
modelValue: import("../input").ModalValueType;
|
|
249
249
|
disabled: boolean;
|
|
250
|
+
status: import("../input").InputStatus;
|
|
250
251
|
size: import("../input").InputSize;
|
|
251
252
|
block: boolean;
|
|
252
|
-
status: import("../input").InputStatus;
|
|
253
253
|
borderless: boolean;
|
|
254
254
|
append: string;
|
|
255
255
|
prepend: string;
|
|
@@ -436,11 +436,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
436
436
|
}, {
|
|
437
437
|
modelValue: import("../input").ModalValueType;
|
|
438
438
|
disabled: boolean;
|
|
439
|
+
status: import("../input").InputStatus;
|
|
439
440
|
size: import("../input").InputSize;
|
|
440
441
|
block: boolean;
|
|
441
442
|
options: import("./props").AutocompleteOption;
|
|
442
443
|
loading: boolean;
|
|
443
|
-
status: import("../input").InputStatus;
|
|
444
444
|
append: string;
|
|
445
445
|
prepend: string;
|
|
446
446
|
placeholder: string;
|
|
@@ -8,6 +8,7 @@ declare const DaoDialog: {
|
|
|
8
8
|
modelValue: boolean;
|
|
9
9
|
footer: boolean;
|
|
10
10
|
header: string | boolean;
|
|
11
|
+
showClose: boolean;
|
|
11
12
|
top: string;
|
|
12
13
|
bottom: string;
|
|
13
14
|
size: "sm" | "md" | "lg" | "xl";
|
|
@@ -20,7 +21,6 @@ declare const DaoDialog: {
|
|
|
20
21
|
textCancel: string;
|
|
21
22
|
confirmDisabled: boolean;
|
|
22
23
|
confirmLoading: boolean;
|
|
23
|
-
showClose: boolean;
|
|
24
24
|
fullscreen: boolean;
|
|
25
25
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
26
26
|
modelValue: {
|
|
@@ -100,7 +100,7 @@ declare const DaoDialog: {
|
|
|
100
100
|
onOpened?: ((...args: any[]) => any) | undefined;
|
|
101
101
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
102
102
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
103
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "footer" | "header" | "top" | "bottom" | "size" | "middle" | "containerClass" | "closeOnClickOutside" | "closeOnPressEscape" | "lockScroll" | "textConfirm" | "textCancel" | "confirmDisabled" | "confirmLoading" | "
|
|
103
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "footer" | "header" | "showClose" | "top" | "bottom" | "size" | "middle" | "containerClass" | "closeOnClickOutside" | "closeOnPressEscape" | "lockScroll" | "textConfirm" | "textCancel" | "confirmDisabled" | "confirmLoading" | "fullscreen">;
|
|
104
104
|
$attrs: {
|
|
105
105
|
[x: string]: unknown;
|
|
106
106
|
};
|
|
@@ -213,6 +213,7 @@ declare const DaoDialog: {
|
|
|
213
213
|
modelValue: boolean;
|
|
214
214
|
footer: boolean;
|
|
215
215
|
header: string | boolean;
|
|
216
|
+
showClose: boolean;
|
|
216
217
|
top: string;
|
|
217
218
|
bottom: string;
|
|
218
219
|
size: "sm" | "md" | "lg" | "xl";
|
|
@@ -225,7 +226,6 @@ declare const DaoDialog: {
|
|
|
225
226
|
textCancel: string;
|
|
226
227
|
confirmDisabled: boolean;
|
|
227
228
|
confirmLoading: boolean;
|
|
228
|
-
showClose: boolean;
|
|
229
229
|
fullscreen: boolean;
|
|
230
230
|
}, {}, string> & {
|
|
231
231
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -445,6 +445,7 @@ declare const DaoDialog: {
|
|
|
445
445
|
modelValue: boolean;
|
|
446
446
|
footer: boolean;
|
|
447
447
|
header: string | boolean;
|
|
448
|
+
showClose: boolean;
|
|
448
449
|
top: string;
|
|
449
450
|
bottom: string;
|
|
450
451
|
size: "sm" | "md" | "lg" | "xl";
|
|
@@ -457,7 +458,6 @@ declare const DaoDialog: {
|
|
|
457
458
|
textCancel: string;
|
|
458
459
|
confirmDisabled: boolean;
|
|
459
460
|
confirmLoading: boolean;
|
|
460
|
-
showClose: boolean;
|
|
461
461
|
fullscreen: boolean;
|
|
462
462
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
463
463
|
$props: Partial<DialogProps>;
|
|
@@ -166,6 +166,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
166
166
|
modelValue: boolean;
|
|
167
167
|
footer: boolean;
|
|
168
168
|
header: string | boolean;
|
|
169
|
+
showClose: boolean;
|
|
169
170
|
top: string;
|
|
170
171
|
bottom: string;
|
|
171
172
|
size: "sm" | "md" | "lg" | "xl";
|
|
@@ -178,7 +179,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
178
179
|
textCancel: string;
|
|
179
180
|
confirmDisabled: boolean;
|
|
180
181
|
confirmLoading: boolean;
|
|
181
|
-
showClose: boolean;
|
|
182
182
|
fullscreen: boolean;
|
|
183
183
|
}>;
|
|
184
184
|
export default _default;
|
|
@@ -5,6 +5,8 @@ declare const DaoExpansionItem: {
|
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
7
|
title: string;
|
|
8
|
+
showClose: boolean;
|
|
9
|
+
status: import("./props").ExpansionItemStatus;
|
|
8
10
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
9
11
|
name: {
|
|
10
12
|
type: import("vue").PropType<import("./props").ExpansionName>;
|
|
@@ -14,9 +16,17 @@ declare const DaoExpansionItem: {
|
|
|
14
16
|
type: StringConstructor;
|
|
15
17
|
default: string;
|
|
16
18
|
};
|
|
19
|
+
showClose: {
|
|
20
|
+
type: import("vue").PropType<boolean>;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
status: {
|
|
24
|
+
type: import("vue").PropType<import("./props").ExpansionItemStatus>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
17
27
|
}>> & {
|
|
18
28
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title">;
|
|
29
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "showClose" | "status">;
|
|
20
30
|
$attrs: {
|
|
21
31
|
[x: string]: unknown;
|
|
22
32
|
};
|
|
@@ -39,6 +49,14 @@ declare const DaoExpansionItem: {
|
|
|
39
49
|
type: StringConstructor;
|
|
40
50
|
default: string;
|
|
41
51
|
};
|
|
52
|
+
showClose: {
|
|
53
|
+
type: import("vue").PropType<boolean>;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
status: {
|
|
57
|
+
type: import("vue").PropType<import("./props").ExpansionItemStatus>;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
42
60
|
}>> & {
|
|
43
61
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
44
62
|
}, {
|
|
@@ -46,6 +64,7 @@ declare const DaoExpansionItem: {
|
|
|
46
64
|
isExpanded: import("vue").ComputedRef<boolean>;
|
|
47
65
|
expansionType: import("vue").ComputedRef<"line" | "box" | "doc" | undefined>;
|
|
48
66
|
expansionMode: import("vue").ComputedRef<"manual" | "auto" | undefined>;
|
|
67
|
+
statusClasses: import("vue").ComputedRef<string>;
|
|
49
68
|
onBeforeEnter: (el: Element) => void;
|
|
50
69
|
onEnter: (el: Element) => void;
|
|
51
70
|
onAfterEnter: (el: Element) => void;
|
|
@@ -54,6 +73,8 @@ declare const DaoExpansionItem: {
|
|
|
54
73
|
onAfterLeave: (el: Element) => void;
|
|
55
74
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
|
|
56
75
|
title: string;
|
|
76
|
+
showClose: boolean;
|
|
77
|
+
status: import("./props").ExpansionItemStatus;
|
|
57
78
|
}, {}, string> & {
|
|
58
79
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
59
80
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -83,6 +104,14 @@ declare const DaoExpansionItem: {
|
|
|
83
104
|
type: StringConstructor;
|
|
84
105
|
default: string;
|
|
85
106
|
};
|
|
107
|
+
showClose: {
|
|
108
|
+
type: import("vue").PropType<boolean>;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
status: {
|
|
112
|
+
type: import("vue").PropType<import("./props").ExpansionItemStatus>;
|
|
113
|
+
default: string;
|
|
114
|
+
};
|
|
86
115
|
}>> & {
|
|
87
116
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
88
117
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -90,6 +119,7 @@ declare const DaoExpansionItem: {
|
|
|
90
119
|
isExpanded: import("vue").ComputedRef<boolean>;
|
|
91
120
|
expansionType: import("vue").ComputedRef<"line" | "box" | "doc" | undefined>;
|
|
92
121
|
expansionMode: import("vue").ComputedRef<"manual" | "auto" | undefined>;
|
|
122
|
+
statusClasses: import("vue").ComputedRef<string>;
|
|
93
123
|
onBeforeEnter: (el: Element) => void;
|
|
94
124
|
onEnter: (el: Element) => void;
|
|
95
125
|
onAfterEnter: (el: Element) => void;
|
|
@@ -109,6 +139,14 @@ declare const DaoExpansionItem: {
|
|
|
109
139
|
type: StringConstructor;
|
|
110
140
|
default: string;
|
|
111
141
|
};
|
|
142
|
+
showClose: {
|
|
143
|
+
type: import("vue").PropType<boolean>;
|
|
144
|
+
default: boolean;
|
|
145
|
+
};
|
|
146
|
+
status: {
|
|
147
|
+
type: import("vue").PropType<import("./props").ExpansionItemStatus>;
|
|
148
|
+
default: string;
|
|
149
|
+
};
|
|
112
150
|
}>> & {
|
|
113
151
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
114
152
|
}, {
|
|
@@ -116,6 +154,7 @@ declare const DaoExpansionItem: {
|
|
|
116
154
|
isExpanded: import("vue").ComputedRef<boolean>;
|
|
117
155
|
expansionType: import("vue").ComputedRef<"line" | "box" | "doc" | undefined>;
|
|
118
156
|
expansionMode: import("vue").ComputedRef<"manual" | "auto" | undefined>;
|
|
157
|
+
statusClasses: import("vue").ComputedRef<string>;
|
|
119
158
|
onBeforeEnter: (el: Element) => void;
|
|
120
159
|
onEnter: (el: Element) => void;
|
|
121
160
|
onAfterEnter: (el: Element) => void;
|
|
@@ -124,6 +163,8 @@ declare const DaoExpansionItem: {
|
|
|
124
163
|
onAfterLeave: (el: Element) => void;
|
|
125
164
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {
|
|
126
165
|
title: string;
|
|
166
|
+
showClose: boolean;
|
|
167
|
+
status: import("./props").ExpansionItemStatus;
|
|
127
168
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
128
169
|
$slots: {
|
|
129
170
|
default: SlotFn;
|
|
@@ -7,11 +7,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
|
+
showClose: {
|
|
11
|
+
type: import("vue").PropType<boolean>;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
status: {
|
|
15
|
+
type: import("vue").PropType<import("./props").ExpansionItemStatus>;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
10
18
|
}, {
|
|
11
19
|
onItemClick: () => void;
|
|
12
20
|
isExpanded: import("vue").ComputedRef<boolean>;
|
|
13
21
|
expansionType: import("vue").ComputedRef<"line" | "box" | "doc" | undefined>;
|
|
14
22
|
expansionMode: import("vue").ComputedRef<"manual" | "auto" | undefined>;
|
|
23
|
+
statusClasses: import("vue").ComputedRef<string>;
|
|
15
24
|
onBeforeEnter: (el: Element) => void;
|
|
16
25
|
onEnter: (el: Element) => void;
|
|
17
26
|
onAfterEnter: (el: Element) => void;
|
|
@@ -27,9 +36,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
36
|
type: StringConstructor;
|
|
28
37
|
default: string;
|
|
29
38
|
};
|
|
39
|
+
showClose: {
|
|
40
|
+
type: import("vue").PropType<boolean>;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
status: {
|
|
44
|
+
type: import("vue").PropType<import("./props").ExpansionItemStatus>;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
30
47
|
}>> & {
|
|
31
48
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
32
49
|
}, {
|
|
33
50
|
title: string;
|
|
51
|
+
showClose: boolean;
|
|
52
|
+
status: import("./props").ExpansionItemStatus;
|
|
34
53
|
}>;
|
|
35
54
|
export default _default;
|
|
@@ -24,6 +24,7 @@ export declare const expansionEmits: {
|
|
|
24
24
|
'update:modelValue': (content?: ExpansionModelValue) => void;
|
|
25
25
|
change: (content?: ExpansionModelValue) => void;
|
|
26
26
|
};
|
|
27
|
+
export type ExpansionItemStatus = 'default' | 'error' | 'success';
|
|
27
28
|
export declare const expansionItemProps: {
|
|
28
29
|
name: {
|
|
29
30
|
type: PropType<ExpansionName>;
|
|
@@ -33,6 +34,14 @@ export declare const expansionItemProps: {
|
|
|
33
34
|
type: StringConstructor;
|
|
34
35
|
default: string;
|
|
35
36
|
};
|
|
37
|
+
showClose: {
|
|
38
|
+
type: PropType<boolean>;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
status: {
|
|
42
|
+
type: PropType<ExpansionItemStatus>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
36
45
|
};
|
|
37
46
|
export declare const expansionItemEmits: {
|
|
38
47
|
close: (content?: ExpansionName) => void;
|
|
@@ -8,9 +8,9 @@ declare const DaoInput: {
|
|
|
8
8
|
type: import("./props").InputType;
|
|
9
9
|
modelValue: import("./props").ModalValueType;
|
|
10
10
|
disabled: boolean;
|
|
11
|
+
status: import("./props").InputStatus;
|
|
11
12
|
size: import("./props").InputSize;
|
|
12
13
|
block: boolean;
|
|
13
|
-
status: import("./props").InputStatus;
|
|
14
14
|
borderless: boolean;
|
|
15
15
|
append: string;
|
|
16
16
|
prepend: string;
|
|
@@ -64,7 +64,7 @@ declare const DaoInput: {
|
|
|
64
64
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
65
65
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
66
66
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
67
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "
|
|
67
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "disabled" | "status" | "size" | "block" | "borderless" | "append" | "prepend">;
|
|
68
68
|
$attrs: {
|
|
69
69
|
[x: string]: unknown;
|
|
70
70
|
};
|
|
@@ -161,9 +161,9 @@ declare const DaoInput: {
|
|
|
161
161
|
type: import("./props").InputType;
|
|
162
162
|
modelValue: import("./props").ModalValueType;
|
|
163
163
|
disabled: boolean;
|
|
164
|
+
status: import("./props").InputStatus;
|
|
164
165
|
size: import("./props").InputSize;
|
|
165
166
|
block: boolean;
|
|
166
|
-
status: import("./props").InputStatus;
|
|
167
167
|
borderless: boolean;
|
|
168
168
|
append: string;
|
|
169
169
|
prepend: string;
|
|
@@ -353,9 +353,9 @@ declare const DaoInput: {
|
|
|
353
353
|
type: import("./props").InputType;
|
|
354
354
|
modelValue: import("./props").ModalValueType;
|
|
355
355
|
disabled: boolean;
|
|
356
|
+
status: import("./props").InputStatus;
|
|
356
357
|
size: import("./props").InputSize;
|
|
357
358
|
block: boolean;
|
|
358
|
-
status: import("./props").InputStatus;
|
|
359
359
|
borderless: boolean;
|
|
360
360
|
append: string;
|
|
361
361
|
prepend: string;
|
|
@@ -125,9 +125,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
125
|
type: import("./props").InputType;
|
|
126
126
|
modelValue: ModalValueType;
|
|
127
127
|
disabled: boolean;
|
|
128
|
+
status: import("./props").InputStatus;
|
|
128
129
|
size: import("./props").InputSize;
|
|
129
130
|
block: boolean;
|
|
130
|
-
status: import("./props").InputStatus;
|
|
131
131
|
borderless: boolean;
|
|
132
132
|
append: string;
|
|
133
133
|
prepend: string;
|
|
@@ -9,11 +9,11 @@ declare const DaoSelect: {
|
|
|
9
9
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
10
10
|
modelValue: string | number | boolean | unknown[];
|
|
11
11
|
disabled: boolean;
|
|
12
|
+
status: "default" | "error" | "success";
|
|
12
13
|
appendTo: string | false | HTMLElement;
|
|
13
14
|
size: string;
|
|
14
15
|
multiple: boolean;
|
|
15
16
|
loading: boolean;
|
|
16
|
-
status: "default" | "error" | "success";
|
|
17
17
|
clearable: boolean;
|
|
18
18
|
placeholder: string;
|
|
19
19
|
optionsPlaceholder: string;
|
|
@@ -101,7 +101,7 @@ declare const DaoSelect: {
|
|
|
101
101
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
102
102
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
103
103
|
"onLoad-more"?: ((...args: any[]) => any) | undefined;
|
|
104
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "
|
|
104
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "status" | "appendTo" | "size" | "multiple" | "loading" | "clearable" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "optionLoading" | "hideSelectAll" | "enableLazyLoad" | "lazyLoadOptions">;
|
|
105
105
|
$attrs: {
|
|
106
106
|
[x: string]: unknown;
|
|
107
107
|
};
|
|
@@ -638,11 +638,11 @@ declare const DaoSelect: {
|
|
|
638
638
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
639
639
|
modelValue: string | number | boolean | unknown[];
|
|
640
640
|
disabled: boolean;
|
|
641
|
+
status: "default" | "error" | "success";
|
|
641
642
|
appendTo: string | false | HTMLElement;
|
|
642
643
|
size: string;
|
|
643
644
|
multiple: boolean;
|
|
644
645
|
loading: boolean;
|
|
645
|
-
status: "default" | "error" | "success";
|
|
646
646
|
clearable: boolean;
|
|
647
647
|
placeholder: string;
|
|
648
648
|
optionsPlaceholder: string;
|
|
@@ -1718,11 +1718,11 @@ declare const DaoSelect: {
|
|
|
1718
1718
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
1719
1719
|
modelValue: string | number | boolean | unknown[];
|
|
1720
1720
|
disabled: boolean;
|
|
1721
|
+
status: "default" | "error" | "success";
|
|
1721
1722
|
appendTo: string | false | HTMLElement;
|
|
1722
1723
|
size: string;
|
|
1723
1724
|
multiple: boolean;
|
|
1724
1725
|
loading: boolean;
|
|
1725
|
-
status: "default" | "error" | "success";
|
|
1726
1726
|
clearable: boolean;
|
|
1727
1727
|
placeholder: string;
|
|
1728
1728
|
optionsPlaceholder: string;
|
|
@@ -594,11 +594,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
594
594
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
595
595
|
modelValue: string | number | boolean | unknown[];
|
|
596
596
|
disabled: boolean;
|
|
597
|
+
status: "default" | "error" | "success";
|
|
597
598
|
appendTo: string | false | HTMLElement;
|
|
598
599
|
size: string;
|
|
599
600
|
multiple: boolean;
|
|
600
601
|
loading: boolean;
|
|
601
|
-
status: "default" | "error" | "success";
|
|
602
602
|
clearable: boolean;
|
|
603
603
|
placeholder: string;
|
|
604
604
|
optionsPlaceholder: string;
|
|
@@ -10,12 +10,12 @@ declare const DaoVirtualSelect: {
|
|
|
10
10
|
search: boolean | import("./types").DaoVirtualSelectSearchFn;
|
|
11
11
|
modelValue: string | number | boolean | unknown[];
|
|
12
12
|
disabled: boolean;
|
|
13
|
+
status: "default" | "error" | "success";
|
|
13
14
|
appendTo: string | false | HTMLElement;
|
|
14
15
|
size: string;
|
|
15
16
|
multiple: boolean;
|
|
16
17
|
options: string[] | OptionType[];
|
|
17
18
|
loading: boolean;
|
|
18
|
-
status: "default" | "error" | "success";
|
|
19
19
|
clearable: boolean;
|
|
20
20
|
placeholder: string;
|
|
21
21
|
optionsPlaceholder: string;
|
|
@@ -122,7 +122,7 @@ declare const DaoVirtualSelect: {
|
|
|
122
122
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
123
123
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
124
124
|
"onLoad-more"?: ((...args: any[]) => any) | undefined;
|
|
125
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "appendTo" | "size" | "multiple" | "options" | "loading" | "
|
|
125
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "modelValue" | "disabled" | "status" | "appendTo" | "size" | "multiple" | "options" | "loading" | "clearable" | "placeholder" | "optionsPlaceholder" | "searchPlaceholder" | "menuClass" | "optionLoading" | "hideSelectAll" | "enableLazyLoad" | "lazyLoadOptions" | "valueKey" | "labelKey" | "itemHeight">;
|
|
126
126
|
$attrs: {
|
|
127
127
|
[x: string]: unknown;
|
|
128
128
|
};
|
|
@@ -645,12 +645,12 @@ declare const DaoVirtualSelect: {
|
|
|
645
645
|
search: boolean | import("./types").DaoVirtualSelectSearchFn;
|
|
646
646
|
modelValue: string | number | boolean | unknown[];
|
|
647
647
|
disabled: boolean;
|
|
648
|
+
status: "default" | "error" | "success";
|
|
648
649
|
appendTo: string | false | HTMLElement;
|
|
649
650
|
size: string;
|
|
650
651
|
multiple: boolean;
|
|
651
652
|
options: string[] | OptionType[];
|
|
652
653
|
loading: boolean;
|
|
653
|
-
status: "default" | "error" | "success";
|
|
654
654
|
clearable: boolean;
|
|
655
655
|
placeholder: string;
|
|
656
656
|
optionsPlaceholder: string;
|
|
@@ -1701,12 +1701,12 @@ declare const DaoVirtualSelect: {
|
|
|
1701
1701
|
search: boolean | import("./types").DaoVirtualSelectSearchFn;
|
|
1702
1702
|
modelValue: string | number | boolean | unknown[];
|
|
1703
1703
|
disabled: boolean;
|
|
1704
|
+
status: "default" | "error" | "success";
|
|
1704
1705
|
appendTo: string | false | HTMLElement;
|
|
1705
1706
|
size: string;
|
|
1706
1707
|
multiple: boolean;
|
|
1707
1708
|
options: string[] | OptionType[];
|
|
1708
1709
|
loading: boolean;
|
|
1709
|
-
status: "default" | "error" | "success";
|
|
1710
1710
|
clearable: boolean;
|
|
1711
1711
|
placeholder: string;
|
|
1712
1712
|
optionsPlaceholder: string;
|
|
@@ -597,12 +597,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
597
597
|
search: boolean | import("./types").DaoVirtualSelectSearchFn;
|
|
598
598
|
modelValue: string | number | boolean | unknown[];
|
|
599
599
|
disabled: boolean;
|
|
600
|
+
status: "default" | "error" | "success";
|
|
600
601
|
appendTo: string | false | HTMLElement;
|
|
601
602
|
size: string;
|
|
602
603
|
multiple: boolean;
|
|
603
604
|
options: string[] | OptionType[];
|
|
604
605
|
loading: boolean;
|
|
605
|
-
status: "default" | "error" | "success";
|
|
606
606
|
clearable: boolean;
|
|
607
607
|
placeholder: string;
|
|
608
608
|
optionsPlaceholder: string;
|