Skip to content

Commit ebc451a

Browse files
feat: add PrimeVue to the list of the detectable UI frameworks (#32)
* Add PrimeVue * chore: update svg Co-authored-by: Sébastien Chopin <[email protected]>
1 parent 0d9abe1 commit ebc451a

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ To support a new Vue framework, please look at [detectors/frameworks.json](detec
4646
- [Chakra UI Vue](https://vue.chakra-ui.com)
4747
- [Oruga](https://oruga.io)
4848
- [VueTailwind](https://www.vue-tailwind.com/)
49+
- [PrimeVue](https://www.primefaces.org/primevue/showcase)
4950

5051
To support a new UI library, please look at [detectors/uis.json](detectors/uis.json).
5152

detectors/uis.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,16 @@
103103
"detectors": {
104104
"js": "[...document.querySelectorAll('*')].map((el) => Boolean(el.__vue__ && el.__vue__.$chakra)).filter(Boolean).length"
105105
}
106-
}
106+
},
107+
"primevue": {
108+
"metas": {
109+
"slug": "primevue",
110+
"name": "PrimeVue",
111+
"imgPath": "/ui/primevue.svg",
112+
"url": "https://www.primefaces.org/primevue/showcase"
113+
},
114+
"detectors": {
115+
"js": "[...document.querySelectorAll('*')].map((el) => Boolean(el.__vue__ && el.__vue__.$primevue)).filter(Boolean).length"
116+
}
117+
},
107118
}

icons/ui/primevue.svg

Lines changed: 11 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)