Skip to content

Commit 0e7f0f8

Browse files
committed
docs(readme): Update for PrimeVue 4
1 parent 8a1f8bb commit 0e7f0f8

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

README.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -104,31 +104,30 @@ Some samples for common tasks are available
104104

105105
[Nuxt 3 PrimeVue Starter](https://github.com/sfxcode/nuxt3-primevue-starter) and [Vite PrimeVue Starter](https://github.com/sfxcode/vite-primevue-starter) with Formkit support available.
106106

107-
## Supported Inputs
107+
## Supported Inputs for PrimeVue 4
108108

109109
- AutoComplete
110-
- Calendar
111110
- CascadeSelect
112111
- Checkbox
113-
- Chips
114-
- Dropdown
112+
- ColorPicker
113+
- DatePicker
115114
- Editor (HTML Editor)
116115
- InputMask
117116
- InputNumber
118117
- InputOtp
119-
- InputSwitch
120118
- InputText
121-
- InputTextarea
122-
- MultiSelect
123-
- Password
124-
- Ranking
125119
- Knob
126-
- ColorPicker
127120
- Listbox
128-
- ToggleButton
129-
- SelectButton
130-
- TriStateCheckbox
121+
- MultiSelect
122+
- Password
131123
- RadioButton
124+
- Rating
125+
- Select
126+
- SelectButton
127+
- Slider
128+
- Textarea
129+
- ToggleButton
130+
- ToggleSwitch
132131
- TreeSelect
133132

134133
## Demo

docs/.vitepress/theme/components/DisplayComponents.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang='ts'>
22
import { ref } from 'vue'
33
4-
const inputs = ['CascadeSelect', 'Checkbox', 'Select', 'Editor (HTML Editor)', 'InputMask', 'InputNumber', 'InputOtp', 'InputSwitch', 'InputText', 'InputTextarea', 'MultiSelect', 'Password', 'Ranking', 'Chips', 'Knob', 'ColorPicker', 'Listbox', 'ToggleButton', 'SelectButton', 'TriStateCheckbox', 'RadioButton', 'TreeSelect']
4+
const inputs = ['AutoComplete', 'CascadeSelect', 'Checkbox', 'ColorPicker', 'DatePicker', 'Editor', 'InputMask', 'InputNumber', 'InputOtp', 'InputText', 'Knob', 'Listbox', 'MultiSelect', 'Password', 'RadioButton', 'Rating', 'Select', 'SelectButton', 'Slider', 'Textarea', 'ToggleButton', 'ToggleSwitch', 'TreeSelect']
55
const names = ref(inputs.sort((a, b) => a.localeCompare(b)))
66
</script>
77

docs/guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Formkit PrimeVue
22

3-
**formkit-primevue** combines the [PrimeVue](https://www.primefaces.org/primevue) component framework with the validation power of [Formkit](https://formkit.com/) in your Vue/Nuxt application.
3+
**formkit-primevue** combines the [PrimeVue](https://www.primefaces.org/primevue) component framework (V4) with the validation power of [Formkit](https://formkit.com/) in your Vue/Nuxt application.
44

55
The main motivation for this project is to use Formkit Validation by Schema with form elements provided by PrimeVue.
66

docs/guide/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ In some inputs options are needed. There are several ways to deal with the optio
44

55
## Option based Inputs
66

7-
- Dropdown
87
- Listbox
98
- MultiSelect
109
- RadioButton
10+
- Select
1111
- SelectButton
1212

1313
## Ways of Usage

0 commit comments

Comments
 (0)