Skip to content

Commit

Permalink
chore: really make storybook build work again...
Browse files Browse the repository at this point in the history
  • Loading branch information
daenub authored Jul 2, 2024
1 parent 2467668 commit 93cad15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/input/stories/input.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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) },
},
Expand Down Expand Up @@ -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,
}
Expand Down

0 comments on commit 93cad15

Please sign in to comment.