From c75b9545d1a843e30f0b8921795051aaee042ce6 Mon Sep 17 00:00:00 2001 From: Marcos Gil Date: Wed, 2 Oct 2019 18:55:39 +0200 Subject: [PATCH] docs(input): add labels to email and iban inputs --- packages/input-email/stories/index.stories.js | 5 +++-- packages/input-iban/stories/index.stories.js | 15 ++++++++++++--- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/packages/input-email/stories/index.stories.js b/packages/input-email/stories/index.stories.js index 2cf9e9741..4c02fc277 100644 --- a/packages/input-email/stories/index.stories.js +++ b/packages/input-email/stories/index.stories.js @@ -8,13 +8,13 @@ storiesOf('Forms|Input Email', module) .add( 'Default', () => html` - + `, ) .add( 'Faulty prefilled', () => html` - + `, ) .add('Use own validator', () => { @@ -40,6 +40,7 @@ storiesOf('Forms|Input Email', module) `; }); diff --git a/packages/input-iban/stories/index.stories.js b/packages/input-iban/stories/index.stories.js index abad3f8f4..b113f2840 100644 --- a/packages/input-iban/stories/index.stories.js +++ b/packages/input-iban/stories/index.stories.js @@ -7,19 +7,27 @@ storiesOf('Forms|Input IBAN', module) .add( 'Default', () => html` - + `, ) .add( 'Prefilled', () => html` - + `, ) .add( 'Faulty prefilled', () => html` - + `, ) .add( @@ -29,6 +37,7 @@ storiesOf('Forms|Input IBAN', module) .modelValue=${'DE89370400440532013000'} .errorValidators=${[isCountryIBANValidator('NL')]} name="iban" + label="Label" > `, );