@open-ui-kit/core 2.0.0-beta.1 → 2.0.0-beta.2
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/index.cjs.js +2 -2
- package/index.cjs.js.map +1 -1
- package/index.d.ts +145 -75
- package/index.esm.js +2 -2
- package/index.esm.js.map +1 -1
- package/index.umd.js +2 -2
- package/index.umd.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Color, Theme as Theme$1, TypographyVariant } from '@mui/material/styles';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { ReactNode, ComponentType, CSSProperties, ReactElement, ComponentProps, HTMLAttributes, SyntheticEvent, ElementType } from 'react';
|
|
3
|
+
import React__default, { ReactNode, ComponentType, CSSProperties, MouseEvent, ReactElement, ComponentProps, HTMLAttributes, SyntheticEvent, ElementType } from 'react';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as _mui_material from '@mui/material';
|
|
6
|
-
import { AccordionProps as AccordionProps$1, AccordionSummaryProps, BoxProps, BackdropProps as BackdropProps$1, SxProps, Theme, AlertProps, BadgeProps as BadgeProps$1, TypographyProps, SvgIconProps, BreadcrumbsProps as BreadcrumbsProps$1, ButtonProps as ButtonProps$1, CardProps as CardProps$1, CardActionAreaProps as CardActionAreaProps$1, CardHeaderProps as CardHeaderProps$1, CardContentProps as CardContentProps$1, CardActionsProps as CardActionsProps$1, CheckboxProps as CheckboxProps$1, TooltipProps as TooltipProps$1, IconButtonProps, StackProps, TextFieldProps, Popper, PopoverProps as PopoverProps$1, DividerProps as DividerProps$1, DrawerProps,
|
|
6
|
+
import { AccordionProps as AccordionProps$1, AccordionSummaryProps, BoxProps, BackdropProps as BackdropProps$1, AvatarGroupProps as AvatarGroupProps$1, AvatarProps as AvatarProps$1, SxProps, Theme, AlertProps, BadgeProps as BadgeProps$1, TypographyProps, SvgIconProps, BreadcrumbsProps as BreadcrumbsProps$1, ButtonProps as ButtonProps$1, CardProps as CardProps$1, CardActionAreaProps as CardActionAreaProps$1, CardHeaderProps as CardHeaderProps$1, CardContentProps as CardContentProps$1, CardActionsProps as CardActionsProps$1, CheckboxProps as CheckboxProps$1, TooltipProps as TooltipProps$1, IconButtonProps, StackProps, TextFieldProps, Popper, PopoverProps as PopoverProps$1, DividerProps as DividerProps$1, DrawerProps, ListProps as ListProps$1, ListItemProps as ListItemProps$1, ListItemButtonProps as ListItemButtonProps$1, ListItemTextProps as ListItemTextProps$1, ListItemIconProps as ListItemIconProps$1, ListSubheaderProps as ListSubheaderProps$1, InputProps, IconProps as IconProps$1, CircularProgressProps, DialogProps as DialogProps$1, DialogContentProps as DialogContentProps$1, DialogContentTextProps as DialogContentTextProps$1, DialogActionsProps as DialogActionsProps$1, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, ButtonBaseProps, RadioProps, FormControlLabelProps, RadioGroupProps as RadioGroupProps$1, SelectProps as SelectProps$1, SkeletonProps as SkeletonProps$1, SliderProps as SliderProps$1, TabsProps as TabsProps$1, TabProps as TabProps$1, ChipProps, SwitchProps, PaginationProps as PaginationProps$1 } from '@mui/material';
|
|
7
7
|
export { Box, ButtonGroup, Container, Grid, IconButton, ListItemAvatar, Paper, PopoverOrigin, SelectChangeEvent, Stack, Typography, useTheme } from '@mui/material';
|
|
8
8
|
import { TimelineProps } from '@mui/lab';
|
|
9
9
|
import { LinkProps as LinkProps$1, To } from 'react-router-dom';
|
|
@@ -529,11 +529,16 @@ interface AnchorLinkMenuProps {
|
|
|
529
529
|
|
|
530
530
|
declare const AnchorLinkMenu: ({ items, selectedId, title, variant, onSelect, }: AnchorLinkMenuProps) => react_jsx_runtime.JSX.Element;
|
|
531
531
|
|
|
532
|
-
|
|
532
|
+
interface BackdropProps extends BackdropProps$1 {
|
|
533
|
+
/** Controls whether the backdrop is mounted and visible. */
|
|
534
|
+
open: boolean;
|
|
535
|
+
/** Removes the dimmed overlay while preserving the backdrop interaction layer. */
|
|
536
|
+
invisible?: boolean;
|
|
537
|
+
}
|
|
533
538
|
|
|
534
539
|
declare const Backdrop: ({ sx, ...props }: BackdropProps) => react_jsx_runtime.JSX.Element;
|
|
535
540
|
|
|
536
|
-
interface AvatarProps {
|
|
541
|
+
interface AvatarProps extends Omit<AvatarProps$1, "children"> {
|
|
537
542
|
/** Controls the avatar diameter. Large is 40px and medium is 32px. */
|
|
538
543
|
size?: "L" | "M";
|
|
539
544
|
/** Image source used when the avatar should represent a person or entity photo. */
|
|
@@ -545,16 +550,16 @@ interface AvatarProps {
|
|
|
545
550
|
/** Icon displayed when no image is provided. */
|
|
546
551
|
icon?: ReactNode;
|
|
547
552
|
}
|
|
548
|
-
interface AvatarGroupProps {
|
|
553
|
+
interface AvatarGroupProps extends Omit<AvatarGroupProps$1, "children"> {
|
|
549
554
|
/** Controls the size applied to every avatar in the group. */
|
|
550
555
|
size?: "L" | "M";
|
|
551
556
|
/** Avatar children to stack with the configured group overlap. */
|
|
552
557
|
children: ReactNode;
|
|
553
558
|
}
|
|
554
559
|
|
|
555
|
-
declare const Avatar: ({ size, src, alt, initials, icon, }: AvatarProps) => react_jsx_runtime.JSX.Element;
|
|
560
|
+
declare const Avatar: ({ size, src, alt, initials, icon, ...props }: AvatarProps) => react_jsx_runtime.JSX.Element;
|
|
556
561
|
|
|
557
|
-
declare const AvatarGroup: ({ size, children }: AvatarGroupProps) => react_jsx_runtime.JSX.Element;
|
|
562
|
+
declare const AvatarGroup: ({ size, children, ...props }: AvatarGroupProps) => react_jsx_runtime.JSX.Element;
|
|
558
563
|
|
|
559
564
|
interface ActionsDialogProps {
|
|
560
565
|
/** Controls whether the dialog is visible. */
|
|
@@ -591,6 +596,8 @@ interface BannerProps extends Omit<AlertProps, "variant" | "severity" | "childre
|
|
|
591
596
|
status?: StatusBanner;
|
|
592
597
|
/** Banner message content. */
|
|
593
598
|
text: ReactNode;
|
|
599
|
+
/** Optional icon shown before the message. Defaults to a status icon. */
|
|
600
|
+
icon?: ReactNode;
|
|
594
601
|
/** Shows the dismiss button and wires `onClose` when enabled. */
|
|
595
602
|
showCloseButton?: boolean;
|
|
596
603
|
}
|
|
@@ -601,13 +608,13 @@ type BadgeType = "default" | "excellent" | "neutral" | "error" | "warning" | "in
|
|
|
601
608
|
interface BadgeProps {
|
|
602
609
|
/** Visual status color family for the badge. */
|
|
603
610
|
type?: BadgeType;
|
|
604
|
-
/** Optional
|
|
611
|
+
/** Optional value rendered in the small bubble when the badge wraps another element. */
|
|
605
612
|
notificationContent?: ReactNode;
|
|
606
|
-
/**
|
|
613
|
+
/** Badge label, or the wrapped child when `notificationContent` is provided. */
|
|
607
614
|
content: ReactNode;
|
|
608
|
-
/** Style overrides for the
|
|
615
|
+
/** Style overrides for the badge root. Use sparingly to preserve badge sizing. */
|
|
609
616
|
styleBadge?: BadgeProps$1["sx"];
|
|
610
|
-
/** Style overrides for the badge
|
|
617
|
+
/** Style overrides for the visible badge text. */
|
|
611
618
|
styleContent?: TypographyProps["sx"];
|
|
612
619
|
}
|
|
613
620
|
|
|
@@ -707,7 +714,7 @@ interface BreadcrumbsProps extends BreadcrumbsProps$1 {
|
|
|
707
714
|
type?: LinkType;
|
|
708
715
|
/** Link size used for breadcrumb labels. */
|
|
709
716
|
size?: GeneralSize;
|
|
710
|
-
/** Maximum number of visible breadcrumbs before
|
|
717
|
+
/** Maximum number of visible breadcrumbs before middle items move into the collapsed menu. */
|
|
711
718
|
maximumNumberOfVisibleBreadcrumbs?: number;
|
|
712
719
|
}
|
|
713
720
|
|
|
@@ -727,8 +734,10 @@ interface ButtonProps extends ButtonProps$1 {
|
|
|
727
734
|
/** Open UI Kit button wrapper with tokenized variants, sizes, icon spacing, and states. */
|
|
728
735
|
declare const Button: ({ children, className, disableRipple, endIcon, startIcon, ...props }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
729
736
|
|
|
730
|
-
|
|
731
|
-
|
|
737
|
+
interface CardProps extends CardProps$1 {
|
|
738
|
+
/** Applies the disabled card treatment and marks the grouped content unavailable. */
|
|
739
|
+
disabled?: boolean;
|
|
740
|
+
}
|
|
732
741
|
/** Clickable wrapper for interactive cards. */
|
|
733
742
|
type CardActionAreaProps = CardActionAreaProps$1;
|
|
734
743
|
/** Header area for primary and secondary card text. */
|
|
@@ -752,11 +761,11 @@ declare const CardDescription: ({ children, ...props }: CardDescriptionProps) =>
|
|
|
752
761
|
declare const CardSubheader: ({ children, ...props }: CardSubheaderProps) => react_jsx_runtime.JSX.Element;
|
|
753
762
|
//# sourceMappingURL=card-subheader.d.ts.map
|
|
754
763
|
|
|
755
|
-
declare const Card: (props: CardProps) => react_jsx_runtime.JSX.Element;
|
|
756
|
-
declare const CardActionArea: (props: CardActionAreaProps) => react_jsx_runtime.JSX.Element;
|
|
757
|
-
declare const CardHeader: (props: CardHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
758
|
-
declare const CardContent: (props: CardContentProps) => react_jsx_runtime.JSX.Element;
|
|
759
|
-
declare const CardActions: (props: CardActionsProps) => react_jsx_runtime.JSX.Element;
|
|
764
|
+
declare const Card: ({ disabled, sx, ...props }: CardProps) => react_jsx_runtime.JSX.Element;
|
|
765
|
+
declare const CardActionArea: ({ sx, ...props }: CardActionAreaProps) => react_jsx_runtime.JSX.Element;
|
|
766
|
+
declare const CardHeader: ({ sx, ...props }: CardHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
767
|
+
declare const CardContent: ({ sx, ...props }: CardContentProps) => react_jsx_runtime.JSX.Element;
|
|
768
|
+
declare const CardActions: ({ sx, ...props }: CardActionsProps) => react_jsx_runtime.JSX.Element;
|
|
760
769
|
|
|
761
770
|
/** Checkbox input for unchecked, checked, mixed, and disabled selection states. */
|
|
762
771
|
type CheckboxProps = CheckboxProps$1;
|
|
@@ -767,10 +776,11 @@ declare enum TooltipSize {
|
|
|
767
776
|
Medium = "medium",
|
|
768
777
|
Large = "large"
|
|
769
778
|
}
|
|
770
|
-
|
|
771
779
|
interface TooltipProps extends TooltipProps$1 {
|
|
780
|
+
/** Tooltip size from the design system: compact medium or roomier large. */
|
|
772
781
|
size?: TooltipSize;
|
|
773
782
|
}
|
|
783
|
+
|
|
774
784
|
declare const Tooltip: ({ size, children, ...props }: TooltipProps) => react_jsx_runtime.JSX.Element;
|
|
775
785
|
|
|
776
786
|
/** Absolute placement option when the copy action is positioned inside a relative container. */
|
|
@@ -788,7 +798,7 @@ interface CopyButtonStylesProps {
|
|
|
788
798
|
left?: string;
|
|
789
799
|
/** Right offset used when `position="right"`. Defaults to `16px`. */
|
|
790
800
|
right?: string;
|
|
791
|
-
/**
|
|
801
|
+
/** Keeps the button flush with surrounding code-block layout; retained for compatibility. */
|
|
792
802
|
disableMargin?: boolean;
|
|
793
803
|
}
|
|
794
804
|
interface CopyButtonProps extends IconButtonProps, CopyButtonStylesProps {
|
|
@@ -796,6 +806,8 @@ interface CopyButtonProps extends IconButtonProps, CopyButtonStylesProps {
|
|
|
796
806
|
text: string;
|
|
797
807
|
/** Callback fired after the text is copied. */
|
|
798
808
|
onCopy?: () => void;
|
|
809
|
+
/** Controls the copied visual state. Leave unset to use the built-in temporary success state after click. */
|
|
810
|
+
copied?: boolean;
|
|
799
811
|
/** Tooltip placement around the icon button. Defaults to `top`. */
|
|
800
812
|
tooltipPlacement?: TooltipProps["placement"];
|
|
801
813
|
/** Tooltip label before a successful copy. Defaults to `Copy`. */
|
|
@@ -804,7 +816,7 @@ interface CopyButtonProps extends IconButtonProps, CopyButtonStylesProps {
|
|
|
804
816
|
copiedLabel?: string;
|
|
805
817
|
}
|
|
806
818
|
|
|
807
|
-
declare const CopyButton: ({ text, position, size, top, left, right, disableMargin, onCopy, tooltipPlacement, copyLabel, copiedLabel, onClick, ...props }: CopyButtonProps) => react_jsx_runtime.JSX.Element;
|
|
819
|
+
declare const CopyButton: ({ text, position, size, top, left, right, disableMargin, onCopy, copied, tooltipPlacement, copyLabel, copiedLabel, onClick, ...props }: CopyButtonProps) => react_jsx_runtime.JSX.Element;
|
|
808
820
|
|
|
809
821
|
/** Supported density options for the code block container, header, and line numbers. */
|
|
810
822
|
type CodeBlockSize = "small" | "medium";
|
|
@@ -924,49 +936,84 @@ declare const StaticDatePicker: (props: StaticDatePickerProps) => react_jsx_runt
|
|
|
924
936
|
|
|
925
937
|
declare const DateRangePicker: ({ startDate, endDate, setStartDate, setEndDate, getPopoverVisibility, popoverProps, inputFieldProps, }: DateRangePickerProps) => react_jsx_runtime.JSX.Element;
|
|
926
938
|
|
|
927
|
-
/**
|
|
928
|
-
type
|
|
939
|
+
/** Visual weight of the divider line. */
|
|
940
|
+
type DividerVariant = DividerProps$1["variant"] | "bold";
|
|
941
|
+
interface DividerProps extends Omit<DividerProps$1, "variant"> {
|
|
942
|
+
/** Direction of the divider line. Horizontal is the default. */
|
|
943
|
+
orientation?: DividerProps$1["orientation"];
|
|
944
|
+
/** Visual weight of the divider. Use `bold` for the 2px design-system line. */
|
|
945
|
+
variant?: DividerVariant;
|
|
946
|
+
}
|
|
929
947
|
|
|
930
948
|
declare const Divider: (props: DividerProps) => react_jsx_runtime.JSX.Element;
|
|
931
949
|
|
|
950
|
+
interface SideDrawerFooterProps {
|
|
951
|
+
/** Footer page name used in the "Go to" action label. */
|
|
952
|
+
pageName?: string;
|
|
953
|
+
/** Hides the footer navigation action. */
|
|
954
|
+
hideGotoPage?: boolean;
|
|
955
|
+
/** Called when the footer navigation action is selected. */
|
|
956
|
+
onGotoPage?: () => void;
|
|
957
|
+
}
|
|
932
958
|
interface SideDrawerHeaderProps {
|
|
959
|
+
/** Main title text rendered in the drawer header. */
|
|
933
960
|
titleText?: string;
|
|
934
|
-
|
|
935
|
-
|
|
961
|
+
/** Custom title node for complex header titles. */
|
|
962
|
+
titleNode?: ReactNode;
|
|
963
|
+
/** Optional custom action rendered next to the title. */
|
|
964
|
+
titleAction?: ReactNode;
|
|
965
|
+
/** Optional severity level rendered as a compact status bar before the title. */
|
|
936
966
|
severity?: Severity;
|
|
967
|
+
/** URL copied by the header copy action. */
|
|
937
968
|
copyURL: string;
|
|
969
|
+
/** Optional style overrides for the header divider. */
|
|
938
970
|
customDividerStyle?: CSSProperties;
|
|
971
|
+
/** Whether the favorite action is currently selected. */
|
|
939
972
|
isFavorite?: boolean;
|
|
940
|
-
|
|
973
|
+
/** Action buttons rendered in the secondary header row. */
|
|
974
|
+
actionButtons?: ReactNode[];
|
|
975
|
+
/** Disables the previous navigation button. */
|
|
941
976
|
disablePrev?: boolean;
|
|
977
|
+
/** Disables the next navigation button. */
|
|
942
978
|
disableNext?: boolean;
|
|
979
|
+
/** Hides the previous navigation button. */
|
|
943
980
|
hidePrev?: boolean;
|
|
981
|
+
/** Hides the next navigation button. */
|
|
944
982
|
hideNext?: boolean;
|
|
983
|
+
/** Hides the title action. */
|
|
945
984
|
hideTitleAction?: boolean;
|
|
985
|
+
/** Hides the favorite action button. */
|
|
946
986
|
hideFavorite?: boolean;
|
|
987
|
+
/** Hides the copy action button. */
|
|
947
988
|
hideCopyBtn?: boolean;
|
|
989
|
+
/** Hides the secondary header action row. */
|
|
948
990
|
hideActionButtons?: boolean;
|
|
991
|
+
/** Called when the previous navigation button is selected. */
|
|
949
992
|
onPrev?: () => void;
|
|
993
|
+
/** Called when the next navigation button is selected. */
|
|
950
994
|
onNext?: () => void;
|
|
951
|
-
|
|
995
|
+
/** Called when the drawer close action is selected. */
|
|
996
|
+
onClose?: (event?: MouseEvent<HTMLElement>) => void;
|
|
997
|
+
/** Called when the favorite action is selected. */
|
|
952
998
|
onFavorite?: () => void;
|
|
999
|
+
/** Called when the title action is selected. */
|
|
953
1000
|
onTitleAction?: () => void;
|
|
1001
|
+
/** Called after the copy action succeeds. */
|
|
954
1002
|
onCopyLink?: (link: string) => void;
|
|
955
1003
|
}
|
|
956
|
-
|
|
957
|
-
interface SideDrawerFooterProps {
|
|
958
|
-
pageName?: string;
|
|
959
|
-
hideGotoPage?: boolean;
|
|
960
|
-
onGotoPage?: () => void;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
1004
|
interface SideDrawerProps extends Omit<DrawerProps, "onClose">, SideDrawerHeaderProps, SideDrawerFooterProps {
|
|
1005
|
+
/** Deprecated alias retained for compatibility; use `titleText`. */
|
|
964
1006
|
title?: string;
|
|
1007
|
+
/** Centers a loading spinner inside the drawer. */
|
|
965
1008
|
isLoading?: boolean;
|
|
1009
|
+
/** Shows the loading error state inside the drawer. */
|
|
966
1010
|
isError?: boolean;
|
|
1011
|
+
/** Hides the footer region entirely. */
|
|
967
1012
|
hideFooter?: boolean;
|
|
968
|
-
|
|
1013
|
+
/** Additional sx applied to the Drawer paper after internal styles. */
|
|
1014
|
+
paperProps?: SxProps<Theme>;
|
|
969
1015
|
}
|
|
1016
|
+
|
|
970
1017
|
declare const SideDrawer: ({ children, titleText, titleNode, open, isLoading, isError, isFavorite, severity, titleAction, copyURL, actionButtons, pageName, disablePrev, disableNext, hidePrev, hideNext, hideTitleAction, hideFooter, hideGotoPage, hideFavorite, hideCopyBtn, hideActionButtons, customDividerStyle, onPrev, onNext, onClose, onFavorite, onGotoPage, onTitleAction, onCopyLink, paperProps, ...props }: SideDrawerProps) => react_jsx_runtime.JSX.Element;
|
|
971
1018
|
|
|
972
1019
|
interface NestedMenuListboxProps {
|
|
@@ -1193,10 +1240,24 @@ interface SelectNodeProps {
|
|
|
1193
1240
|
}
|
|
1194
1241
|
declare const SelectNode: ({ isExpanded, isIconAllowed, isLeaf, isParentNode, isSelectAllNode, isSelectable, isSelected, nestLevel, nodeIcon, nodeLabel, onCheckboxClick, onExpand, parentSelectOnly, selectableLeavesCount, selectedLeavesCount, }: SelectNodeProps) => react_jsx_runtime.JSX.Element;
|
|
1195
1242
|
|
|
1243
|
+
declare const List$1: ({ disablePadding, ...props }: ListProps$1) => react_jsx_runtime.JSX.Element;
|
|
1244
|
+
declare const ListItem: ({ sx, ...props }: ListItemProps$1) => react_jsx_runtime.JSX.Element;
|
|
1245
|
+
declare const ListItemButton: ({ sx, ...props }: ListItemButtonProps$1) => react_jsx_runtime.JSX.Element;
|
|
1246
|
+
declare const ListItemIcon: ({ sx, ...props }: ListItemIconProps$1) => react_jsx_runtime.JSX.Element;
|
|
1247
|
+
declare const ListSubheader: ({ sx, ...props }: ListSubheaderProps$1) => react_jsx_runtime.JSX.Element;
|
|
1248
|
+
declare const ListItemText: ({ sx, ...props }: ListItemTextProps$1) => react_jsx_runtime.JSX.Element;
|
|
1249
|
+
|
|
1250
|
+
type ListProps = ListProps$1;
|
|
1251
|
+
type ListItemProps = ListItemProps$1;
|
|
1252
|
+
type ListItemButtonProps = ListItemButtonProps$1;
|
|
1253
|
+
type ListItemTextProps = ListItemTextProps$1;
|
|
1254
|
+
type ListItemIconProps = ListItemIconProps$1;
|
|
1255
|
+
type ListSubheaderProps = ListSubheaderProps$1;
|
|
1256
|
+
|
|
1196
1257
|
interface SelectNodeListItemProps {
|
|
1197
1258
|
isLeaf: boolean;
|
|
1198
1259
|
isSelectable?: boolean;
|
|
1199
|
-
listItemProps?: ListItemProps
|
|
1260
|
+
listItemProps?: ListItemProps;
|
|
1200
1261
|
onClick: () => void;
|
|
1201
1262
|
onExpand?: () => void;
|
|
1202
1263
|
selectNodeElement: ReactElement<ComponentProps<typeof SelectNode>>;
|
|
@@ -1215,6 +1276,8 @@ interface EmptyStateProps {
|
|
|
1215
1276
|
direction?: EmptyStateDirection;
|
|
1216
1277
|
/** Controls illustration, typography, spacing, and action button size. */
|
|
1217
1278
|
size?: GeneralSize;
|
|
1279
|
+
/** Hides the illustration for compact text-only empty states. */
|
|
1280
|
+
hideIllustration?: boolean;
|
|
1218
1281
|
/** Main heading. Hidden automatically for the small size. */
|
|
1219
1282
|
title?: string;
|
|
1220
1283
|
/** Supporting message shown below the title or beside the small illustration. */
|
|
@@ -1235,7 +1298,7 @@ interface EmptyStateProps {
|
|
|
1235
1298
|
containerProps?: StackProps;
|
|
1236
1299
|
}
|
|
1237
1300
|
|
|
1238
|
-
declare const EmptyState: ({ variant, direction, size, title, description, actionCallback, actionTitle, actionButtonProps, secondaryActionCallback, secondaryActionTitle, secondaryActionButtonProps, containerProps, }: EmptyStateProps) => react_jsx_runtime.JSX.Element;
|
|
1301
|
+
declare const EmptyState: ({ variant, direction, size, hideIllustration, title, description, actionCallback, actionTitle, actionButtonProps, secondaryActionCallback, secondaryActionTitle, secondaryActionButtonProps, containerProps, }: EmptyStateProps) => react_jsx_runtime.JSX.Element;
|
|
1239
1302
|
|
|
1240
1303
|
type FloatingButtonVariant = "primary" | "secondary";
|
|
1241
1304
|
type FloatingButtonSize = "medium" | "small";
|
|
@@ -1494,20 +1557,6 @@ interface IndicatorBadgeProps extends Pick<IndicatorBadgeValueProps, "color"> {
|
|
|
1494
1557
|
|
|
1495
1558
|
declare const IndicatorBadge: ({ color, value, }: IndicatorBadgeProps) => JSX.Element;
|
|
1496
1559
|
|
|
1497
|
-
declare const List$1: ({ disablePadding, ...props }: ListProps$1) => react_jsx_runtime.JSX.Element;
|
|
1498
|
-
declare const ListItem: ({ sx, ...props }: ListItemProps$1) => react_jsx_runtime.JSX.Element;
|
|
1499
|
-
declare const ListItemButton: ({ sx, ...props }: ListItemButtonProps$1) => react_jsx_runtime.JSX.Element;
|
|
1500
|
-
declare const ListItemIcon: ({ sx, ...props }: ListItemIconProps$1) => react_jsx_runtime.JSX.Element;
|
|
1501
|
-
declare const ListSubheader: ({ sx, ...props }: ListSubheaderProps$1) => react_jsx_runtime.JSX.Element;
|
|
1502
|
-
declare const ListItemText: ({ sx, ...props }: ListItemTextProps$1) => react_jsx_runtime.JSX.Element;
|
|
1503
|
-
|
|
1504
|
-
type ListProps = ListProps$1;
|
|
1505
|
-
type ListItemProps = ListItemProps$1;
|
|
1506
|
-
type ListItemButtonProps = ListItemButtonProps$1;
|
|
1507
|
-
type ListItemTextProps = ListItemTextProps$1;
|
|
1508
|
-
type ListItemIconProps = ListItemIconProps$1;
|
|
1509
|
-
type ListSubheaderProps = ListSubheaderProps$1;
|
|
1510
|
-
|
|
1511
1560
|
type KeyValuePairsLayout = "inline" | "stacked";
|
|
1512
1561
|
interface KeyValuePairItem {
|
|
1513
1562
|
/** Key or label shown before or above the value. */
|
|
@@ -1807,6 +1856,8 @@ interface PickerItemProps extends Omit<ButtonBaseProps, "children"> {
|
|
|
1807
1856
|
|
|
1808
1857
|
declare const PickerItem: ({ icon, label, size, display, selected, disabled, sx, ...props }: PickerItemProps) => react_jsx_runtime.JSX.Element;
|
|
1809
1858
|
|
|
1859
|
+
/** Popover content width. Use `large` for wider confirmation/content panels. */
|
|
1860
|
+
type PopoverSize = "medium" | "large";
|
|
1810
1861
|
/**
|
|
1811
1862
|
* Where the directional arrow tip is rendered relative to the popover panel.
|
|
1812
1863
|
* Use together with `anchorOrigin` / `transformOrigin` to align the arrow
|
|
@@ -1820,8 +1871,14 @@ interface PopoverProps extends Omit<PopoverProps$1, "title"> {
|
|
|
1820
1871
|
body?: ReactNode;
|
|
1821
1872
|
/** Action elements (e.g. Buttons) rendered at the bottom-right of the popover. */
|
|
1822
1873
|
actions?: ReactNode;
|
|
1874
|
+
/** Optional icon rendered before the title/body column. */
|
|
1875
|
+
icon?: ReactNode;
|
|
1823
1876
|
/** When true, shows a close (×) button in the top-right corner. */
|
|
1824
1877
|
showCloseButton?: boolean;
|
|
1878
|
+
/** Adds the active feature-highlight border and arrow styling. */
|
|
1879
|
+
featureHighlight?: boolean;
|
|
1880
|
+
/** Content width. Defaults to the compact `medium` popover. */
|
|
1881
|
+
size?: PopoverSize;
|
|
1825
1882
|
/**
|
|
1826
1883
|
* Renders a directional arrow on the popover panel pointing toward the anchor.
|
|
1827
1884
|
* Omit for a plain panel with no arrow.
|
|
@@ -1831,7 +1888,7 @@ interface PopoverProps extends Omit<PopoverProps$1, "title"> {
|
|
|
1831
1888
|
paperSx?: SxProps<Theme>;
|
|
1832
1889
|
}
|
|
1833
1890
|
|
|
1834
|
-
declare const Popover: ({ title, body, actions, showCloseButton, arrowPosition, paperSx, onClose, children, ...props }: PopoverProps) => react_jsx_runtime.JSX.Element;
|
|
1891
|
+
declare const Popover: ({ title, body, actions, icon, showCloseButton, featureHighlight, size, arrowPosition, paperSx, onClose, children, ...props }: PopoverProps) => react_jsx_runtime.JSX.Element;
|
|
1835
1892
|
|
|
1836
1893
|
interface RadioButtonProps extends RadioProps {
|
|
1837
1894
|
/** Optional content displayed beside the radio control via FormControlLabel. */
|
|
@@ -2204,33 +2261,36 @@ declare const RemainingTags: ({ tags, }: {
|
|
|
2204
2261
|
}) => react_jsx_runtime.JSX.Element;
|
|
2205
2262
|
|
|
2206
2263
|
type ToastType = "default" | "info" | "success" | "warning" | "error";
|
|
2207
|
-
|
|
2264
|
+
interface ToastAction {
|
|
2265
|
+
/** Text shown in the optional toast action button. */
|
|
2266
|
+
label: string;
|
|
2267
|
+
/** Callback fired when the toast action button is clicked. */
|
|
2268
|
+
onClick: () => void;
|
|
2269
|
+
}
|
|
2208
2270
|
interface ToastProps extends Omit<AlertProps, "variant" | "severity" | "children" | "iconMapping" | "action" | "id" | "icon"> {
|
|
2209
|
-
/** Unique id used when dismissing via
|
|
2271
|
+
/** Unique id used when dismissing via Sonner. */
|
|
2210
2272
|
id: string;
|
|
2211
|
-
/** Visual type
|
|
2273
|
+
/** Visual type that controls the status icon and left border color. */
|
|
2212
2274
|
type?: ToastType;
|
|
2213
|
-
/**
|
|
2275
|
+
/** Optional bold title line rendered above the message. */
|
|
2214
2276
|
title?: string;
|
|
2215
|
-
/**
|
|
2277
|
+
/** Optional body message shown in the toast content area. */
|
|
2216
2278
|
description?: string;
|
|
2217
|
-
/**
|
|
2279
|
+
/** Shows the close button when true. */
|
|
2218
2280
|
showCloseButton?: boolean;
|
|
2219
|
-
/**
|
|
2281
|
+
/** Uses local React state for closing when true, or dismisses through Sonner when false. */
|
|
2220
2282
|
useNativeClose?: boolean;
|
|
2221
|
-
/** Optional action
|
|
2222
|
-
action?:
|
|
2223
|
-
|
|
2224
|
-
onClick: () => void;
|
|
2225
|
-
};
|
|
2226
|
-
/** Slot for custom action content when `action` is not used. */
|
|
2283
|
+
/** Optional single action rendered below the message. */
|
|
2284
|
+
action?: ToastAction;
|
|
2285
|
+
/** Custom action content rendered below the message when `action` is not provided. */
|
|
2227
2286
|
customActions?: React__default.ReactNode;
|
|
2228
2287
|
}
|
|
2288
|
+
type ToasterProps = React__default.ComponentProps<typeof Toaster$1>;
|
|
2289
|
+
|
|
2229
2290
|
declare const Toast: ({ type, showCloseButton, useNativeClose, title, description, action, id, customActions, ...props }: ToastProps) => react_jsx_runtime.JSX.Element | null;
|
|
2230
2291
|
declare const toast: ({ ...props }: Omit<ToastProps, "id">) => string | number;
|
|
2231
2292
|
|
|
2232
|
-
|
|
2233
|
-
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
2293
|
+
declare const Toaster: ({ toastOptions, ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
2234
2294
|
|
|
2235
2295
|
/**
|
|
2236
2296
|
* Props for the Toggle component. Extends MUI Switch props for controlled,
|
|
@@ -7445,18 +7505,28 @@ declare const lightVars: VarsType;
|
|
|
7445
7505
|
|
|
7446
7506
|
declare const darkVars: VarsType;
|
|
7447
7507
|
|
|
7508
|
+
declare enum ThemeMode {
|
|
7509
|
+
Light = "light",
|
|
7510
|
+
Dark = "dark"
|
|
7511
|
+
}
|
|
7448
7512
|
interface ThemeModeContextValue {
|
|
7449
|
-
|
|
7450
|
-
|
|
7513
|
+
mode: ThemeMode;
|
|
7514
|
+
setMode: React__default.Dispatch<React__default.SetStateAction<ThemeMode>>;
|
|
7451
7515
|
toggleTheme: () => void;
|
|
7452
7516
|
}
|
|
7453
7517
|
declare function useThemeMode(): ThemeModeContextValue;
|
|
7454
7518
|
interface ThemeProviderProps {
|
|
7455
7519
|
children: React__default.ReactNode;
|
|
7456
|
-
|
|
7457
|
-
|
|
7520
|
+
defaultMode?: ThemeMode;
|
|
7521
|
+
/**
|
|
7522
|
+
* A fully custom MUI Theme. Must include palette.vars (VarsType) to be
|
|
7523
|
+
* compatible with open-ui-kit components. When provided, takes precedence
|
|
7524
|
+
* over defaultMode for theme selection.
|
|
7525
|
+
* Reference: src/theme/light/light-theme.tsx
|
|
7526
|
+
*/
|
|
7527
|
+
customTheme?: Theme;
|
|
7458
7528
|
}
|
|
7459
|
-
declare const ThemeProvider: ({ children,
|
|
7529
|
+
declare const ThemeProvider: ({ children, defaultMode, customTheme, }: ThemeProviderProps) => react_jsx_runtime.JSX.Element;
|
|
7460
7530
|
|
|
7461
|
-
export { Accordion, StyledAccordionSummary as AccordionSummary, ActionsDialog, ActivityTimeline, ActivityTimelineStepStatus, AddDomain, AddRepos, AnchorLinkMenu, AttackPathAnalysis, AttackPathAnalysisWalkThrough, Avatar, AvatarGroup, Backdrop, Badge, Banner, BarChart$1 as BarChart, BarGraph, BasePage, Breadcrumbs, Button, Card, CardActionArea, CardActions, CardContent, CardDescription, CardHeader, CardSubheader, Celebration, ChartType, ChartTypeComponents, ChartWidget, Checkbox$1 as Checkbox, CiCd, Cloud, CloudSimple, CodeBlock, CopyButton, CreateTableInstance, Dashboard, Data, DatePicker, DateRangePicker, DateTimePicker, Dialog, DialogActions, DialogContent, DialogContentText, DialogSubtitle, DialogTitle, Divider, DonutChart, EMPTY_FUNCTION, EmptyData, EmptyState, FiltersBar, FiltersDrawer, FloatingButton, Footer, GaugeChart, GeneralSize, Git, GitSimple, GlobalSearchInput, Header, HorizontalBarChart, Icon, IconPosition, index_d as Icons, IndicatorBadge, Info, InputField, KeyValuePairs, Kubernetes, LabelAndChildrenTooltipContent, Layout$1 as Layout, LineChart, Link$1 as Link, LinkColorEnum, LinkType, List$1 as List, ListItem, ListItemButton, ListItemIcon, ListItemText, ListSubheader, LoadingErrorState, LoadingStates, Menu$1 as Menu, MenuItem, StyledMenuSubheader as MenuSubheader, Message, Navigation, NavigationDrawer, NavigationSubNavigation, Negative, NestedMenu, NestedMenuListbox, NoData, OS_LIGHT_COLORS, OverflowTooltip, PageTitle, Pagination, PathDisplay, PickerItem, Popover, Positive, RadioButton, RadioGroup, Recon, RemainingTags, SEVERITY_VALUE, ScrollArea, SearchInput, Select, SelectNode, SelectNodeListItem, Sent, Severity, SeverityBadge, SeverityBadgeLabel, SeverityBar$1 as SeverityBar, Shield, SideDrawer, Skeleton, Slider, SpiderChart, Spinner, StaticDatePicker, StaticDateTimePicker, StepperPanel, Success, Tab, Table$1 as Table, Tabs, Tag, TagAvatarSize, TagBackgroundColorVariants, TagStatus, Tags, ThemeProvider, TimePicker, Toast, Toaster, Toggle, Tooltip, TooltipSize, Upload$1 as Upload, ViewSwitcher, Warning, agentcyBlue, agentcyDarkBlue, agentcyYellow, augmentTreeData, barShadow, blue100, blue200, blue300, blue400, blue50, blue500, blue600, blue700, blue800, blue900, blueAlpha10, blueAlpha40, blueFocusRingStrong, blueFocusRingWeak, bluePalette, boxStyle, brandColors, capitalize, darkModeCardFloating, darkModeCardLifted, darkModeCardRaised, darkModeCardSubtle, darkModeFooterBottom, darkModeSideDrawerLeft, darkModeSideDrawerRight, darkVars, deepCopyTree, flattenSelectTree, flattenSelectTreeWithSearch, flattenSelectTreeWithoutSearch, formatNodeValue, gaugeLabel, gaugeWrapper, getAllSelectedLeaves, getAllSelectedParents, getChildrenOfTopLevelNode, getColorBySeverity, getLeafCounts, getTagStyle, gradientStopColors, gradientsPalette, green10, green100, green200, green300, green40, green400, green50, green500, green600, green700, green800, green900, greenPalette, grey0, grey100, grey200, grey300, grey400, grey50, grey500, grey600, grey700, grey800, grey900, greyAlpha10, greyAlpha40, greyPalette, illustrationGradientEnd, illustrationGradientStart, illustrationInfoGradientEnd, illustrationInfoGradientMiddle, illustrationInfoGradientStart, illustrationNegativeGradientStart, illustrationPositiveGradientEnd, illustrationPositiveGradientMiddle, illustrationPositiveGradientStart, illustrationRing, illustrationShell, illustrationStroke, illustrationSurface, illustrationSurfaceSubtle, illustrationWarningGradientEnd, illustrationWarningGradientStart, isLeaf, lavender10, lavender100, lavender200, lavender300, lavender400, lavender50, lavender500, lavender600, lavender700, lavender800, lavender900, lavenderPalette, lightAlphaOrange10, lightAlphaOrange40, lightBlue100, lightBlue200, lightBlue300, lightBlue400, lightBlue50, lightBlue500, lightBlue600, lightBlue700, lightBlue800, lightBlue900, lightBlueAlpha10, lightBlueAlpha40, lightBluePalette, lightModeCardFloating, lightModeCardLifted, lightModeCardRaised, lightModeCardSubtle, lightModeFooterBottom, lightModeSideDrawer, lightModeSideDrawerLeft, lightModeSideDrawerRight, lightOrange100, lightOrange200, lightOrange300, lightOrange400, lightOrange50, lightOrange500, lightOrange600, lightOrange700, lightOrange800, lightOrange900, lightOrangePalette, lightVars, lime10, lime100, lime200, lime300, lime400, lime50, lime500, lime600, lime700, lime800, lime900, limePalette, mergeNodeChildrenValueToText, night10, night100, night200, night300, night400, night50, night500, night600, night700, night800, night900, nightPalette, normalizeSeverity, orange100, orange200, orange300, orange400, orange50, orange500, orange600, orange700, orange800, orange900, orangeAlpha10, orangeAlpha40, orangePalette, outshiftBlue, outshiftLogoDark, outshiftLogoGreen, outshiftLogoLightBlue, outshiftLogoLightOrange, outshiftLogoOrange, outshiftLogoWhite, outshiftMidnightBlue, outshiftOrange, pink10, pink100, pink200, pink300, pink400, pink50, pink500, pink600, pink700, pink800, pink900, pinkPalette, purple100, purple200, purple300, purple400, purple50, purple500, purple600, purple700, purple800, purple900, purpleAlpha10, purpleAlpha40, purplePalette, red100, red200, red300, red400, red50, red500, red600, red700, red800, red900, redAlpha10, redAlpha40, redPalette, selectTagStyle, setSelectedMainSkillCategories, sortBySeverity, sunset10, sunset100, sunset200, sunset300, sunset400, sunset50, sunset500, sunset600, sunset700, sunset800, sunset900, sunsetPalette, surfaceDark100, surfaceDark200, surfaceDark300, surfaceDark400, surfaceDark50, surfaceDark500, surfaceDark600, surfaceDark700, surfaceDark800, surfaceDark800Alpha40, surfaceDark900, surfaceDark900Alpha10, surfaceDark900Alpha40, surfaceDarkPalette, surfaceLight100, surfaceLight200, surfaceLight300, surfaceLight400, surfaceLight50, surfaceLight500, surfaceLight50Alpha40, surfaceLight600, surfaceLight700, surfaceLight800, surfaceLight800Alpha40, surfaceLight900, surfaceLight900Alpha10, surfaceLight900Alpha40, surfaceLightPalette, teal10, teal100, teal200, teal300, teal400, teal50, teal500, teal600, teal700, teal800, teal900, tealPalette, toast, upwardsPush, useNestedMenu, useThemeMode, yellow100, yellow200, yellow300, yellow400, yellow50, yellow500, yellow600, yellow700, yellow800, yellow900, yellowAlpha10, yellowAlpha40, yellowPalette };
|
|
7462
|
-
export type { AccordionProps, ActionsDialogProps, ActivityTimelineProps, ActivityTimelineStep, AnchorLinkMenuItem, AnchorLinkMenuProps, AssetsData, AtomicTypes, AugmentedSelectNodeType, AvatarGroupProps, AvatarProps, BackdropProps, BadgeProps, BadgeType, BannerProps, BarChartProps, BarGraphItem, BarGraphProps, BarProps, BasePageProps, BreadcrumbItem, BreadcrumbsProps, ButtonProps, CardActionAreaProps, CardActionsProps, CardContentProps, CardDescriptionProps, CardHeaderProps, CardProps, CardSubheaderProps, ChartCategory, ChartCategoryItem, ChartDataItem, ChartProps, CheckboxProps, CodeBlockHeaderButton, CodeBlockProps, CodeBlockSize, ConditionalPropsByType, CopyButtonPosition, CopyButtonProps, CopyButtonSize, CopyButtonStylesProps, DatePickerProps, DateRangePickerProps, DateTimePickerProps, DialogActionsProps, DialogContentProps, DialogContentTextProps, DialogProps, DialogSubtitleProps, DialogTitleProps, DividerProps, DonutProps, EmptyStateDirection, EmptyStateProps, EmptyStateVariant, ExportProps, ExtendedChartProps, ExtendedDataPoint, FilterData, FilterOptionData, FiltersBarActionsProps, FiltersBarProps, FiltersDrawerProps, FlattenSelectTreeArgs, FlattenedSelectTreeData, FloatingButtonProps, FloatingButtonSize, FloatingButtonVariant, FooterProps, GaugeChartProps, GlobalSearchGroup, GlobalSearchItem, GlobalSearchProps, Gradient, GradientsPalette, HeaderAction, HeaderProps, HeaderTooltipMeta, IChartWidgetProps, IconProps, IndicatorBadgeProps, IndicatorBadgeValue, InputFieldProps, KeyValuePairItem, KeyValuePairsLayout, KeyValuePairsProps, LayoutProps, LineChartProps, LinkColorStatus, LinkProps, LinkState, ListItemButtonProps, ListItemIconProps, ListItemProps, ListItemTextProps, ListProps, ListSubheaderProps, LoadingErrorStateProps, LoadingStatesProps, LoadingStatesSkeletonState, MenuItemProps, MenuItemSize, MenuProps, MessageProps, MessageType, NavigationDrawerProps, NavigationItemData, NavigationItemState, NavigationProps, NavigationSectionData, NavigationSubNavigationProps, NestedMenuProps, OverflowTooltipProps, PageTitleProps, PaginationProps, PathDisplayProps, PickerDisplay, PickerItemProps, PickerSize, PopoverArrowPosition, PopoverProps, RadioButtonProps, RadioGroupProps, ScrollAreaProps, SearchInputProps, SelectNodeType, SelectProps, SeverityBadgeLabelProps, SeverityBadgeProps, SeverityBadgeScoreSystemItem, SeverityBarProps, SideDrawerFooterProps, SideDrawerHeaderProps, SideDrawerProps, SkeletonProps, SliderProps, SpiderChartProps, SpinnerProps, StaticDatePickerProps, StaticDateTimePickerProps, StaticTimePickerProps, StatusBanner, StepperPanelProps, StepperStep, TabProps, TableChartDataItem, TableProps, TableRow, TableTitle, TabsProps, TabsType, TagProps, TagStatusStyle, ThemeModeContextValue, ThemeProviderProps, TimePickerProps, ToastProps, ToastType, ToasterProps, ToggleProps, TooltipProps, TopToolbarProps, UploadFile, UploadFileStatus, UploadProps, VarsType, ViewSwitcherOption, ViewSwitcherOptionObject, ViewSwitcherOptionProperties, ViewSwitcherProps, ViewSwitcherSize };
|
|
7531
|
+
export { Accordion, StyledAccordionSummary as AccordionSummary, ActionsDialog, ActivityTimeline, ActivityTimelineStepStatus, AddDomain, AddRepos, AnchorLinkMenu, AttackPathAnalysis, AttackPathAnalysisWalkThrough, Avatar, AvatarGroup, Backdrop, Badge, Banner, BarChart$1 as BarChart, BarGraph, BasePage, Breadcrumbs, Button, Card, CardActionArea, CardActions, CardContent, CardDescription, CardHeader, CardSubheader, Celebration, ChartType, ChartTypeComponents, ChartWidget, Checkbox$1 as Checkbox, CiCd, Cloud, CloudSimple, CodeBlock, CopyButton, CreateTableInstance, Dashboard, Data, DatePicker, DateRangePicker, DateTimePicker, Dialog, DialogActions, DialogContent, DialogContentText, DialogSubtitle, DialogTitle, Divider, DonutChart, EMPTY_FUNCTION, EmptyData, EmptyState, FiltersBar, FiltersDrawer, FloatingButton, Footer, GaugeChart, GeneralSize, Git, GitSimple, GlobalSearchInput, Header, HorizontalBarChart, Icon, IconPosition, index_d as Icons, IndicatorBadge, Info, InputField, KeyValuePairs, Kubernetes, LabelAndChildrenTooltipContent, Layout$1 as Layout, LineChart, Link$1 as Link, LinkColorEnum, LinkType, List$1 as List, ListItem, ListItemButton, ListItemIcon, ListItemText, ListSubheader, LoadingErrorState, LoadingStates, Menu$1 as Menu, MenuItem, StyledMenuSubheader as MenuSubheader, Message, Navigation, NavigationDrawer, NavigationSubNavigation, Negative, NestedMenu, NestedMenuListbox, NoData, OS_LIGHT_COLORS, OverflowTooltip, PageTitle, Pagination, PathDisplay, PickerItem, Popover, Positive, RadioButton, RadioGroup, Recon, RemainingTags, SEVERITY_VALUE, ScrollArea, SearchInput, Select, SelectNode, SelectNodeListItem, Sent, Severity, SeverityBadge, SeverityBadgeLabel, SeverityBar$1 as SeverityBar, Shield, SideDrawer, Skeleton, Slider, SpiderChart, Spinner, StaticDatePicker, StaticDateTimePicker, StepperPanel, Success, Tab, Table$1 as Table, Tabs, Tag, TagAvatarSize, TagBackgroundColorVariants, TagStatus, Tags, ThemeMode, ThemeProvider, TimePicker, Toast, Toaster, Toggle, Tooltip, TooltipSize, Upload$1 as Upload, ViewSwitcher, Warning, agentcyBlue, agentcyDarkBlue, agentcyYellow, augmentTreeData, barShadow, blue100, blue200, blue300, blue400, blue50, blue500, blue600, blue700, blue800, blue900, blueAlpha10, blueAlpha40, blueFocusRingStrong, blueFocusRingWeak, bluePalette, boxStyle, brandColors, capitalize, darkModeCardFloating, darkModeCardLifted, darkModeCardRaised, darkModeCardSubtle, darkModeFooterBottom, darkModeSideDrawerLeft, darkModeSideDrawerRight, darkVars, deepCopyTree, flattenSelectTree, flattenSelectTreeWithSearch, flattenSelectTreeWithoutSearch, formatNodeValue, gaugeLabel, gaugeWrapper, getAllSelectedLeaves, getAllSelectedParents, getChildrenOfTopLevelNode, getColorBySeverity, getLeafCounts, getTagStyle, gradientStopColors, gradientsPalette, green10, green100, green200, green300, green40, green400, green50, green500, green600, green700, green800, green900, greenPalette, grey0, grey100, grey200, grey300, grey400, grey50, grey500, grey600, grey700, grey800, grey900, greyAlpha10, greyAlpha40, greyPalette, illustrationGradientEnd, illustrationGradientStart, illustrationInfoGradientEnd, illustrationInfoGradientMiddle, illustrationInfoGradientStart, illustrationNegativeGradientStart, illustrationPositiveGradientEnd, illustrationPositiveGradientMiddle, illustrationPositiveGradientStart, illustrationRing, illustrationShell, illustrationStroke, illustrationSurface, illustrationSurfaceSubtle, illustrationWarningGradientEnd, illustrationWarningGradientStart, isLeaf, lavender10, lavender100, lavender200, lavender300, lavender400, lavender50, lavender500, lavender600, lavender700, lavender800, lavender900, lavenderPalette, lightAlphaOrange10, lightAlphaOrange40, lightBlue100, lightBlue200, lightBlue300, lightBlue400, lightBlue50, lightBlue500, lightBlue600, lightBlue700, lightBlue800, lightBlue900, lightBlueAlpha10, lightBlueAlpha40, lightBluePalette, lightModeCardFloating, lightModeCardLifted, lightModeCardRaised, lightModeCardSubtle, lightModeFooterBottom, lightModeSideDrawer, lightModeSideDrawerLeft, lightModeSideDrawerRight, lightOrange100, lightOrange200, lightOrange300, lightOrange400, lightOrange50, lightOrange500, lightOrange600, lightOrange700, lightOrange800, lightOrange900, lightOrangePalette, lightVars, lime10, lime100, lime200, lime300, lime400, lime50, lime500, lime600, lime700, lime800, lime900, limePalette, mergeNodeChildrenValueToText, night10, night100, night200, night300, night400, night50, night500, night600, night700, night800, night900, nightPalette, normalizeSeverity, orange100, orange200, orange300, orange400, orange50, orange500, orange600, orange700, orange800, orange900, orangeAlpha10, orangeAlpha40, orangePalette, outshiftBlue, outshiftLogoDark, outshiftLogoGreen, outshiftLogoLightBlue, outshiftLogoLightOrange, outshiftLogoOrange, outshiftLogoWhite, outshiftMidnightBlue, outshiftOrange, pink10, pink100, pink200, pink300, pink400, pink50, pink500, pink600, pink700, pink800, pink900, pinkPalette, purple100, purple200, purple300, purple400, purple50, purple500, purple600, purple700, purple800, purple900, purpleAlpha10, purpleAlpha40, purplePalette, red100, red200, red300, red400, red50, red500, red600, red700, red800, red900, redAlpha10, redAlpha40, redPalette, selectTagStyle, setSelectedMainSkillCategories, sortBySeverity, sunset10, sunset100, sunset200, sunset300, sunset400, sunset50, sunset500, sunset600, sunset700, sunset800, sunset900, sunsetPalette, surfaceDark100, surfaceDark200, surfaceDark300, surfaceDark400, surfaceDark50, surfaceDark500, surfaceDark600, surfaceDark700, surfaceDark800, surfaceDark800Alpha40, surfaceDark900, surfaceDark900Alpha10, surfaceDark900Alpha40, surfaceDarkPalette, surfaceLight100, surfaceLight200, surfaceLight300, surfaceLight400, surfaceLight50, surfaceLight500, surfaceLight50Alpha40, surfaceLight600, surfaceLight700, surfaceLight800, surfaceLight800Alpha40, surfaceLight900, surfaceLight900Alpha10, surfaceLight900Alpha40, surfaceLightPalette, teal10, teal100, teal200, teal300, teal400, teal50, teal500, teal600, teal700, teal800, teal900, tealPalette, toast, upwardsPush, useNestedMenu, useThemeMode, yellow100, yellow200, yellow300, yellow400, yellow50, yellow500, yellow600, yellow700, yellow800, yellow900, yellowAlpha10, yellowAlpha40, yellowPalette };
|
|
7532
|
+
export type { AccordionProps, ActionsDialogProps, ActivityTimelineProps, ActivityTimelineStep, AnchorLinkMenuItem, AnchorLinkMenuProps, AssetsData, AtomicTypes, AugmentedSelectNodeType, AvatarGroupProps, AvatarProps, BackdropProps, BadgeProps, BadgeType, BannerProps, BarChartProps, BarGraphItem, BarGraphProps, BarProps, BasePageProps, BreadcrumbItem, BreadcrumbsProps, ButtonProps, CardActionAreaProps, CardActionsProps, CardContentProps, CardDescriptionProps, CardHeaderProps, CardProps, CardSubheaderProps, ChartCategory, ChartCategoryItem, ChartDataItem, ChartProps, CheckboxProps, CodeBlockHeaderButton, CodeBlockProps, CodeBlockSize, ConditionalPropsByType, CopyButtonPosition, CopyButtonProps, CopyButtonSize, CopyButtonStylesProps, DatePickerProps, DateRangePickerProps, DateTimePickerProps, DialogActionsProps, DialogContentProps, DialogContentTextProps, DialogProps, DialogSubtitleProps, DialogTitleProps, DividerProps, DividerVariant, DonutProps, EmptyStateDirection, EmptyStateProps, EmptyStateVariant, ExportProps, ExtendedChartProps, ExtendedDataPoint, FilterData, FilterOptionData, FiltersBarActionsProps, FiltersBarProps, FiltersDrawerProps, FlattenSelectTreeArgs, FlattenedSelectTreeData, FloatingButtonProps, FloatingButtonSize, FloatingButtonVariant, FooterProps, GaugeChartProps, GlobalSearchGroup, GlobalSearchItem, GlobalSearchProps, Gradient, GradientsPalette, HeaderAction, HeaderProps, HeaderTooltipMeta, IChartWidgetProps, IconProps, IndicatorBadgeProps, IndicatorBadgeValue, InputFieldProps, KeyValuePairItem, KeyValuePairsLayout, KeyValuePairsProps, LayoutProps, LineChartProps, LinkColorStatus, LinkProps, LinkState, ListItemButtonProps, ListItemIconProps, ListItemProps, ListItemTextProps, ListProps, ListSubheaderProps, LoadingErrorStateProps, LoadingStatesProps, LoadingStatesSkeletonState, MenuItemProps, MenuItemSize, MenuProps, MessageProps, MessageType, NavigationDrawerProps, NavigationItemData, NavigationItemState, NavigationProps, NavigationSectionData, NavigationSubNavigationProps, NestedMenuProps, OverflowTooltipProps, PageTitleProps, PaginationProps, PathDisplayProps, PickerDisplay, PickerItemProps, PickerSize, PopoverArrowPosition, PopoverProps, PopoverSize, RadioButtonProps, RadioGroupProps, ScrollAreaProps, SearchInputProps, SelectNodeType, SelectProps, SeverityBadgeLabelProps, SeverityBadgeProps, SeverityBadgeScoreSystemItem, SeverityBarProps, SideDrawerFooterProps, SideDrawerHeaderProps, SideDrawerProps, SkeletonProps, SliderProps, SpiderChartProps, SpinnerProps, StaticDatePickerProps, StaticDateTimePickerProps, StaticTimePickerProps, StatusBanner, StepperPanelProps, StepperStep, TabProps, TableChartDataItem, TableProps, TableRow, TableTitle, TabsProps, TabsType, TagProps, TagStatusStyle, ThemeModeContextValue, ThemeProviderProps, TimePickerProps, ToastAction, ToastProps, ToastType, ToasterProps, ToggleProps, TooltipProps, TopToolbarProps, UploadFile, UploadFileStatus, UploadProps, VarsType, ViewSwitcherOption, ViewSwitcherOptionObject, ViewSwitcherOptionProperties, ViewSwitcherProps, ViewSwitcherSize };
|