@sfxcode/formkit-primevue 3.3.3 → 3.3.5
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 +13 -138
- package/dist/components/FormKitDataDebug.vue +5 -9
- package/dist/components/FormKitDataEdit.vue +53 -46
- package/dist/components/FormKitDataView.vue +20 -27
- package/dist/components/FormKitIcon.vue +6 -13
- package/dist/components/FormKitPrefix.vue +3 -3
- package/dist/components/FormKitSuffix.vue +3 -3
- package/dist/components/PrimeAutoComplete.vue +41 -86
- package/dist/components/PrimeCascadeSelect.vue +7 -26
- package/dist/components/PrimeCheckbox.vue +9 -29
- package/dist/components/PrimeColorPicker.vue +7 -22
- package/dist/components/PrimeDatePicker.vue +17 -73
- package/dist/components/PrimeInputMask.vue +10 -29
- package/dist/components/PrimeInputNumber.vue +21 -56
- package/dist/components/PrimeInputOtp.vue +7 -24
- package/dist/components/PrimeInputText.vue +10 -25
- package/dist/components/PrimeKnob.vue +12 -37
- package/dist/components/PrimeListbox.vue +7 -39
- package/dist/components/PrimeMultiSelect.vue +7 -52
- package/dist/components/PrimeOutputBoolean.vue +28 -27
- package/dist/components/PrimeOutputDate.vue +33 -33
- package/dist/components/PrimeOutputDuration.vue +23 -19
- package/dist/components/PrimeOutputLink.vue +29 -27
- package/dist/components/PrimeOutputList.vue +71 -40
- package/dist/components/PrimeOutputNumber.vue +36 -39
- package/dist/components/PrimeOutputReference.vue +32 -30
- package/dist/components/PrimeOutputText.vue +53 -53
- package/dist/components/PrimePassword.vue +11 -32
- package/dist/components/PrimeRadioButton.vue +19 -29
- package/dist/components/PrimeRating.vue +7 -22
- package/dist/components/PrimeSelect.vue +7 -49
- package/dist/components/PrimeSelectButton.vue +7 -27
- package/dist/components/PrimeSlider.vue +10 -28
- package/dist/components/PrimeTextarea.vue +7 -23
- package/dist/components/PrimeToggleButton.vue +7 -25
- package/dist/components/PrimeToggleSwitch.vue +8 -23
- package/dist/components/PrimeTreeSelect.vue +7 -30
- package/dist/components/index.d.ts +23 -23
- package/dist/composables/index.d.ts +8 -8
- package/dist/composables/index.js +8 -8
- package/dist/composables/index.mjs +8 -8
- package/dist/composables/useFormKitInput.js +5 -1
- package/dist/composables/useFormKitInput.mjs +13 -1
- package/dist/composables/useFormKitRepeater.js +1 -1
- package/dist/composables/useFormKitRepeater.mjs +45 -17
- package/dist/composables/useFormKitSchema.mjs +10 -2
- package/dist/composables/useInputEditor.js +4 -4
- package/dist/composables/useInputEditor.mjs +52 -24
- package/dist/composables/useInputEditorSchema.js +3 -3
- package/dist/composables/useInputEditorSchema.mjs +25 -17
- package/dist/composables/useOutputDuration.mjs +3 -6
- package/dist/definitions/index.js +2 -2
- package/dist/definitions/index.mjs +2 -2
- package/dist/definitions/input.d.ts +1 -1
- package/dist/definitions/input.mjs +301 -15
- package/dist/definitions/output.d.ts +1 -1
- package/dist/definitions/output.js +1 -1
- package/dist/definitions/output.mjs +95 -14
- package/dist/index.d.ts +48 -48
- package/dist/index.js +12 -12
- package/dist/index.mjs +9 -3
- package/dist/plugins/index.d.ts +1 -1
- package/dist/plugins/index.mjs +31 -27
- package/dist/sass/formkit-primevue.scss +99 -101
- package/dist/vue.d.ts +5 -0
- package/package.json +45 -80
- package/LICENSE +0 -21
- package/components.d.ts +0 -1
- package/dist/components/FormKitDataDebug.d.vue.ts +0 -24
- package/dist/components/FormKitDataDebug.vue.d.ts +0 -24
- package/dist/components/FormKitDataEdit.d.vue.ts +0 -180
- package/dist/components/FormKitDataEdit.vue.d.ts +0 -180
- package/dist/components/FormKitDataView.d.vue.ts +0 -73
- package/dist/components/FormKitDataView.vue.d.ts +0 -73
- package/dist/components/FormKitIcon.d.vue.ts +0 -39
- package/dist/components/FormKitIcon.vue.d.ts +0 -39
- package/dist/components/FormKitPrefix.d.vue.ts +0 -7
- package/dist/components/FormKitPrefix.vue.d.ts +0 -7
- package/dist/components/FormKitSuffix.d.vue.ts +0 -7
- package/dist/components/FormKitSuffix.vue.d.ts +0 -7
- package/dist/components/PrimeAutoComplete.d.vue.ts +0 -31
- package/dist/components/PrimeAutoComplete.vue.d.ts +0 -31
- package/dist/components/PrimeCascadeSelect.d.vue.ts +0 -28
- package/dist/components/PrimeCascadeSelect.vue.d.ts +0 -28
- package/dist/components/PrimeCheckbox.d.vue.ts +0 -27
- package/dist/components/PrimeCheckbox.vue.d.ts +0 -27
- package/dist/components/PrimeColorPicker.d.vue.ts +0 -24
- package/dist/components/PrimeColorPicker.vue.d.ts +0 -24
- package/dist/components/PrimeDatePicker.d.vue.ts +0 -63
- package/dist/components/PrimeDatePicker.vue.d.ts +0 -63
- package/dist/components/PrimeInputMask.d.vue.ts +0 -28
- package/dist/components/PrimeInputMask.vue.d.ts +0 -28
- package/dist/components/PrimeInputNumber.d.vue.ts +0 -36
- package/dist/components/PrimeInputNumber.vue.d.ts +0 -36
- package/dist/components/PrimeInputOtp.d.vue.ts +0 -26
- package/dist/components/PrimeInputOtp.vue.d.ts +0 -26
- package/dist/components/PrimeInputText.d.vue.ts +0 -24
- package/dist/components/PrimeInputText.vue.d.ts +0 -24
- package/dist/components/PrimeKnob.d.vue.ts +0 -31
- package/dist/components/PrimeKnob.vue.d.ts +0 -31
- package/dist/components/PrimeListbox.d.vue.ts +0 -42
- package/dist/components/PrimeListbox.vue.d.ts +0 -42
- package/dist/components/PrimeMultiSelect.d.vue.ts +0 -53
- package/dist/components/PrimeMultiSelect.vue.d.ts +0 -53
- package/dist/components/PrimeOutputBoolean.d.vue.ts +0 -16
- package/dist/components/PrimeOutputBoolean.vue.d.ts +0 -16
- package/dist/components/PrimeOutputDate.d.vue.ts +0 -16
- package/dist/components/PrimeOutputDate.vue.d.ts +0 -16
- package/dist/components/PrimeOutputDuration.d.vue.ts +0 -16
- package/dist/components/PrimeOutputDuration.vue.d.ts +0 -16
- package/dist/components/PrimeOutputLink.d.vue.ts +0 -16
- package/dist/components/PrimeOutputLink.vue.d.ts +0 -16
- package/dist/components/PrimeOutputList.d.vue.ts +0 -19
- package/dist/components/PrimeOutputList.vue.d.ts +0 -19
- package/dist/components/PrimeOutputNumber.d.vue.ts +0 -16
- package/dist/components/PrimeOutputNumber.vue.d.ts +0 -16
- package/dist/components/PrimeOutputReference.d.vue.ts +0 -16
- package/dist/components/PrimeOutputReference.vue.d.ts +0 -16
- package/dist/components/PrimeOutputText.d.vue.ts +0 -22
- package/dist/components/PrimeOutputText.vue.d.ts +0 -22
- package/dist/components/PrimePassword.d.vue.ts +0 -33
- package/dist/components/PrimePassword.vue.d.ts +0 -33
- package/dist/components/PrimeRadioButton.d.vue.ts +0 -28
- package/dist/components/PrimeRadioButton.vue.d.ts +0 -28
- package/dist/components/PrimeRating.d.vue.ts +0 -24
- package/dist/components/PrimeRating.vue.d.ts +0 -24
- package/dist/components/PrimeSelect.d.vue.ts +0 -50
- package/dist/components/PrimeSelect.vue.d.ts +0 -50
- package/dist/components/PrimeSelectButton.d.vue.ts +0 -28
- package/dist/components/PrimeSelectButton.vue.d.ts +0 -28
- package/dist/components/PrimeSlider.d.vue.ts +0 -26
- package/dist/components/PrimeSlider.vue.d.ts +0 -26
- package/dist/components/PrimeTextarea.d.vue.ts +0 -25
- package/dist/components/PrimeTextarea.vue.d.ts +0 -25
- package/dist/components/PrimeToggleButton.d.vue.ts +0 -26
- package/dist/components/PrimeToggleButton.vue.d.ts +0 -26
- package/dist/components/PrimeToggleSwitch.d.vue.ts +0 -23
- package/dist/components/PrimeToggleSwitch.vue.d.ts +0 -23
- package/dist/components/PrimeTreeSelect.d.vue.ts +0 -32
- package/dist/components/PrimeTreeSelect.vue.d.ts +0 -32
|
@@ -22,23 +22,94 @@ import PrimeToggleButton from "../components/PrimeToggleButton.vue";
|
|
|
22
22
|
import PrimeToggleSwitch from "../components/PrimeToggleSwitch.vue";
|
|
23
23
|
import PrimeTreeSelect from "../components/PrimeTreeSelect.vue";
|
|
24
24
|
export const primeAutoCompleteDefinition = createInput(PrimeAutoComplete, {
|
|
25
|
-
props: [
|
|
25
|
+
props: [
|
|
26
|
+
"pt",
|
|
27
|
+
"ptOptions",
|
|
28
|
+
"unstyled",
|
|
29
|
+
"Select",
|
|
30
|
+
"multiple",
|
|
31
|
+
"typeahead",
|
|
32
|
+
"optionLabel",
|
|
33
|
+
"options",
|
|
34
|
+
"size",
|
|
35
|
+
"minLength",
|
|
36
|
+
"placeholder",
|
|
37
|
+
"fluid",
|
|
38
|
+
"separators"
|
|
39
|
+
],
|
|
26
40
|
family: "PrimeInput"
|
|
27
41
|
});
|
|
28
42
|
export const primeInputTextDefinition = createInput(PrimeInputText, {
|
|
29
|
-
props: [
|
|
43
|
+
props: [
|
|
44
|
+
"pt",
|
|
45
|
+
"ptOptions",
|
|
46
|
+
"unstyled",
|
|
47
|
+
"placeholder",
|
|
48
|
+
"iconPrefix",
|
|
49
|
+
"iconSuffix",
|
|
50
|
+
"size",
|
|
51
|
+
"inputType"
|
|
52
|
+
],
|
|
30
53
|
family: "PrimeInput"
|
|
31
54
|
});
|
|
32
55
|
export const primeInputNumberDefinition = createInput(PrimeInputNumber, {
|
|
33
|
-
props: [
|
|
56
|
+
props: [
|
|
57
|
+
"useGrouping",
|
|
58
|
+
"min",
|
|
59
|
+
"max",
|
|
60
|
+
"minFractionDigits",
|
|
61
|
+
"maxFractionDigits",
|
|
62
|
+
"locale",
|
|
63
|
+
"mode",
|
|
64
|
+
"currency",
|
|
65
|
+
"prefix",
|
|
66
|
+
"suffix",
|
|
67
|
+
"showButtons",
|
|
68
|
+
"buttonLayout",
|
|
69
|
+
"step",
|
|
70
|
+
"pt",
|
|
71
|
+
"ptOptions",
|
|
72
|
+
"unstyled",
|
|
73
|
+
"placeholder",
|
|
74
|
+
"size"
|
|
75
|
+
],
|
|
34
76
|
family: "PrimeInput"
|
|
35
77
|
});
|
|
36
78
|
export const primeInputMaskDefinition = createInput(PrimeInputMask, {
|
|
37
|
-
props: [
|
|
79
|
+
props: [
|
|
80
|
+
"mask",
|
|
81
|
+
"slotChar",
|
|
82
|
+
"autoClear",
|
|
83
|
+
"unmask",
|
|
84
|
+
"pt",
|
|
85
|
+
"ptOptions",
|
|
86
|
+
"unstyled",
|
|
87
|
+
"invalid",
|
|
88
|
+
"variant",
|
|
89
|
+
"iconPrefix",
|
|
90
|
+
"iconSuffix",
|
|
91
|
+
"size"
|
|
92
|
+
],
|
|
38
93
|
family: "PrimeInput"
|
|
39
94
|
});
|
|
40
95
|
export const primePasswordDefinition = createInput(PrimePassword, {
|
|
41
|
-
props: [
|
|
96
|
+
props: [
|
|
97
|
+
"mediumRegex",
|
|
98
|
+
"strongRegex",
|
|
99
|
+
"promptLabel",
|
|
100
|
+
"weakLabel",
|
|
101
|
+
"mediumLabel",
|
|
102
|
+
"strongLabel",
|
|
103
|
+
"hideIcon",
|
|
104
|
+
"showIcon",
|
|
105
|
+
"pt",
|
|
106
|
+
"ptOptions",
|
|
107
|
+
"unstyled",
|
|
108
|
+
"placeholder",
|
|
109
|
+
"feedback",
|
|
110
|
+
"toggleMask",
|
|
111
|
+
"size"
|
|
112
|
+
],
|
|
42
113
|
family: "PrimeInput"
|
|
43
114
|
});
|
|
44
115
|
export const primeTextareaDefinition = createInput(PrimeTextarea, {
|
|
@@ -46,7 +117,19 @@ export const primeTextareaDefinition = createInput(PrimeTextarea, {
|
|
|
46
117
|
family: "PrimeInput"
|
|
47
118
|
});
|
|
48
119
|
export const primeCheckboxDefinition = createInput(PrimeCheckbox, {
|
|
49
|
-
props: [
|
|
120
|
+
props: [
|
|
121
|
+
"binary",
|
|
122
|
+
"trueValue",
|
|
123
|
+
"falseValue",
|
|
124
|
+
"pt",
|
|
125
|
+
"ptOptions",
|
|
126
|
+
"unstyled",
|
|
127
|
+
"indeterminate",
|
|
128
|
+
"variant",
|
|
129
|
+
"prefix",
|
|
130
|
+
"suffix",
|
|
131
|
+
"size"
|
|
132
|
+
],
|
|
50
133
|
family: "PrimeInput"
|
|
51
134
|
});
|
|
52
135
|
export const primeToggleSwitchDefinition = createInput(PrimeToggleSwitch, {
|
|
@@ -58,19 +141,160 @@ export const primeInputOtpDefinition = createInput(PrimeInputOtp, {
|
|
|
58
141
|
family: "PrimeInput"
|
|
59
142
|
});
|
|
60
143
|
export const primeSelectDefinition = createInput(PrimeSelect, {
|
|
61
|
-
props: [
|
|
144
|
+
props: [
|
|
145
|
+
"options",
|
|
146
|
+
"optionLabel",
|
|
147
|
+
"optionValue",
|
|
148
|
+
"optionDisabled",
|
|
149
|
+
"optionGroupLabel",
|
|
150
|
+
"optionGroupChildren",
|
|
151
|
+
"scrollHeight",
|
|
152
|
+
"filter",
|
|
153
|
+
"filterPlaceholder",
|
|
154
|
+
"filterLocale",
|
|
155
|
+
"filterMatchMode",
|
|
156
|
+
"filterFields",
|
|
157
|
+
"filterInputProps",
|
|
158
|
+
"editable",
|
|
159
|
+
"placeholder",
|
|
160
|
+
"dataKey",
|
|
161
|
+
"showClear",
|
|
162
|
+
"panelStyle",
|
|
163
|
+
"panelClass",
|
|
164
|
+
"panelProps",
|
|
165
|
+
"appendTo",
|
|
166
|
+
"resetFilterOnHide",
|
|
167
|
+
"virtualScrollerOptions",
|
|
168
|
+
"autoOptionFocus",
|
|
169
|
+
"selectOnFocus",
|
|
170
|
+
"filterMessage",
|
|
171
|
+
"selectionMessage",
|
|
172
|
+
"emptySelectionMessage",
|
|
173
|
+
"emptyFilterMessage",
|
|
174
|
+
"emptyMessage",
|
|
175
|
+
"pt",
|
|
176
|
+
"ptOptions",
|
|
177
|
+
"unstyled",
|
|
178
|
+
"size"
|
|
179
|
+
],
|
|
62
180
|
family: "PrimeInput"
|
|
63
181
|
});
|
|
64
182
|
export const primeMultiSelectDefinition = createInput(PrimeMultiSelect, {
|
|
65
|
-
props: [
|
|
183
|
+
props: [
|
|
184
|
+
"options",
|
|
185
|
+
"optionLabel",
|
|
186
|
+
"optionValue",
|
|
187
|
+
"optionDisabled",
|
|
188
|
+
"optionGroupLabel",
|
|
189
|
+
"optionGroupChildren",
|
|
190
|
+
"scrollHeight",
|
|
191
|
+
"inputProps",
|
|
192
|
+
"closeButtonProps",
|
|
193
|
+
"dataKey",
|
|
194
|
+
"filter",
|
|
195
|
+
"filterPlaceholder",
|
|
196
|
+
"filterLocale",
|
|
197
|
+
"filterMatchMode",
|
|
198
|
+
"filterFields",
|
|
199
|
+
"appendTo",
|
|
200
|
+
"display",
|
|
201
|
+
"maxSelectedLabels",
|
|
202
|
+
"selectedItemsLabel",
|
|
203
|
+
"selectionLimit",
|
|
204
|
+
"showToggleAll",
|
|
205
|
+
"loading",
|
|
206
|
+
"selectAll",
|
|
207
|
+
"resetFilterOnHide",
|
|
208
|
+
"virtualScrollerOptions",
|
|
209
|
+
"autoOptionFocus",
|
|
210
|
+
"autoFilterFocus",
|
|
211
|
+
"filterMessage",
|
|
212
|
+
"selectionMessage",
|
|
213
|
+
"emptySelectionMessage",
|
|
214
|
+
"emptyFilterMessage",
|
|
215
|
+
"emptyMessage",
|
|
216
|
+
"pt",
|
|
217
|
+
"placeholder",
|
|
218
|
+
"ptOptions",
|
|
219
|
+
"unstyled",
|
|
220
|
+
"size"
|
|
221
|
+
],
|
|
66
222
|
family: "PrimeInput"
|
|
67
223
|
});
|
|
68
224
|
export const primeListboxDefinition = createInput(PrimeListbox, {
|
|
69
|
-
props: [
|
|
225
|
+
props: [
|
|
226
|
+
"pt",
|
|
227
|
+
"ptOptions",
|
|
228
|
+
"unstyled",
|
|
229
|
+
"options",
|
|
230
|
+
"optionLabel",
|
|
231
|
+
"optionValue",
|
|
232
|
+
"multiple",
|
|
233
|
+
"filter",
|
|
234
|
+
"filterIcon",
|
|
235
|
+
"filterPlaceholder",
|
|
236
|
+
"filterLocale",
|
|
237
|
+
"filterMatchMode",
|
|
238
|
+
"autoOptionFocus",
|
|
239
|
+
"selectOnFocus",
|
|
240
|
+
"optionDisabled",
|
|
241
|
+
"optionGroupLabel",
|
|
242
|
+
"optionGroupChildren",
|
|
243
|
+
"dataKey",
|
|
244
|
+
"metaKeySelection",
|
|
245
|
+
"virtualScrollerOptions"
|
|
246
|
+
],
|
|
70
247
|
family: "PrimeInput"
|
|
71
248
|
});
|
|
72
249
|
export const primeDatePickerDefinition = createInput(PrimeDatePicker, {
|
|
73
|
-
props: [
|
|
250
|
+
props: [
|
|
251
|
+
"dateFormat",
|
|
252
|
+
"placeholder",
|
|
253
|
+
"selectionMode",
|
|
254
|
+
"inline",
|
|
255
|
+
"icon",
|
|
256
|
+
"showOtherMonths",
|
|
257
|
+
"selectOtherMonths",
|
|
258
|
+
"showIcon",
|
|
259
|
+
"previousIcon",
|
|
260
|
+
"nextIcon",
|
|
261
|
+
"incrementIcon",
|
|
262
|
+
"decrementIcon",
|
|
263
|
+
"numberOfMonths",
|
|
264
|
+
"responsiveOptions",
|
|
265
|
+
"view",
|
|
266
|
+
"touchUI",
|
|
267
|
+
"minDate",
|
|
268
|
+
"maxDate",
|
|
269
|
+
"disabledDates",
|
|
270
|
+
"disabledDays",
|
|
271
|
+
"maxDateCount",
|
|
272
|
+
"showOnFocus",
|
|
273
|
+
"autoZIndex",
|
|
274
|
+
"baseZIndex",
|
|
275
|
+
"showButtonBar",
|
|
276
|
+
"showTime",
|
|
277
|
+
"timeOnly",
|
|
278
|
+
"shortYearCutoff",
|
|
279
|
+
"hourFormat",
|
|
280
|
+
"stepHour",
|
|
281
|
+
"stepMinute",
|
|
282
|
+
"stepSecond",
|
|
283
|
+
"showSeconds",
|
|
284
|
+
"hideOnDateTimeSelect",
|
|
285
|
+
"hideOnRangeSelection",
|
|
286
|
+
"timeSeparator",
|
|
287
|
+
"showWeek",
|
|
288
|
+
"manualInput",
|
|
289
|
+
"appendTo",
|
|
290
|
+
"panelStyle",
|
|
291
|
+
"panelClass",
|
|
292
|
+
"pt",
|
|
293
|
+
"ptOptions",
|
|
294
|
+
"unstyled",
|
|
295
|
+
"size",
|
|
296
|
+
"updateModelType"
|
|
297
|
+
],
|
|
74
298
|
family: "PrimeInput"
|
|
75
299
|
});
|
|
76
300
|
export const primeSliderDefinition = createInput(PrimeSlider, {
|
|
@@ -86,7 +310,21 @@ export const primeRadioButtonDefinition = createInput(PrimeRadioButton, {
|
|
|
86
310
|
family: "PrimeInput"
|
|
87
311
|
});
|
|
88
312
|
export const primeKnobDefinition = createInput(PrimeKnob, {
|
|
89
|
-
props: [
|
|
313
|
+
props: [
|
|
314
|
+
"pt",
|
|
315
|
+
"ptOptions",
|
|
316
|
+
"unstyled",
|
|
317
|
+
"min",
|
|
318
|
+
"max",
|
|
319
|
+
"step",
|
|
320
|
+
"size",
|
|
321
|
+
"strokeWidth",
|
|
322
|
+
"showValue",
|
|
323
|
+
"valueColor",
|
|
324
|
+
"rangeColor",
|
|
325
|
+
"textColor",
|
|
326
|
+
"valueTemplate"
|
|
327
|
+
],
|
|
90
328
|
family: "PrimeInput"
|
|
91
329
|
});
|
|
92
330
|
export const primeColorPickerDefinition = createInput(PrimeColorPicker, {
|
|
@@ -94,19 +332,67 @@ export const primeColorPickerDefinition = createInput(PrimeColorPicker, {
|
|
|
94
332
|
family: "PrimeInput"
|
|
95
333
|
});
|
|
96
334
|
export const primeToggleButtonDefinition = createInput(PrimeToggleButton, {
|
|
97
|
-
props: [
|
|
335
|
+
props: [
|
|
336
|
+
"pt",
|
|
337
|
+
"ptOptions",
|
|
338
|
+
"unstyled",
|
|
339
|
+
"onLabel",
|
|
340
|
+
"offLabel",
|
|
341
|
+
"onIcon",
|
|
342
|
+
"offIcon",
|
|
343
|
+
"iconPos",
|
|
344
|
+
"size"
|
|
345
|
+
],
|
|
98
346
|
family: "PrimeInput"
|
|
99
347
|
});
|
|
100
348
|
export const primeSelectButtonDefinition = createInput(PrimeSelectButton, {
|
|
101
|
-
props: [
|
|
349
|
+
props: [
|
|
350
|
+
"pt",
|
|
351
|
+
"ptOptions",
|
|
352
|
+
"unstyled",
|
|
353
|
+
"optionLabel",
|
|
354
|
+
"optionValue",
|
|
355
|
+
"optionDisabled",
|
|
356
|
+
"multiple",
|
|
357
|
+
"unselectable",
|
|
358
|
+
"dataKey",
|
|
359
|
+
"options",
|
|
360
|
+
"size"
|
|
361
|
+
],
|
|
102
362
|
family: "PrimeInput"
|
|
103
363
|
});
|
|
104
364
|
export const primeCascadeSelectDefinition = createInput(PrimeCascadeSelect, {
|
|
105
|
-
props: [
|
|
365
|
+
props: [
|
|
366
|
+
"options",
|
|
367
|
+
"optionLabel",
|
|
368
|
+
"optionValue",
|
|
369
|
+
"optionGroupLabel",
|
|
370
|
+
"optionGroupChildren",
|
|
371
|
+
"placeholder",
|
|
372
|
+
"pt",
|
|
373
|
+
"ptOptions",
|
|
374
|
+
"unstyled",
|
|
375
|
+
"size"
|
|
376
|
+
],
|
|
106
377
|
family: "PrimeInput"
|
|
107
378
|
});
|
|
108
379
|
export const primeTreeSelectDefinition = createInput(PrimeTreeSelect, {
|
|
109
|
-
props: [
|
|
380
|
+
props: [
|
|
381
|
+
"options",
|
|
382
|
+
"placeholder",
|
|
383
|
+
"selectionMode",
|
|
384
|
+
"pt",
|
|
385
|
+
"ptOptions",
|
|
386
|
+
"unstyled",
|
|
387
|
+
"emptyMessage",
|
|
388
|
+
"display",
|
|
389
|
+
"metaKeySelection",
|
|
390
|
+
"appendTo",
|
|
391
|
+
"scrollHeight",
|
|
392
|
+
"panelClass",
|
|
393
|
+
"variant",
|
|
394
|
+
"size"
|
|
395
|
+
],
|
|
110
396
|
family: "PrimeInput"
|
|
111
397
|
});
|
|
112
398
|
export const primeInputs = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { FormKitTypeDefinition } from
|
|
1
|
+
import type { FormKitTypeDefinition } from "@formkit/core";
|
|
2
2
|
export declare const primeOutputTextDefinition: FormKitTypeDefinition;
|
|
3
3
|
export declare const primeOutputDateDefinition: FormKitTypeDefinition;
|
|
4
4
|
export declare const primeOutputNumberDefinition: FormKitTypeDefinition;
|
|
@@ -41,6 +41,6 @@ const primeOutputDurationDefinition = exports.primeOutputDurationDefinition = (0
|
|
|
41
41
|
family: "PrimeOutput"
|
|
42
42
|
});
|
|
43
43
|
const primeOutputListDefinition = exports.primeOutputListDefinition = (0, _vue.createInput)(_PrimeOutputList.default, {
|
|
44
|
-
props: ["prefix", "suffix", "iconPrefix", "iconSuffix", "divider", "itemClass", "dividerClass", "listStyle", "onIconPrefixClicked", "onIconSuffixClicked", "convertValue"],
|
|
44
|
+
props: ["prefix", "suffix", "iconPrefix", "iconSuffix", "divider", "itemClass", "dividerClass", "listStyle", "onIconPrefixClicked", "onIconSuffixClicked", "optionLabel", "options", "optionValue", "convertValue"],
|
|
45
45
|
family: "PrimeOutput"
|
|
46
46
|
});
|
|
@@ -8,32 +8,113 @@ import PrimeOutputNumber from "../components/PrimeOutputNumber.vue";
|
|
|
8
8
|
import PrimeOutputReference from "../components/PrimeOutputReference.vue";
|
|
9
9
|
import PrimeOutputText from "../components/PrimeOutputText.vue";
|
|
10
10
|
export const primeOutputTextDefinition = createInput(PrimeOutputText, {
|
|
11
|
-
props: [
|
|
11
|
+
props: [
|
|
12
|
+
"prefix",
|
|
13
|
+
"suffix",
|
|
14
|
+
"iconPrefix",
|
|
15
|
+
"iconSuffix",
|
|
16
|
+
"isTranslationKey",
|
|
17
|
+
"html",
|
|
18
|
+
"onIconPrefixClicked",
|
|
19
|
+
"onIconSuffixClicked",
|
|
20
|
+
"convertValue",
|
|
21
|
+
"maxLength"
|
|
22
|
+
]
|
|
12
23
|
});
|
|
13
24
|
export const primeOutputDateDefinition = createInput(PrimeOutputDate, {
|
|
14
|
-
props: [
|
|
25
|
+
props: [
|
|
26
|
+
"prefix",
|
|
27
|
+
"suffix",
|
|
28
|
+
"iconPrefix",
|
|
29
|
+
"iconSuffix",
|
|
30
|
+
"onIconPrefixClicked",
|
|
31
|
+
"onIconSuffixClicked"
|
|
32
|
+
]
|
|
15
33
|
});
|
|
16
34
|
export const primeOutputNumberDefinition = createInput(PrimeOutputNumber, {
|
|
17
|
-
props: [
|
|
35
|
+
props: [
|
|
36
|
+
"prefix",
|
|
37
|
+
"suffix",
|
|
38
|
+
"iconPrefix",
|
|
39
|
+
"iconSuffix",
|
|
40
|
+
"onIconPrefixClicked",
|
|
41
|
+
"onIconSuffixClicked"
|
|
42
|
+
],
|
|
18
43
|
family: "PrimeOutput"
|
|
19
44
|
});
|
|
20
45
|
export const primeOutputLinkDefinition = createInput(PrimeOutputLink, {
|
|
21
|
-
props: [
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
46
|
+
props: [
|
|
47
|
+
"prefix",
|
|
48
|
+
"suffix",
|
|
49
|
+
"iconPrefix",
|
|
50
|
+
"iconSuffix",
|
|
51
|
+
"title",
|
|
52
|
+
"onIconPrefixClicked",
|
|
53
|
+
"onIconSuffixClicked"
|
|
54
|
+
],
|
|
26
55
|
family: "PrimeOutput"
|
|
27
56
|
});
|
|
57
|
+
export const primeOutputReferenceDefinition = createInput(
|
|
58
|
+
PrimeOutputReference,
|
|
59
|
+
{
|
|
60
|
+
props: [
|
|
61
|
+
"prefix",
|
|
62
|
+
"suffix",
|
|
63
|
+
"iconPrefix",
|
|
64
|
+
"iconSuffix",
|
|
65
|
+
"reference",
|
|
66
|
+
"internal",
|
|
67
|
+
"linkComponentName",
|
|
68
|
+
"title",
|
|
69
|
+
"onIconPrefixClicked",
|
|
70
|
+
"onIconSuffixClicked"
|
|
71
|
+
],
|
|
72
|
+
family: "PrimeOutput"
|
|
73
|
+
}
|
|
74
|
+
);
|
|
28
75
|
export const primeOutputBooleanDefinition = createInput(PrimeOutputBoolean, {
|
|
29
|
-
props: [
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
76
|
+
props: [
|
|
77
|
+
"prefix",
|
|
78
|
+
"suffix",
|
|
79
|
+
"iconPrefix",
|
|
80
|
+
"iconSuffix",
|
|
81
|
+
"trueValue",
|
|
82
|
+
"falseValue",
|
|
83
|
+
"onIconPrefixClicked",
|
|
84
|
+
"onIconSuffixClicked"
|
|
85
|
+
],
|
|
34
86
|
family: "PrimeOutput"
|
|
35
87
|
});
|
|
88
|
+
export const primeOutputDurationDefinition = createInput(
|
|
89
|
+
PrimeOutputDuration,
|
|
90
|
+
{
|
|
91
|
+
props: [
|
|
92
|
+
"prefix",
|
|
93
|
+
"suffix",
|
|
94
|
+
"iconPrefix",
|
|
95
|
+
"iconSuffix",
|
|
96
|
+
"onIconPrefixClicked",
|
|
97
|
+
"onIconSuffixClicked"
|
|
98
|
+
],
|
|
99
|
+
family: "PrimeOutput"
|
|
100
|
+
}
|
|
101
|
+
);
|
|
36
102
|
export const primeOutputListDefinition = createInput(PrimeOutputList, {
|
|
37
|
-
props: [
|
|
103
|
+
props: [
|
|
104
|
+
"prefix",
|
|
105
|
+
"suffix",
|
|
106
|
+
"iconPrefix",
|
|
107
|
+
"iconSuffix",
|
|
108
|
+
"divider",
|
|
109
|
+
"itemClass",
|
|
110
|
+
"dividerClass",
|
|
111
|
+
"listStyle",
|
|
112
|
+
"onIconPrefixClicked",
|
|
113
|
+
"onIconSuffixClicked",
|
|
114
|
+
"optionLabel",
|
|
115
|
+
"options",
|
|
116
|
+
"optionValue",
|
|
117
|
+
"convertValue"
|
|
118
|
+
],
|
|
38
119
|
family: "PrimeOutput"
|
|
39
120
|
});
|