-
-
Notifications
You must be signed in to change notification settings - Fork 501
Expand file tree
/
Copy pathschema.json
More file actions
152 lines (152 loc) · 6.93 KB
/
Copy pathschema.json
File metadata and controls
152 lines (152 loc) · 6.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"components": {
"description": "List of component names to generate styles for. Empty array enables automatic detection. \nSee https://flowbite-react.com/docs/customize/config#components for more details.",
"type": "array",
"items": {
"type": "string",
"enum": [
"*",
"src\\components\\Accordion\\Accordion",
"src\\components\\Accordion\\AccordionContent",
"src\\components\\Accordion\\AccordionTitle",
"src\\components\\Alert\\Alert",
"src\\components\\Avatar\\Avatar",
"src\\components\\Avatar\\AvatarGroup",
"src\\components\\Avatar\\AvatarGroupCounter",
"src\\components\\Badge\\Badge",
"src\\components\\Banner\\Banner",
"src\\components\\Banner\\BannerCollapseButton",
"src\\components\\Blockquote\\Blockquote",
"src\\components\\Breadcrumb\\Breadcrumb",
"src\\components\\Breadcrumb\\BreadcrumbItem",
"src\\components\\Button\\Button",
"src\\components\\Button\\ButtonGroup",
"src\\components\\Card\\Card",
"src\\components\\Carousel\\Carousel",
"src\\components\\Checkbox\\Checkbox",
"src\\components\\Clipboard\\Clipboard",
"src\\components\\Clipboard\\ClipboardWithIcon",
"src\\components\\Clipboard\\ClipboardWithIconText",
"src\\components\\DarkThemeToggle\\DarkThemeToggle",
"src\\components\\Datepicker\\Datepicker",
"src\\components\\Drawer\\Drawer",
"src\\components\\Drawer\\DrawerHeader",
"src\\components\\Drawer\\DrawerItems",
"src\\components\\Dropdown\\Dropdown",
"src\\components\\Dropdown\\DropdownDivider",
"src\\components\\Dropdown\\DropdownHeader",
"src\\components\\Dropdown\\DropdownItem",
"src\\components\\FileInput\\FileInput",
"src\\components\\FloatingLabel\\FloatingLabel",
"src\\components\\Footer\\Footer",
"src\\components\\Footer\\FooterBrand",
"src\\components\\Footer\\FooterCopyright",
"src\\components\\Footer\\FooterDivider",
"src\\components\\Footer\\FooterIcon",
"src\\components\\Footer\\FooterLink",
"src\\components\\Footer\\FooterLinkGroup",
"src\\components\\Footer\\FooterTitle",
"src\\components\\HR\\HR",
"src\\components\\HR\\HRIcon",
"src\\components\\HR\\HRSquare",
"src\\components\\HR\\HRText",
"src\\components\\HR\\HRTrimmed",
"src\\components\\HelperText\\HelperText",
"src\\components\\Kbd\\Kbd",
"src\\components\\Label\\Label",
"src\\components\\ListGroup\\ListGroup",
"src\\components\\ListGroup\\ListGroupItem",
"src\\components\\List\\List",
"src\\components\\List\\ListItem",
"src\\components\\MegaMenu\\MegaMenu",
"src\\components\\MegaMenu\\MegaMenuDropdown",
"src\\components\\MegaMenu\\MegaMenuDropdownToggle",
"src\\components\\Modal\\Modal",
"src\\components\\Modal\\ModalBody",
"src\\components\\Modal\\ModalFooter",
"src\\components\\Modal\\ModalHeader",
"src\\components\\Navbar\\Navbar",
"src\\components\\Navbar\\NavbarBrand",
"src\\components\\Navbar\\NavbarCollapse",
"src\\components\\Navbar\\NavbarLink",
"src\\components\\Navbar\\NavbarToggle",
"src\\components\\Pagination\\Pagination",
"src\\components\\Pagination\\PaginationButton",
"src\\components\\Popover\\Popover",
"src\\components\\Progress\\Progress",
"src\\components\\Radio\\Radio",
"src\\components\\RangeSlider\\RangeSlider",
"src\\components\\Rating\\Rating",
"src\\components\\Rating\\RatingAdvanced",
"src\\components\\Rating\\RatingStar",
"src\\components\\Select\\Select",
"src\\components\\Sidebar\\Sidebar",
"src\\components\\Sidebar\\SidebarCTA",
"src\\components\\Sidebar\\SidebarCollapse",
"src\\components\\Sidebar\\SidebarItem",
"src\\components\\Sidebar\\SidebarItemGroup",
"src\\components\\Sidebar\\SidebarItems",
"src\\components\\Sidebar\\SidebarLogo",
"src\\components\\Spinner\\Spinner",
"src\\components\\Table\\Table",
"src\\components\\Table\\TableBody",
"src\\components\\Table\\TableCell",
"src\\components\\Table\\TableHead",
"src\\components\\Table\\TableHeadCell",
"src\\components\\Table\\TableRow",
"src\\components\\Tabs\\TabItem",
"src\\components\\Tabs\\Tabs",
"src\\components\\TextInput\\TextInput",
"src\\components\\Textarea\\Textarea",
"src\\components\\Timeline\\Timeline",
"src\\components\\Timeline\\TimelineBody",
"src\\components\\Timeline\\TimelineContent",
"src\\components\\Timeline\\TimelineItem",
"src\\components\\Timeline\\TimelinePoint",
"src\\components\\Timeline\\TimelineTime",
"src\\components\\Timeline\\TimelineTitle",
"src\\components\\Toast\\Toast",
"src\\components\\Toast\\ToastToggle",
"src\\components\\ToggleSwitch\\ToggleSwitch",
"src\\components\\Tooltip\\Tooltip"
]
},
"uniqueItems": true
},
"dark": {
"description": "Whether to generate dark mode styles. \nSee https://flowbite-react.com/docs/customize/config#dark for more details.",
"type": "boolean",
"default": true
},
"path": {
"description": "Path where components will be created, relative to the project root. \nSee https://flowbite-react.com/docs/customize/config#path for more details.",
"type": "string",
"default": "src/components"
},
"prefix": {
"description": "Optional prefix to apply to all Tailwind CSS classes. \nSee https://flowbite-react.com/docs/customize/config#prefix for more details.",
"type": "string",
"default": ""
},
"rsc": {
"description": "Whether to include the 'use client' directive for React Server Components. \nSee https://flowbite-react.com/docs/customize/config#rsc for more details.",
"type": "boolean",
"default": true
},
"tsx": {
"description": "Whether to use TypeScript (.tsx) or JavaScript (.jsx) for component creation. \nSee https://flowbite-react.com/docs/customize/config#tsx for more details.",
"type": "boolean",
"default": true
},
"version": {
"description": "The version of Tailwind CSS to use. \nSee https://flowbite-react.com/docs/customize/config#version for more details.",
"type": "number",
"enum": [3, 4],
"default": 4
}
},
"required": ["components", "dark", "path", "prefix", "rsc", "tsx", "version"]
}