@cytario/design 2.3.0 → 3.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/README.md +10 -11
- package/dist/index.d.ts +37 -102
- package/dist/index.js +282 -423
- package/dist/index.js.map +1 -1
- package/package.json +2 -8
- package/src/tokens/variables-dark.css +4 -0
- package/src/tokens/variables.css +2 -2
package/README.md
CHANGED
|
@@ -18,14 +18,13 @@ Single source of truth for the cytario corporate identity -- from brand foundati
|
|
|
18
18
|
### Prerequisites
|
|
19
19
|
|
|
20
20
|
- Node.js 22+
|
|
21
|
-
- pnpm 10+ (`corepack enable` to activate the bundled version)
|
|
22
21
|
|
|
23
22
|
### Install and run
|
|
24
23
|
|
|
25
24
|
```bash
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
npm install
|
|
26
|
+
npm run build:tokens # generate CSS variables + TypeScript constants from token JSON
|
|
27
|
+
npm run dev # start Storybook at http://localhost:6006
|
|
29
28
|
```
|
|
30
29
|
|
|
31
30
|
## Project structure
|
|
@@ -75,7 +74,7 @@ Semantic tokens reference base tokens using `{color.purple.700}` syntax.
|
|
|
75
74
|
### Adding or modifying tokens
|
|
76
75
|
|
|
77
76
|
1. Edit `tokens/base.json` (primitives) or `tokens/semantic.json` (aliases).
|
|
78
|
-
2. Run `
|
|
77
|
+
2. Run `npm run build:tokens` to regenerate the output files.
|
|
79
78
|
3. If you added a new color scale, also add matching entries to `src/styles/tailwind.css` under the `@theme` block so Tailwind utility classes are available.
|
|
80
79
|
|
|
81
80
|
**Do not edit `src/tokens/variables.css` or `src/tokens/tokens.ts` directly** -- they are overwritten on every build.
|
|
@@ -129,12 +128,12 @@ Both colors have a full 50--900 scale defined in `tokens/base.json` for use in h
|
|
|
129
128
|
|
|
130
129
|
| Command | Description |
|
|
131
130
|
|---|---|
|
|
132
|
-
| `
|
|
133
|
-
| `
|
|
134
|
-
| `
|
|
135
|
-
| `
|
|
136
|
-
| `
|
|
137
|
-
| `
|
|
131
|
+
| `npm run dev` | Start Storybook dev server on port 6006 |
|
|
132
|
+
| `npm run build` | Build static Storybook site to `storybook-static/` |
|
|
133
|
+
| `npm run build:tokens` | Generate CSS and TypeScript from token JSON |
|
|
134
|
+
| `npm test` | Run Vitest test suite (watch mode) |
|
|
135
|
+
| `npx vitest run` | Run tests once (CI mode) |
|
|
136
|
+
| `npm run lint` | Lint `src/` with ESLint |
|
|
138
137
|
|
|
139
138
|
## License
|
|
140
139
|
|
package/dist/index.d.ts
CHANGED
|
@@ -109,18 +109,15 @@ interface SelectItem {
|
|
|
109
109
|
name: string;
|
|
110
110
|
}
|
|
111
111
|
interface SelectProps extends Omit<SelectProps$1<SelectItem>, "children"> {
|
|
112
|
-
/** Label displayed above the trigger (always visible) */
|
|
113
|
-
label: string;
|
|
114
|
-
/** Options to display in the dropdown */
|
|
115
112
|
items: SelectItem[];
|
|
116
|
-
|
|
113
|
+
label?: string;
|
|
117
114
|
placeholder?: string;
|
|
118
|
-
/** Error message displayed below the trigger */
|
|
119
115
|
errorMessage?: string;
|
|
120
|
-
/**
|
|
121
|
-
|
|
116
|
+
/** Custom visual renderer for items in the dropdown and trigger.
|
|
117
|
+
* `item.name` remains the accessible label (used for typeahead and screen readers). */
|
|
118
|
+
renderItem?: (item: SelectItem) => React__default.ReactNode;
|
|
122
119
|
}
|
|
123
|
-
declare function Select({ label, items, placeholder, errorMessage,
|
|
120
|
+
declare function Select({ label, items, placeholder, errorMessage, isDisabled, isRequired, className, renderItem, ...props }: SelectProps): react_jsx_runtime.JSX.Element;
|
|
124
121
|
|
|
125
122
|
type TableSize = "compact" | "comfortable";
|
|
126
123
|
interface DataTableProps extends TableProps {
|
|
@@ -584,66 +581,40 @@ interface SegmentedControlItemProps extends Omit<ToggleButtonProps$1, "className
|
|
|
584
581
|
}
|
|
585
582
|
declare function SegmentedControlItem({ className, ...props }: SegmentedControlItemProps): react_jsx_runtime.JSX.Element;
|
|
586
583
|
|
|
587
|
-
declare function getFileIcon(type: "directory" | "file", extension?: string): LucideIcon;
|
|
588
|
-
declare function getTypeLabel(type: "directory" | "file", extension?: string): string;
|
|
589
|
-
declare function FileIcon({ type, extension, size, }: {
|
|
590
|
-
type: "directory" | "file";
|
|
591
|
-
extension?: string;
|
|
592
|
-
size?: number;
|
|
593
|
-
}): react_jsx_runtime.JSX.Element;
|
|
594
584
|
interface FileCardProps {
|
|
595
585
|
/** File or folder name */
|
|
596
586
|
name: string;
|
|
597
|
-
/**
|
|
598
|
-
|
|
587
|
+
/** Icon to display in thumbnail fallback and metadata row */
|
|
588
|
+
icon?: LucideIcon;
|
|
599
589
|
/** Human-readable file size (e.g., "12.3 GB") */
|
|
600
590
|
size?: string;
|
|
601
|
-
/** Last modified date/time */
|
|
602
|
-
modified?: string;
|
|
603
|
-
/** File extension (e.g., "ome.tif", "csv") */
|
|
604
|
-
extension?: string;
|
|
605
|
-
/** Whether a thumbnail preview is available */
|
|
606
|
-
hasPreview?: boolean;
|
|
607
591
|
/** Compact mode (smaller card, square aspect, minimal metadata) */
|
|
608
592
|
compact?: boolean;
|
|
609
593
|
/** Custom thumbnail content (e.g., an image preview) */
|
|
610
594
|
children?: React__default.ReactNode;
|
|
611
595
|
/** Info button handler */
|
|
612
596
|
onInfo?: () => void;
|
|
613
|
-
/**
|
|
614
|
-
href?: string;
|
|
615
|
-
/** Handler for click/press interaction (use instead of href for programmatic navigation) */
|
|
597
|
+
/** Handler for click/press interaction */
|
|
616
598
|
onPress?: () => void;
|
|
617
599
|
/** Additional CSS classes */
|
|
618
600
|
className?: string;
|
|
619
601
|
}
|
|
620
|
-
declare function FileCard({ name,
|
|
602
|
+
declare function FileCard({ name, icon: IconComponent, size, compact, children, onInfo, onPress, className, }: FileCardProps): react_jsx_runtime.JSX.Element;
|
|
621
603
|
|
|
622
604
|
interface StorageConnectionCardProps {
|
|
623
|
-
/** Display name for the connection */
|
|
624
605
|
name: string;
|
|
625
|
-
/** Cloud provider identifier (e.g., "aws", "minio", "azure", "gcp"). When omitted, the provider badge and region are hidden. */
|
|
626
|
-
provider?: string;
|
|
627
|
-
/** AWS region or equivalent (only rendered when provider is set) */
|
|
628
|
-
region?: string;
|
|
629
|
-
/** Connection health status. When omitted, the status dot is hidden and the preview area behaves as "connected". */
|
|
630
606
|
status?: "connected" | "error" | "loading";
|
|
631
|
-
/** Human-readable error message when status is "error" */
|
|
632
607
|
errorMessage?: string;
|
|
633
|
-
/**
|
|
634
|
-
|
|
635
|
-
/** Children rendered in the preview area (e.g., an actual tile viewer, or an img) */
|
|
608
|
+
/** Metadata row below the name (e.g. provider pill, scope pill, region text) */
|
|
609
|
+
meta?: React__default.ReactNode;
|
|
636
610
|
children?: React__default.ReactNode;
|
|
637
|
-
/** Navigation target — clicking the card navigates here */
|
|
638
611
|
href?: string;
|
|
639
|
-
/** Handler for click/press interaction (use instead of href for programmatic navigation) */
|
|
640
612
|
onPress?: () => void;
|
|
641
|
-
/**
|
|
642
|
-
|
|
643
|
-
/** Additional CSS classes */
|
|
613
|
+
/** Slot for action controls (e.g. a dropdown menu) rendered in the card header */
|
|
614
|
+
actions?: React__default.ReactNode;
|
|
644
615
|
className?: string;
|
|
645
616
|
}
|
|
646
|
-
declare function StorageConnectionCard({ name,
|
|
617
|
+
declare function StorageConnectionCard({ name, status, errorMessage, meta, children, href, onPress, actions, className, }: StorageConnectionCardProps): react_jsx_runtime.JSX.Element;
|
|
647
618
|
|
|
648
619
|
type BadgeVariant = "neutral" | "purple" | "teal" | "rose" | "slate" | "green" | "amber";
|
|
649
620
|
type BadgeSize = "sm" | "md";
|
|
@@ -779,66 +750,30 @@ interface SectionHeaderProps {
|
|
|
779
750
|
*/
|
|
780
751
|
declare function SectionHeader({ title, children, className, }: SectionHeaderProps): react_jsx_runtime.JSX.Element;
|
|
781
752
|
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
/**
|
|
799
|
-
* String used for deterministic hash-based color assignment.
|
|
800
|
-
* When provided and `color` is `"auto"` (or omitted), the pill color
|
|
801
|
-
* is derived from this value so the same name always produces the same
|
|
802
|
-
* color across renders and sessions.
|
|
803
|
-
*/
|
|
804
|
-
name?: string;
|
|
805
|
-
/** Additional CSS class names merged via tailwind-merge */
|
|
806
|
-
className?: string;
|
|
807
|
-
}
|
|
808
|
-
/**
|
|
809
|
-
* Deterministic string-to-color hash, matching the algorithm used in
|
|
810
|
-
* cytario-web's `Pill.tsx`.
|
|
811
|
-
*/
|
|
812
|
-
declare function pillColorFromName(name: string): PillColor;
|
|
813
|
-
/**
|
|
814
|
-
* Pill -- a small, rounded label used for tags, user groups, and status
|
|
815
|
-
* indicators. Supports deterministic hash-based coloring so the same
|
|
816
|
-
* `name` always renders the same color.
|
|
817
|
-
*/
|
|
818
|
-
declare function Pill({ children, color, name, className }: PillProps): react_jsx_runtime.JSX.Element;
|
|
753
|
+
declare const colorStyles: {
|
|
754
|
+
readonly slate: "bg-(--color-badge-slate-bg) text-(--color-badge-slate-text) border-(--color-badge-slate-text)/20";
|
|
755
|
+
readonly purple: "bg-(--color-badge-purple-bg) text-(--color-badge-purple-text) border-(--color-badge-purple-text)/20";
|
|
756
|
+
readonly teal: "bg-(--color-badge-teal-bg) text-(--color-badge-teal-text) border-(--color-badge-teal-text)/20";
|
|
757
|
+
readonly rose: "bg-(--color-badge-rose-bg) text-(--color-badge-rose-text) border-(--color-badge-rose-text)/20";
|
|
758
|
+
readonly green: "bg-(--color-badge-green-bg) text-(--color-badge-green-text) border-(--color-badge-green-text)/20";
|
|
759
|
+
readonly amber: "bg-(--color-badge-amber-bg) text-(--color-badge-amber-text) border-(--color-badge-amber-text)/20";
|
|
760
|
+
};
|
|
761
|
+
type PillColor = keyof typeof colorStyles;
|
|
762
|
+
interface PillProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children" | "color"> {
|
|
763
|
+
children?: string;
|
|
764
|
+
color?: PillColor;
|
|
765
|
+
}
|
|
766
|
+
declare function pillColorFromName(name?: string): PillColor;
|
|
767
|
+
/** Non-interactive hash-colored label badge. Color is derived from the text unless explicitly set. */
|
|
768
|
+
declare function Pill({ children, color, className, ...rest }: PillProps): react_jsx_runtime.JSX.Element;
|
|
819
769
|
|
|
820
|
-
interface
|
|
821
|
-
|
|
822
|
-
* Slash-separated group path, e.g. `"/org/team/admins"`.
|
|
823
|
-
* Leading slash is optional and stripped before splitting.
|
|
824
|
-
*/
|
|
825
|
-
path: string;
|
|
826
|
-
/**
|
|
827
|
-
* Maximum number of path segments to display as full pills.
|
|
828
|
-
* Extra leading segments are collapsed into small colored dots.
|
|
829
|
-
* @default 3
|
|
830
|
-
*/
|
|
770
|
+
interface PathPillProps {
|
|
771
|
+
children: string;
|
|
831
772
|
visibleCount?: number;
|
|
832
|
-
/** Additional CSS class names merged via tailwind-merge */
|
|
833
773
|
className?: string;
|
|
834
774
|
}
|
|
835
|
-
/**
|
|
836
|
-
|
|
837
|
-
* deterministically-colored pills. When the path has more segments
|
|
838
|
-
* than `visibleCount`, the leading overflow segments are shown as
|
|
839
|
-
* small colored dots to preserve context without consuming space.
|
|
840
|
-
*/
|
|
841
|
-
declare function GroupPill({ path, visibleCount, className, }: GroupPillProps): react_jsx_runtime.JSX.Element | null;
|
|
775
|
+
/** Renders a slash-separated path as overlapping, hash-colored pill segments. */
|
|
776
|
+
declare function PathPill({ children, visibleCount, className, }: PathPillProps): react_jsx_runtime.JSX.Element | null;
|
|
842
777
|
|
|
843
778
|
interface FormWizardContextValue {
|
|
844
779
|
/** Zero-based index of the currently active step */
|
|
@@ -1043,7 +978,7 @@ declare const ColorBannerSuccessIcon = "#22c55e";
|
|
|
1043
978
|
declare const ColorBadgePurpleBg = "#ead9f5";
|
|
1044
979
|
declare const ColorBadgePurpleText = "#5c2483";
|
|
1045
980
|
declare const ColorBadgeTealBg = "#d0f0f0";
|
|
1046
|
-
declare const ColorBadgeTealText = "#
|
|
981
|
+
declare const ColorBadgeTealText = "#1a6364";
|
|
1047
982
|
declare const ColorBadgeSlateBg = "#f1f5f9";
|
|
1048
983
|
declare const ColorBadgeSlateText = "#334155";
|
|
1049
984
|
declare const ColorBadgeRoseBg = "#ffe4e6";
|
|
@@ -1053,7 +988,7 @@ declare const ColorBadgeNeutralText = "#374151";
|
|
|
1053
988
|
declare const ColorBadgeGreenBg = "#dcfce7";
|
|
1054
989
|
declare const ColorBadgeGreenText = "#15803d";
|
|
1055
990
|
declare const ColorBadgeAmberBg = "#fef3c7";
|
|
1056
|
-
declare const ColorBadgeAmberText = "#
|
|
991
|
+
declare const ColorBadgeAmberText = "#92400e";
|
|
1057
992
|
declare const Spacing1 = "4px";
|
|
1058
993
|
declare const Spacing2 = "8px";
|
|
1059
994
|
declare const Spacing3 = "12px";
|
|
@@ -1087,4 +1022,4 @@ declare const LineHeightTight = 1.25;
|
|
|
1087
1022
|
declare const LineHeightNormal = 1.5;
|
|
1088
1023
|
declare const LineHeightRelaxed = 1.625;
|
|
1089
1024
|
|
|
1090
|
-
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,
|
|
1025
|
+
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, 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, 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, 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, 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, type ToastPlacement, ToastProvider, type ToastProviderProps, type ToastVariant, ToggleButton, ToggleButtonGroup, ToggleButtonGroupItem, type ToggleButtonGroupItemProps, type ToggleButtonGroupProps, type ToggleButtonGroupSize, type ToggleButtonProps, type ToggleButtonSize, type ToggleButtonVariant, Tooltip, type TooltipProps, Tree, type TreeNode, type TreeProps, createToastBridge, pillColorFromName, useFormWizard, useInputGroup, useToast };
|