mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 13:46:07 +00:00
* feat: move new-york to lucide-react * fix: mail open * chore: update registry * chore: add test:dev * chore: add changeset * feat: build an icon registry * chore: add missing registry icons * feat: add an icons debug page * feat: add an icon migration * chore(www): migrate all radix icons to lucide * feat: update migration script * chore: update changeset * feat(shadcn): implement icons transformer * fix: missing registry icons * fix(shadcn): handling of missing icons * feat: add support for multiple libraries
63 lines
1.2 KiB
JSON
63 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"style": {
|
|
"type": "string",
|
|
"enum": ["default", "new-york"]
|
|
},
|
|
"tailwind": {
|
|
"type": "object",
|
|
"properties": {
|
|
"config": {
|
|
"type": "string"
|
|
},
|
|
"css": {
|
|
"type": "string"
|
|
},
|
|
"baseColor": {
|
|
"type": "string"
|
|
},
|
|
"cssVariables": {
|
|
"type": "boolean"
|
|
},
|
|
"prefix": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["config", "css", "baseColor", "cssVariables"]
|
|
},
|
|
"rsc": {
|
|
"type": "boolean"
|
|
},
|
|
"tsx": {
|
|
"type": "boolean"
|
|
},
|
|
"iconLibrary": {
|
|
"type": "string"
|
|
},
|
|
"aliases": {
|
|
"type": "object",
|
|
"properties": {
|
|
"utils": {
|
|
"type": "string"
|
|
},
|
|
"components": {
|
|
"type": "string"
|
|
},
|
|
"ui": {
|
|
"type": "string"
|
|
},
|
|
"lib": {
|
|
"type": "string"
|
|
},
|
|
"hooks": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["utils", "components"]
|
|
}
|
|
},
|
|
"required": ["style", "tailwind", "rsc", "aliases"]
|
|
}
|