{"id":17501920,"url":"https://github.com/sfxcode/formkit-primevue","last_synced_at":"2026-05-11T09:08:40.098Z","repository":{"id":57700376,"uuid":"461448187","full_name":"sfxcode/formkit-primevue","owner":"sfxcode","description":"PrimeVue (v4, v3) support for the FormKit validation Framwork","archived":false,"fork":false,"pushed_at":"2026-01-13T00:29:09.000Z","size":12150,"stargazers_count":137,"open_issues_count":0,"forks_count":13,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-13T03:15:44.071Z","etag":null,"topics":["formkit","forms","nuxt3","outputs","primevue","primevue4","schema","validation","vite","vue3"],"latest_commit_sha":null,"homepage":"https://sfxcode.github.io/formkit-primevue","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sfxcode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-02-20T10:06:46.000Z","updated_at":"2026-01-13T00:28:36.000Z","dependencies_parsed_at":"2023-10-20T16:46:11.386Z","dependency_job_id":"c009f50d-c8f1-45c3-ac54-40d77ecca47b","html_url":"https://github.com/sfxcode/formkit-primevue","commit_stats":{"total_commits":604,"total_committers":9,"mean_commits":67.11111111111111,"dds":"0.10099337748344372","last_synced_commit":"f7beab2b6d096705f6ba2bf067c07651a3032e80"},"previous_names":[],"tags_count":195,"template":false,"template_full_name":null,"purl":"pkg:github/sfxcode/formkit-primevue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fformkit-primevue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fformkit-primevue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fformkit-primevue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fformkit-primevue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sfxcode","download_url":"https://codeload.github.com/sfxcode/formkit-primevue/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sfxcode%2Fformkit-primevue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477210,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["formkit","forms","nuxt3","outputs","primevue","primevue4","schema","validation","vite","vue3"],"created_at":"2024-10-19T20:16:51.353Z","updated_at":"2026-05-11T09:08:40.093Z","avatar_url":"https://github.com/sfxcode.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Formkit - Primevue\n\nPrimeVue based [FormKit Inputs](https://sfxcode.github.io/formkit-primevue/guide/inputs.html) for using [FormKit](https://formkit.com/) with the [PrimeVue UI Framework](https://primevue.org/#/).\n\nMain focus of this project is to provide configuration based forms with validation.\n\nIn addition, you can use the same pattern for **data output** from **schema** using [PrimeOutputs](https://sfxcode.github.io/formkit-primevue/guide/outputs.html).\n\n## PrimeVue Versions\n\nActual PrimeVue Version of the main branch is *4.x.*\n\nPrimeVue 3 is in the prime3 branch, but future development will only focus on PrimeVue 4\n\n## Build\n\n[![CI](https://github.com/sfxcode/formkit-primevue/actions/workflows/deploy.yml/badge.svg)](https://github.com/sfxcode/formkit-primevue/actions/workflows/deploy.yml)\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/6142cb73-02e0-4b2a-9ca3-25496f59ba9b/deploy-status)](https://app.netlify.com/sites/formkit-primevue/deploys)\n\n## Docs\n\n[Docs](https://sfxcode.github.io/formkit-primevue/)\n\n[Demo/Playground](https://formkit-primevue.netlify.app/)\n\n## Usage\n\n### Configuration\n\nAdd *formkit.config.ts*\n\n```typescript\nimport { defaultConfig, plugin } from '@formkit/vue'\nimport { primeInputs } from '@sfxcode/formkit-primevue'\n\napp.use(plugin, defaultConfig({\n  locales: { de, en },\n  // Define the active locale\n  locale: 'en',\n  inputs: primeInputs, \n}))\n```\n\nor if using also the output part\n\n```typescript\nimport { defaultConfig, plugin } from '@formkit/vue'\nimport { primeInputs, primeOutputs } from '@sfxcode/formkit-primevue'\n\napp.use(plugin, defaultConfig({\n  locales: { de, en },\n  // Define the active locale\n  locale: 'en',\n    inputs: { ...primeInputs, ...primeOutputs },\n}))\n```\n\nImportant: output elements depends on vue-i18n to style numbers, dates, ...\n\n### Nuxt\n\n[FormKit-PrimeVue-Nuxt](https://github.com/sfxcode/formkit-primevue-nuxt) module available.\n\nFeatures:\n\n- add PrimeVue Nuxt Module\n- add FormKit Nuxt Module\n- add i18n Nuxt Module\n- Default Configuration for FormKit (with PrimeVue components) is provided (can be disabled if needed)\n- AutoImport of PrimeVue Form Components\n- PrimeIcons are loaded by Default\n- FormKit Styling of this package is loaded by default\n- AutoImport of Composables\n- AutoImport of Components\n\n## Limitations\n\nPrefixing of the PrimeVue component names is not supported.\n\n### Schema Helper Functions\n\n[useFormKitSchema](https://github.com/sfxcode/formkit-primevue/blob/main/src/composables/useFormKitSchema.ts) provide functions to simplify the usage of elements, components, lists, ...\n\n[useInputEditorSchema](https://github.com/sfxcode/formkit-primevue/blob/main/src/composables/useInputEditorSchema.ts) provide functions for a component schema generation builder\n\n### Basic Styling\n\nBasic styling is provided with the [formkit-primevue.scss](https://github.com/sfxcode/formkit-primevue/blob/main/src/sass/formkit-primevue.scss) file or the corresponding css file in the package.\n\nFeatures:\n\n- Width of all text and dropdown elements is set to 100%\n- Error Color by variable (--formkit-error-color)\n- Some margins, font sizes ...\n\nYou can use it or take it as base for your own styling.\n\n### Extended Styling\n\n- Styling outerClas, innerClass .... is provided by FormKit\n- All inputs, outputs are wrapped in a div with a **p-formkit** class\n- Most of the Prime Input Components have access to class / styles attributes\n- PT and PTOptions are available ([https://primevue.org/passthrough/](https://primevue.org/passthrough/))\n- [Styling](https://formkit-primevue.netlify.app/styling/base) and [PT](https://formkit-primevue.netlify.app/styling/passThrough) demo available\n- [Grid](https://formkit-primevue.netlify.app/styling/grid) Demo of the provided grid styling (col-[1-12])\n\n### Samples\n\nSome samples for common tasks are available\n\n- [Repeater](https://formkit-primevue.netlify.app/samples/repeater) Use Repeater composable for using repeating values in your schema\n- [Input Editor](https://formkit-primevue.netlify.app/samples/inputEditor) Edit FormKit schema on the based on a provided composable\n- [Form Editor](https://formkit-primevue.netlify.app/samples/formEditor) Basic demo as starter to create Forms visually\n\n## Showcases\n\n[Demo Application](https://formkit-primevue.netlify.app/)\n\n[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.\n\n## Supported Inputs for PrimeVue 4\n\n- AutoComplete\n- CascadeSelect\n- Checkbox\n- ColorPicker\n- DatePicker\n- Editor (HTML Editor - if you register the editor component, make sure to import quill)\n- InputMask\n- InputNumber\n- InputOtp\n- InputText\n- Knob\n- Listbox\n- MultiSelect\n- Password\n- RadioButton\n- Rating\n- Repeater (not a PrimeVue component, but provided as helper for repeating groups of inputs)\n- Select\n- SelectButton\n- Slider\n- Textarea\n- ToggleButton\n- ToggleSwitch\n- TreeSelect\n\n![](formkit-primevue.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsfxcode%2Fformkit-primevue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsfxcode%2Fformkit-primevue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsfxcode%2Fformkit-primevue/lists"}