@cytario/design 1.13.1 → 1.15.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
@@ -117,8 +117,10 @@ interface SelectProps extends Omit<SelectProps$1<SelectItem>, "children"> {
117
117
  placeholder?: string;
118
118
  /** Error message displayed below the trigger */
119
119
  errorMessage?: string;
120
+ /** When true, visually hides the label (remains accessible to screen readers). Useful when Select is used inside a Field that already renders a visible label. */
121
+ hideLabel?: boolean;
120
122
  }
121
- declare function Select({ label, items, placeholder, errorMessage, isDisabled, isRequired, className, ...props }: SelectProps): react_jsx_runtime.JSX.Element;
123
+ declare function Select({ label, items, placeholder, errorMessage, hideLabel, isDisabled, isRequired, className, ...props }: SelectProps): react_jsx_runtime.JSX.Element;
122
124
 
123
125
  type TableSize = "compact" | "comfortable";
124
126
  interface DataTableProps extends TableProps {
@@ -494,6 +496,41 @@ interface SegmentedControlItemProps extends Omit<ToggleButtonProps$1, "className
494
496
  }
495
497
  declare function SegmentedControlItem({ className, ...props }: SegmentedControlItemProps): react_jsx_runtime.JSX.Element;
496
498
 
499
+ declare function getFileIcon(type: "directory" | "file", extension?: string): LucideIcon;
500
+ declare function getTypeLabel(type: "directory" | "file", extension?: string): string;
501
+ declare function FileIcon({ type, extension, size, }: {
502
+ type: "directory" | "file";
503
+ extension?: string;
504
+ size?: number;
505
+ }): react_jsx_runtime.JSX.Element;
506
+ interface FileCardProps {
507
+ /** File or folder name */
508
+ name: string;
509
+ /** Whether this is a directory or file */
510
+ type: "directory" | "file";
511
+ /** Human-readable file size (e.g., "12.3 GB") */
512
+ size?: string;
513
+ /** Last modified date/time */
514
+ modified?: string;
515
+ /** File extension (e.g., "ome.tif", "csv") */
516
+ extension?: string;
517
+ /** Whether a thumbnail preview is available */
518
+ hasPreview?: boolean;
519
+ /** Compact mode (smaller card, square aspect, minimal metadata) */
520
+ compact?: boolean;
521
+ /** Custom thumbnail content (e.g., an image preview) */
522
+ children?: React__default.ReactNode;
523
+ /** Info button handler */
524
+ onInfo?: () => void;
525
+ /** Navigation target — clicking the card navigates here */
526
+ href?: string;
527
+ /** Handler for click/press interaction (use instead of href for programmatic navigation) */
528
+ onPress?: () => void;
529
+ /** Additional CSS classes */
530
+ className?: string;
531
+ }
532
+ declare function FileCard({ name, type, size, extension, compact, children, onInfo, href, onPress, className, }: FileCardProps): react_jsx_runtime.JSX.Element;
533
+
497
534
  interface StorageConnectionCardProps {
498
535
  /** Display name for the connection */
499
536
  name: string;
@@ -511,12 +548,14 @@ interface StorageConnectionCardProps {
511
548
  children?: React__default.ReactNode;
512
549
  /** Navigation target — clicking the card navigates here */
513
550
  href?: string;
551
+ /** Handler for click/press interaction (use instead of href for programmatic navigation) */
552
+ onPress?: () => void;
514
553
  /** Info button handler */
515
554
  onInfo?: () => void;
516
555
  /** Additional CSS classes */
517
556
  className?: string;
518
557
  }
519
- declare function StorageConnectionCard({ name, provider, region, status, errorMessage, imageCount, children, href, onInfo, className, }: StorageConnectionCardProps): react_jsx_runtime.JSX.Element;
558
+ declare function StorageConnectionCard({ name, provider, region, status, errorMessage, imageCount, children, href, onPress, onInfo, className, }: StorageConnectionCardProps): react_jsx_runtime.JSX.Element;
520
559
 
521
560
  type BadgeVariant = "neutral" | "purple" | "teal" | "rose" | "slate" | "green" | "amber";
522
561
  type BadgeSize = "sm" | "md";
@@ -546,12 +585,14 @@ interface CardProps {
546
585
  padding?: CardPadding;
547
586
  /** Makes the card a clickable link */
548
587
  href?: string;
588
+ /** Handler for click/press interaction (use instead of href for programmatic navigation) */
589
+ onPress?: () => void;
549
590
  /** Enables hover elevation even without href */
550
591
  interactive?: boolean;
551
592
  /** Merge override */
552
593
  className?: string;
553
594
  }
554
- declare function Card({ children, header, footer, padding, href, interactive, className, }: CardProps): react_jsx_runtime.JSX.Element;
595
+ declare function Card({ children, header, footer, padding, href, onPress, interactive, className, }: CardProps): react_jsx_runtime.JSX.Element;
555
596
 
556
597
  type DeltaFormat = "currency" | "percentage" | "combined";
557
598
  type DeltaMode = "inline" | "pill";
@@ -633,6 +674,125 @@ interface MetricCardProps {
633
674
  }
634
675
  declare function MetricCard({ label, value, secondary, href, size, className, }: MetricCardProps): react_jsx_runtime.JSX.Element;
635
676
 
677
+ interface SectionHeaderProps {
678
+ /** Section title rendered as an H2 heading */
679
+ title: string;
680
+ /** Optional action elements (buttons, badges, etc.) rendered on the right */
681
+ children?: React__default.ReactNode;
682
+ /** Additional CSS classes applied to the outer container */
683
+ className?: string;
684
+ }
685
+ /**
686
+ * Section header with a title on the left and optional action slots on the right.
687
+ *
688
+ * Mirrors the `SectionHeader` pattern from cytario-web's `Container.tsx`.
689
+ * The title renders as an `<H2>` heading; any `children` are placed in a
690
+ * flex container that aligns to the trailing edge.
691
+ */
692
+ declare function SectionHeader({ title, children, className, }: SectionHeaderProps): react_jsx_runtime.JSX.Element;
693
+
694
+ /**
695
+ * Available pill color variants, mapped to existing badge design tokens.
696
+ *
697
+ * The seven base variants correspond 1:1 to the `--color-badge-*` token set
698
+ * defined in `tokens/semantic.json`.
699
+ */
700
+ type PillColor = "neutral" | "purple" | "teal" | "rose" | "slate" | "green" | "amber";
701
+ interface PillProps {
702
+ /** Pill label content */
703
+ children: React__default.ReactNode;
704
+ /**
705
+ * Explicit color variant, or `"auto"` to derive from `name` via
706
+ * deterministic hash. Defaults to `"auto"` when `name` is provided,
707
+ * `"neutral"` otherwise.
708
+ */
709
+ color?: PillColor | "auto";
710
+ /**
711
+ * String used for deterministic hash-based color assignment.
712
+ * When provided and `color` is `"auto"` (or omitted), the pill color
713
+ * is derived from this value so the same name always produces the same
714
+ * color across renders and sessions.
715
+ */
716
+ name?: string;
717
+ /** Additional CSS class names merged via tailwind-merge */
718
+ className?: string;
719
+ }
720
+ /**
721
+ * Deterministic string-to-color hash, matching the algorithm used in
722
+ * cytario-web's `Pill.tsx`.
723
+ */
724
+ declare function pillColorFromName(name: string): PillColor;
725
+ /**
726
+ * Pill -- a small, rounded label used for tags, user groups, and status
727
+ * indicators. Supports deterministic hash-based coloring so the same
728
+ * `name` always renders the same color.
729
+ */
730
+ declare function Pill({ children, color, name, className }: PillProps): react_jsx_runtime.JSX.Element;
731
+
732
+ interface GroupPillProps {
733
+ /**
734
+ * Slash-separated group path, e.g. `"/org/team/admins"`.
735
+ * Leading slash is optional and stripped before splitting.
736
+ */
737
+ path: string;
738
+ /**
739
+ * Maximum number of path segments to display as full pills.
740
+ * Extra leading segments are collapsed into small colored dots.
741
+ * @default 3
742
+ */
743
+ visibleCount?: number;
744
+ /** Additional CSS class names merged via tailwind-merge */
745
+ className?: string;
746
+ }
747
+ /**
748
+ * GroupPill -- displays a hierarchical group path as a row of
749
+ * deterministically-colored pills. When the path has more segments
750
+ * than `visibleCount`, the leading overflow segments are shown as
751
+ * small colored dots to preserve context without consuming space.
752
+ */
753
+ declare function GroupPill({ path, visibleCount, className, }: GroupPillProps): react_jsx_runtime.JSX.Element | null;
754
+
755
+ interface FormWizardContextValue {
756
+ /** Zero-based index of the currently active step */
757
+ currentStep: number;
758
+ /** Total number of steps in the wizard */
759
+ totalSteps: number;
760
+ /** Whether the user can navigate backwards */
761
+ canGoBack: boolean;
762
+ /** Navigate to the previous step */
763
+ goBack: () => void;
764
+ /** Whether the current step is the last step */
765
+ isLastStep: boolean;
766
+ }
767
+ declare function useFormWizard(): FormWizardContextValue;
768
+ interface FormWizardProps {
769
+ /** Zero-based index of the currently active step */
770
+ currentStep: number;
771
+ /** Total number of steps in the wizard */
772
+ totalSteps: number;
773
+ /** Callback invoked when the step should change */
774
+ onStepChange: (step: number) => void;
775
+ /** Wizard content (step panels, progress indicator, navigation) */
776
+ children: React__default.ReactNode;
777
+ }
778
+ declare function FormWizard({ currentStep, totalSteps, onStepChange, children, }: FormWizardProps): react_jsx_runtime.JSX.Element;
779
+
780
+ interface FormWizardProgressProps {
781
+ /** Labels for each step, displayed below the step circles */
782
+ labels: string[];
783
+ }
784
+ declare function FormWizardProgress({ labels }: FormWizardProgressProps): react_jsx_runtime.JSX.Element;
785
+
786
+ interface FormWizardNavProps {
787
+ /** Callback invoked when the user presses Next or Submit */
788
+ onNext: () => void;
789
+ /** Whether the form is currently submitting (shows loading state on the submit button) */
790
+ isSubmitting?: boolean;
791
+ /** Label for the submit button on the last step (defaults to "Submit") */
792
+ submitLabel?: string;
793
+ }
794
+ declare function FormWizardNav({ onNext, isSubmitting, submitLabel, }: FormWizardNavProps): react_jsx_runtime.JSX.Element;
795
+
636
796
  /**
637
797
  * Do not edit directly, this file was auto-generated.
638
798
  */
@@ -839,4 +999,4 @@ declare const LineHeightTight = 1.25;
839
999
  declare const LineHeightNormal = 1.5;
840
1000
  declare const LineHeightRelaxed = 1.625;
841
1001
 
842
- export { Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Banner, type BannerProps, type BannerVariant, BorderRadiusFull, BorderRadiusLg, BorderRadiusMd, BorderRadiusNone, BorderRadiusSm, BorderRadiusXl, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonLink, type ButtonLinkProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardPadding, type CardProps, Cell, Checkbox, type CheckboxProps, ColorActionDanger, ColorActionDangerHover, ColorActionDefault, ColorActionDefaultHover, ColorActionInfo, ColorActionInfoHover, ColorActionPrimary, ColorActionPrimaryActive, ColorActionPrimaryHover, ColorActionSecondary, ColorActionSecondaryHover, ColorActionSuccess, ColorActionSuccessHover, ColorAmber100, ColorAmber200, ColorAmber300, ColorAmber400, ColorAmber50, ColorAmber500, ColorAmber600, ColorAmber700, ColorAmber800, ColorAmber900, ColorBadgeAmberBg, ColorBadgeAmberText, ColorBadgeGreenBg, ColorBadgeGreenText, ColorBadgeNeutralBg, ColorBadgeNeutralText, ColorBadgePurpleBg, ColorBadgePurpleText, ColorBadgeRoseBg, ColorBadgeRoseText, ColorBadgeSlateBg, ColorBadgeSlateText, ColorBadgeTealBg, ColorBadgeTealText, ColorBannerDangerBg, ColorBannerDangerBorder, ColorBannerDangerIcon, ColorBannerDangerText, ColorBannerInfoBg, ColorBannerInfoBorder, ColorBannerInfoIcon, ColorBannerInfoText, ColorBannerSuccessBg, ColorBannerSuccessBorder, ColorBannerSuccessIcon, ColorBannerSuccessText, ColorBannerWarningBg, ColorBannerWarningBorder, ColorBannerWarningIcon, ColorBannerWarningText, ColorBorderAccent, ColorBorderBrand, ColorBorderDanger, ColorBorderDefault, ColorBorderFocus, ColorBorderInfo, ColorBorderStrong, ColorBorderSuccess, ColorBorderWarning, ColorBrandAccent, ColorBrandPrimary, ColorDeltaDecreaseBg, ColorDeltaDecreaseIcon, ColorDeltaDecreaseText, ColorDeltaFlatBg, ColorDeltaFlatIcon, ColorDeltaFlatText, ColorDeltaIncreaseBg, ColorDeltaIncreaseIcon, ColorDeltaIncreaseText, ColorGreen100, ColorGreen200, ColorGreen300, ColorGreen400, ColorGreen50, ColorGreen500, ColorGreen600, ColorGreen700, ColorGreen800, ColorGreen900, ColorNeutral0, ColorNeutral100, ColorNeutral1000, ColorNeutral200, ColorNeutral300, ColorNeutral400, ColorNeutral50, ColorNeutral500, ColorNeutral600, ColorNeutral700, ColorNeutral800, ColorNeutral900, ColorNeutral950, ColorOverlayBackdrop, ColorProgressFill, ColorProgressFillDanger, ColorProgressFillSuccess, ColorProgressFillWarning, ColorProgressTrack, ColorPurple100, ColorPurple200, ColorPurple300, ColorPurple400, ColorPurple50, ColorPurple500, ColorPurple600, ColorPurple700, ColorPurple800, ColorPurple900, ColorRose100, ColorRose200, ColorRose300, ColorRose400, ColorRose50, ColorRose500, ColorRose600, ColorRose700, ColorRose800, ColorRose900, ColorSlate100, ColorSlate200, ColorSlate300, ColorSlate400, ColorSlate50, ColorSlate500, ColorSlate600, ColorSlate700, ColorSlate800, ColorSlate900, ColorStatusDanger, ColorStatusInfo, ColorStatusSuccess, ColorStatusWarning, ColorSurfaceAccent, ColorSurfaceBrand, ColorSurfaceDanger, ColorSurfaceDefault, ColorSurfaceHover, ColorSurfaceInfo, ColorSurfaceMuted, ColorSurfaceOverlay, ColorSurfacePressed, ColorSurfaceSelected, ColorSurfaceSelectedHover, ColorSurfaceSubtle, ColorSurfaceSuccess, ColorSurfaceWarning, ColorTeal100, ColorTeal200, ColorTeal300, ColorTeal400, ColorTeal50, ColorTeal500, ColorTeal600, ColorTeal700, ColorTeal800, ColorTeal900, ColorTextAccent, ColorTextBrand, ColorTextDanger, ColorTextInfo, ColorTextInverse, ColorTextPrimary, ColorTextSecondary, ColorTextSuccess, ColorTextTertiary, ColorTextWarning, Column, type DataTableProps, type DeltaFormat, DeltaIndicator, type DeltaIndicatorProps, type DeltaMode, Dialog, type DialogProps, EmptyState, type EmptyStateProps, Field, type FieldProps, Fieldset, type FieldsetProps, FontSize2xl, FontSize3xl, FontSize4xl, FontSize5xl, FontSizeBase, FontSizeLg, FontSizeSm, FontSizeXl, FontSizeXs, FontWeightBold, FontWeightExtrabold, FontWeightLight, FontWeightMedium, FontWeightRegular, FontWeightSemibold, type GroupPosition, H1, H2, H3, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, Icon, IconButton, IconButtonLink, type IconButtonLinkProps, type IconButtonProps, type IconProps, Input, InputAddon, type InputAddonProps, InputGroup, InputGroupContext, type InputGroupProps, type InputProps, Label, type LabelProps, LineHeightNormal, LineHeightRelaxed, LineHeightTight, Link, type LinkProps, type LinkVariant, Menu, type MenuItemData, type MenuProps, MetricCard, type MetricCardProps, type MetricCardSize, 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, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, type SegmentedControlSelectionMode, type SegmentedControlSize, Select, type SelectItem, type SelectProps, Spacing1, Spacing12, Spacing16, Spacing2, Spacing3, Spacing4, Spacing6, Spacing8, Spinner, type SpinnerProps, StorageConnectionCard, type StorageConnectionCardProps, 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, ToastProvider, type ToastVariant, ToggleButton, type ToggleButtonProps, type ToggleButtonSize, type ToggleButtonVariant, Tooltip, type TooltipProps, Tree, type TreeNode, type TreeProps, createToastBridge, useInputGroup, useToast };
1002
+ export { Badge, type BadgeProps, type BadgeSize, type BadgeVariant, Banner, type BannerProps, type BannerVariant, BorderRadiusFull, BorderRadiusLg, BorderRadiusMd, BorderRadiusNone, BorderRadiusSm, BorderRadiusXl, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonLink, type ButtonLinkProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardPadding, type CardProps, Cell, Checkbox, type CheckboxProps, ColorActionDanger, ColorActionDangerHover, ColorActionDefault, ColorActionDefaultHover, ColorActionInfo, ColorActionInfoHover, ColorActionPrimary, ColorActionPrimaryActive, ColorActionPrimaryHover, ColorActionSecondary, ColorActionSecondaryHover, ColorActionSuccess, ColorActionSuccessHover, ColorAmber100, ColorAmber200, ColorAmber300, ColorAmber400, ColorAmber50, ColorAmber500, ColorAmber600, ColorAmber700, ColorAmber800, ColorAmber900, ColorBadgeAmberBg, ColorBadgeAmberText, ColorBadgeGreenBg, ColorBadgeGreenText, ColorBadgeNeutralBg, ColorBadgeNeutralText, ColorBadgePurpleBg, ColorBadgePurpleText, ColorBadgeRoseBg, ColorBadgeRoseText, ColorBadgeSlateBg, ColorBadgeSlateText, ColorBadgeTealBg, ColorBadgeTealText, ColorBannerDangerBg, ColorBannerDangerBorder, ColorBannerDangerIcon, ColorBannerDangerText, ColorBannerInfoBg, ColorBannerInfoBorder, ColorBannerInfoIcon, ColorBannerInfoText, ColorBannerSuccessBg, ColorBannerSuccessBorder, ColorBannerSuccessIcon, ColorBannerSuccessText, ColorBannerWarningBg, ColorBannerWarningBorder, ColorBannerWarningIcon, ColorBannerWarningText, ColorBorderAccent, ColorBorderBrand, ColorBorderDanger, ColorBorderDefault, ColorBorderFocus, ColorBorderInfo, ColorBorderStrong, ColorBorderSuccess, ColorBorderWarning, ColorBrandAccent, ColorBrandPrimary, ColorDeltaDecreaseBg, ColorDeltaDecreaseIcon, ColorDeltaDecreaseText, ColorDeltaFlatBg, ColorDeltaFlatIcon, ColorDeltaFlatText, ColorDeltaIncreaseBg, ColorDeltaIncreaseIcon, ColorDeltaIncreaseText, ColorGreen100, ColorGreen200, ColorGreen300, ColorGreen400, ColorGreen50, ColorGreen500, ColorGreen600, ColorGreen700, ColorGreen800, ColorGreen900, ColorNeutral0, ColorNeutral100, ColorNeutral1000, ColorNeutral200, ColorNeutral300, ColorNeutral400, ColorNeutral50, ColorNeutral500, ColorNeutral600, ColorNeutral700, ColorNeutral800, ColorNeutral900, ColorNeutral950, ColorOverlayBackdrop, ColorProgressFill, ColorProgressFillDanger, ColorProgressFillSuccess, ColorProgressFillWarning, ColorProgressTrack, ColorPurple100, ColorPurple200, ColorPurple300, ColorPurple400, ColorPurple50, ColorPurple500, ColorPurple600, ColorPurple700, ColorPurple800, ColorPurple900, ColorRose100, ColorRose200, ColorRose300, ColorRose400, ColorRose50, ColorRose500, ColorRose600, ColorRose700, ColorRose800, ColorRose900, ColorSlate100, ColorSlate200, ColorSlate300, ColorSlate400, ColorSlate50, ColorSlate500, ColorSlate600, ColorSlate700, ColorSlate800, ColorSlate900, ColorStatusDanger, ColorStatusInfo, ColorStatusSuccess, ColorStatusWarning, ColorSurfaceAccent, ColorSurfaceBrand, ColorSurfaceDanger, ColorSurfaceDefault, ColorSurfaceHover, ColorSurfaceInfo, ColorSurfaceMuted, ColorSurfaceOverlay, ColorSurfacePressed, ColorSurfaceSelected, ColorSurfaceSelectedHover, ColorSurfaceSubtle, ColorSurfaceSuccess, ColorSurfaceWarning, ColorTeal100, ColorTeal200, ColorTeal300, ColorTeal400, ColorTeal50, ColorTeal500, ColorTeal600, ColorTeal700, ColorTeal800, ColorTeal900, ColorTextAccent, ColorTextBrand, ColorTextDanger, ColorTextInfo, ColorTextInverse, ColorTextPrimary, ColorTextSecondary, ColorTextSuccess, ColorTextTertiary, ColorTextWarning, Column, type DataTableProps, type DeltaFormat, DeltaIndicator, type DeltaIndicatorProps, type DeltaMode, Dialog, type DialogProps, EmptyState, type EmptyStateProps, Field, type FieldProps, Fieldset, type FieldsetProps, FileCard, type FileCardProps, FileIcon, FontSize2xl, FontSize3xl, FontSize4xl, FontSize5xl, FontSizeBase, FontSizeLg, FontSizeSm, FontSizeXl, FontSizeXs, FontWeightBold, FontWeightExtrabold, FontWeightLight, FontWeightMedium, FontWeightRegular, FontWeightSemibold, FormWizard, type FormWizardContextValue, FormWizardNav, type FormWizardNavProps, FormWizardProgress, type FormWizardProgressProps, type FormWizardProps, GroupPill, type GroupPillProps, type GroupPosition, H1, H2, H3, Heading, type HeadingLevel, type HeadingProps, type HeadingSize, Icon, IconButton, IconButtonLink, type IconButtonLinkProps, type IconButtonProps, type IconProps, Input, InputAddon, type InputAddonProps, InputGroup, InputGroupContext, type InputGroupProps, type InputProps, Label, type LabelProps, LineHeightNormal, LineHeightRelaxed, LineHeightTight, Link, type LinkProps, type LinkVariant, Menu, type MenuItemData, type MenuProps, MetricCard, type MetricCardProps, type MetricCardSize, 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, Spacing1, Spacing12, Spacing16, Spacing2, Spacing3, Spacing4, Spacing6, Spacing8, Spinner, type SpinnerProps, StorageConnectionCard, type StorageConnectionCardProps, 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, ToastProvider, type ToastVariant, ToggleButton, type ToggleButtonProps, type ToggleButtonSize, type ToggleButtonVariant, Tooltip, type TooltipProps, Tree, type TreeNode, type TreeProps, createToastBridge, getFileIcon, getTypeLabel, pillColorFromName, useFormWizard, useInputGroup, useToast };