Skip to content

Commit 9623eae

Browse files
committed
chore: Ensure that undefined gets passed correctly from Storybook for a couple of TextField props
1 parent 301d097 commit 9623eae

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/text-field/text-field.stories.mdx

+10
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,16 @@ export function InteractivePropsStory({
130130
control: { type: 'boolean' },
131131
defaultValue: false,
132132
},
133+
characterCountPosition: {
134+
options: [undefined, 'hidden', 'inline', 'below'],
135+
control: { type: 'inline-radio' },
136+
defaultValue: undefined,
137+
},
138+
endSlotPosition: {
139+
options: [undefined, 'bottom', 'fullHeight'],
140+
control: { type: 'inline-radio' },
141+
defaultValue: undefined,
142+
},
133143
}}
134144
>
135145
{InteractivePropsStory.bind({})}

0 commit comments

Comments
 (0)