2022-09-01 14:16:37 +02:00
|
|
|
# Strapi plugin Custom Fields
|
2022-08-24 15:29:58 +02:00
|
|
|
|
2022-09-01 14:16:37 +02:00
|
|
|
A custom field plugin to house Strapi maintained custom fields
|
|
|
|
|
|
|
|
## Custom Fields
|
|
|
|
|
|
|
|
- [Color Picker](#color-picker)
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
To install this plugin, you need to add an NPM dependency to your Strapi application:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Using Yarn
|
|
|
|
yarn add @strapi/custom-fields
|
|
|
|
|
|
|
|
# Or using NPM
|
|
|
|
npm install @strapi/custom-fields
|
|
|
|
```
|
|
|
|
|
|
|
|
Then, you'll need to build your admin panel:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Using Yarn
|
|
|
|
yarn build
|
|
|
|
|
|
|
|
# Or using NPM
|
|
|
|
npm run build
|
|
|
|
```
|
|
|
|
|
|
|
|
## Color Picker
|
|
|
|
|
|
|
|
Use saturation and hue sliders to select a color and save the value as a HEX string
|
|
|
|
|
|
|
|

|