@enos5/enos-vue 1.0.7 → 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 +2629 -1751
- package/dist/index.js.map +1 -0
- package/dist/plugin.d.ts +5 -0
- package/package.json +10 -4
|
@@ -0,0 +1,190 @@
|
|
|
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: string;
|
|
7
|
+
};
|
|
8
|
+
modelModifiers: {
|
|
9
|
+
type: ObjectConstructor;
|
|
10
|
+
default: () => {};
|
|
11
|
+
};
|
|
12
|
+
options: {
|
|
13
|
+
type: ArrayConstructor;
|
|
14
|
+
default: () => never[];
|
|
15
|
+
};
|
|
16
|
+
placeholder: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
placeholderDisabled: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
disabled: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
softDeleteAware: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
labelKey: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
valueKey: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
deletedKey: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
optionLabel: {
|
|
45
|
+
type: FunctionConstructor;
|
|
46
|
+
default: null;
|
|
47
|
+
};
|
|
48
|
+
baseClass: {
|
|
49
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
normalTextClass: {
|
|
53
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
deletedSelectedClass: {
|
|
57
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
optionClass: {
|
|
61
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
deletedOptionClass: {
|
|
65
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
placeholderClass: {
|
|
69
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
dropdownClass: {
|
|
73
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
dropdownOptionClass: {
|
|
77
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
dropdownSelectedClass: {
|
|
81
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
85
|
+
"update:modelValue": (...args: any[]) => void;
|
|
86
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
87
|
+
modelValue: {
|
|
88
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor | null)[];
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
91
|
+
modelModifiers: {
|
|
92
|
+
type: ObjectConstructor;
|
|
93
|
+
default: () => {};
|
|
94
|
+
};
|
|
95
|
+
options: {
|
|
96
|
+
type: ArrayConstructor;
|
|
97
|
+
default: () => never[];
|
|
98
|
+
};
|
|
99
|
+
placeholder: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
placeholderDisabled: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
disabled: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
softDeleteAware: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
115
|
+
labelKey: {
|
|
116
|
+
type: StringConstructor;
|
|
117
|
+
default: string;
|
|
118
|
+
};
|
|
119
|
+
valueKey: {
|
|
120
|
+
type: StringConstructor;
|
|
121
|
+
default: string;
|
|
122
|
+
};
|
|
123
|
+
deletedKey: {
|
|
124
|
+
type: StringConstructor;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
127
|
+
optionLabel: {
|
|
128
|
+
type: FunctionConstructor;
|
|
129
|
+
default: null;
|
|
130
|
+
};
|
|
131
|
+
baseClass: {
|
|
132
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
normalTextClass: {
|
|
136
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
137
|
+
default: string;
|
|
138
|
+
};
|
|
139
|
+
deletedSelectedClass: {
|
|
140
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
143
|
+
optionClass: {
|
|
144
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
145
|
+
default: string;
|
|
146
|
+
};
|
|
147
|
+
deletedOptionClass: {
|
|
148
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
149
|
+
default: string;
|
|
150
|
+
};
|
|
151
|
+
placeholderClass: {
|
|
152
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
153
|
+
default: string;
|
|
154
|
+
};
|
|
155
|
+
dropdownClass: {
|
|
156
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
157
|
+
default: string;
|
|
158
|
+
};
|
|
159
|
+
dropdownOptionClass: {
|
|
160
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
161
|
+
default: string;
|
|
162
|
+
};
|
|
163
|
+
dropdownSelectedClass: {
|
|
164
|
+
type: (ArrayConstructor | StringConstructor | ObjectConstructor)[];
|
|
165
|
+
default: string;
|
|
166
|
+
};
|
|
167
|
+
}>> & Readonly<{
|
|
168
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
169
|
+
}>, {
|
|
170
|
+
disabled: boolean;
|
|
171
|
+
modelValue: string | number | boolean | null;
|
|
172
|
+
modelModifiers: Record<string, any>;
|
|
173
|
+
options: unknown[];
|
|
174
|
+
placeholder: string;
|
|
175
|
+
placeholderDisabled: boolean;
|
|
176
|
+
softDeleteAware: boolean;
|
|
177
|
+
labelKey: string;
|
|
178
|
+
valueKey: string;
|
|
179
|
+
deletedKey: string;
|
|
180
|
+
optionLabel: Function;
|
|
181
|
+
baseClass: string | unknown[] | Record<string, any>;
|
|
182
|
+
normalTextClass: string | unknown[] | Record<string, any>;
|
|
183
|
+
deletedSelectedClass: string | unknown[] | Record<string, any>;
|
|
184
|
+
optionClass: string | unknown[] | Record<string, any>;
|
|
185
|
+
deletedOptionClass: string | unknown[] | Record<string, any>;
|
|
186
|
+
placeholderClass: string | unknown[] | Record<string, any>;
|
|
187
|
+
dropdownClass: string | unknown[] | Record<string, any>;
|
|
188
|
+
dropdownOptionClass: string | unknown[] | Record<string, any>;
|
|
189
|
+
dropdownSelectedClass: string | unknown[] | Record<string, any>;
|
|
190
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
withTimestamp: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
disabled: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
disabledClass: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
}>, {
|
|
21
|
+
focus: () => any;
|
|
22
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
+
"update:modelValue": (...args: any[]) => void;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
modelValue: {
|
|
26
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
withTimestamp: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
33
|
+
disabled: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
disabledClass: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
}>> & Readonly<{
|
|
42
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
43
|
+
}>, {
|
|
44
|
+
disabled: boolean;
|
|
45
|
+
modelValue: string | number | null;
|
|
46
|
+
disabledClass: string;
|
|
47
|
+
withTimestamp: boolean;
|
|
48
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
close: (...args: any[]) => void;
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
show: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
maxWidth: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
closeable: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
}>> & Readonly<{
|
|
36
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
}>, {
|
|
38
|
+
show: boolean;
|
|
39
|
+
maxWidth: string;
|
|
40
|
+
closeable: boolean;
|
|
41
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
42
|
+
type __VLS_Slots = {
|
|
43
|
+
title?: ((props: {}) => any) | undefined;
|
|
44
|
+
} & {
|
|
45
|
+
content?: ((props: {}) => any) | undefined;
|
|
46
|
+
} & {
|
|
47
|
+
footer?: ((props: {}) => any) | undefined;
|
|
48
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
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").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
type __VLS_Slots = {
|
|
9
|
+
default?: ((props: {}) => any) | undefined;
|
|
10
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
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
|
+
align: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
width: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
contentClasses: {
|
|
17
|
+
type: ArrayConstructor;
|
|
18
|
+
default: () => string[];
|
|
19
|
+
};
|
|
20
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
align: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
width: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
contentClasses: {
|
|
30
|
+
type: ArrayConstructor;
|
|
31
|
+
default: () => string[];
|
|
32
|
+
};
|
|
33
|
+
}>> & Readonly<{}>, {
|
|
34
|
+
width: string;
|
|
35
|
+
align: string;
|
|
36
|
+
contentClasses: unknown[];
|
|
37
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
38
|
+
type __VLS_Slots = {
|
|
39
|
+
trigger?: ((props: {
|
|
40
|
+
open: boolean;
|
|
41
|
+
}) => any) | undefined;
|
|
42
|
+
} & {
|
|
43
|
+
content?: ((props: {}) => any) | undefined;
|
|
44
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
as: StringConstructor;
|
|
10
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
href: StringConstructor;
|
|
12
|
+
as: StringConstructor;
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
type __VLS_Slots = {
|
|
15
|
+
default?: ((props: {}) => any) | undefined;
|
|
16
|
+
} & {
|
|
17
|
+
default?: ((props: {}) => any) | undefined;
|
|
18
|
+
} & {
|
|
19
|
+
default?: ((props: {}) => any) | undefined;
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
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").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
submitted: (...args: any[]) => void;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
10
|
+
onSubmitted?: ((...args: any[]) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
type __VLS_Slots = {
|
|
13
|
+
title?: ((props: {}) => any) | undefined;
|
|
14
|
+
} & {
|
|
15
|
+
description?: ((props: {}) => any) | undefined;
|
|
16
|
+
} & {
|
|
17
|
+
form?: ((props: {}) => any) | undefined;
|
|
18
|
+
} & {
|
|
19
|
+
actions?: ((props: {}) => any) | undefined;
|
|
20
|
+
};
|
|
@@ -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
|
+
currentImageUrl: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
accept: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
currentLabel: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
currentSubtext: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
attrs: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
default: () => {};
|
|
23
|
+
};
|
|
24
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
+
"update:modelValue": (...args: any[]) => void;
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
currentImageUrl: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
accept: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
currentLabel: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
currentSubtext: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
attrs: {
|
|
44
|
+
type: ObjectConstructor;
|
|
45
|
+
default: () => {};
|
|
46
|
+
};
|
|
47
|
+
}>> & Readonly<{
|
|
48
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
49
|
+
}>, {
|
|
50
|
+
attrs: Record<string, any>;
|
|
51
|
+
currentImageUrl: string;
|
|
52
|
+
accept: string;
|
|
53
|
+
currentLabel: string;
|
|
54
|
+
currentSubtext: string;
|
|
55
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
message: StringConstructor;
|
|
5
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
message: StringConstructor;
|
|
7
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|