Package Exports
- sanity-color-picker
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sanity-color-picker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Sanity Color Picker
Display colors for editors to choose from with this custom input component.
Installation
npm install sanity-color-picker
- In your schema:
import ColorPicker from "sanity-color-picker/lib";
export default {
title: "Color Picker",
name: "colorpicker",
type: "string",
inputComponent: ColorPicker,
options: {
list: [
{ title: "Yellow", value: "#f5c701" },
{ title: "Pink", value: "#f6cedb" },
{ title: "Red", value: "#f16d70" },
{ title: "Teal", value: "#88c6db" },
{ title: "Purple", value: "#aca0cc" },
{ title: "Green", value: "#bdcdcb" },
{ title: "White", value: "#fff" }
]
}
};
- Profit. The component returns the selected value.