Skip to content

Commit 142fe91

Browse files
fix: update storybook
1 parent 2863386 commit 142fe91

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/stories/Picker.stories.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const Default = Template.bind({});
3131
Default.args = {
3232
label: 'Default picker',
3333
name: 'Default',
34+
hintText: 'Default hint text',
3435
items: [
3536
{
3637
label: 'Orange',
@@ -48,6 +49,7 @@ PickerWithValue.args = {
4849
label: 'Picker with defined value',
4950
name: 'Picker with defined value',
5051
value: 'apple',
52+
hintText: 'Picker with hint text',
5153
items: [
5254
{
5355
label: 'Orange',
@@ -64,6 +66,7 @@ const ErrorStory = Template.bind({});
6466
ErrorStory.args = {
6567
label: 'Picker with error',
6668
name: 'PickerWithError',
69+
hintText: 'Picker hint text',
6770
errorText: 'This field has an error.',
6871
items: [
6972
{
@@ -81,7 +84,9 @@ const Disabled = Template.bind({});
8184
Disabled.args = {
8285
label: 'Picker disabled',
8386
name: 'Disabled',
87+
value: 'orange',
8488
isDisabled: true,
89+
hintText: 'Picker hint text',
8590
items: [
8691
{
8792
label: 'Orange',

0 commit comments

Comments
 (0)