@nightshadeui/core 2.0.2 → 2.0.4
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/Btn.vue.d.ts +206 -0
- package/dist/components/HGroup.vue.d.ts +47 -0
- package/dist/components/InputBase.vue.d.ts +151 -0
- package/dist/components/InputGroup.vue.d.ts +14 -0
- package/dist/components/InputSelect.vue.d.ts +20 -0
- package/dist/components/InputText.vue.d.ts +11 -0
- package/dist/components/InputTextarea.vue.d.ts +11 -0
- package/dist/components/Sizer.vue.d.ts +2 -0
- package/dist/components/Tab.vue.d.ts +22 -0
- package/dist/components/TabCap.vue.d.ts +23 -0
- package/dist/components/Toggle.vue.d.ts +123 -0
- package/dist/components/VGroup.vue.d.ts +38 -0
- package/dist/components/index.d.ts +13 -0
- package/dist/core.css +1 -1
- package/dist/core.mjs +25 -22
- package/dist/index.d.ts +657 -25
- package/package.json +1 -1
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
tagName: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
href: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
label: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
title: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
kind: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
size: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
flat: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
shadow: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
outline: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
round: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
ghost: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
block: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
square: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
disabled: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
forceFocus: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
forceHover: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
forceActive: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
67
|
+
icon: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
};
|
|
70
|
+
iconPos: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
hoverOverrides: {
|
|
75
|
+
type: ObjectConstructor;
|
|
76
|
+
};
|
|
77
|
+
activeOverrides: {
|
|
78
|
+
type: ObjectConstructor;
|
|
79
|
+
};
|
|
80
|
+
focusOverrides: {
|
|
81
|
+
type: ObjectConstructor;
|
|
82
|
+
};
|
|
83
|
+
}>, {}, {
|
|
84
|
+
hover: boolean;
|
|
85
|
+
active: boolean;
|
|
86
|
+
focus: boolean;
|
|
87
|
+
blocked: boolean;
|
|
88
|
+
}, {
|
|
89
|
+
baseStyle(): {
|
|
90
|
+
kind: string;
|
|
91
|
+
size: string;
|
|
92
|
+
flat: boolean;
|
|
93
|
+
shadow: boolean;
|
|
94
|
+
outline: boolean;
|
|
95
|
+
round: boolean;
|
|
96
|
+
ghost: boolean;
|
|
97
|
+
};
|
|
98
|
+
effectiveStyle(): {
|
|
99
|
+
kind: string;
|
|
100
|
+
size: string;
|
|
101
|
+
flat: boolean;
|
|
102
|
+
shadow: boolean;
|
|
103
|
+
outline: boolean;
|
|
104
|
+
round: boolean;
|
|
105
|
+
ghost: boolean;
|
|
106
|
+
};
|
|
107
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
108
|
+
tagName: {
|
|
109
|
+
type: StringConstructor;
|
|
110
|
+
default: string;
|
|
111
|
+
};
|
|
112
|
+
href: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
};
|
|
115
|
+
label: {
|
|
116
|
+
type: StringConstructor;
|
|
117
|
+
};
|
|
118
|
+
title: {
|
|
119
|
+
type: StringConstructor;
|
|
120
|
+
};
|
|
121
|
+
kind: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
size: {
|
|
126
|
+
type: StringConstructor;
|
|
127
|
+
default: string;
|
|
128
|
+
};
|
|
129
|
+
flat: {
|
|
130
|
+
type: BooleanConstructor;
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
shadow: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
outline: {
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
round: {
|
|
142
|
+
type: BooleanConstructor;
|
|
143
|
+
default: boolean;
|
|
144
|
+
};
|
|
145
|
+
ghost: {
|
|
146
|
+
type: BooleanConstructor;
|
|
147
|
+
default: boolean;
|
|
148
|
+
};
|
|
149
|
+
block: {
|
|
150
|
+
type: BooleanConstructor;
|
|
151
|
+
default: boolean;
|
|
152
|
+
};
|
|
153
|
+
square: {
|
|
154
|
+
type: BooleanConstructor;
|
|
155
|
+
default: boolean;
|
|
156
|
+
};
|
|
157
|
+
disabled: {
|
|
158
|
+
type: BooleanConstructor;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
161
|
+
forceFocus: {
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
default: boolean;
|
|
164
|
+
};
|
|
165
|
+
forceHover: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
169
|
+
forceActive: {
|
|
170
|
+
type: BooleanConstructor;
|
|
171
|
+
default: boolean;
|
|
172
|
+
};
|
|
173
|
+
icon: {
|
|
174
|
+
type: StringConstructor;
|
|
175
|
+
};
|
|
176
|
+
iconPos: {
|
|
177
|
+
type: StringConstructor;
|
|
178
|
+
default: string;
|
|
179
|
+
};
|
|
180
|
+
hoverOverrides: {
|
|
181
|
+
type: ObjectConstructor;
|
|
182
|
+
};
|
|
183
|
+
activeOverrides: {
|
|
184
|
+
type: ObjectConstructor;
|
|
185
|
+
};
|
|
186
|
+
focusOverrides: {
|
|
187
|
+
type: ObjectConstructor;
|
|
188
|
+
};
|
|
189
|
+
}>> & Readonly<{}>, {
|
|
190
|
+
tagName: string;
|
|
191
|
+
kind: string;
|
|
192
|
+
size: string;
|
|
193
|
+
flat: boolean;
|
|
194
|
+
shadow: boolean;
|
|
195
|
+
outline: boolean;
|
|
196
|
+
round: boolean;
|
|
197
|
+
ghost: boolean;
|
|
198
|
+
block: boolean;
|
|
199
|
+
square: boolean;
|
|
200
|
+
disabled: boolean;
|
|
201
|
+
forceFocus: boolean;
|
|
202
|
+
forceHover: boolean;
|
|
203
|
+
forceActive: boolean;
|
|
204
|
+
iconPos: string;
|
|
205
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
206
|
+
export default _default;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
tagName: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
align: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
justify: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
};
|
|
13
|
+
gap: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
wrap: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
22
|
+
tagName: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
align: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
justify: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
};
|
|
33
|
+
gap: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
wrap: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
}>> & Readonly<{}>, {
|
|
42
|
+
tagName: string;
|
|
43
|
+
align: string;
|
|
44
|
+
gap: string;
|
|
45
|
+
wrap: boolean;
|
|
46
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
47
|
+
export default _default;
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
tagName: {
|
|
3
|
+
default: string;
|
|
4
|
+
};
|
|
5
|
+
kind: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
label: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
labelStyle: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
size: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
fixedHeight: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
shadow: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
round: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
disabled: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
forceFocus: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
forceHover: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
hoverOverrides: {
|
|
45
|
+
type: ObjectConstructor;
|
|
46
|
+
};
|
|
47
|
+
focusOverrides: {
|
|
48
|
+
type: ObjectConstructor;
|
|
49
|
+
};
|
|
50
|
+
}>, {}, {
|
|
51
|
+
hover: boolean;
|
|
52
|
+
focus: boolean;
|
|
53
|
+
}, {
|
|
54
|
+
baseStyle(): {
|
|
55
|
+
kind: string;
|
|
56
|
+
size: string;
|
|
57
|
+
shadow: boolean;
|
|
58
|
+
round: boolean;
|
|
59
|
+
labelStyle: string;
|
|
60
|
+
};
|
|
61
|
+
effectiveStyle(): {
|
|
62
|
+
kind: string;
|
|
63
|
+
size: string;
|
|
64
|
+
shadow: boolean;
|
|
65
|
+
round: boolean;
|
|
66
|
+
labelStyle: string;
|
|
67
|
+
};
|
|
68
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
69
|
+
tagName: {
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
kind: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
label: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
};
|
|
79
|
+
labelStyle: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
size: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
fixedHeight: {
|
|
88
|
+
type: BooleanConstructor;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
91
|
+
shadow: {
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
default: boolean;
|
|
94
|
+
};
|
|
95
|
+
round: {
|
|
96
|
+
type: BooleanConstructor;
|
|
97
|
+
default: boolean;
|
|
98
|
+
};
|
|
99
|
+
disabled: {
|
|
100
|
+
type: BooleanConstructor;
|
|
101
|
+
default: boolean;
|
|
102
|
+
};
|
|
103
|
+
forceFocus: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
forceHover: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
hoverOverrides: {
|
|
112
|
+
type: ObjectConstructor;
|
|
113
|
+
};
|
|
114
|
+
focusOverrides: {
|
|
115
|
+
type: ObjectConstructor;
|
|
116
|
+
};
|
|
117
|
+
}>> & Readonly<{}>, {
|
|
118
|
+
tagName: string;
|
|
119
|
+
kind: string;
|
|
120
|
+
size: string;
|
|
121
|
+
shadow: boolean;
|
|
122
|
+
round: boolean;
|
|
123
|
+
disabled: boolean;
|
|
124
|
+
forceFocus: boolean;
|
|
125
|
+
forceHover: boolean;
|
|
126
|
+
labelStyle: string;
|
|
127
|
+
fixedHeight: boolean;
|
|
128
|
+
}, {}, {
|
|
129
|
+
Tab: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
130
|
+
dir: {
|
|
131
|
+
type: StringConstructor;
|
|
132
|
+
default: string;
|
|
133
|
+
};
|
|
134
|
+
label: {
|
|
135
|
+
type: StringConstructor;
|
|
136
|
+
};
|
|
137
|
+
}>, {}, {}, {
|
|
138
|
+
orientation(): "h" | "v";
|
|
139
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
140
|
+
dir: {
|
|
141
|
+
type: StringConstructor;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
144
|
+
label: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
};
|
|
147
|
+
}>> & Readonly<{}>, {
|
|
148
|
+
dir: string;
|
|
149
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
150
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
151
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
tagName: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
|
+
tagName: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {
|
|
12
|
+
tagName: string;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {
|
|
2
|
+
menuShown: boolean;
|
|
3
|
+
}, {
|
|
4
|
+
selectedItem(): any;
|
|
5
|
+
itemTitle(): any;
|
|
6
|
+
itemIcon(): any;
|
|
7
|
+
iconDropdown(): any;
|
|
8
|
+
}, {
|
|
9
|
+
onInput(ev: any): void;
|
|
10
|
+
selectValue(value: any): void;
|
|
11
|
+
getMenuItems(): any;
|
|
12
|
+
show(): void;
|
|
13
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("focus" | "blur" | "update:modelValue")[], "focus" | "blur" | "update:modelValue", import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
14
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
}>, {} | {
|
|
18
|
+
[x: string]: any;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
2
|
+
onInput(ev: any): void;
|
|
3
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("focus" | "blur" | "update:modelValue" | "input")[], "focus" | "blur" | "update:modelValue" | "input", import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
5
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
6
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
8
|
+
}>, {} | {
|
|
9
|
+
[x: string]: any;
|
|
10
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
2
|
+
onInput(ev: any): void;
|
|
3
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("focus" | "blur" | "update:modelValue" | "input")[], "focus" | "blur" | "update:modelValue" | "input", import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
5
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
6
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
8
|
+
}>, {} | {
|
|
9
|
+
[x: string]: any;
|
|
10
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
dir: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
label: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {
|
|
10
|
+
orientation(): "h" | "v";
|
|
11
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
12
|
+
dir: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
label: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{}>, {
|
|
20
|
+
dir: string;
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
dir: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
type: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
+
dir: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
type: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{}>, {
|
|
20
|
+
type: string;
|
|
21
|
+
dir: string;
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
};
|
|
5
|
+
disabled: {
|
|
6
|
+
type: BooleanConstructor;
|
|
7
|
+
};
|
|
8
|
+
kind: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
activeKind: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
size: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
round: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
flat: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
outline: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
forceFocus: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
forceHover: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
focusOverrides: {
|
|
40
|
+
type: ObjectConstructor;
|
|
41
|
+
};
|
|
42
|
+
hoverOverrides: {
|
|
43
|
+
type: ObjectConstructor;
|
|
44
|
+
};
|
|
45
|
+
}>, {}, {
|
|
46
|
+
hover: boolean;
|
|
47
|
+
focus: boolean;
|
|
48
|
+
}, {
|
|
49
|
+
isActive(): boolean;
|
|
50
|
+
baseStyle(): {
|
|
51
|
+
kind: string;
|
|
52
|
+
size: string;
|
|
53
|
+
round: boolean;
|
|
54
|
+
outline: boolean;
|
|
55
|
+
flat: boolean;
|
|
56
|
+
};
|
|
57
|
+
effectiveStyle(): {
|
|
58
|
+
kind: string;
|
|
59
|
+
size: string;
|
|
60
|
+
round: boolean;
|
|
61
|
+
outline: boolean;
|
|
62
|
+
flat: boolean;
|
|
63
|
+
};
|
|
64
|
+
}, {
|
|
65
|
+
onChange(ev: any): void;
|
|
66
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
67
|
+
modelValue: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
};
|
|
70
|
+
disabled: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
};
|
|
73
|
+
kind: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
activeKind: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
};
|
|
80
|
+
size: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
round: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
flat: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
outline: {
|
|
93
|
+
type: BooleanConstructor;
|
|
94
|
+
default: boolean;
|
|
95
|
+
};
|
|
96
|
+
forceFocus: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
forceHover: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
focusOverrides: {
|
|
105
|
+
type: ObjectConstructor;
|
|
106
|
+
};
|
|
107
|
+
hoverOverrides: {
|
|
108
|
+
type: ObjectConstructor;
|
|
109
|
+
};
|
|
110
|
+
}>> & Readonly<{
|
|
111
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
112
|
+
}>, {
|
|
113
|
+
kind: string;
|
|
114
|
+
size: string;
|
|
115
|
+
flat: boolean;
|
|
116
|
+
outline: boolean;
|
|
117
|
+
round: boolean;
|
|
118
|
+
disabled: boolean;
|
|
119
|
+
forceFocus: boolean;
|
|
120
|
+
forceHover: boolean;
|
|
121
|
+
modelValue: boolean;
|
|
122
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
123
|
+
export default _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
tagName: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
align: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
justify: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
};
|
|
13
|
+
gap: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
18
|
+
tagName: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
align: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
justify: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
};
|
|
29
|
+
gap: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
}>> & Readonly<{}>, {
|
|
34
|
+
tagName: string;
|
|
35
|
+
align: string;
|
|
36
|
+
gap: string;
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
38
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as Btn } from './Btn.vue';
|
|
2
|
+
import { default as HGroup } from './HGroup.vue';
|
|
3
|
+
import { default as InputBase } from './InputBase.vue';
|
|
4
|
+
import { default as InputGroup } from './InputGroup.vue';
|
|
5
|
+
import { default as InputSelect } from './InputSelect.vue';
|
|
6
|
+
import { default as InputText } from './InputText.vue';
|
|
7
|
+
import { default as InputTextarea } from './InputTextarea.vue';
|
|
8
|
+
import { default as Sizer } from './Sizer.vue';
|
|
9
|
+
import { default as Tab } from './Tab.vue';
|
|
10
|
+
import { default as TabCap } from './TabCap.vue';
|
|
11
|
+
import { default as Toggle } from './Toggle.vue';
|
|
12
|
+
import { default as VGroup } from './VGroup.vue';
|
|
13
|
+
export { Btn, HGroup, InputBase, InputGroup, InputSelect, InputText, InputTextarea, Sizer, Tab, TabCap, Toggle, VGroup, };
|