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;
171171DefaultGroup . tags = [ "!dev" ] ;
172172DefaultGroup . parameters = {
173173 chromatic : { disableSnapshot : true } ,
174+ docs : {
175+ story : {
176+ height : "360px" ,
177+ } ,
178+ } ,
174179} ;
175180
176181export const QuietGroup = VariantGroup . bind ( { } ) ;
@@ -182,6 +187,11 @@ QuietGroup.args = {
182187QuietGroup . tags = [ "!dev" ] ;
183188QuietGroup . parameters = {
184189 chromatic : { disableSnapshot : true } ,
190+ docs : {
191+ story : {
192+ height : "360px" ,
193+ } ,
194+ } ,
185195} ;
186196
187197/**
Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ import { Template } from "./template.js";
44export const ComboBoxGroup = Variants ( {
55 Template,
66 sizeDirection : "row" ,
7- wrapperStyles : {
8- "align-items" : "flex-start" ,
9- } ,
107 testData : [
118 {
129 testHeading : "Default" ,
@@ -20,11 +17,17 @@ export const ComboBoxGroup = Variants({
2017 {
2118 testHeading : "Open" ,
2219 isOpen : true ,
20+ wrapperStyles : {
21+ "min-block-size" : "250px" ,
22+ } ,
2323 } ,
2424 {
2525 testHeading : "Quiet + open" ,
2626 isQuiet : true ,
2727 isOpen : true ,
28+ wrapperStyles : {
29+ "min-block-size" : "250px" ,
30+ } ,
2831 } ,
2932 {
3033 testHeading : "With field label top" ,
You can’t perform that action at this time.
0 commit comments