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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
use crate::ext::*;

constant!(form control);

// https://daisyui.com/components/checkbox/
constant!(checkbox);

// Modifier
constant!(checkbox primary);
constant!(checkbox secondary);
constant!(checkbox accent);
constant!(checkbox success);
constant!(checkbox warning);
constant!(checkbox info);
constant!(checkbox error);

// Responsive
constant!(checkbox lg);
constant!(checkbox md);
constant!(checkbox sm);
constant!(checkbox xs);

// https://daisyui.com/components/file-input/
constant!(file input);

// Modifier
constant!(file input bordered);
constant!(file input ghost);

constant!(file input primary);
constant!(file input secondary);
constant!(file input accent);
constant!(file input success);
constant!(file input warning);
constant!(file input info);
constant!(file input error);

// Responsive
constant!(file input lg);
constant!(file input md);
constant!(file input sm);
constant!(file input xs);

// https://daisyui.com/components/radio/
constant!(radio);

// Modifier
constant!(radio primary);
constant!(radio secondary);
constant!(radio accent);
constant!(radio success);
constant!(radio warning);
constant!(radio info);
constant!(radio error);

// Responsive
constant!(radio lg);
constant!(radio md);
constant!(radio sm);
constant!(radio xs);

// https://daisyui.com/components/range/
constant!(range);

// Modifier
constant!(range primary);
constant!(range secondary);
constant!(range accent);
constant!(range success);
constant!(range warning);
constant!(range info);
constant!(range error);

// Responsive
constant!(range lg);
constant!(range md);
constant!(range sm);
constant!(range xs);

// https://daisyui.com/components/rating/
constant!(rating);

// Modifier
constant!(rating half);
constant!(rating hidden);

// Responsive
constant!(rating lg);
constant!(rating md);
constant!(rating sm);
constant!(rating xs);

// https://daisyui.com/components/select/
constant!(select);

// Modifier
constant!(select bordered);
constant!(select ghost);

constant!(select primary);
constant!(select secondary);
constant!(select accent);
constant!(select success);
constant!(select warning);
constant!(select info);
constant!(select error);

// Responsive
constant!(select lg);
constant!(select md);
constant!(select sm);
constant!(select xs);

// https://daisyui.com/components/input/
constant!(input);

// Modifier
constant!(input bordered);
constant!(input ghost);

constant!(input primary);
constant!(input secondary);
constant!(input accent);
constant!(input success);
constant!(input warning);
constant!(input info);
constant!(input error);

// Responsive
constant!(input lg);
constant!(input md);
constant!(input sm);
constant!(input xs);

// https://daisyui.com/components/textarea/
constant!(textarea);

// Modifier
constant!(textarea bordered);
constant!(textarea ghost);

constant!(textarea primary);
constant!(textarea secondary);
constant!(textarea accent);
constant!(textarea success);
constant!(textarea warning);
constant!(textarea info);
constant!(textarea error);

// Responsive
constant!(textarea lg);
constant!(textarea md);
constant!(textarea sm);
constant!(textarea xs);

// https://daisyui.com/components/toggle/
constant!(toggle);

// Modifier
constant!(toggle primary);
constant!(toggle secondary);
constant!(toggle accent);
constant!(toggle success);
constant!(toggle warning);
constant!(toggle info);
constant!(toggle error);

// Responsive
constant!(toggle lg);
constant!(toggle md);
constant!(toggle sm);
constant!(toggle xs);