@cytario/design 2.2.0 → 2.4.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 +35 -84
- package/dist/index.js +603 -688
- package/dist/index.js.map +1 -1
- package/package.json +4 -10
- package/src/styles/tailwind.css +6 -0
- 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 {
|
|
@@ -547,6 +544,7 @@ interface TreeProps<T extends TreeNode = TreeNode> {
|
|
|
547
544
|
onHover?: (node: T) => void;
|
|
548
545
|
/** Called when the pointer leaves a tree node row. */
|
|
549
546
|
onHoverEnd?: (node: T) => void;
|
|
547
|
+
onToggle?: (node: T) => void;
|
|
550
548
|
openByDefault?: boolean;
|
|
551
549
|
searchTerm?: string;
|
|
552
550
|
searchMatch?: (node: T, term: string) => boolean;
|
|
@@ -557,7 +555,7 @@ interface TreeProps<T extends TreeNode = TreeNode> {
|
|
|
557
555
|
treeRef?: React.Ref<TreeApi<T>>;
|
|
558
556
|
className?: string;
|
|
559
557
|
}
|
|
560
|
-
declare function Tree<T extends TreeNode = TreeNode>({ data, "aria-label": ariaLabel, size, selectionMode, selectedIds, onSelectionChange, onActivate, onHover, onHoverEnd, openByDefault, searchTerm, searchMatch, height, indent, disableDrag, disableDrop, treeRef, className, }: TreeProps<T>): react_jsx_runtime.JSX.Element;
|
|
558
|
+
declare function Tree<T extends TreeNode = TreeNode>({ data, "aria-label": ariaLabel, size, selectionMode, selectedIds, onSelectionChange, onActivate, onToggle, onHover, onHoverEnd, openByDefault, searchTerm, searchMatch, height, indent, disableDrag, disableDrop, treeRef, className, }: TreeProps<T>): react_jsx_runtime.JSX.Element;
|
|
561
559
|
|
|
562
560
|
type SegmentedControlSize = "sm" | "md" | "lg";
|
|
563
561
|
type SegmentedControlSelectionMode = "single" | "none";
|
|
@@ -619,30 +617,19 @@ interface FileCardProps {
|
|
|
619
617
|
declare function FileCard({ name, type, size, extension, compact, children, onInfo, href, onPress, className, }: FileCardProps): react_jsx_runtime.JSX.Element;
|
|
620
618
|
|
|
621
619
|
interface StorageConnectionCardProps {
|
|
622
|
-
/** Display name for the connection */
|
|
623
620
|
name: string;
|
|
624
|
-
/** Cloud provider identifier (e.g., "aws", "minio", "azure", "gcp"). When omitted, the provider badge and region are hidden. */
|
|
625
|
-
provider?: string;
|
|
626
|
-
/** AWS region or equivalent (only rendered when provider is set) */
|
|
627
|
-
region?: string;
|
|
628
|
-
/** Connection health status. When omitted, the status dot is hidden and the preview area behaves as "connected". */
|
|
629
621
|
status?: "connected" | "error" | "loading";
|
|
630
|
-
/** Human-readable error message when status is "error" */
|
|
631
622
|
errorMessage?: string;
|
|
632
|
-
/**
|
|
633
|
-
|
|
634
|
-
/** Children rendered in the preview area (e.g., an actual tile viewer, or an img) */
|
|
623
|
+
/** Metadata row below the name (e.g. provider pill, scope pill, region text) */
|
|
624
|
+
meta?: React__default.ReactNode;
|
|
635
625
|
children?: React__default.ReactNode;
|
|
636
|
-
/** Navigation target — clicking the card navigates here */
|
|
637
626
|
href?: string;
|
|
638
|
-
/** Handler for click/press interaction (use instead of href for programmatic navigation) */
|
|
639
627
|
onPress?: () => void;
|
|
640
|
-
/**
|
|
641
|
-
|
|
642
|
-
/** Additional CSS classes */
|
|
628
|
+
/** Slot for action controls (e.g. a dropdown menu) rendered in the card header */
|
|
629
|
+
actions?: React__default.ReactNode;
|
|
643
630
|
className?: string;
|
|
644
631
|
}
|
|
645
|
-
declare function StorageConnectionCard({ name,
|
|
632
|
+
declare function StorageConnectionCard({ name, status, errorMessage, meta, children, href, onPress, actions, className, }: StorageConnectionCardProps): react_jsx_runtime.JSX.Element;
|
|
646
633
|
|
|
647
634
|
type BadgeVariant = "neutral" | "purple" | "teal" | "rose" | "slate" | "green" | "amber";
|
|
648
635
|
type BadgeSize = "sm" | "md";
|
|
@@ -778,66 +765,30 @@ interface SectionHeaderProps {
|
|
|
778
765
|
*/
|
|
779
766
|
declare function SectionHeader({ title, children, className, }: SectionHeaderProps): react_jsx_runtime.JSX.Element;
|
|
780
767
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
/**
|
|
798
|
-
* String used for deterministic hash-based color assignment.
|
|
799
|
-
* When provided and `color` is `"auto"` (or omitted), the pill color
|
|
800
|
-
* is derived from this value so the same name always produces the same
|
|
801
|
-
* color across renders and sessions.
|
|
802
|
-
*/
|
|
803
|
-
name?: string;
|
|
804
|
-
/** Additional CSS class names merged via tailwind-merge */
|
|
805
|
-
className?: string;
|
|
806
|
-
}
|
|
807
|
-
/**
|
|
808
|
-
* Deterministic string-to-color hash, matching the algorithm used in
|
|
809
|
-
* cytario-web's `Pill.tsx`.
|
|
810
|
-
*/
|
|
811
|
-
declare function pillColorFromName(name: string): PillColor;
|
|
812
|
-
/**
|
|
813
|
-
* Pill -- a small, rounded label used for tags, user groups, and status
|
|
814
|
-
* indicators. Supports deterministic hash-based coloring so the same
|
|
815
|
-
* `name` always renders the same color.
|
|
816
|
-
*/
|
|
817
|
-
declare function Pill({ children, color, name, className }: PillProps): react_jsx_runtime.JSX.Element;
|
|
768
|
+
declare const colorStyles: {
|
|
769
|
+
readonly slate: "bg-(--color-badge-slate-bg) text-(--color-badge-slate-text) border-(--color-badge-slate-text)/20";
|
|
770
|
+
readonly purple: "bg-(--color-badge-purple-bg) text-(--color-badge-purple-text) border-(--color-badge-purple-text)/20";
|
|
771
|
+
readonly teal: "bg-(--color-badge-teal-bg) text-(--color-badge-teal-text) border-(--color-badge-teal-text)/20";
|
|
772
|
+
readonly rose: "bg-(--color-badge-rose-bg) text-(--color-badge-rose-text) border-(--color-badge-rose-text)/20";
|
|
773
|
+
readonly green: "bg-(--color-badge-green-bg) text-(--color-badge-green-text) border-(--color-badge-green-text)/20";
|
|
774
|
+
readonly amber: "bg-(--color-badge-amber-bg) text-(--color-badge-amber-text) border-(--color-badge-amber-text)/20";
|
|
775
|
+
};
|
|
776
|
+
type PillColor = keyof typeof colorStyles;
|
|
777
|
+
interface PillProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children" | "color"> {
|
|
778
|
+
children?: string;
|
|
779
|
+
color?: PillColor;
|
|
780
|
+
}
|
|
781
|
+
declare function pillColorFromName(name?: string): PillColor;
|
|
782
|
+
/** Non-interactive hash-colored label badge. Color is derived from the text unless explicitly set. */
|
|
783
|
+
declare function Pill({ children, color, className, ...rest }: PillProps): react_jsx_runtime.JSX.Element;
|
|
818
784
|
|
|
819
|
-
interface
|
|
820
|
-
|
|
821
|
-
* Slash-separated group path, e.g. `"/org/team/admins"`.
|
|
822
|
-
* Leading slash is optional and stripped before splitting.
|
|
823
|
-
*/
|
|
824
|
-
path: string;
|
|
825
|
-
/**
|
|
826
|
-
* Maximum number of path segments to display as full pills.
|
|
827
|
-
* Extra leading segments are collapsed into small colored dots.
|
|
828
|
-
* @default 3
|
|
829
|
-
*/
|
|
785
|
+
interface PathPillProps {
|
|
786
|
+
children: string;
|
|
830
787
|
visibleCount?: number;
|
|
831
|
-
/** Additional CSS class names merged via tailwind-merge */
|
|
832
788
|
className?: string;
|
|
833
789
|
}
|
|
834
|
-
/**
|
|
835
|
-
|
|
836
|
-
* deterministically-colored pills. When the path has more segments
|
|
837
|
-
* than `visibleCount`, the leading overflow segments are shown as
|
|
838
|
-
* small colored dots to preserve context without consuming space.
|
|
839
|
-
*/
|
|
840
|
-
declare function GroupPill({ path, visibleCount, className, }: GroupPillProps): react_jsx_runtime.JSX.Element | null;
|
|
790
|
+
/** Renders a slash-separated path as overlapping, hash-colored pill segments. */
|
|
791
|
+
declare function PathPill({ children, visibleCount, className, }: PathPillProps): react_jsx_runtime.JSX.Element | null;
|
|
841
792
|
|
|
842
793
|
interface FormWizardContextValue {
|
|
843
794
|
/** Zero-based index of the currently active step */
|
|
@@ -1042,7 +993,7 @@ declare const ColorBannerSuccessIcon = "#22c55e";
|
|
|
1042
993
|
declare const ColorBadgePurpleBg = "#ead9f5";
|
|
1043
994
|
declare const ColorBadgePurpleText = "#5c2483";
|
|
1044
995
|
declare const ColorBadgeTealBg = "#d0f0f0";
|
|
1045
|
-
declare const ColorBadgeTealText = "#
|
|
996
|
+
declare const ColorBadgeTealText = "#1a6364";
|
|
1046
997
|
declare const ColorBadgeSlateBg = "#f1f5f9";
|
|
1047
998
|
declare const ColorBadgeSlateText = "#334155";
|
|
1048
999
|
declare const ColorBadgeRoseBg = "#ffe4e6";
|
|
@@ -1052,7 +1003,7 @@ declare const ColorBadgeNeutralText = "#374151";
|
|
|
1052
1003
|
declare const ColorBadgeGreenBg = "#dcfce7";
|
|
1053
1004
|
declare const ColorBadgeGreenText = "#15803d";
|
|
1054
1005
|
declare const ColorBadgeAmberBg = "#fef3c7";
|
|
1055
|
-
declare const ColorBadgeAmberText = "#
|
|
1006
|
+
declare const ColorBadgeAmberText = "#92400e";
|
|
1056
1007
|
declare const Spacing1 = "4px";
|
|
1057
1008
|
declare const Spacing2 = "8px";
|
|
1058
1009
|
declare const Spacing3 = "12px";
|
|
@@ -1086,4 +1037,4 @@ declare const LineHeightTight = 1.25;
|
|
|
1086
1037
|
declare const LineHeightNormal = 1.5;
|
|
1087
1038
|
declare const LineHeightRelaxed = 1.625;
|
|
1088
1039
|
|
|
1089
|
-
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,
|
|
1040
|
+
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, 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, getFileIcon, getTypeLabel, pillColorFromName, useFormWizard, useInputGroup, useToast };
|