UNPKG

@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

22 lines (21 loc) 753 B
import { Meta, StoryObj } from '@storybook/web-components'; interface ProgressArgs { 'custom-class'?: string; indeterminate: boolean; label?: string; max?: number; value: number; variant?: 'default' | 'radial'; } declare const meta: Meta<ProgressArgs>; export default meta; type Story = StoryObj<ProgressArgs>; export declare const Default: Story; export declare const Indeterminate: Story; export declare const SizeVariations: Story; export declare const LabelTextColor: Story; export declare const CustomBarColor: Story; export declare const CustomBackgroundColor: Story; export declare const RadialWithSlottedContent: Story; export declare const RadialWithCustomSizeAndThickness: Story; export declare const Migration: Story;