DaisyUI
Installation
npm i @sjsf/basic-theme@next @sjsf/daisyui5-theme@next
yarn add @sjsf/basic-theme@next @sjsf/daisyui5-theme@next
pnpm add @sjsf/basic-theme@next @sjsf/daisyui5-theme@next
bun add @sjsf/basic-theme@next @sjsf/daisyui5-theme@next
Install daisyUI v5
Install daisyUI as a Tailwind plugin
Configuration
Register the theme source path by adding a line like this to the app.css
file.
@source "../node_modules/@sjsf/daisyui5-theme/dist";
Extra widgets
cally-date-picker
checkboxes
file
filter-radio-buttons
multi-select
pikaday-date-picker
radio-buttons
radio
range
rating
switch
textarea
Widgets demo
{ "type": "object", "properties": { "checkbox": { "type": "object", "properties": { "default": { "type": "boolean" }, "error": { "type": "boolean" } } }, "checkboxes": { "type": "object", "properties": { "default": { "type": "array", "items": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "uniqueItems": true }, "error": { "type": "array", "items": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "uniqueItems": true } } }, "file": { "type": "object", "properties": { "default": { "type": "string", "format": "data-url" }, "error": { "type": "string", "format": "data-url" } } }, "multiFile": { "type": "object", "properties": { "default": { "type": "array", "items": { "type": "string", "format": "data-url" } }, "error": { "type": "array", "items": { "type": "string", "format": "data-url" } } } }, "number": { "type": "object", "properties": { "default": { "type": "number" }, "error": { "type": "number" } } }, "select": { "type": "object", "properties": { "default": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "error": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] } } }, "text": { "type": "object", "properties": { "default": { "type": "string" }, "error": { "type": "string" } } }, "callyDatePicker": { "type": "object", "properties": { "default": { "type": "string" }, "error": { "type": "string" } } }, "filterRadioButtons": { "type": "object", "properties": { "default": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "error": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] } } }, "multiSelect": { "type": "object", "properties": { "default": { "type": "array", "items": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "uniqueItems": true }, "error": { "type": "array", "items": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "uniqueItems": true } } }, "pikadayDatePicker": { "type": "object", "properties": { "default": { "type": "string" }, "error": { "type": "string" } } }, "radioButtons": { "type": "object", "properties": { "default": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "error": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] } } }, "radio": { "type": "object", "properties": { "default": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "error": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] } } }, "range": { "type": "object", "properties": { "default": { "type": "number" }, "error": { "type": "number" } } }, "rating": { "type": "object", "properties": { "default": { "type": "number" }, "error": { "type": "number" } } }, "switch": { "type": "object", "properties": { "default": { "type": "boolean" }, "error": { "type": "boolean" } } }, "textarea": { "type": "object", "properties": { "default": { "type": "string" }, "error": { "type": "string" } } } }}
{ "checkbox": { "default": {}, "error": {} }, "checkboxes": { "default": {}, "error": {} }, "file": { "default": {}, "error": {} }, "multiFile": { "default": {}, "error": {} }, "number": { "default": {}, "error": {} }, "select": { "default": {}, "error": {} }, "text": { "default": {}, "error": {} }, "callyDatePicker": { "default": { "ui:components": { "textWidget": "datePickerWidget" }, "ui:options": { "useLabel": false } }, "error": { "ui:components": { "textWidget": "datePickerWidget" }, "ui:options": { "useLabel": false } } }, "filterRadioButtons": { "default": { "ui:components": {}, "ui:options": { "useLabel": false } }, "error": { "ui:components": {}, "ui:options": { "useLabel": false } } }, "multiSelect": { "default": { "ui:components": { "checkboxesWidget": "multiSelectWidget" }, "ui:options": { "useLabel": true } }, "error": { "ui:components": { "checkboxesWidget": "multiSelectWidget" }, "ui:options": { "useLabel": true } } }, "pikadayDatePicker": { "default": { "ui:components": {} }, "error": { "ui:components": {} } }, "radioButtons": { "default": { "ui:components": { "selectWidget": "radioButtonsWidget" }, "ui:options": { "useLabel": false } }, "error": { "ui:components": { "selectWidget": "radioButtonsWidget" }, "ui:options": { "useLabel": false } } }, "radio": { "default": { "ui:components": { "selectWidget": "radioWidget" }, "ui:options": { "useLabel": false } }, "error": { "ui:components": { "selectWidget": "radioWidget" }, "ui:options": { "useLabel": false } } }, "range": { "default": { "ui:components": { "numberWidget": "rangeWidget" } }, "error": { "ui:components": { "numberWidget": "rangeWidget" } } }, "rating": { "default": { "ui:components": { "numberWidget": "ratingWidget" }, "ui:options": { "useLabel": false } }, "error": { "ui:components": { "numberWidget": "ratingWidget" }, "ui:options": { "useLabel": false } } }, "switch": { "default": { "ui:components": { "checkboxWidget": "switchWidget" } }, "error": { "ui:components": { "checkboxWidget": "switchWidget" } } }, "textarea": { "default": { "ui:components": { "textWidget": "textareaWidget" } }, "error": { "ui:components": { "textWidget": "textareaWidget" } } }}