@dao-style/core 1.17.1-beta.2 → 1.18.0
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/dialog/dialog-header.d.ts +23 -1
- package/dist/components/dialog/dialog-header.vue.d.ts +11 -0
- package/dist/components/dialog/dialog.d.ts +20 -1
- package/dist/components/dialog/dialog.vue.d.ts +9 -0
- package/dist/components/dialog/props.d.ts +9 -0
- package/dist/components/form/form-item.d.ts +4 -4
- package/dist/components/form/form-item.vue.d.ts +1 -1
- package/dist/components/message/types.d.ts +2 -1
- package/dist/components/select/props.d.ts +1 -1
- package/dist/components/select/select.d.ts +11 -11
- package/dist/components/select/select.vue.d.ts +5 -5
- package/dist/components/table/table.d.ts +1 -0
- package/dist/components/toolbar/toolbar.d.ts +1 -0
- package/dist/components/virtual-select/props.d.ts +2 -2
- package/dist/components/virtual-select/virtual-select.d.ts +11 -11
- package/dist/components/virtual-select/virtual-select.vue.d.ts +5 -5
- package/dist/dao-style.js +2 -2
- package/dist/dao-style.mjs +398 -360
- package/dist/style.css +1 -1
- package/dist/styles/color/alias.css +88 -0
- package/dist/styles/color/alias.js +22 -0
- package/dist/styles/color/alias.json +44 -0
- package/dist/styles/color/alias.scss +22 -0
- package/dist/utils/types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -7,7 +7,12 @@ declare const DaoDialogHeader: {
|
|
|
7
7
|
$props: Partial<{
|
|
8
8
|
title: string;
|
|
9
9
|
showClose: boolean;
|
|
10
|
+
dialogType: import("../../utils/types").AlertType;
|
|
10
11
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
dialogType: {
|
|
13
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
14
|
+
default: undefined;
|
|
15
|
+
};
|
|
11
16
|
showClose: {
|
|
12
17
|
type: BooleanConstructor;
|
|
13
18
|
default: boolean;
|
|
@@ -18,7 +23,7 @@ declare const DaoDialogHeader: {
|
|
|
18
23
|
};
|
|
19
24
|
}>> & {
|
|
20
25
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
21
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "showClose">;
|
|
26
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "showClose" | "dialogType">;
|
|
22
27
|
$attrs: {
|
|
23
28
|
[x: string]: unknown;
|
|
24
29
|
};
|
|
@@ -33,6 +38,10 @@ declare const DaoDialogHeader: {
|
|
|
33
38
|
$emit: (event: "close", ...args: any[]) => void;
|
|
34
39
|
$el: any;
|
|
35
40
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
dialogType: {
|
|
42
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
43
|
+
default: undefined;
|
|
44
|
+
};
|
|
36
45
|
showClose: {
|
|
37
46
|
type: BooleanConstructor;
|
|
38
47
|
default: boolean;
|
|
@@ -44,10 +53,12 @@ declare const DaoDialogHeader: {
|
|
|
44
53
|
}>> & {
|
|
45
54
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
46
55
|
}, {
|
|
56
|
+
typeIconsMap: Record<import("../../utils/types").AlertType, string>;
|
|
47
57
|
onClose: () => void;
|
|
48
58
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
|
|
49
59
|
title: string;
|
|
50
60
|
showClose: boolean;
|
|
61
|
+
dialogType: import("../../utils/types").AlertType;
|
|
51
62
|
}, {}, string> & {
|
|
52
63
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
53
64
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -69,6 +80,10 @@ declare const DaoDialogHeader: {
|
|
|
69
80
|
$nextTick: typeof import("vue").nextTick;
|
|
70
81
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
71
82
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
83
|
+
dialogType: {
|
|
84
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
72
87
|
showClose: {
|
|
73
88
|
type: BooleanConstructor;
|
|
74
89
|
default: boolean;
|
|
@@ -80,12 +95,17 @@ declare const DaoDialogHeader: {
|
|
|
80
95
|
}>> & {
|
|
81
96
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
82
97
|
} & import("vue").ShallowUnwrapRef<{
|
|
98
|
+
typeIconsMap: Record<import("../../utils/types").AlertType, string>;
|
|
83
99
|
onClose: () => void;
|
|
84
100
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
85
101
|
__isFragment?: undefined;
|
|
86
102
|
__isTeleport?: undefined;
|
|
87
103
|
__isSuspense?: undefined;
|
|
88
104
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
105
|
+
dialogType: {
|
|
106
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
107
|
+
default: undefined;
|
|
108
|
+
};
|
|
89
109
|
showClose: {
|
|
90
110
|
type: BooleanConstructor;
|
|
91
111
|
default: boolean;
|
|
@@ -97,10 +117,12 @@ declare const DaoDialogHeader: {
|
|
|
97
117
|
}>> & {
|
|
98
118
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
99
119
|
}, {
|
|
120
|
+
typeIconsMap: Record<import("../../utils/types").AlertType, string>;
|
|
100
121
|
onClose: () => void;
|
|
101
122
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {
|
|
102
123
|
title: string;
|
|
103
124
|
showClose: boolean;
|
|
125
|
+
dialogType: import("../../utils/types").AlertType;
|
|
104
126
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
105
127
|
$props: Partial<DialogHeaderProps>;
|
|
106
128
|
$slots: {
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
+
import type { AlertType } from '@/utils';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
dialogType: {
|
|
4
|
+
type: import("vue").PropType<AlertType>;
|
|
5
|
+
default: undefined;
|
|
6
|
+
};
|
|
2
7
|
showClose: {
|
|
3
8
|
type: BooleanConstructor;
|
|
4
9
|
default: boolean;
|
|
@@ -8,8 +13,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
13
|
default: string;
|
|
9
14
|
};
|
|
10
15
|
}, {
|
|
16
|
+
typeIconsMap: Record<AlertType, string>;
|
|
11
17
|
onClose: () => void;
|
|
12
18
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
dialogType: {
|
|
20
|
+
type: import("vue").PropType<AlertType>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
13
23
|
showClose: {
|
|
14
24
|
type: BooleanConstructor;
|
|
15
25
|
default: boolean;
|
|
@@ -23,5 +33,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
33
|
}, {
|
|
24
34
|
title: string;
|
|
25
35
|
showClose: boolean;
|
|
36
|
+
dialogType: AlertType;
|
|
26
37
|
}>;
|
|
27
38
|
export default _default;
|
|
@@ -13,6 +13,7 @@ declare const DaoDialog: {
|
|
|
13
13
|
bottom: string;
|
|
14
14
|
size: "sm" | "md" | "lg" | "xl";
|
|
15
15
|
middle: boolean;
|
|
16
|
+
dialogType: import("../../utils/types").AlertType;
|
|
16
17
|
containerClass: string;
|
|
17
18
|
closeOnClickOutside: boolean;
|
|
18
19
|
closeOnPressEscape: boolean;
|
|
@@ -27,6 +28,10 @@ declare const DaoDialog: {
|
|
|
27
28
|
type: BooleanConstructor;
|
|
28
29
|
default: boolean;
|
|
29
30
|
};
|
|
31
|
+
dialogType: {
|
|
32
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
30
35
|
header: {
|
|
31
36
|
type: (StringConstructor | BooleanConstructor)[];
|
|
32
37
|
default: string;
|
|
@@ -100,7 +105,7 @@ declare const DaoDialog: {
|
|
|
100
105
|
onOpened?: ((...args: any[]) => any) | undefined;
|
|
101
106
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
102
107
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
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">;
|
|
108
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "footer" | "header" | "showClose" | "top" | "bottom" | "size" | "middle" | "dialogType" | "containerClass" | "closeOnClickOutside" | "closeOnPressEscape" | "lockScroll" | "textConfirm" | "textCancel" | "confirmDisabled" | "confirmLoading" | "fullscreen">;
|
|
104
109
|
$attrs: {
|
|
105
110
|
[x: string]: unknown;
|
|
106
111
|
};
|
|
@@ -119,6 +124,10 @@ declare const DaoDialog: {
|
|
|
119
124
|
type: BooleanConstructor;
|
|
120
125
|
default: boolean;
|
|
121
126
|
};
|
|
127
|
+
dialogType: {
|
|
128
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
129
|
+
default: undefined;
|
|
130
|
+
};
|
|
122
131
|
header: {
|
|
123
132
|
type: (StringConstructor | BooleanConstructor)[];
|
|
124
133
|
default: string;
|
|
@@ -218,6 +227,7 @@ declare const DaoDialog: {
|
|
|
218
227
|
bottom: string;
|
|
219
228
|
size: "sm" | "md" | "lg" | "xl";
|
|
220
229
|
middle: boolean;
|
|
230
|
+
dialogType: import("../../utils/types").AlertType;
|
|
221
231
|
containerClass: string;
|
|
222
232
|
closeOnClickOutside: boolean;
|
|
223
233
|
closeOnPressEscape: boolean;
|
|
@@ -252,6 +262,10 @@ declare const DaoDialog: {
|
|
|
252
262
|
type: BooleanConstructor;
|
|
253
263
|
default: boolean;
|
|
254
264
|
};
|
|
265
|
+
dialogType: {
|
|
266
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
267
|
+
default: undefined;
|
|
268
|
+
};
|
|
255
269
|
header: {
|
|
256
270
|
type: (StringConstructor | BooleanConstructor)[];
|
|
257
271
|
default: string;
|
|
@@ -351,6 +365,10 @@ declare const DaoDialog: {
|
|
|
351
365
|
type: BooleanConstructor;
|
|
352
366
|
default: boolean;
|
|
353
367
|
};
|
|
368
|
+
dialogType: {
|
|
369
|
+
type: import("vue").PropType<import("../../utils/types").AlertType>;
|
|
370
|
+
default: undefined;
|
|
371
|
+
};
|
|
354
372
|
header: {
|
|
355
373
|
type: (StringConstructor | BooleanConstructor)[];
|
|
356
374
|
default: string;
|
|
@@ -450,6 +468,7 @@ declare const DaoDialog: {
|
|
|
450
468
|
bottom: string;
|
|
451
469
|
size: "sm" | "md" | "lg" | "xl";
|
|
452
470
|
middle: boolean;
|
|
471
|
+
dialogType: import("../../utils/types").AlertType;
|
|
453
472
|
containerClass: string;
|
|
454
473
|
closeOnClickOutside: boolean;
|
|
455
474
|
closeOnPressEscape: boolean;
|
|
@@ -3,6 +3,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
5
5
|
};
|
|
6
|
+
dialogType: {
|
|
7
|
+
type: import("vue").PropType<import("../..").AlertType>;
|
|
8
|
+
default: undefined;
|
|
9
|
+
};
|
|
6
10
|
header: {
|
|
7
11
|
type: (StringConstructor | BooleanConstructor)[];
|
|
8
12
|
default: string;
|
|
@@ -89,6 +93,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
93
|
type: BooleanConstructor;
|
|
90
94
|
default: boolean;
|
|
91
95
|
};
|
|
96
|
+
dialogType: {
|
|
97
|
+
type: import("vue").PropType<import("../..").AlertType>;
|
|
98
|
+
default: undefined;
|
|
99
|
+
};
|
|
92
100
|
header: {
|
|
93
101
|
type: (StringConstructor | BooleanConstructor)[];
|
|
94
102
|
default: string;
|
|
@@ -171,6 +179,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
179
|
bottom: string;
|
|
172
180
|
size: "sm" | "md" | "lg" | "xl";
|
|
173
181
|
middle: boolean;
|
|
182
|
+
dialogType: import("../..").AlertType;
|
|
174
183
|
containerClass: string;
|
|
175
184
|
closeOnClickOutside: boolean;
|
|
176
185
|
closeOnPressEscape: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PropType, ExtractPropTypes } from 'vue';
|
|
2
|
+
import { type AlertType } from '../../utils/types';
|
|
2
3
|
export declare const DIALOG_NUM_ATTR = "dao-dialog__num";
|
|
3
4
|
export declare const DIALOG_MINIMUM_PADDING = "20px";
|
|
4
5
|
export declare const DIALOG_DEFAULT_PADDING_TOP = "100px";
|
|
@@ -23,6 +24,10 @@ export declare const dialogFooterProps: {
|
|
|
23
24
|
};
|
|
24
25
|
};
|
|
25
26
|
export declare const dialogHeaderProps: {
|
|
27
|
+
dialogType: {
|
|
28
|
+
type: PropType<AlertType>;
|
|
29
|
+
default: undefined;
|
|
30
|
+
};
|
|
26
31
|
showClose: {
|
|
27
32
|
type: BooleanConstructor;
|
|
28
33
|
default: boolean;
|
|
@@ -37,6 +42,10 @@ export declare const dialogProps: {
|
|
|
37
42
|
type: BooleanConstructor;
|
|
38
43
|
default: boolean;
|
|
39
44
|
};
|
|
45
|
+
dialogType: {
|
|
46
|
+
type: PropType<AlertType>;
|
|
47
|
+
default: undefined;
|
|
48
|
+
};
|
|
40
49
|
header: {
|
|
41
50
|
type: (StringConstructor | BooleanConstructor)[];
|
|
42
51
|
default: string;
|
|
@@ -4,9 +4,9 @@ declare const DaoFormItem: {
|
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
|
5
5
|
$data: {};
|
|
6
6
|
$props: Partial<{
|
|
7
|
+
error: string;
|
|
7
8
|
label: string;
|
|
8
9
|
required: boolean;
|
|
9
|
-
error: string;
|
|
10
10
|
helper: string;
|
|
11
11
|
paddingBottom: string | number;
|
|
12
12
|
paddingTop: string | number;
|
|
@@ -50,7 +50,7 @@ declare const DaoFormItem: {
|
|
|
50
50
|
type: import("vue").PropType<string>;
|
|
51
51
|
default: undefined;
|
|
52
52
|
};
|
|
53
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
53
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "label" | "required" | "helper" | "paddingBottom" | "paddingTop" | "labelWidth" | "wrapperType" | "iconMessage">;
|
|
54
54
|
$attrs: {
|
|
55
55
|
[x: string]: unknown;
|
|
56
56
|
};
|
|
@@ -131,9 +131,9 @@ declare const DaoFormItem: {
|
|
|
131
131
|
};
|
|
132
132
|
};
|
|
133
133
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
134
|
+
error: string;
|
|
134
135
|
label: string;
|
|
135
136
|
required: boolean;
|
|
136
|
-
error: string;
|
|
137
137
|
helper: string;
|
|
138
138
|
paddingBottom: string | number;
|
|
139
139
|
paddingTop: string | number;
|
|
@@ -297,9 +297,9 @@ declare const DaoFormItem: {
|
|
|
297
297
|
};
|
|
298
298
|
};
|
|
299
299
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
300
|
+
error: string;
|
|
300
301
|
label: string;
|
|
301
302
|
required: boolean;
|
|
302
|
-
error: string;
|
|
303
303
|
helper: string;
|
|
304
304
|
paddingBottom: string | number;
|
|
305
305
|
paddingTop: string | number;
|
|
@@ -102,9 +102,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
102
|
default: undefined;
|
|
103
103
|
};
|
|
104
104
|
}>>, {
|
|
105
|
+
error: string;
|
|
105
106
|
label: string;
|
|
106
107
|
required: boolean;
|
|
107
|
-
error: string;
|
|
108
108
|
helper: string;
|
|
109
109
|
paddingBottom: string | number;
|
|
110
110
|
paddingTop: string | number;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import type { AlertType } from '@/utils';
|
|
2
|
+
export type DaoMessageType = AlertType | 'custom';
|
|
@@ -9,7 +9,7 @@ declare const DaoSelect: {
|
|
|
9
9
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
10
10
|
modelValue: string | number | boolean | unknown[];
|
|
11
11
|
disabled: boolean;
|
|
12
|
-
status: "
|
|
12
|
+
status: "error" | "success" | "default";
|
|
13
13
|
appendTo: string | false | HTMLElement;
|
|
14
14
|
size: string;
|
|
15
15
|
multiple: boolean;
|
|
@@ -66,9 +66,9 @@ declare const DaoSelect: {
|
|
|
66
66
|
default: boolean;
|
|
67
67
|
};
|
|
68
68
|
status: {
|
|
69
|
-
type: import("vue").PropType<"
|
|
69
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
70
70
|
default: string;
|
|
71
|
-
validator: (value: "
|
|
71
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
72
72
|
};
|
|
73
73
|
loading: {
|
|
74
74
|
type: BooleanConstructor;
|
|
@@ -158,9 +158,9 @@ declare const DaoSelect: {
|
|
|
158
158
|
default: boolean;
|
|
159
159
|
};
|
|
160
160
|
status: {
|
|
161
|
-
type: import("vue").PropType<"
|
|
161
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
162
162
|
default: string;
|
|
163
|
-
validator: (value: "
|
|
163
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
164
164
|
};
|
|
165
165
|
loading: {
|
|
166
166
|
type: BooleanConstructor;
|
|
@@ -638,7 +638,7 @@ declare const DaoSelect: {
|
|
|
638
638
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
639
639
|
modelValue: string | number | boolean | unknown[];
|
|
640
640
|
disabled: boolean;
|
|
641
|
-
status: "
|
|
641
|
+
status: "error" | "success" | "default";
|
|
642
642
|
appendTo: string | false | HTMLElement;
|
|
643
643
|
size: string;
|
|
644
644
|
multiple: boolean;
|
|
@@ -715,9 +715,9 @@ declare const DaoSelect: {
|
|
|
715
715
|
default: boolean;
|
|
716
716
|
};
|
|
717
717
|
status: {
|
|
718
|
-
type: import("vue").PropType<"
|
|
718
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
719
719
|
default: string;
|
|
720
|
-
validator: (value: "
|
|
720
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
721
721
|
};
|
|
722
722
|
loading: {
|
|
723
723
|
type: BooleanConstructor;
|
|
@@ -1238,9 +1238,9 @@ declare const DaoSelect: {
|
|
|
1238
1238
|
default: boolean;
|
|
1239
1239
|
};
|
|
1240
1240
|
status: {
|
|
1241
|
-
type: import("vue").PropType<"
|
|
1241
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
1242
1242
|
default: string;
|
|
1243
|
-
validator: (value: "
|
|
1243
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
1244
1244
|
};
|
|
1245
1245
|
loading: {
|
|
1246
1246
|
type: BooleanConstructor;
|
|
@@ -1718,7 +1718,7 @@ declare const DaoSelect: {
|
|
|
1718
1718
|
search: boolean | import("./types").DaoSelectSearchFn;
|
|
1719
1719
|
modelValue: string | number | boolean | unknown[];
|
|
1720
1720
|
disabled: boolean;
|
|
1721
|
-
status: "
|
|
1721
|
+
status: "error" | "success" | "default";
|
|
1722
1722
|
appendTo: string | false | HTMLElement;
|
|
1723
1723
|
size: string;
|
|
1724
1724
|
multiple: boolean;
|
|
@@ -43,9 +43,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
43
43
|
default: boolean;
|
|
44
44
|
};
|
|
45
45
|
status: {
|
|
46
|
-
type: import("vue").PropType<"
|
|
46
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
47
47
|
default: string;
|
|
48
|
-
validator: (value: "
|
|
48
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
49
49
|
};
|
|
50
50
|
loading: {
|
|
51
51
|
type: BooleanConstructor;
|
|
@@ -555,9 +555,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
555
555
|
default: boolean;
|
|
556
556
|
};
|
|
557
557
|
status: {
|
|
558
|
-
type: import("vue").PropType<"
|
|
558
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
559
559
|
default: string;
|
|
560
|
-
validator: (value: "
|
|
560
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
561
561
|
};
|
|
562
562
|
loading: {
|
|
563
563
|
type: BooleanConstructor;
|
|
@@ -594,7 +594,7 @@ 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: "
|
|
597
|
+
status: "error" | "success" | "default";
|
|
598
598
|
appendTo: string | false | HTMLElement;
|
|
599
599
|
size: string;
|
|
600
600
|
multiple: boolean;
|
|
@@ -61,9 +61,9 @@ export declare const virtualSelectProps: {
|
|
|
61
61
|
default: boolean;
|
|
62
62
|
};
|
|
63
63
|
status: {
|
|
64
|
-
type: PropType<"
|
|
64
|
+
type: PropType<"error" | "success" | "default">;
|
|
65
65
|
default: string;
|
|
66
|
-
validator: (value: "
|
|
66
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
67
67
|
};
|
|
68
68
|
loading: {
|
|
69
69
|
type: BooleanConstructor;
|
|
@@ -10,7 +10,7 @@ declare const DaoVirtualSelect: {
|
|
|
10
10
|
search: boolean | import("./types").DaoVirtualSelectSearchFn;
|
|
11
11
|
modelValue: string | number | boolean | unknown[];
|
|
12
12
|
disabled: boolean;
|
|
13
|
-
status: "
|
|
13
|
+
status: "error" | "success" | "default";
|
|
14
14
|
appendTo: string | false | HTMLElement;
|
|
15
15
|
size: string;
|
|
16
16
|
multiple: boolean;
|
|
@@ -87,9 +87,9 @@ declare const DaoVirtualSelect: {
|
|
|
87
87
|
default: boolean;
|
|
88
88
|
};
|
|
89
89
|
status: {
|
|
90
|
-
type: import("vue").PropType<"
|
|
90
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
91
91
|
default: string;
|
|
92
|
-
validator: (value: "
|
|
92
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
93
93
|
};
|
|
94
94
|
loading: {
|
|
95
95
|
type: BooleanConstructor;
|
|
@@ -195,9 +195,9 @@ declare const DaoVirtualSelect: {
|
|
|
195
195
|
default: boolean;
|
|
196
196
|
};
|
|
197
197
|
status: {
|
|
198
|
-
type: import("vue").PropType<"
|
|
198
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
199
199
|
default: string;
|
|
200
|
-
validator: (value: "
|
|
200
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
201
201
|
};
|
|
202
202
|
loading: {
|
|
203
203
|
type: BooleanConstructor;
|
|
@@ -645,7 +645,7 @@ declare const DaoVirtualSelect: {
|
|
|
645
645
|
search: boolean | import("./types").DaoVirtualSelectSearchFn;
|
|
646
646
|
modelValue: string | number | boolean | unknown[];
|
|
647
647
|
disabled: boolean;
|
|
648
|
-
status: "
|
|
648
|
+
status: "error" | "success" | "default";
|
|
649
649
|
appendTo: string | false | HTMLElement;
|
|
650
650
|
size: string;
|
|
651
651
|
multiple: boolean;
|
|
@@ -742,9 +742,9 @@ declare const DaoVirtualSelect: {
|
|
|
742
742
|
default: boolean;
|
|
743
743
|
};
|
|
744
744
|
status: {
|
|
745
|
-
type: import("vue").PropType<"
|
|
745
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
746
746
|
default: string;
|
|
747
|
-
validator: (value: "
|
|
747
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
748
748
|
};
|
|
749
749
|
loading: {
|
|
750
750
|
type: BooleanConstructor;
|
|
@@ -1251,9 +1251,9 @@ declare const DaoVirtualSelect: {
|
|
|
1251
1251
|
default: boolean;
|
|
1252
1252
|
};
|
|
1253
1253
|
status: {
|
|
1254
|
-
type: import("vue").PropType<"
|
|
1254
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
1255
1255
|
default: string;
|
|
1256
|
-
validator: (value: "
|
|
1256
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
1257
1257
|
};
|
|
1258
1258
|
loading: {
|
|
1259
1259
|
type: BooleanConstructor;
|
|
@@ -1701,7 +1701,7 @@ declare const DaoVirtualSelect: {
|
|
|
1701
1701
|
search: boolean | import("./types").DaoVirtualSelectSearchFn;
|
|
1702
1702
|
modelValue: string | number | boolean | unknown[];
|
|
1703
1703
|
disabled: boolean;
|
|
1704
|
-
status: "
|
|
1704
|
+
status: "error" | "success" | "default";
|
|
1705
1705
|
appendTo: string | false | HTMLElement;
|
|
1706
1706
|
size: string;
|
|
1707
1707
|
multiple: boolean;
|
|
@@ -60,9 +60,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
60
60
|
default: boolean;
|
|
61
61
|
};
|
|
62
62
|
status: {
|
|
63
|
-
type: import("vue").PropType<"
|
|
63
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
64
64
|
default: string;
|
|
65
|
-
validator: (value: "
|
|
65
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
66
66
|
};
|
|
67
67
|
loading: {
|
|
68
68
|
type: BooleanConstructor;
|
|
@@ -558,9 +558,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
558
558
|
default: boolean;
|
|
559
559
|
};
|
|
560
560
|
status: {
|
|
561
|
-
type: import("vue").PropType<"
|
|
561
|
+
type: import("vue").PropType<"error" | "success" | "default">;
|
|
562
562
|
default: string;
|
|
563
|
-
validator: (value: "
|
|
563
|
+
validator: (value: "error" | "success" | "default") => boolean;
|
|
564
564
|
};
|
|
565
565
|
loading: {
|
|
566
566
|
type: BooleanConstructor;
|
|
@@ -597,7 +597,7 @@ 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: "
|
|
600
|
+
status: "error" | "success" | "default";
|
|
601
601
|
appendTo: string | false | HTMLElement;
|
|
602
602
|
size: string;
|
|
603
603
|
multiple: boolean;
|