
Security News
Socket Integrates With Bun 1.3’s Security Scanner API
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
@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 292 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
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.
Security News
Former RubyGems maintainers have launched The Gem Cooperative, a new community-run project aimed at rebuilding open governance in the Ruby ecosystem.