dioxus_tailwindcss/
flex.rs1use crate::ext::*;
2
3constant!(basis auto);
5size_0_to_96!(basis);
6fraction_2_to_6!(basis);
7fraction_12!(basis);
8constant!(basis full);
9
10constant!(flex row);
12constant!(flex row reverse);
13constant!(flex col);
14constant!(flex col reverse);
15
16constant!(flex wrap);
18constant!(flex wrap reverse);
19constant!(flex nowrap);
20
21constant!(flex 1);
23constant!(flex auto);
24constant!(flex initial);
25constant!(flex none);
26
27any!(flex);
28
29constant!(grow);
31constant!(grow 0);
32
33any!(grow);
34
35constant!(shrink);
37constant!(shrink 0);
38
39any!(shrink);
40
41_1_to_12!(order);
43constant!(order first);
44constant!(order last);
45constant!(order none);
46
47any!(order);
48
49_1_to_12!(grid cols);
51constant!(grid cols none);
52constant!(grid cols subgrid);
53
54any!(grid cols);
55
56constant!(col auto);
58
59_1_to_12!(col span);
60constant!(col span full);
61
62_1_to_13!(col start);
63constant!(col start auto);
64
65_1_to_13!(col end);
66constant!(col end auto);
67
68any!(col);
69any!(col start);
70any!(col end);
71
72_1_to_6!(grid rows);
74constant!(grid rows none);
75constant!(grid rows subgrid);
76
77any!(grid rows);
78
79constant!(row auto);
81_1_to_12!(row span);
82constant!(row span full);
83
84_1_to_13!(row start);
85constant!(row start auto);
86
87_1_to_13!(row end);
88constant!(row end auto);
89
90any!(row);
91
92any!(row start);
93
94any!(row end);
95
96constant!(grid flow row);
98constant!(grid flow col);
99constant!(grid flow dense);
100constant!(grid flow row dense);
101constant!(grid flow col dense);
102
103constant!(auto cols auto);
105constant!(auto cols min);
106constant!(auto cols max);
107constant!(auto cols fr);
108
109any!(auto cols);
110
111constant!(auto rows auto);
113constant!(auto rows min);
114constant!(auto rows max);
115constant!(auto rows fr);
116
117any!(auto rows);
118
119size_0_to_96!(gap);
121size_0_to_96!(gap x);
122size_0_to_96!(gap y);
123
124constant!(justify normal);
126constant!(justify start);
127constant!(justify end);
128constant!(justify center);
129constant!(justify between);
130constant!(justify around);
131constant!(justify evenly);
132constant!(justify stretch);
133
134constant!(justify items start);
136constant!(justify items end);
137constant!(justify items center);
138constant!(justify items stretch);
139
140constant!(justify self auto);
142constant!(justify self start);
143constant!(justify self end);
144constant!(justify self center);
145constant!(justify self stretch);
146
147constant!(content normal);
149constant!(content center);
150constant!(content start);
151constant!(content end);
152constant!(content between);
153constant!(content around);
154constant!(content evenly);
155constant!(content baseline);
156constant!(content stretch);
157
158constant!(items start);
160constant!(items end);
161constant!(items center);
162constant!(items baseline);
163constant!(items stretch);
164
165constant!(self auto);
167constant!(self start);
168constant!(self end);
169constant!(self center);
170constant!(self stretch);
171constant!(self baseline);
172
173constant!(place content center);
175constant!(place content start);
176constant!(place content end);
177constant!(place content between);
178constant!(place content around);
179constant!(place content evenly);
180constant!(place content baseline);
181constant!(place content stretch);
182
183constant!(place items start);
185constant!(place items end);
186constant!(place items center);
187constant!(place items baseline);
188constant!(place items stretch);
189
190constant!(place self auto);
192constant!(place self start);
193constant!(place self end);
194constant!(place self center);
195constant!(place self stretch);
196