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

21 lines (20 loc) 798 B
import { Meta, StoryObj } from '@storybook/web-components'; import { Orientation } from '../types'; interface ButtonGroupArgs { variant: 'borderless' | 'filled' | 'outlined'; color: 'primary' | 'secondary' | 'tertiary' | 'warning' | 'danger' | 'neutral'; disabled: boolean; orientation: Orientation; 'selection-type': 'default' | 'single' | 'multiple'; } declare const meta: Meta<ButtonGroupArgs>; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Vertical: Story; export declare const SplitButton: Story; export declare const SingleSelection: Story; export declare const MultipleSelection: Story; export declare const SelectionEvent: Story; export declare const ShadowDomParent: Story; export declare const Migration: Story;