@cere/cere-design-system 0.0.42 → 0.0.44

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.mts CHANGED
@@ -21,6 +21,7 @@ import { TooltipProps as TooltipProps$1 } from '@mui/material/Tooltip';
21
21
  import { AlertProps as AlertProps$1 } from '@mui/material/Alert';
22
22
  import { SnackbarProps as SnackbarProps$1 } from '@mui/material/Snackbar';
23
23
  import { DrawerProps as DrawerProps$1 } from '@mui/material/Drawer';
24
+ import { EmblaOptionsType } from 'embla-carousel';
24
25
  import { CardProps as CardProps$1 } from '@mui/material/Card';
25
26
  import { CardContentProps } from '@mui/material/CardContent';
26
27
  import { CardHeaderProps } from '@mui/material/CardHeader';
@@ -39,6 +40,54 @@ import { Monaco } from '@monaco-editor/react';
39
40
  import { editor } from 'monaco-editor';
40
41
  export { default as RadioGroup } from '@mui/material/RadioGroup';
41
42
 
43
+ /**
44
+ * Module augmentation for the custom typography variants defined in
45
+ * `typography.ts` (eyebrow, lede, panelTitle, footnote, mono, banner*).
46
+ *
47
+ * Side-effect import only — pulled in from `theme/index.ts` so the types
48
+ * are visible wherever the DS theme is consumed.
49
+ */
50
+ declare module '@mui/material/styles' {
51
+ interface TypographyVariants {
52
+ eyebrow: React.CSSProperties;
53
+ lede: React.CSSProperties;
54
+ panelTitle: React.CSSProperties;
55
+ footnote: React.CSSProperties;
56
+ mono: React.CSSProperties;
57
+ bannerEyebrow: React.CSSProperties;
58
+ bannerTitle: React.CSSProperties;
59
+ bannerBy: React.CSSProperties;
60
+ bannerDesc: React.CSSProperties;
61
+ bannerMeta: React.CSSProperties;
62
+ }
63
+ interface TypographyVariantsOptions {
64
+ eyebrow?: React.CSSProperties;
65
+ lede?: React.CSSProperties;
66
+ panelTitle?: React.CSSProperties;
67
+ footnote?: React.CSSProperties;
68
+ mono?: React.CSSProperties;
69
+ bannerEyebrow?: React.CSSProperties;
70
+ bannerTitle?: React.CSSProperties;
71
+ bannerBy?: React.CSSProperties;
72
+ bannerDesc?: React.CSSProperties;
73
+ bannerMeta?: React.CSSProperties;
74
+ }
75
+ }
76
+ declare module '@mui/material/Typography' {
77
+ interface TypographyPropsVariantOverrides {
78
+ eyebrow: true;
79
+ lede: true;
80
+ panelTitle: true;
81
+ footnote: true;
82
+ mono: true;
83
+ bannerEyebrow: true;
84
+ bannerTitle: true;
85
+ bannerBy: true;
86
+ bannerDesc: true;
87
+ bannerMeta: true;
88
+ }
89
+ }
90
+
42
91
  /**
43
92
  * ROB primary brand colors (Figma node 11-1393).
44
93
  */
@@ -240,6 +289,93 @@ declare const workflowConnectionColors: {
240
289
  readonly error: "#EF4444";
241
290
  };
242
291
 
292
+ /**
293
+ * Spacing and sizing tokens for the design system.
294
+ *
295
+ * Centralizes border-radius, component-specific sizing, and spacing
296
+ * constants that were previously scattered across component files.
297
+ */
298
+ declare const borderRadius: {
299
+ /** Small: alerts, compact elements */
300
+ readonly sm: 8;
301
+ /** Medium: buttons, inputs, selects */
302
+ readonly md: 12;
303
+ /** Large: chips, cards, global default */
304
+ readonly lg: 16;
305
+ /** Extra large: hero surfaces, dialogs */
306
+ readonly xl: 20;
307
+ /** Pill: fully rounded badges, on-gradient buttons */
308
+ readonly pill: 999;
309
+ };
310
+
311
+ /**
312
+ * Motion tokens: durations and easing curves.
313
+ *
314
+ * Marketplace-aligned. Consumed by component animations and emitted as
315
+ * `--dur-*` / `--ease-*` CSS custom properties in `tokens.css`.
316
+ */
317
+ declare const motion: {
318
+ readonly dur: {
319
+ /** Fast: ~120ms. Hover transitions, micro-interactions. */
320
+ readonly fast: "120ms";
321
+ };
322
+ readonly ease: {
323
+ /** Material-style standard easing. */
324
+ readonly standard: "cubic-bezier(0.2, 0, 0, 1)";
325
+ };
326
+ };
327
+
328
+ /**
329
+ * Web surface tokens (marketplace-aligned v2 product palette).
330
+ *
331
+ * Source of truth for the colors/surfaces/strokes/shadows used by the
332
+ * marketplace UI and any other web product surface that shares this look.
333
+ * Emitted as `:root` CSS custom properties via `tokens.css` so consumers
334
+ * stop hand-declaring them in their own `globals.css`.
335
+ *
336
+ * Distinct from `deploymentSurfaceTokens` (deployment dashboard), which has
337
+ * its own design language and predates this surface.
338
+ */
339
+ declare const webSurfaceTokens: {
340
+ readonly cViolet: "#aa44f2";
341
+ readonly cVioletTint: "#a54aff";
342
+ readonly cVioletLight: "#f0e0fb";
343
+ readonly cVioletDark: "#7c59ac";
344
+ readonly cPink: "#f941e6";
345
+ readonly cPinkLight: "#fcdff9";
346
+ readonly cRed: "#ff4f59";
347
+ readonly cGreen: "#49bf63";
348
+ readonly cBlueLight: "#e7f4fe";
349
+ readonly cBlueDark: "#598ab8";
350
+ readonly robFandango: "#BD32A7";
351
+ readonly robElectricViolet: "#8B00EC";
352
+ readonly robUltraViolet: "#6750A4";
353
+ readonly robPeriwinkle: "#D0BCFF";
354
+ readonly robBright1: "#5311e3";
355
+ readonly robNearBlack2: "#0d0627";
356
+ readonly robNearBlack4: "#23194b";
357
+ readonly surfaceLow: "#f5f1f7";
358
+ readonly surfaceMid: "#f5f1f7";
359
+ readonly surfaceHigh: "#fefcff";
360
+ readonly surfaceContrast: "#ffffff";
361
+ readonly bgDefault: "#f5f5f5";
362
+ readonly bgDim: "#e6e0e9";
363
+ readonly bgSuccess: "#eef5f0";
364
+ readonly bgWarning: "#fef8e8";
365
+ readonly bgDanger: "#f9dedc";
366
+ readonly bgDangerStrong: "#8c1d18";
367
+ readonly textPrimary: "#1d1b20";
368
+ readonly textSecondary: "#5f5c64";
369
+ readonly textMuted: "#938f99";
370
+ readonly textLink: "#aa44f2";
371
+ readonly strokeOnLow: "#e6e0e9";
372
+ readonly strokeOnMed: "#dad1e0";
373
+ readonly shadowSm: "0px 2px 8px rgba(0,0,0,0.04)";
374
+ readonly shadowMd: "0px 4px 20px rgba(0,0,0,0.05)";
375
+ readonly shadowFocus: "0 0 0 4px rgba(170,68,242,0.25)";
376
+ };
377
+ type WebSurfaceTokenKey = keyof typeof webSurfaceTokens;
378
+
243
379
  /**
244
380
  * Design system theme barrel.
245
381
  *
@@ -352,6 +488,7 @@ declare const useIsTablet: () => boolean;
352
488
  declare const useIsMobile: () => boolean;
353
489
 
354
490
  type ButtonVariant = 'primary' | 'secondary' | 'tertiary';
491
+ type ButtonTone = 'default' | 'onGradient';
355
492
  interface ButtonProps extends Omit<ButtonProps$1, 'variant' | 'color'> {
356
493
  /**
357
494
  * The visual style variant of the button
@@ -360,6 +497,12 @@ interface ButtonProps extends Omit<ButtonProps$1, 'variant' | 'color'> {
360
497
  * - tertiary: Text button with no background or border
361
498
  */
362
499
  variant?: ButtonVariant;
500
+ /**
501
+ * Tone overlay. `onGradient` re-skins the button as a white pill on a dark
502
+ * gradient surface (banner CTA pattern). Orthogonal to `variant`.
503
+ * @default 'default'
504
+ */
505
+ tone?: ButtonTone;
363
506
  /**
364
507
  * The size of the button
365
508
  */
@@ -455,6 +598,26 @@ interface TextFieldProps extends Omit<TextFieldProps$1, 'size'> {
455
598
  }
456
599
  declare const TextField: React__default.FC<TextFieldProps>;
457
600
 
601
+ interface CopyableFieldProps {
602
+ /** The string copied to the clipboard. Also rendered as the button label. */
603
+ value: string;
604
+ /** Small label rendered above the value (overline-styled). */
605
+ label?: React__default.ReactNode;
606
+ /** Custom aria-label; defaults to "Copy {value}". */
607
+ ariaLabel?: string;
608
+ /** How long the "Copied" flash stays visible, in ms. @default 1400 */
609
+ flashDurationMs?: number;
610
+ /** Text shown during the flash. @default "Copied" */
611
+ flashLabel?: string;
612
+ /** Optional callback invoked after a successful copy. */
613
+ onCopy?: (value: string) => void;
614
+ }
615
+ /**
616
+ * Tinted card with a label row and a monospace, click-to-copy value button.
617
+ * Replaces ad-hoc `.share-card / .url / .share-card__flash` markup.
618
+ */
619
+ declare const CopyableField: React__default.FC<CopyableFieldProps>;
620
+
458
621
  type SearchFieldVariant = 'standard' | 'pill';
459
622
  interface SearchFieldProps extends Omit<TextFieldProps, 'InputProps' | 'variant'> {
460
623
  placeholder?: string;
@@ -463,7 +626,7 @@ interface SearchFieldProps extends Omit<TextFieldProps, 'InputProps' | 'variant'
463
626
  /** Visual treatment. `pill` renders a fully-rounded input. @default 'standard' */
464
627
  variant?: SearchFieldVariant;
465
628
  /**
466
- * Show a keyboard-shortcut hint adornment (⌘K on Mac, Ctrl+K elsewhere) at
629
+ * Show a keyboard-shortcut hint adornment (⌘ K on Mac, Ctrl + K elsewhere) at
467
630
  * the right edge. Pair with `useSearchHotkeys` to wire the key handler.
468
631
  */
469
632
  shortcutHint?: boolean;
@@ -722,6 +885,22 @@ type StepButtonProps = StepButtonProps$1;
722
885
  */
723
886
  declare const StepButton: React__default.FC<StepButtonProps>;
724
887
 
888
+ interface NumberedStepperStep {
889
+ key: string;
890
+ label: string;
891
+ }
892
+ interface NumberedStepperProps {
893
+ steps: NumberedStepperStep[];
894
+ /** Index of the active step. -1 = none active. */
895
+ current: number;
896
+ className?: string;
897
+ }
898
+ /**
899
+ * Vertical numbered stepper used by Try-this-out and similar guided flows.
900
+ * Brand-styled: active rows take the violet palette; completed rows show ✓.
901
+ */
902
+ declare const NumberedStepper: React__default.FC<NumberedStepperProps>;
903
+
725
904
  /**
726
905
  * Type definitions for SideNav components
727
906
  * Side Navigation Bar Component - V1 (Expanded State) & V2 (Collapsed State)
@@ -1241,8 +1420,16 @@ interface ChipVariantStyles {
1241
1420
  */
1242
1421
  declare function getChipVariantStyles(variant: ChipVariant, theme: Theme): ChipVariantStyles;
1243
1422
 
1423
+ type ChipTone = 'default' | 'onGradient';
1244
1424
  interface ChipProps extends Omit<ChipProps$1, 'color' | 'variant'> {
1245
1425
  variant?: ChipVariant;
1426
+ /**
1427
+ * Visual tone overlay. `onGradient` styles the chip to read on a dark
1428
+ * gradient surface (white text, mono caps, translucent border + bg).
1429
+ * Positioning is the consumer's job.
1430
+ * @default 'default'
1431
+ */
1432
+ tone?: ChipTone;
1246
1433
  }
1247
1434
  declare const Chip: React__default.FC<ChipProps>;
1248
1435
 
@@ -1791,13 +1978,15 @@ interface CarouselProps<T> {
1791
1978
  dotColor?: string;
1792
1979
  /** Override the active dot color. Accepts any CSS color string. */
1793
1980
  dotActiveColor?: string;
1981
+ /** Escape hatch for advanced embla options. Most consumers don't need this. */
1982
+ emblaOptions?: EmblaOptionsType;
1794
1983
  }
1795
1984
  /**
1796
1985
  * Carousel — embla-carousel-based slide deck with autoplay, dots, counter,
1797
1986
  * prev/next arrows and pause-on-hover. Generic over slide payload type; the
1798
1987
  * caller decides the slide markup via `renderSlide`.
1799
1988
  */
1800
- declare function Carousel<T>({ slides, renderSlide, getKey, slidesPerView, autoplay, autoplayDelayMs, showDots, showCounter, showArrows, pauseOnHover, ariaLabel, onSelect, arrowSx, dotColor, dotActiveColor, }: CarouselProps<T>): react_jsx_runtime.JSX.Element | null;
1989
+ declare function Carousel<T>({ slides, renderSlide, getKey, slidesPerView, autoplay, autoplayDelayMs, showDots, showCounter, showArrows, pauseOnHover, ariaLabel, onSelect, arrowSx, dotColor, dotActiveColor, emblaOptions, }: CarouselProps<T>): react_jsx_runtime.JSX.Element | null;
1801
1990
 
1802
1991
  /** Number of distinct gradient palettes. Useful for sizing slide cycles deterministically. */
1803
1992
  declare const GRADIENT_PALETTE_COUNT: 6;
@@ -1886,6 +2075,27 @@ interface PanelDialogProps {
1886
2075
  */
1887
2076
  declare function PanelDialog({ open, onClose, title, headerActions, width, side, ariaLabel, hideHeader, paperSx, backdropSx, transition, children, }: PanelDialogProps): react_jsx_runtime.JSX.Element;
1888
2077
 
2078
+ interface SplitDialogContentProps {
2079
+ left: React__default.ReactNode;
2080
+ right: React__default.ReactNode;
2081
+ /** Width of the right (aside) column in px. @default 320 */
2082
+ rightWidth?: number;
2083
+ /** Viewport breakpoint (px) below which the layout collapses to one column. @default 860 */
2084
+ collapseBelow?: number;
2085
+ sx?: SxProps<Theme>;
2086
+ }
2087
+ /**
2088
+ * Two-column dialog body used by detail / info modals: primary content on
2089
+ * the left, sticky meta panel on the right. Collapses to a single column on
2090
+ * narrow viewports.
2091
+ *
2092
+ * Compose inside a `<PanelDialog>`:
2093
+ * <PanelDialog ...>
2094
+ * <SplitDialogContent left={...} right={...} />
2095
+ * </PanelDialog>
2096
+ */
2097
+ declare const SplitDialogContent: React__default.FC<SplitDialogContentProps>;
2098
+
1889
2099
  type CardMediaProps = CardMediaProps$1;
1890
2100
  declare const CardMedia: React__default.FC<CardMediaProps>;
1891
2101
  type CardVariant = 'standard' | 'tinted' | 'outlined';
@@ -3316,4 +3526,4 @@ interface CodeEditorWorkspaceProps extends Pick<UseCodeEditorWorkspaceOptions, '
3316
3526
  */
3317
3527
  declare const CodeEditorWorkspace: React__default.FC<CodeEditorWorkspaceProps>;
3318
3528
 
3319
- export { Accordion, type AccordionProps, AccountSection, type AccountSectionProps, ActivityAppIcon, Alert, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, AppLoading, type AppLoadingProps, Avatar, AvatarIcon, type AvatarProps, Badge, type BadgeProps, BarTrackingIcon, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, BytesSize, type BytesSizeProps, Card, CardActions, CardContent, CardHeader, CardMedia, type CardMediaProps, type CardProps, type CardVariant, Carousel, type CarouselProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipVariant, type ChipVariantStyles, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorFile, CodeEditorFileTree, type CodeEditorFileTreeProps, type CodeEditorLanguage, type CodeEditorProps, CodeEditorStatusBar, type CodeEditorStatusBarItem, type CodeEditorStatusBarProps, type CodeEditorStatusBarRenderProps, type CodeEditorTab, type CodeEditorTabRenderProps, CodeEditorTabs, type CodeEditorTabsProps, CodeEditorWelcomeScreen, type CodeEditorWelcomeScreenProps, CodeEditorWorkspace, type CodeEditorWorkspaceProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, CopyChip, type CopyChipProps, type DataPoint, type DataSeries, DateRangePicker, type DateRangePickerProps, DecentralizedServerIcon, DefinitionRow, type DefinitionRowProps, type DeploymentCardAction, DeploymentDashboardCard, type DeploymentDashboardCardProps, DeploymentDashboardPanel, type DeploymentDashboardPanelProps, DeploymentDashboardTree, type DeploymentDashboardTreeProps, DeploymentEntityContextMenu, type DeploymentEntityContextMenuProps, type DeploymentEntityType, type DeploymentStatusIndicator, type DeploymentTreeNode, Dialog, type DialogProps, DiscordIcon, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, type DrawerWidth, type DrawerWidthValue, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EXTENSION_LANGUAGE_MAP, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, type FileTreeNode, type FileTreeNodeRenderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GRADIENT_PALETTE_COUNT, type GitInfo, GithubLogoIcon, GradientSurface, type GradientSurfaceProps, IDBlock, type IDBlockProps, IconButton, type IconButtonProps, LeftArrowIcon, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Loading, LoadingAnimation, type LoadingAnimationProps, LoadingButton, type LoadingButtonProps, type LoadingProps, Logo, type LogoProps, Markdown, type MarkdownProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MetaField, type MetaFieldProps, MetricsChart, type MetricsChartProps, type MetricsPeriod, NavigationItem, type NavigationItemProps, NavigationList, type NavigationListProps, OnboardingProvider, Pagination, type PaginationProps, PanelDialog, type PanelDialogProps, type PanelDialogSide, type PanelDialogWidth, Paper, type PaperProps, PeriodSelect, type PrimaryAction, Progress, type ProgressProps, QRCode, type QRCodeProps, Radio, type RadioProps, type ResponsiveDrawerWidth, RightArrowIcon, RoleBadge, type RoleBadgeColor, type RoleBadgeProps, type RoleBadgeSize, ScrollableRow, type ScrollableRowProps, SearchField, type SearchFieldProps, type SearchFieldVariant, SectionRow, type SectionRowProps, Selector, type SelectorOption, type SelectorProps, type Service, ServiceSelectorButton, type ServiceSelectorButtonProps, ShareIcon, SideNav, SideNavHeader, type SideNavHeaderProps, type SideNavProps, Sidebar, SidebarItem, type SidebarItemProps, type SidebarProps, Snackbar, type SnackbarProps, StatusDot, type StatusDotProps, type StatusDotStatus, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, StorageAppIcon, type SummaryItem, SummaryStats, type SummaryStatsProps, Switch, type SwitchProps, Tab, type TabProps, Table, TableHeader, type TableHeaderProps, type TableProps, TextField, type TextFieldProps, type TimeRangeOption, TimeRangeSelect, type TimeRangeSelectProps, TimeSeriesGraph, type TimeSeriesGraphProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, Truncate, type TruncateProps, UploadFileIcon, UploadFolderIcon, type UseCodeEditorWorkspaceOptions, type UseCodeEditorWorkspaceReturn, type UserInfo, WORKFLOW_NODE_LABELS, WORKFLOW_NODE_SHADOW, WorkflowNode, type WorkflowNodeData, WorkflowNodeHandle, type WorkflowNodeProps, type WorkflowNodeType, WorkflowSideInspector, type WorkflowSideInspectorProps, WorkflowTimeBar, type WorkflowTimeBarProps, WorkflowTopBar, type WorkflowTopBarProps, type Workspace, WorkspaceSelectorButton, type WorkspaceSelectorButtonProps, colors, contextMenuItems, detectLanguage, getChipVariantStyles, getFileName, resolveDrawerWidth, robPaletteExtended, robPrimaryPalette, theme, useCodeEditorWorkspace, useIsDesktop, useIsMobile, useIsTablet, useOnboarding, useSearchHotkeys, workflowConnectionColors, workflowNodeColors };
3529
+ export { Accordion, type AccordionProps, AccountSection, type AccountSectionProps, ActivityAppIcon, Alert, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, AppLoading, type AppLoadingProps, Avatar, AvatarIcon, type AvatarProps, Badge, type BadgeProps, BarTrackingIcon, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonTone, type ButtonVariant, BytesSize, type BytesSizeProps, Card, CardActions, CardContent, CardHeader, CardMedia, type CardMediaProps, type CardProps, type CardVariant, Carousel, type CarouselProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipTone, type ChipVariant, type ChipVariantStyles, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorFile, CodeEditorFileTree, type CodeEditorFileTreeProps, type CodeEditorLanguage, type CodeEditorProps, CodeEditorStatusBar, type CodeEditorStatusBarItem, type CodeEditorStatusBarProps, type CodeEditorStatusBarRenderProps, type CodeEditorTab, type CodeEditorTabRenderProps, CodeEditorTabs, type CodeEditorTabsProps, CodeEditorWelcomeScreen, type CodeEditorWelcomeScreenProps, CodeEditorWorkspace, type CodeEditorWorkspaceProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, CopyChip, type CopyChipProps, CopyableField, type CopyableFieldProps, type DataPoint, type DataSeries, DateRangePicker, type DateRangePickerProps, DecentralizedServerIcon, DefinitionRow, type DefinitionRowProps, type DeploymentCardAction, DeploymentDashboardCard, type DeploymentDashboardCardProps, DeploymentDashboardPanel, type DeploymentDashboardPanelProps, DeploymentDashboardTree, type DeploymentDashboardTreeProps, DeploymentEntityContextMenu, type DeploymentEntityContextMenuProps, type DeploymentEntityType, type DeploymentStatusIndicator, type DeploymentTreeNode, Dialog, type DialogProps, DiscordIcon, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, type DrawerWidth, type DrawerWidthValue, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EXTENSION_LANGUAGE_MAP, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, type FileTreeNode, type FileTreeNodeRenderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GRADIENT_PALETTE_COUNT, type GitInfo, GithubLogoIcon, GradientSurface, type GradientSurfaceProps, IDBlock, type IDBlockProps, IconButton, type IconButtonProps, LeftArrowIcon, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Loading, LoadingAnimation, type LoadingAnimationProps, LoadingButton, type LoadingButtonProps, type LoadingProps, Logo, type LogoProps, Markdown, type MarkdownProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MetaField, type MetaFieldProps, MetricsChart, type MetricsChartProps, type MetricsPeriod, NavigationItem, type NavigationItemProps, NavigationList, type NavigationListProps, NumberedStepper, type NumberedStepperProps, type NumberedStepperStep, OnboardingProvider, Pagination, type PaginationProps, PanelDialog, type PanelDialogProps, type PanelDialogSide, type PanelDialogWidth, Paper, type PaperProps, PeriodSelect, type PrimaryAction, Progress, type ProgressProps, QRCode, type QRCodeProps, Radio, type RadioProps, type ResponsiveDrawerWidth, RightArrowIcon, RoleBadge, type RoleBadgeColor, type RoleBadgeProps, type RoleBadgeSize, ScrollableRow, type ScrollableRowProps, SearchField, type SearchFieldProps, type SearchFieldVariant, SectionRow, type SectionRowProps, Selector, type SelectorOption, type SelectorProps, type Service, ServiceSelectorButton, type ServiceSelectorButtonProps, ShareIcon, SideNav, SideNavHeader, type SideNavHeaderProps, type SideNavProps, Sidebar, SidebarItem, type SidebarItemProps, type SidebarProps, Snackbar, type SnackbarProps, SplitDialogContent, type SplitDialogContentProps, StatusDot, type StatusDotProps, type StatusDotStatus, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, StorageAppIcon, type SummaryItem, SummaryStats, type SummaryStatsProps, Switch, type SwitchProps, Tab, type TabProps, Table, TableHeader, type TableHeaderProps, type TableProps, TextField, type TextFieldProps, type TimeRangeOption, TimeRangeSelect, type TimeRangeSelectProps, TimeSeriesGraph, type TimeSeriesGraphProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, Truncate, type TruncateProps, UploadFileIcon, UploadFolderIcon, type UseCodeEditorWorkspaceOptions, type UseCodeEditorWorkspaceReturn, type UserInfo, WORKFLOW_NODE_LABELS, WORKFLOW_NODE_SHADOW, type WebSurfaceTokenKey, WorkflowNode, type WorkflowNodeData, WorkflowNodeHandle, type WorkflowNodeProps, type WorkflowNodeType, WorkflowSideInspector, type WorkflowSideInspectorProps, WorkflowTimeBar, type WorkflowTimeBarProps, WorkflowTopBar, type WorkflowTopBarProps, type Workspace, WorkspaceSelectorButton, type WorkspaceSelectorButtonProps, borderRadius, colors, contextMenuItems, detectLanguage, getChipVariantStyles, getFileName, motion, resolveDrawerWidth, robPaletteExtended, robPrimaryPalette, theme, useCodeEditorWorkspace, useIsDesktop, useIsMobile, useIsTablet, useOnboarding, useSearchHotkeys, webSurfaceTokens, workflowConnectionColors, workflowNodeColors };
package/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ import { TooltipProps as TooltipProps$1 } from '@mui/material/Tooltip';
21
21
  import { AlertProps as AlertProps$1 } from '@mui/material/Alert';
22
22
  import { SnackbarProps as SnackbarProps$1 } from '@mui/material/Snackbar';
23
23
  import { DrawerProps as DrawerProps$1 } from '@mui/material/Drawer';
24
+ import { EmblaOptionsType } from 'embla-carousel';
24
25
  import { CardProps as CardProps$1 } from '@mui/material/Card';
25
26
  import { CardContentProps } from '@mui/material/CardContent';
26
27
  import { CardHeaderProps } from '@mui/material/CardHeader';
@@ -39,6 +40,54 @@ import { Monaco } from '@monaco-editor/react';
39
40
  import { editor } from 'monaco-editor';
40
41
  export { default as RadioGroup } from '@mui/material/RadioGroup';
41
42
 
43
+ /**
44
+ * Module augmentation for the custom typography variants defined in
45
+ * `typography.ts` (eyebrow, lede, panelTitle, footnote, mono, banner*).
46
+ *
47
+ * Side-effect import only — pulled in from `theme/index.ts` so the types
48
+ * are visible wherever the DS theme is consumed.
49
+ */
50
+ declare module '@mui/material/styles' {
51
+ interface TypographyVariants {
52
+ eyebrow: React.CSSProperties;
53
+ lede: React.CSSProperties;
54
+ panelTitle: React.CSSProperties;
55
+ footnote: React.CSSProperties;
56
+ mono: React.CSSProperties;
57
+ bannerEyebrow: React.CSSProperties;
58
+ bannerTitle: React.CSSProperties;
59
+ bannerBy: React.CSSProperties;
60
+ bannerDesc: React.CSSProperties;
61
+ bannerMeta: React.CSSProperties;
62
+ }
63
+ interface TypographyVariantsOptions {
64
+ eyebrow?: React.CSSProperties;
65
+ lede?: React.CSSProperties;
66
+ panelTitle?: React.CSSProperties;
67
+ footnote?: React.CSSProperties;
68
+ mono?: React.CSSProperties;
69
+ bannerEyebrow?: React.CSSProperties;
70
+ bannerTitle?: React.CSSProperties;
71
+ bannerBy?: React.CSSProperties;
72
+ bannerDesc?: React.CSSProperties;
73
+ bannerMeta?: React.CSSProperties;
74
+ }
75
+ }
76
+ declare module '@mui/material/Typography' {
77
+ interface TypographyPropsVariantOverrides {
78
+ eyebrow: true;
79
+ lede: true;
80
+ panelTitle: true;
81
+ footnote: true;
82
+ mono: true;
83
+ bannerEyebrow: true;
84
+ bannerTitle: true;
85
+ bannerBy: true;
86
+ bannerDesc: true;
87
+ bannerMeta: true;
88
+ }
89
+ }
90
+
42
91
  /**
43
92
  * ROB primary brand colors (Figma node 11-1393).
44
93
  */
@@ -240,6 +289,93 @@ declare const workflowConnectionColors: {
240
289
  readonly error: "#EF4444";
241
290
  };
242
291
 
292
+ /**
293
+ * Spacing and sizing tokens for the design system.
294
+ *
295
+ * Centralizes border-radius, component-specific sizing, and spacing
296
+ * constants that were previously scattered across component files.
297
+ */
298
+ declare const borderRadius: {
299
+ /** Small: alerts, compact elements */
300
+ readonly sm: 8;
301
+ /** Medium: buttons, inputs, selects */
302
+ readonly md: 12;
303
+ /** Large: chips, cards, global default */
304
+ readonly lg: 16;
305
+ /** Extra large: hero surfaces, dialogs */
306
+ readonly xl: 20;
307
+ /** Pill: fully rounded badges, on-gradient buttons */
308
+ readonly pill: 999;
309
+ };
310
+
311
+ /**
312
+ * Motion tokens: durations and easing curves.
313
+ *
314
+ * Marketplace-aligned. Consumed by component animations and emitted as
315
+ * `--dur-*` / `--ease-*` CSS custom properties in `tokens.css`.
316
+ */
317
+ declare const motion: {
318
+ readonly dur: {
319
+ /** Fast: ~120ms. Hover transitions, micro-interactions. */
320
+ readonly fast: "120ms";
321
+ };
322
+ readonly ease: {
323
+ /** Material-style standard easing. */
324
+ readonly standard: "cubic-bezier(0.2, 0, 0, 1)";
325
+ };
326
+ };
327
+
328
+ /**
329
+ * Web surface tokens (marketplace-aligned v2 product palette).
330
+ *
331
+ * Source of truth for the colors/surfaces/strokes/shadows used by the
332
+ * marketplace UI and any other web product surface that shares this look.
333
+ * Emitted as `:root` CSS custom properties via `tokens.css` so consumers
334
+ * stop hand-declaring them in their own `globals.css`.
335
+ *
336
+ * Distinct from `deploymentSurfaceTokens` (deployment dashboard), which has
337
+ * its own design language and predates this surface.
338
+ */
339
+ declare const webSurfaceTokens: {
340
+ readonly cViolet: "#aa44f2";
341
+ readonly cVioletTint: "#a54aff";
342
+ readonly cVioletLight: "#f0e0fb";
343
+ readonly cVioletDark: "#7c59ac";
344
+ readonly cPink: "#f941e6";
345
+ readonly cPinkLight: "#fcdff9";
346
+ readonly cRed: "#ff4f59";
347
+ readonly cGreen: "#49bf63";
348
+ readonly cBlueLight: "#e7f4fe";
349
+ readonly cBlueDark: "#598ab8";
350
+ readonly robFandango: "#BD32A7";
351
+ readonly robElectricViolet: "#8B00EC";
352
+ readonly robUltraViolet: "#6750A4";
353
+ readonly robPeriwinkle: "#D0BCFF";
354
+ readonly robBright1: "#5311e3";
355
+ readonly robNearBlack2: "#0d0627";
356
+ readonly robNearBlack4: "#23194b";
357
+ readonly surfaceLow: "#f5f1f7";
358
+ readonly surfaceMid: "#f5f1f7";
359
+ readonly surfaceHigh: "#fefcff";
360
+ readonly surfaceContrast: "#ffffff";
361
+ readonly bgDefault: "#f5f5f5";
362
+ readonly bgDim: "#e6e0e9";
363
+ readonly bgSuccess: "#eef5f0";
364
+ readonly bgWarning: "#fef8e8";
365
+ readonly bgDanger: "#f9dedc";
366
+ readonly bgDangerStrong: "#8c1d18";
367
+ readonly textPrimary: "#1d1b20";
368
+ readonly textSecondary: "#5f5c64";
369
+ readonly textMuted: "#938f99";
370
+ readonly textLink: "#aa44f2";
371
+ readonly strokeOnLow: "#e6e0e9";
372
+ readonly strokeOnMed: "#dad1e0";
373
+ readonly shadowSm: "0px 2px 8px rgba(0,0,0,0.04)";
374
+ readonly shadowMd: "0px 4px 20px rgba(0,0,0,0.05)";
375
+ readonly shadowFocus: "0 0 0 4px rgba(170,68,242,0.25)";
376
+ };
377
+ type WebSurfaceTokenKey = keyof typeof webSurfaceTokens;
378
+
243
379
  /**
244
380
  * Design system theme barrel.
245
381
  *
@@ -352,6 +488,7 @@ declare const useIsTablet: () => boolean;
352
488
  declare const useIsMobile: () => boolean;
353
489
 
354
490
  type ButtonVariant = 'primary' | 'secondary' | 'tertiary';
491
+ type ButtonTone = 'default' | 'onGradient';
355
492
  interface ButtonProps extends Omit<ButtonProps$1, 'variant' | 'color'> {
356
493
  /**
357
494
  * The visual style variant of the button
@@ -360,6 +497,12 @@ interface ButtonProps extends Omit<ButtonProps$1, 'variant' | 'color'> {
360
497
  * - tertiary: Text button with no background or border
361
498
  */
362
499
  variant?: ButtonVariant;
500
+ /**
501
+ * Tone overlay. `onGradient` re-skins the button as a white pill on a dark
502
+ * gradient surface (banner CTA pattern). Orthogonal to `variant`.
503
+ * @default 'default'
504
+ */
505
+ tone?: ButtonTone;
363
506
  /**
364
507
  * The size of the button
365
508
  */
@@ -455,6 +598,26 @@ interface TextFieldProps extends Omit<TextFieldProps$1, 'size'> {
455
598
  }
456
599
  declare const TextField: React__default.FC<TextFieldProps>;
457
600
 
601
+ interface CopyableFieldProps {
602
+ /** The string copied to the clipboard. Also rendered as the button label. */
603
+ value: string;
604
+ /** Small label rendered above the value (overline-styled). */
605
+ label?: React__default.ReactNode;
606
+ /** Custom aria-label; defaults to "Copy {value}". */
607
+ ariaLabel?: string;
608
+ /** How long the "Copied" flash stays visible, in ms. @default 1400 */
609
+ flashDurationMs?: number;
610
+ /** Text shown during the flash. @default "Copied" */
611
+ flashLabel?: string;
612
+ /** Optional callback invoked after a successful copy. */
613
+ onCopy?: (value: string) => void;
614
+ }
615
+ /**
616
+ * Tinted card with a label row and a monospace, click-to-copy value button.
617
+ * Replaces ad-hoc `.share-card / .url / .share-card__flash` markup.
618
+ */
619
+ declare const CopyableField: React__default.FC<CopyableFieldProps>;
620
+
458
621
  type SearchFieldVariant = 'standard' | 'pill';
459
622
  interface SearchFieldProps extends Omit<TextFieldProps, 'InputProps' | 'variant'> {
460
623
  placeholder?: string;
@@ -463,7 +626,7 @@ interface SearchFieldProps extends Omit<TextFieldProps, 'InputProps' | 'variant'
463
626
  /** Visual treatment. `pill` renders a fully-rounded input. @default 'standard' */
464
627
  variant?: SearchFieldVariant;
465
628
  /**
466
- * Show a keyboard-shortcut hint adornment (⌘K on Mac, Ctrl+K elsewhere) at
629
+ * Show a keyboard-shortcut hint adornment (⌘ K on Mac, Ctrl + K elsewhere) at
467
630
  * the right edge. Pair with `useSearchHotkeys` to wire the key handler.
468
631
  */
469
632
  shortcutHint?: boolean;
@@ -722,6 +885,22 @@ type StepButtonProps = StepButtonProps$1;
722
885
  */
723
886
  declare const StepButton: React__default.FC<StepButtonProps>;
724
887
 
888
+ interface NumberedStepperStep {
889
+ key: string;
890
+ label: string;
891
+ }
892
+ interface NumberedStepperProps {
893
+ steps: NumberedStepperStep[];
894
+ /** Index of the active step. -1 = none active. */
895
+ current: number;
896
+ className?: string;
897
+ }
898
+ /**
899
+ * Vertical numbered stepper used by Try-this-out and similar guided flows.
900
+ * Brand-styled: active rows take the violet palette; completed rows show ✓.
901
+ */
902
+ declare const NumberedStepper: React__default.FC<NumberedStepperProps>;
903
+
725
904
  /**
726
905
  * Type definitions for SideNav components
727
906
  * Side Navigation Bar Component - V1 (Expanded State) & V2 (Collapsed State)
@@ -1241,8 +1420,16 @@ interface ChipVariantStyles {
1241
1420
  */
1242
1421
  declare function getChipVariantStyles(variant: ChipVariant, theme: Theme): ChipVariantStyles;
1243
1422
 
1423
+ type ChipTone = 'default' | 'onGradient';
1244
1424
  interface ChipProps extends Omit<ChipProps$1, 'color' | 'variant'> {
1245
1425
  variant?: ChipVariant;
1426
+ /**
1427
+ * Visual tone overlay. `onGradient` styles the chip to read on a dark
1428
+ * gradient surface (white text, mono caps, translucent border + bg).
1429
+ * Positioning is the consumer's job.
1430
+ * @default 'default'
1431
+ */
1432
+ tone?: ChipTone;
1246
1433
  }
1247
1434
  declare const Chip: React__default.FC<ChipProps>;
1248
1435
 
@@ -1791,13 +1978,15 @@ interface CarouselProps<T> {
1791
1978
  dotColor?: string;
1792
1979
  /** Override the active dot color. Accepts any CSS color string. */
1793
1980
  dotActiveColor?: string;
1981
+ /** Escape hatch for advanced embla options. Most consumers don't need this. */
1982
+ emblaOptions?: EmblaOptionsType;
1794
1983
  }
1795
1984
  /**
1796
1985
  * Carousel — embla-carousel-based slide deck with autoplay, dots, counter,
1797
1986
  * prev/next arrows and pause-on-hover. Generic over slide payload type; the
1798
1987
  * caller decides the slide markup via `renderSlide`.
1799
1988
  */
1800
- declare function Carousel<T>({ slides, renderSlide, getKey, slidesPerView, autoplay, autoplayDelayMs, showDots, showCounter, showArrows, pauseOnHover, ariaLabel, onSelect, arrowSx, dotColor, dotActiveColor, }: CarouselProps<T>): react_jsx_runtime.JSX.Element | null;
1989
+ declare function Carousel<T>({ slides, renderSlide, getKey, slidesPerView, autoplay, autoplayDelayMs, showDots, showCounter, showArrows, pauseOnHover, ariaLabel, onSelect, arrowSx, dotColor, dotActiveColor, emblaOptions, }: CarouselProps<T>): react_jsx_runtime.JSX.Element | null;
1801
1990
 
1802
1991
  /** Number of distinct gradient palettes. Useful for sizing slide cycles deterministically. */
1803
1992
  declare const GRADIENT_PALETTE_COUNT: 6;
@@ -1886,6 +2075,27 @@ interface PanelDialogProps {
1886
2075
  */
1887
2076
  declare function PanelDialog({ open, onClose, title, headerActions, width, side, ariaLabel, hideHeader, paperSx, backdropSx, transition, children, }: PanelDialogProps): react_jsx_runtime.JSX.Element;
1888
2077
 
2078
+ interface SplitDialogContentProps {
2079
+ left: React__default.ReactNode;
2080
+ right: React__default.ReactNode;
2081
+ /** Width of the right (aside) column in px. @default 320 */
2082
+ rightWidth?: number;
2083
+ /** Viewport breakpoint (px) below which the layout collapses to one column. @default 860 */
2084
+ collapseBelow?: number;
2085
+ sx?: SxProps<Theme>;
2086
+ }
2087
+ /**
2088
+ * Two-column dialog body used by detail / info modals: primary content on
2089
+ * the left, sticky meta panel on the right. Collapses to a single column on
2090
+ * narrow viewports.
2091
+ *
2092
+ * Compose inside a `<PanelDialog>`:
2093
+ * <PanelDialog ...>
2094
+ * <SplitDialogContent left={...} right={...} />
2095
+ * </PanelDialog>
2096
+ */
2097
+ declare const SplitDialogContent: React__default.FC<SplitDialogContentProps>;
2098
+
1889
2099
  type CardMediaProps = CardMediaProps$1;
1890
2100
  declare const CardMedia: React__default.FC<CardMediaProps>;
1891
2101
  type CardVariant = 'standard' | 'tinted' | 'outlined';
@@ -3316,4 +3526,4 @@ interface CodeEditorWorkspaceProps extends Pick<UseCodeEditorWorkspaceOptions, '
3316
3526
  */
3317
3527
  declare const CodeEditorWorkspace: React__default.FC<CodeEditorWorkspaceProps>;
3318
3528
 
3319
- export { Accordion, type AccordionProps, AccountSection, type AccountSectionProps, ActivityAppIcon, Alert, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, AppLoading, type AppLoadingProps, Avatar, AvatarIcon, type AvatarProps, Badge, type BadgeProps, BarTrackingIcon, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, BytesSize, type BytesSizeProps, Card, CardActions, CardContent, CardHeader, CardMedia, type CardMediaProps, type CardProps, type CardVariant, Carousel, type CarouselProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipVariant, type ChipVariantStyles, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorFile, CodeEditorFileTree, type CodeEditorFileTreeProps, type CodeEditorLanguage, type CodeEditorProps, CodeEditorStatusBar, type CodeEditorStatusBarItem, type CodeEditorStatusBarProps, type CodeEditorStatusBarRenderProps, type CodeEditorTab, type CodeEditorTabRenderProps, CodeEditorTabs, type CodeEditorTabsProps, CodeEditorWelcomeScreen, type CodeEditorWelcomeScreenProps, CodeEditorWorkspace, type CodeEditorWorkspaceProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, CopyChip, type CopyChipProps, type DataPoint, type DataSeries, DateRangePicker, type DateRangePickerProps, DecentralizedServerIcon, DefinitionRow, type DefinitionRowProps, type DeploymentCardAction, DeploymentDashboardCard, type DeploymentDashboardCardProps, DeploymentDashboardPanel, type DeploymentDashboardPanelProps, DeploymentDashboardTree, type DeploymentDashboardTreeProps, DeploymentEntityContextMenu, type DeploymentEntityContextMenuProps, type DeploymentEntityType, type DeploymentStatusIndicator, type DeploymentTreeNode, Dialog, type DialogProps, DiscordIcon, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, type DrawerWidth, type DrawerWidthValue, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EXTENSION_LANGUAGE_MAP, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, type FileTreeNode, type FileTreeNodeRenderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GRADIENT_PALETTE_COUNT, type GitInfo, GithubLogoIcon, GradientSurface, type GradientSurfaceProps, IDBlock, type IDBlockProps, IconButton, type IconButtonProps, LeftArrowIcon, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Loading, LoadingAnimation, type LoadingAnimationProps, LoadingButton, type LoadingButtonProps, type LoadingProps, Logo, type LogoProps, Markdown, type MarkdownProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MetaField, type MetaFieldProps, MetricsChart, type MetricsChartProps, type MetricsPeriod, NavigationItem, type NavigationItemProps, NavigationList, type NavigationListProps, OnboardingProvider, Pagination, type PaginationProps, PanelDialog, type PanelDialogProps, type PanelDialogSide, type PanelDialogWidth, Paper, type PaperProps, PeriodSelect, type PrimaryAction, Progress, type ProgressProps, QRCode, type QRCodeProps, Radio, type RadioProps, type ResponsiveDrawerWidth, RightArrowIcon, RoleBadge, type RoleBadgeColor, type RoleBadgeProps, type RoleBadgeSize, ScrollableRow, type ScrollableRowProps, SearchField, type SearchFieldProps, type SearchFieldVariant, SectionRow, type SectionRowProps, Selector, type SelectorOption, type SelectorProps, type Service, ServiceSelectorButton, type ServiceSelectorButtonProps, ShareIcon, SideNav, SideNavHeader, type SideNavHeaderProps, type SideNavProps, Sidebar, SidebarItem, type SidebarItemProps, type SidebarProps, Snackbar, type SnackbarProps, StatusDot, type StatusDotProps, type StatusDotStatus, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, StorageAppIcon, type SummaryItem, SummaryStats, type SummaryStatsProps, Switch, type SwitchProps, Tab, type TabProps, Table, TableHeader, type TableHeaderProps, type TableProps, TextField, type TextFieldProps, type TimeRangeOption, TimeRangeSelect, type TimeRangeSelectProps, TimeSeriesGraph, type TimeSeriesGraphProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, Truncate, type TruncateProps, UploadFileIcon, UploadFolderIcon, type UseCodeEditorWorkspaceOptions, type UseCodeEditorWorkspaceReturn, type UserInfo, WORKFLOW_NODE_LABELS, WORKFLOW_NODE_SHADOW, WorkflowNode, type WorkflowNodeData, WorkflowNodeHandle, type WorkflowNodeProps, type WorkflowNodeType, WorkflowSideInspector, type WorkflowSideInspectorProps, WorkflowTimeBar, type WorkflowTimeBarProps, WorkflowTopBar, type WorkflowTopBarProps, type Workspace, WorkspaceSelectorButton, type WorkspaceSelectorButtonProps, colors, contextMenuItems, detectLanguage, getChipVariantStyles, getFileName, resolveDrawerWidth, robPaletteExtended, robPrimaryPalette, theme, useCodeEditorWorkspace, useIsDesktop, useIsMobile, useIsTablet, useOnboarding, useSearchHotkeys, workflowConnectionColors, workflowNodeColors };
3529
+ export { Accordion, type AccordionProps, AccountSection, type AccountSectionProps, ActivityAppIcon, Alert, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, AppLoading, type AppLoadingProps, Avatar, AvatarIcon, type AvatarProps, Badge, type BadgeProps, BarTrackingIcon, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonTone, type ButtonVariant, BytesSize, type BytesSizeProps, Card, CardActions, CardContent, CardHeader, CardMedia, type CardMediaProps, type CardProps, type CardVariant, Carousel, type CarouselProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipTone, type ChipVariant, type ChipVariantStyles, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorFile, CodeEditorFileTree, type CodeEditorFileTreeProps, type CodeEditorLanguage, type CodeEditorProps, CodeEditorStatusBar, type CodeEditorStatusBarItem, type CodeEditorStatusBarProps, type CodeEditorStatusBarRenderProps, type CodeEditorTab, type CodeEditorTabRenderProps, CodeEditorTabs, type CodeEditorTabsProps, CodeEditorWelcomeScreen, type CodeEditorWelcomeScreenProps, CodeEditorWorkspace, type CodeEditorWorkspaceProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, CopyChip, type CopyChipProps, CopyableField, type CopyableFieldProps, type DataPoint, type DataSeries, DateRangePicker, type DateRangePickerProps, DecentralizedServerIcon, DefinitionRow, type DefinitionRowProps, type DeploymentCardAction, DeploymentDashboardCard, type DeploymentDashboardCardProps, DeploymentDashboardPanel, type DeploymentDashboardPanelProps, DeploymentDashboardTree, type DeploymentDashboardTreeProps, DeploymentEntityContextMenu, type DeploymentEntityContextMenuProps, type DeploymentEntityType, type DeploymentStatusIndicator, type DeploymentTreeNode, Dialog, type DialogProps, DiscordIcon, Divider, type DividerProps, DownloadIcon, Drawer, type DrawerProps, type DrawerWidth, type DrawerWidthValue, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EXTENSION_LANGUAGE_MAP, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, type FileTreeNode, type FileTreeNodeRenderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GRADIENT_PALETTE_COUNT, type GitInfo, GithubLogoIcon, GradientSurface, type GradientSurfaceProps, IDBlock, type IDBlockProps, IconButton, type IconButtonProps, LeftArrowIcon, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Loading, LoadingAnimation, type LoadingAnimationProps, LoadingButton, type LoadingButtonProps, type LoadingProps, Logo, type LogoProps, Markdown, type MarkdownProps, Menu, MenuItem, type MenuItemProps, type MenuProps, MetaField, type MetaFieldProps, MetricsChart, type MetricsChartProps, type MetricsPeriod, NavigationItem, type NavigationItemProps, NavigationList, type NavigationListProps, NumberedStepper, type NumberedStepperProps, type NumberedStepperStep, OnboardingProvider, Pagination, type PaginationProps, PanelDialog, type PanelDialogProps, type PanelDialogSide, type PanelDialogWidth, Paper, type PaperProps, PeriodSelect, type PrimaryAction, Progress, type ProgressProps, QRCode, type QRCodeProps, Radio, type RadioProps, type ResponsiveDrawerWidth, RightArrowIcon, RoleBadge, type RoleBadgeColor, type RoleBadgeProps, type RoleBadgeSize, ScrollableRow, type ScrollableRowProps, SearchField, type SearchFieldProps, type SearchFieldVariant, SectionRow, type SectionRowProps, Selector, type SelectorOption, type SelectorProps, type Service, ServiceSelectorButton, type ServiceSelectorButtonProps, ShareIcon, SideNav, SideNavHeader, type SideNavHeaderProps, type SideNavProps, Sidebar, SidebarItem, type SidebarItemProps, type SidebarProps, Snackbar, type SnackbarProps, SplitDialogContent, type SplitDialogContentProps, StatusDot, type StatusDotProps, type StatusDotStatus, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, StorageAppIcon, type SummaryItem, SummaryStats, type SummaryStatsProps, Switch, type SwitchProps, Tab, type TabProps, Table, TableHeader, type TableHeaderProps, type TableProps, TextField, type TextFieldProps, type TimeRangeOption, TimeRangeSelect, type TimeRangeSelectProps, TimeSeriesGraph, type TimeSeriesGraphProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, Truncate, type TruncateProps, UploadFileIcon, UploadFolderIcon, type UseCodeEditorWorkspaceOptions, type UseCodeEditorWorkspaceReturn, type UserInfo, WORKFLOW_NODE_LABELS, WORKFLOW_NODE_SHADOW, type WebSurfaceTokenKey, WorkflowNode, type WorkflowNodeData, WorkflowNodeHandle, type WorkflowNodeProps, type WorkflowNodeType, WorkflowSideInspector, type WorkflowSideInspectorProps, WorkflowTimeBar, type WorkflowTimeBarProps, WorkflowTopBar, type WorkflowTopBarProps, type Workspace, WorkspaceSelectorButton, type WorkspaceSelectorButtonProps, borderRadius, colors, contextMenuItems, detectLanguage, getChipVariantStyles, getFileName, motion, resolveDrawerWidth, robPaletteExtended, robPrimaryPalette, theme, useCodeEditorWorkspace, useIsDesktop, useIsMobile, useIsTablet, useOnboarding, useSearchHotkeys, webSurfaceTokens, workflowConnectionColors, workflowNodeColors };