UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

14 lines (13 loc) 615 B
import type { Meta, StoryObj } from "@storybook/react"; import { Ui89InputSelectMultiCheck } from "./Ui89InputSelectMultiCheck"; declare const meta: Meta<typeof Ui89InputSelectMultiCheck>; export default meta; type Story = StoryObj<typeof meta>; export declare const NoneSelected: Story; export declare const OneSelected: Story; export declare const MultipleSelected: Story; export declare const CustomDisplayValue: Story; export declare const OpensPopoverAndSelects: Story; export declare const With1000Options: Story; export declare const Search: Story; export declare const ClearsSearchAfterOpeningAgain: Story;