@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
19 lines (18 loc) • 631 B
TypeScript
import { Meta, StoryObj } from '@storybook/web-components';
interface CardArgs {
'background-figure'?: boolean;
bordered?: boolean;
'custom-class'?: string;
layout?: 'vertical' | 'horizontal';
padding?: 'normal' | 'compact';
}
declare const meta: Meta<CardArgs>;
export default meta;
type Story = StoryObj<CardArgs>;
export declare const Default: Story;
export declare const SimpleCard: Story;
export declare const SlotsLayout: Story;
export declare const ComplexCard: Story;
export declare const HorizontalImage: Story;
export declare const BackgroundFigureImage: Story;
export declare const Migration: Story;