@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
29 lines (28 loc) • 940 B
TypeScript
import { Meta, StoryObj } from '@storybook/web-components';
import { IInputFeedbackProp, ModusSize, WeekStartDay } from '../types';
interface DateArgs {
bordered?: boolean;
'custom-class'?: string;
disabled?: boolean;
feedback?: IInputFeedbackProp;
format?: 'yyyy-mm-dd' | 'dd-mm-yyyy' | 'mm-dd-yyyy' | 'yyyy/mm/dd' | 'dd/mm/yyyy' | 'mm/dd/yyyy' | 'MMM DD, YYYY';
'input-id'?: string;
'input-tab-index'?: number;
label?: string;
max?: string;
min?: string;
name?: string;
'read-only'?: boolean;
required?: boolean;
'show-week-numbers'?: boolean;
size?: ModusSize;
value: string;
'week-start-day'?: WeekStartDay;
}
declare const meta: Meta<DateArgs>;
export default meta;
type Story = StoryObj<DateArgs>;
export declare const Default: Story;
export declare const WithErrorFeedback: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;