File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
components/combobox/stories Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,11 @@ DefaultGroup.args = Default.args;
171
171
DefaultGroup . tags = [ "!dev" ] ;
172
172
DefaultGroup . parameters = {
173
173
chromatic : { disableSnapshot : true } ,
174
+ docs : {
175
+ story : {
176
+ height : "360px" ,
177
+ } ,
178
+ } ,
174
179
} ;
175
180
176
181
export const QuietGroup = VariantGroup . bind ( { } ) ;
@@ -182,6 +187,11 @@ QuietGroup.args = {
182
187
QuietGroup . tags = [ "!dev" ] ;
183
188
QuietGroup . parameters = {
184
189
chromatic : { disableSnapshot : true } ,
190
+ docs : {
191
+ story : {
192
+ height : "360px" ,
193
+ } ,
194
+ } ,
185
195
} ;
186
196
187
197
/**
Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ import { Template } from "./template.js";
4
4
export const ComboBoxGroup = Variants ( {
5
5
Template,
6
6
sizeDirection : "row" ,
7
- wrapperStyles : {
8
- "align-items" : "flex-start" ,
9
- } ,
10
7
testData : [
11
8
{
12
9
testHeading : "Default" ,
@@ -20,11 +17,17 @@ export const ComboBoxGroup = Variants({
20
17
{
21
18
testHeading : "Open" ,
22
19
isOpen : true ,
20
+ wrapperStyles : {
21
+ "min-block-size" : "250px" ,
22
+ } ,
23
23
} ,
24
24
{
25
25
testHeading : "Quiet + open" ,
26
26
isQuiet : true ,
27
27
isOpen : true ,
28
+ wrapperStyles : {
29
+ "min-block-size" : "250px" ,
30
+ } ,
28
31
} ,
29
32
{
30
33
testHeading : "With field label top" ,
You can’t perform that action at this time.
0 commit comments