import * as React from "react"; import { Story, Meta } from "@storybook/react"; import { SelectInput } from "../../index"; import { InputStoryWrapper } from "../../../decorators/inputStoryWrapper"; import { SystemIcons } from "../../icons/dist/system-icons-enum"; import { systemIconLabels, systemIcons } from "../../storybookHelpers/controlConstants"; const defaultOptions = [ { value: "exosphere", label: "Exosphere" }, { value: "thermosphere", label: "Thermosphere" }, { value: "mesosphere", label: "Mesosphere" }, { value: "stratosphere", label: "Stratosphere" }, { value: "troposphere", label: "Troposphere" }, { value: "really-long", label: "A really long label just to test icon overlapping text" }, { value: "disabled", label: "Can't touch this", disabled: true } ]; export default { title: "Forms/SelectInput", decorators: [Story => {Story()}], component: SelectInput, argTypes: { iconStart: { options: systemIcons, mapping: systemIconLabels }, inputLabel: { control: { type: "text" } }, hintContent: { control: { type: "text" } } }, args: { appearance: "standard", inputLabel: "Default Input Label", iconStart: SystemIcons.TriangleDown, options: defaultOptions, errors: ["Example Error Message", "Other Error Message"] } } as Meta; const Template: Story = args => ( ); export const Default = Template.bind({});