@enos5/enos-vue 1.0.8 → 1.0.9
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/README.md +23 -10
- package/dist/components/ActionCard.vue.d.ts +33 -0
- package/dist/components/ActionMessage.vue.d.ts +16 -0
- package/dist/components/ActionSection.vue.d.ts +14 -0
- package/dist/components/ApplicationLogo.vue.d.ts +3 -0
- package/dist/components/AuthenticationCard.vue.d.ts +15 -0
- package/dist/components/Badge.vue.d.ts +59 -0
- package/dist/components/Banner.vue.d.ts +3 -0
- package/dist/components/Button.vue.d.ts +40 -0
- package/dist/components/Card.vue.d.ts +95 -0
- package/dist/components/CardTabs.vue.d.ts +32 -0
- package/dist/components/Checkbox.vue.d.ts +28 -0
- package/dist/components/CheckboxInput.vue.d.ts +55 -0
- package/dist/components/CheckboxMultipleInput.vue.d.ts +37 -0
- package/dist/components/ConfirmationModal.vue.d.ts +59 -0
- package/dist/components/CustomSelect.vue.d.ts +190 -0
- package/dist/components/DateInput.vue.d.ts +48 -0
- package/dist/components/DialogModal.vue.d.ts +48 -0
- package/dist/components/Divider.vue.d.ts +10 -0
- package/dist/components/Dropdown.vue.d.ts +44 -0
- package/dist/components/DropdownLink.vue.d.ts +20 -0
- package/dist/components/FormSection.vue.d.ts +20 -0
- package/dist/components/ImageInput.vue.d.ts +55 -0
- package/dist/components/InputError.vue.d.ts +7 -0
- package/dist/components/InputGroup.vue.d.ts +282 -0
- package/dist/components/InputLabel.vue.d.ts +14 -0
- package/dist/components/LinkButton.vue.d.ts +68 -0
- package/dist/components/Modal.vue.d.ts +55 -0
- package/dist/components/NavLink.vue.d.ts +18 -0
- package/dist/components/NotationInput.vue.d.ts +37 -0
- package/dist/components/RadioInput.vue.d.ts +55 -0
- package/dist/components/RadioMultipleInput.vue.d.ts +46 -0
- package/dist/components/ResponsiveNavLink.vue.d.ts +24 -0
- package/dist/components/SectionBorder.vue.d.ts +3 -0
- package/dist/components/SectionTitle.vue.d.ts +17 -0
- package/dist/components/SelectInput.vue.d.ts +190 -0
- package/dist/components/SortControls.vue.d.ts +67 -0
- package/dist/components/TableList.vue.d.ts +126 -0
- package/dist/components/TableListForm.vue.d.ts +258 -0
- package/dist/components/TextArea.vue.d.ts +41 -0
- package/dist/components/TextInput.vue.d.ts +41 -0
- package/dist/components/ThSortable.vue.d.ts +39 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.js +2628 -1749
- package/dist/index.js.map +1 -0
- package/dist/plugin.d.ts +5 -0
- package/package.json +10 -4
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
5
|
+
$slots: S;
|
|
6
|
+
});
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
type: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
label: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
helperText: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
name: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: undefined;
|
|
23
|
+
};
|
|
24
|
+
errorMessage: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
modelValue: {
|
|
29
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor | null)[];
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
disabled: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
disabledClass: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
modelModifiers: {
|
|
41
|
+
type: ObjectConstructor;
|
|
42
|
+
default: () => {};
|
|
43
|
+
};
|
|
44
|
+
withTimestamp: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
options: {
|
|
49
|
+
type: ArrayConstructor;
|
|
50
|
+
default: () => never[];
|
|
51
|
+
};
|
|
52
|
+
placeholder: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
placeholderDisabled: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
softDeleteAware: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
labelKey: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
valueKey: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
deletedKey: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
optionLabel: {
|
|
77
|
+
type: FunctionConstructor;
|
|
78
|
+
default: null;
|
|
79
|
+
};
|
|
80
|
+
baseClass: {
|
|
81
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
82
|
+
default: undefined;
|
|
83
|
+
};
|
|
84
|
+
normalTextClass: {
|
|
85
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
86
|
+
default: undefined;
|
|
87
|
+
};
|
|
88
|
+
deletedSelectedClass: {
|
|
89
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
90
|
+
default: undefined;
|
|
91
|
+
};
|
|
92
|
+
optionClass: {
|
|
93
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
94
|
+
default: undefined;
|
|
95
|
+
};
|
|
96
|
+
deletedOptionClass: {
|
|
97
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
98
|
+
default: undefined;
|
|
99
|
+
};
|
|
100
|
+
placeholderClass: {
|
|
101
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
102
|
+
default: undefined;
|
|
103
|
+
};
|
|
104
|
+
accept: {
|
|
105
|
+
type: StringConstructor;
|
|
106
|
+
default: undefined;
|
|
107
|
+
};
|
|
108
|
+
currentImageUrl: {
|
|
109
|
+
type: StringConstructor;
|
|
110
|
+
default: string;
|
|
111
|
+
};
|
|
112
|
+
currentLabel: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
currentSubtext: {
|
|
117
|
+
type: StringConstructor;
|
|
118
|
+
default: string;
|
|
119
|
+
};
|
|
120
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
121
|
+
"update:modelValue": (...args: any[]) => void;
|
|
122
|
+
blur: (...args: any[]) => void;
|
|
123
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
124
|
+
type: {
|
|
125
|
+
type: StringConstructor;
|
|
126
|
+
required: true;
|
|
127
|
+
};
|
|
128
|
+
label: {
|
|
129
|
+
type: StringConstructor;
|
|
130
|
+
default: string;
|
|
131
|
+
};
|
|
132
|
+
helperText: {
|
|
133
|
+
type: StringConstructor;
|
|
134
|
+
default: string;
|
|
135
|
+
};
|
|
136
|
+
name: {
|
|
137
|
+
type: StringConstructor;
|
|
138
|
+
default: undefined;
|
|
139
|
+
};
|
|
140
|
+
errorMessage: {
|
|
141
|
+
type: StringConstructor;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
144
|
+
modelValue: {
|
|
145
|
+
type: (ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor | null)[];
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
148
|
+
disabled: {
|
|
149
|
+
type: BooleanConstructor;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
152
|
+
disabledClass: {
|
|
153
|
+
type: StringConstructor;
|
|
154
|
+
default: string;
|
|
155
|
+
};
|
|
156
|
+
modelModifiers: {
|
|
157
|
+
type: ObjectConstructor;
|
|
158
|
+
default: () => {};
|
|
159
|
+
};
|
|
160
|
+
withTimestamp: {
|
|
161
|
+
type: BooleanConstructor;
|
|
162
|
+
default: boolean;
|
|
163
|
+
};
|
|
164
|
+
options: {
|
|
165
|
+
type: ArrayConstructor;
|
|
166
|
+
default: () => never[];
|
|
167
|
+
};
|
|
168
|
+
placeholder: {
|
|
169
|
+
type: StringConstructor;
|
|
170
|
+
default: string;
|
|
171
|
+
};
|
|
172
|
+
placeholderDisabled: {
|
|
173
|
+
type: BooleanConstructor;
|
|
174
|
+
default: boolean;
|
|
175
|
+
};
|
|
176
|
+
softDeleteAware: {
|
|
177
|
+
type: BooleanConstructor;
|
|
178
|
+
default: boolean;
|
|
179
|
+
};
|
|
180
|
+
labelKey: {
|
|
181
|
+
type: StringConstructor;
|
|
182
|
+
default: string;
|
|
183
|
+
};
|
|
184
|
+
valueKey: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
deletedKey: {
|
|
189
|
+
type: StringConstructor;
|
|
190
|
+
default: string;
|
|
191
|
+
};
|
|
192
|
+
optionLabel: {
|
|
193
|
+
type: FunctionConstructor;
|
|
194
|
+
default: null;
|
|
195
|
+
};
|
|
196
|
+
baseClass: {
|
|
197
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
198
|
+
default: undefined;
|
|
199
|
+
};
|
|
200
|
+
normalTextClass: {
|
|
201
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
202
|
+
default: undefined;
|
|
203
|
+
};
|
|
204
|
+
deletedSelectedClass: {
|
|
205
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
206
|
+
default: undefined;
|
|
207
|
+
};
|
|
208
|
+
optionClass: {
|
|
209
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
210
|
+
default: undefined;
|
|
211
|
+
};
|
|
212
|
+
deletedOptionClass: {
|
|
213
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
214
|
+
default: undefined;
|
|
215
|
+
};
|
|
216
|
+
placeholderClass: {
|
|
217
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
218
|
+
default: undefined;
|
|
219
|
+
};
|
|
220
|
+
accept: {
|
|
221
|
+
type: StringConstructor;
|
|
222
|
+
default: undefined;
|
|
223
|
+
};
|
|
224
|
+
currentImageUrl: {
|
|
225
|
+
type: StringConstructor;
|
|
226
|
+
default: string;
|
|
227
|
+
};
|
|
228
|
+
currentLabel: {
|
|
229
|
+
type: StringConstructor;
|
|
230
|
+
default: string;
|
|
231
|
+
};
|
|
232
|
+
currentSubtext: {
|
|
233
|
+
type: StringConstructor;
|
|
234
|
+
default: string;
|
|
235
|
+
};
|
|
236
|
+
}>> & Readonly<{
|
|
237
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
238
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
239
|
+
}>, {
|
|
240
|
+
label: string;
|
|
241
|
+
name: string;
|
|
242
|
+
disabled: boolean;
|
|
243
|
+
modelValue: string | number | boolean | unknown[] | null;
|
|
244
|
+
disabledClass: string;
|
|
245
|
+
modelModifiers: Record<string, any>;
|
|
246
|
+
options: unknown[];
|
|
247
|
+
placeholder: string;
|
|
248
|
+
placeholderDisabled: boolean;
|
|
249
|
+
softDeleteAware: boolean;
|
|
250
|
+
labelKey: string;
|
|
251
|
+
valueKey: string;
|
|
252
|
+
deletedKey: string;
|
|
253
|
+
optionLabel: Function;
|
|
254
|
+
baseClass: string | unknown[] | Record<string, any>;
|
|
255
|
+
normalTextClass: string | unknown[] | Record<string, any>;
|
|
256
|
+
deletedSelectedClass: string | unknown[] | Record<string, any>;
|
|
257
|
+
optionClass: string | unknown[] | Record<string, any>;
|
|
258
|
+
deletedOptionClass: string | unknown[] | Record<string, any>;
|
|
259
|
+
placeholderClass: string | unknown[] | Record<string, any>;
|
|
260
|
+
withTimestamp: boolean;
|
|
261
|
+
currentImageUrl: string;
|
|
262
|
+
accept: string;
|
|
263
|
+
currentLabel: string;
|
|
264
|
+
currentSubtext: string;
|
|
265
|
+
helperText: string;
|
|
266
|
+
errorMessage: string;
|
|
267
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
268
|
+
type __VLS_Slots = {
|
|
269
|
+
'unsupported-type'?: ((props: {
|
|
270
|
+
type: string;
|
|
271
|
+
modelValue: string | number | boolean | unknown[] | null;
|
|
272
|
+
updateValue: (value: any) => void;
|
|
273
|
+
attrs: Attrs;
|
|
274
|
+
}) => any) | undefined;
|
|
275
|
+
} & {
|
|
276
|
+
'unsupported-type'?: ((props: {
|
|
277
|
+
type: string;
|
|
278
|
+
modelValue: string | number | boolean | unknown[] | null;
|
|
279
|
+
updateValue: (value: any) => void;
|
|
280
|
+
attrs: Attrs;
|
|
281
|
+
}) => any) | undefined;
|
|
282
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
5
|
+
$slots: S;
|
|
6
|
+
});
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
value: StringConstructor;
|
|
9
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
value: StringConstructor;
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
type __VLS_Slots = {
|
|
13
|
+
default?: ((props: {}) => any) | undefined;
|
|
14
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
5
|
+
$slots: S;
|
|
6
|
+
});
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
href: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
title: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: null;
|
|
15
|
+
};
|
|
16
|
+
external: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
target: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: null;
|
|
23
|
+
};
|
|
24
|
+
rel: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: null;
|
|
27
|
+
};
|
|
28
|
+
variant: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
href: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
title: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: null;
|
|
40
|
+
};
|
|
41
|
+
external: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
target: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: null;
|
|
48
|
+
};
|
|
49
|
+
rel: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: null;
|
|
52
|
+
};
|
|
53
|
+
variant: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
}>> & Readonly<{}>, {
|
|
58
|
+
title: string;
|
|
59
|
+
variant: string;
|
|
60
|
+
external: boolean;
|
|
61
|
+
target: string;
|
|
62
|
+
rel: string;
|
|
63
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
64
|
+
type __VLS_Slots = {
|
|
65
|
+
default?: ((props: {}) => any) | undefined;
|
|
66
|
+
} & {
|
|
67
|
+
default?: ((props: {}) => any) | undefined;
|
|
68
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
5
|
+
$slots: S;
|
|
6
|
+
});
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
show: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
maxWidth: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
closeable: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
position: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
validator: (value: unknown) => boolean;
|
|
24
|
+
};
|
|
25
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
+
close: (...args: any[]) => void;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
+
show: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
maxWidth: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
closeable: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
position: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
validator: (value: unknown) => boolean;
|
|
44
|
+
};
|
|
45
|
+
}>> & Readonly<{
|
|
46
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
47
|
+
}>, {
|
|
48
|
+
show: boolean;
|
|
49
|
+
position: string;
|
|
50
|
+
maxWidth: string;
|
|
51
|
+
closeable: boolean;
|
|
52
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
53
|
+
type __VLS_Slots = {
|
|
54
|
+
default?: ((props: {}) => any) | undefined;
|
|
55
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
5
|
+
$slots: S;
|
|
6
|
+
});
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
href: StringConstructor;
|
|
9
|
+
active: BooleanConstructor;
|
|
10
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
href: StringConstructor;
|
|
12
|
+
active: BooleanConstructor;
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
|
+
active: boolean;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
type __VLS_Slots = {
|
|
17
|
+
default?: ((props: {}) => any) | undefined;
|
|
18
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
options: {
|
|
9
|
+
type: ArrayConstructor;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
disabled: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
"update:modelValue": (...args: any[]) => void;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
modelValue: {
|
|
20
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
options: {
|
|
24
|
+
type: ArrayConstructor;
|
|
25
|
+
default: () => never[];
|
|
26
|
+
};
|
|
27
|
+
disabled: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
}>> & Readonly<{
|
|
32
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
}>, {
|
|
34
|
+
disabled: boolean;
|
|
35
|
+
modelValue: string | number | null;
|
|
36
|
+
options: unknown[];
|
|
37
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor | null)[];
|
|
6
|
+
default: null;
|
|
7
|
+
};
|
|
8
|
+
value: {
|
|
9
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
label: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
name: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
disabled: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
+
"update:modelValue": (...args: any[]) => void;
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
modelValue: {
|
|
28
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor | null)[];
|
|
29
|
+
default: null;
|
|
30
|
+
};
|
|
31
|
+
value: {
|
|
32
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
label: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
name: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
43
|
+
disabled: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
}>> & Readonly<{
|
|
48
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
49
|
+
}>, {
|
|
50
|
+
label: string;
|
|
51
|
+
name: string;
|
|
52
|
+
disabled: boolean;
|
|
53
|
+
value: string | number | boolean;
|
|
54
|
+
modelValue: string | number | boolean | null;
|
|
55
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
options: {
|
|
9
|
+
type: ArrayConstructor;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
name: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: undefined;
|
|
15
|
+
};
|
|
16
|
+
disabled: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
"update:modelValue": (...args: any[]) => void;
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
modelValue: {
|
|
24
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
options: {
|
|
28
|
+
type: ArrayConstructor;
|
|
29
|
+
default: () => never[];
|
|
30
|
+
};
|
|
31
|
+
name: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
disabled: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
}>> & Readonly<{
|
|
40
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
}>, {
|
|
42
|
+
name: string;
|
|
43
|
+
disabled: boolean;
|
|
44
|
+
modelValue: string | number | null;
|
|
45
|
+
options: unknown[];
|
|
46
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
4
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
5
|
+
$slots: S;
|
|
6
|
+
});
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
+
active: BooleanConstructor;
|
|
9
|
+
href: StringConstructor;
|
|
10
|
+
as: StringConstructor;
|
|
11
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
active: BooleanConstructor;
|
|
13
|
+
href: StringConstructor;
|
|
14
|
+
as: StringConstructor;
|
|
15
|
+
}>> & Readonly<{}>, {
|
|
16
|
+
active: boolean;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
type __VLS_Slots = {
|
|
19
|
+
default?: ((props: {}) => any) | undefined;
|
|
20
|
+
} & {
|
|
21
|
+
default?: ((props: {}) => any) | undefined;
|
|
22
|
+
} & {
|
|
23
|
+
default?: ((props: {}) => any) | undefined;
|
|
24
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
title?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
description?: (props: typeof __VLS_3) => any;
|
|
6
|
+
} & {
|
|
7
|
+
aside?: (props: typeof __VLS_5) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|