dioxus_daisyui/
display.rs

1use crate::ext::*;
2
3// https://daisyui.com/components/accordion/
4// use same style as the collapse component
5
6// https://daisyui.com/components/avatar/
7constant!(avatar);
8constant!(avatar group);
9
10// Modifier
11constant!(online);
12constant!(offline);
13constant!(placeholder);
14
15// https://daisyui.com/components/badge/
16constant!(badge);
17
18// Modifier
19constant!(badge neutral);
20constant!(badge primary);
21constant!(badge secondary);
22constant!(badge accent);
23constant!(badge ghost);
24constant!(badge info);
25constant!(badge success);
26constant!(badge warning);
27constant!(badge error);
28constant!(badge outline);
29
30// Responsive
31constant!(badge lg);
32constant!(badge md);
33constant!(badge sm);
34constant!(badge xs);
35
36// https://daisyui.com/components/card/
37constant!(card);
38constant!(card title);
39constant!(card body);
40constant!(card actions);
41
42// Modifier
43constant!(card bordered);
44constant!(image full);
45
46// Responsive
47constant!(card normal);
48constant!(card compact);
49constant!(card side);
50
51// https://daisyui.com/components/carousel/
52constant!(carousel);
53constant!(carousel item);
54
55// Modifier
56constant!(carousel start);
57constant!(carousel center);
58constant!(carousel end);
59constant!(carousel vertical);
60
61// https://daisyui.com/components/chat/
62constant!(chat);
63
64constant!(chat image);
65constant!(chat header);
66constant!(chat footer);
67constant!(chat bubble);
68
69// Modifier
70constant!(chat start);
71constant!(chat end);
72
73constant!(chat bubble primary);
74constant!(chat bubble secondary);
75constant!(chat bubble accent);
76constant!(chat bubble info);
77constant!(chat bubble success);
78constant!(chat bubble warning);
79constant!(chat bubble error);
80
81// https://daisyui.com/components/collapse/
82// constant!(collapse);
83constant!(collapse title);
84constant!(collapse content);
85
86// Modifier
87constant!(collapse arrow);
88constant!(collapse plus);
89constant!(collapse open);
90constant!(collapse close);
91
92// https://daisyui.com/components/countdown/
93constant!(countdown);
94
95// https://daisyui.com/components/diff/
96constant!(diff);
97constant!(diff item 1);
98constant!(diff item 2);
99constant!(diff resizer);
100
101
102// https://daisyui.com/components/kbd/
103constant!(kbd);
104
105// Responsive
106constant!(kbd lg);
107constant!(kbd md);
108constant!(kbd sm);
109constant!(kbd xs);
110
111// https://daisyui.com/components/stat/
112constant!(stats);
113constant!(stat);
114constant!(stat title);
115constant!(stat value);
116constant!(stat desc);
117constant!(stat figure);
118constant!(stat actions);
119
120// Modifier
121constant!(stats horizontal);
122constant!(stats vertical);
123
124// https://daisyui.com/components/table/
125// constant!(table);
126
127// Modifier
128constant!(table zebra);
129constant!(table pin rows);
130constant!(table pin cols);
131
132// Responsive
133constant!(table xs);
134constant!(table sm);
135constant!(table md);
136constant!(table lg);
137
138// https://daisyui.com/components/timeline/
139constant!(timeline);
140constant!(timeline start);
141constant!(timeline middle);
142constant!(timeline end);
143
144// Modifier
145constant!(timeline snap icon);
146constant!(timeline box);
147
148// Responsive
149constant!(timeline compact);
150constant!(timeline vertical);
151constant!(timeline horizontal);