@vuecs/forms 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +43 -0
- package/dist/components/constants.d.ts +5 -0
- package/dist/components/constants.d.ts.map +1 -0
- package/dist/components/form-checkbox/FormCheckbox.vue.d.ts +205 -0
- package/dist/components/form-checkbox/FormCheckbox.vue.d.ts.map +1 -0
- package/dist/components/form-checkbox/index.d.ts +5 -0
- package/dist/components/form-checkbox/index.d.ts.map +1 -0
- package/dist/components/form-checkbox-group/FormCheckboxGroup.vue.d.ts +170 -0
- package/dist/components/form-checkbox-group/FormCheckboxGroup.vue.d.ts.map +1 -0
- package/dist/components/form-checkbox-group/index.d.ts +5 -0
- package/dist/components/form-checkbox-group/index.d.ts.map +1 -0
- package/dist/components/form-group/FormGroup.vue.d.ts +218 -0
- package/dist/components/form-group/FormGroup.vue.d.ts.map +1 -0
- package/dist/components/form-group/index.d.ts +5 -0
- package/dist/components/form-group/index.d.ts.map +1 -0
- package/dist/components/form-input/FormInput.vue.d.ts +195 -0
- package/dist/components/form-input/FormInput.vue.d.ts.map +1 -0
- package/dist/components/form-input/index.d.ts +5 -0
- package/dist/components/form-input/index.d.ts.map +1 -0
- package/dist/components/form-number/FormNumber.vue.d.ts +268 -0
- package/dist/components/form-number/FormNumber.vue.d.ts.map +1 -0
- package/dist/components/form-number/index.d.ts +5 -0
- package/dist/components/form-number/index.d.ts.map +1 -0
- package/dist/components/form-pin/FormPin.vue.d.ts +221 -0
- package/dist/components/form-pin/FormPin.vue.d.ts.map +1 -0
- package/dist/components/form-pin/index.d.ts +5 -0
- package/dist/components/form-pin/index.d.ts.map +1 -0
- package/dist/components/form-radio/FormRadio.vue.d.ts +170 -0
- package/dist/components/form-radio/FormRadio.vue.d.ts.map +1 -0
- package/dist/components/form-radio/index.d.ts +5 -0
- package/dist/components/form-radio/index.d.ts.map +1 -0
- package/dist/components/form-radio-group/FormRadioGroup.vue.d.ts +172 -0
- package/dist/components/form-radio-group/FormRadioGroup.vue.d.ts.map +1 -0
- package/dist/components/form-radio-group/index.d.ts +5 -0
- package/dist/components/form-radio-group/index.d.ts.map +1 -0
- package/dist/components/form-select/FormSelect.vue.d.ts +172 -0
- package/dist/components/form-select/FormSelect.vue.d.ts.map +1 -0
- package/dist/components/form-select/index.d.ts +5 -0
- package/dist/components/form-select/index.d.ts.map +1 -0
- package/dist/components/form-select-search/FormSelectSearch.vue.d.ts +272 -0
- package/dist/components/form-select-search/FormSelectSearch.vue.d.ts.map +1 -0
- package/dist/components/form-select-search/FormSelectSearchEntry.vue.d.ts +40 -0
- package/dist/components/form-select-search/FormSelectSearchEntry.vue.d.ts.map +1 -0
- package/dist/components/form-select-search/index.d.ts +6 -0
- package/dist/components/form-select-search/index.d.ts.map +1 -0
- package/dist/components/form-select-search/type.d.ts +10 -0
- package/dist/components/form-select-search/type.d.ts.map +1 -0
- package/dist/components/form-slider/FormSlider.vue.d.ts +227 -0
- package/dist/components/form-slider/FormSlider.vue.d.ts.map +1 -0
- package/dist/components/form-slider/index.d.ts +5 -0
- package/dist/components/form-slider/index.d.ts.map +1 -0
- package/dist/components/form-switch/FormSwitch.vue.d.ts +204 -0
- package/dist/components/form-switch/FormSwitch.vue.d.ts.map +1 -0
- package/dist/components/form-switch/index.d.ts +5 -0
- package/dist/components/form-switch/index.d.ts.map +1 -0
- package/dist/components/form-tags/FormTags.vue.d.ts +255 -0
- package/dist/components/form-tags/FormTags.vue.d.ts.map +1 -0
- package/dist/components/form-tags/index.d.ts +5 -0
- package/dist/components/form-tags/index.d.ts.map +1 -0
- package/dist/components/form-textarea/FormTextarea.vue.d.ts +89 -0
- package/dist/components/form-textarea/FormTextarea.vue.d.ts.map +1 -0
- package/dist/components/form-textarea/index.d.ts +5 -0
- package/dist/components/form-textarea/index.d.ts.map +1 -0
- package/dist/components/index.d.ts +18 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/type.d.ts +17 -0
- package/dist/components/type.d.ts.map +1 -0
- package/dist/components/validation-group/ValidationGroup.vue.d.ts +119 -0
- package/dist/components/validation-group/ValidationGroup.vue.d.ts.map +1 -0
- package/dist/components/validation-group/index.d.ts +5 -0
- package/dist/components/validation-group/index.d.ts.map +1 -0
- package/dist/composables/index.d.ts +2 -0
- package/dist/composables/index.d.ts.map +1 -0
- package/dist/composables/use-submit-button.d.ts +63 -0
- package/dist/composables/use-submit-button.d.ts.map +1 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +1764 -0
- package/dist/index.mjs.map +1 -0
- package/dist/style.css +791 -0
- package/dist/type.d.ts +3 -0
- package/dist/type.d.ts.map +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/option.d.ts +40 -0
- package/dist/types/option.d.ts.map +1 -0
- package/dist/vue.d.ts +20 -0
- package/dist/vue.d.ts.map +1 -0
- package/package.json +68 -0
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import type { ComponentThemeDefinition, ThemeClassesOverride, ThemeElementDefinition, VariantValues } from '@vuecs/core';
|
|
2
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
3
|
+
export type FormNumberThemeClasses = {
|
|
4
|
+
root: string;
|
|
5
|
+
input: string;
|
|
6
|
+
decrement: string;
|
|
7
|
+
increment: string;
|
|
8
|
+
};
|
|
9
|
+
declare module '@vuecs/core' {
|
|
10
|
+
interface ThemeElements {
|
|
11
|
+
formNumber?: ThemeElementDefinition<FormNumberThemeClasses>;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export declare const formNumberThemeDefaults: ComponentThemeDefinition<FormNumberThemeClasses>;
|
|
15
|
+
declare const formNumberProps: {
|
|
16
|
+
/** Controlled numeric value. `null` is the documented "unset" value. */
|
|
17
|
+
modelValue: {
|
|
18
|
+
type: PropType<number | null | undefined>;
|
|
19
|
+
default: any;
|
|
20
|
+
};
|
|
21
|
+
/** Smallest allowed value. */
|
|
22
|
+
min: {
|
|
23
|
+
type: NumberConstructor;
|
|
24
|
+
default: any;
|
|
25
|
+
};
|
|
26
|
+
/** Largest allowed value. */
|
|
27
|
+
max: {
|
|
28
|
+
type: NumberConstructor;
|
|
29
|
+
default: any;
|
|
30
|
+
};
|
|
31
|
+
/** Increment / decrement step. */
|
|
32
|
+
step: {
|
|
33
|
+
type: NumberConstructor;
|
|
34
|
+
default: number;
|
|
35
|
+
};
|
|
36
|
+
/** When `true`, snap typed values to the nearest step. */
|
|
37
|
+
stepSnapping: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
/** Vuecs convention: do NOT focus the input on programmatic value change (Reka defaults to `true`; this avoids surprising focus jumps). */
|
|
42
|
+
focusOnChange: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
/** `Intl.NumberFormat` options for display + parsing. */
|
|
47
|
+
formatOptions: {
|
|
48
|
+
type: PropType<Intl.NumberFormatOptions>;
|
|
49
|
+
default: any;
|
|
50
|
+
};
|
|
51
|
+
/** BCP-47 locale used for formatting and currency. */
|
|
52
|
+
locale: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: any;
|
|
55
|
+
};
|
|
56
|
+
/** When `true`, prevents the user from interacting with the field. */
|
|
57
|
+
disabled: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
/** Marks the underlying form field as required. */
|
|
62
|
+
required: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
/** Form-field name for HTML form submission. */
|
|
67
|
+
name: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: any;
|
|
70
|
+
};
|
|
71
|
+
/** Element id for the root number field. */
|
|
72
|
+
id: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: any;
|
|
75
|
+
};
|
|
76
|
+
/** Vuecs internal: show ± stepper buttons. Drives the in-template render branch; not forwarded to Reka. */
|
|
77
|
+
steppers: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
/** Theme-class overrides for this component instance. */
|
|
82
|
+
themeClass: {
|
|
83
|
+
type: PropType<ThemeClassesOverride<FormNumberThemeClasses>>;
|
|
84
|
+
default: any;
|
|
85
|
+
};
|
|
86
|
+
/** Theme variant values for this component instance. */
|
|
87
|
+
themeVariant: {
|
|
88
|
+
type: PropType<VariantValues>;
|
|
89
|
+
default: any;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
export type FormNumberProps = ExtractPublicPropTypes<typeof formNumberProps>;
|
|
93
|
+
declare const _default: typeof __VLS_export;
|
|
94
|
+
export default _default;
|
|
95
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
96
|
+
/** Controlled numeric value. `null` is the documented "unset" value. */
|
|
97
|
+
modelValue: {
|
|
98
|
+
type: PropType<number | null | undefined>;
|
|
99
|
+
default: any;
|
|
100
|
+
};
|
|
101
|
+
/** Smallest allowed value. */
|
|
102
|
+
min: {
|
|
103
|
+
type: NumberConstructor;
|
|
104
|
+
default: any;
|
|
105
|
+
};
|
|
106
|
+
/** Largest allowed value. */
|
|
107
|
+
max: {
|
|
108
|
+
type: NumberConstructor;
|
|
109
|
+
default: any;
|
|
110
|
+
};
|
|
111
|
+
/** Increment / decrement step. */
|
|
112
|
+
step: {
|
|
113
|
+
type: NumberConstructor;
|
|
114
|
+
default: number;
|
|
115
|
+
};
|
|
116
|
+
/** When `true`, snap typed values to the nearest step. */
|
|
117
|
+
stepSnapping: {
|
|
118
|
+
type: BooleanConstructor;
|
|
119
|
+
default: boolean;
|
|
120
|
+
};
|
|
121
|
+
/** Vuecs convention: do NOT focus the input on programmatic value change (Reka defaults to `true`; this avoids surprising focus jumps). */
|
|
122
|
+
focusOnChange: {
|
|
123
|
+
type: BooleanConstructor;
|
|
124
|
+
default: boolean;
|
|
125
|
+
};
|
|
126
|
+
/** `Intl.NumberFormat` options for display + parsing. */
|
|
127
|
+
formatOptions: {
|
|
128
|
+
type: PropType<Intl.NumberFormatOptions>;
|
|
129
|
+
default: any;
|
|
130
|
+
};
|
|
131
|
+
/** BCP-47 locale used for formatting and currency. */
|
|
132
|
+
locale: {
|
|
133
|
+
type: StringConstructor;
|
|
134
|
+
default: any;
|
|
135
|
+
};
|
|
136
|
+
/** When `true`, prevents the user from interacting with the field. */
|
|
137
|
+
disabled: {
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
/** Marks the underlying form field as required. */
|
|
142
|
+
required: {
|
|
143
|
+
type: BooleanConstructor;
|
|
144
|
+
default: boolean;
|
|
145
|
+
};
|
|
146
|
+
/** Form-field name for HTML form submission. */
|
|
147
|
+
name: {
|
|
148
|
+
type: StringConstructor;
|
|
149
|
+
default: any;
|
|
150
|
+
};
|
|
151
|
+
/** Element id for the root number field. */
|
|
152
|
+
id: {
|
|
153
|
+
type: StringConstructor;
|
|
154
|
+
default: any;
|
|
155
|
+
};
|
|
156
|
+
/** Vuecs internal: show ± stepper buttons. Drives the in-template render branch; not forwarded to Reka. */
|
|
157
|
+
steppers: {
|
|
158
|
+
type: BooleanConstructor;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
161
|
+
/** Theme-class overrides for this component instance. */
|
|
162
|
+
themeClass: {
|
|
163
|
+
type: PropType<ThemeClassesOverride<FormNumberThemeClasses>>;
|
|
164
|
+
default: any;
|
|
165
|
+
};
|
|
166
|
+
/** Theme variant values for this component instance. */
|
|
167
|
+
themeVariant: {
|
|
168
|
+
type: PropType<VariantValues>;
|
|
169
|
+
default: any;
|
|
170
|
+
};
|
|
171
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
172
|
+
[key: string]: any;
|
|
173
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
174
|
+
/** Controlled numeric value. `null` is the documented "unset" value. */
|
|
175
|
+
modelValue: {
|
|
176
|
+
type: PropType<number | null | undefined>;
|
|
177
|
+
default: any;
|
|
178
|
+
};
|
|
179
|
+
/** Smallest allowed value. */
|
|
180
|
+
min: {
|
|
181
|
+
type: NumberConstructor;
|
|
182
|
+
default: any;
|
|
183
|
+
};
|
|
184
|
+
/** Largest allowed value. */
|
|
185
|
+
max: {
|
|
186
|
+
type: NumberConstructor;
|
|
187
|
+
default: any;
|
|
188
|
+
};
|
|
189
|
+
/** Increment / decrement step. */
|
|
190
|
+
step: {
|
|
191
|
+
type: NumberConstructor;
|
|
192
|
+
default: number;
|
|
193
|
+
};
|
|
194
|
+
/** When `true`, snap typed values to the nearest step. */
|
|
195
|
+
stepSnapping: {
|
|
196
|
+
type: BooleanConstructor;
|
|
197
|
+
default: boolean;
|
|
198
|
+
};
|
|
199
|
+
/** Vuecs convention: do NOT focus the input on programmatic value change (Reka defaults to `true`; this avoids surprising focus jumps). */
|
|
200
|
+
focusOnChange: {
|
|
201
|
+
type: BooleanConstructor;
|
|
202
|
+
default: boolean;
|
|
203
|
+
};
|
|
204
|
+
/** `Intl.NumberFormat` options for display + parsing. */
|
|
205
|
+
formatOptions: {
|
|
206
|
+
type: PropType<Intl.NumberFormatOptions>;
|
|
207
|
+
default: any;
|
|
208
|
+
};
|
|
209
|
+
/** BCP-47 locale used for formatting and currency. */
|
|
210
|
+
locale: {
|
|
211
|
+
type: StringConstructor;
|
|
212
|
+
default: any;
|
|
213
|
+
};
|
|
214
|
+
/** When `true`, prevents the user from interacting with the field. */
|
|
215
|
+
disabled: {
|
|
216
|
+
type: BooleanConstructor;
|
|
217
|
+
default: boolean;
|
|
218
|
+
};
|
|
219
|
+
/** Marks the underlying form field as required. */
|
|
220
|
+
required: {
|
|
221
|
+
type: BooleanConstructor;
|
|
222
|
+
default: boolean;
|
|
223
|
+
};
|
|
224
|
+
/** Form-field name for HTML form submission. */
|
|
225
|
+
name: {
|
|
226
|
+
type: StringConstructor;
|
|
227
|
+
default: any;
|
|
228
|
+
};
|
|
229
|
+
/** Element id for the root number field. */
|
|
230
|
+
id: {
|
|
231
|
+
type: StringConstructor;
|
|
232
|
+
default: any;
|
|
233
|
+
};
|
|
234
|
+
/** Vuecs internal: show ± stepper buttons. Drives the in-template render branch; not forwarded to Reka. */
|
|
235
|
+
steppers: {
|
|
236
|
+
type: BooleanConstructor;
|
|
237
|
+
default: boolean;
|
|
238
|
+
};
|
|
239
|
+
/** Theme-class overrides for this component instance. */
|
|
240
|
+
themeClass: {
|
|
241
|
+
type: PropType<ThemeClassesOverride<FormNumberThemeClasses>>;
|
|
242
|
+
default: any;
|
|
243
|
+
};
|
|
244
|
+
/** Theme variant values for this component instance. */
|
|
245
|
+
themeVariant: {
|
|
246
|
+
type: PropType<VariantValues>;
|
|
247
|
+
default: any;
|
|
248
|
+
};
|
|
249
|
+
}>> & Readonly<{
|
|
250
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
251
|
+
}>, {
|
|
252
|
+
modelValue: number;
|
|
253
|
+
disabled: boolean;
|
|
254
|
+
required: boolean;
|
|
255
|
+
name: string;
|
|
256
|
+
id: string;
|
|
257
|
+
themeClass: ThemeClassesOverride<FormNumberThemeClasses>;
|
|
258
|
+
themeVariant: VariantValues;
|
|
259
|
+
min: number;
|
|
260
|
+
max: number;
|
|
261
|
+
step: number;
|
|
262
|
+
stepSnapping: boolean;
|
|
263
|
+
focusOnChange: boolean;
|
|
264
|
+
formatOptions: Intl.NumberFormatOptions;
|
|
265
|
+
locale: string;
|
|
266
|
+
steppers: boolean;
|
|
267
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
268
|
+
//# sourceMappingURL=FormNumber.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FormNumber.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form-number/FormNumber.vue"],"names":[],"mappings":"AA6HA,OAAO,KAAK,EACR,wBAAwB,EACxB,oBAAoB,EACpB,sBAAsB,EACtB,aAAa,EAChB,MAAM,aAAa,CAAC;AAOrB,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAO5D,MAAM,MAAM,sBAAsB,GAAG;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,OAAO,QAAQ,aAAa,CAAC;IACzB,UAAU,aAAa;QACnB,UAAU,CAAC,EAAE,sBAAsB,CAAC,sBAAsB,CAAC,CAAC;KAC/D;CACJ;AAED,eAAO,MAAM,uBAAuB,EAAE,wBAAwB,CAAC,sBAAsB,CAOpF,CAAC;AAEF,QAAA,MAAM,eAAe;IACjB,wEAAwE;;cAClC,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;IACzE,8BAA8B;;;;;IAE9B,6BAA6B;;;;;IAE7B,kCAAkC;;;;;IAElC,0DAA0D;;;;;IAE1D,2IAA2I;;;;;IAE3I,yDAAyD;;cACxB,QAAQ,CAAC,IAAI,CAAC,mBAAmB,CAAC;;;IACnE,sDAAsD;;;;;IAEtD,sEAAsE;;;;;IAEtE,mDAAmD;;;;;IAEnD,gDAAgD;;;;;IAEhD,4CAA4C;;;;;IAE5C,2GAA2G;;;;;IAE3G,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;IACpF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,sBAAsB,CAAC,OAAO,eAAe,CAAC,CAAC;wBAExD,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IA1Cd,wEAAwE;;cAClC,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;IACzE,8BAA8B;;;;;IAE9B,6BAA6B;;;;;IAE7B,kCAAkC;;;;;IAElC,0DAA0D;;;;;IAE1D,2IAA2I;;;;;IAE3I,yDAAyD;;cACxB,QAAQ,CAAC,IAAI,CAAC,mBAAmB,CAAC;;;IACnE,sDAAsD;;;;;IAEtD,sEAAsE;;;;;IAEtE,mDAAmD;;;;;IAEnD,gDAAgD;;;;;IAEhD,4CAA4C;;;;;IAE5C,2GAA2G;;;;;IAE3G,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;IACpF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IA7BvD,wEAAwE;;cAClC,QAAQ,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;;;IACzE,8BAA8B;;;;;IAE9B,6BAA6B;;;;;IAE7B,kCAAkC;;;;;IAElC,0DAA0D;;;;;IAE1D,2IAA2I;;;;;IAE3I,yDAAyD;;cACxB,QAAQ,CAAC,IAAI,CAAC,mBAAmB,CAAC;;;IACnE,sDAAsD;;;;;IAEtD,sEAAsE;;;;;IAEtE,mDAAmD;;;;;IAEnD,gDAAgD;;;;;IAEhD,4CAA4C;;;;;IAE5C,2GAA2G;;;;;IAE3G,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;IACpF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;4EAsDzD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form-number/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAE1C,OAAO,EAAE,UAAU,IAAI,YAAY,EAAE,CAAC;AACtC,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAC3D,YAAY,EAAE,eAAe,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
import type { ComponentThemeDefinition, ThemeClassesOverride, ThemeElementDefinition, VariantValues } from '@vuecs/core';
|
|
2
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
3
|
+
export type FormPinThemeClasses = {
|
|
4
|
+
root: string;
|
|
5
|
+
input: string;
|
|
6
|
+
};
|
|
7
|
+
declare module '@vuecs/core' {
|
|
8
|
+
interface ThemeElements {
|
|
9
|
+
formPin?: ThemeElementDefinition<FormPinThemeClasses>;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export declare const formPinThemeDefaults: ComponentThemeDefinition<FormPinThemeClasses>;
|
|
13
|
+
export type FormPinType = 'text' | 'number';
|
|
14
|
+
export type FormPinModelValue = string[] | number[];
|
|
15
|
+
declare const formPinProps: {
|
|
16
|
+
/** Controlled value (per-cell array). `null` is accepted as the documented "unset" value. */
|
|
17
|
+
modelValue: {
|
|
18
|
+
type: PropType<FormPinModelValue | null>;
|
|
19
|
+
default: any;
|
|
20
|
+
};
|
|
21
|
+
/** Vuecs internal: number of input cells rendered. Drives the cell-render loop in setup; not forwarded to Reka. */
|
|
22
|
+
length: {
|
|
23
|
+
type: NumberConstructor;
|
|
24
|
+
default: number;
|
|
25
|
+
};
|
|
26
|
+
/** Input type for each cell. Drives `inputmode` and modelValue array element type. */
|
|
27
|
+
type: {
|
|
28
|
+
type: PropType<FormPinType>;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
/** Per-cell placeholder character. */
|
|
32
|
+
placeholder: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
/** When `true`, render values as `<input type="password">` (dots). */
|
|
37
|
+
mask: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
/** Enable mobile OTP autofill (sets `autocomplete="one-time-code"`). */
|
|
42
|
+
otp: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
/** When `true`, prevents the user from interacting with the pin input. */
|
|
47
|
+
disabled: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
/** Marks the underlying form field as required. */
|
|
52
|
+
required: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
/** Form-field name for HTML form submission. */
|
|
57
|
+
name: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: any;
|
|
60
|
+
};
|
|
61
|
+
/** Element id for the root pin input. */
|
|
62
|
+
id: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: any;
|
|
65
|
+
};
|
|
66
|
+
/** Theme-class overrides for this component instance. */
|
|
67
|
+
themeClass: {
|
|
68
|
+
type: PropType<ThemeClassesOverride<FormPinThemeClasses>>;
|
|
69
|
+
default: any;
|
|
70
|
+
};
|
|
71
|
+
/** Theme variant values for this component instance. */
|
|
72
|
+
themeVariant: {
|
|
73
|
+
type: PropType<VariantValues>;
|
|
74
|
+
default: any;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
export type FormPinProps = ExtractPublicPropTypes<typeof formPinProps>;
|
|
78
|
+
declare const _default: typeof __VLS_export;
|
|
79
|
+
export default _default;
|
|
80
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
81
|
+
/** Controlled value (per-cell array). `null` is accepted as the documented "unset" value. */
|
|
82
|
+
modelValue: {
|
|
83
|
+
type: PropType<FormPinModelValue | null>;
|
|
84
|
+
default: any;
|
|
85
|
+
};
|
|
86
|
+
/** Vuecs internal: number of input cells rendered. Drives the cell-render loop in setup; not forwarded to Reka. */
|
|
87
|
+
length: {
|
|
88
|
+
type: NumberConstructor;
|
|
89
|
+
default: number;
|
|
90
|
+
};
|
|
91
|
+
/** Input type for each cell. Drives `inputmode` and modelValue array element type. */
|
|
92
|
+
type: {
|
|
93
|
+
type: PropType<FormPinType>;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
|
+
/** Per-cell placeholder character. */
|
|
97
|
+
placeholder: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
/** When `true`, render values as `<input type="password">` (dots). */
|
|
102
|
+
mask: {
|
|
103
|
+
type: BooleanConstructor;
|
|
104
|
+
default: boolean;
|
|
105
|
+
};
|
|
106
|
+
/** Enable mobile OTP autofill (sets `autocomplete="one-time-code"`). */
|
|
107
|
+
otp: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
/** When `true`, prevents the user from interacting with the pin input. */
|
|
112
|
+
disabled: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
default: boolean;
|
|
115
|
+
};
|
|
116
|
+
/** Marks the underlying form field as required. */
|
|
117
|
+
required: {
|
|
118
|
+
type: BooleanConstructor;
|
|
119
|
+
default: boolean;
|
|
120
|
+
};
|
|
121
|
+
/** Form-field name for HTML form submission. */
|
|
122
|
+
name: {
|
|
123
|
+
type: StringConstructor;
|
|
124
|
+
default: any;
|
|
125
|
+
};
|
|
126
|
+
/** Element id for the root pin input. */
|
|
127
|
+
id: {
|
|
128
|
+
type: StringConstructor;
|
|
129
|
+
default: any;
|
|
130
|
+
};
|
|
131
|
+
/** Theme-class overrides for this component instance. */
|
|
132
|
+
themeClass: {
|
|
133
|
+
type: PropType<ThemeClassesOverride<FormPinThemeClasses>>;
|
|
134
|
+
default: any;
|
|
135
|
+
};
|
|
136
|
+
/** Theme variant values for this component instance. */
|
|
137
|
+
themeVariant: {
|
|
138
|
+
type: PropType<VariantValues>;
|
|
139
|
+
default: any;
|
|
140
|
+
};
|
|
141
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "complete")[], "update:modelValue" | "complete", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
144
|
+
/** Controlled value (per-cell array). `null` is accepted as the documented "unset" value. */
|
|
145
|
+
modelValue: {
|
|
146
|
+
type: PropType<FormPinModelValue | null>;
|
|
147
|
+
default: any;
|
|
148
|
+
};
|
|
149
|
+
/** Vuecs internal: number of input cells rendered. Drives the cell-render loop in setup; not forwarded to Reka. */
|
|
150
|
+
length: {
|
|
151
|
+
type: NumberConstructor;
|
|
152
|
+
default: number;
|
|
153
|
+
};
|
|
154
|
+
/** Input type for each cell. Drives `inputmode` and modelValue array element type. */
|
|
155
|
+
type: {
|
|
156
|
+
type: PropType<FormPinType>;
|
|
157
|
+
default: string;
|
|
158
|
+
};
|
|
159
|
+
/** Per-cell placeholder character. */
|
|
160
|
+
placeholder: {
|
|
161
|
+
type: StringConstructor;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
164
|
+
/** When `true`, render values as `<input type="password">` (dots). */
|
|
165
|
+
mask: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
169
|
+
/** Enable mobile OTP autofill (sets `autocomplete="one-time-code"`). */
|
|
170
|
+
otp: {
|
|
171
|
+
type: BooleanConstructor;
|
|
172
|
+
default: boolean;
|
|
173
|
+
};
|
|
174
|
+
/** When `true`, prevents the user from interacting with the pin input. */
|
|
175
|
+
disabled: {
|
|
176
|
+
type: BooleanConstructor;
|
|
177
|
+
default: boolean;
|
|
178
|
+
};
|
|
179
|
+
/** Marks the underlying form field as required. */
|
|
180
|
+
required: {
|
|
181
|
+
type: BooleanConstructor;
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
184
|
+
/** Form-field name for HTML form submission. */
|
|
185
|
+
name: {
|
|
186
|
+
type: StringConstructor;
|
|
187
|
+
default: any;
|
|
188
|
+
};
|
|
189
|
+
/** Element id for the root pin input. */
|
|
190
|
+
id: {
|
|
191
|
+
type: StringConstructor;
|
|
192
|
+
default: any;
|
|
193
|
+
};
|
|
194
|
+
/** Theme-class overrides for this component instance. */
|
|
195
|
+
themeClass: {
|
|
196
|
+
type: PropType<ThemeClassesOverride<FormPinThemeClasses>>;
|
|
197
|
+
default: any;
|
|
198
|
+
};
|
|
199
|
+
/** Theme variant values for this component instance. */
|
|
200
|
+
themeVariant: {
|
|
201
|
+
type: PropType<VariantValues>;
|
|
202
|
+
default: any;
|
|
203
|
+
};
|
|
204
|
+
}>> & Readonly<{
|
|
205
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
206
|
+
onComplete?: (...args: any[]) => any;
|
|
207
|
+
}>, {
|
|
208
|
+
modelValue: FormPinModelValue;
|
|
209
|
+
disabled: boolean;
|
|
210
|
+
required: boolean;
|
|
211
|
+
name: string;
|
|
212
|
+
id: string;
|
|
213
|
+
themeClass: ThemeClassesOverride<FormPinThemeClasses>;
|
|
214
|
+
themeVariant: VariantValues;
|
|
215
|
+
length: number;
|
|
216
|
+
type: FormPinType;
|
|
217
|
+
placeholder: string;
|
|
218
|
+
mask: boolean;
|
|
219
|
+
otp: boolean;
|
|
220
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
221
|
+
//# sourceMappingURL=FormPin.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FormPin.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form-pin/FormPin.vue"],"names":[],"mappings":"AAkHA,OAAO,KAAK,EACR,wBAAwB,EACxB,oBAAoB,EACpB,sBAAsB,EACtB,aAAa,EAChB,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAO5D,MAAM,MAAM,mBAAmB,GAAG;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,OAAO,QAAQ,aAAa,CAAC;IACzB,UAAU,aAAa;QACnB,OAAO,CAAC,EAAE,sBAAsB,CAAC,mBAAmB,CAAC,CAAC;KACzD;CACJ;AAED,eAAO,MAAM,oBAAoB,EAAE,wBAAwB,CAAC,mBAAmB,CAK9E,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,QAAQ,CAAC;AAC5C,MAAM,MAAM,iBAAiB,GAAG,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AAEpD,QAAA,MAAM,YAAY;IACd,6FAA6F;;cAElE,QAAQ,CAAC,iBAAiB,GAAG,IAAI,CAAC;;;IAG7D,mHAAmH;;;;;IAEnH,sFAAsF;;cAC9D,QAAQ,CAAC,WAAW,CAAC;;;IAC7C,sCAAsC;;;;;IAEtC,sEAAsE;;;;;IAEtE,wEAAwE;;;;;IAExE,0EAA0E;;;;;IAE1E,mDAAmD;;;;;IAEnD,gDAAgD;;;;;IAEhD,yCAAyC;;;;;IAEzC,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,sBAAsB,CAAC,OAAO,YAAY,CAAC,CAAC;wBAElD,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IAvCd,6FAA6F;;cAElE,QAAQ,CAAC,iBAAiB,GAAG,IAAI,CAAC;;;IAG7D,mHAAmH;;;;;IAEnH,sFAAsF;;cAC9D,QAAQ,CAAC,WAAW,CAAC;;;IAC7C,sCAAsC;;;;;IAEtC,sEAAsE;;;;;IAEtE,wEAAwE;;;;;IAExE,0EAA0E;;;;;IAE1E,mDAAmD;;;;;IAEnD,gDAAgD;;;;;IAEhD,yCAAyC;;;;;IAEzC,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IA1BvD,6FAA6F;;cAElE,QAAQ,CAAC,iBAAiB,GAAG,IAAI,CAAC;;;IAG7D,mHAAmH;;;;;IAEnH,sFAAsF;;cAC9D,QAAQ,CAAC,WAAW,CAAC;;;IAC7C,sCAAsC;;;;;IAEtC,sEAAsE;;;;;IAEtE,wEAAwE;;;;;IAExE,0EAA0E;;;;;IAE1E,mDAAmD;;;;;IAEnD,gDAAgD;;;;;IAEhD,yCAAyC;;;;;IAEzC,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;;;4EAoDzD,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import FormPin from './FormPin.vue';
|
|
2
|
+
export { FormPin as VCFormPin };
|
|
3
|
+
export { formPinThemeDefaults } from './FormPin.vue';
|
|
4
|
+
export type { FormPinProps, FormPinThemeClasses, FormPinType, FormPinModelValue, } from './FormPin.vue';
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form-pin/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,eAAe,CAAC;AAEpC,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,CAAC;AAChC,OAAO,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AACrD,YAAY,EACR,YAAY,EACZ,mBAAmB,EACnB,WAAW,EACX,iBAAiB,GACpB,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import type { ComponentDefaultValues, ComponentThemeDefinition, ThemeClassesOverride, ThemeElementDefinition, VariantValues } from '@vuecs/core';
|
|
2
|
+
import type { AcceptableValue } from 'reka-ui';
|
|
3
|
+
import type { ExtractPublicPropTypes, PropType, SlotsType } from 'vue';
|
|
4
|
+
export type FormRadioThemeClasses = {
|
|
5
|
+
root: string;
|
|
6
|
+
indicator: string;
|
|
7
|
+
label: string;
|
|
8
|
+
group: string;
|
|
9
|
+
};
|
|
10
|
+
export type FormRadioDefaults = {
|
|
11
|
+
labelContent: string;
|
|
12
|
+
};
|
|
13
|
+
declare module '@vuecs/core' {
|
|
14
|
+
interface ThemeElements {
|
|
15
|
+
formRadio?: ThemeElementDefinition<FormRadioThemeClasses>;
|
|
16
|
+
}
|
|
17
|
+
interface ComponentDefaults {
|
|
18
|
+
formRadio?: ComponentDefaultValues<FormRadioDefaults>;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export declare const formRadioThemeDefaults: ComponentThemeDefinition<FormRadioThemeClasses>;
|
|
22
|
+
export type FormRadioLabelSlotProps = {
|
|
23
|
+
class: string;
|
|
24
|
+
id: string;
|
|
25
|
+
};
|
|
26
|
+
export type FormRadioIndicatorSlotProps = {
|
|
27
|
+
class: string;
|
|
28
|
+
};
|
|
29
|
+
declare const formRadioProps: {
|
|
30
|
+
/** Form-submission value identifying this radio option. */
|
|
31
|
+
value: {
|
|
32
|
+
type: PropType<AcceptableValue>;
|
|
33
|
+
required: boolean;
|
|
34
|
+
};
|
|
35
|
+
/** When `true`, prevents the user from interacting with the radio. */
|
|
36
|
+
disabled: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
/** Marks the underlying form field as required. */
|
|
41
|
+
required: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
/** Element id; falls back to an SSR-safe generated id. */
|
|
46
|
+
id: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
/** Vuecs convention: render the label by default. Internal control flow, not forwarded to Reka. */
|
|
51
|
+
label: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
/** Default label text (resolved through DefaultsManager). */
|
|
56
|
+
labelContent: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: any;
|
|
59
|
+
};
|
|
60
|
+
/** Theme-class overrides for this component instance. */
|
|
61
|
+
themeClass: {
|
|
62
|
+
type: PropType<ThemeClassesOverride<FormRadioThemeClasses>>;
|
|
63
|
+
default: any;
|
|
64
|
+
};
|
|
65
|
+
/** Theme variant values for this component instance. */
|
|
66
|
+
themeVariant: {
|
|
67
|
+
type: PropType<VariantValues>;
|
|
68
|
+
default: any;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
export type FormRadioProps = ExtractPublicPropTypes<typeof formRadioProps>;
|
|
72
|
+
declare const _default: typeof __VLS_export;
|
|
73
|
+
export default _default;
|
|
74
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
75
|
+
/** Form-submission value identifying this radio option. */
|
|
76
|
+
value: {
|
|
77
|
+
type: PropType<AcceptableValue>;
|
|
78
|
+
required: boolean;
|
|
79
|
+
};
|
|
80
|
+
/** When `true`, prevents the user from interacting with the radio. */
|
|
81
|
+
disabled: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
/** Marks the underlying form field as required. */
|
|
86
|
+
required: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
90
|
+
/** Element id; falls back to an SSR-safe generated id. */
|
|
91
|
+
id: {
|
|
92
|
+
type: StringConstructor;
|
|
93
|
+
default: any;
|
|
94
|
+
};
|
|
95
|
+
/** Vuecs convention: render the label by default. Internal control flow, not forwarded to Reka. */
|
|
96
|
+
label: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
/** Default label text (resolved through DefaultsManager). */
|
|
101
|
+
labelContent: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: any;
|
|
104
|
+
};
|
|
105
|
+
/** Theme-class overrides for this component instance. */
|
|
106
|
+
themeClass: {
|
|
107
|
+
type: PropType<ThemeClassesOverride<FormRadioThemeClasses>>;
|
|
108
|
+
default: any;
|
|
109
|
+
};
|
|
110
|
+
/** Theme variant values for this component instance. */
|
|
111
|
+
themeVariant: {
|
|
112
|
+
type: PropType<VariantValues>;
|
|
113
|
+
default: any;
|
|
114
|
+
};
|
|
115
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
116
|
+
[key: string]: any;
|
|
117
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
118
|
+
/** Form-submission value identifying this radio option. */
|
|
119
|
+
value: {
|
|
120
|
+
type: PropType<AcceptableValue>;
|
|
121
|
+
required: boolean;
|
|
122
|
+
};
|
|
123
|
+
/** When `true`, prevents the user from interacting with the radio. */
|
|
124
|
+
disabled: {
|
|
125
|
+
type: BooleanConstructor;
|
|
126
|
+
default: boolean;
|
|
127
|
+
};
|
|
128
|
+
/** Marks the underlying form field as required. */
|
|
129
|
+
required: {
|
|
130
|
+
type: BooleanConstructor;
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
/** Element id; falls back to an SSR-safe generated id. */
|
|
134
|
+
id: {
|
|
135
|
+
type: StringConstructor;
|
|
136
|
+
default: any;
|
|
137
|
+
};
|
|
138
|
+
/** Vuecs convention: render the label by default. Internal control flow, not forwarded to Reka. */
|
|
139
|
+
label: {
|
|
140
|
+
type: BooleanConstructor;
|
|
141
|
+
default: boolean;
|
|
142
|
+
};
|
|
143
|
+
/** Default label text (resolved through DefaultsManager). */
|
|
144
|
+
labelContent: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
default: any;
|
|
147
|
+
};
|
|
148
|
+
/** Theme-class overrides for this component instance. */
|
|
149
|
+
themeClass: {
|
|
150
|
+
type: PropType<ThemeClassesOverride<FormRadioThemeClasses>>;
|
|
151
|
+
default: any;
|
|
152
|
+
};
|
|
153
|
+
/** Theme variant values for this component instance. */
|
|
154
|
+
themeVariant: {
|
|
155
|
+
type: PropType<VariantValues>;
|
|
156
|
+
default: any;
|
|
157
|
+
};
|
|
158
|
+
}>> & Readonly<{}>, {
|
|
159
|
+
label: boolean;
|
|
160
|
+
disabled: boolean;
|
|
161
|
+
required: boolean;
|
|
162
|
+
id: string;
|
|
163
|
+
labelContent: string;
|
|
164
|
+
themeClass: ThemeClassesOverride<FormRadioThemeClasses>;
|
|
165
|
+
themeVariant: VariantValues;
|
|
166
|
+
}, SlotsType<{
|
|
167
|
+
label: FormRadioLabelSlotProps;
|
|
168
|
+
indicator: FormRadioIndicatorSlotProps;
|
|
169
|
+
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
170
|
+
//# sourceMappingURL=FormRadio.vue.d.ts.map
|