|
7 | 7 | <pf-form component="div" horizontal class="pf-v6-u-mt-lg"> |
8 | 8 | <pf-form-group label="Direction"> |
9 | 9 | <pf-form-select v-model="direction"> |
10 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 10 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
11 | 11 | <pf-form-select-option value="row">row</pf-form-select-option> |
12 | 12 | <pf-form-select-option value="row-reverse">row-reverse</pf-form-select-option> |
13 | 13 | <pf-form-select-option value="column">column</pf-form-select-option> |
|
17 | 17 |
|
18 | 18 | <pf-form-group label="Display"> |
19 | 19 | <pf-form-select v-model="display"> |
20 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 20 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
21 | 21 | <pf-form-select-option value="flex">flex</pf-form-select-option> |
22 | 22 | <pf-form-select-option value="inline-flex">inline-flex</pf-form-select-option> |
23 | 23 | </pf-form-select> |
24 | 24 | </pf-form-group> |
25 | 25 |
|
26 | 26 | <pf-form-group label="Justify Content"> |
27 | 27 | <pf-form-select v-model="justifyContent"> |
28 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 28 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
29 | 29 | <pf-form-select-option value="flex-start">flex-start</pf-form-select-option> |
30 | 30 | <pf-form-select-option value="flex-end">flex-end</pf-form-select-option> |
31 | 31 | <pf-form-select-option value="center">center</pf-form-select-option> |
|
37 | 37 |
|
38 | 38 | <pf-form-group label="Align Items"> |
39 | 39 | <pf-form-select v-model="alignItems"> |
40 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 40 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
41 | 41 | <pf-form-select-option value="flex-start">flex-start</pf-form-select-option> |
42 | 42 | <pf-form-select-option value="flex-end">flex-end</pf-form-select-option> |
43 | 43 | <pf-form-select-option value="center">center</pf-form-select-option> |
|
48 | 48 |
|
49 | 49 | <pf-form-group label="Align Content"> |
50 | 50 | <pf-form-select v-model="alignContent"> |
51 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 51 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
52 | 52 | <pf-form-select-option value="flex-start">flex-start</pf-form-select-option> |
53 | 53 | <pf-form-select-option value="flex-end">flex-end</pf-form-select-option> |
54 | 54 | <pf-form-select-option value="center">center</pf-form-select-option> |
|
60 | 60 |
|
61 | 61 | <pf-form-group label="Flex Wrap"> |
62 | 62 | <pf-form-select v-model="flexWrap"> |
63 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 63 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
64 | 64 | <pf-form-select-option value="nowrap">nowrap</pf-form-select-option> |
65 | 65 | <pf-form-select-option value="wrap">wrap</pf-form-select-option> |
66 | 66 | <pf-form-select-option value="wrap-reverse">wrap-reverse</pf-form-select-option> |
|
69 | 69 |
|
70 | 70 | <pf-form-group label="Space Items"> |
71 | 71 | <pf-form-select v-model="spaceItems"> |
72 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 72 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
73 | 73 | <pf-form-select-option value="none">none</pf-form-select-option> |
74 | 74 | <pf-form-select-option value="xs">xs</pf-form-select-option> |
75 | 75 | <pf-form-select-option value="sm">sm</pf-form-select-option> |
|
84 | 84 |
|
85 | 85 | <pf-form-group label="Gap"> |
86 | 86 | <pf-form-select v-model="gap"> |
87 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 87 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
88 | 88 | <pf-form-select-option value="none">none</pf-form-select-option> |
89 | 89 | <pf-form-select-option value="xs">xs</pf-form-select-option> |
90 | 90 | <pf-form-select-option value="sm">sm</pf-form-select-option> |
|
99 | 99 |
|
100 | 100 | <pf-form-group label="Row Gap"> |
101 | 101 | <pf-form-select v-model="rowGap"> |
102 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 102 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
103 | 103 | <pf-form-select-option value="none">none</pf-form-select-option> |
104 | 104 | <pf-form-select-option value="xs">xs</pf-form-select-option> |
105 | 105 | <pf-form-select-option value="sm">sm</pf-form-select-option> |
|
114 | 114 |
|
115 | 115 | <pf-form-group label="Column Gap"> |
116 | 116 | <pf-form-select v-model="columnGap"> |
117 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 117 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
118 | 118 | <pf-form-select-option value="none">none</pf-form-select-option> |
119 | 119 | <pf-form-select-option value="xs">xs</pf-form-select-option> |
120 | 120 | <pf-form-select-option value="sm">sm</pf-form-select-option> |
|
141 | 141 | <pf-form component="div" horizontal class="pf-v6-u-mt-lg"> |
142 | 142 | <pf-form-group label="Align"> |
143 | 143 | <pf-form-select v-model="item.align"> |
144 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 144 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
145 | 145 | <pf-form-select-option value="left">left</pf-form-select-option> |
146 | 146 | <pf-form-select-option value="right">right</pf-form-select-option> |
147 | 147 | </pf-form-select> |
148 | 148 | </pf-form-group> |
149 | 149 |
|
150 | 150 | <pf-form-group label="Align Self"> |
151 | 151 | <pf-form-select v-model="item.alignSelf"> |
152 | | - <pf-form-select-option value="">default</pf-form-select-option> |
| 152 | + <pf-form-select-option>default</pf-form-select-option> |
153 | 153 | <pf-form-select-option value="auto">auto</pf-form-select-option> |
154 | 154 | <pf-form-select-option value="flex-start">flex-start</pf-form-select-option> |
155 | 155 | <pf-form-select-option value="flex-end">flex-end</pf-form-select-option> |
|
172 | 172 |
|
173 | 173 | <pf-form-group label="Spacer"> |
174 | 174 | <pf-form-select v-model="item.spacer"> |
175 | | - <pf-form-select-option value="">[undefined]</pf-form-select-option> |
| 175 | + <pf-form-select-option>[undefined]</pf-form-select-option> |
176 | 176 | <pf-form-select-option value="none">none</pf-form-select-option> |
177 | 177 | <pf-form-select-option value="xs">xs</pf-form-select-option> |
178 | 178 | <pf-form-select-option value="sm">sm</pf-form-select-option> |
|
0 commit comments