@trimble-oss/moduswebcomponents
Version:
Modus Web Components is a modern, accessible UI library built with Stencil JS that provides reusable web components following Trimble's Modus design system. This updated version focuses on improved flexibility, enhanced theming options, comprehensive cust
21 lines (20 loc) • 589 B
TypeScript
import { Meta, StoryObj } from '@storybook/web-components';
import { ModusSize } from '../types';
interface SwitchArgs {
'custom-class'?: string;
disabled?: boolean;
indeterminate?: boolean;
'input-id'?: string;
'input-tab-index'?: number;
label?: string;
name?: string;
required?: boolean;
size?: ModusSize | 'xs';
value: boolean;
}
declare const meta: Meta<SwitchArgs>;
export default meta;
type Story = StoryObj<SwitchArgs>;
export declare const Default: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;