@sfxcode/formkit-primevue 0.5.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/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Formkit - Primevue
2
+
3
+ Helper classes for using [Formkit](https://formkit.com/) with the [PrimeVue UI Framework](https://www.primefaces.org/primevue/#/)
4
+
5
+ ## Supported Inputs
6
+
7
+ - Calendar
8
+ - CheckBox
9
+ - Dropdown
10
+ - Editor (HTML Editor)
11
+ - InputMask
12
+ - InputNumber
13
+ - InputSwitch
14
+ - InputText
15
+ - InputTextArea
16
+ - MultiSelect
17
+ - Password
18
+ - Ranking
19
+
20
+ ## Usage
21
+
22
+ ```typescript
23
+
24
+ import { defaultConfig, plugin } from '@formkit/vue'
25
+ import { primeInputs } from '@sfxcode/formkit-primevue'
26
+
27
+
28
+ app.use(plugin, defaultConfig({
29
+ locales: { de, en },
30
+ // Define the active locale
31
+ locale: 'en',
32
+ inputs: primeInputs,
33
+ }))
34
+ ```
35
+
36
+