
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@prestashopcorp/puik-components
Advanced tools
Puik Components is a Vue Components library that aims to provide a complete set of reusable components based on the PrestaShop Design System for all the PrestaShop ecosystem.
ℹ️ see list of available Vue components
# NPM
$ npm install @prestashopcorp/puik-components @prestashopcorp/puik-theme --save
# Yarn
$ yarn add @prestashopcorp/puik-components @prestashopcorp/puik-theme
# pnpm
$ pnpm install @prestashopcorp/puik-components @prestashopcorp/puik-theme
import css in your application:
@import "@prestashopcorp/puik-theme";
First you need to install unplugin-vue-components
, unplugin-auto-import
and the Puik resolver @prestashopcorp/puik-resolver
$ npm install -D unplugin-vue-components unplugin-auto-import @prestashopcorp/puik-resolver
# Yarn
$ yarn add unplugin-vue-components unplugin-auto-import @prestashopcorp/puik-resolver -D
# pnpm
$ pnpm install unplugin-vue-components unplugin-auto-import @prestashopcorp/puik-resolver -D
Then add the code below in your vite.config file
ℹ️ if you don't use Vite follow this link
import { defineConfig } from 'vite'
import Components from 'unplugin-vue-components/vite'
import AutoImport from 'unplugin-auto-import/vite'
import { PuikResolver } from '@prestashopcorp/puik-resolver'
export default defineConfig({
plugins: [
// ...
Components({
resolvers: [PuikResolver()],
}),
AutoImport({
resolvers: [PuikResolver()],
}),
],
})
Import the vue component directly into your vue file
<script setup>
import { PuikButton } from '@prestashopcorp/puik-components'
</script>
<template>
<puik-button>Example button</puik-button>
</template>
FAQs
PUIK Vue 3 components library.
The npm package @prestashopcorp/puik-components receives a total of 283 weekly downloads. As such, @prestashopcorp/puik-components popularity was classified as not popular.
We found that @prestashopcorp/puik-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.