@sfxcode/formkit-primevue 3.3.1 → 3.3.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/FormKitDataDebug.vue +19 -0
- package/dist/components/FormKitDataEdit.vue +133 -0
- package/dist/components/FormKitDataView.vue +51 -0
- package/dist/components/FormKitIcon.vue +18 -0
- package/dist/components/FormKitPrefix.vue +11 -0
- package/dist/components/FormKitSuffix.vue +11 -0
- package/dist/components/PrimeAutoComplete.vue +95 -0
- package/dist/components/PrimeCascadeSelect.vue +43 -0
- package/dist/components/PrimeCheckbox.vue +51 -0
- package/dist/components/PrimeColorPicker.vue +33 -0
- package/dist/components/PrimeDatePicker.vue +97 -0
- package/dist/components/PrimeInputMask.vue +69 -0
- package/dist/components/PrimeInputNumber.vue +75 -0
- package/dist/components/PrimeInputOtp.vue +42 -0
- package/dist/components/PrimeInputText.vue +65 -0
- package/dist/components/PrimeKnob.vue +50 -0
- package/dist/components/PrimeListbox.vue +54 -0
- package/dist/components/PrimeMultiSelect.vue +70 -0
- package/dist/components/PrimeOutputBoolean.vue +42 -0
- package/dist/components/PrimeOutputDate.vue +51 -0
- package/dist/components/PrimeOutputDuration.vue +36 -0
- package/dist/components/PrimeOutputLink.vue +52 -0
- package/dist/components/PrimeOutputList.vue +106 -0
- package/dist/components/PrimeOutputNumber.vue +56 -0
- package/dist/components/PrimeOutputReference.vue +64 -0
- package/dist/components/PrimeOutputText.vue +72 -0
- package/dist/components/PrimePassword.vue +52 -0
- package/dist/components/PrimeRadioButton.vue +48 -0
- package/dist/components/PrimeRating.vue +40 -0
- package/dist/components/PrimeSelect.vue +71 -0
- package/dist/components/PrimeSelectButton.vue +44 -0
- package/dist/components/PrimeSlider.vue +42 -0
- package/dist/components/PrimeTextarea.vue +37 -0
- package/dist/components/PrimeToggleButton.vue +42 -0
- package/dist/components/PrimeToggleSwitch.vue +42 -0
- package/dist/components/PrimeTreeSelect.vue +48 -0
- package/dist/components/index.d.ts +24 -2
- package/dist/components/index.js +167 -4
- package/dist/components/index.mjs +48 -0
- package/dist/composables/index.d.ts +9 -2
- package/dist/composables/index.js +61 -2
- package/dist/composables/index.mjs +18 -0
- package/dist/composables/useFormKitInput.d.ts +11 -0
- package/dist/composables/useFormKitInput.js +62 -0
- package/dist/composables/useFormKitInput.mjs +57 -0
- package/dist/composables/useFormKitRepeater.d.ts +15 -0
- package/dist/composables/useFormKitRepeater.js +74 -0
- package/dist/composables/useFormKitRepeater.mjs +82 -0
- package/dist/composables/useFormKitSchema.d.ts +36 -0
- package/dist/composables/useFormKitSchema.js +83 -0
- package/dist/composables/useFormKitSchema.mjs +66 -0
- package/dist/composables/useFormKitSection.d.ts +7 -0
- package/dist/composables/useFormKitSection.js +31 -0
- package/dist/composables/useFormKitSection.mjs +19 -0
- package/dist/composables/useInputEditor.d.ts +8 -0
- package/dist/composables/useInputEditor.js +148 -0
- package/dist/composables/useInputEditor.mjs +171 -0
- package/dist/composables/useInputEditorSchema.d.ts +163 -0
- package/dist/composables/useInputEditorSchema.js +313 -0
- package/dist/composables/useInputEditorSchema.mjs +323 -0
- package/dist/composables/useOutputDuration.d.ts +4 -0
- package/dist/composables/useOutputDuration.js +40 -0
- package/dist/composables/useOutputDuration.mjs +32 -0
- package/dist/composables/usePrimeInputs.d.ts +3 -0
- package/dist/composables/usePrimeInputs.js +62 -0
- package/dist/composables/usePrimeInputs.mjs +53 -0
- package/dist/definitions/index.d.ts +32 -37
- package/dist/definitions/index.js +42 -4
- package/dist/definitions/index.mjs +68 -0
- package/dist/definitions/input.d.ts +47 -0
- package/dist/definitions/input.js +142 -0
- package/dist/definitions/input.mjs +421 -0
- package/dist/definitions/output.d.ts +9 -0
- package/dist/definitions/output.js +46 -0
- package/dist/definitions/output.mjs +120 -0
- package/dist/index.d.ts +142 -145
- package/dist/index.js +62 -5
- package/dist/index.mjs +20 -0
- package/dist/plugins/index.d.ts +3 -7
- package/dist/plugins/index.js +57 -45
- package/dist/plugins/index.mjs +59 -0
- package/dist/vue.d.ts +5 -0
- package/package.json +88 -40
- package/dist/PrimeTreeSelect-Dksx7tL-.js +0 -1881
- package/dist/components-HJnJ39cU.js +0 -255
- package/dist/composables-CZ6f1QYe.js +0 -820
- package/dist/definitions-BHwWaom7.js +0 -1196
- package/dist/index-Ch3MtT1C.d.ts +0 -266
- package/dist/index-EJ8M51RO.d.ts +0 -917
package/dist/index-EJ8M51RO.d.ts
DELETED
|
@@ -1,917 +0,0 @@
|
|
|
1
|
-
import * as vue from "vue";
|
|
2
|
-
import { PropType } from "vue";
|
|
3
|
-
import { FormKitFrameworkContext, FormKitSchemaDefinition } from "@formkit/core";
|
|
4
|
-
import { AutoCompleteProps } from "primevue/autocomplete";
|
|
5
|
-
import { CascadeSelectProps } from "primevue/cascadeselect";
|
|
6
|
-
import { CheckboxProps } from "primevue/checkbox";
|
|
7
|
-
import { ColorPickerProps } from "primevue/colorpicker";
|
|
8
|
-
import { DatePickerProps } from "primevue/datepicker";
|
|
9
|
-
import { InputMaskProps } from "primevue/inputmask";
|
|
10
|
-
import { InputNumberProps } from "primevue/inputnumber";
|
|
11
|
-
import { InputTextProps } from "primevue/inputtext";
|
|
12
|
-
import { KnobProps } from "primevue/knob";
|
|
13
|
-
import { ListboxProps } from "primevue/listbox";
|
|
14
|
-
import { MultiSelectProps } from "primevue/multiselect";
|
|
15
|
-
import { PasswordProps } from "primevue/password";
|
|
16
|
-
import { RadioButtonProps } from "primevue/radiobutton";
|
|
17
|
-
import { RatingProps } from "primevue/rating";
|
|
18
|
-
import { SelectProps } from "primevue/select";
|
|
19
|
-
import { SelectButtonProps } from "primevue/selectbutton";
|
|
20
|
-
import { SliderProps } from "primevue/slider";
|
|
21
|
-
import { TextareaProps } from "primevue/textarea";
|
|
22
|
-
import { ToggleButtonProps } from "primevue/togglebutton";
|
|
23
|
-
import { ToggleSwitchProps } from "primevue/toggleswitch";
|
|
24
|
-
import { TreeSelectProps } from "primevue/treeselect";
|
|
25
|
-
|
|
26
|
-
//#region src/components/FormKitDataEdit.vue.d.ts
|
|
27
|
-
declare var __VLS_16: {}, __VLS_29: {}, __VLS_37: {};
|
|
28
|
-
type __VLS_Slots$1 = {} & {
|
|
29
|
-
default?: (props: typeof __VLS_16) => any;
|
|
30
|
-
} & {
|
|
31
|
-
messages?: (props: typeof __VLS_29) => any;
|
|
32
|
-
} & {
|
|
33
|
-
submit?: (props: typeof __VLS_37) => any;
|
|
34
|
-
};
|
|
35
|
-
declare const __VLS_base$1: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
36
|
-
id: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
data: {
|
|
41
|
-
type: ObjectConstructor;
|
|
42
|
-
default: null;
|
|
43
|
-
};
|
|
44
|
-
schema: {
|
|
45
|
-
type: PropType<FormKitSchemaDefinition>;
|
|
46
|
-
default: null;
|
|
47
|
-
};
|
|
48
|
-
formClass: {
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
actionsClass: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
submitSeverity: {
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
submitClass: {
|
|
61
|
-
type: StringConstructor;
|
|
62
|
-
default: string;
|
|
63
|
-
};
|
|
64
|
-
submitLabel: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
submitIcon: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
showReset: {
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
default: boolean;
|
|
75
|
-
};
|
|
76
|
-
resetSeverity: {
|
|
77
|
-
type: StringConstructor;
|
|
78
|
-
default: string;
|
|
79
|
-
};
|
|
80
|
-
resetLabel: {
|
|
81
|
-
type: StringConstructor;
|
|
82
|
-
default: string;
|
|
83
|
-
};
|
|
84
|
-
resetClass: {
|
|
85
|
-
type: StringConstructor;
|
|
86
|
-
default: string;
|
|
87
|
-
};
|
|
88
|
-
resetIcon: {
|
|
89
|
-
type: StringConstructor;
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
debugData: {
|
|
93
|
-
type: BooleanConstructor;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
debugSchema: {
|
|
97
|
-
type: BooleanConstructor;
|
|
98
|
-
default: boolean;
|
|
99
|
-
};
|
|
100
|
-
modelValue: {
|
|
101
|
-
type: PropType<any>;
|
|
102
|
-
};
|
|
103
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
104
|
-
dataSaved: (...args: any[]) => void;
|
|
105
|
-
onReset: (...args: any[]) => void;
|
|
106
|
-
"update:modelValue": (value: any) => void;
|
|
107
|
-
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
108
|
-
id: {
|
|
109
|
-
type: StringConstructor;
|
|
110
|
-
default: string;
|
|
111
|
-
};
|
|
112
|
-
data: {
|
|
113
|
-
type: ObjectConstructor;
|
|
114
|
-
default: null;
|
|
115
|
-
};
|
|
116
|
-
schema: {
|
|
117
|
-
type: PropType<FormKitSchemaDefinition>;
|
|
118
|
-
default: null;
|
|
119
|
-
};
|
|
120
|
-
formClass: {
|
|
121
|
-
type: StringConstructor;
|
|
122
|
-
default: string;
|
|
123
|
-
};
|
|
124
|
-
actionsClass: {
|
|
125
|
-
type: StringConstructor;
|
|
126
|
-
default: string;
|
|
127
|
-
};
|
|
128
|
-
submitSeverity: {
|
|
129
|
-
type: StringConstructor;
|
|
130
|
-
default: string;
|
|
131
|
-
};
|
|
132
|
-
submitClass: {
|
|
133
|
-
type: StringConstructor;
|
|
134
|
-
default: string;
|
|
135
|
-
};
|
|
136
|
-
submitLabel: {
|
|
137
|
-
type: StringConstructor;
|
|
138
|
-
default: string;
|
|
139
|
-
};
|
|
140
|
-
submitIcon: {
|
|
141
|
-
type: StringConstructor;
|
|
142
|
-
default: string;
|
|
143
|
-
};
|
|
144
|
-
showReset: {
|
|
145
|
-
type: BooleanConstructor;
|
|
146
|
-
default: boolean;
|
|
147
|
-
};
|
|
148
|
-
resetSeverity: {
|
|
149
|
-
type: StringConstructor;
|
|
150
|
-
default: string;
|
|
151
|
-
};
|
|
152
|
-
resetLabel: {
|
|
153
|
-
type: StringConstructor;
|
|
154
|
-
default: string;
|
|
155
|
-
};
|
|
156
|
-
resetClass: {
|
|
157
|
-
type: StringConstructor;
|
|
158
|
-
default: string;
|
|
159
|
-
};
|
|
160
|
-
resetIcon: {
|
|
161
|
-
type: StringConstructor;
|
|
162
|
-
default: string;
|
|
163
|
-
};
|
|
164
|
-
debugData: {
|
|
165
|
-
type: BooleanConstructor;
|
|
166
|
-
default: boolean;
|
|
167
|
-
};
|
|
168
|
-
debugSchema: {
|
|
169
|
-
type: BooleanConstructor;
|
|
170
|
-
default: boolean;
|
|
171
|
-
};
|
|
172
|
-
modelValue: {
|
|
173
|
-
type: PropType<any>;
|
|
174
|
-
};
|
|
175
|
-
}>> & Readonly<{
|
|
176
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
177
|
-
onDataSaved?: ((...args: any[]) => any) | undefined;
|
|
178
|
-
onOnReset?: ((...args: any[]) => any) | undefined;
|
|
179
|
-
}>, {
|
|
180
|
-
id: string;
|
|
181
|
-
data: Record<string, any>;
|
|
182
|
-
schema: FormKitSchemaDefinition;
|
|
183
|
-
formClass: string;
|
|
184
|
-
actionsClass: string;
|
|
185
|
-
submitSeverity: string;
|
|
186
|
-
submitClass: string;
|
|
187
|
-
submitLabel: string;
|
|
188
|
-
submitIcon: string;
|
|
189
|
-
showReset: boolean;
|
|
190
|
-
resetSeverity: string;
|
|
191
|
-
resetLabel: string;
|
|
192
|
-
resetClass: string;
|
|
193
|
-
resetIcon: string;
|
|
194
|
-
debugData: boolean;
|
|
195
|
-
debugSchema: boolean;
|
|
196
|
-
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
197
|
-
declare const __VLS_export$22: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
198
|
-
declare const _default$22: typeof __VLS_export$22;
|
|
199
|
-
type __VLS_WithSlots$1<T, S> = T & {
|
|
200
|
-
new (): {
|
|
201
|
-
$slots: S;
|
|
202
|
-
};
|
|
203
|
-
};
|
|
204
|
-
//#endregion
|
|
205
|
-
//#region src/components/FormKitDataView.vue.d.ts
|
|
206
|
-
declare var __VLS_13: {};
|
|
207
|
-
type __VLS_Slots = {} & {
|
|
208
|
-
default?: (props: typeof __VLS_13) => any;
|
|
209
|
-
};
|
|
210
|
-
declare const __VLS_base: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
211
|
-
data: {
|
|
212
|
-
type: ObjectConstructor;
|
|
213
|
-
default: null;
|
|
214
|
-
};
|
|
215
|
-
schema: {
|
|
216
|
-
type: PropType<FormKitSchemaDefinition>;
|
|
217
|
-
default: null;
|
|
218
|
-
};
|
|
219
|
-
formClass: {
|
|
220
|
-
type: StringConstructor;
|
|
221
|
-
default: string;
|
|
222
|
-
};
|
|
223
|
-
debugData: {
|
|
224
|
-
type: BooleanConstructor;
|
|
225
|
-
default: boolean;
|
|
226
|
-
};
|
|
227
|
-
debugSchema: {
|
|
228
|
-
type: BooleanConstructor;
|
|
229
|
-
default: boolean;
|
|
230
|
-
};
|
|
231
|
-
modelValue: {
|
|
232
|
-
type: PropType<any>;
|
|
233
|
-
};
|
|
234
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
235
|
-
"update:modelValue": (value: any) => any;
|
|
236
|
-
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
237
|
-
data: {
|
|
238
|
-
type: ObjectConstructor;
|
|
239
|
-
default: null;
|
|
240
|
-
};
|
|
241
|
-
schema: {
|
|
242
|
-
type: PropType<FormKitSchemaDefinition>;
|
|
243
|
-
default: null;
|
|
244
|
-
};
|
|
245
|
-
formClass: {
|
|
246
|
-
type: StringConstructor;
|
|
247
|
-
default: string;
|
|
248
|
-
};
|
|
249
|
-
debugData: {
|
|
250
|
-
type: BooleanConstructor;
|
|
251
|
-
default: boolean;
|
|
252
|
-
};
|
|
253
|
-
debugSchema: {
|
|
254
|
-
type: BooleanConstructor;
|
|
255
|
-
default: boolean;
|
|
256
|
-
};
|
|
257
|
-
modelValue: {
|
|
258
|
-
type: PropType<any>;
|
|
259
|
-
};
|
|
260
|
-
}>> & Readonly<{
|
|
261
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
262
|
-
}>, {
|
|
263
|
-
data: Record<string, any>;
|
|
264
|
-
schema: FormKitSchemaDefinition;
|
|
265
|
-
formClass: string;
|
|
266
|
-
debugData: boolean;
|
|
267
|
-
debugSchema: boolean;
|
|
268
|
-
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
269
|
-
declare const __VLS_export$21: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
270
|
-
declare const _default$21: typeof __VLS_export$21;
|
|
271
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
272
|
-
new (): {
|
|
273
|
-
$slots: S;
|
|
274
|
-
};
|
|
275
|
-
};
|
|
276
|
-
//#endregion
|
|
277
|
-
//#region src/components/PrimeAutoComplete.vue.d.ts
|
|
278
|
-
interface FormKitPrimeAutoCompleteProps {
|
|
279
|
-
pt?: AutoCompleteProps["pt"];
|
|
280
|
-
ptOptions?: AutoCompleteProps["ptOptions"];
|
|
281
|
-
unstyled?: AutoCompleteProps["unstyled"];
|
|
282
|
-
dropdown?: AutoCompleteProps["dropdown"];
|
|
283
|
-
multiple?: AutoCompleteProps["multiple"];
|
|
284
|
-
typeahead?: AutoCompleteProps["typeahead"];
|
|
285
|
-
optionLabel?: AutoCompleteProps["optionLabel"];
|
|
286
|
-
options?: any[] | undefined;
|
|
287
|
-
size?: AutoCompleteProps["size"];
|
|
288
|
-
minLength?: AutoCompleteProps["minLength"];
|
|
289
|
-
placeholder?: AutoCompleteProps["placeholder"];
|
|
290
|
-
fluid?: AutoCompleteProps["fluid"];
|
|
291
|
-
separators?: string[] | [];
|
|
292
|
-
}
|
|
293
|
-
declare const __VLS_export$20: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
294
|
-
context: {
|
|
295
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeAutoCompleteProps>;
|
|
296
|
-
required: true;
|
|
297
|
-
};
|
|
298
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
299
|
-
context: {
|
|
300
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeAutoCompleteProps>;
|
|
301
|
-
required: true;
|
|
302
|
-
};
|
|
303
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
304
|
-
declare const _default$20: typeof __VLS_export$20;
|
|
305
|
-
//#endregion
|
|
306
|
-
//#region src/components/PrimeCascadeSelect.vue.d.ts
|
|
307
|
-
interface FormKitPrimeCascadeSelectProps {
|
|
308
|
-
options?: CascadeSelectProps["options"];
|
|
309
|
-
optionLabel?: CascadeSelectProps["optionLabel"];
|
|
310
|
-
optionValue?: CascadeSelectProps["optionValue"];
|
|
311
|
-
optionGroupLabel?: CascadeSelectProps["optionGroupLabel"];
|
|
312
|
-
optionGroupChildren?: CascadeSelectProps["optionGroupChildren"];
|
|
313
|
-
placeholder?: CascadeSelectProps["placeholder"];
|
|
314
|
-
pt?: CascadeSelectProps["pt"];
|
|
315
|
-
ptOptions?: CascadeSelectProps["ptOptions"];
|
|
316
|
-
unstyled?: CascadeSelectProps["unstyled"];
|
|
317
|
-
size?: CascadeSelectProps["size"];
|
|
318
|
-
}
|
|
319
|
-
declare const __VLS_export$19: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
320
|
-
context: {
|
|
321
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeCascadeSelectProps>;
|
|
322
|
-
required: true;
|
|
323
|
-
};
|
|
324
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
325
|
-
context: {
|
|
326
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeCascadeSelectProps>;
|
|
327
|
-
required: true;
|
|
328
|
-
};
|
|
329
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
330
|
-
declare const _default$19: typeof __VLS_export$19;
|
|
331
|
-
//#endregion
|
|
332
|
-
//#region src/components/PrimeCheckbox.vue.d.ts
|
|
333
|
-
interface FormKitPrimeCheckboxProps {
|
|
334
|
-
binary?: CheckboxProps["binary"];
|
|
335
|
-
trueValue?: CheckboxProps["trueValue"];
|
|
336
|
-
falseValue?: CheckboxProps["falseValue"];
|
|
337
|
-
pt?: CheckboxProps["pt"];
|
|
338
|
-
ptOptions?: CheckboxProps["ptOptions"];
|
|
339
|
-
unstyled?: CheckboxProps["unstyled"];
|
|
340
|
-
indeterminate?: CheckboxProps["indeterminate"];
|
|
341
|
-
variant?: CheckboxProps["variant"];
|
|
342
|
-
size?: CheckboxProps["size"];
|
|
343
|
-
}
|
|
344
|
-
declare const __VLS_export$18: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
345
|
-
context: {
|
|
346
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeCheckboxProps>;
|
|
347
|
-
required: true;
|
|
348
|
-
};
|
|
349
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
350
|
-
context: {
|
|
351
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeCheckboxProps>;
|
|
352
|
-
required: true;
|
|
353
|
-
};
|
|
354
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
355
|
-
declare const _default$18: typeof __VLS_export$18;
|
|
356
|
-
//#endregion
|
|
357
|
-
//#region src/components/PrimeColorPicker.vue.d.ts
|
|
358
|
-
interface FormKitPrimeColorPickerProps {
|
|
359
|
-
defaultColor?: ColorPickerProps["defaultColor"];
|
|
360
|
-
inline?: ColorPickerProps["inline"];
|
|
361
|
-
format?: ColorPickerProps["format"];
|
|
362
|
-
pt?: ColorPickerProps["pt"];
|
|
363
|
-
ptOptions?: ColorPickerProps["ptOptions"];
|
|
364
|
-
unstyled?: ColorPickerProps["unstyled"];
|
|
365
|
-
}
|
|
366
|
-
declare const __VLS_export$17: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
367
|
-
context: {
|
|
368
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeColorPickerProps>;
|
|
369
|
-
required: true;
|
|
370
|
-
};
|
|
371
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
372
|
-
context: {
|
|
373
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeColorPickerProps>;
|
|
374
|
-
required: true;
|
|
375
|
-
};
|
|
376
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
377
|
-
declare const _default$17: typeof __VLS_export$17;
|
|
378
|
-
//#endregion
|
|
379
|
-
//#region src/components/PrimeDatePicker.vue.d.ts
|
|
380
|
-
interface FormKitPrimeDatePickerProps {
|
|
381
|
-
dateFormat?: DatePickerProps["dateFormat"];
|
|
382
|
-
placeholder?: DatePickerProps["placeholder"];
|
|
383
|
-
selectionMode?: DatePickerProps["selectionMode"];
|
|
384
|
-
inline?: DatePickerProps["inline"];
|
|
385
|
-
icon?: DatePickerProps["icon"];
|
|
386
|
-
showOtherMonths?: DatePickerProps["showOtherMonths"];
|
|
387
|
-
selectOtherMonths?: DatePickerProps["selectOtherMonths"];
|
|
388
|
-
showIcon?: DatePickerProps["showIcon"];
|
|
389
|
-
prevIcon?: DatePickerProps["prevIcon"];
|
|
390
|
-
nextIcon?: DatePickerProps["nextIcon"];
|
|
391
|
-
incrementIcon?: DatePickerProps["incrementIcon"];
|
|
392
|
-
decrementIcon?: DatePickerProps["decrementIcon"];
|
|
393
|
-
numberOfMonths?: DatePickerProps["numberOfMonths"];
|
|
394
|
-
responsiveOptions?: DatePickerProps["responsiveOptions"];
|
|
395
|
-
view?: DatePickerProps["view"];
|
|
396
|
-
minDate?: DatePickerProps["minDate"];
|
|
397
|
-
maxDate?: DatePickerProps["maxDate"];
|
|
398
|
-
disabledDates?: DatePickerProps["disabledDates"];
|
|
399
|
-
disabledDays?: DatePickerProps["disabledDays"];
|
|
400
|
-
maxDateCount?: DatePickerProps["maxDateCount"];
|
|
401
|
-
showOnFocus?: DatePickerProps["showOnFocus"];
|
|
402
|
-
autoZIndex?: DatePickerProps["autoZIndex"];
|
|
403
|
-
baseZIndex?: DatePickerProps["baseZIndex"];
|
|
404
|
-
showButtonBar?: DatePickerProps["showButtonBar"];
|
|
405
|
-
showTime?: DatePickerProps["showTime"];
|
|
406
|
-
timeOnly?: DatePickerProps["timeOnly"];
|
|
407
|
-
shortYearCutoff?: DatePickerProps["shortYearCutoff"];
|
|
408
|
-
hourFormat?: DatePickerProps["hourFormat"];
|
|
409
|
-
stepHour?: DatePickerProps["stepHour"];
|
|
410
|
-
stepMinute?: DatePickerProps["stepMinute"];
|
|
411
|
-
stepSecond?: DatePickerProps["stepSecond"];
|
|
412
|
-
showSeconds?: DatePickerProps["showSeconds"];
|
|
413
|
-
hideOnDateTimeSelect?: DatePickerProps["hideOnDateTimeSelect"];
|
|
414
|
-
hideOnRangeSelection?: DatePickerProps["hideOnRangeSelection"];
|
|
415
|
-
timeSeparator?: DatePickerProps["timeSeparator"];
|
|
416
|
-
showWeek?: DatePickerProps["showWeek"];
|
|
417
|
-
manualInput?: DatePickerProps["manualInput"];
|
|
418
|
-
appendTo?: DatePickerProps["appendTo"];
|
|
419
|
-
panelStyle?: DatePickerProps["panelStyle"];
|
|
420
|
-
panelClass?: DatePickerProps["panelClass"];
|
|
421
|
-
pt?: DatePickerProps["pt"];
|
|
422
|
-
ptOptions?: DatePickerProps["ptOptions"];
|
|
423
|
-
unstyled?: DatePickerProps["unstyled"];
|
|
424
|
-
size?: DatePickerProps["size"];
|
|
425
|
-
updateModelType?: DatePickerProps["updateModelType"];
|
|
426
|
-
}
|
|
427
|
-
declare const __VLS_export$16: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
428
|
-
context: {
|
|
429
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeDatePickerProps>;
|
|
430
|
-
required: true;
|
|
431
|
-
};
|
|
432
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
433
|
-
context: {
|
|
434
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeDatePickerProps>;
|
|
435
|
-
required: true;
|
|
436
|
-
};
|
|
437
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
438
|
-
declare const _default$16: typeof __VLS_export$16;
|
|
439
|
-
//#endregion
|
|
440
|
-
//#region src/components/PrimeInputMask.vue.d.ts
|
|
441
|
-
interface FormKitPrimeInputMaskProps {
|
|
442
|
-
mask?: InputMaskProps["mask"];
|
|
443
|
-
slotChar?: InputMaskProps["slotChar"];
|
|
444
|
-
autoClear?: InputMaskProps["autoClear"];
|
|
445
|
-
unmask?: InputMaskProps["unmask"];
|
|
446
|
-
pt?: InputMaskProps["pt"];
|
|
447
|
-
ptOptions?: InputMaskProps["ptOptions"];
|
|
448
|
-
unstyled?: InputMaskProps["unstyled"];
|
|
449
|
-
invalid?: InputMaskProps["invalid"];
|
|
450
|
-
variant?: InputMaskProps["variant"];
|
|
451
|
-
size?: InputMaskProps["size"];
|
|
452
|
-
}
|
|
453
|
-
declare const __VLS_export$15: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
454
|
-
context: {
|
|
455
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeInputMaskProps>;
|
|
456
|
-
required: true;
|
|
457
|
-
};
|
|
458
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
459
|
-
context: {
|
|
460
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeInputMaskProps>;
|
|
461
|
-
required: true;
|
|
462
|
-
};
|
|
463
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
464
|
-
declare const _default$15: typeof __VLS_export$15;
|
|
465
|
-
//#endregion
|
|
466
|
-
//#region src/components/PrimeInputNumber.vue.d.ts
|
|
467
|
-
interface FormKitPrimeInputNumberProps {
|
|
468
|
-
useGrouping?: InputNumberProps["useGrouping"];
|
|
469
|
-
min?: InputNumberProps["min"];
|
|
470
|
-
max?: InputNumberProps["max"];
|
|
471
|
-
minFractionDigits?: InputNumberProps["minFractionDigits"];
|
|
472
|
-
maxFractionDigits?: InputNumberProps["maxFractionDigits"];
|
|
473
|
-
locale?: InputNumberProps["locale"];
|
|
474
|
-
mode?: InputNumberProps["mode"];
|
|
475
|
-
currency?: InputNumberProps["currency"];
|
|
476
|
-
prefix?: InputNumberProps["prefix"];
|
|
477
|
-
suffix?: InputNumberProps["suffix"];
|
|
478
|
-
showButtons?: InputNumberProps["showButtons"];
|
|
479
|
-
buttonLayout?: InputNumberProps["buttonLayout"];
|
|
480
|
-
step?: InputNumberProps["step"];
|
|
481
|
-
pt?: InputNumberProps["pt"];
|
|
482
|
-
ptOptions?: InputNumberProps["ptOptions"];
|
|
483
|
-
unstyled?: InputNumberProps["unstyled"];
|
|
484
|
-
placeholder?: InputNumberProps["placeholder"];
|
|
485
|
-
size?: InputNumberProps["size"];
|
|
486
|
-
}
|
|
487
|
-
declare const __VLS_export$14: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
488
|
-
context: {
|
|
489
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeInputNumberProps>;
|
|
490
|
-
required: true;
|
|
491
|
-
};
|
|
492
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
493
|
-
context: {
|
|
494
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeInputNumberProps>;
|
|
495
|
-
required: true;
|
|
496
|
-
};
|
|
497
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
498
|
-
declare const _default$14: typeof __VLS_export$14;
|
|
499
|
-
//#endregion
|
|
500
|
-
//#region src/components/PrimeInputText.vue.d.ts
|
|
501
|
-
interface FormKitPrimeInputTextProps {
|
|
502
|
-
pt?: InputTextProps["pt"];
|
|
503
|
-
ptOptions?: InputTextProps["ptOptions"];
|
|
504
|
-
unstyled?: InputTextProps["unstyled"];
|
|
505
|
-
size?: InputTextProps["size"];
|
|
506
|
-
inputType?: string | undefined;
|
|
507
|
-
placeholder?: string;
|
|
508
|
-
}
|
|
509
|
-
declare const __VLS_export$13: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
510
|
-
context: {
|
|
511
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeInputTextProps>;
|
|
512
|
-
required: true;
|
|
513
|
-
};
|
|
514
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
515
|
-
context: {
|
|
516
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeInputTextProps>;
|
|
517
|
-
required: true;
|
|
518
|
-
};
|
|
519
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
520
|
-
declare const _default$13: typeof __VLS_export$13;
|
|
521
|
-
//#endregion
|
|
522
|
-
//#region src/components/PrimeKnob.vue.d.ts
|
|
523
|
-
interface FormKitPrimeKnobProps {
|
|
524
|
-
pt?: KnobProps["pt"];
|
|
525
|
-
ptOptions?: KnobProps["ptOptions"];
|
|
526
|
-
unstyled?: KnobProps["unstyled"];
|
|
527
|
-
min?: KnobProps["min"];
|
|
528
|
-
max?: KnobProps["max"];
|
|
529
|
-
step?: KnobProps["step"];
|
|
530
|
-
size?: KnobProps["size"];
|
|
531
|
-
strokeWidth?: KnobProps["strokeWidth"];
|
|
532
|
-
showValue?: KnobProps["showValue"];
|
|
533
|
-
valueColor?: KnobProps["valueColor"];
|
|
534
|
-
rangeColor?: KnobProps["rangeColor"];
|
|
535
|
-
textColor?: KnobProps["textColor"];
|
|
536
|
-
valueTemplate?: KnobProps["valueTemplate"];
|
|
537
|
-
}
|
|
538
|
-
declare const __VLS_export$12: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
539
|
-
context: {
|
|
540
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeKnobProps>;
|
|
541
|
-
required: true;
|
|
542
|
-
};
|
|
543
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
544
|
-
context: {
|
|
545
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeKnobProps>;
|
|
546
|
-
required: true;
|
|
547
|
-
};
|
|
548
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
549
|
-
declare const _default$12: typeof __VLS_export$12;
|
|
550
|
-
//#endregion
|
|
551
|
-
//#region src/components/PrimeListbox.vue.d.ts
|
|
552
|
-
interface FormKitPrimeListboxProps {
|
|
553
|
-
pt?: ListboxProps["pt"];
|
|
554
|
-
ptOptions?: ListboxProps["ptOptions"];
|
|
555
|
-
unstyled?: ListboxProps["unstyled"];
|
|
556
|
-
options?: ListboxProps["options"];
|
|
557
|
-
optionLabel?: ListboxProps["optionLabel"];
|
|
558
|
-
optionValue?: ListboxProps["optionValue"];
|
|
559
|
-
multiple?: ListboxProps["multiple"];
|
|
560
|
-
filter?: ListboxProps["filter"];
|
|
561
|
-
filterIcon?: ListboxProps["filterIcon"];
|
|
562
|
-
filterPlaceholder?: ListboxProps["filterPlaceholder"];
|
|
563
|
-
filterLocale?: ListboxProps["filterLocale"];
|
|
564
|
-
filterMatchMode?: ListboxProps["filterMatchMode"];
|
|
565
|
-
autoOptionFocus?: ListboxProps["autoOptionFocus"];
|
|
566
|
-
selectOnFocus?: ListboxProps["selectOnFocus"];
|
|
567
|
-
optionDisabled?: ListboxProps["optionDisabled"];
|
|
568
|
-
optionGroupLabel?: ListboxProps["optionGroupLabel"];
|
|
569
|
-
optionGroupChildren?: ListboxProps["optionGroupChildren"];
|
|
570
|
-
listStyle?: ListboxProps["listStyle"];
|
|
571
|
-
dataKey?: ListboxProps["dataKey"];
|
|
572
|
-
metaKeySelection?: ListboxProps["metaKeySelection"];
|
|
573
|
-
virtualScrollerOptions?: ListboxProps["virtualScrollerOptions"];
|
|
574
|
-
tabindex?: ListboxProps["tabindex"];
|
|
575
|
-
ariaLabel?: ListboxProps["ariaLabel"];
|
|
576
|
-
ariaLabelledby?: ListboxProps["ariaLabelledby"];
|
|
577
|
-
}
|
|
578
|
-
declare const __VLS_export$11: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
579
|
-
context: {
|
|
580
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeListboxProps>;
|
|
581
|
-
required: true;
|
|
582
|
-
};
|
|
583
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
584
|
-
context: {
|
|
585
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeListboxProps>;
|
|
586
|
-
required: true;
|
|
587
|
-
};
|
|
588
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
589
|
-
declare const _default$11: typeof __VLS_export$11;
|
|
590
|
-
//#endregion
|
|
591
|
-
//#region src/components/PrimeMultiSelect.vue.d.ts
|
|
592
|
-
interface FormKitPrimeMultiSelectProps {
|
|
593
|
-
options?: MultiSelectProps["options"];
|
|
594
|
-
optionLabel?: MultiSelectProps["optionLabel"];
|
|
595
|
-
optionValue?: MultiSelectProps["optionValue"];
|
|
596
|
-
optionDisabled?: MultiSelectProps["optionDisabled"];
|
|
597
|
-
optionGroupLabel?: MultiSelectProps["optionGroupLabel"];
|
|
598
|
-
optionGroupChildren?: MultiSelectProps["optionGroupChildren"];
|
|
599
|
-
scrollHeight?: MultiSelectProps["scrollHeight"];
|
|
600
|
-
dataKey?: MultiSelectProps["dataKey"];
|
|
601
|
-
filter?: MultiSelectProps["filter"];
|
|
602
|
-
filterPlaceholder?: MultiSelectProps["filterPlaceholder"];
|
|
603
|
-
filterLocale?: MultiSelectProps["filterLocale"];
|
|
604
|
-
filterMatchMode?: MultiSelectProps["filterMatchMode"];
|
|
605
|
-
filterFields?: MultiSelectProps["filterFields"];
|
|
606
|
-
appendTo?: MultiSelectProps["appendTo"];
|
|
607
|
-
display?: MultiSelectProps["display"];
|
|
608
|
-
maxSelectedLabels?: MultiSelectProps["maxSelectedLabels"];
|
|
609
|
-
selectedItemsLabel?: MultiSelectProps["selectedItemsLabel"];
|
|
610
|
-
selectionLimit?: MultiSelectProps["selectionLimit"];
|
|
611
|
-
showToggleAll?: MultiSelectProps["showToggleAll"];
|
|
612
|
-
loading?: MultiSelectProps["loading"];
|
|
613
|
-
selectAll?: MultiSelectProps["selectAll"];
|
|
614
|
-
resetFilterOnHide?: MultiSelectProps["resetFilterOnHide"];
|
|
615
|
-
virtualScrollerOptions?: MultiSelectProps["virtualScrollerOptions"];
|
|
616
|
-
autoOptionFocus?: MultiSelectProps["autoOptionFocus"];
|
|
617
|
-
autoFilterFocus?: MultiSelectProps["autoFilterFocus"];
|
|
618
|
-
filterMessage?: MultiSelectProps["filterMessage"];
|
|
619
|
-
selectionMessage?: MultiSelectProps["selectionMessage"];
|
|
620
|
-
emptySelectionMessage?: MultiSelectProps["emptySelectionMessage"];
|
|
621
|
-
emptyFilterMessage?: MultiSelectProps["emptyFilterMessage"];
|
|
622
|
-
emptyMessage?: MultiSelectProps["emptyMessage"];
|
|
623
|
-
pt?: MultiSelectProps["pt"];
|
|
624
|
-
placeholder?: MultiSelectProps["placeholder"];
|
|
625
|
-
ptOptions?: MultiSelectProps["ptOptions"];
|
|
626
|
-
unstyled?: MultiSelectProps["unstyled"];
|
|
627
|
-
size?: MultiSelectProps["size"];
|
|
628
|
-
}
|
|
629
|
-
declare const __VLS_export$10: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
630
|
-
context: {
|
|
631
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeMultiSelectProps>;
|
|
632
|
-
required: true;
|
|
633
|
-
};
|
|
634
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
635
|
-
context: {
|
|
636
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeMultiSelectProps>;
|
|
637
|
-
required: true;
|
|
638
|
-
};
|
|
639
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
640
|
-
declare const _default$10: typeof __VLS_export$10;
|
|
641
|
-
//#endregion
|
|
642
|
-
//#region src/components/PrimePassword.vue.d.ts
|
|
643
|
-
interface FormKitPrimePasswordProps {
|
|
644
|
-
mediumRegex?: PasswordProps["mediumRegex"];
|
|
645
|
-
strongRegex?: PasswordProps["strongRegex"];
|
|
646
|
-
promptLabel?: PasswordProps["promptLabel"];
|
|
647
|
-
weakLabel?: PasswordProps["weakLabel"];
|
|
648
|
-
mediumLabel?: PasswordProps["mediumLabel"];
|
|
649
|
-
strongLabel?: PasswordProps["strongLabel"];
|
|
650
|
-
maskIcon?: PasswordProps["maskIcon"];
|
|
651
|
-
unmaskIcon?: PasswordProps["unmaskIcon"];
|
|
652
|
-
pt?: PasswordProps["pt"];
|
|
653
|
-
ptOptions?: PasswordProps["ptOptions"];
|
|
654
|
-
unstyled?: PasswordProps["unstyled"];
|
|
655
|
-
placeholder?: PasswordProps["placeholder"];
|
|
656
|
-
feedback?: PasswordProps["feedback"];
|
|
657
|
-
toggleMask?: PasswordProps["toggleMask"];
|
|
658
|
-
size?: PasswordProps["size"];
|
|
659
|
-
}
|
|
660
|
-
declare const __VLS_export$9: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
661
|
-
context: {
|
|
662
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimePasswordProps>;
|
|
663
|
-
required: true;
|
|
664
|
-
};
|
|
665
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
666
|
-
context: {
|
|
667
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimePasswordProps>;
|
|
668
|
-
required: true;
|
|
669
|
-
};
|
|
670
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
671
|
-
declare const _default$9: typeof __VLS_export$9;
|
|
672
|
-
//#endregion
|
|
673
|
-
//#region src/components/PrimeRadioButton.vue.d.ts
|
|
674
|
-
interface FormKitPrimeRadioButtonProps {
|
|
675
|
-
pt?: RadioButtonProps["pt"];
|
|
676
|
-
ptOptions?: RadioButtonProps["ptOptions"];
|
|
677
|
-
unstyled?: RadioButtonProps["unstyled"];
|
|
678
|
-
size?: RadioButtonProps["size"];
|
|
679
|
-
options?: {
|
|
680
|
-
label: string;
|
|
681
|
-
value: any;
|
|
682
|
-
}[];
|
|
683
|
-
optionsClass?: string;
|
|
684
|
-
optionClass?: string;
|
|
685
|
-
}
|
|
686
|
-
declare const __VLS_export$8: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
687
|
-
context: {
|
|
688
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRadioButtonProps>;
|
|
689
|
-
required: true;
|
|
690
|
-
};
|
|
691
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
692
|
-
context: {
|
|
693
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRadioButtonProps>;
|
|
694
|
-
required: true;
|
|
695
|
-
};
|
|
696
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
697
|
-
declare const _default$8: typeof __VLS_export$8;
|
|
698
|
-
//#endregion
|
|
699
|
-
//#region src/components/PrimeRating.vue.d.ts
|
|
700
|
-
interface FormKitPrimeRatingProps {
|
|
701
|
-
unstyled?: RatingProps["unstyled"];
|
|
702
|
-
stars?: RatingProps["stars"];
|
|
703
|
-
onIcon?: RatingProps["onIcon"];
|
|
704
|
-
offIcon?: RatingProps["offIcon"];
|
|
705
|
-
ptOptions?: RatingProps["ptOptions"];
|
|
706
|
-
pt?: RatingProps["pt"];
|
|
707
|
-
}
|
|
708
|
-
declare const __VLS_export$7: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
709
|
-
context: {
|
|
710
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRatingProps>;
|
|
711
|
-
required: true;
|
|
712
|
-
};
|
|
713
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
714
|
-
context: {
|
|
715
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeRatingProps>;
|
|
716
|
-
required: true;
|
|
717
|
-
};
|
|
718
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
719
|
-
declare const _default$7: typeof __VLS_export$7;
|
|
720
|
-
//#endregion
|
|
721
|
-
//#region src/components/PrimeSelect.vue.d.ts
|
|
722
|
-
interface FormKitPrimeSelectProps {
|
|
723
|
-
options?: SelectProps["options"];
|
|
724
|
-
optionLabel?: SelectProps["optionLabel"];
|
|
725
|
-
optionValue?: SelectProps["optionValue"];
|
|
726
|
-
optionDisabled?: SelectProps["optionDisabled"];
|
|
727
|
-
optionGroupLabel?: SelectProps["optionGroupLabel"];
|
|
728
|
-
optionGroupChildren?: SelectProps["optionGroupChildren"];
|
|
729
|
-
scrollHeight?: SelectProps["scrollHeight"];
|
|
730
|
-
filter?: SelectProps["filter"];
|
|
731
|
-
filterPlaceholder?: SelectProps["filterPlaceholder"];
|
|
732
|
-
filterLocale?: SelectProps["filterLocale"];
|
|
733
|
-
filterMatchMode?: SelectProps["filterMatchMode"];
|
|
734
|
-
filterFields?: SelectProps["filterFields"];
|
|
735
|
-
editable?: SelectProps["editable"];
|
|
736
|
-
placeholder?: SelectProps["placeholder"];
|
|
737
|
-
dataKey?: SelectProps["dataKey"];
|
|
738
|
-
showClear?: SelectProps["showClear"];
|
|
739
|
-
overlayStyle?: SelectProps["overlayStyle"];
|
|
740
|
-
overlayClass?: SelectProps["overlayClass"];
|
|
741
|
-
appendTo?: SelectProps["appendTo"];
|
|
742
|
-
resetFilterOnHide?: SelectProps["resetFilterOnHide"];
|
|
743
|
-
virtualScrollerOptions?: SelectProps["virtualScrollerOptions"];
|
|
744
|
-
autoOptionFocus?: SelectProps["autoOptionFocus"];
|
|
745
|
-
selectOnFocus?: SelectProps["selectOnFocus"];
|
|
746
|
-
filterMessage?: SelectProps["filterMessage"];
|
|
747
|
-
selectionMessage?: SelectProps["selectionMessage"];
|
|
748
|
-
emptySelectionMessage?: SelectProps["emptySelectionMessage"];
|
|
749
|
-
emptyFilterMessage?: SelectProps["emptyFilterMessage"];
|
|
750
|
-
emptyMessage?: SelectProps["emptyMessage"];
|
|
751
|
-
pt?: SelectProps["pt"];
|
|
752
|
-
ptOptions?: SelectProps["ptOptions"];
|
|
753
|
-
unstyled?: SelectProps["unstyled"];
|
|
754
|
-
size?: SelectProps["size"];
|
|
755
|
-
}
|
|
756
|
-
declare const __VLS_export$6: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
757
|
-
context: {
|
|
758
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectProps>;
|
|
759
|
-
required: true;
|
|
760
|
-
};
|
|
761
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
762
|
-
context: {
|
|
763
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectProps>;
|
|
764
|
-
required: true;
|
|
765
|
-
};
|
|
766
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
767
|
-
declare const _default$6: typeof __VLS_export$6;
|
|
768
|
-
//#endregion
|
|
769
|
-
//#region src/components/PrimeSelectButton.vue.d.ts
|
|
770
|
-
interface FormKitPrimeSelectButtonProps {
|
|
771
|
-
pt?: SelectButtonProps["pt"];
|
|
772
|
-
ptOptions?: SelectButtonProps["ptOptions"];
|
|
773
|
-
unstyled?: SelectButtonProps["unstyled"];
|
|
774
|
-
optionLabel?: SelectButtonProps["optionLabel"];
|
|
775
|
-
optionValue?: SelectButtonProps["optionValue"];
|
|
776
|
-
optionDisabled?: SelectButtonProps["optionDisabled"];
|
|
777
|
-
multiple?: SelectButtonProps["multiple"];
|
|
778
|
-
dataKey?: SelectButtonProps["dataKey"];
|
|
779
|
-
options?: SelectButtonProps["options"];
|
|
780
|
-
size?: SelectButtonProps["size"];
|
|
781
|
-
}
|
|
782
|
-
declare const __VLS_export$5: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
783
|
-
context: {
|
|
784
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectButtonProps>;
|
|
785
|
-
required: true;
|
|
786
|
-
};
|
|
787
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
788
|
-
context: {
|
|
789
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSelectButtonProps>;
|
|
790
|
-
required: true;
|
|
791
|
-
};
|
|
792
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
793
|
-
declare const _default$5: typeof __VLS_export$5;
|
|
794
|
-
//#endregion
|
|
795
|
-
//#region src/components/PrimeSlider.vue.d.ts
|
|
796
|
-
interface FormKitPrimeSliderProps {
|
|
797
|
-
pt?: SliderProps["pt"];
|
|
798
|
-
ptOptions?: SliderProps["ptOptions"];
|
|
799
|
-
unstyled?: SliderProps["unstyled"];
|
|
800
|
-
min?: SliderProps["min"];
|
|
801
|
-
max?: SliderProps["max"];
|
|
802
|
-
step?: SliderProps["step"];
|
|
803
|
-
range?: SliderProps["range"];
|
|
804
|
-
orientation?: SliderProps["orientation"];
|
|
805
|
-
}
|
|
806
|
-
declare const __VLS_export$4: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
807
|
-
context: {
|
|
808
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSliderProps>;
|
|
809
|
-
required: true;
|
|
810
|
-
};
|
|
811
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
812
|
-
context: {
|
|
813
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeSliderProps>;
|
|
814
|
-
required: true;
|
|
815
|
-
};
|
|
816
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
817
|
-
declare const _default$4: typeof __VLS_export$4;
|
|
818
|
-
//#endregion
|
|
819
|
-
//#region src/components/PrimeTextarea.vue.d.ts
|
|
820
|
-
interface FormKitPrimeTextareaProps {
|
|
821
|
-
pt?: TextareaProps["pt"];
|
|
822
|
-
ptOptions?: TextareaProps["ptOptions"];
|
|
823
|
-
unstyled?: TextareaProps["unstyled"];
|
|
824
|
-
autoResize?: TextareaProps["autoResize"];
|
|
825
|
-
size?: TextareaProps["size"];
|
|
826
|
-
placeholder?: string;
|
|
827
|
-
rows?: number;
|
|
828
|
-
}
|
|
829
|
-
declare const __VLS_export$3: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
830
|
-
context: {
|
|
831
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTextareaProps>;
|
|
832
|
-
required: true;
|
|
833
|
-
};
|
|
834
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
835
|
-
context: {
|
|
836
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTextareaProps>;
|
|
837
|
-
required: true;
|
|
838
|
-
};
|
|
839
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
840
|
-
declare const _default$3: typeof __VLS_export$3;
|
|
841
|
-
//#endregion
|
|
842
|
-
//#region src/components/PrimeToggleButton.vue.d.ts
|
|
843
|
-
interface FormKitPrimeToggleButtonProps {
|
|
844
|
-
pt?: ToggleButtonProps["pt"];
|
|
845
|
-
ptOptions?: ToggleButtonProps["ptOptions"];
|
|
846
|
-
unstyled?: ToggleButtonProps["unstyled"];
|
|
847
|
-
onLabel?: ToggleButtonProps["onLabel"];
|
|
848
|
-
offLabel?: ToggleButtonProps["offLabel"];
|
|
849
|
-
onIcon?: ToggleButtonProps["onIcon"];
|
|
850
|
-
offIcon?: ToggleButtonProps["offIcon"];
|
|
851
|
-
size?: ToggleButtonProps["size"];
|
|
852
|
-
}
|
|
853
|
-
declare const __VLS_export$2: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
854
|
-
context: {
|
|
855
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleButtonProps>;
|
|
856
|
-
required: true;
|
|
857
|
-
};
|
|
858
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
859
|
-
context: {
|
|
860
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleButtonProps>;
|
|
861
|
-
required: true;
|
|
862
|
-
};
|
|
863
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
864
|
-
declare const _default$2: typeof __VLS_export$2;
|
|
865
|
-
//#endregion
|
|
866
|
-
//#region src/components/PrimeToggleSwitch.vue.d.ts
|
|
867
|
-
interface FormKitPrimeToggleSwitchProps {
|
|
868
|
-
trueValue?: ToggleSwitchProps["trueValue"];
|
|
869
|
-
falseValue?: ToggleSwitchProps["falseValue"];
|
|
870
|
-
pt?: ToggleSwitchProps["pt"];
|
|
871
|
-
ptOptions?: ToggleSwitchProps["ptOptions"];
|
|
872
|
-
unstyled?: ToggleSwitchProps["unstyled"];
|
|
873
|
-
}
|
|
874
|
-
declare const __VLS_export$1: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
875
|
-
context: {
|
|
876
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleSwitchProps>;
|
|
877
|
-
required: true;
|
|
878
|
-
};
|
|
879
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
880
|
-
context: {
|
|
881
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeToggleSwitchProps>;
|
|
882
|
-
required: true;
|
|
883
|
-
};
|
|
884
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
885
|
-
declare const _default$1: typeof __VLS_export$1;
|
|
886
|
-
//#endregion
|
|
887
|
-
//#region src/components/PrimeTreeSelect.vue.d.ts
|
|
888
|
-
interface FormKitPrimeTreeSelectProps {
|
|
889
|
-
options?: TreeSelectProps["options"];
|
|
890
|
-
placeholder?: TreeSelectProps["placeholder"];
|
|
891
|
-
selectionMode?: TreeSelectProps["selectionMode"];
|
|
892
|
-
pt?: TreeSelectProps["pt"];
|
|
893
|
-
ptOptions?: TreeSelectProps["ptOptions"];
|
|
894
|
-
unstyled?: TreeSelectProps["unstyled"];
|
|
895
|
-
emptyMessage?: TreeSelectProps["emptyMessage"];
|
|
896
|
-
display?: TreeSelectProps["display"];
|
|
897
|
-
metaKeySelection?: TreeSelectProps["metaKeySelection"];
|
|
898
|
-
appendTo?: TreeSelectProps["appendTo"];
|
|
899
|
-
scrollHeight?: TreeSelectProps["scrollHeight"];
|
|
900
|
-
panelClass?: TreeSelectProps["panelClass"];
|
|
901
|
-
variant?: TreeSelectProps["variant"];
|
|
902
|
-
size?: TreeSelectProps["size"];
|
|
903
|
-
}
|
|
904
|
-
declare const __VLS_export: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
905
|
-
context: {
|
|
906
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTreeSelectProps>;
|
|
907
|
-
required: true;
|
|
908
|
-
};
|
|
909
|
-
}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
910
|
-
context: {
|
|
911
|
-
type: PropType<FormKitFrameworkContext & FormKitPrimeTreeSelectProps>;
|
|
912
|
-
required: true;
|
|
913
|
-
};
|
|
914
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
915
|
-
declare const _default: typeof __VLS_export;
|
|
916
|
-
//#endregion
|
|
917
|
-
export { _default$22 as C, _default$21 as S, _default$16 as _, _default$4 as a, _default$19 as b, _default$7 as c, _default$10 as d, _default$11 as f, _default$15 as g, _default$14 as h, _default$3 as i, _default$8 as l, _default$13 as m, _default$1 as n, _default$5 as o, _default$12 as p, _default$2 as r, _default$6 as s, _default as t, _default$9 as u, _default$17 as v, _default$20 as x, _default$18 as y };
|