From 93cad159e0aaf0574495cd54923681af715fc921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20B=C3=BCschlen?= Date: Tue, 2 Jul 2024 14:02:10 +0200 Subject: [PATCH] chore: really make storybook build work again... --- src/components/input/stories/input.stories.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/input/stories/input.stories.js b/src/components/input/stories/input.stories.js index e1ae890b..37eaaa7a 100644 --- a/src/components/input/stories/input.stories.js +++ b/src/components/input/stories/input.stories.js @@ -3,7 +3,7 @@ import { ifDefined } from "lit/directives/if-defined.js" import "../leu-input.js" -import { SIZE_TYPES } from "../Input.js" +import { SIZES } from "../Input.js" import { paths as iconPaths } from "../../icon/paths.js" export default { @@ -15,7 +15,7 @@ export default { control: { type: "select", }, - options: Object.values(SIZE_TYPES), + options: Object.values(SIZES), }, icon: { control: "select", options: Object.keys(iconPaths) }, }, @@ -165,7 +165,7 @@ export const Search = Template.bind({}) Search.args = { label: "Suchen", clearable: true, - size: SIZE_TYPES.SMALL, + size: SIZES.SMALL, icon: "search", novalidate: true, }