@cytario/design 8.0.0 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2,17 +2,24 @@ import { ButtonProps as ButtonProps$1, LinkProps as LinkProps$1, ToggleButtonPro
2
2
  export { Key, RouterConfig, RouterProvider, Tab as UnstyledTab, TabList as UnstyledTabList, TabPanel as UnstyledTabPanel, Tabs as UnstyledTabs } from 'react-aria-components';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as React$1 from 'react';
5
- import React__default, { ComponentType, ReactNode, Ref, InputHTMLAttributes } from 'react';
5
+ import React__default, { ComponentType, HTMLAttributes, ReactNode, Ref, InputHTMLAttributes } from 'react';
6
6
  import { LucideIcon, LucideProps } from 'lucide-react';
7
7
 
8
- declare const ColorTeal500 = "#35b7b8";
9
- declare const ColorPurple700 = "#5c2483";
8
+ type LogoProps = {
9
+ /** Override the wordmark fill (defaults to theme-driven --logo-fill) */
10
+ color?: string;
11
+ /** Override the accent fill on the "o" (defaults to theme-driven --logo-highlight) */
12
+ highlightColor?: string;
13
+ scale?: number;
14
+ className?: string;
15
+ };
16
+ declare function Logo({ color, highlightColor, scale, className, }: LogoProps): react_jsx_runtime.JSX.Element;
10
17
 
11
18
  type ButtonSize = "xs" | "sm" | "md" | "lg";
12
19
  type ButtonVariant = "primary" | "secondary" | "destructive" | "success" | "warning" | "info" | "neutral" | "outline" | "ghost";
13
20
 
14
21
  /** Union of every registered icon name. */
15
- type IconName = "AlertCircle" | "AlertTriangle" | "AlignCenter" | "AlignLeft" | "AlignRight" | "Archive" | "ArrowDown" | "ArrowRight" | "ArrowUp" | "ArrowUpRight" | "Ban" | "Bookmark" | "BookmarkCheck" | "Braces" | "Building2" | "Check" | "CheckCircle" | "CheckCircle2" | "ChevronDown" | "ChevronRight" | "ChevronUp" | "Circle" | "CircleDot" | "CircleSlash" | "Clock" | "Cloud" | "Columns2" | "Columns3" | "Copy" | "CreditCard" | "Database" | "Download" | "Edit" | "EllipsisVertical" | "ExternalLink" | "Eye" | "EyeOff" | "File" | "FileSearch" | "FileSpreadsheet" | "FilterX" | "Folder" | "FolderPlus" | "FolderTree" | "Fullscreen" | "Grid2x2" | "Grid3x3" | "Heart" | "Image" | "ImageOff" | "Inbox" | "Info" | "KeyRound" | "Lasso" | "Layers" | "Layers2" | "LayoutDashboard" | "LayoutGrid" | "List" | "ListFilter" | "LogOut" | "Mail" | "MapPin" | "Maximize" | "Microscope" | "Minus" | "MoreVertical" | "Network" | "PanelLeftClose" | "PanelLeftOpen" | "PanelRightClose" | "PanelRightOpen" | "Pencil" | "Plug" | "Plus" | "Power" | "PowerOff" | "RefreshCw" | "RotateCcw" | "RotateCw" | "ScrollText" | "Search" | "SearchX" | "Send" | "Settings" | "Shield" | "ShieldCheck" | "Spline" | "Square" | "SquarePen" | "Star" | "Table" | "Tag" | "Trash2" | "Unplug" | "User" | "UserMinus" | "UserPlus" | "Users" | "UsersRound" | "X" | "XCircle" | "ZoomIn" | "ZoomOut";
22
+ type IconName = "AlertCircle" | "AlertTriangle" | "AlignCenter" | "AlignLeft" | "AlignRight" | "Archive" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "ArrowUpRight" | "Ban" | "Bookmark" | "BookmarkCheck" | "Braces" | "Building2" | "Calendar" | "Check" | "CheckCircle" | "CheckCircle2" | "ChevronDown" | "ChevronRight" | "ChevronUp" | "Circle" | "CircleDot" | "CircleSlash" | "Clock" | "Cloud" | "Columns2" | "Columns3" | "Copy" | "CreditCard" | "Database" | "Download" | "Edit" | "EllipsisVertical" | "ExternalLink" | "Eye" | "EyeOff" | "File" | "FileSearch" | "FileSpreadsheet" | "FilterX" | "Folder" | "FolderPlus" | "FolderTree" | "Fullscreen" | "Github" | "Grid2x2" | "Grid3x3" | "Heart" | "Image" | "ImageOff" | "Inbox" | "Info" | "KeyRound" | "Lasso" | "Layers" | "Layers2" | "LayoutDashboard" | "LayoutGrid" | "Linkedin" | "List" | "ListFilter" | "LogOut" | "Mail" | "MapPin" | "Maximize" | "Menu" | "Microscope" | "Minus" | "MoreVertical" | "Network" | "PanelLeftClose" | "PanelLeftOpen" | "PanelRightClose" | "PanelRightOpen" | "Pencil" | "Plug" | "Plus" | "Power" | "PowerOff" | "RefreshCw" | "RotateCcw" | "RotateCw" | "ScrollText" | "Search" | "SearchX" | "Send" | "Settings" | "Shield" | "ShieldCheck" | "Spline" | "Square" | "SquarePen" | "Star" | "Table" | "Tag" | "Trash2" | "Unplug" | "User" | "UserMinus" | "UserPlus" | "Users" | "UsersRound" | "X" | "XCircle" | "ZoomIn" | "ZoomOut";
16
23
  /**
17
24
  * Allowlist of icons available by name. Keys mirror the Lucide export name so
18
25
  * call sites read `<Icon icon="Search" />`. Add an entry here (and to IconName
@@ -55,6 +62,71 @@ interface SpinnerProps {
55
62
  }
56
63
  declare function Spinner({ size, "aria-label": ariaLabel, className, }: SpinnerProps): react_jsx_runtime.JSX.Element;
57
64
 
65
+ type HeadingLevel = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
66
+ type HeadingSize = HeadingLevel | "hero";
67
+ interface HeadingProps extends React__default.HTMLAttributes<HTMLHeadingElement> {
68
+ as?: HeadingLevel;
69
+ size?: HeadingSize;
70
+ children: React__default.ReactNode;
71
+ }
72
+ declare const Heading: React__default.ForwardRefExoticComponent<HeadingProps & React__default.RefAttributes<HTMLHeadingElement>>;
73
+ /** Convenience: renders `<h1>` with h1 styles (4xl→5xl responsive, bold) */
74
+ declare const H1: React__default.ForwardRefExoticComponent<Omit<HeadingProps, "as"> & React__default.RefAttributes<HTMLHeadingElement>>;
75
+ /** Convenience: renders `<h2>` with h2 styles (2xl→3xl responsive, bold) */
76
+ declare const H2: React__default.ForwardRefExoticComponent<Omit<HeadingProps, "as"> & React__default.RefAttributes<HTMLHeadingElement>>;
77
+ /** Convenience: renders `<h3>` with h3 styles (lg→xl responsive, bold) */
78
+ declare const H3: React__default.ForwardRefExoticComponent<Omit<HeadingProps, "as"> & React__default.RefAttributes<HTMLHeadingElement>>;
79
+ /** Convenience: renders `<h4>` with h4 styles (base→lg responsive, semibold) */
80
+ declare const H4: React__default.ForwardRefExoticComponent<Omit<HeadingProps, "as"> & React__default.RefAttributes<HTMLHeadingElement>>;
81
+ /** Convenience: renders `<h5>` with h5 styles (sm→base responsive, semibold) */
82
+ declare const H5: React__default.ForwardRefExoticComponent<Omit<HeadingProps, "as"> & React__default.RefAttributes<HTMLHeadingElement>>;
83
+ /** Convenience: renders `<h6>` with h6 styles (sm, semibold) */
84
+ declare const H6: React__default.ForwardRefExoticComponent<Omit<HeadingProps, "as"> & React__default.RefAttributes<HTMLHeadingElement>>;
85
+
86
+ interface ProseProps extends HTMLAttributes<HTMLDivElement> {
87
+ /** Content rendered inside the `.prose` container */
88
+ children: ReactNode;
89
+ /** Visual size variant (default "default") */
90
+ size?: "sm" | "default" | "lg" | "xl";
91
+ /** Invert colours for dark backgrounds (default false) */
92
+ invert?: boolean;
93
+ className?: string;
94
+ }
95
+ /**
96
+ * Renders rich-text / long-form content with the Tailwind Typography plugin.
97
+ *
98
+ * Wrap markdown output, static documentation, or any long-form content that
99
+ * contains `<h1>`–`<h6>`, `<p>`, `<ul>`, `<ol>`, `<blockquote>`, `<code>` and
100
+ * similar elements. The wrapper applies the `prose` class family so the
101
+ * content inherits consistent typographic spacing and colour.
102
+ *
103
+ * @example
104
+ * <Prose size="lg">{renderMarkdown(content)}</Prose>
105
+ */
106
+ declare const Prose: React$1.ForwardRefExoticComponent<ProseProps & React$1.RefAttributes<HTMLDivElement>>;
107
+
108
+ type DescriptionSize = "sm" | "md" | "lg" | "xl";
109
+ interface DescriptionProps extends Omit<HTMLAttributes<HTMLParagraphElement>, "children"> {
110
+ /** Content rendered inside the paragraph */
111
+ children: ReactNode;
112
+ /** Visual size variant (default "md") */
113
+ size?: DescriptionSize;
114
+ /** Merge override */
115
+ className?: string;
116
+ }
117
+ /**
118
+ * Renders a single paragraph of muted body copy with responsive sizing.
119
+ *
120
+ * Use for lead text, supporting descriptions, and other non-heading prose.
121
+ * The element is a `<p>` so it participates in normal document flow. Pass
122
+ * `size` to scale the text; pass `className` to override colour, margin, or
123
+ * any other utility.
124
+ *
125
+ * @example
126
+ * <Description size="lg">Supporting copy beneath a heading.</Description>
127
+ */
128
+ declare const Description: React$1.ForwardRefExoticComponent<DescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
129
+
58
130
  interface TooltipProps {
59
131
  /** Tooltip content; `null`/`undefined` disables the tooltip entirely */
60
132
  content: ReactNode;
@@ -282,27 +354,6 @@ interface FieldsetProps {
282
354
  }
283
355
  declare function Fieldset({ legend, children, className }: FieldsetProps): react_jsx_runtime.JSX.Element;
284
356
 
285
- type HeadingLevel = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
286
- type HeadingSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
287
- type HeadingWeight = "semibold" | "bold";
288
- interface HeadingProps {
289
- /** HTML heading element to render */
290
- as?: HeadingLevel;
291
- /** Visual size (defaults to match the `as` level) */
292
- size?: HeadingSize;
293
- /** Font weight (defaults to "semibold") */
294
- weight?: HeadingWeight;
295
- children: React__default.ReactNode;
296
- className?: string;
297
- }
298
- declare function Heading({ as: Tag, size, weight, className, children, }: HeadingProps): react_jsx_runtime.JSX.Element;
299
- /** Convenience: renders `<h1>` at 2xl size with bold weight */
300
- declare function H1(props: Omit<HeadingProps, "as">): react_jsx_runtime.JSX.Element;
301
- /** Convenience: renders `<h2>` at xl size */
302
- declare function H2(props: Omit<HeadingProps, "as">): react_jsx_runtime.JSX.Element;
303
- /** Convenience: renders `<h3>` at lg size */
304
- declare function H3(props: Omit<HeadingProps, "as">): react_jsx_runtime.JSX.Element;
305
-
306
357
  type LinkVariant = "default" | "subtle";
307
358
  interface LinkProps extends Omit<LinkProps$1, "className"> {
308
359
  /** Visual style variant */
@@ -551,42 +602,27 @@ interface SegmentedControlItemProps extends Omit<ToggleButtonProps$1, "className
551
602
  }
552
603
  declare function SegmentedControlItem({ className, ...props }: SegmentedControlItemProps): react_jsx_runtime.JSX.Element;
553
604
 
554
- type BadgeVariant = "neutral" | "purple" | "teal" | "rose" | "slate" | "green" | "amber";
555
- type BadgeSize = "sm" | "md";
556
- interface BadgeProps {
557
- /** Badge text content */
558
- children: React__default.ReactNode;
559
- /** Color variant */
560
- variant?: BadgeVariant;
561
- /** Size preset */
605
+ type BadgeColor = "purple" | "teal" | "rose" | "slate" | "green" | "amber";
606
+ type BadgeSize = "xs" | "sm" | "md" | "lg";
607
+ interface BadgeProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "color"> {
608
+ children?: React__default.ReactNode;
609
+ color?: BadgeColor;
562
610
  size?: BadgeSize;
563
- /** Optional leading icon */
564
611
  icon?: IconValue;
565
- /** Merge override */
566
- className?: string;
567
612
  }
568
- declare function Badge({ children, variant, size, icon, className, }: BadgeProps): react_jsx_runtime.JSX.Element;
613
+ declare function Badge({ children, color, size, icon, className, ...rest }: BadgeProps): react_jsx_runtime.JSX.Element;
569
614
 
570
- type CardPadding = "none" | "sm" | "md" | "lg";
571
615
  interface CardProps {
572
616
  /** Card body content */
573
617
  children: React__default.ReactNode;
574
- /** Optional header content */
618
+ /** Optional header content (rendered with bottom border separator) */
575
619
  header?: React__default.ReactNode;
576
620
  /** Optional footer content (rendered with top border separator) */
577
621
  footer?: React__default.ReactNode;
578
- /** Body padding preset */
579
- padding?: CardPadding;
580
- /** Makes the card a clickable link */
581
- href?: string;
582
- /** Handler for click/press interaction (use instead of href for programmatic navigation) */
583
- onPress?: () => void;
584
- /** Enables hover elevation even without href */
585
- interactive?: boolean;
586
622
  /** Merge override */
587
623
  className?: string;
588
624
  }
589
- declare function Card({ children, header, footer, padding, href, onPress, interactive, className, }: CardProps): react_jsx_runtime.JSX.Element;
625
+ declare function Card({ children, header, footer, className }: CardProps): react_jsx_runtime.JSX.Element;
590
626
 
591
627
  type DeltaFormat = "currency" | "percentage" | "combined";
592
628
  type DeltaMode = "inline" | "pill";
@@ -668,9 +704,11 @@ interface MetricCardProps {
668
704
  }
669
705
  declare function MetricCard({ label, value, secondary, href, size, className, }: MetricCardProps): react_jsx_runtime.JSX.Element;
670
706
 
671
- interface SectionHeaderProps {
672
- /** Section title rendered as an H2 heading */
707
+ interface SectionHeaderProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, "title"> {
708
+ /** Section title rendered as a heading (default H2) */
673
709
  title: string;
710
+ /** Heading level for the title (default "h2") */
711
+ as?: HeadingLevel;
674
712
  /** Optional action elements (buttons, badges, etc.) rendered on the right */
675
713
  children?: React__default.ReactNode;
676
714
  /** Additional CSS classes applied to the outer container */
@@ -680,37 +718,39 @@ interface SectionHeaderProps {
680
718
  * Section header with a title on the left and optional action slots on the right.
681
719
  *
682
720
  * Mirrors the `SectionHeader` pattern from cytario-web's `Container.tsx`.
683
- * The title renders as an `<H2>` heading; any `children` are placed in a
684
- * flex container that aligns to the trailing edge.
721
+ * The title renders as a heading (default `<H2>`); any `children` are
722
+ * placed in a flex container that aligns to the trailing edge.
685
723
  */
686
- declare function SectionHeader({ title, children, className, }: SectionHeaderProps): react_jsx_runtime.JSX.Element;
687
-
688
- declare const colorStyles: {
689
- readonly slate: "bg-badge-slate-bg text-badge-slate-text border-badge-slate-text/20";
690
- readonly purple: string;
691
- readonly teal: string;
692
- readonly rose: string;
693
- readonly green: string;
694
- readonly amber: string;
695
- };
696
- type PillColor = keyof typeof colorStyles;
697
- interface PillProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children" | "color"> {
698
- children?: string;
699
- color?: PillColor;
724
+ declare const SectionHeader: React__default.ForwardRefExoticComponent<SectionHeaderProps & React__default.RefAttributes<HTMLDivElement>>;
725
+
726
+ type DescriptionListLayout = "stacked" | "horizontal";
727
+ interface DescriptionListProps {
728
+ children: React__default.ReactNode;
729
+ /** Layout for all items: "stacked" (label above value) or "horizontal" (side by side) */
730
+ layout?: DescriptionListLayout;
731
+ className?: string;
732
+ }
733
+ interface DescriptionListItemProps {
734
+ label: string;
735
+ children: React__default.ReactNode;
736
+ /** De-emphasize the value text */
737
+ muted?: boolean;
738
+ /** When set, wraps value in a Tooltip showing the full text (useful for truncated ETags etc.) */
739
+ fullValue?: string;
740
+ }
741
+ declare function DescriptionList({ children, layout, className, }: DescriptionListProps): react_jsx_runtime.JSX.Element;
742
+ declare namespace DescriptionList {
743
+ var Item: typeof DescriptionListItem;
700
744
  }
701
- declare function pillColorFromName(name?: string): PillColor;
702
- /** Non-interactive hash-colored label badge. Color is derived from the text unless explicitly set. */
703
- declare function Pill({ children, color, className, ...rest }: PillProps): react_jsx_runtime.JSX.Element;
745
+ declare function DescriptionListItem({ label, children, muted, fullValue, }: DescriptionListItemProps): react_jsx_runtime.JSX.Element;
704
746
 
747
+ declare function pillColorFromName(name?: string): BadgeColor;
705
748
  interface PathPillProps {
706
749
  children: string;
707
- /** Number of trailing segments to show; earlier ones collapse to dots. Defaults to all. */
708
750
  visibleCount?: number;
709
- /** Override per-segment color. Falls back to hash-based `pillColorFromName`. */
710
- colorFn?: (segment: string, index: number) => PillColor;
751
+ colorFn?: (segment: string, index: number) => BadgeColor;
711
752
  className?: string;
712
753
  }
713
- /** Renders a slash-separated path as overlapping, hash-colored pill segments. */
714
754
  declare function PathPill({ children, visibleCount, colorFn, className, }: PathPillProps): react_jsx_runtime.JSX.Element | null;
715
755
 
716
756
  interface FormWizardContextValue {
@@ -754,4 +794,4 @@ interface FormWizardNavProps {
754
794
  }
755
795
  declare function FormWizardNav({ onNext, isSubmitting, submitLabel, }: FormWizardNavProps): react_jsx_runtime.JSX.Element;
756
796
 
757
- export { Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Banner, type BannerProps, type BannerVariant, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonLink, type ButtonLinkProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardPadding, type CardProps, Cell, Checkbox, type CheckboxProps, ColorPurple700, ColorTeal500, Column, type DataTableProps, type DeltaFormat, DeltaIndicator, type DeltaIndicatorProps, type DeltaMode, Dialog, type DialogProps, EmptyState, type EmptyStateProps, Fieldset, type FieldsetProps, FormWizard, type FormWizardContextValue, FormWizardNav, type FormWizardNavProps, FormWizardProgress, type FormWizardProgressProps, type FormWizardProps, H1, H2, H3, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, Icon, IconButton, IconButtonLink, type IconButtonLinkProps, type IconButtonProps, IconButtonToggle, type IconButtonToggleProps, type IconComponent, type IconName, type IconProps, type IconValue, Input, InputPassword, type InputPasswordProps, type InputProps, Label, type LabelProps, Link, type LinkProps, type LinkVariant, Menu, MenuCheckboxItem, type MenuCheckboxItemProps, MenuHeader, type MenuHeaderProps, MenuItem, type MenuItemData, type MenuItemProps, type MenuProps, MenuSection, type MenuSectionProps, MenuSeparator, type MenuSeparatorProps, MetricCard, type MetricCardProps, type MetricCardSize, PathPill, type PathPillProps, Pill, type PillColor, type PillProps, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarVariant, Radio, RadioButton, type RadioButtonProps, RadioGroup, type RadioGroupProps, type RadioProps, Row, SectionHeader, type SectionHeaderProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, type SegmentedControlSelectionMode, type SegmentedControlSize, Select, type SelectItem, type SelectProps, Spinner, type SpinnerProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, TableHeader, type TableSize, Tabs, type TabsProps, type TabsSize, type TabsVariant, type ToastBridge, type ToastContextValue, type ToastData, type ToastPlacement, ToastProvider, type ToastProviderProps, type ToastVariant, ToggleButton, type ToggleButtonProps, type ToggleButtonSize, type ToggleButtonVariant, Tooltip, type TooltipProps, TruncatedText, type TruncatedTextProps, type UseContextMenuProps, type UseContextMenuResult, createToastBridge, iconRegistry, pillColorFromName, useContextMenu, useFormWizard, useToast };
797
+ export { Badge, type BadgeColor, type BadgeProps, type BadgeSize, Banner, type BannerProps, type BannerVariant, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonLink, type ButtonLinkProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, Cell, Checkbox, type CheckboxProps, Column, type DataTableProps, type DeltaFormat, DeltaIndicator, type DeltaIndicatorProps, type DeltaMode, Description, DescriptionList, type DescriptionListItemProps, type DescriptionListLayout, type DescriptionListProps, type DescriptionProps, type DescriptionSize, Dialog, type DialogProps, EmptyState, type EmptyStateProps, Fieldset, type FieldsetProps, FormWizard, type FormWizardContextValue, FormWizardNav, type FormWizardNavProps, FormWizardProgress, type FormWizardProgressProps, type FormWizardProps, H1, H2, H3, H4, H5, H6, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, Icon, IconButton, IconButtonLink, type IconButtonLinkProps, type IconButtonProps, IconButtonToggle, type IconButtonToggleProps, type IconComponent, type IconName, type IconProps, type IconValue, Input, InputPassword, type InputPasswordProps, type InputProps, Label, type LabelProps, Link, type LinkProps, type LinkVariant, Logo, type LogoProps, Menu, MenuCheckboxItem, type MenuCheckboxItemProps, MenuHeader, type MenuHeaderProps, MenuItem, type MenuItemData, type MenuItemProps, type MenuProps, MenuSection, type MenuSectionProps, MenuSeparator, type MenuSeparatorProps, MetricCard, type MetricCardProps, type MetricCardSize, PathPill, type PathPillProps, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarVariant, Prose, type ProseProps, Radio, RadioButton, type RadioButtonProps, RadioGroup, type RadioGroupProps, type RadioProps, Row, SectionHeader, type SectionHeaderProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, type SegmentedControlSelectionMode, type SegmentedControlSize, Select, type SelectItem, type SelectProps, Spinner, type SpinnerProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, TableHeader, type TableSize, Tabs, type TabsProps, type TabsSize, type TabsVariant, type ToastBridge, type ToastContextValue, type ToastData, type ToastPlacement, ToastProvider, type ToastProviderProps, type ToastVariant, ToggleButton, type ToggleButtonProps, type ToggleButtonSize, type ToggleButtonVariant, Tooltip, type TooltipProps, TruncatedText, type TruncatedTextProps, type UseContextMenuProps, type UseContextMenuResult, createToastBridge, iconRegistry, pillColorFromName, useContextMenu, useFormWizard, useToast };