react-ui89
Version:
A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
16 lines (15 loc) • 731 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
import { Ui89InputCheckList } from "./Ui89InputCheckList";
declare const meta: Meta<typeof Ui89InputCheckList>;
export default meta;
type Story = StoryObj<typeof meta>;
export declare const NoneSelected: Story;
export declare const OneSelected: Story;
export declare const LongText: Story;
export declare const RenderOption: Story;
export declare const CallsOnChangeWhenClickingCheckbox: Story;
export declare const CallsOnChangeWhenClickingLabel: Story;
export declare const CallsOnSelectWhenSelectingAnOption: Story;
export declare const CallsOnDeselectWhenSelectingAnOption: Story;
export declare const MaxHeightPx: Story;
export declare const MaxHeightPercentage: Story;