@cere/cere-design-system 0.0.20 → 0.0.21
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 +4 -21
- package/dist/index.d.ts +4 -21
- package/dist/index.js +905 -947
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +657 -697
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3,11 +3,11 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
3
3
|
import { LottieComponentProps } from 'lottie-react';
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import React__default, { ReactNode, Ref, PropsWithChildren, ReactElement, AriaAttributes } from 'react';
|
|
6
|
-
import { AlertColor, SnackbarOrigin, ButtonGroupProps as ButtonGroupProps$1, ToggleButtonProps as ToggleButtonProps$1, ToggleButtonGroupProps as ToggleButtonGroupProps$1, PopoverProps, StepProps as StepProps$1, StepButtonProps as StepButtonProps$1, StepContentProps as StepContentProps$1, StepLabelProps as StepLabelProps$1, StepperProps as StepperProps$1, MenuProps as MenuProps$1, DialogProps as DialogProps$1, BoxProps, ListProps as ListProps$1, ListItemProps as ListItemProps$1, TableProps as TableProps$1, AccordionProps as AccordionProps$1, AppBarProps as AppBarProps$1, CollapseProps as CollapseProps$1, CircularProgressProps as CircularProgressProps$1, SvgIconProps } from '@mui/material';
|
|
7
|
-
export { Box, BoxProps, Container, ContainerProps, FormControl, FormControlLabel, FormControlLabelProps, FormControlProps, FormHelperText, FormHelperTextProps, FormLabel, FormLabelProps, Grid2 as Grid, Grid2Props as GridProps, InputAdornment, InputAdornmentProps, InputLabel, InputLabelProps, ListItemIcon, ListItemSecondaryAction, ListItemText, Stack, StackProps, Toolbar, ToolbarProps, Typography, TypographyProps } from '@mui/material';
|
|
8
6
|
import { ButtonProps as ButtonProps$1 } from '@mui/material/Button';
|
|
9
7
|
import { IconButtonProps as IconButtonProps$1 } from '@mui/material/IconButton';
|
|
10
8
|
import { LoadingButtonProps as LoadingButtonProps$1 } from '@mui/lab';
|
|
9
|
+
import { ButtonGroupProps as ButtonGroupProps$1, ToggleButtonProps as ToggleButtonProps$1, ToggleButtonGroupProps as ToggleButtonGroupProps$1, PopoverProps, StepProps as StepProps$1, StepButtonProps as StepButtonProps$1, StepContentProps as StepContentProps$1, StepLabelProps as StepLabelProps$1, StepperProps as StepperProps$1, MenuProps as MenuProps$1, DialogProps as DialogProps$1, BoxProps, ListProps as ListProps$1, ListItemProps as ListItemProps$1, TableProps as TableProps$1, AccordionProps as AccordionProps$1, AppBarProps as AppBarProps$1, CollapseProps as CollapseProps$1, CircularProgressProps as CircularProgressProps$1, SvgIconProps } from '@mui/material';
|
|
10
|
+
export { Box, BoxProps, Container, ContainerProps, FormControl, FormControlLabel, FormControlLabelProps, FormControlProps, FormHelperText, FormHelperTextProps, FormLabel, FormLabelProps, Grid2 as Grid, Grid2Props as GridProps, InputAdornment, InputAdornmentProps, InputLabel, InputLabelProps, ListItemIcon, ListItemSecondaryAction, ListItemText, Stack, StackProps, Toolbar, ToolbarProps, Typography, TypographyProps } from '@mui/material';
|
|
11
11
|
import { TextFieldProps as TextFieldProps$1 } from '@mui/material/TextField';
|
|
12
12
|
import { SwitchProps as SwitchProps$1 } from '@mui/material/Switch';
|
|
13
13
|
import { CheckboxProps as CheckboxProps$1 } from '@mui/material/Checkbox';
|
|
@@ -171,20 +171,6 @@ declare const CheckMarkAnimation: () => react_jsx_runtime.JSX.Element;
|
|
|
171
171
|
type LoadingAnimationProps = Omit<LottieComponentProps, 'animationData'>;
|
|
172
172
|
declare const LoadingAnimation: (props: LoadingAnimationProps) => react_jsx_runtime.JSX.Element;
|
|
173
173
|
|
|
174
|
-
interface MessageOptions {
|
|
175
|
-
message: string;
|
|
176
|
-
appearance?: AlertColor;
|
|
177
|
-
autoDismiss?: boolean;
|
|
178
|
-
placement?: SnackbarOrigin;
|
|
179
|
-
}
|
|
180
|
-
interface MessagesContextProps {
|
|
181
|
-
showMessage: (options: MessageOptions) => void;
|
|
182
|
-
}
|
|
183
|
-
declare const useMessages: () => MessagesContextProps;
|
|
184
|
-
declare const MessagesProvider: ({ children }: {
|
|
185
|
-
children: ReactNode;
|
|
186
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
187
|
-
|
|
188
174
|
declare const useIsDesktop: () => boolean;
|
|
189
175
|
declare const useIsTablet: () => boolean;
|
|
190
176
|
declare const useIsMobile: () => boolean;
|
|
@@ -1056,8 +1042,7 @@ interface IDBlockProps {
|
|
|
1056
1042
|
* IDBlock - Read-only identifier display with integrated copy-to-clipboard button
|
|
1057
1043
|
*
|
|
1058
1044
|
* A component that displays an identifier (ID, account number, etc.) with a copy button.
|
|
1059
|
-
* Provides user feedback via Snackbar
|
|
1060
|
-
* Requires MessagesProvider to be present in the component tree.
|
|
1045
|
+
* Provides user feedback via an inline Snackbar when copy succeeds or fails.
|
|
1061
1046
|
*
|
|
1062
1047
|
* @example
|
|
1063
1048
|
* ```tsx
|
|
@@ -1077,7 +1062,6 @@ interface IDBlockProps {
|
|
|
1077
1062
|
* ```
|
|
1078
1063
|
*
|
|
1079
1064
|
* @see Figma node 17-3596 for design specifications
|
|
1080
|
-
* @requires MessagesProvider - Must be wrapped in MessagesProvider context
|
|
1081
1065
|
*/
|
|
1082
1066
|
declare const IDBlock: React__default.FC<IDBlockProps>;
|
|
1083
1067
|
|
|
@@ -1241,7 +1225,6 @@ interface EntityHeaderProps {
|
|
|
1241
1225
|
* ```
|
|
1242
1226
|
*
|
|
1243
1227
|
* @see Figma node 15-1258 for design specifications
|
|
1244
|
-
* @requires MessagesProvider - Must be wrapped in MessagesProvider context for ID copy feedback
|
|
1245
1228
|
*/
|
|
1246
1229
|
declare const EntityHeader: React__default.FC<EntityHeaderProps>;
|
|
1247
1230
|
|
|
@@ -2004,4 +1987,4 @@ interface CodeEditorProps {
|
|
|
2004
1987
|
*/
|
|
2005
1988
|
declare const CodeEditor: React__default.FC<CodeEditorProps>;
|
|
2006
1989
|
|
|
2007
|
-
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, type CardProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorLanguage, type CodeEditorProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, DecentralizedServerIcon, 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, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GithubLogoIcon, 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,
|
|
1990
|
+
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, type CardProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorLanguage, type CodeEditorProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, DecentralizedServerIcon, 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, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GithubLogoIcon, 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, MetricsChart, type MetricsChartProps, type MetricsPeriod, NavigationItem, type NavigationItemProps, NavigationList, type NavigationListProps, OnboardingProvider, Pagination, type PaginationProps, Paper, type PaperProps, PeriodSelect, type PrimaryAction, Progress, type ProgressProps, QRCode, type QRCodeProps, Radio, type RadioProps, RightArrowIcon, RoleBadge, type RoleBadgeColor, type RoleBadgeProps, type RoleBadgeSize, SearchField, type SearchFieldProps, 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, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, StorageAppIcon, Switch, type SwitchProps, Tab, type TabProps, Table, TableHeader, type TableHeaderProps, type TableProps, TextField, type TextFieldProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, Truncate, type TruncateProps, UploadFileIcon, UploadFolderIcon, type UserInfo, type Workspace, WorkspaceSelectorButton, type WorkspaceSelectorButtonProps, colors, contextMenuItems, robPaletteExtended, robPrimaryPalette, theme, useIsDesktop, useIsMobile, useIsTablet, useOnboarding };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
3
3
|
import { LottieComponentProps } from 'lottie-react';
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import React__default, { ReactNode, Ref, PropsWithChildren, ReactElement, AriaAttributes } from 'react';
|
|
6
|
-
import { AlertColor, SnackbarOrigin, ButtonGroupProps as ButtonGroupProps$1, ToggleButtonProps as ToggleButtonProps$1, ToggleButtonGroupProps as ToggleButtonGroupProps$1, PopoverProps, StepProps as StepProps$1, StepButtonProps as StepButtonProps$1, StepContentProps as StepContentProps$1, StepLabelProps as StepLabelProps$1, StepperProps as StepperProps$1, MenuProps as MenuProps$1, DialogProps as DialogProps$1, BoxProps, ListProps as ListProps$1, ListItemProps as ListItemProps$1, TableProps as TableProps$1, AccordionProps as AccordionProps$1, AppBarProps as AppBarProps$1, CollapseProps as CollapseProps$1, CircularProgressProps as CircularProgressProps$1, SvgIconProps } from '@mui/material';
|
|
7
|
-
export { Box, BoxProps, Container, ContainerProps, FormControl, FormControlLabel, FormControlLabelProps, FormControlProps, FormHelperText, FormHelperTextProps, FormLabel, FormLabelProps, Grid2 as Grid, Grid2Props as GridProps, InputAdornment, InputAdornmentProps, InputLabel, InputLabelProps, ListItemIcon, ListItemSecondaryAction, ListItemText, Stack, StackProps, Toolbar, ToolbarProps, Typography, TypographyProps } from '@mui/material';
|
|
8
6
|
import { ButtonProps as ButtonProps$1 } from '@mui/material/Button';
|
|
9
7
|
import { IconButtonProps as IconButtonProps$1 } from '@mui/material/IconButton';
|
|
10
8
|
import { LoadingButtonProps as LoadingButtonProps$1 } from '@mui/lab';
|
|
9
|
+
import { ButtonGroupProps as ButtonGroupProps$1, ToggleButtonProps as ToggleButtonProps$1, ToggleButtonGroupProps as ToggleButtonGroupProps$1, PopoverProps, StepProps as StepProps$1, StepButtonProps as StepButtonProps$1, StepContentProps as StepContentProps$1, StepLabelProps as StepLabelProps$1, StepperProps as StepperProps$1, MenuProps as MenuProps$1, DialogProps as DialogProps$1, BoxProps, ListProps as ListProps$1, ListItemProps as ListItemProps$1, TableProps as TableProps$1, AccordionProps as AccordionProps$1, AppBarProps as AppBarProps$1, CollapseProps as CollapseProps$1, CircularProgressProps as CircularProgressProps$1, SvgIconProps } from '@mui/material';
|
|
10
|
+
export { Box, BoxProps, Container, ContainerProps, FormControl, FormControlLabel, FormControlLabelProps, FormControlProps, FormHelperText, FormHelperTextProps, FormLabel, FormLabelProps, Grid2 as Grid, Grid2Props as GridProps, InputAdornment, InputAdornmentProps, InputLabel, InputLabelProps, ListItemIcon, ListItemSecondaryAction, ListItemText, Stack, StackProps, Toolbar, ToolbarProps, Typography, TypographyProps } from '@mui/material';
|
|
11
11
|
import { TextFieldProps as TextFieldProps$1 } from '@mui/material/TextField';
|
|
12
12
|
import { SwitchProps as SwitchProps$1 } from '@mui/material/Switch';
|
|
13
13
|
import { CheckboxProps as CheckboxProps$1 } from '@mui/material/Checkbox';
|
|
@@ -171,20 +171,6 @@ declare const CheckMarkAnimation: () => react_jsx_runtime.JSX.Element;
|
|
|
171
171
|
type LoadingAnimationProps = Omit<LottieComponentProps, 'animationData'>;
|
|
172
172
|
declare const LoadingAnimation: (props: LoadingAnimationProps) => react_jsx_runtime.JSX.Element;
|
|
173
173
|
|
|
174
|
-
interface MessageOptions {
|
|
175
|
-
message: string;
|
|
176
|
-
appearance?: AlertColor;
|
|
177
|
-
autoDismiss?: boolean;
|
|
178
|
-
placement?: SnackbarOrigin;
|
|
179
|
-
}
|
|
180
|
-
interface MessagesContextProps {
|
|
181
|
-
showMessage: (options: MessageOptions) => void;
|
|
182
|
-
}
|
|
183
|
-
declare const useMessages: () => MessagesContextProps;
|
|
184
|
-
declare const MessagesProvider: ({ children }: {
|
|
185
|
-
children: ReactNode;
|
|
186
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
187
|
-
|
|
188
174
|
declare const useIsDesktop: () => boolean;
|
|
189
175
|
declare const useIsTablet: () => boolean;
|
|
190
176
|
declare const useIsMobile: () => boolean;
|
|
@@ -1056,8 +1042,7 @@ interface IDBlockProps {
|
|
|
1056
1042
|
* IDBlock - Read-only identifier display with integrated copy-to-clipboard button
|
|
1057
1043
|
*
|
|
1058
1044
|
* A component that displays an identifier (ID, account number, etc.) with a copy button.
|
|
1059
|
-
* Provides user feedback via Snackbar
|
|
1060
|
-
* Requires MessagesProvider to be present in the component tree.
|
|
1045
|
+
* Provides user feedback via an inline Snackbar when copy succeeds or fails.
|
|
1061
1046
|
*
|
|
1062
1047
|
* @example
|
|
1063
1048
|
* ```tsx
|
|
@@ -1077,7 +1062,6 @@ interface IDBlockProps {
|
|
|
1077
1062
|
* ```
|
|
1078
1063
|
*
|
|
1079
1064
|
* @see Figma node 17-3596 for design specifications
|
|
1080
|
-
* @requires MessagesProvider - Must be wrapped in MessagesProvider context
|
|
1081
1065
|
*/
|
|
1082
1066
|
declare const IDBlock: React__default.FC<IDBlockProps>;
|
|
1083
1067
|
|
|
@@ -1241,7 +1225,6 @@ interface EntityHeaderProps {
|
|
|
1241
1225
|
* ```
|
|
1242
1226
|
*
|
|
1243
1227
|
* @see Figma node 15-1258 for design specifications
|
|
1244
|
-
* @requires MessagesProvider - Must be wrapped in MessagesProvider context for ID copy feedback
|
|
1245
1228
|
*/
|
|
1246
1229
|
declare const EntityHeader: React__default.FC<EntityHeaderProps>;
|
|
1247
1230
|
|
|
@@ -2004,4 +1987,4 @@ interface CodeEditorProps {
|
|
|
2004
1987
|
*/
|
|
2005
1988
|
declare const CodeEditor: React__default.FC<CodeEditorProps>;
|
|
2006
1989
|
|
|
2007
|
-
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, type CardProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorLanguage, type CodeEditorProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, DecentralizedServerIcon, 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, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GithubLogoIcon, 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,
|
|
1990
|
+
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, type CardProps, CereIcon, ChartWidget, type ChartWidgetProps, CheckMarkAnimation, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, type CircularProgressProps, ClockIcon, CloudFlashIcon, CodeEditor, type CodeEditorLanguage, type CodeEditorProps, Collapse, type CollapseProps, ConnectionStatus, type ConnectionStatusProps, type ContextMenuItem, DecentralizedServerIcon, 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, Dropdown, DropdownAnchor, type DropdownAnchorProps, type DropdownProps, EmptyState, type EmptyStateProps, EntityHeader, type EntityHeaderProps, FilledFolderIcon, FlowEditor, type FlowEditorProps, FolderIcon, GithubLogoIcon, 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, MetricsChart, type MetricsChartProps, type MetricsPeriod, NavigationItem, type NavigationItemProps, NavigationList, type NavigationListProps, OnboardingProvider, Pagination, type PaginationProps, Paper, type PaperProps, PeriodSelect, type PrimaryAction, Progress, type ProgressProps, QRCode, type QRCodeProps, Radio, type RadioProps, RightArrowIcon, RoleBadge, type RoleBadgeColor, type RoleBadgeProps, type RoleBadgeSize, SearchField, type SearchFieldProps, 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, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, StorageAppIcon, Switch, type SwitchProps, Tab, type TabProps, Table, TableHeader, type TableHeaderProps, type TableProps, TextField, type TextFieldProps, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, Truncate, type TruncateProps, UploadFileIcon, UploadFolderIcon, type UserInfo, type Workspace, WorkspaceSelectorButton, type WorkspaceSelectorButtonProps, colors, contextMenuItems, robPaletteExtended, robPrimaryPalette, theme, useIsDesktop, useIsMobile, useIsTablet, useOnboarding };
|