@open-ui-kit/core 2.3.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +2 -17915
- package/index.cjs.js.map +1 -1
- package/index.d.ts +349 -11
- package/index.esm.js +2 -17385
- package/index.esm.js.map +1 -1
- package/index.umd.js +2 -17845
- package/index.umd.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { Color, Theme as Theme$1, TypographyVariant, SxProps as SxProps$1 } from
|
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import react__default, { ReactNode, ComponentType, CSSProperties, MouseEvent, ReactElement, ComponentProps, HTMLAttributes, SyntheticEvent, ElementType } from 'react';
|
|
4
4
|
import * as _mui_material from '@mui/material';
|
|
5
|
-
import { AccordionProps as AccordionProps$1, AccordionSummaryProps, BoxProps, BackdropProps as BackdropProps$1, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$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, CardActionsProps as CardActionsProps$1, CardContentProps as CardContentProps$1, CardHeaderProps as CardHeaderProps$1, CheckboxProps as CheckboxProps$1, TooltipProps as TooltipProps$1, IconButtonProps,
|
|
6
|
-
export { Box, ButtonGroup, Container, Grid, IconButton, ListItemAvatar, Paper, PopoverOrigin, SelectChangeEvent, Stack,
|
|
5
|
+
import { AccordionProps as AccordionProps$1, AccordionSummaryProps, BoxProps, BackdropProps as BackdropProps$1, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$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, CardActionsProps as CardActionsProps$1, StackProps, CardContentProps as CardContentProps$1, CardHeaderProps as CardHeaderProps$1, CheckboxProps as CheckboxProps$1, TooltipProps as TooltipProps$1, IconButtonProps, TextFieldProps, Popper, PopoverProps as PopoverProps$1, DividerProps as DividerProps$1, DrawerProps, ListProps as ListProps$1, ListItemProps as ListItemProps$1, ListItemButtonProps as ListItemButtonProps$1, ListItemIconProps as ListItemIconProps$1, ListItemTextProps as ListItemTextProps$1, ListSubheaderProps as ListSubheaderProps$1, InputProps, IconProps as IconProps$1, CircularProgressProps, DialogProps as DialogProps$1, DialogActionsProps as DialogActionsProps$1, DialogContentProps as DialogContentProps$1, DialogContentTextProps as DialogContentTextProps$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, Typography } from '@mui/material';
|
|
6
|
+
export { Box, ButtonGroup, Container, Grid, IconButton, ListItemAvatar, Paper, PopoverOrigin, SelectChangeEvent, Stack, useTheme } from '@mui/material';
|
|
7
7
|
import { TimelineProps } from '@mui/lab';
|
|
8
8
|
import { LinkProps as LinkProps$1, To } from 'react-router-dom';
|
|
9
9
|
import { SyntaxHighlighterProps } from 'react-syntax-highlighter';
|
|
@@ -348,18 +348,94 @@ interface VarsType {
|
|
|
348
348
|
accentJWeak: string;
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
+
/**
|
|
352
|
+
* Theme-aware gradient tokens.
|
|
353
|
+
*
|
|
354
|
+
* Mirrors `VarsType`: a single flat contract that every theme must implement,
|
|
355
|
+
* mounted on the MUI palette as `palette.gradients`. Components read
|
|
356
|
+
* `theme.palette.gradients.gradientDataVizCyanBlue` with no theme branching —
|
|
357
|
+
* swapping the theme swaps the value, exactly like `palette.vars`.
|
|
358
|
+
*
|
|
359
|
+
* Token names come from the `gradient-token` labels in Figma "OXP"
|
|
360
|
+
* (wvTxiCkZBmP2jH24hzydHR), frame 274405:38026 "Components with Gradients",
|
|
361
|
+
* camelCased from the Figma path: `Gradient/Data-Viz-Cyan-Blue` ->
|
|
362
|
+
* `gradientDataVizCyanBlue`.
|
|
363
|
+
*/
|
|
364
|
+
interface GradientVarsType {
|
|
365
|
+
gradientGaugeArcAmber: string;
|
|
366
|
+
gradientGaugeArcTeal: string;
|
|
367
|
+
gradientIconSubtractBlue: string;
|
|
368
|
+
gradientDataVizCyanTeal: string;
|
|
369
|
+
gradientDataVizCyanBlue: string;
|
|
370
|
+
gradientDataVizPinkMagenta: string;
|
|
371
|
+
/** Renamed: Figma labels this `Data-Viz-Pink-Magenta` but the stops are orange. */
|
|
372
|
+
gradientDataVizOrangeAmber: string;
|
|
373
|
+
/** Renamed: Figma labels this `Data-Viz-Pink-Magenta`; single stop, renders flat. */
|
|
374
|
+
gradientDataVizPinkFlat: string;
|
|
375
|
+
gradientDataVizPinkPurple: string;
|
|
376
|
+
gradientDataVizOrangeGold: string;
|
|
377
|
+
gradientDataVizBlueDark: string;
|
|
378
|
+
gradientProgressBarTeal: string;
|
|
379
|
+
gradientGraphFlow: string;
|
|
380
|
+
gradientGraphFlowPink: string;
|
|
381
|
+
gradientGraphFlowTeal: string;
|
|
382
|
+
/** Renamed: Figma reuses `Graph-Flow` for this distinct maroon ramp. */
|
|
383
|
+
gradientGraphFlowMaroon: string;
|
|
384
|
+
gradientGlobalButtonPrimaryFill: string;
|
|
385
|
+
/** Gradient text fill (`background-clip: text`). Figma: `Gradient/Text-White-Blue`. */
|
|
386
|
+
gradientTextWhiteBlue: string;
|
|
387
|
+
gradientGlobalDividerFade: string;
|
|
388
|
+
gradientOverlayBlackFadeIn: string;
|
|
389
|
+
gradientWelcomeCardBgDark: string;
|
|
390
|
+
gradientAlertLineRed: string;
|
|
391
|
+
gradientDashboardGraphNodeFill: string;
|
|
392
|
+
gradientGraphConnectorFill: string;
|
|
393
|
+
/** `Graph-Connector-Glow`: radial lift from the bottom edge of the card. */
|
|
394
|
+
gradientGraphConnectorGlow: string;
|
|
395
|
+
gradientIconButtonBlue: string;
|
|
396
|
+
gradientCardGlassBg: string;
|
|
397
|
+
/** Renamed: same stops as `gradientCardGlassBg` at 70% layer opacity. */
|
|
398
|
+
gradientCardGlassBgSubtle: string;
|
|
399
|
+
/** `Card-Glass-BORDER`: white hairline that fades out toward the bottom. */
|
|
400
|
+
gradientCardGlassBorder: string;
|
|
401
|
+
/** `Dashboard-Card/Fill/Cyan-Purple`: cyan-to-periwinkle flair behind the glass blur. */
|
|
402
|
+
gradientDashboardCardFillCyanPurple: string;
|
|
403
|
+
/** `Card-Glass-CTA-Glow`: mint-blue-pink-gold glow behind the glass CTA. */
|
|
404
|
+
gradientCardGlassCtaGlow: string;
|
|
405
|
+
gradientGlobalBorderFade: string;
|
|
406
|
+
/** `Input-Border-Blue`: white-to-blue ramp around the prompt input field. */
|
|
407
|
+
gradientInputBorderBlue: string;
|
|
408
|
+
/** Renamed: Figma reuses `Global-Border/Fade` for this distinct rainbow ramp. */
|
|
409
|
+
gradientGlobalBorderRainbow: string;
|
|
410
|
+
gradientGlobalButtonPrimaryBorderGlow: string;
|
|
411
|
+
gradientDashboardGraphNodeBorder: string;
|
|
412
|
+
gradientGraphConnectorStroke: string;
|
|
413
|
+
gradientIconButtonBlueGlow: string;
|
|
414
|
+
/** Named `Card-Highlight-Radial` in Figma, but the swatch fill is linear. */
|
|
415
|
+
gradientCardHighlightRadial: string;
|
|
416
|
+
gradientGlowOrange: string;
|
|
417
|
+
gradientGlowGreen: string;
|
|
418
|
+
gradientGlowRed: string;
|
|
419
|
+
gradientGlowPinkShadow: string;
|
|
420
|
+
gradientBackgroundGlowBlue: string;
|
|
421
|
+
gradientPanelExecBorder: string;
|
|
422
|
+
gradientPanelBorderBlueCyanDark: string;
|
|
423
|
+
}
|
|
424
|
+
|
|
351
425
|
declare module "@mui/material/styles" {
|
|
352
426
|
interface Palette {
|
|
353
427
|
tertiary: Palette["primary"];
|
|
354
428
|
negative: Palette["primary"];
|
|
355
429
|
orange: Palette["primary"];
|
|
356
430
|
vars: VarsType;
|
|
431
|
+
gradients: GradientVarsType;
|
|
357
432
|
}
|
|
358
433
|
interface PaletteOptions {
|
|
359
434
|
tertiary?: PaletteOptions["primary"];
|
|
360
435
|
negative?: PaletteOptions["primary"];
|
|
361
436
|
orange?: PaletteOptions["primary"];
|
|
362
437
|
vars?: VarsType;
|
|
438
|
+
gradients?: GradientVarsType;
|
|
363
439
|
}
|
|
364
440
|
interface PaletteColor extends Partial<Color> {
|
|
365
441
|
}
|
|
@@ -394,7 +470,11 @@ declare module "@mui/material/Button" {
|
|
|
394
470
|
contained: false;
|
|
395
471
|
primary: true;
|
|
396
472
|
secondary: true;
|
|
473
|
+
/** Gradient background fill. Figma: `Gradient/Global-Button-Primary/Fill`. */
|
|
474
|
+
gradient: true;
|
|
397
475
|
outlined: true;
|
|
476
|
+
/** Gradient border ring. Figma: `Gradient/Global-Button-Primary/Border-Glow`. */
|
|
477
|
+
gradientOutlined: true;
|
|
398
478
|
tertariary: true;
|
|
399
479
|
}
|
|
400
480
|
interface ButtonPropsColorOverrides {
|
|
@@ -428,6 +508,13 @@ declare module "@mui/material/Typography" {
|
|
|
428
508
|
body2Semibold: true;
|
|
429
509
|
headingSubSection: true;
|
|
430
510
|
}
|
|
511
|
+
interface TypographyOwnProps {
|
|
512
|
+
/**
|
|
513
|
+
* Fill the text with a gradient (`background-clip: text`) instead of a
|
|
514
|
+
* flat color. Composes with any `variant`. Figma: `Gradient/Text-White-Blue`.
|
|
515
|
+
*/
|
|
516
|
+
gradient?: boolean;
|
|
517
|
+
}
|
|
431
518
|
}
|
|
432
519
|
|
|
433
520
|
interface AccordionProps extends AccordionProps$1 {
|
|
@@ -495,17 +582,25 @@ interface ActivityTimelineStep {
|
|
|
495
582
|
content?: ReactNode;
|
|
496
583
|
/** Expands accordion content by default when content is provided. */
|
|
497
584
|
defaultExpanded?: boolean;
|
|
585
|
+
/** Time label shown to the right of the line. Gradient variant only. */
|
|
586
|
+
time?: string;
|
|
498
587
|
}
|
|
499
588
|
interface ActivityTimelineProps extends Omit<TimelineProps, "children" | "ref"> {
|
|
500
589
|
/** When true, step dots and connector colors are calculated from each step position. */
|
|
501
590
|
automaticProgress?: boolean;
|
|
502
591
|
/** Controls the timeline title typography and vertical spacing. */
|
|
503
592
|
size?: "large" | "medium";
|
|
504
|
-
/**
|
|
593
|
+
/**
|
|
594
|
+
* `gradient` renders the "Key Events" style: glowing status dots on a single
|
|
595
|
+
* line that fades down the list, with each step's `time` beside it. Steps run
|
|
596
|
+
* newest first, and the oldest two dim to 50% and 30%.
|
|
597
|
+
*/
|
|
598
|
+
variant?: "default" | "gradient";
|
|
599
|
+
/** Ordered steps rendered in the activity timeline, newest first. */
|
|
505
600
|
steps: ActivityTimelineStep[];
|
|
506
601
|
}
|
|
507
602
|
|
|
508
|
-
declare const ActivityTimeline: ({ automaticProgress, size, steps, ...props }: ActivityTimelineProps) => react.JSX.Element;
|
|
603
|
+
declare const ActivityTimeline: ({ automaticProgress, size, variant, steps, ...props }: ActivityTimelineProps) => react.JSX.Element;
|
|
509
604
|
|
|
510
605
|
interface AnchorLinkMenuItem {
|
|
511
606
|
/** Stable id passed to `selectedId` and `onSelect`. */
|
|
@@ -724,7 +819,7 @@ declare const Breadcrumbs: ({ iconPosition, items, size, sx, color, type, maximu
|
|
|
724
819
|
interface ButtonProps extends Omit<ButtonProps$1, "ref"> {
|
|
725
820
|
/** Button label, icon, or composed content rendered inside the control. */
|
|
726
821
|
children?: ButtonProps$1["children"];
|
|
727
|
-
/** Visual style for the action: primary, secondary, outlined, or tertariary. */
|
|
822
|
+
/** Visual style for the action: primary, secondary, gradient, outlined, gradientOutlined, or tertariary. */
|
|
728
823
|
variant?: ButtonProps$1["variant"];
|
|
729
824
|
/** Button scale. Large min height is 40px, medium is 32px, and small is 24px. Width grows with label text until constrained, then height grows. */
|
|
730
825
|
size?: ButtonProps$1["size"];
|
|
@@ -735,9 +830,49 @@ interface ButtonProps extends Omit<ButtonProps$1, "ref"> {
|
|
|
735
830
|
/** Open UI Kit button wrapper with tokenized variants, sizes, icon spacing, and states. */
|
|
736
831
|
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
737
832
|
|
|
833
|
+
/**
|
|
834
|
+
* Severity levels the alert card is designed for.
|
|
835
|
+
*
|
|
836
|
+
* Deliberately not the `Severity` enum from `@/common`: that has no `WARNING`
|
|
837
|
+
* member, and its other four levels have no design in `Alerts Card`
|
|
838
|
+
* (274421:47415).
|
|
839
|
+
*/
|
|
840
|
+
type CardAlertSeverity = "warning" | "critical";
|
|
738
841
|
interface CardProps extends CardProps$1 {
|
|
842
|
+
/**
|
|
843
|
+
* Applies the alert treatment: a translucent surface at the larger alert
|
|
844
|
+
* radius and padding. `critical` additionally draws the rainbow gradient
|
|
845
|
+
* border; `warning` has no border.
|
|
846
|
+
*
|
|
847
|
+
* Pair with `CardAlertHeader`, which picks up the matching accent colour.
|
|
848
|
+
*/
|
|
849
|
+
alert?: CardAlertSeverity | undefined;
|
|
739
850
|
/** Applies the disabled card treatment and marks the grouped content unavailable. */
|
|
740
851
|
disabled?: boolean;
|
|
852
|
+
/**
|
|
853
|
+
* Applies the graph-connector treatment: the `Graph-Connector` fill and glow
|
|
854
|
+
* gradients over a backdrop blur, edged with the matching 1px gradient
|
|
855
|
+
* stroke. A tighter 6px radius than the other treatments.
|
|
856
|
+
*/
|
|
857
|
+
connector?: boolean;
|
|
858
|
+
/** Applies the gradient border and blue glow treatment. */
|
|
859
|
+
glow?: boolean;
|
|
860
|
+
/**
|
|
861
|
+
* Applies the frosted-glass treatment: the `Gradient/Card-Glass-BG` fill over
|
|
862
|
+
* a backdrop blur, with a white hairline and a soft drop shadow.
|
|
863
|
+
*
|
|
864
|
+
* The fill is translucent, so the card picks up whatever is behind it.
|
|
865
|
+
*/
|
|
866
|
+
glass?: boolean;
|
|
867
|
+
/**
|
|
868
|
+
* Background image URL. Applies the image treatment: the photo is layered
|
|
869
|
+
* over `Gradient/Welcome-Card-BG-Dark` and under a
|
|
870
|
+
* `Gradient/Overlay-Black-Fade-In` scrim, and the card switches to the
|
|
871
|
+
* larger radius and padding the design uses for these surfaces.
|
|
872
|
+
*
|
|
873
|
+
* Mutually exclusive with `glow`.
|
|
874
|
+
*/
|
|
875
|
+
image?: string | undefined;
|
|
741
876
|
}
|
|
742
877
|
/** Clickable wrapper for interactive cards. */
|
|
743
878
|
type CardActionAreaProps = CardActionAreaProps$1;
|
|
@@ -755,12 +890,28 @@ interface CardSubheaderProps extends TypographyProps {
|
|
|
755
890
|
/** Small supporting label, metadata, or date text. */
|
|
756
891
|
children: ReactNode;
|
|
757
892
|
}
|
|
893
|
+
interface CardAlertHeaderProps extends StackProps {
|
|
894
|
+
/** Severity label, rendered in the parent card's accent colour. */
|
|
895
|
+
children: ReactNode;
|
|
896
|
+
/** Right-aligned relative time, e.g. `4m ago`. */
|
|
897
|
+
timestamp?: ReactNode;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
/**
|
|
901
|
+
* Meta row for an alert card: severity label on the left, timestamp on the
|
|
902
|
+
* right. Figma: `Alerts Card` (274421:47415).
|
|
903
|
+
*
|
|
904
|
+
* The label colour comes from the `--card-alert-accent` custom property that
|
|
905
|
+
* `cardAlertStyles` sets on the parent card, so the severity is declared once
|
|
906
|
+
* on `<Card alert>` rather than threaded through here as a second prop.
|
|
907
|
+
*/
|
|
908
|
+
declare const CardAlertHeader: ({ children, timestamp, ...props }: CardAlertHeaderProps) => react.JSX.Element;
|
|
758
909
|
|
|
759
910
|
declare const CardDescription: ({ children, ...props }: CardDescriptionProps) => react.JSX.Element;
|
|
760
911
|
|
|
761
912
|
declare const CardSubheader: ({ children, ...props }: CardSubheaderProps) => react.JSX.Element;
|
|
762
913
|
|
|
763
|
-
declare const Card: ({ disabled, sx, ...props }: CardProps) => react.JSX.Element;
|
|
914
|
+
declare const Card: ({ alert, disabled, image, sx, ...props }: CardProps) => react.JSX.Element;
|
|
764
915
|
declare const CardActionArea: ({ sx, ...props }: CardActionAreaProps) => react.JSX.Element;
|
|
765
916
|
declare const CardHeader: ({ sx, ...props }: CardHeaderProps) => react.JSX.Element;
|
|
766
917
|
declare const CardContent: ({ sx, ...props }: CardContentProps) => react.JSX.Element;
|
|
@@ -848,6 +999,7 @@ declare const InputField: react__default.ForwardRefExoticComponent<(Omit<_mui_ma
|
|
|
848
999
|
helperText?: _mui_material.TextFieldProps["helperText"];
|
|
849
1000
|
error?: _mui_material.TextFieldProps["error"];
|
|
850
1001
|
slotProps?: _mui_material.TextFieldProps["slotProps"];
|
|
1002
|
+
glow?: boolean;
|
|
851
1003
|
}, "ref"> | Omit<_mui_material.OutlinedTextFieldProps & {
|
|
852
1004
|
variant?: _mui_material.TextFieldProps["variant"];
|
|
853
1005
|
size?: _mui_material.TextFieldProps["size"];
|
|
@@ -855,6 +1007,7 @@ declare const InputField: react__default.ForwardRefExoticComponent<(Omit<_mui_ma
|
|
|
855
1007
|
helperText?: _mui_material.TextFieldProps["helperText"];
|
|
856
1008
|
error?: _mui_material.TextFieldProps["error"];
|
|
857
1009
|
slotProps?: _mui_material.TextFieldProps["slotProps"];
|
|
1010
|
+
glow?: boolean;
|
|
858
1011
|
}, "ref"> | Omit<_mui_material.StandardTextFieldProps & {
|
|
859
1012
|
variant?: _mui_material.TextFieldProps["variant"];
|
|
860
1013
|
size?: _mui_material.TextFieldProps["size"];
|
|
@@ -862,6 +1015,7 @@ declare const InputField: react__default.ForwardRefExoticComponent<(Omit<_mui_ma
|
|
|
862
1015
|
helperText?: _mui_material.TextFieldProps["helperText"];
|
|
863
1016
|
error?: _mui_material.TextFieldProps["error"];
|
|
864
1017
|
slotProps?: _mui_material.TextFieldProps["slotProps"];
|
|
1018
|
+
glow?: boolean;
|
|
865
1019
|
}, "ref">) & react__default.RefAttributes<HTMLDivElement>>;
|
|
866
1020
|
|
|
867
1021
|
type InputFieldProps = TextFieldProps & {
|
|
@@ -877,6 +1031,11 @@ type InputFieldProps = TextFieldProps & {
|
|
|
877
1031
|
error?: TextFieldProps["error"];
|
|
878
1032
|
/** Custom MUI slot props, merged with the internal shrunk label behavior. */
|
|
879
1033
|
slotProps?: TextFieldProps["slotProps"];
|
|
1034
|
+
/**
|
|
1035
|
+
* Applies the glow treatment: a pill-shaped field edged with the
|
|
1036
|
+
* `Input-Border-Blue` ramp, for prompt-style inputs.
|
|
1037
|
+
*/
|
|
1038
|
+
glow?: boolean;
|
|
880
1039
|
};
|
|
881
1040
|
|
|
882
1041
|
interface DateTimePickerProps extends DateTimePickerProps$1<Dayjs> {
|
|
@@ -2387,6 +2546,12 @@ interface ToastProps extends Omit<AlertProps, "variant" | "severity" | "children
|
|
|
2387
2546
|
type?: ToastType;
|
|
2388
2547
|
/** Optional bold title line rendered above the message. */
|
|
2389
2548
|
title?: string;
|
|
2549
|
+
/**
|
|
2550
|
+
* Applies the glow treatment: a `Global-Border/Fade` gradient border and a
|
|
2551
|
+
* blue glow cast from behind the toast. The glow is stronger when the toast
|
|
2552
|
+
* also has a `title`.
|
|
2553
|
+
*/
|
|
2554
|
+
glow?: boolean;
|
|
2390
2555
|
/** Optional body message shown in the toast content area. */
|
|
2391
2556
|
description?: string;
|
|
2392
2557
|
/** Shows the close button when true. */
|
|
@@ -2400,7 +2565,7 @@ interface ToastProps extends Omit<AlertProps, "variant" | "severity" | "children
|
|
|
2400
2565
|
}
|
|
2401
2566
|
type ToasterProps = react__default.ComponentProps<typeof Toaster$1>;
|
|
2402
2567
|
|
|
2403
|
-
declare const Toast: ({ type, showCloseButton, useNativeClose, title, description, action, id, customActions, ...props }: ToastProps) => react__default.JSX.Element | null;
|
|
2568
|
+
declare const Toast: ({ type, showCloseButton, useNativeClose, title, description, action, id, customActions, glow, ...props }: ToastProps) => react__default.JSX.Element | null;
|
|
2404
2569
|
declare const toast: ({ ...props }: Omit<ToastProps, "id">) => string | number;
|
|
2405
2570
|
|
|
2406
2571
|
declare const Toaster: ({ toastOptions, ...props }: ToasterProps) => react.JSX.Element;
|
|
@@ -2544,6 +2709,26 @@ interface IWidgetProps {
|
|
|
2544
2709
|
|
|
2545
2710
|
declare const Widget: ({ sx, label, headerChildren, headerLeftChildren, labelTooltip, titleTooltip, bodyElement, isLoading, isHorizontal, isEmpty, legendCustomComponent, tooltipProps, onLabelClick, dataRoseyUrn, }: IWidgetProps) => react.JSX.Element;
|
|
2546
2711
|
|
|
2712
|
+
/**
|
|
2713
|
+
* Typography with an optional gradient text fill.
|
|
2714
|
+
*
|
|
2715
|
+
* When the `gradient` prop is set, the glyphs are filled with a gradient via
|
|
2716
|
+
* `background-clip: text` instead of a flat color. It is a prop, not a
|
|
2717
|
+
* `variant`, so it composes with any `variant` (h1, subtitle, body, ...).
|
|
2718
|
+
*
|
|
2719
|
+
* `shouldForwardProp` keeps `gradient` off the DOM node so React does not warn
|
|
2720
|
+
* about a non-boolean attribute. The cast back to `typeof MuiTypography`
|
|
2721
|
+
* preserves the polymorphic `component` prop and every MUI variant, which a
|
|
2722
|
+
* plain `styled()` call would otherwise drop. Figma: `Gradient/Text-White-Blue`.
|
|
2723
|
+
*
|
|
2724
|
+
* The ramp spans the element's box and nothing rescales it, so how far a string
|
|
2725
|
+
* gets along it depends on how much of the line it fills — a short line stays
|
|
2726
|
+
* white, a full one reaches `#3f7def`. Do not add `width: fit-content` or
|
|
2727
|
+
* `background-size`: sizing the ramp to the text pins every string to the same
|
|
2728
|
+
* colour whatever its length.
|
|
2729
|
+
*/
|
|
2730
|
+
declare const StyledTypography: typeof Typography;
|
|
2731
|
+
|
|
2547
2732
|
interface DonutProps extends ChartProps {
|
|
2548
2733
|
/** Called with the selected slice data when a donut segment is clicked. */
|
|
2549
2734
|
handleClick?: (sliceData: ChartDataItem) => void;
|
|
@@ -2553,9 +2738,44 @@ interface DonutProps extends ChartProps {
|
|
|
2553
2738
|
*/
|
|
2554
2739
|
declare const DonutChart: ({ data, showTooltip, customTooltip, handleClick, }: DonutProps) => JSX.Element;
|
|
2555
2740
|
|
|
2556
|
-
|
|
2741
|
+
/**
|
|
2742
|
+
* Design-approved gauge ramps for the gradient treatment.
|
|
2743
|
+
*
|
|
2744
|
+
* Each key is the `gradient-token` swatch label on the matching widget in
|
|
2745
|
+
* Figma `Gauge Chart` (274417:44466), and the paired `Solid` swatch is the
|
|
2746
|
+
* ambient glow behind the value:
|
|
2747
|
+
*
|
|
2748
|
+
* | Key | Figma token | Arc stops | Glow |
|
|
2749
|
+
* | ------- | ---------------------------- | ---------------------------------- | ---------------- |
|
|
2750
|
+
* | `amber` | `Gradient/Gauge-Arc-Amber` | FFAE4C 100% → FFAE4C 78% | `lightOrange500` |
|
|
2751
|
+
* | `teal` | `Gradient/Gauge-Arc-Teal` | 29FCC4 → 00AF2F | `green500` |
|
|
2752
|
+
* | `blue` | `Gradient/Icon-Subtract-Blue`| 5096FF → `blue500` | `blue300` |
|
|
2753
|
+
*/
|
|
2754
|
+
type GaugeChartGradient = "amber" | "teal" | "blue";
|
|
2755
|
+
|
|
2756
|
+
/**
|
|
2757
|
+
* A gauge's single metric. Unlike the shared `ChartDataItem`, `color` is
|
|
2758
|
+
* optional — omit it and the default gauge derives the arc color from the
|
|
2759
|
+
* value through `getGaugeStatusColor`.
|
|
2760
|
+
*/
|
|
2761
|
+
interface GaugeChartDataItem extends Omit<ChartDataItem, "color"> {
|
|
2762
|
+
color?: string;
|
|
2763
|
+
}
|
|
2764
|
+
interface GaugeChartProps extends Omit<ChartProps, "data"> {
|
|
2765
|
+
/**
|
|
2766
|
+
* Single metric to plot. Widened rather than narrowed to
|
|
2767
|
+
* `GaugeChartDataItem[]` because `ExtendedChartProps` intersects these props
|
|
2768
|
+
* with the other charts', where the shared union still has to be accepted.
|
|
2769
|
+
*/
|
|
2770
|
+
data: ChartProps["data"] | GaugeChartDataItem[];
|
|
2557
2771
|
/** Highest target value used to calculate how much of the gauge arc is filled. */
|
|
2558
2772
|
maxValue?: number;
|
|
2773
|
+
/**
|
|
2774
|
+
* Applies the gradient treatment: a 270° ring with the named ramp filling
|
|
2775
|
+
* the value arc, an ambient glow behind the value, and a muted `%` suffix.
|
|
2776
|
+
* Replaces the default arc, dividers, and the data item's `color`.
|
|
2777
|
+
*/
|
|
2778
|
+
variant?: GaugeChartGradient;
|
|
2559
2779
|
/** Optional content shown below the numeric value inside the gauge. */
|
|
2560
2780
|
customLabelComponent?: ReactNode;
|
|
2561
2781
|
/** Optional dimensional overrides for compact or expanded gauge layouts. */
|
|
@@ -2568,7 +2788,7 @@ interface GaugeChartProps extends ChartProps {
|
|
|
2568
2788
|
textTop?: string;
|
|
2569
2789
|
};
|
|
2570
2790
|
}
|
|
2571
|
-
declare const GaugeChart: ({ data, maxValue, customLabelComponent, styleProps, }: GaugeChartProps) => react.JSX.Element;
|
|
2791
|
+
declare const GaugeChart: ({ data, maxValue, variant, customLabelComponent, styleProps, }: GaugeChartProps) => react.JSX.Element;
|
|
2572
2792
|
|
|
2573
2793
|
interface BarProps {
|
|
2574
2794
|
/** Data key to read from each item's `barData` object. */
|
|
@@ -2696,6 +2916,21 @@ type ExtendedDataPoint = {
|
|
|
2696
2916
|
/** Numeric value rendered by the default `variableA` radar series. */
|
|
2697
2917
|
variableA?: number;
|
|
2698
2918
|
} & DataPoint;
|
|
2919
|
+
/**
|
|
2920
|
+
* Design-approved data-viz ramps for a radar series.
|
|
2921
|
+
*
|
|
2922
|
+
* Each key is the `gradient-token` label on the matching widget in Figma
|
|
2923
|
+
* `Spider Chart` (274417:44533), camelCased the same way `GradientVarsType`
|
|
2924
|
+
* camelCases the Figma path:
|
|
2925
|
+
*
|
|
2926
|
+
* | Key | Figma token | Theme token |
|
|
2927
|
+
* | ------------ | ------------------------------- | ---------------------------- |
|
|
2928
|
+
* | `pinkPurple` | `Gradient/Data-Viz-Pink-Purple` | `gradientDataVizPinkPurple` |
|
|
2929
|
+
* | `cyanBlue` | `Gradient/Data-Viz-Cyan-Blue` | `gradientDataVizCyanBlue` |
|
|
2930
|
+
* | `orangeGold` | `Gradient/Data-Viz-Orange-Gold` | `gradientDataVizOrangeGold` |
|
|
2931
|
+
* | `blueDark` | `Gradient/Data-Viz-Blue-Dark` | `gradientDataVizBlueDark` |
|
|
2932
|
+
*/
|
|
2933
|
+
type SpiderChartGradient = "pinkPurple" | "cyanBlue" | "orangeGold" | "blueDark";
|
|
2699
2934
|
type RadarType = {
|
|
2700
2935
|
/** Legend and tooltip name for the radar series. */
|
|
2701
2936
|
name: string;
|
|
@@ -2705,6 +2940,20 @@ type RadarType = {
|
|
|
2705
2940
|
fill?: string;
|
|
2706
2941
|
/** CSS gradient or tokenized background used by the custom radar shape. */
|
|
2707
2942
|
background?: string;
|
|
2943
|
+
/**
|
|
2944
|
+
* Applies the gradient treatment: the named data-viz ramp fills the radar
|
|
2945
|
+
* area, the ramp's paired accent draws the outline, and each data vertex
|
|
2946
|
+
* gets a ring in the same accent over a translucent fill. Sets
|
|
2947
|
+
* `background`, `stroke` and `dot` unless those are given explicitly.
|
|
2948
|
+
*/
|
|
2949
|
+
gradient?: SpiderChartGradient;
|
|
2950
|
+
/**
|
|
2951
|
+
* Outline color for the radar polygon. Defaults to the accent paired with
|
|
2952
|
+
* `gradient`; without either, the polygon has no outline.
|
|
2953
|
+
*/
|
|
2954
|
+
stroke?: string;
|
|
2955
|
+
/** Renders a ring at each data vertex, stroked in the outline color. */
|
|
2956
|
+
dot?: boolean;
|
|
2708
2957
|
/** Optional Recharts shape override for the radar polygon. */
|
|
2709
2958
|
shape?: ReactElement;
|
|
2710
2959
|
};
|
|
@@ -7161,6 +7410,16 @@ declare const gradientStopColors: {
|
|
|
7161
7410
|
readonly secondaryBlueStrong: "#021d60";
|
|
7162
7411
|
readonly secondaryBlueHoverWeak: "#b3cbe7";
|
|
7163
7412
|
};
|
|
7413
|
+
declare const cardInsightGlow = "0px 4px 17px rgba(10, 96, 255, 0.4)";
|
|
7414
|
+
declare const cardGlassShadow = "0px 12px 48px rgba(0, 0, 0, 0.25)";
|
|
7415
|
+
declare const cardGlassBlur = "40px";
|
|
7416
|
+
declare const cardConnectorShadow = "6px 0px 4px rgba(13, 22, 34, 0.25)";
|
|
7417
|
+
declare const cardConnectorBlur = "30px";
|
|
7418
|
+
declare const alertCriticalText = "#eb4651";
|
|
7419
|
+
declare const alertWarningText = "#ffae4c";
|
|
7420
|
+
declare const cardAlertShadow = "0px 4px 4px rgba(0, 0, 0, 0.1)";
|
|
7421
|
+
declare const toastGlow = "0px -1px 34px rgba(10, 96, 255, 0.2)";
|
|
7422
|
+
declare const toastGlowStrong = "0px -1px 34px rgba(10, 96, 255, 0.4)";
|
|
7164
7423
|
declare const lightModeCardLifted = "0px 4px 4px rgba(200, 213, 245, 0.33)";
|
|
7165
7424
|
declare const lightModeCardSubtle = "0px 2px 5px rgba(200, 213, 245, 0.4)";
|
|
7166
7425
|
declare const lightModeCardRaised = "0px 4px 12px rgba(200, 213, 245, 0.5)";
|
|
@@ -7661,18 +7920,91 @@ declare const darkNavyPalette: {
|
|
|
7661
7920
|
300: string;
|
|
7662
7921
|
400: string;
|
|
7663
7922
|
};
|
|
7923
|
+
declare const electricBlue50 = "#eef6ff";
|
|
7924
|
+
declare const electricBlue100 = "#cce7ff";
|
|
7664
7925
|
declare const electricBlue300 = "#0ab6ff";
|
|
7926
|
+
declare const electricBlue400 = "#2fa0ff";
|
|
7665
7927
|
declare const electricBlue500 = "#558bff";
|
|
7928
|
+
declare const electricBlue600 = "#347ae5";
|
|
7666
7929
|
declare const electricBlue700 = "#1469cc";
|
|
7930
|
+
declare const electricBlue900 = "#083a73";
|
|
7667
7931
|
declare const electricBlueAlpha40 = "#558bff66";
|
|
7668
7932
|
declare const electricBlueAlpha10 = "#558bff19";
|
|
7669
7933
|
declare const electricBluePalette: {
|
|
7934
|
+
50: string;
|
|
7935
|
+
100: string;
|
|
7670
7936
|
300: string;
|
|
7937
|
+
400: string;
|
|
7671
7938
|
500: string;
|
|
7939
|
+
600: string;
|
|
7672
7940
|
700: string;
|
|
7941
|
+
900: string;
|
|
7673
7942
|
alpha40: string;
|
|
7674
7943
|
alpha10: string;
|
|
7675
7944
|
};
|
|
7945
|
+
declare const midnightGradientStops: {
|
|
7946
|
+
readonly graphFlowGray: "#c6c6c6";
|
|
7947
|
+
readonly graphFlowTeal: "#017580";
|
|
7948
|
+
readonly graphFlowMaroon: "#892727";
|
|
7949
|
+
readonly dataVizPink: "#f634a2";
|
|
7950
|
+
readonly dataVizMagenta: "#901f5f";
|
|
7951
|
+
readonly dataVizPurple: "#8118dc";
|
|
7952
|
+
readonly dataVizCyan: "#02c8ff";
|
|
7953
|
+
readonly dataVizTeal: "#197690";
|
|
7954
|
+
readonly dataVizOrange: "#ff9000";
|
|
7955
|
+
readonly dataVizAmber: "#995600";
|
|
7956
|
+
readonly dataVizGold: "#dcae18";
|
|
7957
|
+
readonly dataVizBlue: "#3b82f6";
|
|
7958
|
+
readonly dataVizMint: "#77e7cd";
|
|
7959
|
+
readonly dataVizFadeGray: "#d9d9d9";
|
|
7960
|
+
readonly gaugeArcCyan: "#29b0fc";
|
|
7961
|
+
readonly gaugeArcTealStart: "#29fcc4";
|
|
7962
|
+
readonly gaugeArcTealEnd: "#00af2f";
|
|
7963
|
+
readonly gaugeArcAmber: "#ffae4c";
|
|
7964
|
+
readonly buttonPrimaryFillStart: "#0745b8";
|
|
7965
|
+
readonly buttonPrimaryFillEnd: "#2e6ee5";
|
|
7966
|
+
readonly buttonPrimaryGlowBlue: "#3b76ea";
|
|
7967
|
+
readonly buttonPrimaryGlowCyan: "#00bceb";
|
|
7968
|
+
readonly buttonPrimaryGlowTeal: "#63fff7";
|
|
7969
|
+
readonly iconSubtractBlue: "#5096ff";
|
|
7970
|
+
readonly iconButtonBlueStart: "#043abc";
|
|
7971
|
+
readonly iconButtonBlueMid: "#113ca1";
|
|
7972
|
+
readonly iconButtonBlueEnd: "#011d62";
|
|
7973
|
+
readonly iconButtonGlowBlue: "#3974ff";
|
|
7974
|
+
readonly textWhiteBlueStart: "#ffffff";
|
|
7975
|
+
readonly textWhiteBlueMid: "#9dbcf7";
|
|
7976
|
+
readonly textWhiteBlueEnd: "#3f7def";
|
|
7977
|
+
readonly panelExecBorderBlue: "#0a60ff";
|
|
7978
|
+
readonly panelBorderCyanDark: "#16bdeb";
|
|
7979
|
+
readonly globalBorderSlate: "#3d5066";
|
|
7980
|
+
readonly globalBorderSlateWeak: "#4d6380";
|
|
7981
|
+
readonly globalDividerPink: "#ff007f";
|
|
7982
|
+
readonly graphConnectorBlue: "#c7d3ea";
|
|
7983
|
+
readonly graphNodeFillBlue: "#2972ff";
|
|
7984
|
+
readonly graphNodeFillDark: "#01060d";
|
|
7985
|
+
readonly welcomeCardStart: "#060b26";
|
|
7986
|
+
readonly welcomeCardEnd: "#1a1f37";
|
|
7987
|
+
readonly overlayBlack: "#000000";
|
|
7988
|
+
readonly overlayGray: "#666666";
|
|
7989
|
+
readonly glassWhite: "#ffffff";
|
|
7990
|
+
readonly glassWhiteWeak: "#f1f1f1";
|
|
7991
|
+
readonly glassGlowCyan: "#00bbff";
|
|
7992
|
+
readonly glassGlowPeriwinkle: "#a1a6fe";
|
|
7993
|
+
readonly glassCtaMint: "#74ffc7";
|
|
7994
|
+
readonly glassCtaBlue: "#03b3ff";
|
|
7995
|
+
readonly glassCtaGold: "#ffe070";
|
|
7996
|
+
readonly glassGray: "#999999";
|
|
7997
|
+
readonly glowOrangeStart: "#ff9d00";
|
|
7998
|
+
readonly glowOrangeEnd: "#ffd48e";
|
|
7999
|
+
readonly glowGreenStart: "#11ffc8";
|
|
8000
|
+
readonly glowGreenEnd: "#b3ff81";
|
|
8001
|
+
readonly glowRedStart: "#ff0329";
|
|
8002
|
+
readonly glowRedEnd: "#ff5746";
|
|
8003
|
+
readonly glowBlueStart: "#4a6ac8";
|
|
8004
|
+
readonly glowBlueMid: "#6abfff";
|
|
8005
|
+
readonly glowBlueDeep: "#3b69bc";
|
|
8006
|
+
readonly glowBlueEnd: "#1b4288";
|
|
8007
|
+
};
|
|
7676
8008
|
|
|
7677
8009
|
type Gradient = string;
|
|
7678
8010
|
interface GradientsPalette {
|
|
@@ -7716,6 +8048,12 @@ declare const iocVars: VarsType;
|
|
|
7716
8048
|
|
|
7717
8049
|
declare const midnightVars: VarsType;
|
|
7718
8050
|
|
|
8051
|
+
declare const baseGradientVars: GradientVarsType;
|
|
8052
|
+
|
|
8053
|
+
declare const midnightGradientVars: GradientVarsType;
|
|
8054
|
+
|
|
8055
|
+
declare const iocGradientVars: GradientVarsType;
|
|
8056
|
+
|
|
7719
8057
|
declare enum ThemeMode {
|
|
7720
8058
|
Light = "light",
|
|
7721
8059
|
Dark = "dark",
|
|
@@ -7741,5 +8079,5 @@ interface ThemeProviderProps {
|
|
|
7741
8079
|
}
|
|
7742
8080
|
declare const ThemeProvider: ({ children, defaultMode, customTheme, }: ThemeProviderProps) => react__default.JSX.Element;
|
|
7743
8081
|
|
|
7744
|
-
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, POPOVER_PLACEMENTS, PageTitle, Pagination, PathDisplay, PickerItem, Popover, PopoverPlacement, PopoverPlacementAlign, PopoverPlacementSide, 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, StepperModal, 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, Widget, agentcyBlue, agentcyDarkBlue, agentcyYellow, augmentTreeData, blue100, blue200, blue300, blue400, blue50, blue500, blue600, blue700, blue800, blue900, blueAlpha10, blueAlpha40, blueFocusRingStrong, blueFocusRingWeak, bluePalette, brandColors, capitalize, darkModeCardFloating, darkModeCardLifted, darkModeCardRaised, darkModeCardSubtle, darkModeFooterBottom, darkModeSideDrawerLeft, darkModeSideDrawerRight, darkNavy100, darkNavy200, darkNavy300, darkNavy400, darkNavyPalette, darkVars, deepCopyTree, electricBlue300, electricBlue500, electricBlue700, electricBlueAlpha10, electricBlueAlpha40, electricBluePalette, flattenSelectTree, flattenSelectTreeWithSearch, flattenSelectTreeWithoutSearch, formatNodeValue, 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, iocVars, 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, midnightVars, 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 };
|
|
7745
|
-
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, HorizontalBarChartProps, IChartWidgetProps, IWidgetProps, 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, PopoverProps, PopoverSize, RadioButtonProps, RadioGroupProps, ScrollAreaProps, SearchInputProps, SelectNodeType, SelectProps, SeverityBadgeLabelProps, SeverityBadgeProps, SeverityBadgeScoreSystemItem, SeverityBarProps, SideDrawerFooterProps, SideDrawerHeaderProps, SideDrawerProps, SkeletonProps, SliderProps, SpiderChartProps, SpinnerProps, StaticDatePickerProps, StaticDateTimePickerProps, StaticTimePickerProps, StatusBanner, StepperModalProps, StepperModalStep, StepperPanelProps, StepperStep, SubNavItem, TabProps, TableChartDataItem, TableProps, TableRow, TableTitle, TabsProps, TabsType, TagProps, TagStatusStyle, TagsProps, ThemeModeContextValue, ThemeProviderProps, TimePickerProps, ToastAction, ToastProps, ToastType, ToasterProps, ToggleProps, TooltipProps, TopToolbarProps, UploadFile, UploadFileStatus, UploadProps, VarsType, ViewSwitcherOption, ViewSwitcherOptionObject, ViewSwitcherOptionProperties, ViewSwitcherProps, ViewSwitcherSize };
|
|
8082
|
+
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, CardAlertHeader, 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, POPOVER_PLACEMENTS, PageTitle, Pagination, PathDisplay, PickerItem, Popover, PopoverPlacement, PopoverPlacementAlign, PopoverPlacementSide, 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, StepperModal, StepperPanel, Success, Tab, Table$1 as Table, Tabs, Tag, TagAvatarSize, TagBackgroundColorVariants, TagStatus, Tags, ThemeMode, ThemeProvider, TimePicker, Toast, Toaster, Toggle, Tooltip, TooltipSize, StyledTypography as Typography, Upload$1 as Upload, ViewSwitcher, Warning, Widget, agentcyBlue, agentcyDarkBlue, agentcyYellow, alertCriticalText, alertWarningText, augmentTreeData, baseGradientVars, blue100, blue200, blue300, blue400, blue50, blue500, blue600, blue700, blue800, blue900, blueAlpha10, blueAlpha40, blueFocusRingStrong, blueFocusRingWeak, bluePalette, brandColors, capitalize, cardAlertShadow, cardConnectorBlur, cardConnectorShadow, cardGlassBlur, cardGlassShadow, cardInsightGlow, darkModeCardFloating, darkModeCardLifted, darkModeCardRaised, darkModeCardSubtle, darkModeFooterBottom, darkModeSideDrawerLeft, darkModeSideDrawerRight, darkNavy100, darkNavy200, darkNavy300, darkNavy400, darkNavyPalette, darkVars, deepCopyTree, electricBlue100, electricBlue300, electricBlue400, electricBlue50, electricBlue500, electricBlue600, electricBlue700, electricBlue900, electricBlueAlpha10, electricBlueAlpha40, electricBluePalette, flattenSelectTree, flattenSelectTreeWithSearch, flattenSelectTreeWithoutSearch, formatNodeValue, 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, iocGradientVars, iocVars, 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, midnightGradientStops, midnightGradientVars, midnightVars, 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, toastGlow, toastGlowStrong, upwardsPush, useNestedMenu, useThemeMode, yellow100, yellow200, yellow300, yellow400, yellow50, yellow500, yellow600, yellow700, yellow800, yellow900, yellowAlpha10, yellowAlpha40, yellowPalette };
|
|
8083
|
+
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, CardAlertHeaderProps, CardAlertSeverity, 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, GaugeChartDataItem, GaugeChartGradient, GaugeChartProps, GlobalSearchGroup, GlobalSearchItem, GlobalSearchProps, Gradient, GradientVarsType, GradientsPalette, HeaderAction, HeaderProps, HeaderTooltipMeta, HorizontalBarChartProps, IChartWidgetProps, IWidgetProps, 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, PopoverProps, PopoverSize, RadarType, RadioButtonProps, RadioGroupProps, ScrollAreaProps, SearchInputProps, SelectNodeType, SelectProps, SeverityBadgeLabelProps, SeverityBadgeProps, SeverityBadgeScoreSystemItem, SeverityBarProps, SideDrawerFooterProps, SideDrawerHeaderProps, SideDrawerProps, SkeletonProps, SliderProps, SpiderChartGradient, SpiderChartProps, SpinnerProps, StaticDatePickerProps, StaticDateTimePickerProps, StaticTimePickerProps, StatusBanner, StepperModalProps, StepperModalStep, StepperPanelProps, StepperStep, SubNavItem, TabProps, TableChartDataItem, TableProps, TableRow, TableTitle, TabsProps, TabsType, TagProps, TagStatusStyle, TagsProps, ThemeModeContextValue, ThemeProviderProps, TimePickerProps, ToastAction, ToastProps, ToastType, ToasterProps, ToggleProps, TooltipProps, TopToolbarProps, UploadFile, UploadFileStatus, UploadProps, VarsType, ViewSwitcherOption, ViewSwitcherOptionObject, ViewSwitcherOptionProperties, ViewSwitcherProps, ViewSwitcherSize };
|