aboutsummaryrefslogtreecommitdiffstats
path: root/uidev
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-03-19 16:10:26 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-03-19 16:10:26 +0100
commitf4bfe575b637e58bb8ca6fd72b104bdd5dbc318d (patch)
tree2ffa5f0da2d3c341e04fba9fd9d8a69d7010c13a /uidev
parentMerge pull request #1338 from meetfranz/chore/app-feature-helpers (diff)
parentBump version to 1.0.11 (diff)
downloadferdium-app-f4bfe575b637e58bb8ca6fd72b104bdd5dbc318d.tar.gz
ferdium-app-f4bfe575b637e58bb8ca6fd72b104bdd5dbc318d.tar.zst
ferdium-app-f4bfe575b637e58bb8ca6fd72b104bdd5dbc318d.zip
Merge branch 'release/5.0.1-beta.1' into develop
Diffstat (limited to 'uidev')
-rw-r--r--uidev/src/stories/input.stories.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/uidev/src/stories/input.stories.tsx b/uidev/src/stories/input.stories.tsx
index c522a10c7..af5e791d0 100644
--- a/uidev/src/stories/input.stories.tsx
+++ b/uidev/src/stories/input.stories.tsx
@@ -66,6 +66,14 @@ storiesOf('Input')
66 value="faulty input" 66 value="faulty input"
67 error="This is a generic error message." 67 error="This is a generic error message."
68 /> 68 />
69 ))
70 .add('Type number with min & max', () => (
71 <Input
72 {...defaultProps()}
73 type="number"
74 min={1}
75 max={10}
76 />
69 )); 77 ));
70 78
71storiesOf('Password') 79storiesOf('Password')