@sfxcode/formkit-primevue 1.9.5 → 1.9.8
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/PrimeInputText.vue +17 -5
- package/dist/definitions/index.d.ts +53 -0
- package/dist/definitions/index.js +135 -0
- package/dist/definitions/index.mjs +456 -0
- package/dist/index.d.ts +3 -55
- package/dist/index.js +7 -139
- package/dist/index.mjs +3 -466
- package/package.json +37 -29
package/dist/index.mjs
CHANGED
|
@@ -1,469 +1,6 @@
|
|
|
1
|
-
import { createInput } from "@formkit/vue";
|
|
2
|
-
import PrimeAutoComplete from "./components/PrimeAutoComplete.vue";
|
|
3
|
-
import PrimeCalendar from "./components/PrimeCalendar.vue";
|
|
4
|
-
import PrimeCascadeSelect from "./components/PrimeCascadeSelect.vue";
|
|
5
|
-
import PrimeCheckbox from "./components/PrimeCheckbox.vue";
|
|
6
|
-
import PrimeChips from "./components/PrimeChips.vue";
|
|
7
|
-
import PrimeColorPicker from "./components/PrimeColorPicker.vue";
|
|
8
|
-
import PrimeDropdown from "./components/PrimeDropdown.vue";
|
|
9
|
-
import PrimeEditor from "./components/PrimeEditor.vue";
|
|
10
|
-
import PrimeInputMask from "./components/PrimeInputMask.vue";
|
|
11
|
-
import PrimeInputNumber from "./components/PrimeInputNumber.vue";
|
|
12
|
-
import PrimeInputOtp from "./components/PrimeInputOtp.vue";
|
|
13
|
-
import PrimeInputSwitch from "./components/PrimeInputSwitch.vue";
|
|
14
|
-
import PrimeInputText from "./components/PrimeInputText.vue";
|
|
15
|
-
import PrimeTextarea from "./components/PrimeTextarea.vue";
|
|
16
|
-
import PrimeKnob from "./components/PrimeKnob.vue";
|
|
17
|
-
import PrimeMultiSelect from "./components/PrimeMultiSelect.vue";
|
|
18
|
-
import PrimeListbox from "./components/PrimeListbox.vue";
|
|
19
|
-
import PrimePassword from "./components/PrimePassword.vue";
|
|
20
|
-
import PrimeRadioButton from "./components/PrimeRadioButton.vue";
|
|
21
|
-
import PrimeRating from "./components/PrimeRating.vue";
|
|
22
|
-
import PrimeSlider from "./components/PrimeSlider.vue";
|
|
23
|
-
import PrimeToggleButton from "./components/PrimeToggleButton.vue";
|
|
24
|
-
import PrimeTreeSelect from "./components/PrimeTreeSelect.vue";
|
|
25
|
-
import PrimeSelectButton from "./components/PrimeSelectButton.vue";
|
|
26
|
-
import PrimeTriStateCheckbox from "./components/PrimeTriStateCheckbox.vue";
|
|
27
1
|
import { useFormKitSchema } from "./composables/index.mjs";
|
|
28
|
-
import
|
|
29
|
-
const install = {
|
|
30
|
-
install(app) {
|
|
31
|
-
for (const key of Object.keys(components))
|
|
32
|
-
app.component(key, components[key]);
|
|
33
|
-
}
|
|
34
|
-
};
|
|
35
|
-
export default install;
|
|
36
|
-
export const primeAutoCompleteDefinition = createInput(PrimeAutoComplete, {
|
|
37
|
-
props: ["pt", "ptOptions", "unstyled", "dropdown", "multiple"]
|
|
38
|
-
});
|
|
39
|
-
export const primeInputTextDefinition = createInput(PrimeInputText, {
|
|
40
|
-
props: [
|
|
41
|
-
"iconRight",
|
|
42
|
-
"iconLeft",
|
|
43
|
-
"pt",
|
|
44
|
-
"ptOptions",
|
|
45
|
-
"unstyled",
|
|
46
|
-
"placeholder"
|
|
47
|
-
]
|
|
48
|
-
});
|
|
49
|
-
export const primeInputNumberDefinition = createInput(PrimeInputNumber, {
|
|
50
|
-
props: [
|
|
51
|
-
"useGrouping",
|
|
52
|
-
"min",
|
|
53
|
-
"max",
|
|
54
|
-
"minFractionDigits",
|
|
55
|
-
"maxFractionDigits",
|
|
56
|
-
"locale",
|
|
57
|
-
"mode",
|
|
58
|
-
"currency",
|
|
59
|
-
"prefix",
|
|
60
|
-
"suffix",
|
|
61
|
-
"showButtons",
|
|
62
|
-
"buttonLayout",
|
|
63
|
-
"step",
|
|
64
|
-
"pt",
|
|
65
|
-
"ptOptions",
|
|
66
|
-
"unstyled",
|
|
67
|
-
"placeholder"
|
|
68
|
-
]
|
|
69
|
-
});
|
|
70
|
-
export const primeInputMaskDefinition = createInput(PrimeInputMask, {
|
|
71
|
-
props: [
|
|
72
|
-
"mask",
|
|
73
|
-
"slotChar",
|
|
74
|
-
"autoClear",
|
|
75
|
-
"unmask",
|
|
76
|
-
"pt",
|
|
77
|
-
"ptOptions",
|
|
78
|
-
"unstyled",
|
|
79
|
-
"invalid",
|
|
80
|
-
"variant",
|
|
81
|
-
"iconLeft",
|
|
82
|
-
"iconRight"
|
|
83
|
-
]
|
|
84
|
-
});
|
|
85
|
-
export const primePasswordDefinition = createInput(PrimePassword, {
|
|
86
|
-
props: [
|
|
87
|
-
"mediumRegex",
|
|
88
|
-
"strongRegex",
|
|
89
|
-
"promptLabel",
|
|
90
|
-
"weakLabel",
|
|
91
|
-
"mediumLabel",
|
|
92
|
-
"strongLabel",
|
|
93
|
-
"hideIcon",
|
|
94
|
-
"showIcon",
|
|
95
|
-
"pt",
|
|
96
|
-
"ptOptions",
|
|
97
|
-
"unstyled",
|
|
98
|
-
"placeholder",
|
|
99
|
-
"feedback",
|
|
100
|
-
"toggleMask"
|
|
101
|
-
]
|
|
102
|
-
});
|
|
103
|
-
export const primeTextareaDefinition = createInput(PrimeTextarea, {
|
|
104
|
-
props: [
|
|
105
|
-
"pt",
|
|
106
|
-
"ptOptions",
|
|
107
|
-
"unstyled",
|
|
108
|
-
"autoResize",
|
|
109
|
-
"rows",
|
|
110
|
-
"placeholder"
|
|
111
|
-
]
|
|
112
|
-
});
|
|
113
|
-
export const primeCheckboxDefinition = createInput(PrimeCheckbox, {
|
|
114
|
-
props: [
|
|
115
|
-
"binary",
|
|
116
|
-
"trueValue",
|
|
117
|
-
"falseValue",
|
|
118
|
-
"pt",
|
|
119
|
-
"ptOptions",
|
|
120
|
-
"unstyled",
|
|
121
|
-
"labelLeft",
|
|
122
|
-
"labelRight"
|
|
123
|
-
]
|
|
124
|
-
});
|
|
125
|
-
export const primeInputSwitchDefinition = createInput(PrimeInputSwitch, {
|
|
126
|
-
props: [
|
|
127
|
-
"trueValue",
|
|
128
|
-
"falseValue",
|
|
129
|
-
"pt",
|
|
130
|
-
"ptOptions",
|
|
131
|
-
"unstyled",
|
|
132
|
-
"labelLeft",
|
|
133
|
-
"labelRight"
|
|
134
|
-
]
|
|
135
|
-
});
|
|
136
|
-
export const primeInputOtpDefinition = createInput(PrimeInputOtp, {
|
|
137
|
-
props: [
|
|
138
|
-
"length",
|
|
139
|
-
"variant",
|
|
140
|
-
"mask",
|
|
141
|
-
"integerOnly",
|
|
142
|
-
"pt",
|
|
143
|
-
"ptOptions",
|
|
144
|
-
"unstyled"
|
|
145
|
-
]
|
|
146
|
-
});
|
|
147
|
-
export const primeEditorDefinition = createInput(PrimeEditor, {
|
|
148
|
-
props: [
|
|
149
|
-
"placeholder",
|
|
150
|
-
"formats",
|
|
151
|
-
"modules",
|
|
152
|
-
"pt",
|
|
153
|
-
"ptOptions",
|
|
154
|
-
"unstyled"
|
|
155
|
-
]
|
|
156
|
-
});
|
|
157
|
-
export const primeDropdownDefinition = createInput(PrimeDropdown, {
|
|
158
|
-
props: [
|
|
159
|
-
"options",
|
|
160
|
-
"optionLabel",
|
|
161
|
-
"optionValue",
|
|
162
|
-
"optionDisabled",
|
|
163
|
-
"optionGroupLabel",
|
|
164
|
-
"optionGroupChildren",
|
|
165
|
-
"scrollHeight",
|
|
166
|
-
"filter",
|
|
167
|
-
"filterPlaceholder",
|
|
168
|
-
"filterLocale",
|
|
169
|
-
"filterMatchMode",
|
|
170
|
-
"filterFields",
|
|
171
|
-
"filterInputProps",
|
|
172
|
-
"editable",
|
|
173
|
-
"placeholder",
|
|
174
|
-
"dataKey",
|
|
175
|
-
"showClear",
|
|
176
|
-
"panelStyle",
|
|
177
|
-
"panelClass",
|
|
178
|
-
"panelProps",
|
|
179
|
-
"appendTo",
|
|
180
|
-
"resetFilterOnHide",
|
|
181
|
-
"virtualScrollerOptions",
|
|
182
|
-
"autoOptionFocus",
|
|
183
|
-
"selectOnFocus",
|
|
184
|
-
"filterMessage",
|
|
185
|
-
"selectionMessage",
|
|
186
|
-
"emptySelectionMessage",
|
|
187
|
-
"emptyFilterMessage",
|
|
188
|
-
"emptyMessage",
|
|
189
|
-
"pt",
|
|
190
|
-
"ptOptions",
|
|
191
|
-
"unstyled"
|
|
192
|
-
]
|
|
193
|
-
});
|
|
194
|
-
export const primeMultiSelectDefinition = createInput(PrimeMultiSelect, {
|
|
195
|
-
props: [
|
|
196
|
-
"options",
|
|
197
|
-
"optionLabel",
|
|
198
|
-
"optionValue",
|
|
199
|
-
"optionDisabled",
|
|
200
|
-
"optionGroupLabel",
|
|
201
|
-
"optionGroupChildren",
|
|
202
|
-
"scrollHeight",
|
|
203
|
-
"inputProps",
|
|
204
|
-
"closeButtonProps",
|
|
205
|
-
"dataKey",
|
|
206
|
-
"filter",
|
|
207
|
-
"filterPlaceholder",
|
|
208
|
-
"filterLocale",
|
|
209
|
-
"filterMatchMode",
|
|
210
|
-
"filterFields",
|
|
211
|
-
"appendTo",
|
|
212
|
-
"display",
|
|
213
|
-
"maxSelectedLabels",
|
|
214
|
-
"selectedItemsLabel",
|
|
215
|
-
"selectionLimit",
|
|
216
|
-
"showToggleAll",
|
|
217
|
-
"loading",
|
|
218
|
-
"selectAll",
|
|
219
|
-
"resetFilterOnHide",
|
|
220
|
-
"virtualScrollerOptions",
|
|
221
|
-
"autoOptionFocus",
|
|
222
|
-
"autoFilterFocus",
|
|
223
|
-
"filterMessage",
|
|
224
|
-
"selectionMessage",
|
|
225
|
-
"emptySelectionMessage",
|
|
226
|
-
"emptyFilterMessage",
|
|
227
|
-
"emptyMessage",
|
|
228
|
-
"pt",
|
|
229
|
-
"placeholder",
|
|
230
|
-
"ptOptions",
|
|
231
|
-
"unstyled"
|
|
232
|
-
]
|
|
233
|
-
});
|
|
234
|
-
export const primeListboxDefinition = createInput(PrimeListbox, {
|
|
235
|
-
props: [
|
|
236
|
-
"pt",
|
|
237
|
-
"ptOptions",
|
|
238
|
-
"unstyled",
|
|
239
|
-
"options",
|
|
240
|
-
"optionLabel",
|
|
241
|
-
"optionValue",
|
|
242
|
-
"multiple",
|
|
243
|
-
"filter",
|
|
244
|
-
"filterIcon",
|
|
245
|
-
"filterPlaceholder",
|
|
246
|
-
"filterLocale",
|
|
247
|
-
"filterMatchMode",
|
|
248
|
-
"autoOptionFocus",
|
|
249
|
-
"selectOnFocus"
|
|
250
|
-
]
|
|
251
|
-
});
|
|
252
|
-
export const primeCalendarDefinition = createInput(PrimeCalendar, {
|
|
253
|
-
props: [
|
|
254
|
-
"dateFormat",
|
|
255
|
-
"placeholder",
|
|
256
|
-
"selectionMode",
|
|
257
|
-
"inline",
|
|
258
|
-
"icon",
|
|
259
|
-
"showOtherMonths",
|
|
260
|
-
"selectOtherMonths",
|
|
261
|
-
"showIcon",
|
|
262
|
-
"previousIcon",
|
|
263
|
-
"nextIcon",
|
|
264
|
-
"incrementIcon",
|
|
265
|
-
"decrementIcon",
|
|
266
|
-
"numberOfMonths",
|
|
267
|
-
"responsiveOptions",
|
|
268
|
-
"view",
|
|
269
|
-
"touchUI",
|
|
270
|
-
"minDate",
|
|
271
|
-
"maxDate",
|
|
272
|
-
"disabledDates",
|
|
273
|
-
"disabledDays",
|
|
274
|
-
"maxDateCount",
|
|
275
|
-
"showOnFocus",
|
|
276
|
-
"autoZIndex",
|
|
277
|
-
"baseZIndex",
|
|
278
|
-
"showButtonBar",
|
|
279
|
-
"showTime",
|
|
280
|
-
"timeOnly",
|
|
281
|
-
"shortYearCutoff",
|
|
282
|
-
"hourFormat",
|
|
283
|
-
"stepHour",
|
|
284
|
-
"stepMinute",
|
|
285
|
-
"stepSecond",
|
|
286
|
-
"showSeconds",
|
|
287
|
-
"hideOnDateTimeSelect",
|
|
288
|
-
"hideOnRangeSelection",
|
|
289
|
-
"timeSeparator",
|
|
290
|
-
"showWeek",
|
|
291
|
-
"manualInput",
|
|
292
|
-
"appendTo",
|
|
293
|
-
"panelStyle",
|
|
294
|
-
"panelClass",
|
|
295
|
-
"pt",
|
|
296
|
-
"ptOptions",
|
|
297
|
-
"unstyled"
|
|
298
|
-
]
|
|
299
|
-
});
|
|
300
|
-
export const primeSliderDefinition = createInput(PrimeSlider, {
|
|
301
|
-
props: [
|
|
302
|
-
"pt",
|
|
303
|
-
"ptOptions",
|
|
304
|
-
"unstyled",
|
|
305
|
-
"min",
|
|
306
|
-
"max",
|
|
307
|
-
"step",
|
|
308
|
-
"range",
|
|
309
|
-
"orientation"
|
|
310
|
-
]
|
|
311
|
-
});
|
|
312
|
-
export const primeRatingDefinition = createInput(PrimeRating, {
|
|
313
|
-
props: [
|
|
314
|
-
"unstyled",
|
|
315
|
-
"stars",
|
|
316
|
-
"cancel",
|
|
317
|
-
"onIcon",
|
|
318
|
-
"offIcon",
|
|
319
|
-
"cancelIcon",
|
|
320
|
-
"ptOptions",
|
|
321
|
-
"pt"
|
|
322
|
-
]
|
|
323
|
-
});
|
|
324
|
-
export const primeRadioButtonDefinition = createInput(PrimeRadioButton, {
|
|
325
|
-
props: [
|
|
326
|
-
"pt",
|
|
327
|
-
"ptOptions",
|
|
328
|
-
"unstyled",
|
|
329
|
-
"options",
|
|
330
|
-
"options_class",
|
|
331
|
-
"option_class",
|
|
332
|
-
"label_class"
|
|
333
|
-
]
|
|
334
|
-
});
|
|
335
|
-
export const primeChipsDefinition = createInput(PrimeChips, {
|
|
336
|
-
props: [
|
|
337
|
-
"allowDuplicate",
|
|
338
|
-
"addOnBlur",
|
|
339
|
-
"max",
|
|
340
|
-
"placeholder",
|
|
341
|
-
"seperator",
|
|
342
|
-
"pt",
|
|
343
|
-
"ptOptions",
|
|
344
|
-
"unstyled"
|
|
345
|
-
]
|
|
346
|
-
});
|
|
347
|
-
export const primeKnobDefinition = createInput(PrimeKnob, {
|
|
348
|
-
props: [
|
|
349
|
-
"pt",
|
|
350
|
-
"ptOptions",
|
|
351
|
-
"unstyled",
|
|
352
|
-
"min",
|
|
353
|
-
"max",
|
|
354
|
-
"step",
|
|
355
|
-
"size",
|
|
356
|
-
"strokeWidth",
|
|
357
|
-
"showValue",
|
|
358
|
-
"valueColor",
|
|
359
|
-
"rangeColor",
|
|
360
|
-
"textColor",
|
|
361
|
-
"valueTemplate"
|
|
362
|
-
]
|
|
363
|
-
});
|
|
364
|
-
export const primeColorPickerDefinition = createInput(PrimeColorPicker, {
|
|
365
|
-
props: [
|
|
366
|
-
"defaultColor",
|
|
367
|
-
"inline",
|
|
368
|
-
"format",
|
|
369
|
-
"pt",
|
|
370
|
-
"ptOptions",
|
|
371
|
-
"unstyled"
|
|
372
|
-
]
|
|
373
|
-
});
|
|
374
|
-
export const primeToggleButtonDefinition = createInput(PrimeToggleButton, {
|
|
375
|
-
props: [
|
|
376
|
-
"pt",
|
|
377
|
-
"ptOptions",
|
|
378
|
-
"unstyled",
|
|
379
|
-
"onLabel",
|
|
380
|
-
"offLabel",
|
|
381
|
-
"onIcon",
|
|
382
|
-
"offIcon",
|
|
383
|
-
"iconPos"
|
|
384
|
-
]
|
|
385
|
-
});
|
|
386
|
-
export const primeSelectButtonDefinition = createInput(PrimeSelectButton, {
|
|
387
|
-
props: [
|
|
388
|
-
"pt",
|
|
389
|
-
"ptOptions",
|
|
390
|
-
"unstyled",
|
|
391
|
-
"optionLabel",
|
|
392
|
-
"optionValue",
|
|
393
|
-
"optionDisabled",
|
|
394
|
-
"multiple",
|
|
395
|
-
"unselectable",
|
|
396
|
-
"dataKey",
|
|
397
|
-
"options"
|
|
398
|
-
]
|
|
399
|
-
});
|
|
400
|
-
export const primeTriStateCheckboxDefinition = createInput(PrimeTriStateCheckbox, {
|
|
401
|
-
props: [
|
|
402
|
-
"pt",
|
|
403
|
-
"ptOptions",
|
|
404
|
-
"unstyled",
|
|
405
|
-
"variant",
|
|
406
|
-
"labelRight",
|
|
407
|
-
"labelLeft"
|
|
408
|
-
]
|
|
409
|
-
});
|
|
410
|
-
export const primeCascadeSelectDefinition = createInput(PrimeCascadeSelect, {
|
|
411
|
-
props: [
|
|
412
|
-
"options",
|
|
413
|
-
"optionLabel",
|
|
414
|
-
"optionValue",
|
|
415
|
-
"optionGroupLabel",
|
|
416
|
-
"optionGroupChildren",
|
|
417
|
-
"placeholder",
|
|
418
|
-
"pt",
|
|
419
|
-
"ptOptions",
|
|
420
|
-
"unstyled"
|
|
421
|
-
]
|
|
422
|
-
});
|
|
423
|
-
export const primeTreeSelectDefinition = createInput(PrimeTreeSelect, {
|
|
424
|
-
props: [
|
|
425
|
-
"options",
|
|
426
|
-
"placeholder",
|
|
427
|
-
"selectionMode",
|
|
428
|
-
"pt",
|
|
429
|
-
"ptOptions",
|
|
430
|
-
"unstyled",
|
|
431
|
-
"emptyMessage",
|
|
432
|
-
"display",
|
|
433
|
-
"metaKeySelection",
|
|
434
|
-
"appendTo",
|
|
435
|
-
"scrollHeight",
|
|
436
|
-
"panelClass",
|
|
437
|
-
"variant"
|
|
438
|
-
]
|
|
439
|
-
});
|
|
440
|
-
export const primeInputs = {
|
|
441
|
-
primeAutoComplete: primeAutoCompleteDefinition,
|
|
442
|
-
primeInputText: primeInputTextDefinition,
|
|
443
|
-
primeInputNumber: primeInputNumberDefinition,
|
|
444
|
-
primeInputMask: primeInputMaskDefinition,
|
|
445
|
-
primePassword: primePasswordDefinition,
|
|
446
|
-
primeCheckbox: primeCheckboxDefinition,
|
|
447
|
-
primeInputSwitch: primeInputSwitchDefinition,
|
|
448
|
-
primeTextarea: primeTextareaDefinition,
|
|
449
|
-
primeEditor: primeEditorDefinition,
|
|
450
|
-
primeDropdown: primeDropdownDefinition,
|
|
451
|
-
primeMultiSelect: primeMultiSelectDefinition,
|
|
452
|
-
primeCalendar: primeCalendarDefinition,
|
|
453
|
-
primeSlider: primeSliderDefinition,
|
|
454
|
-
primeChips: primeChipsDefinition,
|
|
455
|
-
primeKnob: primeKnobDefinition,
|
|
456
|
-
primeRating: primeRatingDefinition,
|
|
457
|
-
primeRadioButton: primeRadioButtonDefinition,
|
|
458
|
-
primeColorPicker: primeColorPickerDefinition,
|
|
459
|
-
primeToggleButton: primeToggleButtonDefinition,
|
|
460
|
-
primeListbox: primeListboxDefinition,
|
|
461
|
-
primeSelectButton: primeSelectButtonDefinition,
|
|
462
|
-
primeTriStateCheckbox: primeTriStateCheckboxDefinition,
|
|
463
|
-
primeCascadeSelect: primeCascadeSelectDefinition,
|
|
464
|
-
primeTreeSelect: primeTreeSelectDefinition,
|
|
465
|
-
primeInputOtp: primeInputOtpDefinition
|
|
466
|
-
};
|
|
2
|
+
import { primeInputs } from "./definitions/index.mjs";
|
|
467
3
|
export {
|
|
468
|
-
useFormKitSchema
|
|
4
|
+
useFormKitSchema,
|
|
5
|
+
primeInputs
|
|
469
6
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sfxcode/formkit-primevue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.8",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Tom",
|
|
7
7
|
"email": "tom@sfxcode.com"
|
|
@@ -28,6 +28,11 @@
|
|
|
28
28
|
"import": "./dist/composables/index.mjs",
|
|
29
29
|
"require": "./dist/composables/index.js"
|
|
30
30
|
},
|
|
31
|
+
"./definitions": {
|
|
32
|
+
"types": "./dist/definitions/index.d.ts",
|
|
33
|
+
"import": "./dist/definitions/index.mjs",
|
|
34
|
+
"require": "./dist/definitions/index.js"
|
|
35
|
+
},
|
|
31
36
|
"./dist/sass/formkit-primevue.scss": {
|
|
32
37
|
"import": "./dist/sass/formkit-primevue.scss",
|
|
33
38
|
"require": "./dist/sass/formkit-primevue.scss"
|
|
@@ -56,22 +61,35 @@
|
|
|
56
61
|
"components.d.ts",
|
|
57
62
|
"dist"
|
|
58
63
|
],
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "unbuild",
|
|
66
|
+
"dev": "vite serve dev",
|
|
67
|
+
"dev:build": "vite build dev",
|
|
68
|
+
"dev:preview": "vite preview dev",
|
|
69
|
+
"release": "npm run lint && npm run build && changelogen --release && npm publish --access public && git push --follow-tags",
|
|
70
|
+
"lint": "eslint .",
|
|
71
|
+
"lint:fix": "eslint . --fix",
|
|
72
|
+
"prepublishOnly": "pnpm build",
|
|
73
|
+
"docs:dev": "vitepress dev docs",
|
|
74
|
+
"docs:build": "vitepress build docs",
|
|
75
|
+
"docs:serve": "vitepress serve docs"
|
|
76
|
+
},
|
|
59
77
|
"peerDependencies": {
|
|
60
78
|
"vue": "^3.4.0"
|
|
61
79
|
},
|
|
62
80
|
"dependencies": {
|
|
63
|
-
"@formkit/addons": "^1.6.
|
|
64
|
-
"@formkit/i18n": "^1.6.
|
|
65
|
-
"@formkit/vue": "^1.6.
|
|
66
|
-
"primeicons": "^
|
|
81
|
+
"@formkit/addons": "^1.6.1",
|
|
82
|
+
"@formkit/i18n": "^1.6.1",
|
|
83
|
+
"@formkit/vue": "^1.6.1",
|
|
84
|
+
"primeicons": "^7.0.0",
|
|
67
85
|
"primevue": "^3.50.0"
|
|
68
86
|
},
|
|
69
87
|
"devDependencies": {
|
|
70
|
-
"@antfu/eslint-config": "2.
|
|
71
|
-
"@formkit/core": "^1.6.
|
|
72
|
-
"@types/node": "^20.
|
|
73
|
-
"@unocss/preset-icons": "^0.58.
|
|
74
|
-
"@unocss/preset-uno": "0.58.
|
|
88
|
+
"@antfu/eslint-config": "2.11.6",
|
|
89
|
+
"@formkit/core": "^1.6.1",
|
|
90
|
+
"@types/node": "^20.12.2",
|
|
91
|
+
"@unocss/preset-icons": "^0.58.8",
|
|
92
|
+
"@unocss/preset-uno": "0.58.8",
|
|
75
93
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
76
94
|
"@vue/compiler-sfc": "^3.4.21",
|
|
77
95
|
"@vue/server-renderer": "^3.4.21",
|
|
@@ -81,6 +99,7 @@
|
|
|
81
99
|
"@vuedx/typescript-plugin-vue": "~0.7.6",
|
|
82
100
|
"@vueuse/core": "^10.9.0",
|
|
83
101
|
"@vueuse/head": "^2.0.0",
|
|
102
|
+
"changelogen": "^0.5.5",
|
|
84
103
|
"chart.js": "^4.4.2",
|
|
85
104
|
"consola": "^3.2.3",
|
|
86
105
|
"eslint": "^8.57.0",
|
|
@@ -89,32 +108,21 @@
|
|
|
89
108
|
"quill": "^1.3.7",
|
|
90
109
|
"sass": "^1.72.0",
|
|
91
110
|
"tslib": "^2.6.2",
|
|
92
|
-
"typescript": "^5.4.
|
|
111
|
+
"typescript": "^5.4.3",
|
|
93
112
|
"unbuild": "2.0.0",
|
|
94
|
-
"unocss": "^0.58.
|
|
113
|
+
"unocss": "^0.58.8",
|
|
95
114
|
"unplugin-auto-import": "^0.17.5",
|
|
96
115
|
"unplugin-vue-components": "^0.26.0",
|
|
97
|
-
"vanilla-jsoneditor": "^0.23.
|
|
98
|
-
"vite": "^5.
|
|
99
|
-
"vite-plugin-dts": "^3.
|
|
116
|
+
"vanilla-jsoneditor": "^0.23.1",
|
|
117
|
+
"vite": "^5.2.7",
|
|
118
|
+
"vite-plugin-dts": "^3.8.1",
|
|
100
119
|
"vite-plugin-eslint": "^1.8.1",
|
|
101
|
-
"vite-plugin-pages": "^0.32.
|
|
120
|
+
"vite-plugin-pages": "^0.32.1",
|
|
102
121
|
"vite-ssg": "^0.23.6",
|
|
103
|
-
"vitepress": "1.0.
|
|
122
|
+
"vitepress": "1.0.1",
|
|
104
123
|
"vue": "^3.4.21",
|
|
105
124
|
"vue-demi": "^0.14.7",
|
|
106
125
|
"vue-router": "^4.3.0",
|
|
107
|
-
"vue-tsc": "^2.0.
|
|
108
|
-
},
|
|
109
|
-
"scripts": {
|
|
110
|
-
"build": "unbuild",
|
|
111
|
-
"dev": "vite serve dev",
|
|
112
|
-
"dev:build": "vite build dev",
|
|
113
|
-
"dev:preview": "vite preview dev",
|
|
114
|
-
"lint": "eslint .",
|
|
115
|
-
"lint:fix": "eslint . --fix",
|
|
116
|
-
"docs:dev": "vitepress dev docs",
|
|
117
|
-
"docs:build": "vitepress build docs",
|
|
118
|
-
"docs:serve": "vitepress serve docs"
|
|
126
|
+
"vue-tsc": "^2.0.7"
|
|
119
127
|
}
|
|
120
128
|
}
|