@redsift/design-system 10.2.0 → 10.3.0-alpha.10
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/CONTRIBUTING.md +4 -4
- package/index.d.ts +717 -74
- package/index.js +2343 -1163
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/style/index.css +626 -99
- package/style/redsift-design-tokens.css +626 -99
- package/style/redsift.css +626 -99
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React$1, { Ref, ReactElement, ReactNode, ComponentProps, DependencyList, MutableRefObject, ElementType, RefObject, MouseEvent, Dispatch, SetStateAction, ChangeEvent, SyntheticEvent, FocusEvent, KeyboardEvent } from 'react';
|
|
2
1
|
import * as styled_components from 'styled-components';
|
|
2
|
+
import React$1, { Ref, ReactElement, ReactNode, ComponentProps, DependencyList, MutableRefObject, ElementType, RefObject, MouseEvent, Dispatch, SetStateAction, ChangeEvent, FocusEvent, KeyboardEvent } from 'react';
|
|
3
3
|
import { LinearProgressProps } from '@mui/material/LinearProgress';
|
|
4
4
|
|
|
5
5
|
/** Component Type. */
|
|
@@ -9,8 +9,6 @@ type Comp<P, T = HTMLElement> = {
|
|
|
9
9
|
}): ReactElement | null;
|
|
10
10
|
/** React component type. */
|
|
11
11
|
readonly $$typeof?: symbol;
|
|
12
|
-
/** Component default props. */
|
|
13
|
-
defaultProps?: Partial<P>;
|
|
14
12
|
/** Component name. */
|
|
15
13
|
displayName?: string;
|
|
16
14
|
/** Component base class name. */
|
|
@@ -106,9 +104,12 @@ declare const PrimaryButtonsColorPalette: {
|
|
|
106
104
|
success: string;
|
|
107
105
|
warning: string;
|
|
108
106
|
grey: string;
|
|
107
|
+
radar: string;
|
|
109
108
|
};
|
|
110
109
|
type PrimaryButtonsColorPalette = ValueOf<typeof PrimaryButtonsColorPalette>;
|
|
111
110
|
declare const ButtonsColorPalette: {
|
|
111
|
+
readonly white: "white";
|
|
112
|
+
readonly black: "black";
|
|
112
113
|
readonly info: "info";
|
|
113
114
|
readonly primary: string;
|
|
114
115
|
readonly secondary: string;
|
|
@@ -116,6 +117,7 @@ declare const ButtonsColorPalette: {
|
|
|
116
117
|
readonly success: string;
|
|
117
118
|
readonly warning: string;
|
|
118
119
|
readonly grey: string;
|
|
120
|
+
readonly radar: string;
|
|
119
121
|
};
|
|
120
122
|
type ButtonsColorPalette = ValueOf<typeof ButtonsColorPalette>;
|
|
121
123
|
declare const NotificationsColorPalette: {
|
|
@@ -330,6 +332,20 @@ interface PositioningProps {
|
|
|
330
332
|
/** The stacking order for the element. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/z-index">MDN</a>. */
|
|
331
333
|
zIndex?: string;
|
|
332
334
|
}
|
|
335
|
+
interface BorderProps {
|
|
336
|
+
/** The background shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. Component properties not set in the background shorthand property value declaration are set to their default values. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background">MDN</a>. */
|
|
337
|
+
background?: string;
|
|
338
|
+
/** The border shorthand CSS property sets an element's border. It sets the values of border-width, border-style, and border-color. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border">MDN</a>. */
|
|
339
|
+
border?: string;
|
|
340
|
+
/** The border-top shorthand CSS property sets all the properties of an element's top border. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-top">MDN</a>. */
|
|
341
|
+
borderTop?: string;
|
|
342
|
+
/** The border-top shorthand CSS property sets all the properties of an element's bottom border. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom">MDN</a>. */
|
|
343
|
+
borderBottom?: string;
|
|
344
|
+
/** The border-top shorthand CSS property sets all the properties of an element's left border. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-left">MDN</a>. Consider using start instead for RTL support. */
|
|
345
|
+
borderLeft?: string;
|
|
346
|
+
/** The border-top shorthand CSS property sets all the properties of an element's right border. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/border-right">MDN</a>. Consider using start instead for RTL support. */
|
|
347
|
+
borderRight?: string;
|
|
348
|
+
}
|
|
333
349
|
interface FlexLayoutProps {
|
|
334
350
|
/** The distribution of space around child items along the cross axis. See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/align-content">MDN</a>. */
|
|
335
351
|
alignContent?: AlignContent;
|
|
@@ -457,7 +473,7 @@ declare function partitionComponents<T>(components: T[], predicates: Array<(t: T
|
|
|
457
473
|
|
|
458
474
|
/**
|
|
459
475
|
* Do not edit directly
|
|
460
|
-
* Generated on
|
|
476
|
+
* Generated on Tue, 16 Jul 2024 19:17:14 GMT
|
|
461
477
|
*/
|
|
462
478
|
declare const RedsiftColorDarkComponentsPageBackground = "#333333";
|
|
463
479
|
declare const RedsiftColorDarkComponentsTextPrimary = "#ffffff";
|
|
@@ -558,6 +574,14 @@ declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDefault = "#
|
|
|
558
574
|
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextHover = "#ffffff";
|
|
559
575
|
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextActive = "#ffffff";
|
|
560
576
|
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDisabled = "#858585";
|
|
577
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundDefault = "linear-gradient(90deg, rgba(81, 183, 164, 1), rgba(0, 129, 195, 1))";
|
|
578
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundHover = "linear-gradient(90deg, rgba(65, 146, 131, 1), rgba(3, 114, 171, 1))";
|
|
579
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundActive = "linear-gradient(90deg, rgba(58, 122, 110, 1), rgba(0, 96, 145, 1))";
|
|
580
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundDisabled = "#474747";
|
|
581
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextDefault = "#ffffff";
|
|
582
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextHover = "#ffffff";
|
|
583
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextActive = "#ffffff";
|
|
584
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextDisabled = "#858585";
|
|
561
585
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundDefault = "transparent";
|
|
562
586
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundHover = "#142849";
|
|
563
587
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundActive = "#0d1b31";
|
|
@@ -607,13 +631,37 @@ declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextHover = "#
|
|
|
607
631
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextActive = "#8eb6f8";
|
|
608
632
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextDisabled = "#858585";
|
|
609
633
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDefault = "transparent";
|
|
610
|
-
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundHover = "#
|
|
634
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundHover = "#525252";
|
|
611
635
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundActive = "#333333";
|
|
612
636
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDisabled = "#333333";
|
|
613
637
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDefault = "#666666";
|
|
614
638
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextHover = "#858585";
|
|
615
639
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextActive = "#a3a3a3";
|
|
616
640
|
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDisabled = "#858585";
|
|
641
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundDefault = "transparent";
|
|
642
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundHover = "#525252";
|
|
643
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundActive = "#333333";
|
|
644
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundDisabled = "transparent";
|
|
645
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextDefault = "#333333";
|
|
646
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextHover = "#333333";
|
|
647
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextActive = "#333333";
|
|
648
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextDisabled = "#a3a3a3";
|
|
649
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundDefault = "transparent";
|
|
650
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundHover = "#525252";
|
|
651
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundActive = "#333333";
|
|
652
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundDisabled = "transparent";
|
|
653
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextDefault = "#ffffff";
|
|
654
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextHover = "#ffffff";
|
|
655
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextActive = "#ffffff";
|
|
656
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextDisabled = "#a3a3a3";
|
|
657
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundDefault = "transparent";
|
|
658
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundHover = "linear-gradient(90deg, rgba(81, 183, 142, 0.2), rgba(0, 129, 195, 0.2))";
|
|
659
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundActive = "linear-gradient(90deg, rgba(81, 183, 142, 0.4), rgba(0, 129, 195, 0.4))";
|
|
660
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundDisabled = "#333333";
|
|
661
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextDefault = "linear-gradient(90deg, rgba(81, 183, 164, 1), rgba(0, 129, 195, 1))";
|
|
662
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextHover = "linear-gradient(90deg, rgba(65, 146, 131, 1), rgba(3, 114, 171, 1))";
|
|
663
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextActive = "linear-gradient(90deg, rgba(58, 122, 110, 1), rgba(0, 96, 145, 1))";
|
|
664
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextDisabled = "#858585";
|
|
617
665
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundDefault = "transparent";
|
|
618
666
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundHover = "#142849";
|
|
619
667
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundActive = "#0d1b31";
|
|
@@ -663,13 +711,37 @@ declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextHover = "#6
|
|
|
663
711
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextActive = "#8eb6f8";
|
|
664
712
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextDisabled = "#858585";
|
|
665
713
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDefault = "transparent";
|
|
666
|
-
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundHover = "#
|
|
714
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundHover = "#525252";
|
|
667
715
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundActive = "#333333";
|
|
668
716
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDisabled = "#333333";
|
|
669
717
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDefault = "#666666";
|
|
670
718
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextHover = "#858585";
|
|
671
719
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextActive = "#a3a3a3";
|
|
672
720
|
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDisabled = "#858585";
|
|
721
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundDefault = "transparent";
|
|
722
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundHover = "#525252";
|
|
723
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundActive = "#333333";
|
|
724
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundDisabled = "transparent";
|
|
725
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextDefault = "#333333";
|
|
726
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextHover = "#333333";
|
|
727
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextActive = "#333333";
|
|
728
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextDisabled = "#a3a3a3";
|
|
729
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundDefault = "transparent";
|
|
730
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundHover = "#525252";
|
|
731
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundActive = "#333333";
|
|
732
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundDisabled = "transparent";
|
|
733
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextDefault = "#ffffff";
|
|
734
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextHover = "#ffffff";
|
|
735
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextActive = "#ffffff";
|
|
736
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextDisabled = "#a3a3a3";
|
|
737
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundDefault = "transparent";
|
|
738
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundHover = "linear-gradient(90deg, rgba(81, 183, 142, 0.2), rgba(0, 129, 195, 0.2))";
|
|
739
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundActive = "linear-gradient(90deg, rgba(81, 183, 142, 0.4), rgba(0, 129, 195, 0.4))";
|
|
740
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundDisabled = "#333333";
|
|
741
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextDefault = "linear-gradient(90deg, rgba(81, 183, 164, 1), rgba(0, 129, 195, 1))";
|
|
742
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextHover = "linear-gradient(90deg, rgba(65, 146, 131, 1), rgba(3, 114, 171, 1))";
|
|
743
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextActive = "linear-gradient(90deg, rgba(58, 122, 110, 1), rgba(0, 96, 145, 1))";
|
|
744
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextDisabled = "#858585";
|
|
673
745
|
declare const RedsiftColorDarkComponentsAiAiBorder = "#e11010";
|
|
674
746
|
declare const RedsiftColorDarkComponentsAiAiIcon = "#e11010";
|
|
675
747
|
declare const RedsiftColorDarkComponentsSpinnerSpinner = "#142849";
|
|
@@ -740,6 +812,213 @@ declare const RedsiftColorDarkComponentsSwitchTextInvalid = "#e11010";
|
|
|
740
812
|
declare const RedsiftColorDarkComponentsSwitchTextDisabled = "#e0e0e0";
|
|
741
813
|
declare const RedsiftColorDarkComponentsTabsLine = "#666666";
|
|
742
814
|
declare const RedsiftColorDarkComponentsModalBackground = "#1c1c1c";
|
|
815
|
+
declare const RedsiftColorDarkComponentsPillsGreyDefaultBackground = "#E6E6E6";
|
|
816
|
+
declare const RedsiftColorDarkComponentsPillsGreyDefaultBorder = "unset";
|
|
817
|
+
declare const RedsiftColorDarkComponentsPillsGreyDefaultText = "#1c1c1c";
|
|
818
|
+
declare const RedsiftColorDarkComponentsPillsGreyHoverBackground = "#D6D6D6";
|
|
819
|
+
declare const RedsiftColorDarkComponentsPillsGreyHoverBorder = "unset";
|
|
820
|
+
declare const RedsiftColorDarkComponentsPillsGreyHoverText = "#1c1c1c";
|
|
821
|
+
declare const RedsiftColorDarkComponentsPillsGreyDisabledBackground = "#EEEEEE";
|
|
822
|
+
declare const RedsiftColorDarkComponentsPillsGreyDisabledBorder = "unset";
|
|
823
|
+
declare const RedsiftColorDarkComponentsPillsGreyDisabledText = "#666666";
|
|
824
|
+
declare const RedsiftColorDarkComponentsPillsGreenDefaultBackground = "#A2E7BA";
|
|
825
|
+
declare const RedsiftColorDarkComponentsPillsGreenDefaultBorder = "unset";
|
|
826
|
+
declare const RedsiftColorDarkComponentsPillsGreenDefaultText = "#1c1c1c";
|
|
827
|
+
declare const RedsiftColorDarkComponentsPillsGreenHoverBackground = "#56D58E";
|
|
828
|
+
declare const RedsiftColorDarkComponentsPillsGreenHoverBorder = "unset";
|
|
829
|
+
declare const RedsiftColorDarkComponentsPillsGreenHoverText = "#1c1c1c";
|
|
830
|
+
declare const RedsiftColorDarkComponentsPillsGreenDisabledBackground = "#C2EFD1";
|
|
831
|
+
declare const RedsiftColorDarkComponentsPillsGreenDisabledBorder = "unset";
|
|
832
|
+
declare const RedsiftColorDarkComponentsPillsGreenDisabledText = "#666666";
|
|
833
|
+
declare const RedsiftColorDarkComponentsPillsPinkDefaultBackground = "#ECA0D6";
|
|
834
|
+
declare const RedsiftColorDarkComponentsPillsPinkDefaultBorder = "unset";
|
|
835
|
+
declare const RedsiftColorDarkComponentsPillsPinkDefaultText = "#1c1c1c";
|
|
836
|
+
declare const RedsiftColorDarkComponentsPillsPinkHoverBackground = "#D95CBA";
|
|
837
|
+
declare const RedsiftColorDarkComponentsPillsPinkHoverBorder = "unset";
|
|
838
|
+
declare const RedsiftColorDarkComponentsPillsPinkHoverText = "#1c1c1c";
|
|
839
|
+
declare const RedsiftColorDarkComponentsPillsPinkDisabledBackground = "#F4C0E3";
|
|
840
|
+
declare const RedsiftColorDarkComponentsPillsPinkDisabledBorder = "unset";
|
|
841
|
+
declare const RedsiftColorDarkComponentsPillsPinkDisabledText = "#666666";
|
|
842
|
+
declare const RedsiftColorDarkComponentsPillsAquaDefaultBackground = "#9AF8F4";
|
|
843
|
+
declare const RedsiftColorDarkComponentsPillsAquaDefaultBorder = "unset";
|
|
844
|
+
declare const RedsiftColorDarkComponentsPillsAquaDefaultText = "#1c1c1c";
|
|
845
|
+
declare const RedsiftColorDarkComponentsPillsAquaHoverBackground = "#63EAE4";
|
|
846
|
+
declare const RedsiftColorDarkComponentsPillsAquaHoverBorder = "unset";
|
|
847
|
+
declare const RedsiftColorDarkComponentsPillsAquaHoverText = "#1c1c1c";
|
|
848
|
+
declare const RedsiftColorDarkComponentsPillsAquaDisabledBackground = "#CAF7F4";
|
|
849
|
+
declare const RedsiftColorDarkComponentsPillsAquaDisabledBorder = "unset";
|
|
850
|
+
declare const RedsiftColorDarkComponentsPillsAquaDisabledText = "#666666";
|
|
851
|
+
declare const RedsiftColorDarkComponentsPillsBrownDefaultBackground = "#EDC19C";
|
|
852
|
+
declare const RedsiftColorDarkComponentsPillsBrownDefaultBorder = "unset";
|
|
853
|
+
declare const RedsiftColorDarkComponentsPillsBrownDefaultText = "#1c1c1c";
|
|
854
|
+
declare const RedsiftColorDarkComponentsPillsBrownHoverBackground = "#C78348";
|
|
855
|
+
declare const RedsiftColorDarkComponentsPillsBrownHoverBorder = "unset";
|
|
856
|
+
declare const RedsiftColorDarkComponentsPillsBrownHoverText = "#1c1c1c";
|
|
857
|
+
declare const RedsiftColorDarkComponentsPillsBrownDisabledBackground = "#F6D9C3";
|
|
858
|
+
declare const RedsiftColorDarkComponentsPillsBrownDisabledBorder = "unset";
|
|
859
|
+
declare const RedsiftColorDarkComponentsPillsBrownDisabledText = "#666666";
|
|
860
|
+
declare const RedsiftColorDarkComponentsPillsRedDefaultBackground = "#F3A39E";
|
|
861
|
+
declare const RedsiftColorDarkComponentsPillsRedDefaultBorder = "unset";
|
|
862
|
+
declare const RedsiftColorDarkComponentsPillsRedDefaultText = "#1c1c1c";
|
|
863
|
+
declare const RedsiftColorDarkComponentsPillsRedHoverBackground = "#E06363";
|
|
864
|
+
declare const RedsiftColorDarkComponentsPillsRedHoverBorder = "unset";
|
|
865
|
+
declare const RedsiftColorDarkComponentsPillsRedHoverText = "#1c1c1c";
|
|
866
|
+
declare const RedsiftColorDarkComponentsPillsRedDisabledBackground = "#F8BBBA";
|
|
867
|
+
declare const RedsiftColorDarkComponentsPillsRedDisabledBorder = "unset";
|
|
868
|
+
declare const RedsiftColorDarkComponentsPillsRedDisabledText = "#666666";
|
|
869
|
+
declare const RedsiftColorDarkComponentsPillsYellowDefaultBackground = "#F7EFC3";
|
|
870
|
+
declare const RedsiftColorDarkComponentsPillsYellowDefaultBorder = "unset";
|
|
871
|
+
declare const RedsiftColorDarkComponentsPillsYellowDefaultText = "#1c1c1c";
|
|
872
|
+
declare const RedsiftColorDarkComponentsPillsYellowHoverBackground = "#FFF741";
|
|
873
|
+
declare const RedsiftColorDarkComponentsPillsYellowHoverBorder = "unset";
|
|
874
|
+
declare const RedsiftColorDarkComponentsPillsYellowHoverText = "#1c1c1c";
|
|
875
|
+
declare const RedsiftColorDarkComponentsPillsYellowDisabledBackground = "#FBF5DB";
|
|
876
|
+
declare const RedsiftColorDarkComponentsPillsYellowDisabledBorder = "unset";
|
|
877
|
+
declare const RedsiftColorDarkComponentsPillsYellowDisabledText = "#666666";
|
|
878
|
+
declare const RedsiftColorDarkComponentsPillsPurpleDefaultBackground = "#C6A8EF";
|
|
879
|
+
declare const RedsiftColorDarkComponentsPillsPurpleDefaultBorder = "unset";
|
|
880
|
+
declare const RedsiftColorDarkComponentsPillsPurpleDefaultText = "#1c1c1c";
|
|
881
|
+
declare const RedsiftColorDarkComponentsPillsPurpleHoverBackground = "#965EDE";
|
|
882
|
+
declare const RedsiftColorDarkComponentsPillsPurpleHoverBorder = "unset";
|
|
883
|
+
declare const RedsiftColorDarkComponentsPillsPurpleHoverText = "#1c1c1c";
|
|
884
|
+
declare const RedsiftColorDarkComponentsPillsPurpleDisabledBackground = "#DECAF6";
|
|
885
|
+
declare const RedsiftColorDarkComponentsPillsPurpleDisabledBorder = "unset";
|
|
886
|
+
declare const RedsiftColorDarkComponentsPillsPurpleDisabledText = "#666666";
|
|
887
|
+
declare const RedsiftColorDarkComponentsPillsOrangeDefaultBackground = "#F8D296";
|
|
888
|
+
declare const RedsiftColorDarkComponentsPillsOrangeDefaultBorder = "unset";
|
|
889
|
+
declare const RedsiftColorDarkComponentsPillsOrangeDefaultText = "#1c1c1c";
|
|
890
|
+
declare const RedsiftColorDarkComponentsPillsOrangeHoverBackground = "#FCBB54";
|
|
891
|
+
declare const RedsiftColorDarkComponentsPillsOrangeHoverBorder = "unset";
|
|
892
|
+
declare const RedsiftColorDarkComponentsPillsOrangeHoverText = "#1c1c1c";
|
|
893
|
+
declare const RedsiftColorDarkComponentsPillsOrangeDisabledBackground = "#FDE4C0";
|
|
894
|
+
declare const RedsiftColorDarkComponentsPillsOrangeDisabledBorder = "unset";
|
|
895
|
+
declare const RedsiftColorDarkComponentsPillsOrangeDisabledText = "#666666";
|
|
896
|
+
declare const RedsiftColorDarkComponentsPillsBlueDefaultBackground = "#B1DCF3";
|
|
897
|
+
declare const RedsiftColorDarkComponentsPillsBlueDefaultBorder = "unset";
|
|
898
|
+
declare const RedsiftColorDarkComponentsPillsBlueDefaultText = "#1c1c1c";
|
|
899
|
+
declare const RedsiftColorDarkComponentsPillsBlueHoverBackground = "#73C5EB";
|
|
900
|
+
declare const RedsiftColorDarkComponentsPillsBlueHoverBorder = "unset";
|
|
901
|
+
declare const RedsiftColorDarkComponentsPillsBlueHoverText = "#1c1c1c";
|
|
902
|
+
declare const RedsiftColorDarkComponentsPillsBlueDisabledBackground = "#CCE8F7";
|
|
903
|
+
declare const RedsiftColorDarkComponentsPillsBlueDisabledBorder = "unset";
|
|
904
|
+
declare const RedsiftColorDarkComponentsPillsBlueDisabledText = "#666666";
|
|
905
|
+
declare const RedsiftColorDarkComponentsPillsBlackDefaultBackground = "#1c1c1c";
|
|
906
|
+
declare const RedsiftColorDarkComponentsPillsBlackDefaultBorder = "unset";
|
|
907
|
+
declare const RedsiftColorDarkComponentsPillsBlackDefaultText = "#ffffff";
|
|
908
|
+
declare const RedsiftColorDarkComponentsPillsBlackHoverBackground = "#333333";
|
|
909
|
+
declare const RedsiftColorDarkComponentsPillsBlackHoverBorder = "unset";
|
|
910
|
+
declare const RedsiftColorDarkComponentsPillsBlackHoverText = "#ffffff";
|
|
911
|
+
declare const RedsiftColorDarkComponentsPillsBlackDisabledBackground = "#474747";
|
|
912
|
+
declare const RedsiftColorDarkComponentsPillsBlackDisabledBorder = "unset";
|
|
913
|
+
declare const RedsiftColorDarkComponentsPillsBlackDisabledText = "#ffffff";
|
|
914
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyDefaultBackground = "#333333";
|
|
915
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyDefaultBorder = "unset";
|
|
916
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyDefaultText = "#ffffff";
|
|
917
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyHoverBackground = "#474747";
|
|
918
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyHoverBorder = "unset";
|
|
919
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyHoverText = "#ffffff";
|
|
920
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyDisabledBackground = "#666666";
|
|
921
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyDisabledBorder = "unset";
|
|
922
|
+
declare const RedsiftColorDarkComponentsPillsXDarkGreyDisabledText = "#ffffff";
|
|
923
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyDefaultBackground = "#474747";
|
|
924
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyDefaultBorder = "unset";
|
|
925
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyDefaultText = "#ffffff";
|
|
926
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyHoverBackground = "#666666";
|
|
927
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyHoverBorder = "unset";
|
|
928
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyHoverText = "#ffffff";
|
|
929
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyDisabledBackground = "#e0e0e0";
|
|
930
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyDisabledBorder = "unset";
|
|
931
|
+
declare const RedsiftColorDarkComponentsPillsDarkGreyDisabledText = "#ffffff";
|
|
932
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyDefaultBackground = "#666666";
|
|
933
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyDefaultBorder = "unset";
|
|
934
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyDefaultText = "#ffffff";
|
|
935
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyHoverBackground = "#474747";
|
|
936
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyHoverBorder = "unset";
|
|
937
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyHoverText = "#ffffff";
|
|
938
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyDisabledBackground = "#e0e0e0";
|
|
939
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyDisabledBorder = "unset";
|
|
940
|
+
declare const RedsiftColorDarkComponentsPillsMidGreyDisabledText = "#666666";
|
|
941
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyDefaultBackground = "#e0e0e0";
|
|
942
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyDefaultBorder = "unset";
|
|
943
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyDefaultText = "#1c1c1c";
|
|
944
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyHoverBackground = "#666666";
|
|
945
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyHoverBorder = "unset";
|
|
946
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyHoverText = "#1c1c1c";
|
|
947
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyDisabledBackground = "#f2f2f2";
|
|
948
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyDisabledBorder = "unset";
|
|
949
|
+
declare const RedsiftColorDarkComponentsPillsLightGreyDisabledText = "#666666";
|
|
950
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyDefaultBackground = "#f2f2f2";
|
|
951
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyDefaultBorder = "unset";
|
|
952
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyDefaultText = "#1c1c1c";
|
|
953
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyHoverBackground = "#e0e0e0";
|
|
954
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyHoverBorder = "unset";
|
|
955
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyHoverText = "#1c1c1c";
|
|
956
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyDisabledBackground = "#666666";
|
|
957
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyDisabledBorder = "unset";
|
|
958
|
+
declare const RedsiftColorDarkComponentsPillsXLightGreyDisabledText = "#666666";
|
|
959
|
+
declare const RedsiftColorDarkComponentsPillsWhiteDefaultBackground = "#ffffff";
|
|
960
|
+
declare const RedsiftColorDarkComponentsPillsWhiteDefaultBorder = "#e0e0e0";
|
|
961
|
+
declare const RedsiftColorDarkComponentsPillsWhiteDefaultText = "#1c1c1c";
|
|
962
|
+
declare const RedsiftColorDarkComponentsPillsWhiteHoverBackground = "#f2f2f2";
|
|
963
|
+
declare const RedsiftColorDarkComponentsPillsWhiteHoverBorder = "#e0e0e0";
|
|
964
|
+
declare const RedsiftColorDarkComponentsPillsWhiteHoverText = "#1c1c1c";
|
|
965
|
+
declare const RedsiftColorDarkComponentsPillsWhiteDisabledBackground = "#ffffff";
|
|
966
|
+
declare const RedsiftColorDarkComponentsPillsWhiteDisabledBorder = "#e0e0e0";
|
|
967
|
+
declare const RedsiftColorDarkComponentsPillsWhiteDisabledText = "#666666";
|
|
968
|
+
declare const RedsiftColorDarkComponentsPillsErrorDefaultBackground = "#F8BBBA";
|
|
969
|
+
declare const RedsiftColorDarkComponentsPillsErrorDefaultBorder = "unset";
|
|
970
|
+
declare const RedsiftColorDarkComponentsPillsErrorDefaultText = "#1c1c1c";
|
|
971
|
+
declare const RedsiftColorDarkComponentsPillsErrorHoverBackground = "#E06363";
|
|
972
|
+
declare const RedsiftColorDarkComponentsPillsErrorHoverBorder = "unset";
|
|
973
|
+
declare const RedsiftColorDarkComponentsPillsErrorHoverText = "#1c1c1c";
|
|
974
|
+
declare const RedsiftColorDarkComponentsPillsErrorDisabledBackground = "#F3A39E";
|
|
975
|
+
declare const RedsiftColorDarkComponentsPillsErrorDisabledBorder = "unset";
|
|
976
|
+
declare const RedsiftColorDarkComponentsPillsErrorDisabledText = "#666666";
|
|
977
|
+
declare const RedsiftColorDarkComponentsPillsWarningDefaultBackground = "#FDE4C0";
|
|
978
|
+
declare const RedsiftColorDarkComponentsPillsWarningDefaultBorder = "unset";
|
|
979
|
+
declare const RedsiftColorDarkComponentsPillsWarningDefaultText = "#1c1c1c";
|
|
980
|
+
declare const RedsiftColorDarkComponentsPillsWarningHoverBackground = "#FCBB54";
|
|
981
|
+
declare const RedsiftColorDarkComponentsPillsWarningHoverBorder = "unset";
|
|
982
|
+
declare const RedsiftColorDarkComponentsPillsWarningHoverText = "#1c1c1c";
|
|
983
|
+
declare const RedsiftColorDarkComponentsPillsWarningDisabledBackground = "#F8D296";
|
|
984
|
+
declare const RedsiftColorDarkComponentsPillsWarningDisabledBorder = "unset";
|
|
985
|
+
declare const RedsiftColorDarkComponentsPillsWarningDisabledText = "#666666";
|
|
986
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDefaultBackground = "#C2EFD1";
|
|
987
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDefaultBorder = "unset";
|
|
988
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDefaultText = "#1c1c1c";
|
|
989
|
+
declare const RedsiftColorDarkComponentsPillsSuccessHoverBackground = "#56D58E";
|
|
990
|
+
declare const RedsiftColorDarkComponentsPillsSuccessHoverBorder = "unset";
|
|
991
|
+
declare const RedsiftColorDarkComponentsPillsSuccessHoverText = "#1c1c1c";
|
|
992
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDisabledBackground = "#A2E7BA";
|
|
993
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDisabledBorder = "unset";
|
|
994
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDisabledText = "#666666";
|
|
995
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkDefaultBackground = "#E06363";
|
|
996
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkDefaultBorder = "unset";
|
|
997
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkDefaultText = "#1c1c1c";
|
|
998
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkHoverBackground = "#DE0000";
|
|
999
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkHoverBorder = "unset";
|
|
1000
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkHoverText = "#1c1c1c";
|
|
1001
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkDisabledBackground = "#F3A39E";
|
|
1002
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkDisabledBorder = "unset";
|
|
1003
|
+
declare const RedsiftColorDarkComponentsPillsErrorDarkDisabledText = "#666666";
|
|
1004
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkDefaultBackground = "#FCBB54";
|
|
1005
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkDefaultBorder = "unset";
|
|
1006
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkDefaultText = "#1c1c1c";
|
|
1007
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkHoverBackground = "#ED9200";
|
|
1008
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkHoverBorder = "unset";
|
|
1009
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkHoverText = "#1c1c1c";
|
|
1010
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkDisabledBackground = "#F8D296";
|
|
1011
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkDisabledBorder = "unset";
|
|
1012
|
+
declare const RedsiftColorDarkComponentsPillsWarningDarkDisabledText = "#666666";
|
|
1013
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkDefaultBackground = "#56D58E";
|
|
1014
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkDefaultBorder = "unset";
|
|
1015
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkDefaultText = "#1c1c1c";
|
|
1016
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkHoverBackground = "#00CE59";
|
|
1017
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkHoverBorder = "unset";
|
|
1018
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkHoverText = "#1c1c1c";
|
|
1019
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkDisabledBackground = "#A2E7BA";
|
|
1020
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkDisabledBorder = "unset";
|
|
1021
|
+
declare const RedsiftColorDarkComponentsPillsSuccessDarkDisabledText = "#666666";
|
|
743
1022
|
declare const RedsiftColorLightComponentsPageBackground = "#ffffff";
|
|
744
1023
|
declare const RedsiftColorLightComponentsTextPrimary = "#333333";
|
|
745
1024
|
declare const RedsiftColorLightComponentsTextSecondary = "#474747";
|
|
@@ -839,6 +1118,14 @@ declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDefault = "
|
|
|
839
1118
|
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextHover = "#ffffff";
|
|
840
1119
|
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextActive = "#ffffff";
|
|
841
1120
|
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDisabled = "#858585";
|
|
1121
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundDefault = "linear-gradient(90deg, rgba(81, 183, 164, 1), rgba(0, 129, 195, 1))";
|
|
1122
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundHover = "linear-gradient(90deg, rgba(65, 146, 131, 1), rgba(3, 114, 171, 1))";
|
|
1123
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundActive = "linear-gradient(90deg, rgba(58, 122, 110, 1), rgba(0, 96, 145, 1))";
|
|
1124
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundDisabled = "#e0e0e0";
|
|
1125
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextDefault = "#ffffff";
|
|
1126
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextHover = "#ffffff";
|
|
1127
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextActive = "#ffffff";
|
|
1128
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextDisabled = "#858585";
|
|
842
1129
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundDefault = "transparent";
|
|
843
1130
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundHover = "#d9e7fd";
|
|
844
1131
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundActive = "#b3cefb";
|
|
@@ -846,7 +1133,7 @@ declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackground
|
|
|
846
1133
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDefault = "#4285f4";
|
|
847
1134
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextHover = "#3b78dc";
|
|
848
1135
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextActive = "#2e5dab";
|
|
849
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDisabled = "#
|
|
1136
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDisabled = "#a3a3a3";
|
|
850
1137
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundDefault = "transparent";
|
|
851
1138
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundHover = "#dcf1ed";
|
|
852
1139
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundActive = "#b9e2db";
|
|
@@ -854,7 +1141,7 @@ declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgrou
|
|
|
854
1141
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDefault = "#51b7a4";
|
|
855
1142
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextHover = "#49a594";
|
|
856
1143
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextActive = "#398073";
|
|
857
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDisabled = "#
|
|
1144
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDisabled = "#a3a3a3";
|
|
858
1145
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundDefault = "transparent";
|
|
859
1146
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundHover = "#cceedf";
|
|
860
1147
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundActive = "#9adec0";
|
|
@@ -862,7 +1149,7 @@ declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackground
|
|
|
862
1149
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDefault = "#02ac61";
|
|
863
1150
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextHover = "#029b57";
|
|
864
1151
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextActive = "#017844";
|
|
865
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDisabled = "#
|
|
1152
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDisabled = "#a3a3a3";
|
|
866
1153
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDefault = "transparent";
|
|
867
1154
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundHover = "#f9cfcf";
|
|
868
1155
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundActive = "#f39f9f";
|
|
@@ -870,7 +1157,7 @@ declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDi
|
|
|
870
1157
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDefault = "#e11010";
|
|
871
1158
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextHover = "#cb0e0e";
|
|
872
1159
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextActive = "#9e0b0b";
|
|
873
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDisabled = "#
|
|
1160
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDisabled = "#a3a3a3";
|
|
874
1161
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundDefault = "transparent";
|
|
875
1162
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundHover = "#fef1dd";
|
|
876
1163
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundActive = "#fee4bb";
|
|
@@ -878,7 +1165,7 @@ declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackground
|
|
|
878
1165
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDefault = "#fcbb54";
|
|
879
1166
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextHover = "#e3a84c";
|
|
880
1167
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextActive = "#b0833b";
|
|
881
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDisabled = "#
|
|
1168
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDisabled = "#a3a3a3";
|
|
882
1169
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDefault = "transparent";
|
|
883
1170
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundHover = "#d9e7fd";
|
|
884
1171
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundActive = "#b3cefb";
|
|
@@ -886,71 +1173,119 @@ declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDis
|
|
|
886
1173
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDefault = "#4285f4";
|
|
887
1174
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextHover = "#3b78dc";
|
|
888
1175
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextActive = "#2e5dab";
|
|
889
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDisabled = "#
|
|
1176
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDisabled = "#a3a3a3";
|
|
890
1177
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDefault = "transparent";
|
|
891
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundHover = "#
|
|
892
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundActive = "#
|
|
893
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDisabled = "
|
|
1178
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundHover = "#e0e0e0";
|
|
1179
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundActive = "#a3a3a3";
|
|
1180
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDisabled = "transparent";
|
|
894
1181
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDefault = "#666666";
|
|
895
1182
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextHover = "#525252";
|
|
896
1183
|
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextActive = "#525252";
|
|
897
|
-
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDisabled = "#
|
|
1184
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDisabled = "#a3a3a3";
|
|
1185
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundDefault = "transparent";
|
|
1186
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundHover = "#e0e0e0";
|
|
1187
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundActive = "#a3a3a3";
|
|
1188
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundDisabled = "transparent";
|
|
1189
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextDefault = "#333333";
|
|
1190
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextHover = "#333333";
|
|
1191
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextActive = "#333333";
|
|
1192
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextDisabled = "#a3a3a3";
|
|
1193
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundDefault = "transparent";
|
|
1194
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundHover = "#e0e0e0";
|
|
1195
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundActive = "#a3a3a3";
|
|
1196
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundDisabled = "transparent";
|
|
1197
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextDefault = "#ffffff";
|
|
1198
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextHover = "#ffffff";
|
|
1199
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextActive = "#ffffff";
|
|
1200
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextDisabled = "#a3a3a3";
|
|
1201
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundDefault = "transparent";
|
|
1202
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundHover = "linear-gradient(90deg, rgba(81, 183, 142, 0.2), rgba(0, 129, 195, 0.2))";
|
|
1203
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundActive = "linear-gradient(90deg, rgba(81, 183, 142, 0.4), rgba(0, 129, 195, 0.4))";
|
|
1204
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundDisabled = "#ffffff";
|
|
1205
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextDefault = "linear-gradient(90deg, rgba(81, 183, 164, 1), rgba(0, 129, 195, 1))";
|
|
1206
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextHover = "linear-gradient(90deg, rgba(65, 146, 131, 1), rgba(3, 114, 171, 1))";
|
|
1207
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextActive = "linear-gradient(90deg, rgba(58, 122, 110, 1), rgba(0, 96, 145, 1))";
|
|
1208
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextDisabled = "#a3a3a3";
|
|
898
1209
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDefault = "transparent";
|
|
899
1210
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundHover = "#d9e7fd";
|
|
900
1211
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundActive = "#b3cefb";
|
|
901
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled = "
|
|
1212
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled = "transparent";
|
|
902
1213
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDefault = "#4285f4";
|
|
903
1214
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextHover = "#3b78dc";
|
|
904
1215
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextActive = "#2e5dab";
|
|
905
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDisabled = "#
|
|
1216
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDisabled = "#a3a3a3";
|
|
906
1217
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDefault = "transparent";
|
|
907
1218
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundHover = "#dcf1ed";
|
|
908
1219
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundActive = "#b9e2db";
|
|
909
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled = "
|
|
1220
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled = "transparent";
|
|
910
1221
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDefault = "#51b7a4";
|
|
911
1222
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextHover = "#49a594";
|
|
912
1223
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextActive = "#398073";
|
|
913
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDisabled = "#
|
|
1224
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDisabled = "#a3a3a3";
|
|
914
1225
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDefault = "transparent";
|
|
915
1226
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundHover = "#cceedf";
|
|
916
1227
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundActive = "#9adec0";
|
|
917
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDisabled = "
|
|
1228
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDisabled = "transparent";
|
|
918
1229
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDefault = "#02ac61";
|
|
919
1230
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextHover = "#029b57";
|
|
920
1231
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextActive = "#017844";
|
|
921
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDisabled = "#
|
|
1232
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDisabled = "#a3a3a3";
|
|
922
1233
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDefault = "transparent";
|
|
923
1234
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundHover = "#f9cfcf";
|
|
924
1235
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundActive = "#f39f9f";
|
|
925
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDisabled = "
|
|
1236
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDisabled = "transparent";
|
|
926
1237
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDefault = "#e11010";
|
|
927
1238
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextHover = "#cb0e0e";
|
|
928
1239
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextActive = "#9e0b0b";
|
|
929
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDisabled = "#
|
|
1240
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDisabled = "#a3a3a3";
|
|
930
1241
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDefault = "transparent";
|
|
931
1242
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundHover = "#fef1dd";
|
|
932
1243
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundActive = "#fee4bb";
|
|
933
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDisabled = "
|
|
1244
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDisabled = "transparent";
|
|
934
1245
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDefault = "#fcbb54";
|
|
935
1246
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextHover = "#e3a84c";
|
|
936
1247
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextActive = "#b0833b";
|
|
937
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDisabled = "#
|
|
1248
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDisabled = "#a3a3a3";
|
|
938
1249
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDefault = "transparent";
|
|
939
1250
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundHover = "#d9e7fd";
|
|
940
1251
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundActive = "#b3cefb";
|
|
941
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDisabled = "
|
|
1252
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDisabled = "transparent";
|
|
942
1253
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDefault = "#4285f4";
|
|
943
1254
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextHover = "#3b78dc";
|
|
944
1255
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextActive = "#2e5dab";
|
|
945
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDisabled = "#
|
|
1256
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDisabled = "#a3a3a3";
|
|
946
1257
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDefault = "transparent";
|
|
947
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundHover = "#
|
|
948
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundActive = "#
|
|
949
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDisabled = "
|
|
1258
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundHover = "#e0e0e0";
|
|
1259
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundActive = "#a3a3a3";
|
|
1260
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDisabled = "transparent";
|
|
950
1261
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDefault = "#666666";
|
|
951
1262
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextHover = "#525252";
|
|
952
1263
|
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextActive = "#525252";
|
|
953
|
-
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDisabled = "#
|
|
1264
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDisabled = "#a3a3a3";
|
|
1265
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundDefault = "transparent";
|
|
1266
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundHover = "#e0e0e0";
|
|
1267
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundActive = "#a3a3a3";
|
|
1268
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundDisabled = "transparent";
|
|
1269
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextDefault = "#333333";
|
|
1270
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextHover = "#333333";
|
|
1271
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextActive = "#333333";
|
|
1272
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextDisabled = "#a3a3a3";
|
|
1273
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundDefault = "transparent";
|
|
1274
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundHover = "#e0e0e0";
|
|
1275
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundActive = "#a3a3a3";
|
|
1276
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundDisabled = "transparent";
|
|
1277
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextDefault = "#ffffff";
|
|
1278
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextHover = "#ffffff";
|
|
1279
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextActive = "#ffffff";
|
|
1280
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextDisabled = "#a3a3a3";
|
|
1281
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundDefault = "transparent";
|
|
1282
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundHover = "linear-gradient(90deg, rgba(81, 183, 142, 0.2), rgba(0, 129, 195, 0.2))";
|
|
1283
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundActive = "linear-gradient(90deg, rgba(81, 183, 142, 0.4), rgba(0, 129, 195, 0.4))";
|
|
1284
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundDisabled = "#ffffff";
|
|
1285
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextDefault = "linear-gradient(90deg, rgba(81, 183, 164, 1), rgba(0, 129, 195, 1))";
|
|
1286
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextHover = "linear-gradient(90deg, rgba(65, 146, 131, 1), rgba(3, 114, 171, 1))";
|
|
1287
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextActive = "linear-gradient(90deg, rgba(58, 122, 110, 1), rgba(0, 96, 145, 1))";
|
|
1288
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextDisabled = "#a3a3a3";
|
|
954
1289
|
declare const RedsiftColorLightComponentsAiAiBorder = "#e11010";
|
|
955
1290
|
declare const RedsiftColorLightComponentsAiAiIcon = "#e11010";
|
|
956
1291
|
declare const RedsiftColorLightComponentsSpinnerSpinner = "#4285f4";
|
|
@@ -1021,6 +1356,213 @@ declare const RedsiftColorLightComponentsSwitchTextInvalid = "#e11010";
|
|
|
1021
1356
|
declare const RedsiftColorLightComponentsSwitchTextDisabled = "#e0e0e0";
|
|
1022
1357
|
declare const RedsiftColorLightComponentsTabsLine = "#e0e0e0";
|
|
1023
1358
|
declare const RedsiftColorLightComponentsModalBackground = "#ffffff";
|
|
1359
|
+
declare const RedsiftColorLightComponentsPillsGreyDefaultBackground = "#E6E6E6";
|
|
1360
|
+
declare const RedsiftColorLightComponentsPillsGreyDefaultBorder = "transparent";
|
|
1361
|
+
declare const RedsiftColorLightComponentsPillsGreyDefaultText = "#1c1c1c";
|
|
1362
|
+
declare const RedsiftColorLightComponentsPillsGreyHoverBackground = "#D6D6D6";
|
|
1363
|
+
declare const RedsiftColorLightComponentsPillsGreyHoverBorder = "transparent";
|
|
1364
|
+
declare const RedsiftColorLightComponentsPillsGreyHoverText = "#1c1c1c";
|
|
1365
|
+
declare const RedsiftColorLightComponentsPillsGreyDisabledBackground = "#EEEEEE";
|
|
1366
|
+
declare const RedsiftColorLightComponentsPillsGreyDisabledBorder = "transparent";
|
|
1367
|
+
declare const RedsiftColorLightComponentsPillsGreyDisabledText = "#666666";
|
|
1368
|
+
declare const RedsiftColorLightComponentsPillsGreenDefaultBackground = "#A2E7BA";
|
|
1369
|
+
declare const RedsiftColorLightComponentsPillsGreenDefaultBorder = "transparent";
|
|
1370
|
+
declare const RedsiftColorLightComponentsPillsGreenDefaultText = "#1c1c1c";
|
|
1371
|
+
declare const RedsiftColorLightComponentsPillsGreenHoverBackground = "#56D58E";
|
|
1372
|
+
declare const RedsiftColorLightComponentsPillsGreenHoverBorder = "transparent";
|
|
1373
|
+
declare const RedsiftColorLightComponentsPillsGreenHoverText = "#1c1c1c";
|
|
1374
|
+
declare const RedsiftColorLightComponentsPillsGreenDisabledBackground = "#C2EFD1";
|
|
1375
|
+
declare const RedsiftColorLightComponentsPillsGreenDisabledBorder = "transparent";
|
|
1376
|
+
declare const RedsiftColorLightComponentsPillsGreenDisabledText = "#666666";
|
|
1377
|
+
declare const RedsiftColorLightComponentsPillsPinkDefaultBackground = "#ECA0D6";
|
|
1378
|
+
declare const RedsiftColorLightComponentsPillsPinkDefaultBorder = "transparent";
|
|
1379
|
+
declare const RedsiftColorLightComponentsPillsPinkDefaultText = "#1c1c1c";
|
|
1380
|
+
declare const RedsiftColorLightComponentsPillsPinkHoverBackground = "#D95CBA";
|
|
1381
|
+
declare const RedsiftColorLightComponentsPillsPinkHoverBorder = "transparent";
|
|
1382
|
+
declare const RedsiftColorLightComponentsPillsPinkHoverText = "#1c1c1c";
|
|
1383
|
+
declare const RedsiftColorLightComponentsPillsPinkDisabledBackground = "#F4C0E3";
|
|
1384
|
+
declare const RedsiftColorLightComponentsPillsPinkDisabledBorder = "transparent";
|
|
1385
|
+
declare const RedsiftColorLightComponentsPillsPinkDisabledText = "#666666";
|
|
1386
|
+
declare const RedsiftColorLightComponentsPillsAquaDefaultBackground = "#9AF8F4";
|
|
1387
|
+
declare const RedsiftColorLightComponentsPillsAquaDefaultBorder = "transparent";
|
|
1388
|
+
declare const RedsiftColorLightComponentsPillsAquaDefaultText = "#1c1c1c";
|
|
1389
|
+
declare const RedsiftColorLightComponentsPillsAquaHoverBackground = "#63EAE4";
|
|
1390
|
+
declare const RedsiftColorLightComponentsPillsAquaHoverBorder = "transparent";
|
|
1391
|
+
declare const RedsiftColorLightComponentsPillsAquaHoverText = "#1c1c1c";
|
|
1392
|
+
declare const RedsiftColorLightComponentsPillsAquaDisabledBackground = "#CAF7F4";
|
|
1393
|
+
declare const RedsiftColorLightComponentsPillsAquaDisabledBorder = "transparent";
|
|
1394
|
+
declare const RedsiftColorLightComponentsPillsAquaDisabledText = "#666666";
|
|
1395
|
+
declare const RedsiftColorLightComponentsPillsBrownDefaultBackground = "#EDC19C";
|
|
1396
|
+
declare const RedsiftColorLightComponentsPillsBrownDefaultBorder = "transparent";
|
|
1397
|
+
declare const RedsiftColorLightComponentsPillsBrownDefaultText = "#1c1c1c";
|
|
1398
|
+
declare const RedsiftColorLightComponentsPillsBrownHoverBackground = "#C78348";
|
|
1399
|
+
declare const RedsiftColorLightComponentsPillsBrownHoverBorder = "transparent";
|
|
1400
|
+
declare const RedsiftColorLightComponentsPillsBrownHoverText = "#1c1c1c";
|
|
1401
|
+
declare const RedsiftColorLightComponentsPillsBrownDisabledBackground = "#F6D9C3";
|
|
1402
|
+
declare const RedsiftColorLightComponentsPillsBrownDisabledBorder = "transparent";
|
|
1403
|
+
declare const RedsiftColorLightComponentsPillsBrownDisabledText = "#666666";
|
|
1404
|
+
declare const RedsiftColorLightComponentsPillsRedDefaultBackground = "#F3A39E";
|
|
1405
|
+
declare const RedsiftColorLightComponentsPillsRedDefaultBorder = "transparent";
|
|
1406
|
+
declare const RedsiftColorLightComponentsPillsRedDefaultText = "#1c1c1c";
|
|
1407
|
+
declare const RedsiftColorLightComponentsPillsRedHoverBackground = "#E06363";
|
|
1408
|
+
declare const RedsiftColorLightComponentsPillsRedHoverBorder = "transparent";
|
|
1409
|
+
declare const RedsiftColorLightComponentsPillsRedHoverText = "#1c1c1c";
|
|
1410
|
+
declare const RedsiftColorLightComponentsPillsRedDisabledBackground = "#F8BBBA";
|
|
1411
|
+
declare const RedsiftColorLightComponentsPillsRedDisabledBorder = "transparent";
|
|
1412
|
+
declare const RedsiftColorLightComponentsPillsRedDisabledText = "#666666";
|
|
1413
|
+
declare const RedsiftColorLightComponentsPillsYellowDefaultBackground = "#F7EFC3";
|
|
1414
|
+
declare const RedsiftColorLightComponentsPillsYellowDefaultBorder = "transparent";
|
|
1415
|
+
declare const RedsiftColorLightComponentsPillsYellowDefaultText = "#1c1c1c";
|
|
1416
|
+
declare const RedsiftColorLightComponentsPillsYellowHoverBackground = "#FFF741";
|
|
1417
|
+
declare const RedsiftColorLightComponentsPillsYellowHoverBorder = "transparent";
|
|
1418
|
+
declare const RedsiftColorLightComponentsPillsYellowHoverText = "#1c1c1c";
|
|
1419
|
+
declare const RedsiftColorLightComponentsPillsYellowDisabledBackground = "#FBF5DB";
|
|
1420
|
+
declare const RedsiftColorLightComponentsPillsYellowDisabledBorder = "transparent";
|
|
1421
|
+
declare const RedsiftColorLightComponentsPillsYellowDisabledText = "#666666";
|
|
1422
|
+
declare const RedsiftColorLightComponentsPillsPurpleDefaultBackground = "#C6A8EF";
|
|
1423
|
+
declare const RedsiftColorLightComponentsPillsPurpleDefaultBorder = "transparent";
|
|
1424
|
+
declare const RedsiftColorLightComponentsPillsPurpleDefaultText = "#1c1c1c";
|
|
1425
|
+
declare const RedsiftColorLightComponentsPillsPurpleHoverBackground = "#965EDE";
|
|
1426
|
+
declare const RedsiftColorLightComponentsPillsPurpleHoverBorder = "transparent";
|
|
1427
|
+
declare const RedsiftColorLightComponentsPillsPurpleHoverText = "#1c1c1c";
|
|
1428
|
+
declare const RedsiftColorLightComponentsPillsPurpleDisabledBackground = "#DECAF6";
|
|
1429
|
+
declare const RedsiftColorLightComponentsPillsPurpleDisabledBorder = "transparent";
|
|
1430
|
+
declare const RedsiftColorLightComponentsPillsPurpleDisabledText = "#666666";
|
|
1431
|
+
declare const RedsiftColorLightComponentsPillsOrangeDefaultBackground = "#F8D296";
|
|
1432
|
+
declare const RedsiftColorLightComponentsPillsOrangeDefaultBorder = "transparent";
|
|
1433
|
+
declare const RedsiftColorLightComponentsPillsOrangeDefaultText = "#1c1c1c";
|
|
1434
|
+
declare const RedsiftColorLightComponentsPillsOrangeHoverBackground = "#FCBB54";
|
|
1435
|
+
declare const RedsiftColorLightComponentsPillsOrangeHoverBorder = "transparent";
|
|
1436
|
+
declare const RedsiftColorLightComponentsPillsOrangeHoverText = "#1c1c1c";
|
|
1437
|
+
declare const RedsiftColorLightComponentsPillsOrangeDisabledBackground = "#FDE4C0";
|
|
1438
|
+
declare const RedsiftColorLightComponentsPillsOrangeDisabledBorder = "transparent";
|
|
1439
|
+
declare const RedsiftColorLightComponentsPillsOrangeDisabledText = "#666666";
|
|
1440
|
+
declare const RedsiftColorLightComponentsPillsBlueDefaultBackground = "#B1DCF3";
|
|
1441
|
+
declare const RedsiftColorLightComponentsPillsBlueDefaultBorder = "transparent";
|
|
1442
|
+
declare const RedsiftColorLightComponentsPillsBlueDefaultText = "#1c1c1c";
|
|
1443
|
+
declare const RedsiftColorLightComponentsPillsBlueHoverBackground = "#73C5EB";
|
|
1444
|
+
declare const RedsiftColorLightComponentsPillsBlueHoverBorder = "transparent";
|
|
1445
|
+
declare const RedsiftColorLightComponentsPillsBlueHoverText = "#1c1c1c";
|
|
1446
|
+
declare const RedsiftColorLightComponentsPillsBlueDisabledBackground = "#CCE8F7";
|
|
1447
|
+
declare const RedsiftColorLightComponentsPillsBlueDisabledBorder = "transparent";
|
|
1448
|
+
declare const RedsiftColorLightComponentsPillsBlueDisabledText = "#666666";
|
|
1449
|
+
declare const RedsiftColorLightComponentsPillsBlackDefaultBackground = "#1c1c1c";
|
|
1450
|
+
declare const RedsiftColorLightComponentsPillsBlackDefaultBorder = "transparent";
|
|
1451
|
+
declare const RedsiftColorLightComponentsPillsBlackDefaultText = "#ffffff";
|
|
1452
|
+
declare const RedsiftColorLightComponentsPillsBlackHoverBackground = "#333333";
|
|
1453
|
+
declare const RedsiftColorLightComponentsPillsBlackHoverBorder = "transparent";
|
|
1454
|
+
declare const RedsiftColorLightComponentsPillsBlackHoverText = "#ffffff";
|
|
1455
|
+
declare const RedsiftColorLightComponentsPillsBlackDisabledBackground = "#474747";
|
|
1456
|
+
declare const RedsiftColorLightComponentsPillsBlackDisabledBorder = "transparent";
|
|
1457
|
+
declare const RedsiftColorLightComponentsPillsBlackDisabledText = "#ffffff";
|
|
1458
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyDefaultBackground = "#333333";
|
|
1459
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyDefaultBorder = "transparent";
|
|
1460
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyDefaultText = "#ffffff";
|
|
1461
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyHoverBackground = "#474747";
|
|
1462
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyHoverBorder = "transparent";
|
|
1463
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyHoverText = "#ffffff";
|
|
1464
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyDisabledBackground = "#666666";
|
|
1465
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyDisabledBorder = "transparent";
|
|
1466
|
+
declare const RedsiftColorLightComponentsPillsXDarkGreyDisabledText = "#ffffff";
|
|
1467
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyDefaultBackground = "#474747";
|
|
1468
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyDefaultBorder = "transparent";
|
|
1469
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyDefaultText = "#ffffff";
|
|
1470
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyHoverBackground = "#666666";
|
|
1471
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyHoverBorder = "transparent";
|
|
1472
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyHoverText = "#ffffff";
|
|
1473
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyDisabledBackground = "#e0e0e0";
|
|
1474
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyDisabledBorder = "transparent";
|
|
1475
|
+
declare const RedsiftColorLightComponentsPillsDarkGreyDisabledText = "#ffffff";
|
|
1476
|
+
declare const RedsiftColorLightComponentsPillsMidGreyDefaultBackground = "#666666";
|
|
1477
|
+
declare const RedsiftColorLightComponentsPillsMidGreyDefaultBorder = "transparent";
|
|
1478
|
+
declare const RedsiftColorLightComponentsPillsMidGreyDefaultText = "#ffffff";
|
|
1479
|
+
declare const RedsiftColorLightComponentsPillsMidGreyHoverBackground = "#474747";
|
|
1480
|
+
declare const RedsiftColorLightComponentsPillsMidGreyHoverBorder = "transparent";
|
|
1481
|
+
declare const RedsiftColorLightComponentsPillsMidGreyHoverText = "#ffffff";
|
|
1482
|
+
declare const RedsiftColorLightComponentsPillsMidGreyDisabledBackground = "#e0e0e0";
|
|
1483
|
+
declare const RedsiftColorLightComponentsPillsMidGreyDisabledBorder = "transparent";
|
|
1484
|
+
declare const RedsiftColorLightComponentsPillsMidGreyDisabledText = "#666666";
|
|
1485
|
+
declare const RedsiftColorLightComponentsPillsLightGreyDefaultBackground = "#e0e0e0";
|
|
1486
|
+
declare const RedsiftColorLightComponentsPillsLightGreyDefaultBorder = "transparent";
|
|
1487
|
+
declare const RedsiftColorLightComponentsPillsLightGreyDefaultText = "#1c1c1c";
|
|
1488
|
+
declare const RedsiftColorLightComponentsPillsLightGreyHoverBackground = "#666666";
|
|
1489
|
+
declare const RedsiftColorLightComponentsPillsLightGreyHoverBorder = "transparent";
|
|
1490
|
+
declare const RedsiftColorLightComponentsPillsLightGreyHoverText = "#1c1c1c";
|
|
1491
|
+
declare const RedsiftColorLightComponentsPillsLightGreyDisabledBackground = "#f2f2f2";
|
|
1492
|
+
declare const RedsiftColorLightComponentsPillsLightGreyDisabledBorder = "transparent";
|
|
1493
|
+
declare const RedsiftColorLightComponentsPillsLightGreyDisabledText = "#666666";
|
|
1494
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyDefaultBackground = "#f2f2f2";
|
|
1495
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyDefaultBorder = "transparent";
|
|
1496
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyDefaultText = "#1c1c1c";
|
|
1497
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyHoverBackground = "#e0e0e0";
|
|
1498
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyHoverBorder = "transparent";
|
|
1499
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyHoverText = "#1c1c1c";
|
|
1500
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyDisabledBackground = "#666666";
|
|
1501
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyDisabledBorder = "transparent";
|
|
1502
|
+
declare const RedsiftColorLightComponentsPillsXLightGreyDisabledText = "#666666";
|
|
1503
|
+
declare const RedsiftColorLightComponentsPillsWhiteDefaultBackground = "#ffffff";
|
|
1504
|
+
declare const RedsiftColorLightComponentsPillsWhiteDefaultBorder = "#e0e0e0";
|
|
1505
|
+
declare const RedsiftColorLightComponentsPillsWhiteDefaultText = "#1c1c1c";
|
|
1506
|
+
declare const RedsiftColorLightComponentsPillsWhiteHoverBackground = "#f2f2f2";
|
|
1507
|
+
declare const RedsiftColorLightComponentsPillsWhiteHoverBorder = "#e0e0e0";
|
|
1508
|
+
declare const RedsiftColorLightComponentsPillsWhiteHoverText = "#1c1c1c";
|
|
1509
|
+
declare const RedsiftColorLightComponentsPillsWhiteDisabledBackground = "#ffffff";
|
|
1510
|
+
declare const RedsiftColorLightComponentsPillsWhiteDisabledBorder = "#e0e0e0";
|
|
1511
|
+
declare const RedsiftColorLightComponentsPillsWhiteDisabledText = "#666666";
|
|
1512
|
+
declare const RedsiftColorLightComponentsPillsErrorDefaultBackground = "#F8BBBA";
|
|
1513
|
+
declare const RedsiftColorLightComponentsPillsErrorDefaultBorder = "transparent";
|
|
1514
|
+
declare const RedsiftColorLightComponentsPillsErrorDefaultText = "#1c1c1c";
|
|
1515
|
+
declare const RedsiftColorLightComponentsPillsErrorHoverBackground = "#E06363";
|
|
1516
|
+
declare const RedsiftColorLightComponentsPillsErrorHoverBorder = "transparent";
|
|
1517
|
+
declare const RedsiftColorLightComponentsPillsErrorHoverText = "#1c1c1c";
|
|
1518
|
+
declare const RedsiftColorLightComponentsPillsErrorDisabledBackground = "#F3A39E";
|
|
1519
|
+
declare const RedsiftColorLightComponentsPillsErrorDisabledBorder = "transparent";
|
|
1520
|
+
declare const RedsiftColorLightComponentsPillsErrorDisabledText = "#666666";
|
|
1521
|
+
declare const RedsiftColorLightComponentsPillsWarningDefaultBackground = "#FDE4C0";
|
|
1522
|
+
declare const RedsiftColorLightComponentsPillsWarningDefaultBorder = "transparent";
|
|
1523
|
+
declare const RedsiftColorLightComponentsPillsWarningDefaultText = "#1c1c1c";
|
|
1524
|
+
declare const RedsiftColorLightComponentsPillsWarningHoverBackground = "#FCBB54";
|
|
1525
|
+
declare const RedsiftColorLightComponentsPillsWarningHoverBorder = "transparent";
|
|
1526
|
+
declare const RedsiftColorLightComponentsPillsWarningHoverText = "#1c1c1c";
|
|
1527
|
+
declare const RedsiftColorLightComponentsPillsWarningDisabledBackground = "#F8D296";
|
|
1528
|
+
declare const RedsiftColorLightComponentsPillsWarningDisabledBorder = "transparent";
|
|
1529
|
+
declare const RedsiftColorLightComponentsPillsWarningDisabledText = "#666666";
|
|
1530
|
+
declare const RedsiftColorLightComponentsPillsSuccessDefaultBackground = "#C2EFD1";
|
|
1531
|
+
declare const RedsiftColorLightComponentsPillsSuccessDefaultBorder = "transparent";
|
|
1532
|
+
declare const RedsiftColorLightComponentsPillsSuccessDefaultText = "#1c1c1c";
|
|
1533
|
+
declare const RedsiftColorLightComponentsPillsSuccessHoverBackground = "#56D58E";
|
|
1534
|
+
declare const RedsiftColorLightComponentsPillsSuccessHoverBorder = "transparent";
|
|
1535
|
+
declare const RedsiftColorLightComponentsPillsSuccessHoverText = "#1c1c1c";
|
|
1536
|
+
declare const RedsiftColorLightComponentsPillsSuccessDisabledBackground = "#A2E7BA";
|
|
1537
|
+
declare const RedsiftColorLightComponentsPillsSuccessDisabledBorder = "transparent";
|
|
1538
|
+
declare const RedsiftColorLightComponentsPillsSuccessDisabledText = "#666666";
|
|
1539
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkDefaultBackground = "#E06363";
|
|
1540
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkDefaultBorder = "transparent";
|
|
1541
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkDefaultText = "#1c1c1c";
|
|
1542
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkHoverBackground = "#DE0000";
|
|
1543
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkHoverBorder = "transparent";
|
|
1544
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkHoverText = "#1c1c1c";
|
|
1545
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkDisabledBackground = "#F3A39E";
|
|
1546
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkDisabledBorder = "transparent";
|
|
1547
|
+
declare const RedsiftColorLightComponentsPillsErrorDarkDisabledText = "#666666";
|
|
1548
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkDefaultBackground = "#FCBB54";
|
|
1549
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkDefaultBorder = "transparent";
|
|
1550
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkDefaultText = "#1c1c1c";
|
|
1551
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkHoverBackground = "#ED9200";
|
|
1552
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkHoverBorder = "transparent";
|
|
1553
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkHoverText = "#1c1c1c";
|
|
1554
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkDisabledBackground = "#F8D296";
|
|
1555
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkDisabledBorder = "transparent";
|
|
1556
|
+
declare const RedsiftColorLightComponentsPillsWarningDarkDisabledText = "#666666";
|
|
1557
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkDefaultBackground = "#56D58E";
|
|
1558
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkDefaultBorder = "transparent";
|
|
1559
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkDefaultText = "#1c1c1c";
|
|
1560
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkHoverBackground = "#00CE59";
|
|
1561
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkHoverBorder = "transparent";
|
|
1562
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkHoverText = "#1c1c1c";
|
|
1563
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkDisabledBackground = "#A2E7BA";
|
|
1564
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkDisabledBorder = "transparent";
|
|
1565
|
+
declare const RedsiftColorLightComponentsPillsSuccessDarkDisabledText = "#666666";
|
|
1024
1566
|
declare const RedsiftColorRedL4 = "#f9cfcf";
|
|
1025
1567
|
declare const RedsiftColorRedL3 = "#f39f9f";
|
|
1026
1568
|
declare const RedsiftColorRedL2 = "#ed7070";
|
|
@@ -1098,6 +1640,7 @@ declare const RedsiftColorSecondaryD4 = "#102521";
|
|
|
1098
1640
|
declare const RedsiftColorNeutralWhite = "#ffffff";
|
|
1099
1641
|
declare const RedsiftColorNeutralXLightGrey = "#f2f2f2";
|
|
1100
1642
|
declare const RedsiftColorNeutralLightGrey = "#e0e0e0";
|
|
1643
|
+
declare const RedsiftColorNeutralDisabled = "#a3a3a3";
|
|
1101
1644
|
declare const RedsiftColorNeutralMidGrey = "#666666";
|
|
1102
1645
|
declare const RedsiftColorNeutralDarkGrey = "#474747";
|
|
1103
1646
|
declare const RedsiftColorNeutralXDarkGrey = "#333333";
|
|
@@ -1298,11 +1841,11 @@ declare const RedsiftTypographyBadgeLineHeight = "12px";
|
|
|
1298
1841
|
declare const RedsiftTypographyPillFontFamily = "'Poppins', sans-serif";
|
|
1299
1842
|
declare const RedsiftTypographyPillFontSize = "10px";
|
|
1300
1843
|
declare const RedsiftTypographyPillFontWeight = "400";
|
|
1301
|
-
declare const RedsiftTypographyPillLineHeight = "
|
|
1844
|
+
declare const RedsiftTypographyPillLineHeight = "20px";
|
|
1302
1845
|
declare const RedsiftTypographyChipFontFamily = "'Poppins', sans-serif";
|
|
1303
1846
|
declare const RedsiftTypographyChipFontSize = "12px";
|
|
1304
1847
|
declare const RedsiftTypographyChipFontWeight = "400";
|
|
1305
|
-
declare const RedsiftTypographyChipLineHeight = "
|
|
1848
|
+
declare const RedsiftTypographyChipLineHeight = "22px";
|
|
1306
1849
|
declare const RedsiftTypographyTooltipFontFamily = "'Poppins', sans-serif";
|
|
1307
1850
|
declare const RedsiftTypographyTooltipFontSize = "12px";
|
|
1308
1851
|
declare const RedsiftTypographyTooltipFontWeight = "400";
|
|
@@ -1369,7 +1912,11 @@ declare const AlertVariant: {
|
|
|
1369
1912
|
readonly info: "info";
|
|
1370
1913
|
};
|
|
1371
1914
|
type AlertVariant = ValueOf<typeof AlertVariant>;
|
|
1372
|
-
|
|
1915
|
+
declare const AlertStyleVariant: {
|
|
1916
|
+
readonly default: "default";
|
|
1917
|
+
readonly minimal: "minimal";
|
|
1918
|
+
};
|
|
1919
|
+
type AlertStyleVariant = ValueOf<typeof AlertStyleVariant>;
|
|
1373
1920
|
/**
|
|
1374
1921
|
* Component props.
|
|
1375
1922
|
*/
|
|
@@ -1843,6 +2390,8 @@ type AppContainerState = {
|
|
|
1843
2390
|
sidePanelVariant: AppSidePanelVariant;
|
|
1844
2391
|
/** Change side panel variant. */
|
|
1845
2392
|
setSidePanelVariant: Dispatch<SetStateAction<AppSidePanelVariant>>;
|
|
2393
|
+
/** AppContainer ref. */
|
|
2394
|
+
appContainerRef: RefObject<HTMLDivElement>;
|
|
1846
2395
|
};
|
|
1847
2396
|
/**
|
|
1848
2397
|
* Component props.
|
|
@@ -1865,6 +2414,7 @@ type StyledAppContainerProps = Omit<AppContainerProps, 'locale' | 'product'> & {
|
|
|
1865
2414
|
|
|
1866
2415
|
declare const AppContainerContext: React$1.Context<AppContainerState | null>;
|
|
1867
2416
|
|
|
2417
|
+
declare const RadarSvgLinearGradient: React$1.FC;
|
|
1868
2418
|
/**
|
|
1869
2419
|
* The AppContainer component.
|
|
1870
2420
|
*/
|
|
@@ -1962,7 +2512,7 @@ type ButtonColor = ButtonsColorPalette;
|
|
|
1962
2512
|
* Component props.
|
|
1963
2513
|
*/
|
|
1964
2514
|
interface ButtonProps extends ComponentProps<'button'>, StylingProps {
|
|
1965
|
-
/** Color variant.
|
|
2515
|
+
/** Color variant. */
|
|
1966
2516
|
color?: ButtonColor;
|
|
1967
2517
|
/** Whether the component take the full width or not. */
|
|
1968
2518
|
fullWidth?: boolean;
|
|
@@ -1998,6 +2548,7 @@ type StyledButtonProps = ButtonProps & {
|
|
|
1998
2548
|
$fullWidth?: ButtonProps['fullWidth'];
|
|
1999
2549
|
$isActive: ButtonProps['isActive'];
|
|
2000
2550
|
$isDisabled: ButtonProps['isDisabled'];
|
|
2551
|
+
$isGradient: boolean;
|
|
2001
2552
|
$isHovered: ButtonProps['isHovered'];
|
|
2002
2553
|
$isLoading: ButtonProps['isLoading'];
|
|
2003
2554
|
$theme: ButtonProps['theme'];
|
|
@@ -2012,6 +2563,7 @@ declare const StyledButton: styled_components.StyledComponent<"button", any, But
|
|
|
2012
2563
|
$fullWidth?: boolean | undefined;
|
|
2013
2564
|
$isActive: boolean | undefined;
|
|
2014
2565
|
$isDisabled: boolean | undefined;
|
|
2566
|
+
$isGradient: boolean;
|
|
2015
2567
|
$isHovered: boolean | undefined;
|
|
2016
2568
|
$isLoading: boolean | undefined;
|
|
2017
2569
|
$theme: Theme | undefined;
|
|
@@ -2064,11 +2616,12 @@ declare const Link: Comp<LinkProps, HTMLAnchorElement>;
|
|
|
2064
2616
|
/**
|
|
2065
2617
|
* Component props.
|
|
2066
2618
|
*/
|
|
2067
|
-
interface ButtonLinkProps extends Omit<LinkProps, 'color'>, Pick<ButtonProps, 'color' | 'isActive' | 'isDisabled' | 'leftIcon' | 'rightIcon' | 'variant' | 'theme'> {
|
|
2619
|
+
interface ButtonLinkProps extends Omit<LinkProps, 'color'>, Pick<ButtonProps, 'color' | 'isActive' | 'isDisabled' | 'isHovered' | 'leftIcon' | 'rightIcon' | 'variant' | 'theme'> {
|
|
2068
2620
|
}
|
|
2069
|
-
type StyledButtonLinkProps =
|
|
2621
|
+
type StyledButtonLinkProps = ButtonLinkProps & {
|
|
2070
2622
|
$isActive: ButtonLinkProps['isActive'];
|
|
2071
2623
|
$isDisabled: ButtonLinkProps['isDisabled'];
|
|
2624
|
+
$isHovered: ButtonLinkProps['isHovered'];
|
|
2072
2625
|
$variant: ButtonLinkProps['variant'];
|
|
2073
2626
|
$theme: ButtonLinkProps['theme'];
|
|
2074
2627
|
$color: ButtonLinkProps['color'];
|
|
@@ -2154,6 +2707,16 @@ type HeadingComponent = ValueOf<typeof HeadingComponent>;
|
|
|
2154
2707
|
interface HeadingProps extends ComponentProps<'span'>, StylingProps {
|
|
2155
2708
|
/** The actual component rendered in the DOM. */
|
|
2156
2709
|
as: HeadingComponent;
|
|
2710
|
+
/** Color variant. Either from color palette or hex or rgb strings. */
|
|
2711
|
+
color?: NotificationsColorPalette | NeutralColorPalette | (string & {});
|
|
2712
|
+
/** Font family. */
|
|
2713
|
+
fontFamily?: FontFamily;
|
|
2714
|
+
/** Font size. */
|
|
2715
|
+
fontSize?: string;
|
|
2716
|
+
/** Font weight. */
|
|
2717
|
+
fontWeight?: string;
|
|
2718
|
+
/** Line height. */
|
|
2719
|
+
lineHeight?: string;
|
|
2157
2720
|
/** Whether the text will truncate with a text overflow ellipsis or wrap. */
|
|
2158
2721
|
noWrap?: boolean;
|
|
2159
2722
|
/** Theme. */
|
|
@@ -2162,9 +2725,14 @@ interface HeadingProps extends ComponentProps<'span'>, StylingProps {
|
|
|
2162
2725
|
variant?: HeadingVariant;
|
|
2163
2726
|
}
|
|
2164
2727
|
type StyledHeadingProps = Omit<HeadingProps, 'color' | 'noWrap'> & {
|
|
2728
|
+
$color: HeadingProps['color'];
|
|
2729
|
+
$fontFamily?: HeadingProps['fontFamily'];
|
|
2730
|
+
$fontSize: HeadingProps['fontSize'];
|
|
2731
|
+
$fontWeight: HeadingProps['fontWeight'];
|
|
2732
|
+
$lineHeight: HeadingProps['lineHeight'];
|
|
2165
2733
|
$noWrap: HeadingProps['noWrap'];
|
|
2166
|
-
$variant: HeadingProps['variant'];
|
|
2167
2734
|
$theme: HeadingProps['theme'];
|
|
2735
|
+
$variant: HeadingProps['variant'];
|
|
2168
2736
|
};
|
|
2169
2737
|
|
|
2170
2738
|
/**
|
|
@@ -2439,6 +3007,7 @@ type StyledDetailedCardProps = Omit<DetailedCardProps, 'color'> & {
|
|
|
2439
3007
|
declare const PillSize: {
|
|
2440
3008
|
readonly small: "small";
|
|
2441
3009
|
readonly large: "large";
|
|
3010
|
+
readonly xlarge: "xlarge";
|
|
2442
3011
|
};
|
|
2443
3012
|
type PillSize = ValueOf<typeof PillSize>;
|
|
2444
3013
|
/**
|
|
@@ -2447,14 +3016,16 @@ type PillSize = ValueOf<typeof PillSize>;
|
|
|
2447
3016
|
interface PillProps extends ComponentProps<'div'>, StylingProps {
|
|
2448
3017
|
/** Whether the badge should automatically break content. */
|
|
2449
3018
|
autoBreak?: boolean;
|
|
2450
|
-
/**
|
|
2451
|
-
|
|
2452
|
-
/** Event on click on right button. */
|
|
2453
|
-
onRightButtonClick?: (event: SyntheticEvent) => void;
|
|
3019
|
+
/** Color to use for border. */
|
|
3020
|
+
borderColor?: string;
|
|
2454
3021
|
/** Color variant. The product colors are available but should only be used to display the Pill in the color of another product. To display a Pill with a color of the current product, use `default`. */
|
|
2455
3022
|
color?: PresentationColorPalette | NeutralColorPalette | 'error' | 'warning' | 'success' | 'error-dark' | 'warning-dark' | 'success-dark' | (string & {});
|
|
3023
|
+
/** Color to use when disabled. */
|
|
3024
|
+
disabledColor?: string;
|
|
2456
3025
|
/** Color to use on hover. */
|
|
2457
3026
|
hoverColor?: string;
|
|
3027
|
+
/** Whether the Pill is disabled or not. */
|
|
3028
|
+
isDisabled?: boolean;
|
|
2458
3029
|
/** Size of the Pill. */
|
|
2459
3030
|
size?: PillSize;
|
|
2460
3031
|
/** Theme. */
|
|
@@ -2462,8 +3033,11 @@ interface PillProps extends ComponentProps<'div'>, StylingProps {
|
|
|
2462
3033
|
}
|
|
2463
3034
|
type StyledPillProps = Omit<PillProps, 'color' | 'autoBreak'> & {
|
|
2464
3035
|
$autoBreak: PillProps['autoBreak'];
|
|
3036
|
+
$borderColor: PillProps['borderColor'];
|
|
2465
3037
|
$color: PillProps['color'];
|
|
3038
|
+
$disabledColor: PillProps['disabledColor'];
|
|
2466
3039
|
$hoverColor: PillProps['hoverColor'];
|
|
3040
|
+
$isDisabled: PillProps['isDisabled'];
|
|
2467
3041
|
$size: PillProps['size'];
|
|
2468
3042
|
$theme: PillProps['theme'];
|
|
2469
3043
|
};
|
|
@@ -2652,7 +3226,9 @@ declare const DetailedCard: Comp<DetailedCardProps, HTMLDivElement> & {
|
|
|
2652
3226
|
/**
|
|
2653
3227
|
* Component props.
|
|
2654
3228
|
*/
|
|
2655
|
-
interface FlexboxProps extends ComponentProps<'div'>, StylingProps, InternalSpacingProps, FlexLayoutProps {
|
|
3229
|
+
interface FlexboxProps extends ComponentProps<'div'>, StylingProps, InternalSpacingProps, FlexLayoutProps, BorderProps {
|
|
3230
|
+
/** Used to use a different tag in lieu of a div. */
|
|
3231
|
+
as?: any;
|
|
2656
3232
|
/** Whether the flexbox has internal divider or not. The number of pixels defining the gap between columns and rows is mandatory. This replaces the gap property. */
|
|
2657
3233
|
divider?: {
|
|
2658
3234
|
colGap: number;
|
|
@@ -2890,10 +3466,20 @@ declare function useFocusOnListItem(props: {
|
|
|
2890
3466
|
|
|
2891
3467
|
declare function useFocusOnList(): UseFocusGroupProps;
|
|
2892
3468
|
|
|
3469
|
+
declare const StyledGradientBorder: styled_components.StyledComponent<"div", any, {
|
|
3470
|
+
$borderRadius?: string | undefined;
|
|
3471
|
+
$color?: ButtonProps['color'];
|
|
3472
|
+
$isActive?: ButtonProps['isActive'];
|
|
3473
|
+
$isDisabled?: ButtonProps['isDisabled'];
|
|
3474
|
+
$isHovered?: ButtonProps['isHovered'];
|
|
3475
|
+
$theme?: ButtonProps['theme'];
|
|
3476
|
+
width?: string | undefined;
|
|
3477
|
+
}, never>;
|
|
3478
|
+
|
|
2893
3479
|
/**
|
|
2894
3480
|
* Component props.
|
|
2895
3481
|
*/
|
|
2896
|
-
interface GridProps extends ComponentProps<'div'>, StylingProps, InternalSpacingProps, GridLayoutProps {
|
|
3482
|
+
interface GridProps extends ComponentProps<'div'>, StylingProps, InternalSpacingProps, GridLayoutProps, BorderProps {
|
|
2897
3483
|
/** Whether the grid has divider or not. The number of pixels defining the gap between columns and rows is mandatory. This replaces the grid gap property. */
|
|
2898
3484
|
divider?: {
|
|
2899
3485
|
colGap: number;
|
|
@@ -2910,7 +3496,7 @@ type StyledGridProps = GridProps & {
|
|
|
2910
3496
|
/**
|
|
2911
3497
|
* Component props.
|
|
2912
3498
|
*/
|
|
2913
|
-
interface GridItemProps extends ComponentProps<'div'>, StylingProps, InternalSpacingProps {
|
|
3499
|
+
interface GridItemProps extends ComponentProps<'div'>, StylingProps, InternalSpacingProps, BorderProps {
|
|
2914
3500
|
}
|
|
2915
3501
|
type StyledGridItemProps = GridItemProps;
|
|
2916
3502
|
|
|
@@ -2927,6 +3513,29 @@ declare const Grid: Comp<GridProps, HTMLDivElement> & {
|
|
|
2927
3513
|
Item: Comp<GridItemProps, HTMLDivElement>;
|
|
2928
3514
|
};
|
|
2929
3515
|
|
|
3516
|
+
/**
|
|
3517
|
+
* Component props.
|
|
3518
|
+
*/
|
|
3519
|
+
interface IconButtonLinkProps extends Omit<LinkProps, 'color'>, Pick<IconButtonProps, 'icon' | 'iconProps' | 'color' | 'isActive' | 'isDisabled' | 'isHovered' | 'variant' | 'theme'> {
|
|
3520
|
+
}
|
|
3521
|
+
type StyledIconButtonLinkProps = Omit<IconButtonLinkProps, 'isActive' | 'isDisabled' | 'variant' | 'color' | 'size'> & {
|
|
3522
|
+
$isActive: IconButtonLinkProps['isActive'];
|
|
3523
|
+
$isDisabled: IconButtonLinkProps['isDisabled'];
|
|
3524
|
+
$isHovered: IconButtonLinkProps['isHovered'];
|
|
3525
|
+
$variant: IconButtonLinkProps['variant'];
|
|
3526
|
+
$theme: IconButtonLinkProps['theme'];
|
|
3527
|
+
$color: IconButtonLinkProps['color'];
|
|
3528
|
+
};
|
|
3529
|
+
|
|
3530
|
+
/**
|
|
3531
|
+
* The IconButtonLink is a semantic link that looks like an icon button.
|
|
3532
|
+
*
|
|
3533
|
+
* For a semantic button that looks like an icon button, please use the IconButton component.
|
|
3534
|
+
* For a semantic link that looks like a link, please use the Link component.
|
|
3535
|
+
* For a semantic button that looks like a link, please use the LinkButton component.
|
|
3536
|
+
*/
|
|
3537
|
+
declare const IconButtonLink: Comp<IconButtonLinkProps, HTMLAnchorElement>;
|
|
3538
|
+
|
|
2930
3539
|
/**
|
|
2931
3540
|
* Component variant.
|
|
2932
3541
|
*/
|
|
@@ -3049,10 +3658,18 @@ declare function useListboxItem(props: {
|
|
|
3049
3658
|
propsIsSelected?: boolean;
|
|
3050
3659
|
}): UseListboxItemProps;
|
|
3051
3660
|
|
|
3661
|
+
/**
|
|
3662
|
+
* Component color.
|
|
3663
|
+
*/
|
|
3664
|
+
type ItemColor = ButtonsColorPalette;
|
|
3052
3665
|
/**
|
|
3053
3666
|
* Component props.
|
|
3054
3667
|
*/
|
|
3055
|
-
interface ItemProps extends Omit<ComponentProps<
|
|
3668
|
+
interface ItemProps extends Omit<ComponentProps<any>, 'onClick'>, ContainerProps {
|
|
3669
|
+
/** Border radius, only if hasBorder is true. */
|
|
3670
|
+
borderRadius?: string;
|
|
3671
|
+
/** Color variant. */
|
|
3672
|
+
color?: ItemColor;
|
|
3056
3673
|
/**
|
|
3057
3674
|
* Default select status.
|
|
3058
3675
|
* Used for uncontrolled version.
|
|
@@ -3066,6 +3683,8 @@ interface ItemProps extends Omit<ComponentProps<'div'>, 'onClick'>, ContainerPro
|
|
|
3066
3683
|
isFocused?: boolean;
|
|
3067
3684
|
/** Whether the component is hovered or not. */
|
|
3068
3685
|
isHovered?: boolean;
|
|
3686
|
+
/** Whether the Item has borders or not. */
|
|
3687
|
+
hasBorder?: boolean;
|
|
3069
3688
|
/** Whether the Item is selectable within a group of multiple selectable Items. */
|
|
3070
3689
|
hasCheckbox?: boolean;
|
|
3071
3690
|
/**
|
|
@@ -3074,19 +3693,21 @@ interface ItemProps extends Omit<ComponentProps<'div'>, 'onClick'>, ContainerPro
|
|
|
3074
3693
|
*/
|
|
3075
3694
|
isSelected?: boolean;
|
|
3076
3695
|
/** Method to handle component change. */
|
|
3077
|
-
onClick?: (isSelected: boolean, value?: string, event?: MouseEvent<
|
|
3696
|
+
onClick?: (isSelected: boolean, value?: string, event?: MouseEvent<HTMLElement>, state?: ListboxContextProps) => void | ComponentProps<'div'>['onClick'];
|
|
3078
3697
|
/** Theme. */
|
|
3079
3698
|
theme?: Theme;
|
|
3080
3699
|
/** Value. */
|
|
3081
3700
|
value?: string;
|
|
3082
3701
|
}
|
|
3083
3702
|
type StyledItemProps = Omit<ItemProps, 'color' | 'onClick' | 'value'> & {
|
|
3703
|
+
$borderRadius: ItemProps['borderRadius'];
|
|
3704
|
+
$color: ItemProps['color'];
|
|
3705
|
+
$hasBorder: ItemProps['hasBorder'];
|
|
3706
|
+
$hasCheckbox: ItemProps['hasCheckbox'];
|
|
3084
3707
|
$isActive: ItemProps['isActive'];
|
|
3085
3708
|
$isDisabled: ItemProps['isDisabled'];
|
|
3086
|
-
$
|
|
3709
|
+
$isGradient: boolean;
|
|
3087
3710
|
$isHovered: ItemProps['isHovered'];
|
|
3088
|
-
$isSelected: ItemProps['isSelected'];
|
|
3089
|
-
$hasCheckbox: ItemProps['hasCheckbox'];
|
|
3090
3711
|
$theme: ItemProps['theme'];
|
|
3091
3712
|
};
|
|
3092
3713
|
|
|
@@ -3094,19 +3715,21 @@ type StyledItemProps = Omit<ItemProps, 'color' | 'onClick' | 'value'> & {
|
|
|
3094
3715
|
* Component style.
|
|
3095
3716
|
*/
|
|
3096
3717
|
declare const StyledItem: styled_components.StyledComponent<"div", any, Omit<ItemProps, "color" | "onClick" | "value"> & {
|
|
3718
|
+
$borderRadius: string | undefined;
|
|
3719
|
+
$color: string | undefined;
|
|
3720
|
+
$hasBorder: boolean | undefined;
|
|
3721
|
+
$hasCheckbox: boolean | undefined;
|
|
3097
3722
|
$isActive: boolean | undefined;
|
|
3098
3723
|
$isDisabled: boolean | undefined;
|
|
3099
|
-
$
|
|
3724
|
+
$isGradient: boolean;
|
|
3100
3725
|
$isHovered: boolean | undefined;
|
|
3101
|
-
$isSelected: boolean | undefined;
|
|
3102
|
-
$hasCheckbox: boolean | undefined;
|
|
3103
3726
|
$theme: Theme | undefined;
|
|
3104
3727
|
}, never>;
|
|
3105
3728
|
|
|
3106
3729
|
/**
|
|
3107
3730
|
* The Item component.
|
|
3108
3731
|
*/
|
|
3109
|
-
declare const Item: Comp<ItemProps,
|
|
3732
|
+
declare const Item: Comp<ItemProps, HTMLElement>;
|
|
3110
3733
|
|
|
3111
3734
|
/**
|
|
3112
3735
|
* Component props.
|
|
@@ -3131,7 +3754,7 @@ interface NumberFormatOptions$1 {
|
|
|
3131
3754
|
/**
|
|
3132
3755
|
* Component props.
|
|
3133
3756
|
*/
|
|
3134
|
-
interface NumberProps extends
|
|
3757
|
+
interface NumberProps extends TextProps {
|
|
3135
3758
|
/** Value. */
|
|
3136
3759
|
value: number;
|
|
3137
3760
|
/** The formatting style to use. */
|
|
@@ -3179,7 +3802,9 @@ interface NumberProps extends Omit<TextProps, 'fontFamily'> {
|
|
|
3179
3802
|
}
|
|
3180
3803
|
type StyledNumberProps = Omit<NumberProps, 'as' | 'color' | 'fontFamily' | 'fontSize' | 'value' | 'variant'> & {
|
|
3181
3804
|
$color: NumberProps['color'];
|
|
3805
|
+
$fontFamily: NumberProps['fontFamily'];
|
|
3182
3806
|
$fontSize: NumberProps['fontSize'];
|
|
3807
|
+
$fontWeight: NumberProps['fontWeight'];
|
|
3183
3808
|
$variant: NumberProps['variant'];
|
|
3184
3809
|
$theme: NumberProps['theme'];
|
|
3185
3810
|
};
|
|
@@ -3197,12 +3822,20 @@ declare const TextFieldVariant: {
|
|
|
3197
3822
|
readonly underline: "underline";
|
|
3198
3823
|
};
|
|
3199
3824
|
type TextFieldVariant = ValueOf<typeof TextFieldVariant>;
|
|
3825
|
+
/**
|
|
3826
|
+
* Component color.
|
|
3827
|
+
*/
|
|
3828
|
+
type TextFieldColor = ButtonsColorPalette;
|
|
3200
3829
|
/**
|
|
3201
3830
|
* Component props.
|
|
3202
3831
|
*/
|
|
3203
3832
|
interface TextFieldProps extends Omit<ComponentProps<'div'>, 'onChange'>, StylingProps {
|
|
3204
3833
|
/** Whether the component can be autofocused. */
|
|
3205
3834
|
autoFocus?: boolean;
|
|
3835
|
+
/** Color variant. */
|
|
3836
|
+
color?: TextFieldColor;
|
|
3837
|
+
/** Force color even when not focused. */
|
|
3838
|
+
forceColor?: boolean;
|
|
3206
3839
|
/**
|
|
3207
3840
|
* Default value.
|
|
3208
3841
|
* Used for uncontrolled version.
|
|
@@ -3218,7 +3851,7 @@ interface TextFieldProps extends Omit<ComponentProps<'div'>, 'onChange'>, Stylin
|
|
|
3218
3851
|
inputProps?: ComponentProps<'input'>;
|
|
3219
3852
|
/** Custom ref object to pass to the input element. */
|
|
3220
3853
|
inputRef?: MutableRefObject<HTMLInputElement>;
|
|
3221
|
-
/** Whether the component should use the product colors or shades of grey. */
|
|
3854
|
+
/** @deprecated Whether the component should use the product colors or shades of grey. */
|
|
3222
3855
|
isColored?: boolean;
|
|
3223
3856
|
/** Whether the component is disabled or not. */
|
|
3224
3857
|
isDisabled?: boolean;
|
|
@@ -3242,12 +3875,7 @@ interface TextFieldProps extends Omit<ComponentProps<'div'>, 'onChange'>, Stylin
|
|
|
3242
3875
|
/** Method to handle component clear. */
|
|
3243
3876
|
onClear?(): void;
|
|
3244
3877
|
/** List of Pills. */
|
|
3245
|
-
pills?:
|
|
3246
|
-
label: string;
|
|
3247
|
-
value: string;
|
|
3248
|
-
onClick?: (label: string, value: string, event: SyntheticEvent) => void;
|
|
3249
|
-
props?: Omit<PillProps, 'ref' | 'onClick'>;
|
|
3250
|
-
}[];
|
|
3878
|
+
pills?: Omit<PillProps, 'ref'>[];
|
|
3251
3879
|
/** Placeholder. */
|
|
3252
3880
|
placeholder?: string;
|
|
3253
3881
|
/** Theme. */
|
|
@@ -3263,9 +3891,10 @@ interface TextFieldProps extends Omit<ComponentProps<'div'>, 'onChange'>, Stylin
|
|
|
3263
3891
|
variant?: TextFieldVariant;
|
|
3264
3892
|
}
|
|
3265
3893
|
type StyledTextFieldProps = Omit<TextFieldProps, 'color' | 'isColored' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'onChange'> & {
|
|
3894
|
+
$color: TextFieldProps['color'];
|
|
3895
|
+
$isGradient: boolean;
|
|
3266
3896
|
$hasLeftIcon: boolean;
|
|
3267
3897
|
$hasContent: boolean;
|
|
3268
|
-
$isColored: TextFieldProps['isColored'];
|
|
3269
3898
|
$isDisabled: TextFieldProps['isDisabled'];
|
|
3270
3899
|
$isInvalid: TextFieldProps['isInvalid'];
|
|
3271
3900
|
$isFocused: boolean;
|
|
@@ -3279,9 +3908,10 @@ type StyledTextFieldProps = Omit<TextFieldProps, 'color' | 'isColored' | 'isDisa
|
|
|
3279
3908
|
* Component style.
|
|
3280
3909
|
*/
|
|
3281
3910
|
declare const StyledTextField: styled_components.StyledComponent<"div", any, Omit<TextFieldProps, "color" | "onChange" | "isInvalid" | "isRequired" | "isDisabled" | "isColored"> & {
|
|
3911
|
+
$color: string | undefined;
|
|
3912
|
+
$isGradient: boolean;
|
|
3282
3913
|
$hasLeftIcon: boolean;
|
|
3283
3914
|
$hasContent: boolean;
|
|
3284
|
-
$isColored: boolean | undefined;
|
|
3285
3915
|
$isDisabled: boolean | undefined;
|
|
3286
3916
|
$isInvalid: boolean | undefined;
|
|
3287
3917
|
$isFocused: boolean;
|
|
@@ -3525,6 +4155,7 @@ declare const baseSpacing: styled_components.FlattenInterpolation<styled_compone
|
|
|
3525
4155
|
declare const baseInternalSpacing: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<InternalSpacingProps, any>>;
|
|
3526
4156
|
declare const baseSizing: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<SizingProps, any>>;
|
|
3527
4157
|
declare const basePositioning: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<PositioningProps, any>>;
|
|
4158
|
+
declare const baseBorder: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<BorderProps, any>>;
|
|
3528
4159
|
declare const baseFlexbox: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<FlexLayoutProps, any>>;
|
|
3529
4160
|
declare const baseGrid: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<GridLayoutProps, any>>;
|
|
3530
4161
|
declare const baseStyling: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<StylingProps, any>>;
|
|
@@ -3623,7 +4254,9 @@ interface SpinnerProps extends Omit<ComponentProps<'img'>, 'color'>, LayoutProps
|
|
|
3623
4254
|
'aria-hidden'?: boolean | 'false' | 'true';
|
|
3624
4255
|
/** A screen reader only label for the Spinner. */
|
|
3625
4256
|
'aria-label'?: string;
|
|
3626
|
-
/**
|
|
4257
|
+
/** Color variant. */
|
|
4258
|
+
color?: 'primary' | 'grey-l1' | 'grey-l2' | 'grey-l3';
|
|
4259
|
+
/** @deprecated: Whether the spinner is colored or not. */
|
|
3627
4260
|
isColored?: boolean;
|
|
3628
4261
|
/** Spinner size. */
|
|
3629
4262
|
size?: SpinnerSize;
|
|
@@ -3782,7 +4415,7 @@ type TextAreaVariant = ValueOf<typeof TextAreaVariant>;
|
|
|
3782
4415
|
/**
|
|
3783
4416
|
* Component props.
|
|
3784
4417
|
*/
|
|
3785
|
-
interface TextAreaProps extends Omit<TextFieldProps, 'onChange' | 'inputRef' | 'inputProps' | 'pills' | '
|
|
4418
|
+
interface TextAreaProps extends Omit<TextFieldProps, 'onChange' | 'inputRef' | 'inputProps' | 'pills' | 'internal' | 'hasClearButton' | 'onClear'> {
|
|
3786
4419
|
/** Custom ref object to pass to the textarea element. */
|
|
3787
4420
|
textareaRef?: MutableRefObject<HTMLTextAreaElement>;
|
|
3788
4421
|
/** Custom props to pass to the textarea element. */
|
|
@@ -3933,6 +4566,22 @@ interface NumberFormatOptions extends Intl.NumberFormatOptions {
|
|
|
3933
4566
|
*/
|
|
3934
4567
|
declare function useNumberFormatter(options?: NumberFormatOptions): Intl.NumberFormat;
|
|
3935
4568
|
|
|
4569
|
+
type LocalizedStrings = {
|
|
4570
|
+
[lang: string]: {
|
|
4571
|
+
[key: string]: string;
|
|
4572
|
+
};
|
|
4573
|
+
};
|
|
4574
|
+
|
|
4575
|
+
type FormatMessage = (key: string, variables?: {
|
|
4576
|
+
[key: string]: any;
|
|
4577
|
+
}) => string;
|
|
4578
|
+
/**
|
|
4579
|
+
* Handles formatting ICU Message strings to create localized strings for the current locale.
|
|
4580
|
+
* Automatically updates when the locale changes, and handles caching of messages for performance.
|
|
4581
|
+
* @param strings - A mapping of languages to strings by key.
|
|
4582
|
+
*/
|
|
4583
|
+
declare function useMessageFormatter(strings: LocalizedStrings): FormatMessage;
|
|
4584
|
+
|
|
3936
4585
|
/**
|
|
3937
4586
|
* Provides localized string collation for the current locale. Automatically updates when the locale changes,
|
|
3938
4587
|
* and handles caching of the collator for performance.
|
|
@@ -3954,12 +4603,6 @@ interface Filter {
|
|
|
3954
4603
|
*/
|
|
3955
4604
|
declare function useFilter(options?: Intl.CollatorOptions): Filter;
|
|
3956
4605
|
|
|
3957
|
-
type LocalizedStrings = {
|
|
3958
|
-
[lang: string]: {
|
|
3959
|
-
[key: string]: string;
|
|
3960
|
-
};
|
|
3961
|
-
};
|
|
3962
|
-
|
|
3963
4606
|
interface SSRProviderProps {
|
|
3964
4607
|
/** Your application here. */
|
|
3965
4608
|
children: ReactNode;
|
|
@@ -3979,4 +4622,4 @@ declare const useSSRSafeId: typeof useModernSSRSafeId;
|
|
|
3979
4622
|
*/
|
|
3980
4623
|
declare function useIsSSR(): boolean;
|
|
3981
4624
|
|
|
3982
|
-
export { ActiveDescendantListbox, Alert, AlertProps, AlertStyleVariant, AlertVariant, AlignContent, AlignItems, AlignSelf, AppBar, AppBarProps, AppContainer, AppContainerContext, AppContainerProps, AppContainerState, AppContent, AppContentProps, AppSidePanel, AppSidePanelProps, AppSidePanelVariant, Badge, BadgeProps, BadgeVariant, BaseBreadcrumbs, BaseFocusWithinGroupAction, BaseGrid, BaseSkeleton, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonColor, ButtonGroup, ButtonGroupColor, ButtonGroupProps, ButtonGroupVariant, ButtonLink, ButtonLinkProps, ButtonProps, ButtonVariant, ButtonsColorPalette, Card, CardActions, CardActionsProps, CardBody, CardBodyProps, CardHeader, CardHeaderProps, CardProps, Checkbox, CheckboxGroup, CheckboxGroupOrientation, CheckboxGroupProps, CheckboxGroupState, CheckboxProps, ColorPalette, Comp, ConditionalWrapper, ConditionalWrapperProps, ContainerProps, DateFormatter, DateFormatterOptions, DetailedCard, DetailedCardCollapsibleSectionItems, DetailedCardCollapsibleSectionItemsProps, DetailedCardHeader, DetailedCardHeaderProps, DetailedCardProps, DetailedCardSection, DetailedCardSectionItem, DetailedCardSectionItemProps, DetailedCardSectionProps, EventKey, FOCUS_WITHING_GROUP_INITIAL_STATE, Falsy, Filter, FlexDirection, FlexLayoutProps, FlexWrap, Flexbox, FlexboxProps, FocusWithinGroup, FocusWithinGroupAction, FocusWithinGroupActionType, FocusWithinGroupContext, FocusWithinGroupContextProps, FocusWithinGroupOptions, FocusWithinGroupProps, FocusWithinGroupReducer, FocusWithinGroupState, FontFamily, Grid, GridItem, GridItemProps, GridLayoutProps, GridProps, Heading, HeadingComponent, HeadingProps, HeadingVariant, I18nProvider, I18nProviderProps, Icon, IconButton, IconButtonColor, IconButtonProps, IconButtonVariant, IconDimensions, IconProps, IconSize, InternalSpacingProps, Item, ItemProps, JustifyContent, JustifyItems, JustifySelf, KeyDirection, LISTBOX_INITIAL_STATE, LayoutProps, Link, LinkButton, LinkButtonProps, LinkProps, Listbox, ListboxAction, ListboxActionType, ListboxContext, ListboxContextProps, ListboxProps, ListboxReducer, ListboxSelectionMode, ListboxState, ListboxVariant, Locale, LocalizedStringFormatter, LocalizedStrings, Menu, MenuBarItems, MenuItem, Navigation, NeutralColorPalette, NotificationsColorPalette, Number, NumberField, NumberFieldProps, NumberFieldVariant, NumberFormatOptions$1 as NumberFormatOptions, NumberProps, Pill, PillProps, PillSize, PositioningProps, PresentationColorPalette, PrimaryButtonsColorPalette, PrimaryColorPalette, Product, ProductColorPalette, ProductLogo, ProductName, ProgressBar, ProgressBarProps, Radio, RadioGroup, RadioGroupOrientation, RadioGroupProps, RadioGroupState, RadioProps, RedsiftBorderRadius, RedsiftColorBlueD1, RedsiftColorBlueD2, RedsiftColorBlueD3, RedsiftColorBlueD4, RedsiftColorBlueL1, RedsiftColorBlueL2, RedsiftColorBlueL3, RedsiftColorBlueL4, RedsiftColorBlueN, RedsiftColorBordersBorderDefault, RedsiftColorBordersBorderDisabled, RedsiftColorBordersBorderDivider, RedsiftColorBordersBorderError, RedsiftColorBordersBorderPrimary, RedsiftColorBordersBorderSecondary, RedsiftColorBordersBorderSuccess, RedsiftColorDarkComponentsAiAiBorder, RedsiftColorDarkComponentsAiAiIcon, RedsiftColorDarkComponentsAlertErrorBackground, RedsiftColorDarkComponentsAlertErrorBorder, RedsiftColorDarkComponentsAlertErrorIcon, RedsiftColorDarkComponentsAlertInfoBackground, RedsiftColorDarkComponentsAlertInfoBorder, RedsiftColorDarkComponentsAlertInfoIcon, RedsiftColorDarkComponentsAlertSuccessBackground, RedsiftColorDarkComponentsAlertSuccessBorder, RedsiftColorDarkComponentsAlertSuccessIcon, RedsiftColorDarkComponentsAlertText, RedsiftColorDarkComponentsAlertWarningBackground, RedsiftColorDarkComponentsAlertWarningBorder, RedsiftColorDarkComponentsAlertWarningIcon, RedsiftColorDarkComponentsAppBarBackground, RedsiftColorDarkComponentsAppBarBorder, RedsiftColorDarkComponentsAppBarBreadcrumbDefault, RedsiftColorDarkComponentsAppBarBreadcrumbDown, RedsiftColorDarkComponentsAppBarBreadcrumbHover, RedsiftColorDarkComponentsAppBarIconBackgroundActive, RedsiftColorDarkComponentsAppBarIconBackgroundActiveDown, RedsiftColorDarkComponentsAppBarIconBackgroundActiveHover, RedsiftColorDarkComponentsAppBarIconBackgroundDown, RedsiftColorDarkComponentsAppBarIconBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextHover, RedsiftColorDarkComponentsCheckboxFillDefault, RedsiftColorDarkComponentsCheckboxFillDefaultHover, RedsiftColorDarkComponentsCheckboxFillDisabled, RedsiftColorDarkComponentsCheckboxFillInvalid, RedsiftColorDarkComponentsCheckboxFillInvalidHover, RedsiftColorDarkComponentsCheckboxFillUncolored, RedsiftColorDarkComponentsCheckboxFillUncoloredHover, RedsiftColorDarkComponentsCheckboxTextDefault, RedsiftColorDarkComponentsCheckboxTextDisabled, RedsiftColorDarkComponentsCheckboxTextInvalid, RedsiftColorDarkComponentsDropdownsAndMenusClickBackground, RedsiftColorDarkComponentsDropdownsAndMenusClickText, RedsiftColorDarkComponentsDropdownsAndMenusDefaultBackground, RedsiftColorDarkComponentsDropdownsAndMenusDefaultText, RedsiftColorDarkComponentsDropdownsAndMenusDividers, RedsiftColorDarkComponentsDropdownsAndMenusHoverBackground, RedsiftColorDarkComponentsDropdownsAndMenusHoverText, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveBackground, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveClickBackground, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveClickText, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveHoverBackground, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveHoverText, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveText, RedsiftColorDarkComponentsIconsDefault, RedsiftColorDarkComponentsModalBackground, RedsiftColorDarkComponentsPageBackground, RedsiftColorDarkComponentsProductLogosIconGrey, RedsiftColorDarkComponentsProductLogosIconRed, RedsiftColorDarkComponentsProductLogosTextGrey, RedsiftColorDarkComponentsProductLogosTextRed, RedsiftColorDarkComponentsProductLogosTextWhite, RedsiftColorDarkComponentsRadioFillDefault, RedsiftColorDarkComponentsRadioFillDefaultHover, RedsiftColorDarkComponentsRadioFillDisabled, RedsiftColorDarkComponentsRadioFillInvalid, RedsiftColorDarkComponentsRadioFillInvalidHover, RedsiftColorDarkComponentsRadioFillUncolored, RedsiftColorDarkComponentsRadioFillUncoloredHover, RedsiftColorDarkComponentsRadioTextDefault, RedsiftColorDarkComponentsRadioTextDisabled, RedsiftColorDarkComponentsRadioTextInvalid, RedsiftColorDarkComponentsRedSiftLogoDiamondBottomLeft, RedsiftColorDarkComponentsRedSiftLogoDiamondBottomRight, RedsiftColorDarkComponentsRedSiftLogoDiamondDark, RedsiftColorDarkComponentsRedSiftLogoDiamondLight, RedsiftColorDarkComponentsRedSiftLogoDiamondMid, RedsiftColorDarkComponentsRedSiftLogoDiamondTopRight, RedsiftColorDarkComponentsRedSiftLogoIconBackground, RedsiftColorDarkComponentsRedSiftLogoIconR, RedsiftColorDarkComponentsRedSiftLogoTextGrey, RedsiftColorDarkComponentsRedSiftLogoTextRed, RedsiftColorDarkComponentsRedSiftLogoTextWhite, RedsiftColorDarkComponentsSideNavigationBackground, RedsiftColorDarkComponentsSideNavigationCurrentMarker, RedsiftColorDarkComponentsSideNavigationMenuItemActive, RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundActive, RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundHover, RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundSecondary, RedsiftColorDarkComponentsSideNavigationMenuItemTextDisabled, RedsiftColorDarkComponentsSideNavigationMenuItemTextHover, RedsiftColorDarkComponentsSideNavigationMenuItemTextResting, RedsiftColorDarkComponentsSideNavigationRightLine, RedsiftColorDarkComponentsSideNavigationScrollbarHover, RedsiftColorDarkComponentsSideNavigationScrollbarResting, RedsiftColorDarkComponentsSpinnerSpinner, RedsiftColorDarkComponentsSwitchBackgroundDefault, RedsiftColorDarkComponentsSwitchBackgroundDefaultActive, RedsiftColorDarkComponentsSwitchBackgroundDisabled, RedsiftColorDarkComponentsSwitchBackgroundDisabledActive, RedsiftColorDarkComponentsSwitchBackgroundInvalid, RedsiftColorDarkComponentsSwitchBackgroundInvalidActive, RedsiftColorDarkComponentsSwitchBackgroundUncolored, RedsiftColorDarkComponentsSwitchBackgroundUncoloredActive, RedsiftColorDarkComponentsSwitchDotDefault, RedsiftColorDarkComponentsSwitchDotDefaultHover, RedsiftColorDarkComponentsSwitchDotDisabled, RedsiftColorDarkComponentsSwitchDotInvalid, RedsiftColorDarkComponentsSwitchDotInvalidHover, RedsiftColorDarkComponentsSwitchDotUncolored, RedsiftColorDarkComponentsSwitchDotUncoloredHover, RedsiftColorDarkComponentsSwitchTextDefault, RedsiftColorDarkComponentsSwitchTextDisabled, RedsiftColorDarkComponentsSwitchTextInvalid, RedsiftColorDarkComponentsTabsLine, RedsiftColorDarkComponentsTextPrimary, RedsiftColorDarkComponentsTextSecondary, RedsiftColorDarkComponentsTooltipBackground, RedsiftColorDarkComponentsTooltipText, RedsiftColorGreenD1, RedsiftColorGreenD2, RedsiftColorGreenD3, RedsiftColorGreenD4, RedsiftColorGreenL1, RedsiftColorGreenL2, RedsiftColorGreenL3, RedsiftColorGreenL4, RedsiftColorGreenN, RedsiftColorGreyD1, RedsiftColorGreyD2, RedsiftColorGreyD3, RedsiftColorGreyD4, RedsiftColorGreyD5, RedsiftColorGreyL1, RedsiftColorGreyL2, RedsiftColorGreyL3, RedsiftColorGreyL4, RedsiftColorGreyL5, RedsiftColorGreyN, RedsiftColorLightComponentsAiAiBorder, RedsiftColorLightComponentsAiAiIcon, RedsiftColorLightComponentsAlertErrorBackground, RedsiftColorLightComponentsAlertErrorBorder, RedsiftColorLightComponentsAlertErrorIcon, RedsiftColorLightComponentsAlertInfoBackground, RedsiftColorLightComponentsAlertInfoBorder, RedsiftColorLightComponentsAlertInfoIcon, RedsiftColorLightComponentsAlertSuccessBackground, RedsiftColorLightComponentsAlertSuccessBorder, RedsiftColorLightComponentsAlertSuccessIcon, RedsiftColorLightComponentsAlertText, RedsiftColorLightComponentsAlertWarningBackground, RedsiftColorLightComponentsAlertWarningBorder, RedsiftColorLightComponentsAlertWarningIcon, RedsiftColorLightComponentsAppBarBackground, RedsiftColorLightComponentsAppBarBorder, RedsiftColorLightComponentsAppBarBreadcrumbDefault, RedsiftColorLightComponentsAppBarBreadcrumbDown, RedsiftColorLightComponentsAppBarBreadcrumbHover, RedsiftColorLightComponentsAppBarIconBackgroundActive, RedsiftColorLightComponentsAppBarIconBackgroundActiveDown, RedsiftColorLightComponentsAppBarIconBackgroundActiveHover, RedsiftColorLightComponentsAppBarIconBackgroundDown, RedsiftColorLightComponentsAppBarIconBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextHover, RedsiftColorLightComponentsCheckboxFillDefault, RedsiftColorLightComponentsCheckboxFillDefaultHover, RedsiftColorLightComponentsCheckboxFillDisabled, RedsiftColorLightComponentsCheckboxFillInvalid, RedsiftColorLightComponentsCheckboxFillInvalidHover, RedsiftColorLightComponentsCheckboxFillUncolored, RedsiftColorLightComponentsCheckboxFillUncoloredHover, RedsiftColorLightComponentsCheckboxTextDefault, RedsiftColorLightComponentsCheckboxTextDisabled, RedsiftColorLightComponentsCheckboxTextInvalid, RedsiftColorLightComponentsDropdownsAndMenusClickBackground, RedsiftColorLightComponentsDropdownsAndMenusClickText, RedsiftColorLightComponentsDropdownsAndMenusDefaultBackground, RedsiftColorLightComponentsDropdownsAndMenusDefaultText, RedsiftColorLightComponentsDropdownsAndMenusDividers, RedsiftColorLightComponentsDropdownsAndMenusHoverBackground, RedsiftColorLightComponentsDropdownsAndMenusHoverText, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveBackground, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveClickBackground, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveClickText, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveHoverBackground, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveHoverText, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveText, RedsiftColorLightComponentsIconsDefault, RedsiftColorLightComponentsModalBackground, RedsiftColorLightComponentsPageBackground, RedsiftColorLightComponentsProductLogosIconGrey, RedsiftColorLightComponentsProductLogosIconRed, RedsiftColorLightComponentsProductLogosTextGrey, RedsiftColorLightComponentsProductLogosTextRed, RedsiftColorLightComponentsProductLogosTextWhite, RedsiftColorLightComponentsRadioFillDefault, RedsiftColorLightComponentsRadioFillDefaultHover, RedsiftColorLightComponentsRadioFillDisabled, RedsiftColorLightComponentsRadioFillInvalid, RedsiftColorLightComponentsRadioFillInvalidHover, RedsiftColorLightComponentsRadioFillUncolored, RedsiftColorLightComponentsRadioFillUncoloredHover, RedsiftColorLightComponentsRadioTextDefault, RedsiftColorLightComponentsRadioTextDisabled, RedsiftColorLightComponentsRadioTextInvalid, RedsiftColorLightComponentsRedSiftLogoDiamondBottomLeft, RedsiftColorLightComponentsRedSiftLogoDiamondBottomRight, RedsiftColorLightComponentsRedSiftLogoDiamondDark, RedsiftColorLightComponentsRedSiftLogoDiamondLight, RedsiftColorLightComponentsRedSiftLogoDiamondMid, RedsiftColorLightComponentsRedSiftLogoDiamondTopRight, RedsiftColorLightComponentsRedSiftLogoIconBackground, RedsiftColorLightComponentsRedSiftLogoIconR, RedsiftColorLightComponentsRedSiftLogoTextGrey, RedsiftColorLightComponentsRedSiftLogoTextRed, RedsiftColorLightComponentsRedSiftLogoTextWhite, RedsiftColorLightComponentsSideNavigationBackground, RedsiftColorLightComponentsSideNavigationCurrentMarker, RedsiftColorLightComponentsSideNavigationMenuItemActive, RedsiftColorLightComponentsSideNavigationMenuItemBackgroundActive, RedsiftColorLightComponentsSideNavigationMenuItemBackgroundHover, RedsiftColorLightComponentsSideNavigationMenuItemBackgroundSecondary, RedsiftColorLightComponentsSideNavigationMenuItemTextDisabled, RedsiftColorLightComponentsSideNavigationMenuItemTextHover, RedsiftColorLightComponentsSideNavigationMenuItemTextResting, RedsiftColorLightComponentsSideNavigationRightLine, RedsiftColorLightComponentsSideNavigationScrollbarHover, RedsiftColorLightComponentsSideNavigationScrollbarResting, RedsiftColorLightComponentsSpinnerSpinner, RedsiftColorLightComponentsSwitchBackgroundDefault, RedsiftColorLightComponentsSwitchBackgroundDefaultActive, RedsiftColorLightComponentsSwitchBackgroundDisabled, RedsiftColorLightComponentsSwitchBackgroundDisabledActive, RedsiftColorLightComponentsSwitchBackgroundInvalid, RedsiftColorLightComponentsSwitchBackgroundInvalidActive, RedsiftColorLightComponentsSwitchBackgroundUncolored, RedsiftColorLightComponentsSwitchBackgroundUncoloredActive, RedsiftColorLightComponentsSwitchDotDefault, RedsiftColorLightComponentsSwitchDotDefaultHover, RedsiftColorLightComponentsSwitchDotDisabled, RedsiftColorLightComponentsSwitchDotInvalid, RedsiftColorLightComponentsSwitchDotInvalidHover, RedsiftColorLightComponentsSwitchDotUncolored, RedsiftColorLightComponentsSwitchDotUncoloredHover, RedsiftColorLightComponentsSwitchTextDefault, RedsiftColorLightComponentsSwitchTextDisabled, RedsiftColorLightComponentsSwitchTextInvalid, RedsiftColorLightComponentsTabsLine, RedsiftColorLightComponentsTextPrimary, RedsiftColorLightComponentsTextSecondary, RedsiftColorLightComponentsTooltipBackground, RedsiftColorLightComponentsTooltipText, RedsiftColorNeutralBlack, RedsiftColorNeutralDarkGrey, RedsiftColorNeutralLightGrey, RedsiftColorNeutralMidGrey, RedsiftColorNeutralWhite, RedsiftColorNeutralXDarkGrey, RedsiftColorNeutralXLightGrey, RedsiftColorNotificationsErrorActive, RedsiftColorNotificationsErrorHover, RedsiftColorNotificationsErrorPrimary, RedsiftColorNotificationsInfoActive, RedsiftColorNotificationsInfoHover, RedsiftColorNotificationsInfoPrimary, RedsiftColorNotificationsNoDataActive, RedsiftColorNotificationsNoDataHover, RedsiftColorNotificationsNoDataPrimary, RedsiftColorNotificationsPrimaryActive, RedsiftColorNotificationsPrimaryHover, RedsiftColorNotificationsPrimaryPrimary, RedsiftColorNotificationsQuestionActive, RedsiftColorNotificationsQuestionHover, RedsiftColorNotificationsQuestionPrimary, RedsiftColorNotificationsSecondaryActive, RedsiftColorNotificationsSecondaryHover, RedsiftColorNotificationsSecondaryPrimary, RedsiftColorNotificationsSuccessActive, RedsiftColorNotificationsSuccessHover, RedsiftColorNotificationsSuccessPrimary, RedsiftColorNotificationsWarningActive, RedsiftColorNotificationsWarningHover, RedsiftColorNotificationsWarningPrimary, RedsiftColorPresentationAquaDark, RedsiftColorPresentationAquaDarker, RedsiftColorPresentationAquaDarkerer, RedsiftColorPresentationAquaDefault, RedsiftColorPresentationAquaLight, RedsiftColorPresentationAquaLighter, RedsiftColorPresentationAquaLighterer, RedsiftColorPresentationBlueDark, RedsiftColorPresentationBlueDarker, RedsiftColorPresentationBlueDarkerer, RedsiftColorPresentationBlueDefault, RedsiftColorPresentationBlueLight, RedsiftColorPresentationBlueLighter, RedsiftColorPresentationBlueLighterer, RedsiftColorPresentationBrownDark, RedsiftColorPresentationBrownDarker, RedsiftColorPresentationBrownDarkerer, RedsiftColorPresentationBrownDefault, RedsiftColorPresentationBrownLight, RedsiftColorPresentationBrownLighter, RedsiftColorPresentationBrownLighterer, RedsiftColorPresentationGreenDark, RedsiftColorPresentationGreenDarker, RedsiftColorPresentationGreenDarkerer, RedsiftColorPresentationGreenDefault, RedsiftColorPresentationGreenLight, RedsiftColorPresentationGreenLighter, RedsiftColorPresentationGreenLighterer, RedsiftColorPresentationGreyDark, RedsiftColorPresentationGreyDarker, RedsiftColorPresentationGreyDarkerer, RedsiftColorPresentationGreyDefault, RedsiftColorPresentationGreyLight, RedsiftColorPresentationGreyLighter, RedsiftColorPresentationGreyLighterer, RedsiftColorPresentationOrangeDark, RedsiftColorPresentationOrangeDarker, RedsiftColorPresentationOrangeDarkerer, RedsiftColorPresentationOrangeDefault, RedsiftColorPresentationOrangeLight, RedsiftColorPresentationOrangeLighter, RedsiftColorPresentationOrangeLighterer, RedsiftColorPresentationPinkDark, RedsiftColorPresentationPinkDarker, RedsiftColorPresentationPinkDarkerer, RedsiftColorPresentationPinkDefault, RedsiftColorPresentationPinkLight, RedsiftColorPresentationPinkLighter, RedsiftColorPresentationPinkLighterer, RedsiftColorPresentationPurpleDark, RedsiftColorPresentationPurpleDarker, RedsiftColorPresentationPurpleDarkerer, RedsiftColorPresentationPurpleDefault, RedsiftColorPresentationPurpleLight, RedsiftColorPresentationPurpleLighter, RedsiftColorPresentationPurpleLighterer, RedsiftColorPresentationRedDark, RedsiftColorPresentationRedDarker, RedsiftColorPresentationRedDarkerer, RedsiftColorPresentationRedDefault, RedsiftColorPresentationRedLight, RedsiftColorPresentationRedLighter, RedsiftColorPresentationRedLighterer, RedsiftColorPresentationYellowDark, RedsiftColorPresentationYellowDarker, RedsiftColorPresentationYellowDarkerer, RedsiftColorPresentationYellowDefault, RedsiftColorPresentationYellowLight, RedsiftColorPresentationYellowLighter, RedsiftColorPresentationYellowLighterer, RedsiftColorPrimaryD1, RedsiftColorPrimaryD2, RedsiftColorPrimaryD3, RedsiftColorPrimaryD4, RedsiftColorPrimaryL1, RedsiftColorPrimaryL2, RedsiftColorPrimaryL3, RedsiftColorPrimaryL4, RedsiftColorPrimaryN, RedsiftColorProductAsm, RedsiftColorProductBrandTrust, RedsiftColorProductCertificates, RedsiftColorProductHardenize, RedsiftColorProductOnDmarc, RedsiftColorProductOnInbox, RedsiftColorProductOndmarc, RedsiftColorProductOninbox, RedsiftColorProductPulse, RedsiftColorProductRadar, RedsiftColorProductRojoDs, RedsiftColorProductVendorSecure, RedsiftColorProductWebsite, RedsiftColorRedD1, RedsiftColorRedD2, RedsiftColorRedD3, RedsiftColorRedD4, RedsiftColorRedL1, RedsiftColorRedL2, RedsiftColorRedL3, RedsiftColorRedL4, RedsiftColorRedN, RedsiftColorSecondaryD1, RedsiftColorSecondaryD2, RedsiftColorSecondaryD3, RedsiftColorSecondaryD4, RedsiftColorSecondaryL1, RedsiftColorSecondaryL2, RedsiftColorSecondaryL3, RedsiftColorSecondaryL4, RedsiftColorSecondaryN, RedsiftColorTealD1, RedsiftColorTealD2, RedsiftColorTealD3, RedsiftColorTealD4, RedsiftColorTealL1, RedsiftColorTealL2, RedsiftColorTealL3, RedsiftColorTealL4, RedsiftColorTealN, RedsiftColorTextPrimary, RedsiftColorTextSecondary, RedsiftColorYellowD1, RedsiftColorYellowD2, RedsiftColorYellowD3, RedsiftColorYellowD4, RedsiftColorYellowL1, RedsiftColorYellowL2, RedsiftColorYellowL3, RedsiftColorYellowL4, RedsiftColorYellowN, RedsiftLayoutZIndexDialog, RedsiftLayoutZIndexDropdown, RedsiftLayoutZIndexFooter, RedsiftLayoutZIndexHeader, RedsiftLayoutZIndexOverlay, RedsiftLayoutZIndexPopover, RedsiftLayoutZIndexSidePanel, RedsiftLayoutZIndexTooltip, RedsiftTypographyBadgeFontFamily, RedsiftTypographyBadgeFontSize, RedsiftTypographyBadgeFontWeight, RedsiftTypographyBadgeLineHeight, RedsiftTypographyBodyFontFamily, RedsiftTypographyBodyFontSize, RedsiftTypographyBodyFontWeight, RedsiftTypographyBodyLineHeight, RedsiftTypographyBodyTextTransform, RedsiftTypographyButtonFontFamily, RedsiftTypographyButtonFontSize, RedsiftTypographyButtonFontWeight, RedsiftTypographyButtonLineHeight, RedsiftTypographyButtonTextTransform, RedsiftTypographyCaptionFontFamily, RedsiftTypographyCaptionFontSize, RedsiftTypographyCaptionFontWeight, RedsiftTypographyCaptionLineHeight, RedsiftTypographyCaptionTextTransform, RedsiftTypographyChipFontFamily, RedsiftTypographyChipFontSize, RedsiftTypographyChipFontWeight, RedsiftTypographyChipLineHeight, RedsiftTypographyDatagridCellFontFamily, RedsiftTypographyDatagridCellFontSize, RedsiftTypographyDatagridCellFontWeight, RedsiftTypographyDatagridCellLineHeight, RedsiftTypographyDatagridHeaderFontFamily, RedsiftTypographyDatagridHeaderFontSize, RedsiftTypographyDatagridHeaderFontWeight, RedsiftTypographyDatagridHeaderLineHeight, RedsiftTypographyFontFamilyPoppins, RedsiftTypographyFontFamilySourceCodePro, RedsiftTypographyFontWeightBlack, RedsiftTypographyFontWeightBold, RedsiftTypographyFontWeightExtraBold, RedsiftTypographyFontWeightExtraLight, RedsiftTypographyFontWeightLight, RedsiftTypographyFontWeightMedium, RedsiftTypographyFontWeightRegular, RedsiftTypographyFontWeightSemiBold, RedsiftTypographyFontWeightThin, RedsiftTypographyH1FontFamily, RedsiftTypographyH1FontSize, RedsiftTypographyH1FontWeight, RedsiftTypographyH1LineHeight, RedsiftTypographyH1TextTransform, RedsiftTypographyH2FontFamily, RedsiftTypographyH2FontSize, RedsiftTypographyH2FontWeight, RedsiftTypographyH2LineHeight, RedsiftTypographyH2TextTransform, RedsiftTypographyH3FontFamily, RedsiftTypographyH3FontSize, RedsiftTypographyH3FontWeight, RedsiftTypographyH3LineHeight, RedsiftTypographyH3TextTransform, RedsiftTypographyH4FontFamily, RedsiftTypographyH4FontSize, RedsiftTypographyH4FontWeight, RedsiftTypographyH4LineHeight, RedsiftTypographyH4TextTransform, RedsiftTypographyH5FontFamily, RedsiftTypographyH5FontSize, RedsiftTypographyH5FontWeight, RedsiftTypographyH5LineHeight, RedsiftTypographyH5TextTransform, RedsiftTypographyHelperFontFamily, RedsiftTypographyHelperFontSize, RedsiftTypographyHelperFontWeight, RedsiftTypographyHelperLineHeight, RedsiftTypographyHelperTextTransform, RedsiftTypographyInputTextFontFamily, RedsiftTypographyInputTextFontSize, RedsiftTypographyInputTextFontWeight, RedsiftTypographyInputTextLineHeight, RedsiftTypographyLinkFontFamily, RedsiftTypographyLinkFontSize, RedsiftTypographyLinkFontWeight, RedsiftTypographyLinkLineHeight, RedsiftTypographyPillFontFamily, RedsiftTypographyPillFontSize, RedsiftTypographyPillFontWeight, RedsiftTypographyPillLineHeight, RedsiftTypographyTooltipFontFamily, RedsiftTypographyTooltipFontSize, RedsiftTypographyTooltipFontWeight, RedsiftTypographyTooltipLineHeight, RovingTabindexListbox, RowStartMap, SSRProvider, SSRProviderProps, SecondaryColorPalette, Shield, ShieldProps, ShieldVariant, SideNavigationMenu, SideNavigationMenuBar, SideNavigationMenuBarContextProps, SideNavigationMenuBarProps, SideNavigationMenuBarVariant, SideNavigationMenuContextProps, SideNavigationMenuItem, SideNavigationMenuItemProps, SideNavigationMenuProps, SideNavigationMenuReducerAction, SideNavigationMenuReducerActionType, SideNavigationMenuReducerState, SizingProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkeletonTextVariant, SpacingProps, Spinner, SpinnerProps, SpinnerSize, StyledAlertProps, StyledAppBarProps, StyledAppContainerProps, StyledAppContentProps, StyledAppSidePanelProps, StyledBadgeProps, StyledBreadcrumbItemProps, StyledBreadcrumbsProps, StyledButton, StyledButtonGroupProps, StyledButtonLinkProps, StyledButtonProps, StyledCardActionsProps, StyledCardBodyProps, StyledCardHeaderProps, StyledCardProps, StyledCheckboxGroupProps, StyledCheckboxProps, StyledDetailedCardCollapsibleSectionItemsProps, StyledDetailedCardHeaderProps, StyledDetailedCardProps, StyledDetailedCardSectionItemProps, StyledDetailedCardSectionProps, StyledFlexboxProps, StyledGridItemProps, StyledGridProps, StyledHeadingProps, StyledIconButtonProps, StyledIconProps, StyledItem, StyledItemProps, StyledLink, StyledLinkButtonProps, StyledLinkProps, StyledListboxProps, StyledNumberFieldProps, StyledNumberProps, StyledPillProps, StyledRadioGroupProps, StyledRadioProps, StyledShieldProps, StyledSideNavigationMenuBarProps, StyledSideNavigationMenuItemProps, StyledSideNavigationMenuProps, StyledSkeletonCircleProps, StyledSkeletonProps, StyledSkeletonTextProps, StyledSpinnerProps, StyledSwitchGroupProps, StyledSwitchProps, StyledTextAreaProps, StyledTextField, StyledTextFieldProps, StyledTextProps, StylingProps, Switch, SwitchGroup, SwitchGroupOrientation, SwitchGroupProps, SwitchGroupState, SwitchProps, TabStop, Text, TextArea, TextAreaProps, TextAreaVariant, TextComponent, TextField, TextFieldProps, TextFieldVariant, TextProps, TextVariant, Theme, ThemeContext, ThemeProvider, UseFocusGroupProps, UseFocusWithinGroupProps, UseListboxItemProps, UseSideNavigationMenuBarProps, ValueOf, baseContainer, baseFlexbox, baseGrid, baseInternalSpacing, baseLayout, basePositioning, baseSizing, baseSpacing, baseStyling, filterComponents, focusRing, getCanvasFont, getContainerProps, getCssStyle, getMaxTextWidth, getTextWidth, isComponent, nextId, partitionComponents, resetId, setPrefix, sizeToDimension, srOnly, uniqueId, useAppSidePanel, useBoundingClientRect, useCollator, useComputeNumberOfRows, useDateFormatter, useFilter, useFocusOnList, useFocusOnListItem, useId, useIsLoaded, useIsSSR, useListFormatter, useListboxItem, useLocale, useLocalizedStringDictionary, useLocalizedStringFormatter, useNumberFormatter, useSSRSafeId, useSideNavigationMenuBar, useTheme, useWindowSize, warnIfNoAccessibleLabelFound };
|
|
4625
|
+
export { ActiveDescendantListbox, Alert, AlertProps, AlertStyleVariant, AlertVariant, AlignContent, AlignItems, AlignSelf, AppBar, AppBarProps, AppContainer, AppContainerContext, AppContainerProps, AppContainerState, AppContent, AppContentProps, AppSidePanel, AppSidePanelProps, AppSidePanelVariant, Badge, BadgeProps, BadgeVariant, BaseBreadcrumbs, BaseFocusWithinGroupAction, BaseGrid, BaseSkeleton, BorderProps, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonColor, ButtonGroup, ButtonGroupColor, ButtonGroupProps, ButtonGroupVariant, ButtonLink, ButtonLinkProps, ButtonProps, ButtonVariant, ButtonsColorPalette, Card, CardActions, CardActionsProps, CardBody, CardBodyProps, CardHeader, CardHeaderProps, CardProps, Checkbox, CheckboxGroup, CheckboxGroupOrientation, CheckboxGroupProps, CheckboxGroupState, CheckboxProps, ColorPalette, Comp, ConditionalWrapper, ConditionalWrapperProps, ContainerProps, DateFormatter, DateFormatterOptions, DetailedCard, DetailedCardCollapsibleSectionItems, DetailedCardCollapsibleSectionItemsProps, DetailedCardHeader, DetailedCardHeaderProps, DetailedCardProps, DetailedCardSection, DetailedCardSectionItem, DetailedCardSectionItemProps, DetailedCardSectionProps, EventKey, FOCUS_WITHING_GROUP_INITIAL_STATE, Falsy, Filter, FlexDirection, FlexLayoutProps, FlexWrap, Flexbox, FlexboxProps, FocusWithinGroup, FocusWithinGroupAction, FocusWithinGroupActionType, FocusWithinGroupContext, FocusWithinGroupContextProps, FocusWithinGroupOptions, FocusWithinGroupProps, FocusWithinGroupReducer, FocusWithinGroupState, FontFamily, Grid, GridItem, GridItemProps, GridLayoutProps, GridProps, Heading, HeadingComponent, HeadingProps, HeadingVariant, I18nProvider, I18nProviderProps, Icon, IconButton, IconButtonColor, IconButtonLink, IconButtonLinkProps, IconButtonProps, IconButtonVariant, IconDimensions, IconProps, IconSize, InternalSpacingProps, Item, ItemColor, ItemProps, JustifyContent, JustifyItems, JustifySelf, KeyDirection, LISTBOX_INITIAL_STATE, LayoutProps, Link, LinkButton, LinkButtonProps, LinkProps, Listbox, ListboxAction, ListboxActionType, ListboxContext, ListboxContextProps, ListboxProps, ListboxReducer, ListboxSelectionMode, ListboxState, ListboxVariant, Locale, LocalizedStringFormatter, LocalizedStrings, Menu, MenuBarItems, MenuItem, Navigation, NeutralColorPalette, NotificationsColorPalette, Number, NumberField, NumberFieldProps, NumberFieldVariant, NumberFormatOptions$1 as NumberFormatOptions, NumberProps, Pill, PillProps, PillSize, PositioningProps, PresentationColorPalette, PrimaryButtonsColorPalette, PrimaryColorPalette, Product, ProductColorPalette, ProductLogo, ProductName, ProgressBar, ProgressBarProps, RadarSvgLinearGradient, Radio, RadioGroup, RadioGroupOrientation, RadioGroupProps, RadioGroupState, RadioProps, RedsiftBorderRadius, RedsiftColorBlueD1, RedsiftColorBlueD2, RedsiftColorBlueD3, RedsiftColorBlueD4, RedsiftColorBlueL1, RedsiftColorBlueL2, RedsiftColorBlueL3, RedsiftColorBlueL4, RedsiftColorBlueN, RedsiftColorBordersBorderDefault, RedsiftColorBordersBorderDisabled, RedsiftColorBordersBorderDivider, RedsiftColorBordersBorderError, RedsiftColorBordersBorderPrimary, RedsiftColorBordersBorderSecondary, RedsiftColorBordersBorderSuccess, RedsiftColorDarkComponentsAiAiBorder, RedsiftColorDarkComponentsAiAiIcon, RedsiftColorDarkComponentsAlertErrorBackground, RedsiftColorDarkComponentsAlertErrorBorder, RedsiftColorDarkComponentsAlertErrorIcon, RedsiftColorDarkComponentsAlertInfoBackground, RedsiftColorDarkComponentsAlertInfoBorder, RedsiftColorDarkComponentsAlertInfoIcon, RedsiftColorDarkComponentsAlertSuccessBackground, RedsiftColorDarkComponentsAlertSuccessBorder, RedsiftColorDarkComponentsAlertSuccessIcon, RedsiftColorDarkComponentsAlertText, RedsiftColorDarkComponentsAlertWarningBackground, RedsiftColorDarkComponentsAlertWarningBorder, RedsiftColorDarkComponentsAlertWarningIcon, RedsiftColorDarkComponentsAppBarBackground, RedsiftColorDarkComponentsAppBarBorder, RedsiftColorDarkComponentsAppBarBreadcrumbDefault, RedsiftColorDarkComponentsAppBarBreadcrumbDown, RedsiftColorDarkComponentsAppBarBreadcrumbHover, RedsiftColorDarkComponentsAppBarIconBackgroundActive, RedsiftColorDarkComponentsAppBarIconBackgroundActiveDown, RedsiftColorDarkComponentsAppBarIconBackgroundActiveHover, RedsiftColorDarkComponentsAppBarIconBackgroundDown, RedsiftColorDarkComponentsAppBarIconBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonRadarTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextHover, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundActive, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundHover, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextActive, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextDefault, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextDisabled, RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonBlackTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonRadarTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextHover, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundActive, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteBackgroundHover, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextActive, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextDefault, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextDisabled, RedsiftColorDarkComponentsButtonsSecondaryButtonWhiteTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonBlackTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonRadarTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextHover, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundActive, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteBackgroundHover, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextActive, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextDefault, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextDisabled, RedsiftColorDarkComponentsButtonsUnstyledButtonWhiteTextHover, RedsiftColorDarkComponentsCheckboxFillDefault, RedsiftColorDarkComponentsCheckboxFillDefaultHover, RedsiftColorDarkComponentsCheckboxFillDisabled, RedsiftColorDarkComponentsCheckboxFillInvalid, RedsiftColorDarkComponentsCheckboxFillInvalidHover, RedsiftColorDarkComponentsCheckboxFillUncolored, RedsiftColorDarkComponentsCheckboxFillUncoloredHover, RedsiftColorDarkComponentsCheckboxTextDefault, RedsiftColorDarkComponentsCheckboxTextDisabled, RedsiftColorDarkComponentsCheckboxTextInvalid, RedsiftColorDarkComponentsDropdownsAndMenusClickBackground, RedsiftColorDarkComponentsDropdownsAndMenusClickText, RedsiftColorDarkComponentsDropdownsAndMenusDefaultBackground, RedsiftColorDarkComponentsDropdownsAndMenusDefaultText, RedsiftColorDarkComponentsDropdownsAndMenusDividers, RedsiftColorDarkComponentsDropdownsAndMenusHoverBackground, RedsiftColorDarkComponentsDropdownsAndMenusHoverText, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveBackground, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveClickBackground, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveClickText, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveHoverBackground, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveHoverText, RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveText, RedsiftColorDarkComponentsIconsDefault, RedsiftColorDarkComponentsModalBackground, RedsiftColorDarkComponentsPageBackground, RedsiftColorDarkComponentsPillsAquaDefaultBackground, RedsiftColorDarkComponentsPillsAquaDefaultBorder, RedsiftColorDarkComponentsPillsAquaDefaultText, RedsiftColorDarkComponentsPillsAquaDisabledBackground, RedsiftColorDarkComponentsPillsAquaDisabledBorder, RedsiftColorDarkComponentsPillsAquaDisabledText, RedsiftColorDarkComponentsPillsAquaHoverBackground, RedsiftColorDarkComponentsPillsAquaHoverBorder, RedsiftColorDarkComponentsPillsAquaHoverText, RedsiftColorDarkComponentsPillsBlackDefaultBackground, RedsiftColorDarkComponentsPillsBlackDefaultBorder, RedsiftColorDarkComponentsPillsBlackDefaultText, RedsiftColorDarkComponentsPillsBlackDisabledBackground, RedsiftColorDarkComponentsPillsBlackDisabledBorder, RedsiftColorDarkComponentsPillsBlackDisabledText, RedsiftColorDarkComponentsPillsBlackHoverBackground, RedsiftColorDarkComponentsPillsBlackHoverBorder, RedsiftColorDarkComponentsPillsBlackHoverText, RedsiftColorDarkComponentsPillsBlueDefaultBackground, RedsiftColorDarkComponentsPillsBlueDefaultBorder, RedsiftColorDarkComponentsPillsBlueDefaultText, RedsiftColorDarkComponentsPillsBlueDisabledBackground, RedsiftColorDarkComponentsPillsBlueDisabledBorder, RedsiftColorDarkComponentsPillsBlueDisabledText, RedsiftColorDarkComponentsPillsBlueHoverBackground, RedsiftColorDarkComponentsPillsBlueHoverBorder, RedsiftColorDarkComponentsPillsBlueHoverText, RedsiftColorDarkComponentsPillsBrownDefaultBackground, RedsiftColorDarkComponentsPillsBrownDefaultBorder, RedsiftColorDarkComponentsPillsBrownDefaultText, RedsiftColorDarkComponentsPillsBrownDisabledBackground, RedsiftColorDarkComponentsPillsBrownDisabledBorder, RedsiftColorDarkComponentsPillsBrownDisabledText, RedsiftColorDarkComponentsPillsBrownHoverBackground, RedsiftColorDarkComponentsPillsBrownHoverBorder, RedsiftColorDarkComponentsPillsBrownHoverText, RedsiftColorDarkComponentsPillsDarkGreyDefaultBackground, RedsiftColorDarkComponentsPillsDarkGreyDefaultBorder, RedsiftColorDarkComponentsPillsDarkGreyDefaultText, RedsiftColorDarkComponentsPillsDarkGreyDisabledBackground, RedsiftColorDarkComponentsPillsDarkGreyDisabledBorder, RedsiftColorDarkComponentsPillsDarkGreyDisabledText, RedsiftColorDarkComponentsPillsDarkGreyHoverBackground, RedsiftColorDarkComponentsPillsDarkGreyHoverBorder, RedsiftColorDarkComponentsPillsDarkGreyHoverText, RedsiftColorDarkComponentsPillsErrorDarkDefaultBackground, RedsiftColorDarkComponentsPillsErrorDarkDefaultBorder, RedsiftColorDarkComponentsPillsErrorDarkDefaultText, RedsiftColorDarkComponentsPillsErrorDarkDisabledBackground, RedsiftColorDarkComponentsPillsErrorDarkDisabledBorder, RedsiftColorDarkComponentsPillsErrorDarkDisabledText, RedsiftColorDarkComponentsPillsErrorDarkHoverBackground, RedsiftColorDarkComponentsPillsErrorDarkHoverBorder, RedsiftColorDarkComponentsPillsErrorDarkHoverText, RedsiftColorDarkComponentsPillsErrorDefaultBackground, RedsiftColorDarkComponentsPillsErrorDefaultBorder, RedsiftColorDarkComponentsPillsErrorDefaultText, RedsiftColorDarkComponentsPillsErrorDisabledBackground, RedsiftColorDarkComponentsPillsErrorDisabledBorder, RedsiftColorDarkComponentsPillsErrorDisabledText, RedsiftColorDarkComponentsPillsErrorHoverBackground, RedsiftColorDarkComponentsPillsErrorHoverBorder, RedsiftColorDarkComponentsPillsErrorHoverText, RedsiftColorDarkComponentsPillsGreenDefaultBackground, RedsiftColorDarkComponentsPillsGreenDefaultBorder, RedsiftColorDarkComponentsPillsGreenDefaultText, RedsiftColorDarkComponentsPillsGreenDisabledBackground, RedsiftColorDarkComponentsPillsGreenDisabledBorder, RedsiftColorDarkComponentsPillsGreenDisabledText, RedsiftColorDarkComponentsPillsGreenHoverBackground, RedsiftColorDarkComponentsPillsGreenHoverBorder, RedsiftColorDarkComponentsPillsGreenHoverText, RedsiftColorDarkComponentsPillsGreyDefaultBackground, RedsiftColorDarkComponentsPillsGreyDefaultBorder, RedsiftColorDarkComponentsPillsGreyDefaultText, RedsiftColorDarkComponentsPillsGreyDisabledBackground, RedsiftColorDarkComponentsPillsGreyDisabledBorder, RedsiftColorDarkComponentsPillsGreyDisabledText, RedsiftColorDarkComponentsPillsGreyHoverBackground, RedsiftColorDarkComponentsPillsGreyHoverBorder, RedsiftColorDarkComponentsPillsGreyHoverText, RedsiftColorDarkComponentsPillsLightGreyDefaultBackground, RedsiftColorDarkComponentsPillsLightGreyDefaultBorder, RedsiftColorDarkComponentsPillsLightGreyDefaultText, RedsiftColorDarkComponentsPillsLightGreyDisabledBackground, RedsiftColorDarkComponentsPillsLightGreyDisabledBorder, RedsiftColorDarkComponentsPillsLightGreyDisabledText, RedsiftColorDarkComponentsPillsLightGreyHoverBackground, RedsiftColorDarkComponentsPillsLightGreyHoverBorder, RedsiftColorDarkComponentsPillsLightGreyHoverText, RedsiftColorDarkComponentsPillsMidGreyDefaultBackground, RedsiftColorDarkComponentsPillsMidGreyDefaultBorder, RedsiftColorDarkComponentsPillsMidGreyDefaultText, RedsiftColorDarkComponentsPillsMidGreyDisabledBackground, RedsiftColorDarkComponentsPillsMidGreyDisabledBorder, RedsiftColorDarkComponentsPillsMidGreyDisabledText, RedsiftColorDarkComponentsPillsMidGreyHoverBackground, RedsiftColorDarkComponentsPillsMidGreyHoverBorder, RedsiftColorDarkComponentsPillsMidGreyHoverText, RedsiftColorDarkComponentsPillsOrangeDefaultBackground, RedsiftColorDarkComponentsPillsOrangeDefaultBorder, RedsiftColorDarkComponentsPillsOrangeDefaultText, RedsiftColorDarkComponentsPillsOrangeDisabledBackground, RedsiftColorDarkComponentsPillsOrangeDisabledBorder, RedsiftColorDarkComponentsPillsOrangeDisabledText, RedsiftColorDarkComponentsPillsOrangeHoverBackground, RedsiftColorDarkComponentsPillsOrangeHoverBorder, RedsiftColorDarkComponentsPillsOrangeHoverText, RedsiftColorDarkComponentsPillsPinkDefaultBackground, RedsiftColorDarkComponentsPillsPinkDefaultBorder, RedsiftColorDarkComponentsPillsPinkDefaultText, RedsiftColorDarkComponentsPillsPinkDisabledBackground, RedsiftColorDarkComponentsPillsPinkDisabledBorder, RedsiftColorDarkComponentsPillsPinkDisabledText, RedsiftColorDarkComponentsPillsPinkHoverBackground, RedsiftColorDarkComponentsPillsPinkHoverBorder, RedsiftColorDarkComponentsPillsPinkHoverText, RedsiftColorDarkComponentsPillsPurpleDefaultBackground, RedsiftColorDarkComponentsPillsPurpleDefaultBorder, RedsiftColorDarkComponentsPillsPurpleDefaultText, RedsiftColorDarkComponentsPillsPurpleDisabledBackground, RedsiftColorDarkComponentsPillsPurpleDisabledBorder, RedsiftColorDarkComponentsPillsPurpleDisabledText, RedsiftColorDarkComponentsPillsPurpleHoverBackground, RedsiftColorDarkComponentsPillsPurpleHoverBorder, RedsiftColorDarkComponentsPillsPurpleHoverText, RedsiftColorDarkComponentsPillsRedDefaultBackground, RedsiftColorDarkComponentsPillsRedDefaultBorder, RedsiftColorDarkComponentsPillsRedDefaultText, RedsiftColorDarkComponentsPillsRedDisabledBackground, RedsiftColorDarkComponentsPillsRedDisabledBorder, RedsiftColorDarkComponentsPillsRedDisabledText, RedsiftColorDarkComponentsPillsRedHoverBackground, RedsiftColorDarkComponentsPillsRedHoverBorder, RedsiftColorDarkComponentsPillsRedHoverText, RedsiftColorDarkComponentsPillsSuccessDarkDefaultBackground, RedsiftColorDarkComponentsPillsSuccessDarkDefaultBorder, RedsiftColorDarkComponentsPillsSuccessDarkDefaultText, RedsiftColorDarkComponentsPillsSuccessDarkDisabledBackground, RedsiftColorDarkComponentsPillsSuccessDarkDisabledBorder, RedsiftColorDarkComponentsPillsSuccessDarkDisabledText, RedsiftColorDarkComponentsPillsSuccessDarkHoverBackground, RedsiftColorDarkComponentsPillsSuccessDarkHoverBorder, RedsiftColorDarkComponentsPillsSuccessDarkHoverText, RedsiftColorDarkComponentsPillsSuccessDefaultBackground, RedsiftColorDarkComponentsPillsSuccessDefaultBorder, RedsiftColorDarkComponentsPillsSuccessDefaultText, RedsiftColorDarkComponentsPillsSuccessDisabledBackground, RedsiftColorDarkComponentsPillsSuccessDisabledBorder, RedsiftColorDarkComponentsPillsSuccessDisabledText, RedsiftColorDarkComponentsPillsSuccessHoverBackground, RedsiftColorDarkComponentsPillsSuccessHoverBorder, RedsiftColorDarkComponentsPillsSuccessHoverText, RedsiftColorDarkComponentsPillsWarningDarkDefaultBackground, RedsiftColorDarkComponentsPillsWarningDarkDefaultBorder, RedsiftColorDarkComponentsPillsWarningDarkDefaultText, RedsiftColorDarkComponentsPillsWarningDarkDisabledBackground, RedsiftColorDarkComponentsPillsWarningDarkDisabledBorder, RedsiftColorDarkComponentsPillsWarningDarkDisabledText, RedsiftColorDarkComponentsPillsWarningDarkHoverBackground, RedsiftColorDarkComponentsPillsWarningDarkHoverBorder, RedsiftColorDarkComponentsPillsWarningDarkHoverText, RedsiftColorDarkComponentsPillsWarningDefaultBackground, RedsiftColorDarkComponentsPillsWarningDefaultBorder, RedsiftColorDarkComponentsPillsWarningDefaultText, RedsiftColorDarkComponentsPillsWarningDisabledBackground, RedsiftColorDarkComponentsPillsWarningDisabledBorder, RedsiftColorDarkComponentsPillsWarningDisabledText, RedsiftColorDarkComponentsPillsWarningHoverBackground, RedsiftColorDarkComponentsPillsWarningHoverBorder, RedsiftColorDarkComponentsPillsWarningHoverText, RedsiftColorDarkComponentsPillsWhiteDefaultBackground, RedsiftColorDarkComponentsPillsWhiteDefaultBorder, RedsiftColorDarkComponentsPillsWhiteDefaultText, RedsiftColorDarkComponentsPillsWhiteDisabledBackground, RedsiftColorDarkComponentsPillsWhiteDisabledBorder, RedsiftColorDarkComponentsPillsWhiteDisabledText, RedsiftColorDarkComponentsPillsWhiteHoverBackground, RedsiftColorDarkComponentsPillsWhiteHoverBorder, RedsiftColorDarkComponentsPillsWhiteHoverText, RedsiftColorDarkComponentsPillsXDarkGreyDefaultBackground, RedsiftColorDarkComponentsPillsXDarkGreyDefaultBorder, RedsiftColorDarkComponentsPillsXDarkGreyDefaultText, RedsiftColorDarkComponentsPillsXDarkGreyDisabledBackground, RedsiftColorDarkComponentsPillsXDarkGreyDisabledBorder, RedsiftColorDarkComponentsPillsXDarkGreyDisabledText, RedsiftColorDarkComponentsPillsXDarkGreyHoverBackground, RedsiftColorDarkComponentsPillsXDarkGreyHoverBorder, RedsiftColorDarkComponentsPillsXDarkGreyHoverText, RedsiftColorDarkComponentsPillsXLightGreyDefaultBackground, RedsiftColorDarkComponentsPillsXLightGreyDefaultBorder, RedsiftColorDarkComponentsPillsXLightGreyDefaultText, RedsiftColorDarkComponentsPillsXLightGreyDisabledBackground, RedsiftColorDarkComponentsPillsXLightGreyDisabledBorder, RedsiftColorDarkComponentsPillsXLightGreyDisabledText, RedsiftColorDarkComponentsPillsXLightGreyHoverBackground, RedsiftColorDarkComponentsPillsXLightGreyHoverBorder, RedsiftColorDarkComponentsPillsXLightGreyHoverText, RedsiftColorDarkComponentsPillsYellowDefaultBackground, RedsiftColorDarkComponentsPillsYellowDefaultBorder, RedsiftColorDarkComponentsPillsYellowDefaultText, RedsiftColorDarkComponentsPillsYellowDisabledBackground, RedsiftColorDarkComponentsPillsYellowDisabledBorder, RedsiftColorDarkComponentsPillsYellowDisabledText, RedsiftColorDarkComponentsPillsYellowHoverBackground, RedsiftColorDarkComponentsPillsYellowHoverBorder, RedsiftColorDarkComponentsPillsYellowHoverText, RedsiftColorDarkComponentsProductLogosIconGrey, RedsiftColorDarkComponentsProductLogosIconRed, RedsiftColorDarkComponentsProductLogosTextGrey, RedsiftColorDarkComponentsProductLogosTextRed, RedsiftColorDarkComponentsProductLogosTextWhite, RedsiftColorDarkComponentsRadioFillDefault, RedsiftColorDarkComponentsRadioFillDefaultHover, RedsiftColorDarkComponentsRadioFillDisabled, RedsiftColorDarkComponentsRadioFillInvalid, RedsiftColorDarkComponentsRadioFillInvalidHover, RedsiftColorDarkComponentsRadioFillUncolored, RedsiftColorDarkComponentsRadioFillUncoloredHover, RedsiftColorDarkComponentsRadioTextDefault, RedsiftColorDarkComponentsRadioTextDisabled, RedsiftColorDarkComponentsRadioTextInvalid, RedsiftColorDarkComponentsRedSiftLogoDiamondBottomLeft, RedsiftColorDarkComponentsRedSiftLogoDiamondBottomRight, RedsiftColorDarkComponentsRedSiftLogoDiamondDark, RedsiftColorDarkComponentsRedSiftLogoDiamondLight, RedsiftColorDarkComponentsRedSiftLogoDiamondMid, RedsiftColorDarkComponentsRedSiftLogoDiamondTopRight, RedsiftColorDarkComponentsRedSiftLogoIconBackground, RedsiftColorDarkComponentsRedSiftLogoIconR, RedsiftColorDarkComponentsRedSiftLogoTextGrey, RedsiftColorDarkComponentsRedSiftLogoTextRed, RedsiftColorDarkComponentsRedSiftLogoTextWhite, RedsiftColorDarkComponentsSideNavigationBackground, RedsiftColorDarkComponentsSideNavigationCurrentMarker, RedsiftColorDarkComponentsSideNavigationMenuItemActive, RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundActive, RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundHover, RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundSecondary, RedsiftColorDarkComponentsSideNavigationMenuItemTextDisabled, RedsiftColorDarkComponentsSideNavigationMenuItemTextHover, RedsiftColorDarkComponentsSideNavigationMenuItemTextResting, RedsiftColorDarkComponentsSideNavigationRightLine, RedsiftColorDarkComponentsSideNavigationScrollbarHover, RedsiftColorDarkComponentsSideNavigationScrollbarResting, RedsiftColorDarkComponentsSpinnerSpinner, RedsiftColorDarkComponentsSwitchBackgroundDefault, RedsiftColorDarkComponentsSwitchBackgroundDefaultActive, RedsiftColorDarkComponentsSwitchBackgroundDisabled, RedsiftColorDarkComponentsSwitchBackgroundDisabledActive, RedsiftColorDarkComponentsSwitchBackgroundInvalid, RedsiftColorDarkComponentsSwitchBackgroundInvalidActive, RedsiftColorDarkComponentsSwitchBackgroundUncolored, RedsiftColorDarkComponentsSwitchBackgroundUncoloredActive, RedsiftColorDarkComponentsSwitchDotDefault, RedsiftColorDarkComponentsSwitchDotDefaultHover, RedsiftColorDarkComponentsSwitchDotDisabled, RedsiftColorDarkComponentsSwitchDotInvalid, RedsiftColorDarkComponentsSwitchDotInvalidHover, RedsiftColorDarkComponentsSwitchDotUncolored, RedsiftColorDarkComponentsSwitchDotUncoloredHover, RedsiftColorDarkComponentsSwitchTextDefault, RedsiftColorDarkComponentsSwitchTextDisabled, RedsiftColorDarkComponentsSwitchTextInvalid, RedsiftColorDarkComponentsTabsLine, RedsiftColorDarkComponentsTextPrimary, RedsiftColorDarkComponentsTextSecondary, RedsiftColorDarkComponentsTooltipBackground, RedsiftColorDarkComponentsTooltipText, RedsiftColorGreenD1, RedsiftColorGreenD2, RedsiftColorGreenD3, RedsiftColorGreenD4, RedsiftColorGreenL1, RedsiftColorGreenL2, RedsiftColorGreenL3, RedsiftColorGreenL4, RedsiftColorGreenN, RedsiftColorGreyD1, RedsiftColorGreyD2, RedsiftColorGreyD3, RedsiftColorGreyD4, RedsiftColorGreyD5, RedsiftColorGreyL1, RedsiftColorGreyL2, RedsiftColorGreyL3, RedsiftColorGreyL4, RedsiftColorGreyL5, RedsiftColorGreyN, RedsiftColorLightComponentsAiAiBorder, RedsiftColorLightComponentsAiAiIcon, RedsiftColorLightComponentsAlertErrorBackground, RedsiftColorLightComponentsAlertErrorBorder, RedsiftColorLightComponentsAlertErrorIcon, RedsiftColorLightComponentsAlertInfoBackground, RedsiftColorLightComponentsAlertInfoBorder, RedsiftColorLightComponentsAlertInfoIcon, RedsiftColorLightComponentsAlertSuccessBackground, RedsiftColorLightComponentsAlertSuccessBorder, RedsiftColorLightComponentsAlertSuccessIcon, RedsiftColorLightComponentsAlertText, RedsiftColorLightComponentsAlertWarningBackground, RedsiftColorLightComponentsAlertWarningBorder, RedsiftColorLightComponentsAlertWarningIcon, RedsiftColorLightComponentsAppBarBackground, RedsiftColorLightComponentsAppBarBorder, RedsiftColorLightComponentsAppBarBreadcrumbDefault, RedsiftColorLightComponentsAppBarBreadcrumbDown, RedsiftColorLightComponentsAppBarBreadcrumbHover, RedsiftColorLightComponentsAppBarIconBackgroundActive, RedsiftColorLightComponentsAppBarIconBackgroundActiveDown, RedsiftColorLightComponentsAppBarIconBackgroundActiveHover, RedsiftColorLightComponentsAppBarIconBackgroundDown, RedsiftColorLightComponentsAppBarIconBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonRadarBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonRadarTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextHover, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundActive, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundDefault, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundHover, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextActive, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextDefault, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextDisabled, RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonBlackBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonBlackTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonRadarBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonRadarTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextHover, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundActive, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundDefault, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteBackgroundHover, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextActive, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextDefault, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextDisabled, RedsiftColorLightComponentsButtonsSecondaryButtonWhiteTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonBlackBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonBlackTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonRadarBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonRadarTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextHover, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundActive, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundDefault, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteBackgroundHover, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextActive, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextDefault, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextDisabled, RedsiftColorLightComponentsButtonsUnstyledButtonWhiteTextHover, RedsiftColorLightComponentsCheckboxFillDefault, RedsiftColorLightComponentsCheckboxFillDefaultHover, RedsiftColorLightComponentsCheckboxFillDisabled, RedsiftColorLightComponentsCheckboxFillInvalid, RedsiftColorLightComponentsCheckboxFillInvalidHover, RedsiftColorLightComponentsCheckboxFillUncolored, RedsiftColorLightComponentsCheckboxFillUncoloredHover, RedsiftColorLightComponentsCheckboxTextDefault, RedsiftColorLightComponentsCheckboxTextDisabled, RedsiftColorLightComponentsCheckboxTextInvalid, RedsiftColorLightComponentsDropdownsAndMenusClickBackground, RedsiftColorLightComponentsDropdownsAndMenusClickText, RedsiftColorLightComponentsDropdownsAndMenusDefaultBackground, RedsiftColorLightComponentsDropdownsAndMenusDefaultText, RedsiftColorLightComponentsDropdownsAndMenusDividers, RedsiftColorLightComponentsDropdownsAndMenusHoverBackground, RedsiftColorLightComponentsDropdownsAndMenusHoverText, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveBackground, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveClickBackground, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveClickText, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveHoverBackground, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveHoverText, RedsiftColorLightComponentsDropdownsAndMenusToggleActiveText, RedsiftColorLightComponentsIconsDefault, RedsiftColorLightComponentsModalBackground, RedsiftColorLightComponentsPageBackground, RedsiftColorLightComponentsPillsAquaDefaultBackground, RedsiftColorLightComponentsPillsAquaDefaultBorder, RedsiftColorLightComponentsPillsAquaDefaultText, RedsiftColorLightComponentsPillsAquaDisabledBackground, RedsiftColorLightComponentsPillsAquaDisabledBorder, RedsiftColorLightComponentsPillsAquaDisabledText, RedsiftColorLightComponentsPillsAquaHoverBackground, RedsiftColorLightComponentsPillsAquaHoverBorder, RedsiftColorLightComponentsPillsAquaHoverText, RedsiftColorLightComponentsPillsBlackDefaultBackground, RedsiftColorLightComponentsPillsBlackDefaultBorder, RedsiftColorLightComponentsPillsBlackDefaultText, RedsiftColorLightComponentsPillsBlackDisabledBackground, RedsiftColorLightComponentsPillsBlackDisabledBorder, RedsiftColorLightComponentsPillsBlackDisabledText, RedsiftColorLightComponentsPillsBlackHoverBackground, RedsiftColorLightComponentsPillsBlackHoverBorder, RedsiftColorLightComponentsPillsBlackHoverText, RedsiftColorLightComponentsPillsBlueDefaultBackground, RedsiftColorLightComponentsPillsBlueDefaultBorder, RedsiftColorLightComponentsPillsBlueDefaultText, RedsiftColorLightComponentsPillsBlueDisabledBackground, RedsiftColorLightComponentsPillsBlueDisabledBorder, RedsiftColorLightComponentsPillsBlueDisabledText, RedsiftColorLightComponentsPillsBlueHoverBackground, RedsiftColorLightComponentsPillsBlueHoverBorder, RedsiftColorLightComponentsPillsBlueHoverText, RedsiftColorLightComponentsPillsBrownDefaultBackground, RedsiftColorLightComponentsPillsBrownDefaultBorder, RedsiftColorLightComponentsPillsBrownDefaultText, RedsiftColorLightComponentsPillsBrownDisabledBackground, RedsiftColorLightComponentsPillsBrownDisabledBorder, RedsiftColorLightComponentsPillsBrownDisabledText, RedsiftColorLightComponentsPillsBrownHoverBackground, RedsiftColorLightComponentsPillsBrownHoverBorder, RedsiftColorLightComponentsPillsBrownHoverText, RedsiftColorLightComponentsPillsDarkGreyDefaultBackground, RedsiftColorLightComponentsPillsDarkGreyDefaultBorder, RedsiftColorLightComponentsPillsDarkGreyDefaultText, RedsiftColorLightComponentsPillsDarkGreyDisabledBackground, RedsiftColorLightComponentsPillsDarkGreyDisabledBorder, RedsiftColorLightComponentsPillsDarkGreyDisabledText, RedsiftColorLightComponentsPillsDarkGreyHoverBackground, RedsiftColorLightComponentsPillsDarkGreyHoverBorder, RedsiftColorLightComponentsPillsDarkGreyHoverText, RedsiftColorLightComponentsPillsErrorDarkDefaultBackground, RedsiftColorLightComponentsPillsErrorDarkDefaultBorder, RedsiftColorLightComponentsPillsErrorDarkDefaultText, RedsiftColorLightComponentsPillsErrorDarkDisabledBackground, RedsiftColorLightComponentsPillsErrorDarkDisabledBorder, RedsiftColorLightComponentsPillsErrorDarkDisabledText, RedsiftColorLightComponentsPillsErrorDarkHoverBackground, RedsiftColorLightComponentsPillsErrorDarkHoverBorder, RedsiftColorLightComponentsPillsErrorDarkHoverText, RedsiftColorLightComponentsPillsErrorDefaultBackground, RedsiftColorLightComponentsPillsErrorDefaultBorder, RedsiftColorLightComponentsPillsErrorDefaultText, RedsiftColorLightComponentsPillsErrorDisabledBackground, RedsiftColorLightComponentsPillsErrorDisabledBorder, RedsiftColorLightComponentsPillsErrorDisabledText, RedsiftColorLightComponentsPillsErrorHoverBackground, RedsiftColorLightComponentsPillsErrorHoverBorder, RedsiftColorLightComponentsPillsErrorHoverText, RedsiftColorLightComponentsPillsGreenDefaultBackground, RedsiftColorLightComponentsPillsGreenDefaultBorder, RedsiftColorLightComponentsPillsGreenDefaultText, RedsiftColorLightComponentsPillsGreenDisabledBackground, RedsiftColorLightComponentsPillsGreenDisabledBorder, RedsiftColorLightComponentsPillsGreenDisabledText, RedsiftColorLightComponentsPillsGreenHoverBackground, RedsiftColorLightComponentsPillsGreenHoverBorder, RedsiftColorLightComponentsPillsGreenHoverText, RedsiftColorLightComponentsPillsGreyDefaultBackground, RedsiftColorLightComponentsPillsGreyDefaultBorder, RedsiftColorLightComponentsPillsGreyDefaultText, RedsiftColorLightComponentsPillsGreyDisabledBackground, RedsiftColorLightComponentsPillsGreyDisabledBorder, RedsiftColorLightComponentsPillsGreyDisabledText, RedsiftColorLightComponentsPillsGreyHoverBackground, RedsiftColorLightComponentsPillsGreyHoverBorder, RedsiftColorLightComponentsPillsGreyHoverText, RedsiftColorLightComponentsPillsLightGreyDefaultBackground, RedsiftColorLightComponentsPillsLightGreyDefaultBorder, RedsiftColorLightComponentsPillsLightGreyDefaultText, RedsiftColorLightComponentsPillsLightGreyDisabledBackground, RedsiftColorLightComponentsPillsLightGreyDisabledBorder, RedsiftColorLightComponentsPillsLightGreyDisabledText, RedsiftColorLightComponentsPillsLightGreyHoverBackground, RedsiftColorLightComponentsPillsLightGreyHoverBorder, RedsiftColorLightComponentsPillsLightGreyHoverText, RedsiftColorLightComponentsPillsMidGreyDefaultBackground, RedsiftColorLightComponentsPillsMidGreyDefaultBorder, RedsiftColorLightComponentsPillsMidGreyDefaultText, RedsiftColorLightComponentsPillsMidGreyDisabledBackground, RedsiftColorLightComponentsPillsMidGreyDisabledBorder, RedsiftColorLightComponentsPillsMidGreyDisabledText, RedsiftColorLightComponentsPillsMidGreyHoverBackground, RedsiftColorLightComponentsPillsMidGreyHoverBorder, RedsiftColorLightComponentsPillsMidGreyHoverText, RedsiftColorLightComponentsPillsOrangeDefaultBackground, RedsiftColorLightComponentsPillsOrangeDefaultBorder, RedsiftColorLightComponentsPillsOrangeDefaultText, RedsiftColorLightComponentsPillsOrangeDisabledBackground, RedsiftColorLightComponentsPillsOrangeDisabledBorder, RedsiftColorLightComponentsPillsOrangeDisabledText, RedsiftColorLightComponentsPillsOrangeHoverBackground, RedsiftColorLightComponentsPillsOrangeHoverBorder, RedsiftColorLightComponentsPillsOrangeHoverText, RedsiftColorLightComponentsPillsPinkDefaultBackground, RedsiftColorLightComponentsPillsPinkDefaultBorder, RedsiftColorLightComponentsPillsPinkDefaultText, RedsiftColorLightComponentsPillsPinkDisabledBackground, RedsiftColorLightComponentsPillsPinkDisabledBorder, RedsiftColorLightComponentsPillsPinkDisabledText, RedsiftColorLightComponentsPillsPinkHoverBackground, RedsiftColorLightComponentsPillsPinkHoverBorder, RedsiftColorLightComponentsPillsPinkHoverText, RedsiftColorLightComponentsPillsPurpleDefaultBackground, RedsiftColorLightComponentsPillsPurpleDefaultBorder, RedsiftColorLightComponentsPillsPurpleDefaultText, RedsiftColorLightComponentsPillsPurpleDisabledBackground, RedsiftColorLightComponentsPillsPurpleDisabledBorder, RedsiftColorLightComponentsPillsPurpleDisabledText, RedsiftColorLightComponentsPillsPurpleHoverBackground, RedsiftColorLightComponentsPillsPurpleHoverBorder, RedsiftColorLightComponentsPillsPurpleHoverText, RedsiftColorLightComponentsPillsRedDefaultBackground, RedsiftColorLightComponentsPillsRedDefaultBorder, RedsiftColorLightComponentsPillsRedDefaultText, RedsiftColorLightComponentsPillsRedDisabledBackground, RedsiftColorLightComponentsPillsRedDisabledBorder, RedsiftColorLightComponentsPillsRedDisabledText, RedsiftColorLightComponentsPillsRedHoverBackground, RedsiftColorLightComponentsPillsRedHoverBorder, RedsiftColorLightComponentsPillsRedHoverText, RedsiftColorLightComponentsPillsSuccessDarkDefaultBackground, RedsiftColorLightComponentsPillsSuccessDarkDefaultBorder, RedsiftColorLightComponentsPillsSuccessDarkDefaultText, RedsiftColorLightComponentsPillsSuccessDarkDisabledBackground, RedsiftColorLightComponentsPillsSuccessDarkDisabledBorder, RedsiftColorLightComponentsPillsSuccessDarkDisabledText, RedsiftColorLightComponentsPillsSuccessDarkHoverBackground, RedsiftColorLightComponentsPillsSuccessDarkHoverBorder, RedsiftColorLightComponentsPillsSuccessDarkHoverText, RedsiftColorLightComponentsPillsSuccessDefaultBackground, RedsiftColorLightComponentsPillsSuccessDefaultBorder, RedsiftColorLightComponentsPillsSuccessDefaultText, RedsiftColorLightComponentsPillsSuccessDisabledBackground, RedsiftColorLightComponentsPillsSuccessDisabledBorder, RedsiftColorLightComponentsPillsSuccessDisabledText, RedsiftColorLightComponentsPillsSuccessHoverBackground, RedsiftColorLightComponentsPillsSuccessHoverBorder, RedsiftColorLightComponentsPillsSuccessHoverText, RedsiftColorLightComponentsPillsWarningDarkDefaultBackground, RedsiftColorLightComponentsPillsWarningDarkDefaultBorder, RedsiftColorLightComponentsPillsWarningDarkDefaultText, RedsiftColorLightComponentsPillsWarningDarkDisabledBackground, RedsiftColorLightComponentsPillsWarningDarkDisabledBorder, RedsiftColorLightComponentsPillsWarningDarkDisabledText, RedsiftColorLightComponentsPillsWarningDarkHoverBackground, RedsiftColorLightComponentsPillsWarningDarkHoverBorder, RedsiftColorLightComponentsPillsWarningDarkHoverText, RedsiftColorLightComponentsPillsWarningDefaultBackground, RedsiftColorLightComponentsPillsWarningDefaultBorder, RedsiftColorLightComponentsPillsWarningDefaultText, RedsiftColorLightComponentsPillsWarningDisabledBackground, RedsiftColorLightComponentsPillsWarningDisabledBorder, RedsiftColorLightComponentsPillsWarningDisabledText, RedsiftColorLightComponentsPillsWarningHoverBackground, RedsiftColorLightComponentsPillsWarningHoverBorder, RedsiftColorLightComponentsPillsWarningHoverText, RedsiftColorLightComponentsPillsWhiteDefaultBackground, RedsiftColorLightComponentsPillsWhiteDefaultBorder, RedsiftColorLightComponentsPillsWhiteDefaultText, RedsiftColorLightComponentsPillsWhiteDisabledBackground, RedsiftColorLightComponentsPillsWhiteDisabledBorder, RedsiftColorLightComponentsPillsWhiteDisabledText, RedsiftColorLightComponentsPillsWhiteHoverBackground, RedsiftColorLightComponentsPillsWhiteHoverBorder, RedsiftColorLightComponentsPillsWhiteHoverText, RedsiftColorLightComponentsPillsXDarkGreyDefaultBackground, RedsiftColorLightComponentsPillsXDarkGreyDefaultBorder, RedsiftColorLightComponentsPillsXDarkGreyDefaultText, RedsiftColorLightComponentsPillsXDarkGreyDisabledBackground, RedsiftColorLightComponentsPillsXDarkGreyDisabledBorder, RedsiftColorLightComponentsPillsXDarkGreyDisabledText, RedsiftColorLightComponentsPillsXDarkGreyHoverBackground, RedsiftColorLightComponentsPillsXDarkGreyHoverBorder, RedsiftColorLightComponentsPillsXDarkGreyHoverText, RedsiftColorLightComponentsPillsXLightGreyDefaultBackground, RedsiftColorLightComponentsPillsXLightGreyDefaultBorder, RedsiftColorLightComponentsPillsXLightGreyDefaultText, RedsiftColorLightComponentsPillsXLightGreyDisabledBackground, RedsiftColorLightComponentsPillsXLightGreyDisabledBorder, RedsiftColorLightComponentsPillsXLightGreyDisabledText, RedsiftColorLightComponentsPillsXLightGreyHoverBackground, RedsiftColorLightComponentsPillsXLightGreyHoverBorder, RedsiftColorLightComponentsPillsXLightGreyHoverText, RedsiftColorLightComponentsPillsYellowDefaultBackground, RedsiftColorLightComponentsPillsYellowDefaultBorder, RedsiftColorLightComponentsPillsYellowDefaultText, RedsiftColorLightComponentsPillsYellowDisabledBackground, RedsiftColorLightComponentsPillsYellowDisabledBorder, RedsiftColorLightComponentsPillsYellowDisabledText, RedsiftColorLightComponentsPillsYellowHoverBackground, RedsiftColorLightComponentsPillsYellowHoverBorder, RedsiftColorLightComponentsPillsYellowHoverText, RedsiftColorLightComponentsProductLogosIconGrey, RedsiftColorLightComponentsProductLogosIconRed, RedsiftColorLightComponentsProductLogosTextGrey, RedsiftColorLightComponentsProductLogosTextRed, RedsiftColorLightComponentsProductLogosTextWhite, RedsiftColorLightComponentsRadioFillDefault, RedsiftColorLightComponentsRadioFillDefaultHover, RedsiftColorLightComponentsRadioFillDisabled, RedsiftColorLightComponentsRadioFillInvalid, RedsiftColorLightComponentsRadioFillInvalidHover, RedsiftColorLightComponentsRadioFillUncolored, RedsiftColorLightComponentsRadioFillUncoloredHover, RedsiftColorLightComponentsRadioTextDefault, RedsiftColorLightComponentsRadioTextDisabled, RedsiftColorLightComponentsRadioTextInvalid, RedsiftColorLightComponentsRedSiftLogoDiamondBottomLeft, RedsiftColorLightComponentsRedSiftLogoDiamondBottomRight, RedsiftColorLightComponentsRedSiftLogoDiamondDark, RedsiftColorLightComponentsRedSiftLogoDiamondLight, RedsiftColorLightComponentsRedSiftLogoDiamondMid, RedsiftColorLightComponentsRedSiftLogoDiamondTopRight, RedsiftColorLightComponentsRedSiftLogoIconBackground, RedsiftColorLightComponentsRedSiftLogoIconR, RedsiftColorLightComponentsRedSiftLogoTextGrey, RedsiftColorLightComponentsRedSiftLogoTextRed, RedsiftColorLightComponentsRedSiftLogoTextWhite, RedsiftColorLightComponentsSideNavigationBackground, RedsiftColorLightComponentsSideNavigationCurrentMarker, RedsiftColorLightComponentsSideNavigationMenuItemActive, RedsiftColorLightComponentsSideNavigationMenuItemBackgroundActive, RedsiftColorLightComponentsSideNavigationMenuItemBackgroundHover, RedsiftColorLightComponentsSideNavigationMenuItemBackgroundSecondary, RedsiftColorLightComponentsSideNavigationMenuItemTextDisabled, RedsiftColorLightComponentsSideNavigationMenuItemTextHover, RedsiftColorLightComponentsSideNavigationMenuItemTextResting, RedsiftColorLightComponentsSideNavigationRightLine, RedsiftColorLightComponentsSideNavigationScrollbarHover, RedsiftColorLightComponentsSideNavigationScrollbarResting, RedsiftColorLightComponentsSpinnerSpinner, RedsiftColorLightComponentsSwitchBackgroundDefault, RedsiftColorLightComponentsSwitchBackgroundDefaultActive, RedsiftColorLightComponentsSwitchBackgroundDisabled, RedsiftColorLightComponentsSwitchBackgroundDisabledActive, RedsiftColorLightComponentsSwitchBackgroundInvalid, RedsiftColorLightComponentsSwitchBackgroundInvalidActive, RedsiftColorLightComponentsSwitchBackgroundUncolored, RedsiftColorLightComponentsSwitchBackgroundUncoloredActive, RedsiftColorLightComponentsSwitchDotDefault, RedsiftColorLightComponentsSwitchDotDefaultHover, RedsiftColorLightComponentsSwitchDotDisabled, RedsiftColorLightComponentsSwitchDotInvalid, RedsiftColorLightComponentsSwitchDotInvalidHover, RedsiftColorLightComponentsSwitchDotUncolored, RedsiftColorLightComponentsSwitchDotUncoloredHover, RedsiftColorLightComponentsSwitchTextDefault, RedsiftColorLightComponentsSwitchTextDisabled, RedsiftColorLightComponentsSwitchTextInvalid, RedsiftColorLightComponentsTabsLine, RedsiftColorLightComponentsTextPrimary, RedsiftColorLightComponentsTextSecondary, RedsiftColorLightComponentsTooltipBackground, RedsiftColorLightComponentsTooltipText, RedsiftColorNeutralBlack, RedsiftColorNeutralDarkGrey, RedsiftColorNeutralDisabled, RedsiftColorNeutralLightGrey, RedsiftColorNeutralMidGrey, RedsiftColorNeutralWhite, RedsiftColorNeutralXDarkGrey, RedsiftColorNeutralXLightGrey, RedsiftColorNotificationsErrorActive, RedsiftColorNotificationsErrorHover, RedsiftColorNotificationsErrorPrimary, RedsiftColorNotificationsInfoActive, RedsiftColorNotificationsInfoHover, RedsiftColorNotificationsInfoPrimary, RedsiftColorNotificationsNoDataActive, RedsiftColorNotificationsNoDataHover, RedsiftColorNotificationsNoDataPrimary, RedsiftColorNotificationsPrimaryActive, RedsiftColorNotificationsPrimaryHover, RedsiftColorNotificationsPrimaryPrimary, RedsiftColorNotificationsQuestionActive, RedsiftColorNotificationsQuestionHover, RedsiftColorNotificationsQuestionPrimary, RedsiftColorNotificationsSecondaryActive, RedsiftColorNotificationsSecondaryHover, RedsiftColorNotificationsSecondaryPrimary, RedsiftColorNotificationsSuccessActive, RedsiftColorNotificationsSuccessHover, RedsiftColorNotificationsSuccessPrimary, RedsiftColorNotificationsWarningActive, RedsiftColorNotificationsWarningHover, RedsiftColorNotificationsWarningPrimary, RedsiftColorPresentationAquaDark, RedsiftColorPresentationAquaDarker, RedsiftColorPresentationAquaDarkerer, RedsiftColorPresentationAquaDefault, RedsiftColorPresentationAquaLight, RedsiftColorPresentationAquaLighter, RedsiftColorPresentationAquaLighterer, RedsiftColorPresentationBlueDark, RedsiftColorPresentationBlueDarker, RedsiftColorPresentationBlueDarkerer, RedsiftColorPresentationBlueDefault, RedsiftColorPresentationBlueLight, RedsiftColorPresentationBlueLighter, RedsiftColorPresentationBlueLighterer, RedsiftColorPresentationBrownDark, RedsiftColorPresentationBrownDarker, RedsiftColorPresentationBrownDarkerer, RedsiftColorPresentationBrownDefault, RedsiftColorPresentationBrownLight, RedsiftColorPresentationBrownLighter, RedsiftColorPresentationBrownLighterer, RedsiftColorPresentationGreenDark, RedsiftColorPresentationGreenDarker, RedsiftColorPresentationGreenDarkerer, RedsiftColorPresentationGreenDefault, RedsiftColorPresentationGreenLight, RedsiftColorPresentationGreenLighter, RedsiftColorPresentationGreenLighterer, RedsiftColorPresentationGreyDark, RedsiftColorPresentationGreyDarker, RedsiftColorPresentationGreyDarkerer, RedsiftColorPresentationGreyDefault, RedsiftColorPresentationGreyLight, RedsiftColorPresentationGreyLighter, RedsiftColorPresentationGreyLighterer, RedsiftColorPresentationOrangeDark, RedsiftColorPresentationOrangeDarker, RedsiftColorPresentationOrangeDarkerer, RedsiftColorPresentationOrangeDefault, RedsiftColorPresentationOrangeLight, RedsiftColorPresentationOrangeLighter, RedsiftColorPresentationOrangeLighterer, RedsiftColorPresentationPinkDark, RedsiftColorPresentationPinkDarker, RedsiftColorPresentationPinkDarkerer, RedsiftColorPresentationPinkDefault, RedsiftColorPresentationPinkLight, RedsiftColorPresentationPinkLighter, RedsiftColorPresentationPinkLighterer, RedsiftColorPresentationPurpleDark, RedsiftColorPresentationPurpleDarker, RedsiftColorPresentationPurpleDarkerer, RedsiftColorPresentationPurpleDefault, RedsiftColorPresentationPurpleLight, RedsiftColorPresentationPurpleLighter, RedsiftColorPresentationPurpleLighterer, RedsiftColorPresentationRedDark, RedsiftColorPresentationRedDarker, RedsiftColorPresentationRedDarkerer, RedsiftColorPresentationRedDefault, RedsiftColorPresentationRedLight, RedsiftColorPresentationRedLighter, RedsiftColorPresentationRedLighterer, RedsiftColorPresentationYellowDark, RedsiftColorPresentationYellowDarker, RedsiftColorPresentationYellowDarkerer, RedsiftColorPresentationYellowDefault, RedsiftColorPresentationYellowLight, RedsiftColorPresentationYellowLighter, RedsiftColorPresentationYellowLighterer, RedsiftColorPrimaryD1, RedsiftColorPrimaryD2, RedsiftColorPrimaryD3, RedsiftColorPrimaryD4, RedsiftColorPrimaryL1, RedsiftColorPrimaryL2, RedsiftColorPrimaryL3, RedsiftColorPrimaryL4, RedsiftColorPrimaryN, RedsiftColorProductAsm, RedsiftColorProductBrandTrust, RedsiftColorProductCertificates, RedsiftColorProductHardenize, RedsiftColorProductOnDmarc, RedsiftColorProductOnInbox, RedsiftColorProductOndmarc, RedsiftColorProductOninbox, RedsiftColorProductPulse, RedsiftColorProductRadar, RedsiftColorProductRojoDs, RedsiftColorProductVendorSecure, RedsiftColorProductWebsite, RedsiftColorRedD1, RedsiftColorRedD2, RedsiftColorRedD3, RedsiftColorRedD4, RedsiftColorRedL1, RedsiftColorRedL2, RedsiftColorRedL3, RedsiftColorRedL4, RedsiftColorRedN, RedsiftColorSecondaryD1, RedsiftColorSecondaryD2, RedsiftColorSecondaryD3, RedsiftColorSecondaryD4, RedsiftColorSecondaryL1, RedsiftColorSecondaryL2, RedsiftColorSecondaryL3, RedsiftColorSecondaryL4, RedsiftColorSecondaryN, RedsiftColorTealD1, RedsiftColorTealD2, RedsiftColorTealD3, RedsiftColorTealD4, RedsiftColorTealL1, RedsiftColorTealL2, RedsiftColorTealL3, RedsiftColorTealL4, RedsiftColorTealN, RedsiftColorTextPrimary, RedsiftColorTextSecondary, RedsiftColorYellowD1, RedsiftColorYellowD2, RedsiftColorYellowD3, RedsiftColorYellowD4, RedsiftColorYellowL1, RedsiftColorYellowL2, RedsiftColorYellowL3, RedsiftColorYellowL4, RedsiftColorYellowN, RedsiftLayoutZIndexDialog, RedsiftLayoutZIndexDropdown, RedsiftLayoutZIndexFooter, RedsiftLayoutZIndexHeader, RedsiftLayoutZIndexOverlay, RedsiftLayoutZIndexPopover, RedsiftLayoutZIndexSidePanel, RedsiftLayoutZIndexTooltip, RedsiftTypographyBadgeFontFamily, RedsiftTypographyBadgeFontSize, RedsiftTypographyBadgeFontWeight, RedsiftTypographyBadgeLineHeight, RedsiftTypographyBodyFontFamily, RedsiftTypographyBodyFontSize, RedsiftTypographyBodyFontWeight, RedsiftTypographyBodyLineHeight, RedsiftTypographyBodyTextTransform, RedsiftTypographyButtonFontFamily, RedsiftTypographyButtonFontSize, RedsiftTypographyButtonFontWeight, RedsiftTypographyButtonLineHeight, RedsiftTypographyButtonTextTransform, RedsiftTypographyCaptionFontFamily, RedsiftTypographyCaptionFontSize, RedsiftTypographyCaptionFontWeight, RedsiftTypographyCaptionLineHeight, RedsiftTypographyCaptionTextTransform, RedsiftTypographyChipFontFamily, RedsiftTypographyChipFontSize, RedsiftTypographyChipFontWeight, RedsiftTypographyChipLineHeight, RedsiftTypographyDatagridCellFontFamily, RedsiftTypographyDatagridCellFontSize, RedsiftTypographyDatagridCellFontWeight, RedsiftTypographyDatagridCellLineHeight, RedsiftTypographyDatagridHeaderFontFamily, RedsiftTypographyDatagridHeaderFontSize, RedsiftTypographyDatagridHeaderFontWeight, RedsiftTypographyDatagridHeaderLineHeight, RedsiftTypographyFontFamilyPoppins, RedsiftTypographyFontFamilySourceCodePro, RedsiftTypographyFontWeightBlack, RedsiftTypographyFontWeightBold, RedsiftTypographyFontWeightExtraBold, RedsiftTypographyFontWeightExtraLight, RedsiftTypographyFontWeightLight, RedsiftTypographyFontWeightMedium, RedsiftTypographyFontWeightRegular, RedsiftTypographyFontWeightSemiBold, RedsiftTypographyFontWeightThin, RedsiftTypographyH1FontFamily, RedsiftTypographyH1FontSize, RedsiftTypographyH1FontWeight, RedsiftTypographyH1LineHeight, RedsiftTypographyH1TextTransform, RedsiftTypographyH2FontFamily, RedsiftTypographyH2FontSize, RedsiftTypographyH2FontWeight, RedsiftTypographyH2LineHeight, RedsiftTypographyH2TextTransform, RedsiftTypographyH3FontFamily, RedsiftTypographyH3FontSize, RedsiftTypographyH3FontWeight, RedsiftTypographyH3LineHeight, RedsiftTypographyH3TextTransform, RedsiftTypographyH4FontFamily, RedsiftTypographyH4FontSize, RedsiftTypographyH4FontWeight, RedsiftTypographyH4LineHeight, RedsiftTypographyH4TextTransform, RedsiftTypographyH5FontFamily, RedsiftTypographyH5FontSize, RedsiftTypographyH5FontWeight, RedsiftTypographyH5LineHeight, RedsiftTypographyH5TextTransform, RedsiftTypographyHelperFontFamily, RedsiftTypographyHelperFontSize, RedsiftTypographyHelperFontWeight, RedsiftTypographyHelperLineHeight, RedsiftTypographyHelperTextTransform, RedsiftTypographyInputTextFontFamily, RedsiftTypographyInputTextFontSize, RedsiftTypographyInputTextFontWeight, RedsiftTypographyInputTextLineHeight, RedsiftTypographyLinkFontFamily, RedsiftTypographyLinkFontSize, RedsiftTypographyLinkFontWeight, RedsiftTypographyLinkLineHeight, RedsiftTypographyPillFontFamily, RedsiftTypographyPillFontSize, RedsiftTypographyPillFontWeight, RedsiftTypographyPillLineHeight, RedsiftTypographyTooltipFontFamily, RedsiftTypographyTooltipFontSize, RedsiftTypographyTooltipFontWeight, RedsiftTypographyTooltipLineHeight, RovingTabindexListbox, RowStartMap, SSRProvider, SSRProviderProps, SecondaryColorPalette, Shield, ShieldProps, ShieldVariant, SideNavigationMenu, SideNavigationMenuBar, SideNavigationMenuBarContextProps, SideNavigationMenuBarProps, SideNavigationMenuBarVariant, SideNavigationMenuContextProps, SideNavigationMenuItem, SideNavigationMenuItemProps, SideNavigationMenuProps, SideNavigationMenuReducerAction, SideNavigationMenuReducerActionType, SideNavigationMenuReducerState, SizingProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkeletonTextVariant, SpacingProps, Spinner, SpinnerProps, SpinnerSize, StyledAlertProps, StyledAppBarProps, StyledAppContainerProps, StyledAppContentProps, StyledAppSidePanelProps, StyledBadgeProps, StyledBreadcrumbItemProps, StyledBreadcrumbsProps, StyledButton, StyledButtonGroupProps, StyledButtonLinkProps, StyledButtonProps, StyledCardActionsProps, StyledCardBodyProps, StyledCardHeaderProps, StyledCardProps, StyledCheckboxGroupProps, StyledCheckboxProps, StyledDetailedCardCollapsibleSectionItemsProps, StyledDetailedCardHeaderProps, StyledDetailedCardProps, StyledDetailedCardSectionItemProps, StyledDetailedCardSectionProps, StyledFlexboxProps, StyledGradientBorder, StyledGridItemProps, StyledGridProps, StyledHeadingProps, StyledIconButtonLinkProps, StyledIconButtonProps, StyledIconProps, StyledItem, StyledItemProps, StyledLink, StyledLinkButtonProps, StyledLinkProps, StyledListboxProps, StyledNumberFieldProps, StyledNumberProps, StyledPillProps, StyledRadioGroupProps, StyledRadioProps, StyledShieldProps, StyledSideNavigationMenuBarProps, StyledSideNavigationMenuItemProps, StyledSideNavigationMenuProps, StyledSkeletonCircleProps, StyledSkeletonProps, StyledSkeletonTextProps, StyledSpinnerProps, StyledSwitchGroupProps, StyledSwitchProps, StyledTextAreaProps, StyledTextField, StyledTextFieldProps, StyledTextProps, StylingProps, Switch, SwitchGroup, SwitchGroupOrientation, SwitchGroupProps, SwitchGroupState, SwitchProps, TabStop, Text, TextArea, TextAreaProps, TextAreaVariant, TextComponent, TextField, TextFieldColor, TextFieldProps, TextFieldVariant, TextProps, TextVariant, Theme, ThemeContext, ThemeProvider, UseFocusGroupProps, UseFocusWithinGroupProps, UseListboxItemProps, UseSideNavigationMenuBarProps, ValueOf, baseBorder, baseContainer, baseFlexbox, baseGrid, baseInternalSpacing, baseLayout, basePositioning, baseSizing, baseSpacing, baseStyling, filterComponents, focusRing, getCanvasFont, getContainerProps, getCssStyle, getMaxTextWidth, getTextWidth, isComponent, nextId, partitionComponents, resetId, setPrefix, sizeToDimension, srOnly, uniqueId, useAppSidePanel, useBoundingClientRect, useCollator, useComputeNumberOfRows, useDateFormatter, useFilter, useFocusOnList, useFocusOnListItem, useId, useIsLoaded, useIsSSR, useListFormatter, useListboxItem, useLocale, useLocalizedStringDictionary, useLocalizedStringFormatter, useMessageFormatter, useNumberFormatter, useSSRSafeId, useSideNavigationMenuBar, useTheme, useWindowSize, warnIfNoAccessibleLabelFound };
|