@open-ui-kit/core 2.2.3 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +2 -17718
- package/index.cjs.js.map +1 -1
- package/index.d.ts +369 -13
- package/index.esm.js +2 -17200
- package/index.esm.js.map +1 -1
- package/index.umd.js +2 -17649
- package/index.umd.js.map +1 -1
- package/package.json +2 -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 {
|
|
@@ -459,13 +546,15 @@ interface AccordionProps extends AccordionProps$1 {
|
|
|
459
546
|
endSlot?: ReactNode;
|
|
460
547
|
/** Overrides the default summary divider visibility. Medium uncontained accordions show it by default. */
|
|
461
548
|
showDivider?: boolean;
|
|
549
|
+
/** Overrides the default top border visibility. Medium uncontained accordions show it by default. */
|
|
550
|
+
showBorder?: boolean;
|
|
462
551
|
/** Props forwarded to the internal MUI AccordionSummary. */
|
|
463
552
|
accordionSummaryProps?: AccordionSummaryProps;
|
|
464
553
|
/** Props forwarded to the details content wrapper. */
|
|
465
554
|
detailsContentBoxProps?: BoxProps;
|
|
466
555
|
}
|
|
467
556
|
|
|
468
|
-
declare const Accordion: ({ contained, size, arrowPosition, title, subTitle, titleStartIcon, titleEndIcon, titleSlot, subTitleStartIcon, subTitleEndIcon, subTitleSlot, action, endSlot, showDivider, accordionSummaryProps, detailsContentBoxProps, children, ...props }: AccordionProps) => react.JSX.Element;
|
|
557
|
+
declare const Accordion: ({ contained, size, arrowPosition, title, subTitle, titleStartIcon, titleEndIcon, titleSlot, subTitleStartIcon, subTitleEndIcon, subTitleSlot, action, endSlot, showDivider, showBorder, accordionSummaryProps, detailsContentBoxProps, children, ...props }: AccordionProps) => react.JSX.Element;
|
|
469
558
|
|
|
470
559
|
declare const StyledAccordionSummary: ComponentType<AccordionSummaryProps & {
|
|
471
560
|
contained?: boolean;
|
|
@@ -493,17 +582,25 @@ interface ActivityTimelineStep {
|
|
|
493
582
|
content?: ReactNode;
|
|
494
583
|
/** Expands accordion content by default when content is provided. */
|
|
495
584
|
defaultExpanded?: boolean;
|
|
585
|
+
/** Time label shown to the right of the line. Gradient variant only. */
|
|
586
|
+
time?: string;
|
|
496
587
|
}
|
|
497
588
|
interface ActivityTimelineProps extends Omit<TimelineProps, "children" | "ref"> {
|
|
498
589
|
/** When true, step dots and connector colors are calculated from each step position. */
|
|
499
590
|
automaticProgress?: boolean;
|
|
500
591
|
/** Controls the timeline title typography and vertical spacing. */
|
|
501
592
|
size?: "large" | "medium";
|
|
502
|
-
/**
|
|
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. */
|
|
503
600
|
steps: ActivityTimelineStep[];
|
|
504
601
|
}
|
|
505
602
|
|
|
506
|
-
declare const ActivityTimeline: ({ automaticProgress, size, steps, ...props }: ActivityTimelineProps) => react.JSX.Element;
|
|
603
|
+
declare const ActivityTimeline: ({ automaticProgress, size, variant, steps, ...props }: ActivityTimelineProps) => react.JSX.Element;
|
|
507
604
|
|
|
508
605
|
interface AnchorLinkMenuItem {
|
|
509
606
|
/** Stable id passed to `selectedId` and `onSelect`. */
|
|
@@ -722,7 +819,7 @@ declare const Breadcrumbs: ({ iconPosition, items, size, sx, color, type, maximu
|
|
|
722
819
|
interface ButtonProps extends Omit<ButtonProps$1, "ref"> {
|
|
723
820
|
/** Button label, icon, or composed content rendered inside the control. */
|
|
724
821
|
children?: ButtonProps$1["children"];
|
|
725
|
-
/** Visual style for the action: primary, secondary, outlined, or tertariary. */
|
|
822
|
+
/** Visual style for the action: primary, secondary, gradient, outlined, gradientOutlined, or tertariary. */
|
|
726
823
|
variant?: ButtonProps$1["variant"];
|
|
727
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. */
|
|
728
825
|
size?: ButtonProps$1["size"];
|
|
@@ -733,9 +830,49 @@ interface ButtonProps extends Omit<ButtonProps$1, "ref"> {
|
|
|
733
830
|
/** Open UI Kit button wrapper with tokenized variants, sizes, icon spacing, and states. */
|
|
734
831
|
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
735
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";
|
|
736
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;
|
|
737
850
|
/** Applies the disabled card treatment and marks the grouped content unavailable. */
|
|
738
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;
|
|
739
876
|
}
|
|
740
877
|
/** Clickable wrapper for interactive cards. */
|
|
741
878
|
type CardActionAreaProps = CardActionAreaProps$1;
|
|
@@ -753,12 +890,28 @@ interface CardSubheaderProps extends TypographyProps {
|
|
|
753
890
|
/** Small supporting label, metadata, or date text. */
|
|
754
891
|
children: ReactNode;
|
|
755
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;
|
|
756
909
|
|
|
757
910
|
declare const CardDescription: ({ children, ...props }: CardDescriptionProps) => react.JSX.Element;
|
|
758
911
|
|
|
759
912
|
declare const CardSubheader: ({ children, ...props }: CardSubheaderProps) => react.JSX.Element;
|
|
760
913
|
|
|
761
|
-
declare const Card: ({ disabled, sx, ...props }: CardProps) => react.JSX.Element;
|
|
914
|
+
declare const Card: ({ alert, disabled, image, sx, ...props }: CardProps) => react.JSX.Element;
|
|
762
915
|
declare const CardActionArea: ({ sx, ...props }: CardActionAreaProps) => react.JSX.Element;
|
|
763
916
|
declare const CardHeader: ({ sx, ...props }: CardHeaderProps) => react.JSX.Element;
|
|
764
917
|
declare const CardContent: ({ sx, ...props }: CardContentProps) => react.JSX.Element;
|
|
@@ -846,6 +999,7 @@ declare const InputField: react__default.ForwardRefExoticComponent<(Omit<_mui_ma
|
|
|
846
999
|
helperText?: _mui_material.TextFieldProps["helperText"];
|
|
847
1000
|
error?: _mui_material.TextFieldProps["error"];
|
|
848
1001
|
slotProps?: _mui_material.TextFieldProps["slotProps"];
|
|
1002
|
+
glow?: boolean;
|
|
849
1003
|
}, "ref"> | Omit<_mui_material.OutlinedTextFieldProps & {
|
|
850
1004
|
variant?: _mui_material.TextFieldProps["variant"];
|
|
851
1005
|
size?: _mui_material.TextFieldProps["size"];
|
|
@@ -853,6 +1007,7 @@ declare const InputField: react__default.ForwardRefExoticComponent<(Omit<_mui_ma
|
|
|
853
1007
|
helperText?: _mui_material.TextFieldProps["helperText"];
|
|
854
1008
|
error?: _mui_material.TextFieldProps["error"];
|
|
855
1009
|
slotProps?: _mui_material.TextFieldProps["slotProps"];
|
|
1010
|
+
glow?: boolean;
|
|
856
1011
|
}, "ref"> | Omit<_mui_material.StandardTextFieldProps & {
|
|
857
1012
|
variant?: _mui_material.TextFieldProps["variant"];
|
|
858
1013
|
size?: _mui_material.TextFieldProps["size"];
|
|
@@ -860,6 +1015,7 @@ declare const InputField: react__default.ForwardRefExoticComponent<(Omit<_mui_ma
|
|
|
860
1015
|
helperText?: _mui_material.TextFieldProps["helperText"];
|
|
861
1016
|
error?: _mui_material.TextFieldProps["error"];
|
|
862
1017
|
slotProps?: _mui_material.TextFieldProps["slotProps"];
|
|
1018
|
+
glow?: boolean;
|
|
863
1019
|
}, "ref">) & react__default.RefAttributes<HTMLDivElement>>;
|
|
864
1020
|
|
|
865
1021
|
type InputFieldProps = TextFieldProps & {
|
|
@@ -875,6 +1031,11 @@ type InputFieldProps = TextFieldProps & {
|
|
|
875
1031
|
error?: TextFieldProps["error"];
|
|
876
1032
|
/** Custom MUI slot props, merged with the internal shrunk label behavior. */
|
|
877
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;
|
|
878
1039
|
};
|
|
879
1040
|
|
|
880
1041
|
interface DateTimePickerProps extends DateTimePickerProps$1<Dayjs> {
|
|
@@ -2385,6 +2546,12 @@ interface ToastProps extends Omit<AlertProps, "variant" | "severity" | "children
|
|
|
2385
2546
|
type?: ToastType;
|
|
2386
2547
|
/** Optional bold title line rendered above the message. */
|
|
2387
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;
|
|
2388
2555
|
/** Optional body message shown in the toast content area. */
|
|
2389
2556
|
description?: string;
|
|
2390
2557
|
/** Shows the close button when true. */
|
|
@@ -2398,7 +2565,7 @@ interface ToastProps extends Omit<AlertProps, "variant" | "severity" | "children
|
|
|
2398
2565
|
}
|
|
2399
2566
|
type ToasterProps = react__default.ComponentProps<typeof Toaster$1>;
|
|
2400
2567
|
|
|
2401
|
-
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;
|
|
2402
2569
|
declare const toast: ({ ...props }: Omit<ToastProps, "id">) => string | number;
|
|
2403
2570
|
|
|
2404
2571
|
declare const Toaster: ({ toastOptions, ...props }: ToasterProps) => react.JSX.Element;
|
|
@@ -2542,6 +2709,26 @@ interface IWidgetProps {
|
|
|
2542
2709
|
|
|
2543
2710
|
declare const Widget: ({ sx, label, headerChildren, headerLeftChildren, labelTooltip, titleTooltip, bodyElement, isLoading, isHorizontal, isEmpty, legendCustomComponent, tooltipProps, onLabelClick, dataRoseyUrn, }: IWidgetProps) => react.JSX.Element;
|
|
2544
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
|
+
|
|
2545
2732
|
interface DonutProps extends ChartProps {
|
|
2546
2733
|
/** Called with the selected slice data when a donut segment is clicked. */
|
|
2547
2734
|
handleClick?: (sliceData: ChartDataItem) => void;
|
|
@@ -2551,9 +2738,44 @@ interface DonutProps extends ChartProps {
|
|
|
2551
2738
|
*/
|
|
2552
2739
|
declare const DonutChart: ({ data, showTooltip, customTooltip, handleClick, }: DonutProps) => JSX.Element;
|
|
2553
2740
|
|
|
2554
|
-
|
|
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[];
|
|
2555
2771
|
/** Highest target value used to calculate how much of the gauge arc is filled. */
|
|
2556
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;
|
|
2557
2779
|
/** Optional content shown below the numeric value inside the gauge. */
|
|
2558
2780
|
customLabelComponent?: ReactNode;
|
|
2559
2781
|
/** Optional dimensional overrides for compact or expanded gauge layouts. */
|
|
@@ -2566,7 +2788,7 @@ interface GaugeChartProps extends ChartProps {
|
|
|
2566
2788
|
textTop?: string;
|
|
2567
2789
|
};
|
|
2568
2790
|
}
|
|
2569
|
-
declare const GaugeChart: ({ data, maxValue, customLabelComponent, styleProps, }: GaugeChartProps) => react.JSX.Element;
|
|
2791
|
+
declare const GaugeChart: ({ data, maxValue, variant, customLabelComponent, styleProps, }: GaugeChartProps) => react.JSX.Element;
|
|
2570
2792
|
|
|
2571
2793
|
interface BarProps {
|
|
2572
2794
|
/** Data key to read from each item's `barData` object. */
|
|
@@ -2694,6 +2916,21 @@ type ExtendedDataPoint = {
|
|
|
2694
2916
|
/** Numeric value rendered by the default `variableA` radar series. */
|
|
2695
2917
|
variableA?: number;
|
|
2696
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";
|
|
2697
2934
|
type RadarType = {
|
|
2698
2935
|
/** Legend and tooltip name for the radar series. */
|
|
2699
2936
|
name: string;
|
|
@@ -2703,6 +2940,20 @@ type RadarType = {
|
|
|
2703
2940
|
fill?: string;
|
|
2704
2941
|
/** CSS gradient or tokenized background used by the custom radar shape. */
|
|
2705
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;
|
|
2706
2957
|
/** Optional Recharts shape override for the radar polygon. */
|
|
2707
2958
|
shape?: ReactElement;
|
|
2708
2959
|
};
|
|
@@ -4777,6 +5028,7 @@ declare const OracleLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
|
4777
5028
|
declare function OrgSwitcherWeak(props: SvgIconProps): react.JSX.Element;
|
|
4778
5029
|
declare function OrgSwitcherMedium(props: SvgIconProps): react.JSX.Element;
|
|
4779
5030
|
declare function OrgSwitcherDefault(props: SvgIconProps): react.JSX.Element;
|
|
5031
|
+
declare function OrgSwitcher(props: SvgIconProps): react.JSX.Element;
|
|
4780
5032
|
|
|
4781
5033
|
declare const index_d_A2a: typeof A2a;
|
|
4782
5034
|
declare const index_d_API: typeof API;
|
|
@@ -5557,6 +5809,7 @@ declare const index_d_OracleServicesSecurityLists: typeof OracleServicesSecurity
|
|
|
5557
5809
|
declare const index_d_OracleServicesSubnet: typeof OracleServicesSubnet;
|
|
5558
5810
|
declare const index_d_OracleServicesUser: typeof OracleServicesUser;
|
|
5559
5811
|
declare const index_d_OracleServicesVirtualNetwork: typeof OracleServicesVirtualNetwork;
|
|
5812
|
+
declare const index_d_OrgSwitcher: typeof OrgSwitcher;
|
|
5560
5813
|
declare const index_d_OrgSwitcherDefault: typeof OrgSwitcherDefault;
|
|
5561
5814
|
declare const index_d_OrgSwitcherMedium: typeof OrgSwitcherMedium;
|
|
5562
5815
|
declare const index_d_OrgSwitcherWeak: typeof OrgSwitcherWeak;
|
|
@@ -6587,6 +6840,7 @@ declare namespace index_d {
|
|
|
6587
6840
|
index_d_OracleServicesSubnet as OracleServicesSubnet,
|
|
6588
6841
|
index_d_OracleServicesUser as OracleServicesUser,
|
|
6589
6842
|
index_d_OracleServicesVirtualNetwork as OracleServicesVirtualNetwork,
|
|
6843
|
+
index_d_OrgSwitcher as OrgSwitcher,
|
|
6590
6844
|
index_d_OrgSwitcherDefault as OrgSwitcherDefault,
|
|
6591
6845
|
index_d_OrgSwitcherMedium as OrgSwitcherMedium,
|
|
6592
6846
|
index_d_OrgSwitcherWeak as OrgSwitcherWeak,
|
|
@@ -7156,6 +7410,16 @@ declare const gradientStopColors: {
|
|
|
7156
7410
|
readonly secondaryBlueStrong: "#021d60";
|
|
7157
7411
|
readonly secondaryBlueHoverWeak: "#b3cbe7";
|
|
7158
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)";
|
|
7159
7423
|
declare const lightModeCardLifted = "0px 4px 4px rgba(200, 213, 245, 0.33)";
|
|
7160
7424
|
declare const lightModeCardSubtle = "0px 2px 5px rgba(200, 213, 245, 0.4)";
|
|
7161
7425
|
declare const lightModeCardRaised = "0px 4px 12px rgba(200, 213, 245, 0.5)";
|
|
@@ -7646,6 +7910,91 @@ declare const OS_LIGHT_COLORS: {
|
|
|
7646
7910
|
outshiftLogoDark: string;
|
|
7647
7911
|
};
|
|
7648
7912
|
};
|
|
7913
|
+
declare const darkNavy100 = "#1e293b";
|
|
7914
|
+
declare const darkNavy200 = "#0a141f";
|
|
7915
|
+
declare const darkNavy300 = "#0f1623";
|
|
7916
|
+
declare const darkNavy400 = "#060a0f";
|
|
7917
|
+
declare const darkNavyPalette: {
|
|
7918
|
+
100: string;
|
|
7919
|
+
200: string;
|
|
7920
|
+
300: string;
|
|
7921
|
+
400: string;
|
|
7922
|
+
};
|
|
7923
|
+
declare const electricBlue300 = "#0ab6ff";
|
|
7924
|
+
declare const electricBlue500 = "#558bff";
|
|
7925
|
+
declare const electricBlue700 = "#1469cc";
|
|
7926
|
+
declare const electricBlueAlpha40 = "#558bff66";
|
|
7927
|
+
declare const electricBlueAlpha10 = "#558bff19";
|
|
7928
|
+
declare const electricBluePalette: {
|
|
7929
|
+
300: string;
|
|
7930
|
+
500: string;
|
|
7931
|
+
700: string;
|
|
7932
|
+
alpha40: string;
|
|
7933
|
+
alpha10: string;
|
|
7934
|
+
};
|
|
7935
|
+
declare const midnightGradientStops: {
|
|
7936
|
+
readonly graphFlowGray: "#c6c6c6";
|
|
7937
|
+
readonly graphFlowTeal: "#017580";
|
|
7938
|
+
readonly graphFlowMaroon: "#892727";
|
|
7939
|
+
readonly dataVizPink: "#f634a2";
|
|
7940
|
+
readonly dataVizMagenta: "#901f5f";
|
|
7941
|
+
readonly dataVizPurple: "#8118dc";
|
|
7942
|
+
readonly dataVizCyan: "#02c8ff";
|
|
7943
|
+
readonly dataVizTeal: "#197690";
|
|
7944
|
+
readonly dataVizOrange: "#ff9000";
|
|
7945
|
+
readonly dataVizAmber: "#995600";
|
|
7946
|
+
readonly dataVizGold: "#dcae18";
|
|
7947
|
+
readonly dataVizBlue: "#3b82f6";
|
|
7948
|
+
readonly dataVizMint: "#77e7cd";
|
|
7949
|
+
readonly dataVizFadeGray: "#d9d9d9";
|
|
7950
|
+
readonly gaugeArcCyan: "#29b0fc";
|
|
7951
|
+
readonly gaugeArcTealStart: "#29fcc4";
|
|
7952
|
+
readonly gaugeArcTealEnd: "#00af2f";
|
|
7953
|
+
readonly gaugeArcAmber: "#ffae4c";
|
|
7954
|
+
readonly buttonPrimaryFillStart: "#0745b8";
|
|
7955
|
+
readonly buttonPrimaryFillEnd: "#2e6ee5";
|
|
7956
|
+
readonly buttonPrimaryGlowBlue: "#3b76ea";
|
|
7957
|
+
readonly buttonPrimaryGlowCyan: "#00bceb";
|
|
7958
|
+
readonly buttonPrimaryGlowTeal: "#63fff7";
|
|
7959
|
+
readonly iconSubtractBlue: "#5096ff";
|
|
7960
|
+
readonly iconButtonBlueStart: "#043abc";
|
|
7961
|
+
readonly iconButtonBlueMid: "#113ca1";
|
|
7962
|
+
readonly iconButtonBlueEnd: "#011d62";
|
|
7963
|
+
readonly iconButtonGlowBlue: "#3974ff";
|
|
7964
|
+
readonly textWhiteBlueStart: "#ffffff";
|
|
7965
|
+
readonly textWhiteBlueMid: "#9dbcf7";
|
|
7966
|
+
readonly textWhiteBlueEnd: "#3f7def";
|
|
7967
|
+
readonly panelExecBorderBlue: "#0a60ff";
|
|
7968
|
+
readonly panelBorderCyanDark: "#16bdeb";
|
|
7969
|
+
readonly globalBorderSlate: "#3d5066";
|
|
7970
|
+
readonly globalBorderSlateWeak: "#4d6380";
|
|
7971
|
+
readonly globalDividerPink: "#ff007f";
|
|
7972
|
+
readonly graphConnectorBlue: "#c7d3ea";
|
|
7973
|
+
readonly graphNodeFillBlue: "#2972ff";
|
|
7974
|
+
readonly graphNodeFillDark: "#01060d";
|
|
7975
|
+
readonly welcomeCardStart: "#060b26";
|
|
7976
|
+
readonly welcomeCardEnd: "#1a1f37";
|
|
7977
|
+
readonly overlayBlack: "#000000";
|
|
7978
|
+
readonly overlayGray: "#666666";
|
|
7979
|
+
readonly glassWhite: "#ffffff";
|
|
7980
|
+
readonly glassWhiteWeak: "#f1f1f1";
|
|
7981
|
+
readonly glassGlowCyan: "#00bbff";
|
|
7982
|
+
readonly glassGlowPeriwinkle: "#a1a6fe";
|
|
7983
|
+
readonly glassCtaMint: "#74ffc7";
|
|
7984
|
+
readonly glassCtaBlue: "#03b3ff";
|
|
7985
|
+
readonly glassCtaGold: "#ffe070";
|
|
7986
|
+
readonly glassGray: "#999999";
|
|
7987
|
+
readonly glowOrangeStart: "#ff9d00";
|
|
7988
|
+
readonly glowOrangeEnd: "#ffd48e";
|
|
7989
|
+
readonly glowGreenStart: "#11ffc8";
|
|
7990
|
+
readonly glowGreenEnd: "#b3ff81";
|
|
7991
|
+
readonly glowRedStart: "#ff0329";
|
|
7992
|
+
readonly glowRedEnd: "#ff5746";
|
|
7993
|
+
readonly glowBlueStart: "#4a6ac8";
|
|
7994
|
+
readonly glowBlueMid: "#6abfff";
|
|
7995
|
+
readonly glowBlueDeep: "#3b69bc";
|
|
7996
|
+
readonly glowBlueEnd: "#1b4288";
|
|
7997
|
+
};
|
|
7649
7998
|
|
|
7650
7999
|
type Gradient = string;
|
|
7651
8000
|
interface GradientsPalette {
|
|
@@ -7687,10 +8036,17 @@ declare const darkVars: VarsType;
|
|
|
7687
8036
|
|
|
7688
8037
|
declare const iocVars: VarsType;
|
|
7689
8038
|
|
|
8039
|
+
declare const midnightVars: VarsType;
|
|
8040
|
+
|
|
8041
|
+
declare const baseGradientVars: GradientVarsType;
|
|
8042
|
+
|
|
8043
|
+
declare const midnightGradientVars: GradientVarsType;
|
|
8044
|
+
|
|
7690
8045
|
declare enum ThemeMode {
|
|
7691
8046
|
Light = "light",
|
|
7692
8047
|
Dark = "dark",
|
|
7693
|
-
IoC = "ioc"
|
|
8048
|
+
IoC = "ioc",
|
|
8049
|
+
Midnight = "midnight"
|
|
7694
8050
|
}
|
|
7695
8051
|
interface ThemeModeContextValue {
|
|
7696
8052
|
mode: ThemeMode;
|
|
@@ -7711,5 +8067,5 @@ interface ThemeProviderProps {
|
|
|
7711
8067
|
}
|
|
7712
8068
|
declare const ThemeProvider: ({ children, defaultMode, customTheme, }: ThemeProviderProps) => react__default.JSX.Element;
|
|
7713
8069
|
|
|
7714
|
-
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, darkVars, deepCopyTree, 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, 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 };
|
|
7715
|
-
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 };
|
|
8070
|
+
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, 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, 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 };
|
|
8071
|
+
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 };
|