windly-ui 1.0.6 → 1.0.8
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/module.json +1 -1
- package/dist/runtime/components/Alert.d.vue.ts +7 -0
- package/dist/runtime/components/Alert.vue +47 -29
- package/dist/runtime/components/Alert.vue.d.ts +7 -0
- package/dist/runtime/components/Avatar.d.vue.ts +3 -3
- package/dist/runtime/components/Avatar.vue.d.ts +3 -3
- package/dist/runtime/components/Badge.d.vue.ts +6 -6
- package/dist/runtime/components/Badge.vue.d.ts +6 -6
- package/dist/runtime/components/Button.d.vue.ts +5 -5
- package/dist/runtime/components/Button.vue.d.ts +5 -5
- package/dist/runtime/components/Card.d.vue.ts +3 -3
- package/dist/runtime/components/Card.vue.d.ts +3 -3
- package/dist/runtime/components/Checkbox.d.vue.ts +2 -2
- package/dist/runtime/components/Checkbox.vue.d.ts +2 -2
- package/dist/runtime/components/Chip.d.vue.ts +133 -0
- package/dist/runtime/components/Chip.vue +99 -0
- package/dist/runtime/components/Chip.vue.d.ts +133 -0
- package/dist/runtime/components/ColorPicker.d.vue.ts +2 -2
- package/dist/runtime/components/ColorPicker.vue.d.ts +2 -2
- package/dist/runtime/components/Date.d.vue.ts +4 -4
- package/dist/runtime/components/Date.vue.d.ts +4 -4
- package/dist/runtime/components/Dialog.d.vue.ts +1 -1
- package/dist/runtime/components/Dialog.vue.d.ts +1 -1
- package/dist/runtime/components/Divider.d.vue.ts +1 -1
- package/dist/runtime/components/Divider.vue.d.ts +1 -1
- package/dist/runtime/components/Drawer.d.vue.ts +2 -2
- package/dist/runtime/components/Drawer.vue.d.ts +2 -2
- package/dist/runtime/components/Dropdown.d.vue.ts +3 -3
- package/dist/runtime/components/Dropdown.vue.d.ts +3 -3
- package/dist/runtime/components/FileUploader.d.vue.ts +3 -3
- package/dist/runtime/components/FileUploader.vue.d.ts +3 -3
- package/dist/runtime/components/Image.d.vue.ts +2 -2
- package/dist/runtime/components/Image.vue.d.ts +2 -2
- package/dist/runtime/components/Input.d.vue.ts +2 -2
- package/dist/runtime/components/Input.vue.d.ts +2 -2
- package/dist/runtime/components/Radio.d.vue.ts +4 -4
- package/dist/runtime/components/Radio.vue.d.ts +4 -4
- package/dist/runtime/components/ScrollArea.d.vue.ts +2 -2
- package/dist/runtime/components/ScrollArea.vue.d.ts +2 -2
- package/dist/runtime/components/Select.d.vue.ts +2 -2
- package/dist/runtime/components/Select.vue.d.ts +2 -2
- package/dist/runtime/components/Stepper.d.vue.ts +1 -1
- package/dist/runtime/components/Stepper.vue.d.ts +1 -1
- package/dist/runtime/components/Table.d.vue.ts +3 -3
- package/dist/runtime/components/Table.vue.d.ts +3 -3
- package/dist/runtime/components/Textarea.d.vue.ts +2 -2
- package/dist/runtime/components/Textarea.vue.d.ts +2 -2
- package/dist/runtime/components/Toggle.d.vue.ts +1 -1
- package/dist/runtime/components/Toggle.vue.d.ts +1 -1
- package/dist/runtime/components/Tooltip.d.vue.ts +1 -1
- package/dist/runtime/components/Tooltip.vue.d.ts +1 -1
- package/dist/runtime/components/useUiClasses.d.ts +11 -11
- package/dist/runtime/components/useUiClasses.js +3 -3
- package/dist/runtime/docs/index.vue +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
+
contentClass: {
|
|
7
|
+
readonly type: StringConstructor;
|
|
8
|
+
readonly default: "";
|
|
9
|
+
};
|
|
10
|
+
contentStyle: {
|
|
11
|
+
readonly type: StringConstructor;
|
|
12
|
+
readonly default: "";
|
|
13
|
+
};
|
|
14
|
+
textColor: {
|
|
15
|
+
readonly type: StringConstructor;
|
|
16
|
+
readonly default: "";
|
|
17
|
+
};
|
|
18
|
+
disable: {
|
|
19
|
+
readonly type: BooleanConstructor;
|
|
20
|
+
readonly default: false;
|
|
21
|
+
};
|
|
22
|
+
loading: {
|
|
23
|
+
readonly type: BooleanConstructor;
|
|
24
|
+
readonly default: false;
|
|
25
|
+
};
|
|
26
|
+
color: {
|
|
27
|
+
readonly type: StringConstructor;
|
|
28
|
+
readonly default: "blue-900";
|
|
29
|
+
};
|
|
30
|
+
rounded: {
|
|
31
|
+
readonly type: StringConstructor;
|
|
32
|
+
readonly default: "md";
|
|
33
|
+
};
|
|
34
|
+
size: {
|
|
35
|
+
readonly type: StringConstructor;
|
|
36
|
+
readonly default: "md";
|
|
37
|
+
};
|
|
38
|
+
iconSize: {
|
|
39
|
+
readonly type: StringConstructor;
|
|
40
|
+
readonly default: "lg";
|
|
41
|
+
};
|
|
42
|
+
content: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
icon: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
position: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
show: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
contentClass: {
|
|
60
|
+
readonly type: StringConstructor;
|
|
61
|
+
readonly default: "";
|
|
62
|
+
};
|
|
63
|
+
contentStyle: {
|
|
64
|
+
readonly type: StringConstructor;
|
|
65
|
+
readonly default: "";
|
|
66
|
+
};
|
|
67
|
+
textColor: {
|
|
68
|
+
readonly type: StringConstructor;
|
|
69
|
+
readonly default: "";
|
|
70
|
+
};
|
|
71
|
+
disable: {
|
|
72
|
+
readonly type: BooleanConstructor;
|
|
73
|
+
readonly default: false;
|
|
74
|
+
};
|
|
75
|
+
loading: {
|
|
76
|
+
readonly type: BooleanConstructor;
|
|
77
|
+
readonly default: false;
|
|
78
|
+
};
|
|
79
|
+
color: {
|
|
80
|
+
readonly type: StringConstructor;
|
|
81
|
+
readonly default: "blue-900";
|
|
82
|
+
};
|
|
83
|
+
rounded: {
|
|
84
|
+
readonly type: StringConstructor;
|
|
85
|
+
readonly default: "md";
|
|
86
|
+
};
|
|
87
|
+
size: {
|
|
88
|
+
readonly type: StringConstructor;
|
|
89
|
+
readonly default: "md";
|
|
90
|
+
};
|
|
91
|
+
iconSize: {
|
|
92
|
+
readonly type: StringConstructor;
|
|
93
|
+
readonly default: "lg";
|
|
94
|
+
};
|
|
95
|
+
content: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
99
|
+
icon: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
position: {
|
|
104
|
+
type: StringConstructor;
|
|
105
|
+
default: string;
|
|
106
|
+
};
|
|
107
|
+
show: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
}>> & Readonly<{}>, {
|
|
112
|
+
color: string;
|
|
113
|
+
content: string;
|
|
114
|
+
size: string;
|
|
115
|
+
show: boolean;
|
|
116
|
+
position: string;
|
|
117
|
+
icon: string;
|
|
118
|
+
contentClass: string;
|
|
119
|
+
contentStyle: string;
|
|
120
|
+
textColor: string;
|
|
121
|
+
disable: boolean;
|
|
122
|
+
loading: boolean;
|
|
123
|
+
rounded: string;
|
|
124
|
+
iconSize: string;
|
|
125
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
126
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
127
|
+
declare const _default: typeof __VLS_export;
|
|
128
|
+
export default _default;
|
|
129
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
130
|
+
new (): {
|
|
131
|
+
$slots: S;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
@@ -79,13 +79,13 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
79
79
|
}>, {
|
|
80
80
|
modelValue: string;
|
|
81
81
|
disabled: boolean;
|
|
82
|
-
flat: boolean;
|
|
83
82
|
square: boolean;
|
|
83
|
+
flat: boolean;
|
|
84
|
+
borderRadius: string | number;
|
|
84
85
|
bordered: boolean;
|
|
85
86
|
defaultValue: string;
|
|
86
87
|
showOpacity: boolean;
|
|
87
88
|
readonly: boolean;
|
|
88
|
-
borderRadius: string | number;
|
|
89
89
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
90
90
|
declare const _default: typeof __VLS_export;
|
|
91
91
|
export default _default;
|
|
@@ -79,13 +79,13 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
79
79
|
}>, {
|
|
80
80
|
modelValue: string;
|
|
81
81
|
disabled: boolean;
|
|
82
|
-
flat: boolean;
|
|
83
82
|
square: boolean;
|
|
83
|
+
flat: boolean;
|
|
84
|
+
borderRadius: string | number;
|
|
84
85
|
bordered: boolean;
|
|
85
86
|
defaultValue: string;
|
|
86
87
|
showOpacity: boolean;
|
|
87
88
|
readonly: boolean;
|
|
88
|
-
borderRadius: string | number;
|
|
89
89
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
90
90
|
declare const _default: typeof __VLS_export;
|
|
91
91
|
export default _default;
|
|
@@ -118,15 +118,15 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
118
118
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
119
119
|
}>, {
|
|
120
120
|
modelValue: string | unknown[];
|
|
121
|
+
color: string;
|
|
122
|
+
flat: boolean;
|
|
123
|
+
backgroundColor: string;
|
|
124
|
+
borderRadius: string;
|
|
121
125
|
contentClass: string;
|
|
122
126
|
contentStyle: string;
|
|
123
127
|
textColor: string;
|
|
124
128
|
disable: boolean;
|
|
125
|
-
color: string;
|
|
126
|
-
backgroundColor: string;
|
|
127
|
-
flat: boolean;
|
|
128
129
|
bordered: boolean;
|
|
129
|
-
borderRadius: string;
|
|
130
130
|
multiDate: boolean;
|
|
131
131
|
rangeDate: boolean;
|
|
132
132
|
disabledDates: string[];
|
|
@@ -118,15 +118,15 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
118
118
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
119
119
|
}>, {
|
|
120
120
|
modelValue: string | unknown[];
|
|
121
|
+
color: string;
|
|
122
|
+
flat: boolean;
|
|
123
|
+
backgroundColor: string;
|
|
124
|
+
borderRadius: string;
|
|
121
125
|
contentClass: string;
|
|
122
126
|
contentStyle: string;
|
|
123
127
|
textColor: string;
|
|
124
128
|
disable: boolean;
|
|
125
|
-
color: string;
|
|
126
|
-
backgroundColor: string;
|
|
127
|
-
flat: boolean;
|
|
128
129
|
bordered: boolean;
|
|
129
|
-
borderRadius: string;
|
|
130
130
|
multiDate: boolean;
|
|
131
131
|
rangeDate: boolean;
|
|
132
132
|
disabledDates: string[];
|
|
@@ -54,8 +54,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
54
54
|
"onUpdate:isOpen"?: ((...args: any[]) => any) | undefined;
|
|
55
55
|
}>, {
|
|
56
56
|
position: string;
|
|
57
|
-
width: string;
|
|
58
57
|
height: string;
|
|
58
|
+
width: string;
|
|
59
59
|
persistent: boolean;
|
|
60
60
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
61
61
|
type __VLS_Slots = {
|
|
@@ -54,8 +54,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
54
54
|
"onUpdate:isOpen"?: ((...args: any[]) => any) | undefined;
|
|
55
55
|
}>, {
|
|
56
56
|
position: string;
|
|
57
|
-
width: string;
|
|
58
57
|
height: string;
|
|
58
|
+
width: string;
|
|
59
59
|
persistent: boolean;
|
|
60
60
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
61
61
|
type __VLS_Slots = {
|
|
@@ -43,8 +43,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
43
43
|
}>> & Readonly<{}>, {
|
|
44
44
|
type: string;
|
|
45
45
|
color: string;
|
|
46
|
-
vertical: boolean;
|
|
47
46
|
inset: boolean;
|
|
47
|
+
vertical: boolean;
|
|
48
48
|
thickness: string;
|
|
49
49
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
50
50
|
declare const _default: typeof __VLS_export;
|
|
@@ -43,8 +43,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
43
43
|
}>> & Readonly<{}>, {
|
|
44
44
|
type: string;
|
|
45
45
|
color: string;
|
|
46
|
-
vertical: boolean;
|
|
47
46
|
inset: boolean;
|
|
47
|
+
vertical: boolean;
|
|
48
48
|
thickness: string;
|
|
49
49
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
50
50
|
declare const _default: typeof __VLS_export;
|
|
@@ -15,10 +15,10 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, i
|
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
16
16
|
onClose?: (() => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
+
padding: string;
|
|
19
|
+
direction: DrawerDirection;
|
|
18
20
|
width: string;
|
|
19
21
|
background: string;
|
|
20
|
-
direction: DrawerDirection;
|
|
21
|
-
padding: string;
|
|
22
22
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
23
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
24
24
|
declare const _default: typeof __VLS_export;
|
|
@@ -15,10 +15,10 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, i
|
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
16
16
|
onClose?: (() => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
+
padding: string;
|
|
19
|
+
direction: DrawerDirection;
|
|
18
20
|
width: string;
|
|
19
21
|
background: string;
|
|
20
|
-
direction: DrawerDirection;
|
|
21
|
-
padding: string;
|
|
22
22
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
23
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
24
24
|
declare const _default: typeof __VLS_export;
|
|
@@ -16,12 +16,12 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
menu?: (props: typeof __VLS_9) => any;
|
|
17
17
|
};
|
|
18
18
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
19
|
-
|
|
19
|
+
flat: boolean;
|
|
20
|
+
width: string;
|
|
20
21
|
borderColor: string;
|
|
22
|
+
rounded: Rounded;
|
|
21
23
|
align: DropdownAlign;
|
|
22
|
-
flat: boolean;
|
|
23
24
|
bordered: boolean;
|
|
24
|
-
width: string;
|
|
25
25
|
menuBgClass: string;
|
|
26
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -16,12 +16,12 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
menu?: (props: typeof __VLS_9) => any;
|
|
17
17
|
};
|
|
18
18
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
19
|
-
|
|
19
|
+
flat: boolean;
|
|
20
|
+
width: string;
|
|
20
21
|
borderColor: string;
|
|
22
|
+
rounded: Rounded;
|
|
21
23
|
align: DropdownAlign;
|
|
22
|
-
flat: boolean;
|
|
23
24
|
bordered: boolean;
|
|
24
|
-
width: string;
|
|
25
25
|
menuBgClass: string;
|
|
26
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -41,15 +41,15 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
41
41
|
dense: boolean;
|
|
42
42
|
label: string;
|
|
43
43
|
color: string;
|
|
44
|
-
rounded: Rounded;
|
|
45
44
|
size: Size;
|
|
46
|
-
separator: Separator;
|
|
47
45
|
flat: boolean;
|
|
46
|
+
separator: Separator;
|
|
47
|
+
multiple: boolean;
|
|
48
48
|
width: string;
|
|
49
|
+
rounded: Rounded;
|
|
49
50
|
readonly: boolean;
|
|
50
51
|
hint: string;
|
|
51
52
|
fileType: string;
|
|
52
|
-
multiple: boolean;
|
|
53
53
|
outlined: boolean;
|
|
54
54
|
borderless: boolean;
|
|
55
55
|
fileRemoverIcon: string;
|
|
@@ -41,15 +41,15 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
41
41
|
dense: boolean;
|
|
42
42
|
label: string;
|
|
43
43
|
color: string;
|
|
44
|
-
rounded: Rounded;
|
|
45
44
|
size: Size;
|
|
46
|
-
separator: Separator;
|
|
47
45
|
flat: boolean;
|
|
46
|
+
separator: Separator;
|
|
47
|
+
multiple: boolean;
|
|
48
48
|
width: string;
|
|
49
|
+
rounded: Rounded;
|
|
49
50
|
readonly: boolean;
|
|
50
51
|
hint: string;
|
|
51
52
|
fileType: string;
|
|
52
|
-
multiple: boolean;
|
|
53
53
|
outlined: boolean;
|
|
54
54
|
borderless: boolean;
|
|
55
55
|
fileRemoverIcon: string;
|
|
@@ -65,11 +65,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
65
65
|
default: string;
|
|
66
66
|
};
|
|
67
67
|
}>> & Readonly<{}>, {
|
|
68
|
+
height: string;
|
|
69
|
+
width: string;
|
|
68
70
|
borderColor: string;
|
|
69
71
|
alt: string;
|
|
70
72
|
placeholder: string;
|
|
71
|
-
width: string;
|
|
72
|
-
height: string;
|
|
73
73
|
fit: string;
|
|
74
74
|
borderType: string;
|
|
75
75
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -65,11 +65,11 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
65
65
|
default: string;
|
|
66
66
|
};
|
|
67
67
|
}>> & Readonly<{}>, {
|
|
68
|
+
height: string;
|
|
69
|
+
width: string;
|
|
68
70
|
borderColor: string;
|
|
69
71
|
alt: string;
|
|
70
72
|
placeholder: string;
|
|
71
|
-
width: string;
|
|
72
|
-
height: string;
|
|
73
73
|
fit: string;
|
|
74
74
|
borderType: string;
|
|
75
75
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -44,11 +44,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
44
44
|
type: SupportedInputType;
|
|
45
45
|
required: boolean;
|
|
46
46
|
color: string;
|
|
47
|
-
rounded: string;
|
|
48
47
|
size: string;
|
|
49
48
|
flat: boolean;
|
|
50
|
-
placeholder: string;
|
|
51
49
|
width: string;
|
|
50
|
+
rounded: string;
|
|
51
|
+
placeholder: string;
|
|
52
52
|
readonly: boolean;
|
|
53
53
|
hint: string;
|
|
54
54
|
outlined: boolean;
|
|
@@ -44,11 +44,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
44
44
|
type: SupportedInputType;
|
|
45
45
|
required: boolean;
|
|
46
46
|
color: string;
|
|
47
|
-
rounded: string;
|
|
48
47
|
size: string;
|
|
49
48
|
flat: boolean;
|
|
50
|
-
placeholder: string;
|
|
51
49
|
width: string;
|
|
50
|
+
rounded: string;
|
|
51
|
+
placeholder: string;
|
|
52
52
|
readonly: boolean;
|
|
53
53
|
hint: string;
|
|
54
54
|
outlined: boolean;
|
|
@@ -25,13 +25,13 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
25
25
|
}>, {
|
|
26
26
|
modelValue: string | number | boolean;
|
|
27
27
|
name: string;
|
|
28
|
-
disable: boolean;
|
|
29
28
|
color: string;
|
|
30
|
-
rounded: Rounded;
|
|
31
29
|
size: RadioSize;
|
|
32
|
-
borderColor: string;
|
|
33
|
-
icon: string;
|
|
34
30
|
flat: boolean;
|
|
31
|
+
icon: string;
|
|
32
|
+
borderColor: string;
|
|
33
|
+
disable: boolean;
|
|
34
|
+
rounded: Rounded;
|
|
35
35
|
id: string;
|
|
36
36
|
bordered: boolean;
|
|
37
37
|
hint: string;
|
|
@@ -25,13 +25,13 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
25
25
|
}>, {
|
|
26
26
|
modelValue: string | number | boolean;
|
|
27
27
|
name: string;
|
|
28
|
-
disable: boolean;
|
|
29
28
|
color: string;
|
|
30
|
-
rounded: Rounded;
|
|
31
29
|
size: RadioSize;
|
|
32
|
-
borderColor: string;
|
|
33
|
-
icon: string;
|
|
34
30
|
flat: boolean;
|
|
31
|
+
icon: string;
|
|
32
|
+
borderColor: string;
|
|
33
|
+
disable: boolean;
|
|
34
|
+
rounded: Rounded;
|
|
35
35
|
id: string;
|
|
36
36
|
bordered: boolean;
|
|
37
37
|
hint: string;
|
|
@@ -63,10 +63,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
63
63
|
}>> & Readonly<{}>, {
|
|
64
64
|
horizontal: boolean;
|
|
65
65
|
vertical: boolean;
|
|
66
|
-
width: string;
|
|
67
|
-
maxWidth: string;
|
|
68
66
|
height: string;
|
|
69
67
|
maxHeight: string;
|
|
68
|
+
maxWidth: string;
|
|
69
|
+
width: string;
|
|
70
70
|
hideScrollbar: boolean;
|
|
71
71
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
72
72
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -63,10 +63,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
63
63
|
}>> & Readonly<{}>, {
|
|
64
64
|
horizontal: boolean;
|
|
65
65
|
vertical: boolean;
|
|
66
|
-
width: string;
|
|
67
|
-
maxWidth: string;
|
|
68
66
|
height: string;
|
|
69
67
|
maxHeight: string;
|
|
68
|
+
maxWidth: string;
|
|
69
|
+
width: string;
|
|
70
70
|
hideScrollbar: boolean;
|
|
71
71
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
72
72
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -36,12 +36,12 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
36
36
|
filter: boolean;
|
|
37
37
|
required: boolean;
|
|
38
38
|
color: string;
|
|
39
|
-
rounded: Rounded;
|
|
40
39
|
size: Size;
|
|
41
40
|
flat: boolean;
|
|
41
|
+
width: string;
|
|
42
|
+
rounded: Rounded;
|
|
42
43
|
id: string;
|
|
43
44
|
placeholder: string;
|
|
44
|
-
width: string;
|
|
45
45
|
readonly: boolean;
|
|
46
46
|
hint: string;
|
|
47
47
|
outlined: boolean;
|
|
@@ -36,12 +36,12 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
36
36
|
filter: boolean;
|
|
37
37
|
required: boolean;
|
|
38
38
|
color: string;
|
|
39
|
-
rounded: Rounded;
|
|
40
39
|
size: Size;
|
|
41
40
|
flat: boolean;
|
|
41
|
+
width: string;
|
|
42
|
+
rounded: Rounded;
|
|
42
43
|
id: string;
|
|
43
44
|
placeholder: string;
|
|
44
|
-
width: string;
|
|
45
45
|
readonly: boolean;
|
|
46
46
|
hint: string;
|
|
47
47
|
outlined: boolean;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
28
28
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
30
|
modelValue: number;
|
|
31
|
-
activeColor: string;
|
|
32
31
|
vertical: boolean;
|
|
32
|
+
activeColor: string;
|
|
33
33
|
completedColor: string;
|
|
34
34
|
inactiveColor: string;
|
|
35
35
|
connectorCompletedColor: string;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
28
28
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
30
|
modelValue: number;
|
|
31
|
-
activeColor: string;
|
|
32
31
|
vertical: boolean;
|
|
32
|
+
activeColor: string;
|
|
33
33
|
completedColor: string;
|
|
34
34
|
inactiveColor: string;
|
|
35
35
|
connectorCompletedColor: string;
|
|
@@ -24,11 +24,11 @@ type __VLS_Slots = {} & {
|
|
|
24
24
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
25
|
hover: boolean;
|
|
26
26
|
dense: boolean;
|
|
27
|
-
|
|
28
|
-
borderColor: string;
|
|
27
|
+
flat: boolean;
|
|
29
28
|
separator: Separator;
|
|
29
|
+
borderColor: string;
|
|
30
|
+
rounded: Rounded;
|
|
30
31
|
align: Align;
|
|
31
|
-
flat: boolean;
|
|
32
32
|
bordered: boolean;
|
|
33
33
|
striped: boolean;
|
|
34
34
|
bgColor: string;
|
|
@@ -24,11 +24,11 @@ type __VLS_Slots = {} & {
|
|
|
24
24
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
25
|
hover: boolean;
|
|
26
26
|
dense: boolean;
|
|
27
|
-
|
|
28
|
-
borderColor: string;
|
|
27
|
+
flat: boolean;
|
|
29
28
|
separator: Separator;
|
|
29
|
+
borderColor: string;
|
|
30
|
+
rounded: Rounded;
|
|
30
31
|
align: Align;
|
|
31
|
-
flat: boolean;
|
|
32
32
|
bordered: boolean;
|
|
33
33
|
striped: boolean;
|
|
34
34
|
bgColor: string;
|
|
@@ -183,14 +183,14 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
183
183
|
}>, {
|
|
184
184
|
modelValue: string;
|
|
185
185
|
label: string;
|
|
186
|
+
color: string;
|
|
187
|
+
size: string;
|
|
186
188
|
contentClass: string;
|
|
187
189
|
contentStyle: string;
|
|
188
190
|
textColor: string;
|
|
189
191
|
disable: boolean;
|
|
190
192
|
loading: boolean;
|
|
191
|
-
color: string;
|
|
192
193
|
rounded: string;
|
|
193
|
-
size: string;
|
|
194
194
|
iconSize: string;
|
|
195
195
|
placeholder: string;
|
|
196
196
|
readonly: boolean;
|
|
@@ -183,14 +183,14 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
183
183
|
}>, {
|
|
184
184
|
modelValue: string;
|
|
185
185
|
label: string;
|
|
186
|
+
color: string;
|
|
187
|
+
size: string;
|
|
186
188
|
contentClass: string;
|
|
187
189
|
contentStyle: string;
|
|
188
190
|
textColor: string;
|
|
189
191
|
disable: boolean;
|
|
190
192
|
loading: boolean;
|
|
191
|
-
color: string;
|
|
192
193
|
rounded: string;
|
|
193
|
-
size: string;
|
|
194
194
|
iconSize: string;
|
|
195
195
|
placeholder: string;
|
|
196
196
|
readonly: boolean;
|
|
@@ -21,8 +21,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
21
21
|
}>, {
|
|
22
22
|
modelValue: boolean | string | number;
|
|
23
23
|
label: string;
|
|
24
|
-
disable: boolean;
|
|
25
24
|
size: ToggleSize;
|
|
25
|
+
disable: boolean;
|
|
26
26
|
labelPosition: LabelPosition;
|
|
27
27
|
customClasses: string;
|
|
28
28
|
trueColor: string;
|
|
@@ -21,8 +21,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
21
21
|
}>, {
|
|
22
22
|
modelValue: boolean | string | number;
|
|
23
23
|
label: string;
|
|
24
|
-
disable: boolean;
|
|
25
24
|
size: ToggleSize;
|
|
25
|
+
disable: boolean;
|
|
26
26
|
labelPosition: LabelPosition;
|
|
27
27
|
customClasses: string;
|
|
28
28
|
trueColor: string;
|
|
@@ -48,8 +48,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
48
48
|
default: string;
|
|
49
49
|
};
|
|
50
50
|
}>> & Readonly<{}>, {
|
|
51
|
-
textColor: string;
|
|
52
51
|
color: string;
|
|
52
|
+
textColor: string;
|
|
53
53
|
placement: TooltipPlacement;
|
|
54
54
|
arrow: boolean;
|
|
55
55
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -48,8 +48,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
48
48
|
default: string;
|
|
49
49
|
};
|
|
50
50
|
}>> & Readonly<{}>, {
|
|
51
|
-
textColor: string;
|
|
52
51
|
color: string;
|
|
52
|
+
textColor: string;
|
|
53
53
|
placement: TooltipPlacement;
|
|
54
54
|
arrow: boolean;
|
|
55
55
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|