@redsift/design-system 9.6.0 → 10.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +2 -2
- package/index.d.ts +934 -173
- package/index.js +1697 -666
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/style/index.css +736 -145
- package/style/redsift-design-tokens.css +727 -136
- package/style/redsift-style.css +9 -9
- package/style/redsift.css +736 -145
package/index.d.ts
CHANGED
|
@@ -75,18 +75,60 @@ type ProductLogo = ValueOf<typeof ProductLogo>;
|
|
|
75
75
|
/**
|
|
76
76
|
* Color palette.
|
|
77
77
|
*/
|
|
78
|
-
declare const
|
|
78
|
+
declare const Theme: {
|
|
79
|
+
readonly light: "light";
|
|
80
|
+
readonly dark: "dark";
|
|
81
|
+
};
|
|
82
|
+
type Theme = ValueOf<typeof Theme>;
|
|
83
|
+
declare const PrimaryColorPalette: {
|
|
79
84
|
readonly primary: "primary";
|
|
80
85
|
readonly secondary: "secondary";
|
|
86
|
+
readonly error: "error";
|
|
81
87
|
};
|
|
82
|
-
type
|
|
83
|
-
declare const
|
|
88
|
+
type PrimaryColorPalette = ValueOf<typeof PrimaryColorPalette>;
|
|
89
|
+
declare const SecondaryColorPalette: {
|
|
84
90
|
readonly success: "success";
|
|
85
|
-
readonly error: "error";
|
|
86
91
|
readonly warning: "warning";
|
|
87
92
|
readonly info: "info";
|
|
93
|
+
};
|
|
94
|
+
type SecondaryColorPalette = ValueOf<typeof SecondaryColorPalette>;
|
|
95
|
+
declare const ColorPalette: {
|
|
96
|
+
readonly success: "success";
|
|
97
|
+
readonly warning: "warning";
|
|
98
|
+
readonly info: "info";
|
|
99
|
+
readonly primary: "primary";
|
|
100
|
+
readonly secondary: "secondary";
|
|
101
|
+
readonly error: "error";
|
|
102
|
+
};
|
|
103
|
+
type ColorPalette = PrimaryColorPalette & SecondaryColorPalette;
|
|
104
|
+
declare const PrimaryButtonsColorPalette: {
|
|
105
|
+
primary: string;
|
|
106
|
+
secondary: string;
|
|
107
|
+
error: string;
|
|
108
|
+
success: string;
|
|
109
|
+
warning: string;
|
|
110
|
+
grey: string;
|
|
111
|
+
};
|
|
112
|
+
type PrimaryButtonsColorPalette = ValueOf<typeof PrimaryButtonsColorPalette>;
|
|
113
|
+
declare const ButtonsColorPalette: {
|
|
114
|
+
readonly info: "info";
|
|
115
|
+
readonly primary: string;
|
|
116
|
+
readonly secondary: string;
|
|
117
|
+
readonly error: string;
|
|
118
|
+
readonly success: string;
|
|
119
|
+
readonly warning: string;
|
|
120
|
+
readonly grey: string;
|
|
121
|
+
};
|
|
122
|
+
type ButtonsColorPalette = ValueOf<typeof ButtonsColorPalette>;
|
|
123
|
+
declare const NotificationsColorPalette: {
|
|
88
124
|
readonly question: "question";
|
|
89
125
|
readonly 'no-data': "no-data";
|
|
126
|
+
readonly success: "success";
|
|
127
|
+
readonly warning: "warning";
|
|
128
|
+
readonly info: "info";
|
|
129
|
+
readonly primary: "primary";
|
|
130
|
+
readonly secondary: "secondary";
|
|
131
|
+
readonly error: "error";
|
|
90
132
|
};
|
|
91
133
|
type NotificationsColorPalette = ValueOf<typeof NotificationsColorPalette>;
|
|
92
134
|
declare const ProductColorPalette: {
|
|
@@ -116,10 +158,11 @@ declare const PresentationColorPalette: {
|
|
|
116
158
|
type PresentationColorPalette = ValueOf<typeof PresentationColorPalette>;
|
|
117
159
|
declare const NeutralColorPalette: {
|
|
118
160
|
readonly black: "black";
|
|
119
|
-
readonly
|
|
120
|
-
readonly
|
|
121
|
-
readonly
|
|
122
|
-
readonly
|
|
161
|
+
readonly 'x-dark-grey': "x-dark-grey";
|
|
162
|
+
readonly 'dark-grey': "dark-grey";
|
|
163
|
+
readonly 'mid-grey': "mid-grey";
|
|
164
|
+
readonly 'light-grey': "light-grey";
|
|
165
|
+
readonly 'x-light-grey': "x-light-grey";
|
|
123
166
|
readonly white: "white";
|
|
124
167
|
};
|
|
125
168
|
type NeutralColorPalette = ValueOf<typeof NeutralColorPalette>;
|
|
@@ -416,84 +459,684 @@ declare function partitionComponents<T>(components: T[], predicates: Array<(t: T
|
|
|
416
459
|
|
|
417
460
|
/**
|
|
418
461
|
* Do not edit directly
|
|
419
|
-
* Generated on Wed,
|
|
420
|
-
*/
|
|
421
|
-
declare const
|
|
462
|
+
* Generated on Wed, 06 Mar 2024 15:52:38 GMT
|
|
463
|
+
*/
|
|
464
|
+
declare const RedsiftColorDarkComponentsPageBackground = "#333333";
|
|
465
|
+
declare const RedsiftColorDarkComponentsTextPrimary = "#ffffff";
|
|
466
|
+
declare const RedsiftColorDarkComponentsTextSecondary = "#f2f2f2";
|
|
467
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoTextRed = "#ffffff";
|
|
468
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoTextWhite = "#ffffff";
|
|
469
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoTextGrey = "#ffffff";
|
|
470
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoIconBackground = "#ffffff";
|
|
471
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoIconR = "#e11010";
|
|
472
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoDiamondTopRight = "#ffb3b3";
|
|
473
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoDiamondBottomLeft = "#e24e4e";
|
|
474
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoDiamondBottomRight = "#ff8181";
|
|
475
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoDiamondDark = "#e24e4e";
|
|
476
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoDiamondMid = "#ff8181";
|
|
477
|
+
declare const RedsiftColorDarkComponentsRedSiftLogoDiamondLight = "#ffb3b3";
|
|
478
|
+
declare const RedsiftColorDarkComponentsProductLogosTextGrey = "#ffffff";
|
|
479
|
+
declare const RedsiftColorDarkComponentsProductLogosTextRed = "#ffffff";
|
|
480
|
+
declare const RedsiftColorDarkComponentsProductLogosTextWhite = "#ffffff";
|
|
481
|
+
declare const RedsiftColorDarkComponentsProductLogosIconRed = "#e11010";
|
|
482
|
+
declare const RedsiftColorDarkComponentsProductLogosIconGrey = "#ffffff";
|
|
483
|
+
declare const RedsiftColorDarkComponentsSideNavigationBackground = "#474747";
|
|
484
|
+
declare const RedsiftColorDarkComponentsSideNavigationMenuItemTextResting = "#f2f2f2";
|
|
485
|
+
declare const RedsiftColorDarkComponentsSideNavigationMenuItemTextDisabled = "#666666";
|
|
486
|
+
declare const RedsiftColorDarkComponentsSideNavigationMenuItemTextHover = "#ffffff";
|
|
487
|
+
declare const RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundHover = "#666666";
|
|
488
|
+
declare const RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundSecondary = "transparent";
|
|
489
|
+
declare const RedsiftColorDarkComponentsSideNavigationMenuItemBackgroundActive = "#e0e0e0";
|
|
490
|
+
declare const RedsiftColorDarkComponentsSideNavigationMenuItemActive = "#1c1c1c";
|
|
491
|
+
declare const RedsiftColorDarkComponentsSideNavigationScrollbarResting = "#666666";
|
|
492
|
+
declare const RedsiftColorDarkComponentsSideNavigationScrollbarHover = "#666666";
|
|
493
|
+
declare const RedsiftColorDarkComponentsSideNavigationRightLine = "#1c1c1c";
|
|
494
|
+
declare const RedsiftColorDarkComponentsSideNavigationCurrentMarker = "#f2f2f2";
|
|
495
|
+
declare const RedsiftColorDarkComponentsAppBarBackground = "#333333";
|
|
496
|
+
declare const RedsiftColorDarkComponentsAppBarBreadcrumbDefault = "#ffffff";
|
|
497
|
+
declare const RedsiftColorDarkComponentsAppBarBreadcrumbHover = "#142849";
|
|
498
|
+
declare const RedsiftColorDarkComponentsAppBarBreadcrumbDown = "#0d1b31";
|
|
499
|
+
declare const RedsiftColorDarkComponentsAppBarIconBackgroundHover = "#666666";
|
|
500
|
+
declare const RedsiftColorDarkComponentsAppBarIconBackgroundDown = "#e0e0e0";
|
|
501
|
+
declare const RedsiftColorDarkComponentsAppBarIconBackgroundActive = "#666666";
|
|
502
|
+
declare const RedsiftColorDarkComponentsAppBarIconBackgroundActiveHover = "#e0e0e0";
|
|
503
|
+
declare const RedsiftColorDarkComponentsAppBarIconBackgroundActiveDown = "#e0e0e0";
|
|
504
|
+
declare const RedsiftColorDarkComponentsAppBarBorder = "#1c1c1c";
|
|
505
|
+
declare const RedsiftColorDarkComponentsTooltipBackground = "#666666";
|
|
506
|
+
declare const RedsiftColorDarkComponentsTooltipText = "#ffffff";
|
|
507
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundDefault = "#4285f4";
|
|
508
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundHover = "#3b78dc";
|
|
509
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundActive = "#2e5dab";
|
|
510
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryBackgroundDisabled = "#474747";
|
|
511
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextDefault = "#ffffff";
|
|
512
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextHover = "#ffffff";
|
|
513
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextActive = "#ffffff";
|
|
514
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonPrimaryTextDisabled = "#858585";
|
|
515
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundDefault = "#51b7a4";
|
|
516
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundHover = "#49a594";
|
|
517
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundActive = "#398073";
|
|
518
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryBackgroundDisabled = "#474747";
|
|
519
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextDefault = "#ffffff";
|
|
520
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextHover = "#ffffff";
|
|
521
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextActive = "#ffffff";
|
|
522
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSecondaryTextDisabled = "#858585";
|
|
523
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundDefault = "#02ac61";
|
|
524
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundHover = "#029b57";
|
|
525
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundActive = "#017844";
|
|
526
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessBackgroundDisabled = "#474747";
|
|
527
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextDefault = "#ffffff";
|
|
528
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextHover = "#ffffff";
|
|
529
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextActive = "#ffffff";
|
|
530
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonSuccessTextDisabled = "#858585";
|
|
531
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundDefault = "#e11010";
|
|
532
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundHover = "#cb0e0e";
|
|
533
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundActive = "#9e0b0b";
|
|
534
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorBackgroundDisabled = "#474747";
|
|
535
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextDefault = "#ffffff";
|
|
536
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextHover = "#ffffff";
|
|
537
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextActive = "#ffffff";
|
|
538
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonErrorTextDisabled = "#858585";
|
|
539
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundDefault = "#fcbb54";
|
|
540
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundHover = "#e3a84c";
|
|
541
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundActive = "#b0833b";
|
|
542
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningBackgroundDisabled = "#474747";
|
|
543
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextDefault = "#ffffff";
|
|
544
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextHover = "#ffffff";
|
|
545
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextActive = "#ffffff";
|
|
546
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonWarningTextDisabled = "#858585";
|
|
547
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundDefault = "#4285f4";
|
|
548
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundHover = "#3b78dc";
|
|
549
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundActive = "#2e5dab";
|
|
550
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoBackgroundDisabled = "#474747";
|
|
551
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextDefault = "#ffffff";
|
|
552
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextHover = "#ffffff";
|
|
553
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextActive = "#ffffff";
|
|
554
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonInfoTextDisabled = "#858585";
|
|
555
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundDefault = "#666666";
|
|
556
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundHover = "#5c5c5c";
|
|
557
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundActive = "#525252";
|
|
558
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyBackgroundDisabled = "#474747";
|
|
559
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDefault = "#ffffff";
|
|
560
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextHover = "#ffffff";
|
|
561
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextActive = "#ffffff";
|
|
562
|
+
declare const RedsiftColorDarkComponentsButtonsPrimaryButtonGreyTextDisabled = "#858585";
|
|
563
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundDefault = "transparent";
|
|
564
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundHover = "#142849";
|
|
565
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundActive = "#0d1b31";
|
|
566
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryBackgroundDisabled = "#333333";
|
|
567
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextDefault = "#4285f4";
|
|
568
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextHover = "#689df6";
|
|
569
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextActive = "#8eb6f8";
|
|
570
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonPrimaryTextDisabled = "#858585";
|
|
571
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundDefault = "transparent";
|
|
572
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundHover = "#183731";
|
|
573
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundActive = "#102521";
|
|
574
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryBackgroundDisabled = "#333333";
|
|
575
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextDefault = "#51b7a4";
|
|
576
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextHover = "#74c5b6";
|
|
577
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextActive = "#97d4c8";
|
|
578
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSecondaryTextDisabled = "#858585";
|
|
579
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundDefault = "transparent";
|
|
580
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundHover = "#01341d";
|
|
581
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundActive = "#002213";
|
|
582
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessBackgroundDisabled = "#333333";
|
|
583
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextDefault = "#02ac61";
|
|
584
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextHover = "#35bd81";
|
|
585
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextActive = "#67cda0";
|
|
586
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonSuccessTextDisabled = "#858585";
|
|
587
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundDefault = "transparent";
|
|
588
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundHover = "#430505";
|
|
589
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundActive = "#2d0303";
|
|
590
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorBackgroundDisabled = "#333333";
|
|
591
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextDefault = "#e11010";
|
|
592
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextHover = "#e74040";
|
|
593
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextActive = "#ed7070";
|
|
594
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonErrorTextDisabled = "#858585";
|
|
595
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundDefault = "transparent";
|
|
596
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundHover = "#4c3819";
|
|
597
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundActive = "#322511";
|
|
598
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningBackgroundDisabled = "#333333";
|
|
599
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextDefault = "#fcbb54";
|
|
600
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextHover = "#fdc976";
|
|
601
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextActive = "#fdd698";
|
|
602
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonWarningTextDisabled = "#858585";
|
|
603
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundDefault = "transparent";
|
|
604
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundHover = "#142849";
|
|
605
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundActive = "#0d1b31";
|
|
606
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoBackgroundDisabled = "#333333";
|
|
607
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextDefault = "#4285f4";
|
|
608
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextHover = "#689df6";
|
|
609
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextActive = "#8eb6f8";
|
|
610
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonInfoTextDisabled = "#858585";
|
|
611
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDefault = "transparent";
|
|
612
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundHover = "#474747";
|
|
613
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundActive = "#333333";
|
|
614
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyBackgroundDisabled = "#333333";
|
|
615
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDefault = "#666666";
|
|
616
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextHover = "#858585";
|
|
617
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextActive = "#a3a3a3";
|
|
618
|
+
declare const RedsiftColorDarkComponentsButtonsSecondaryButtonGreyTextDisabled = "#858585";
|
|
619
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundDefault = "transparent";
|
|
620
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundHover = "#142849";
|
|
621
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundActive = "#0d1b31";
|
|
622
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled = "#333333";
|
|
623
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextDefault = "#4285f4";
|
|
624
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextHover = "#689df6";
|
|
625
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextActive = "#8eb6f8";
|
|
626
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonPrimaryTextDisabled = "#858585";
|
|
627
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundDefault = "transparent";
|
|
628
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundHover = "#183731";
|
|
629
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundActive = "#102521";
|
|
630
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled = "#333333";
|
|
631
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextDefault = "#51b7a4";
|
|
632
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextHover = "#74c5b6";
|
|
633
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextActive = "#97d4c8";
|
|
634
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSecondaryTextDisabled = "#858585";
|
|
635
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundDefault = "transparent";
|
|
636
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundHover = "#01341d";
|
|
637
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundActive = "#002213";
|
|
638
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessBackgroundDisabled = "#333333";
|
|
639
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextDefault = "#02ac61";
|
|
640
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextHover = "#35bd81";
|
|
641
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextActive = "#67cda0";
|
|
642
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonSuccessTextDisabled = "#858585";
|
|
643
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundDefault = "transparent";
|
|
644
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundHover = "#430505";
|
|
645
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundActive = "#2d0303";
|
|
646
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorBackgroundDisabled = "#333333";
|
|
647
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextDefault = "#e11010";
|
|
648
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextHover = "#e74040";
|
|
649
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextActive = "#ed7070";
|
|
650
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonErrorTextDisabled = "#858585";
|
|
651
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundDefault = "transparent";
|
|
652
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundHover = "#4c3819";
|
|
653
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundActive = "#322511";
|
|
654
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningBackgroundDisabled = "#333333";
|
|
655
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextDefault = "#fcbb54";
|
|
656
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextHover = "#fdc976";
|
|
657
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextActive = "#fdd698";
|
|
658
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonWarningTextDisabled = "#858585";
|
|
659
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundDefault = "transparent";
|
|
660
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundHover = "#142849";
|
|
661
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundActive = "#0d1b31";
|
|
662
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoBackgroundDisabled = "#333333";
|
|
663
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextDefault = "#4285f4";
|
|
664
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextHover = "#689df6";
|
|
665
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextActive = "#8eb6f8";
|
|
666
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonInfoTextDisabled = "#858585";
|
|
667
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDefault = "transparent";
|
|
668
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundHover = "#474747";
|
|
669
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundActive = "#333333";
|
|
670
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyBackgroundDisabled = "#333333";
|
|
671
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDefault = "#666666";
|
|
672
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextHover = "#858585";
|
|
673
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextActive = "#a3a3a3";
|
|
674
|
+
declare const RedsiftColorDarkComponentsButtonsUnstyledButtonGreyTextDisabled = "#858585";
|
|
675
|
+
declare const RedsiftColorDarkComponentsAiAiBorder = "#e11010";
|
|
676
|
+
declare const RedsiftColorDarkComponentsAiAiIcon = "#e11010";
|
|
677
|
+
declare const RedsiftColorDarkComponentsSpinnerSpinner = "#142849";
|
|
678
|
+
declare const RedsiftColorDarkComponentsAlertSuccessBackground = "#029b57";
|
|
679
|
+
declare const RedsiftColorDarkComponentsAlertSuccessIcon = "#017844";
|
|
680
|
+
declare const RedsiftColorDarkComponentsAlertText = "#f2f2f2";
|
|
681
|
+
declare const RedsiftColorDarkComponentsAlertErrorBackground = "#cb0e0e";
|
|
682
|
+
declare const RedsiftColorDarkComponentsAlertErrorIcon = "#9e0b0b";
|
|
683
|
+
declare const RedsiftColorDarkComponentsAlertWarningBackground = "#e3a84c";
|
|
684
|
+
declare const RedsiftColorDarkComponentsAlertWarningIcon = "#b0833b";
|
|
685
|
+
declare const RedsiftColorDarkComponentsAlertInfoBackground = "#3b78dc";
|
|
686
|
+
declare const RedsiftColorDarkComponentsAlertInfoIcon = "#2e5dab";
|
|
687
|
+
declare const RedsiftColorDarkComponentsIconsDefault = "#f2f2f2";
|
|
688
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusDefaultBackground = "#474747";
|
|
689
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusDefaultText = "#ffffff";
|
|
690
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusDividers = "#666666";
|
|
691
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusHoverBackground = "#666666";
|
|
692
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusHoverText = "#ffffff";
|
|
693
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusClickBackground = "#e0e0e0";
|
|
694
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusClickText = "#1c1c1c";
|
|
695
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveText = "#ffffff";
|
|
696
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveBackground = "#4285f4";
|
|
697
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveHoverText = "#ffffff";
|
|
698
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveHoverBackground = "#3b78dc";
|
|
699
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveClickText = "#1c1c1c";
|
|
700
|
+
declare const RedsiftColorDarkComponentsDropdownsAndMenusToggleActiveClickBackground = "#e0e0e0";
|
|
701
|
+
declare const RedsiftColorDarkComponentsCheckboxFillDefault = "#4285f4";
|
|
702
|
+
declare const RedsiftColorDarkComponentsCheckboxFillDefaultHover = "#142849";
|
|
703
|
+
declare const RedsiftColorDarkComponentsCheckboxFillUncolored = "#666666";
|
|
704
|
+
declare const RedsiftColorDarkComponentsCheckboxFillUncoloredHover = "#474747";
|
|
705
|
+
declare const RedsiftColorDarkComponentsCheckboxFillDisabled = "#e0e0e0";
|
|
706
|
+
declare const RedsiftColorDarkComponentsCheckboxFillInvalid = "#e11010";
|
|
707
|
+
declare const RedsiftColorDarkComponentsCheckboxFillInvalidHover = "#f39f9f";
|
|
708
|
+
declare const RedsiftColorDarkComponentsCheckboxTextDefault = "#ffffff";
|
|
709
|
+
declare const RedsiftColorDarkComponentsCheckboxTextInvalid = "#e11010";
|
|
710
|
+
declare const RedsiftColorDarkComponentsCheckboxTextDisabled = "#e0e0e0";
|
|
711
|
+
declare const RedsiftColorDarkComponentsRadioFillDefault = "#4285f4";
|
|
712
|
+
declare const RedsiftColorDarkComponentsRadioFillDefaultHover = "#142849";
|
|
713
|
+
declare const RedsiftColorDarkComponentsRadioFillUncolored = "#666666";
|
|
714
|
+
declare const RedsiftColorDarkComponentsRadioFillUncoloredHover = "#474747";
|
|
715
|
+
declare const RedsiftColorDarkComponentsRadioFillDisabled = "#e0e0e0";
|
|
716
|
+
declare const RedsiftColorDarkComponentsRadioFillInvalid = "#e11010";
|
|
717
|
+
declare const RedsiftColorDarkComponentsRadioFillInvalidHover = "#f39f9f";
|
|
718
|
+
declare const RedsiftColorDarkComponentsRadioTextDefault = "#ffffff";
|
|
719
|
+
declare const RedsiftColorDarkComponentsRadioTextInvalid = "#e11010";
|
|
720
|
+
declare const RedsiftColorDarkComponentsRadioTextDisabled = "#e0e0e0";
|
|
721
|
+
declare const RedsiftColorDarkComponentsSwitchDotDefault = "#0d1b31";
|
|
722
|
+
declare const RedsiftColorDarkComponentsSwitchDotDefaultHover = "#3b78dc";
|
|
723
|
+
declare const RedsiftColorDarkComponentsSwitchDotUncolored = "#666666";
|
|
724
|
+
declare const RedsiftColorDarkComponentsSwitchDotUncoloredHover = "#474747";
|
|
725
|
+
declare const RedsiftColorDarkComponentsSwitchDotDisabled = "#0d1b31";
|
|
726
|
+
declare const RedsiftColorDarkComponentsSwitchDotInvalid = "#0d1b31";
|
|
727
|
+
declare const RedsiftColorDarkComponentsSwitchDotInvalidHover = "#f39f9f";
|
|
728
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundDefault = "#3b78dc";
|
|
729
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundDefaultActive = "#4285f4";
|
|
730
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundUncolored = "#474747";
|
|
731
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundUncoloredActive = "#666666";
|
|
732
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundDisabled = "#e0e0e0";
|
|
733
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundDisabledActive = "#e0e0e0";
|
|
734
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundInvalid = "#f39f9f";
|
|
735
|
+
declare const RedsiftColorDarkComponentsSwitchBackgroundInvalidActive = "#e11010";
|
|
736
|
+
declare const RedsiftColorDarkComponentsSwitchTextDefault = "#ffffff";
|
|
737
|
+
declare const RedsiftColorDarkComponentsSwitchTextInvalid = "#e11010";
|
|
738
|
+
declare const RedsiftColorDarkComponentsSwitchTextDisabled = "#e0e0e0";
|
|
739
|
+
declare const RedsiftColorDarkComponentsTabsLine = "#666666";
|
|
740
|
+
declare const RedsiftColorDarkComponentsModalBackground = "#1c1c1c";
|
|
741
|
+
declare const RedsiftColorLightComponentsPageBackground = "#ffffff";
|
|
742
|
+
declare const RedsiftColorLightComponentsTextPrimary = "#333333";
|
|
743
|
+
declare const RedsiftColorLightComponentsTextSecondary = "#474747";
|
|
744
|
+
declare const RedsiftColorLightComponentsRedSiftLogoTextRed = "#e11010";
|
|
745
|
+
declare const RedsiftColorLightComponentsRedSiftLogoTextWhite = "#ffffff";
|
|
746
|
+
declare const RedsiftColorLightComponentsRedSiftLogoTextGrey = "#333333";
|
|
747
|
+
declare const RedsiftColorLightComponentsRedSiftLogoIconBackground = "#e11010";
|
|
748
|
+
declare const RedsiftColorLightComponentsRedSiftLogoIconR = "#ffffff";
|
|
749
|
+
declare const RedsiftColorLightComponentsRedSiftLogoDiamondTopRight = "#e24e4e";
|
|
750
|
+
declare const RedsiftColorLightComponentsRedSiftLogoDiamondBottomLeft = "#ffb3b3";
|
|
751
|
+
declare const RedsiftColorLightComponentsRedSiftLogoDiamondBottomRight = "#ff8181";
|
|
752
|
+
declare const RedsiftColorLightComponentsRedSiftLogoDiamondDark = "#e24e4e";
|
|
753
|
+
declare const RedsiftColorLightComponentsRedSiftLogoDiamondMid = "#ff8181";
|
|
754
|
+
declare const RedsiftColorLightComponentsRedSiftLogoDiamondLight = "#ffb3b3";
|
|
755
|
+
declare const RedsiftColorLightComponentsProductLogosTextGrey = "#333333";
|
|
756
|
+
declare const RedsiftColorLightComponentsProductLogosTextRed = "#e11010";
|
|
757
|
+
declare const RedsiftColorLightComponentsProductLogosTextWhite = "#ffffff";
|
|
758
|
+
declare const RedsiftColorLightComponentsProductLogosIconRed = "#e11010";
|
|
759
|
+
declare const RedsiftColorLightComponentsProductLogosIconGrey = "#333333";
|
|
760
|
+
declare const RedsiftColorLightComponentsSideNavigationBackground = "#f2f2f2";
|
|
761
|
+
declare const RedsiftColorLightComponentsSideNavigationMenuItemTextResting = "#474747";
|
|
762
|
+
declare const RedsiftColorLightComponentsSideNavigationMenuItemTextDisabled = "#666666";
|
|
763
|
+
declare const RedsiftColorLightComponentsSideNavigationMenuItemTextHover = "#1c1c1c";
|
|
764
|
+
declare const RedsiftColorLightComponentsSideNavigationMenuItemBackgroundHover = "#E6E6E6";
|
|
765
|
+
declare const RedsiftColorLightComponentsSideNavigationMenuItemBackgroundSecondary = "transparent";
|
|
766
|
+
declare const RedsiftColorLightComponentsSideNavigationMenuItemBackgroundActive = "#e0e0e0";
|
|
767
|
+
declare const RedsiftColorLightComponentsSideNavigationMenuItemActive = "#1c1c1c";
|
|
768
|
+
declare const RedsiftColorLightComponentsSideNavigationScrollbarResting = "#e0e0e0";
|
|
769
|
+
declare const RedsiftColorLightComponentsSideNavigationScrollbarHover = "#666666";
|
|
770
|
+
declare const RedsiftColorLightComponentsSideNavigationRightLine = "#e9e9e9";
|
|
771
|
+
declare const RedsiftColorLightComponentsSideNavigationCurrentMarker = "#1c1c1c";
|
|
772
|
+
declare const RedsiftColorLightComponentsAppBarBackground = "#ffffff";
|
|
773
|
+
declare const RedsiftColorLightComponentsAppBarBreadcrumbDefault = "#1c1c1c";
|
|
774
|
+
declare const RedsiftColorLightComponentsAppBarBreadcrumbHover = "#3b78dc";
|
|
775
|
+
declare const RedsiftColorLightComponentsAppBarBreadcrumbDown = "#2e5dab";
|
|
776
|
+
declare const RedsiftColorLightComponentsAppBarIconBackgroundHover = "#f2f2f2";
|
|
777
|
+
declare const RedsiftColorLightComponentsAppBarIconBackgroundDown = "#e0e0e0";
|
|
778
|
+
declare const RedsiftColorLightComponentsAppBarIconBackgroundActive = "#f2f2f2";
|
|
779
|
+
declare const RedsiftColorLightComponentsAppBarIconBackgroundActiveHover = "#e0e0e0";
|
|
780
|
+
declare const RedsiftColorLightComponentsAppBarIconBackgroundActiveDown = "#e0e0e0";
|
|
781
|
+
declare const RedsiftColorLightComponentsAppBarBorder = "#e9e9e9";
|
|
782
|
+
declare const RedsiftColorLightComponentsTooltipBackground = "#ffffff";
|
|
783
|
+
declare const RedsiftColorLightComponentsTooltipText = "#333333";
|
|
784
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundDefault = "#4285f4";
|
|
785
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundHover = "#3b78dc";
|
|
786
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundActive = "#2e5dab";
|
|
787
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryBackgroundDisabled = "#e0e0e0";
|
|
788
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextDefault = "#ffffff";
|
|
789
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextHover = "#ffffff";
|
|
790
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextActive = "#ffffff";
|
|
791
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonPrimaryTextDisabled = "#858585";
|
|
792
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundDefault = "#51b7a4";
|
|
793
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundHover = "#49a594";
|
|
794
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundActive = "#398073";
|
|
795
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryBackgroundDisabled = "#e0e0e0";
|
|
796
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextDefault = "#ffffff";
|
|
797
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextHover = "#ffffff";
|
|
798
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextActive = "#ffffff";
|
|
799
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSecondaryTextDisabled = "#858585";
|
|
800
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundDefault = "#02ac61";
|
|
801
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundHover = "#029b57";
|
|
802
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundActive = "#017844";
|
|
803
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessBackgroundDisabled = "#e0e0e0";
|
|
804
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextDefault = "#ffffff";
|
|
805
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextHover = "#ffffff";
|
|
806
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextActive = "#ffffff";
|
|
807
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonSuccessTextDisabled = "#858585";
|
|
808
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundDefault = "#e11010";
|
|
809
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundHover = "#cb0e0e";
|
|
810
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundActive = "#9e0b0b";
|
|
811
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorBackgroundDisabled = "#e0e0e0";
|
|
812
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextDefault = "#ffffff";
|
|
813
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextHover = "#ffffff";
|
|
814
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextActive = "#ffffff";
|
|
815
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonErrorTextDisabled = "#858585";
|
|
816
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundDefault = "#fcbb54";
|
|
817
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundHover = "#e3a84c";
|
|
818
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundActive = "#b0833b";
|
|
819
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningBackgroundDisabled = "#e0e0e0";
|
|
820
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextDefault = "#ffffff";
|
|
821
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextHover = "#ffffff";
|
|
822
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextActive = "#ffffff";
|
|
823
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonWarningTextDisabled = "#858585";
|
|
824
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundDefault = "#4285f4";
|
|
825
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundHover = "#3b78dc";
|
|
826
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundActive = "#2e5dab";
|
|
827
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoBackgroundDisabled = "#e0e0e0";
|
|
828
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextDefault = "#ffffff";
|
|
829
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextHover = "#ffffff";
|
|
830
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextActive = "#ffffff";
|
|
831
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonInfoTextDisabled = "#858585";
|
|
832
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundDefault = "#666666";
|
|
833
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundHover = "#5c5c5c";
|
|
834
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundActive = "#525252";
|
|
835
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyBackgroundDisabled = "#e0e0e0";
|
|
836
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDefault = "#ffffff";
|
|
837
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextHover = "#ffffff";
|
|
838
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextActive = "#ffffff";
|
|
839
|
+
declare const RedsiftColorLightComponentsButtonsPrimaryButtonGreyTextDisabled = "#858585";
|
|
840
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundDefault = "transparent";
|
|
841
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundHover = "#d9e7fd";
|
|
842
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundActive = "#b3cefb";
|
|
843
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryBackgroundDisabled = "#ffffff";
|
|
844
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDefault = "#4285f4";
|
|
845
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextHover = "#3b78dc";
|
|
846
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextActive = "#2e5dab";
|
|
847
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonPrimaryTextDisabled = "#858585";
|
|
848
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundDefault = "transparent";
|
|
849
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundHover = "#dcf1ed";
|
|
850
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundActive = "#b9e2db";
|
|
851
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryBackgroundDisabled = "#ffffff";
|
|
852
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDefault = "#51b7a4";
|
|
853
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextHover = "#49a594";
|
|
854
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextActive = "#398073";
|
|
855
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSecondaryTextDisabled = "#858585";
|
|
856
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundDefault = "transparent";
|
|
857
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundHover = "#cceedf";
|
|
858
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundActive = "#9adec0";
|
|
859
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessBackgroundDisabled = "#ffffff";
|
|
860
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDefault = "#02ac61";
|
|
861
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextHover = "#029b57";
|
|
862
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextActive = "#017844";
|
|
863
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonSuccessTextDisabled = "#858585";
|
|
864
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDefault = "transparent";
|
|
865
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundHover = "#f9cfcf";
|
|
866
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundActive = "#f39f9f";
|
|
867
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorBackgroundDisabled = "#ffffff";
|
|
868
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDefault = "#e11010";
|
|
869
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextHover = "#cb0e0e";
|
|
870
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextActive = "#9e0b0b";
|
|
871
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonErrorTextDisabled = "#858585";
|
|
872
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundDefault = "transparent";
|
|
873
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundHover = "#fef1dd";
|
|
874
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundActive = "#fee4bb";
|
|
875
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningBackgroundDisabled = "#ffffff";
|
|
876
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDefault = "#fcbb54";
|
|
877
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextHover = "#e3a84c";
|
|
878
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextActive = "#b0833b";
|
|
879
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonWarningTextDisabled = "#858585";
|
|
880
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDefault = "transparent";
|
|
881
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundHover = "#d9e7fd";
|
|
882
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundActive = "#b3cefb";
|
|
883
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoBackgroundDisabled = "#ffffff";
|
|
884
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDefault = "#4285f4";
|
|
885
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextHover = "#3b78dc";
|
|
886
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextActive = "#2e5dab";
|
|
887
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonInfoTextDisabled = "#858585";
|
|
888
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDefault = "transparent";
|
|
889
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundHover = "#f2f2f2";
|
|
890
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundActive = "#e0e0e0";
|
|
891
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyBackgroundDisabled = "#ffffff";
|
|
892
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDefault = "#666666";
|
|
893
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextHover = "#525252";
|
|
894
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextActive = "#525252";
|
|
895
|
+
declare const RedsiftColorLightComponentsButtonsSecondaryButtonGreyTextDisabled = "#858585";
|
|
896
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDefault = "transparent";
|
|
897
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundHover = "#d9e7fd";
|
|
898
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundActive = "#b3cefb";
|
|
899
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryBackgroundDisabled = "#ffffff";
|
|
900
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDefault = "#4285f4";
|
|
901
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextHover = "#3b78dc";
|
|
902
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextActive = "#2e5dab";
|
|
903
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonPrimaryTextDisabled = "#858585";
|
|
904
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDefault = "transparent";
|
|
905
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundHover = "#dcf1ed";
|
|
906
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundActive = "#b9e2db";
|
|
907
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryBackgroundDisabled = "#ffffff";
|
|
908
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDefault = "#51b7a4";
|
|
909
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextHover = "#49a594";
|
|
910
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextActive = "#398073";
|
|
911
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSecondaryTextDisabled = "#858585";
|
|
912
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDefault = "transparent";
|
|
913
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundHover = "#cceedf";
|
|
914
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundActive = "#9adec0";
|
|
915
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessBackgroundDisabled = "#ffffff";
|
|
916
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDefault = "#02ac61";
|
|
917
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextHover = "#029b57";
|
|
918
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextActive = "#017844";
|
|
919
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonSuccessTextDisabled = "#858585";
|
|
920
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDefault = "transparent";
|
|
921
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundHover = "#f9cfcf";
|
|
922
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundActive = "#f39f9f";
|
|
923
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorBackgroundDisabled = "#ffffff";
|
|
924
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDefault = "#e11010";
|
|
925
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextHover = "#cb0e0e";
|
|
926
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextActive = "#9e0b0b";
|
|
927
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonErrorTextDisabled = "#858585";
|
|
928
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDefault = "transparent";
|
|
929
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundHover = "#fef1dd";
|
|
930
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundActive = "#fee4bb";
|
|
931
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningBackgroundDisabled = "#ffffff";
|
|
932
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDefault = "#fcbb54";
|
|
933
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextHover = "#e3a84c";
|
|
934
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextActive = "#b0833b";
|
|
935
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonWarningTextDisabled = "#858585";
|
|
936
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDefault = "transparent";
|
|
937
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundHover = "#d9e7fd";
|
|
938
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundActive = "#b3cefb";
|
|
939
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoBackgroundDisabled = "#ffffff";
|
|
940
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDefault = "#4285f4";
|
|
941
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextHover = "#3b78dc";
|
|
942
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextActive = "#2e5dab";
|
|
943
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonInfoTextDisabled = "#858585";
|
|
944
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDefault = "transparent";
|
|
945
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundHover = "#f2f2f2";
|
|
946
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundActive = "#e0e0e0";
|
|
947
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyBackgroundDisabled = "#ffffff";
|
|
948
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDefault = "#666666";
|
|
949
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextHover = "#525252";
|
|
950
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextActive = "#525252";
|
|
951
|
+
declare const RedsiftColorLightComponentsButtonsUnstyledButtonGreyTextDisabled = "#858585";
|
|
952
|
+
declare const RedsiftColorLightComponentsAiAiBorder = "#e11010";
|
|
953
|
+
declare const RedsiftColorLightComponentsAiAiIcon = "#e11010";
|
|
954
|
+
declare const RedsiftColorLightComponentsSpinnerSpinner = "#4285f4";
|
|
955
|
+
declare const RedsiftColorLightComponentsAlertSuccessBackground = "#cceedf";
|
|
956
|
+
declare const RedsiftColorLightComponentsAlertSuccessIcon = "#02ac61";
|
|
957
|
+
declare const RedsiftColorLightComponentsAlertText = "#333333";
|
|
958
|
+
declare const RedsiftColorLightComponentsAlertErrorBackground = "#f9cfcf";
|
|
959
|
+
declare const RedsiftColorLightComponentsAlertErrorIcon = "#e11010";
|
|
960
|
+
declare const RedsiftColorLightComponentsAlertWarningBackground = "#fef1dd";
|
|
961
|
+
declare const RedsiftColorLightComponentsAlertWarningIcon = "#fcbb54";
|
|
962
|
+
declare const RedsiftColorLightComponentsAlertInfoBackground = "#d9e7fd";
|
|
963
|
+
declare const RedsiftColorLightComponentsAlertInfoIcon = "#4285f4";
|
|
964
|
+
declare const RedsiftColorLightComponentsIconsDefault = "#333333";
|
|
965
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusDefaultBackground = "#ffffff";
|
|
966
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusDefaultText = "#333333";
|
|
967
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusDividers = "#e0e0e0";
|
|
968
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusHoverBackground = "#f2f2f2";
|
|
969
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusHoverText = "#333333";
|
|
970
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusClickBackground = "#333333";
|
|
971
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusClickText = "#ffffff";
|
|
972
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusToggleActiveText = "#ffffff";
|
|
973
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusToggleActiveBackground = "#4285f4";
|
|
974
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusToggleActiveHoverText = "#ffffff";
|
|
975
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusToggleActiveHoverBackground = "#3b78dc";
|
|
976
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusToggleActiveClickText = "#ffffff";
|
|
977
|
+
declare const RedsiftColorLightComponentsDropdownsAndMenusToggleActiveClickBackground = "#333333";
|
|
978
|
+
declare const RedsiftColorLightComponentsCheckboxFillDefault = "#4285f4";
|
|
979
|
+
declare const RedsiftColorLightComponentsCheckboxFillDefaultHover = "#d9e7fd";
|
|
980
|
+
declare const RedsiftColorLightComponentsCheckboxFillUncolored = "#666666";
|
|
981
|
+
declare const RedsiftColorLightComponentsCheckboxFillUncoloredHover = "#474747";
|
|
982
|
+
declare const RedsiftColorLightComponentsCheckboxFillDisabled = "#e0e0e0";
|
|
983
|
+
declare const RedsiftColorLightComponentsCheckboxFillInvalid = "#e11010";
|
|
984
|
+
declare const RedsiftColorLightComponentsCheckboxFillInvalidHover = "#f9cfcf";
|
|
985
|
+
declare const RedsiftColorLightComponentsCheckboxTextDefault = "#333333";
|
|
986
|
+
declare const RedsiftColorLightComponentsCheckboxTextInvalid = "#e11010";
|
|
987
|
+
declare const RedsiftColorLightComponentsCheckboxTextDisabled = "#e0e0e0";
|
|
988
|
+
declare const RedsiftColorLightComponentsRadioFillDefault = "#4285f4";
|
|
989
|
+
declare const RedsiftColorLightComponentsRadioFillDefaultHover = "#d9e7fd";
|
|
990
|
+
declare const RedsiftColorLightComponentsRadioFillUncolored = "#666666";
|
|
991
|
+
declare const RedsiftColorLightComponentsRadioFillUncoloredHover = "#474747";
|
|
992
|
+
declare const RedsiftColorLightComponentsRadioFillDisabled = "#e0e0e0";
|
|
993
|
+
declare const RedsiftColorLightComponentsRadioFillInvalid = "#e11010";
|
|
994
|
+
declare const RedsiftColorLightComponentsRadioFillInvalidHover = "#f9cfcf";
|
|
995
|
+
declare const RedsiftColorLightComponentsRadioTextDefault = "#333333";
|
|
996
|
+
declare const RedsiftColorLightComponentsRadioTextInvalid = "#e11010";
|
|
997
|
+
declare const RedsiftColorLightComponentsRadioTextDisabled = "#e0e0e0";
|
|
998
|
+
declare const RedsiftColorLightComponentsSwitchDotDefault = "#ffffff";
|
|
999
|
+
declare const RedsiftColorLightComponentsSwitchDotDefaultHover = "#d9e7fd";
|
|
1000
|
+
declare const RedsiftColorLightComponentsSwitchDotUncolored = "#ffffff";
|
|
1001
|
+
declare const RedsiftColorLightComponentsSwitchDotUncoloredHover = "#474747";
|
|
1002
|
+
declare const RedsiftColorLightComponentsSwitchDotDisabled = "#ffffff";
|
|
1003
|
+
declare const RedsiftColorLightComponentsSwitchDotInvalid = "#ffffff";
|
|
1004
|
+
declare const RedsiftColorLightComponentsSwitchDotInvalidHover = "#f9cfcf";
|
|
1005
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundDefault = "#d9e7fd";
|
|
1006
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundDefaultActive = "#4285f4";
|
|
1007
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundUncolored = "#474747";
|
|
1008
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundUncoloredActive = "#666666";
|
|
1009
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundDisabled = "#e0e0e0";
|
|
1010
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundDisabledActive = "#666666";
|
|
1011
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundInvalid = "#f9cfcf";
|
|
1012
|
+
declare const RedsiftColorLightComponentsSwitchBackgroundInvalidActive = "#e11010";
|
|
1013
|
+
declare const RedsiftColorLightComponentsSwitchTextDefault = "#333333";
|
|
1014
|
+
declare const RedsiftColorLightComponentsSwitchTextInvalid = "#e11010";
|
|
1015
|
+
declare const RedsiftColorLightComponentsSwitchTextDisabled = "#e0e0e0";
|
|
1016
|
+
declare const RedsiftColorLightComponentsTabsLine = "#e0e0e0";
|
|
1017
|
+
declare const RedsiftColorLightComponentsModalBackground = "#ffffff";
|
|
1018
|
+
declare const RedsiftColorRedL4 = "#f9cfcf";
|
|
1019
|
+
declare const RedsiftColorRedL3 = "#f39f9f";
|
|
1020
|
+
declare const RedsiftColorRedL2 = "#ed7070";
|
|
1021
|
+
declare const RedsiftColorRedL1 = "#e74040";
|
|
1022
|
+
declare const RedsiftColorRedN = "#e11010";
|
|
1023
|
+
declare const RedsiftColorRedD1 = "#cb0e0e";
|
|
1024
|
+
declare const RedsiftColorRedD2 = "#9e0b0b";
|
|
1025
|
+
declare const RedsiftColorRedD3 = "#430505";
|
|
1026
|
+
declare const RedsiftColorRedD4 = "#2d0303";
|
|
1027
|
+
declare const RedsiftColorBlueL4 = "#d9e7fd";
|
|
1028
|
+
declare const RedsiftColorBlueL3 = "#b3cefb";
|
|
1029
|
+
declare const RedsiftColorBlueL2 = "#8eb6f8";
|
|
1030
|
+
declare const RedsiftColorBlueL1 = "#689df6";
|
|
1031
|
+
declare const RedsiftColorBlueN = "#4285f4";
|
|
1032
|
+
declare const RedsiftColorBlueD1 = "#3b78dc";
|
|
1033
|
+
declare const RedsiftColorBlueD2 = "#2e5dab";
|
|
1034
|
+
declare const RedsiftColorBlueD3 = "#142849";
|
|
1035
|
+
declare const RedsiftColorBlueD4 = "#0d1b31";
|
|
1036
|
+
declare const RedsiftColorTealL4 = "#dcf1ed";
|
|
1037
|
+
declare const RedsiftColorTealL3 = "#b9e2db";
|
|
1038
|
+
declare const RedsiftColorTealL2 = "#97d4c8";
|
|
1039
|
+
declare const RedsiftColorTealL1 = "#74c5b6";
|
|
1040
|
+
declare const RedsiftColorTealN = "#51b7a4";
|
|
1041
|
+
declare const RedsiftColorTealD1 = "#49a594";
|
|
1042
|
+
declare const RedsiftColorTealD2 = "#398073";
|
|
1043
|
+
declare const RedsiftColorTealD3 = "#183731";
|
|
1044
|
+
declare const RedsiftColorTealD4 = "#102521";
|
|
1045
|
+
declare const RedsiftColorGreyL5 = "#ffffff";
|
|
1046
|
+
declare const RedsiftColorGreyL4 = "#f2f2f2";
|
|
1047
|
+
declare const RedsiftColorGreyL3 = "#e0e0e0";
|
|
1048
|
+
declare const RedsiftColorGreyL2 = "#a3a3a3";
|
|
1049
|
+
declare const RedsiftColorGreyL1 = "#858585";
|
|
1050
|
+
declare const RedsiftColorGreyN = "#666666";
|
|
1051
|
+
declare const RedsiftColorGreyD1 = "#5c5c5c";
|
|
1052
|
+
declare const RedsiftColorGreyD2 = "#525252";
|
|
1053
|
+
declare const RedsiftColorGreyD3 = "#474747";
|
|
1054
|
+
declare const RedsiftColorGreyD4 = "#333333";
|
|
1055
|
+
declare const RedsiftColorGreyD5 = "#1c1c1c";
|
|
1056
|
+
declare const RedsiftColorGreenL4 = "#cceedf";
|
|
1057
|
+
declare const RedsiftColorGreenL3 = "#9adec0";
|
|
1058
|
+
declare const RedsiftColorGreenL2 = "#67cda0";
|
|
1059
|
+
declare const RedsiftColorGreenL1 = "#35bd81";
|
|
1060
|
+
declare const RedsiftColorGreenN = "#02ac61";
|
|
1061
|
+
declare const RedsiftColorGreenD1 = "#029b57";
|
|
1062
|
+
declare const RedsiftColorGreenD2 = "#017844";
|
|
1063
|
+
declare const RedsiftColorGreenD3 = "#01341d";
|
|
1064
|
+
declare const RedsiftColorGreenD4 = "#002213";
|
|
1065
|
+
declare const RedsiftColorYellowL4 = "#fef1dd";
|
|
1066
|
+
declare const RedsiftColorYellowL3 = "#fee4bb";
|
|
1067
|
+
declare const RedsiftColorYellowL2 = "#fdd698";
|
|
1068
|
+
declare const RedsiftColorYellowL1 = "#fdc976";
|
|
1069
|
+
declare const RedsiftColorYellowN = "#fcbb54";
|
|
1070
|
+
declare const RedsiftColorYellowD1 = "#e3a84c";
|
|
1071
|
+
declare const RedsiftColorYellowD2 = "#b0833b";
|
|
1072
|
+
declare const RedsiftColorYellowD3 = "#4c3819";
|
|
1073
|
+
declare const RedsiftColorYellowD4 = "#322511";
|
|
1074
|
+
declare const RedsiftColorPrimaryL4 = "#d9e7fd";
|
|
1075
|
+
declare const RedsiftColorPrimaryL3 = "#b3cefb";
|
|
1076
|
+
declare const RedsiftColorPrimaryL2 = "#8eb6f8";
|
|
1077
|
+
declare const RedsiftColorPrimaryL1 = "#689df6";
|
|
1078
|
+
declare const RedsiftColorPrimaryN = "#4285f4";
|
|
1079
|
+
declare const RedsiftColorPrimaryD1 = "#3b78dc";
|
|
1080
|
+
declare const RedsiftColorPrimaryD2 = "#2e5dab";
|
|
1081
|
+
declare const RedsiftColorPrimaryD3 = "#142849";
|
|
1082
|
+
declare const RedsiftColorPrimaryD4 = "#0d1b31";
|
|
1083
|
+
declare const RedsiftColorSecondaryL4 = "#dcf1ed";
|
|
1084
|
+
declare const RedsiftColorSecondaryL3 = "#b9e2db";
|
|
1085
|
+
declare const RedsiftColorSecondaryL2 = "#97d4c8";
|
|
1086
|
+
declare const RedsiftColorSecondaryL1 = "#74c5b6";
|
|
1087
|
+
declare const RedsiftColorSecondaryN = "#51b7a4";
|
|
1088
|
+
declare const RedsiftColorSecondaryD1 = "#49a594";
|
|
1089
|
+
declare const RedsiftColorSecondaryD2 = "#398073";
|
|
1090
|
+
declare const RedsiftColorSecondaryD3 = "#183731";
|
|
1091
|
+
declare const RedsiftColorSecondaryD4 = "#102521";
|
|
1092
|
+
declare const RedsiftColorNeutralWhite = "#ffffff";
|
|
1093
|
+
declare const RedsiftColorNeutralXLightGrey = "#f2f2f2";
|
|
1094
|
+
declare const RedsiftColorNeutralLightGrey = "#e0e0e0";
|
|
1095
|
+
declare const RedsiftColorNeutralMidGrey = "#666666";
|
|
1096
|
+
declare const RedsiftColorNeutralDarkGrey = "#474747";
|
|
1097
|
+
declare const RedsiftColorNeutralXDarkGrey = "#333333";
|
|
1098
|
+
declare const RedsiftColorNeutralBlack = "#1c1c1c";
|
|
1099
|
+
declare const RedsiftColorTextPrimary = "#333333";
|
|
1100
|
+
declare const RedsiftColorTextSecondary = "#474747";
|
|
422
1101
|
declare const RedsiftColorProductAsm = "#8361ea";
|
|
423
1102
|
declare const RedsiftColorProductBrandTrust = "#7ec2fa";
|
|
424
1103
|
declare const RedsiftColorProductCertificates = "#e8712e";
|
|
425
|
-
declare const
|
|
426
|
-
declare const
|
|
427
|
-
declare const
|
|
1104
|
+
declare const RedsiftColorProductHardenize = "#3498db";
|
|
1105
|
+
declare const RedsiftColorProductOnDmarc = "#96d36e";
|
|
1106
|
+
declare const RedsiftColorProductOnInbox = "#33b222";
|
|
1107
|
+
declare const RedsiftColorProductRadar = "#51B7A4";
|
|
428
1108
|
declare const RedsiftColorProductVendorSecure = "#f7c948";
|
|
429
|
-
declare const
|
|
430
|
-
declare const
|
|
431
|
-
declare const
|
|
432
|
-
declare const
|
|
433
|
-
declare const
|
|
434
|
-
declare const
|
|
435
|
-
declare const
|
|
436
|
-
declare const
|
|
437
|
-
declare const
|
|
438
|
-
declare const
|
|
439
|
-
declare const
|
|
440
|
-
declare const
|
|
441
|
-
declare const
|
|
442
|
-
declare const
|
|
443
|
-
declare const
|
|
444
|
-
declare const
|
|
445
|
-
declare const
|
|
446
|
-
declare const
|
|
447
|
-
declare const
|
|
448
|
-
declare const
|
|
449
|
-
declare const
|
|
450
|
-
declare const
|
|
451
|
-
declare const
|
|
452
|
-
declare const
|
|
453
|
-
declare const
|
|
454
|
-
declare const RedsiftColorCtasSecondaryButtonActiveHover = "#204942";
|
|
455
|
-
declare const RedsiftColorNotificationsSuccessPrimary = "#02AC61";
|
|
456
|
-
declare const RedsiftColorNotificationsSuccessHover = "#CCEEDF";
|
|
457
|
-
declare const RedsiftColorNotificationsSuccessActive = "#9ADEC0";
|
|
458
|
-
declare const RedsiftColorNotificationsSuccessActiveHover = "#67CDA0";
|
|
459
|
-
declare const RedsiftColorNotificationsSuccessButtonHover = "#028A4E";
|
|
460
|
-
declare const RedsiftColorNotificationsSuccessButtonActive = "#01673A";
|
|
461
|
-
declare const RedsiftColorNotificationsSuccessButtonActiveHover = "#014527";
|
|
462
|
-
declare const RedsiftColorNotificationsErrorPrimary = "#E11010";
|
|
463
|
-
declare const RedsiftColorNotificationsErrorHover = "#F9CFCF";
|
|
464
|
-
declare const RedsiftColorNotificationsErrorActive = "#F39F9F";
|
|
465
|
-
declare const RedsiftColorNotificationsErrorActiveHover = "#ED7070";
|
|
466
|
-
declare const RedsiftColorNotificationsErrorButtonHover = "#B40D0D";
|
|
467
|
-
declare const RedsiftColorNotificationsErrorButtonActive = "#870A0A";
|
|
468
|
-
declare const RedsiftColorNotificationsErrorButtonActiveHover = "#5A0606";
|
|
469
|
-
declare const RedsiftColorNotificationsWarningPrimary = "#FCBB54";
|
|
470
|
-
declare const RedsiftColorNotificationsWarningHover = "#FEF1DD";
|
|
471
|
-
declare const RedsiftColorNotificationsWarningActive = "#FEE4BB";
|
|
472
|
-
declare const RedsiftColorNotificationsWarningActiveHover = "#FDD698";
|
|
473
|
-
declare const RedsiftColorNotificationsWarningButtonHover = "#CA9643";
|
|
474
|
-
declare const RedsiftColorNotificationsWarningButtonActive = "#977032";
|
|
475
|
-
declare const RedsiftColorNotificationsWarningButtonActiveHover = "#654B22";
|
|
476
|
-
declare const RedsiftColorNotificationsInfoPrimary = "#4285F4";
|
|
477
|
-
declare const RedsiftColorNotificationsInfoHover = "#D9E7FD";
|
|
478
|
-
declare const RedsiftColorNotificationsInfoActive = "#B3CEFB";
|
|
479
|
-
declare const RedsiftColorNotificationsInfoActiveHover = "#8EB6F8";
|
|
480
|
-
declare const RedsiftColorNotificationsInfoButtonHover = "#356AC3";
|
|
481
|
-
declare const RedsiftColorNotificationsInfoButtonActive = "#285092";
|
|
482
|
-
declare const RedsiftColorNotificationsInfoButtonActiveHover = "#1A3562";
|
|
1109
|
+
declare const RedsiftColorBordersBorderDivider = "#f2f2f2";
|
|
1110
|
+
declare const RedsiftColorBordersBorderDefault = "#666666";
|
|
1111
|
+
declare const RedsiftColorBordersBorderDisabled = "#e0e0e0";
|
|
1112
|
+
declare const RedsiftColorBordersBorderPrimary = "#4285f4";
|
|
1113
|
+
declare const RedsiftColorBordersBorderSecondary = "#51b7a4";
|
|
1114
|
+
declare const RedsiftColorBordersBorderSuccess = "#02ac61";
|
|
1115
|
+
declare const RedsiftColorBordersBorderError = "#e11010";
|
|
1116
|
+
declare const RedsiftColorNotificationsPrimaryPrimary = "#4285f4";
|
|
1117
|
+
declare const RedsiftColorNotificationsPrimaryHover = "#d9e7fd";
|
|
1118
|
+
declare const RedsiftColorNotificationsPrimaryActive = "#b3cefb";
|
|
1119
|
+
declare const RedsiftColorNotificationsSecondaryPrimary = "#51b7a4";
|
|
1120
|
+
declare const RedsiftColorNotificationsSecondaryHover = "#dcf1ed";
|
|
1121
|
+
declare const RedsiftColorNotificationsSecondaryActive = "#b9e2db";
|
|
1122
|
+
declare const RedsiftColorNotificationsSuccessPrimary = "#02ac61";
|
|
1123
|
+
declare const RedsiftColorNotificationsSuccessHover = "#cceedf";
|
|
1124
|
+
declare const RedsiftColorNotificationsSuccessActive = "#9adec0";
|
|
1125
|
+
declare const RedsiftColorNotificationsErrorPrimary = "#e11010";
|
|
1126
|
+
declare const RedsiftColorNotificationsErrorHover = "#f9cfcf";
|
|
1127
|
+
declare const RedsiftColorNotificationsErrorActive = "#f39f9f";
|
|
1128
|
+
declare const RedsiftColorNotificationsWarningPrimary = "#fcbb54";
|
|
1129
|
+
declare const RedsiftColorNotificationsWarningHover = "#fef1dd";
|
|
1130
|
+
declare const RedsiftColorNotificationsWarningActive = "#fee4bb";
|
|
1131
|
+
declare const RedsiftColorNotificationsInfoPrimary = "#4285f4";
|
|
1132
|
+
declare const RedsiftColorNotificationsInfoHover = "#d9e7fd";
|
|
1133
|
+
declare const RedsiftColorNotificationsInfoActive = "#b3cefb";
|
|
483
1134
|
declare const RedsiftColorNotificationsQuestionPrimary = "#666666";
|
|
484
|
-
declare const RedsiftColorNotificationsQuestionHover = "#
|
|
485
|
-
declare const RedsiftColorNotificationsQuestionActive = "#
|
|
486
|
-
declare const
|
|
487
|
-
declare const
|
|
488
|
-
declare const
|
|
489
|
-
declare const RedsiftColorNotificationsQuestionButtonActiveHover = "#3D3D3D";
|
|
490
|
-
declare const RedsiftColorNotificationsNoDataPrimary = "#BDBDBD";
|
|
491
|
-
declare const RedsiftColorNotificationsNoDataHover = "#DEDEDE";
|
|
492
|
-
declare const RedsiftColorNotificationsNoDataActive = "#D7D7D7";
|
|
493
|
-
declare const RedsiftColorNotificationsNoDataActiveHover = "#D1D1D1";
|
|
494
|
-
declare const RedsiftColorNotificationsNoDataButtonHover = "#979797";
|
|
495
|
-
declare const RedsiftColorNotificationsNoDataButtonActive = "#848484";
|
|
496
|
-
declare const RedsiftColorNotificationsNoDataButtonActiveHover = "#717171";
|
|
1135
|
+
declare const RedsiftColorNotificationsQuestionHover = "#474747";
|
|
1136
|
+
declare const RedsiftColorNotificationsQuestionActive = "#333333";
|
|
1137
|
+
declare const RedsiftColorNotificationsNoDataPrimary = "#e0e0e0";
|
|
1138
|
+
declare const RedsiftColorNotificationsNoDataHover = "#666666";
|
|
1139
|
+
declare const RedsiftColorNotificationsNoDataActive = "#474747";
|
|
497
1140
|
declare const RedsiftColorPresentationGreenDarkerer = "#078833";
|
|
498
1141
|
declare const RedsiftColorPresentationGreenDarker = "#07AA45";
|
|
499
1142
|
declare const RedsiftColorPresentationGreenDark = "#00CE59";
|
|
@@ -564,16 +1207,7 @@ declare const RedsiftColorPresentationGreyDefault = "#D6D6D6";
|
|
|
564
1207
|
declare const RedsiftColorPresentationGreyLight = "#E6E6E6";
|
|
565
1208
|
declare const RedsiftColorPresentationGreyLighter = "#EEEEEE";
|
|
566
1209
|
declare const RedsiftColorPresentationGreyLighterer = "#F7F7F7";
|
|
567
|
-
declare const
|
|
568
|
-
declare const RedsiftSideNavigationColorMenuItemTextResting = "#333333";
|
|
569
|
-
declare const RedsiftSideNavigationColorMenuItemTextDisabled = "#666666";
|
|
570
|
-
declare const RedsiftSideNavigationColorMenuItemTextHover = "#1c1c1c";
|
|
571
|
-
declare const RedsiftSideNavigationColorMenuItemBackgroundHover = "#E6E6E6";
|
|
572
|
-
declare const RedsiftSideNavigationColorMenuItemBackgroundSecondary = "transparent";
|
|
573
|
-
declare const RedsiftSideNavigationColorMenuItemBackgroundActive = "#b6b6b6";
|
|
574
|
-
declare const RedsiftSideNavigationColorMenuItemActive = "#1c1c1c";
|
|
575
|
-
declare const RedsiftSideNavigationColorScrollbarResting = "#b6b6b6";
|
|
576
|
-
declare const RedsiftSideNavigationColorScrollbarHover = "#666666";
|
|
1210
|
+
declare const RedsiftBorderRadius = "4px";
|
|
577
1211
|
declare const RedsiftLayoutZIndexFooter = "1000";
|
|
578
1212
|
declare const RedsiftLayoutZIndexHeader = "1010";
|
|
579
1213
|
declare const RedsiftLayoutZIndexSidePanel = "1050";
|
|
@@ -682,7 +1316,7 @@ declare const useId: (count?: number, prefix?: string) => string[];
|
|
|
682
1316
|
* @param props Component props containing the aria-label and aria-labelledby params to check for.
|
|
683
1317
|
* @param additionalKeysToCheck Additional props to check that can act as a label for screen readers (i.e. children).
|
|
684
1318
|
*/
|
|
685
|
-
declare const warnIfNoAccessibleLabelFound: (props: ComponentProps<keyof JSX.IntrinsicElements>, additionalKeysToCheck?: DependencyList) => void;
|
|
1319
|
+
declare const warnIfNoAccessibleLabelFound: (props: ComponentProps<keyof JSX.IntrinsicElements>, additionalKeysToCheck?: DependencyList, componentName?: string) => void;
|
|
686
1320
|
|
|
687
1321
|
interface WindowSize {
|
|
688
1322
|
height?: number;
|
|
@@ -718,6 +1352,8 @@ interface AlertProps extends ComponentProps<'div'>, StylingProps {
|
|
|
718
1352
|
onClose?(isClosed: boolean): void;
|
|
719
1353
|
/** Title. */
|
|
720
1354
|
title?: string;
|
|
1355
|
+
/** Theme. */
|
|
1356
|
+
theme?: Theme;
|
|
721
1357
|
/** Variant */
|
|
722
1358
|
variant?: AlertVariant;
|
|
723
1359
|
}
|
|
@@ -726,6 +1362,7 @@ type StyledAlertProps = Omit<AlertProps, 'variant'> & {
|
|
|
726
1362
|
$isClosable: AlertProps['isClosable'];
|
|
727
1363
|
$isClosed: AlertProps['isClosed'];
|
|
728
1364
|
$variant: AlertProps['variant'];
|
|
1365
|
+
$theme: AlertProps['theme'];
|
|
729
1366
|
};
|
|
730
1367
|
|
|
731
1368
|
/**
|
|
@@ -772,6 +1409,8 @@ interface IconProps extends ComponentProps<'span'>, LayoutProps, SpacingProps, P
|
|
|
772
1409
|
size?: IconSize | IconDimensions;
|
|
773
1410
|
/** Additional properties to forward to the SVG tag. */
|
|
774
1411
|
svgProps?: ComponentProps<'svg'>;
|
|
1412
|
+
/** Theme. */
|
|
1413
|
+
theme?: Theme;
|
|
775
1414
|
}
|
|
776
1415
|
type StyledIconProps = Omit<IconProps, 'color' | 'size' | 'icon' | 'svgProps'> & {
|
|
777
1416
|
$color: IconProps['color'];
|
|
@@ -779,6 +1418,7 @@ type StyledIconProps = Omit<IconProps, 'color' | 'size' | 'icon' | 'svgProps'> &
|
|
|
779
1418
|
$height: IconDimensions['height'];
|
|
780
1419
|
$fontSize: IconDimensions['fontSize'];
|
|
781
1420
|
$lineHeight: IconDimensions['lineHeight'];
|
|
1421
|
+
$theme: IconProps['theme'];
|
|
782
1422
|
};
|
|
783
1423
|
|
|
784
1424
|
declare const sizeToDimension: (size: IconSize | IconDimensions) => IconDimensions;
|
|
@@ -799,7 +1439,7 @@ type IconButtonVariant = ValueOf<typeof IconButtonVariant>;
|
|
|
799
1439
|
/**
|
|
800
1440
|
* Component color.
|
|
801
1441
|
*/
|
|
802
|
-
type IconButtonColor =
|
|
1442
|
+
type IconButtonColor = ButtonsColorPalette;
|
|
803
1443
|
/**
|
|
804
1444
|
* Component props.
|
|
805
1445
|
*/
|
|
@@ -821,6 +1461,8 @@ interface IconButtonProps extends ComponentProps<'button'>, StylingProps {
|
|
|
821
1461
|
isHovered?: boolean;
|
|
822
1462
|
/** Whether the component is in a loading state or not. */
|
|
823
1463
|
isLoading?: boolean;
|
|
1464
|
+
/** Theme. */
|
|
1465
|
+
theme?: Theme;
|
|
824
1466
|
/** Button variant. */
|
|
825
1467
|
variant?: IconButtonVariant;
|
|
826
1468
|
}
|
|
@@ -830,6 +1472,7 @@ type StyledIconButtonProps = Omit<IconButtonProps, 'icon'> & {
|
|
|
830
1472
|
$isDisabled: IconButtonProps['isDisabled'];
|
|
831
1473
|
$isHovered: IconButtonProps['isHovered'];
|
|
832
1474
|
$isLoading: IconButtonProps['isLoading'];
|
|
1475
|
+
$theme: IconButtonProps['theme'];
|
|
833
1476
|
$variant: IconButtonProps['variant'];
|
|
834
1477
|
};
|
|
835
1478
|
|
|
@@ -851,10 +1494,13 @@ interface BreadcrumbItemProps extends ComponentProps<'a'> {
|
|
|
851
1494
|
isCurrent?: boolean;
|
|
852
1495
|
/** Whether the component is disabled or not. */
|
|
853
1496
|
isDisabled?: boolean;
|
|
1497
|
+
/** Theme. */
|
|
1498
|
+
theme?: Theme;
|
|
854
1499
|
}
|
|
855
1500
|
type StyledBreadcrumbItemProps = Omit<BreadcrumbItemProps, 'isDisabled' | 'isCurrent'> & {
|
|
856
1501
|
$isCurrent: BreadcrumbItemProps['isCurrent'];
|
|
857
1502
|
$isDisabled: BreadcrumbItemProps['isDisabled'];
|
|
1503
|
+
$theme: BreadcrumbItemProps['theme'];
|
|
858
1504
|
};
|
|
859
1505
|
|
|
860
1506
|
/**
|
|
@@ -876,11 +1522,14 @@ interface AppBarProps extends Omit<ComponentProps<'header'>, 'title'> {
|
|
|
876
1522
|
fallbackTitle?: string;
|
|
877
1523
|
/** Title of the page, if no breadcrumbs used. */
|
|
878
1524
|
title?: string | ReactElement;
|
|
1525
|
+
/** Theme. */
|
|
1526
|
+
theme?: Theme;
|
|
879
1527
|
}
|
|
880
1528
|
type StyledAppBarProps = AppBarProps & {
|
|
881
1529
|
$hasBorder: boolean;
|
|
882
1530
|
$isLoaded: boolean;
|
|
883
1531
|
$isSidePanelCollapsed: boolean;
|
|
1532
|
+
$theme: AppBarProps['theme'];
|
|
884
1533
|
};
|
|
885
1534
|
|
|
886
1535
|
/**
|
|
@@ -910,11 +1559,14 @@ interface AppSidePanelProps extends ComponentProps<'div'> {
|
|
|
910
1559
|
logo?: ReactElement | ComponentProps<'img'>;
|
|
911
1560
|
/** Method called when a click occurs on the top open button - which is displayed only in shrinked variant. */
|
|
912
1561
|
onOpen?: (e: MouseEvent) => void;
|
|
1562
|
+
/** Theme. */
|
|
1563
|
+
theme?: Theme;
|
|
913
1564
|
/** Variant. */
|
|
914
1565
|
variant?: AppSidePanelVariant;
|
|
915
1566
|
}
|
|
916
1567
|
type StyledAppSidePanelProps = Omit<AppSidePanelProps, 'isCollapsed' | 'logo'> & {
|
|
917
1568
|
$variant: AppSidePanelProps['variant'];
|
|
1569
|
+
$theme: AppSidePanelProps['theme'];
|
|
918
1570
|
};
|
|
919
1571
|
|
|
920
1572
|
/**
|
|
@@ -972,12 +1624,15 @@ interface SideNavigationMenuProps extends ComponentProps<'div'> {
|
|
|
972
1624
|
menuProps?: ComponentProps<'ul'>;
|
|
973
1625
|
/** Custom ref to pass to the menu. */
|
|
974
1626
|
menuRef?: MutableRefObject<HTMLUListElement>;
|
|
1627
|
+
/** Theme. */
|
|
1628
|
+
theme?: Theme;
|
|
975
1629
|
}
|
|
976
1630
|
type StyledSideNavigationMenuProps = Omit<SideNavigationMenuProps, 'isDisabled' | 'isExpanded'> & {
|
|
977
1631
|
$isDisabled: SideNavigationMenuProps['isDisabled'];
|
|
978
1632
|
$isExpanded: SideNavigationMenuProps['isExpanded'];
|
|
979
1633
|
$numberOfChildren: number;
|
|
980
1634
|
$variant: SideNavigationMenuBarVariant;
|
|
1635
|
+
$theme: SideNavigationMenuProps['theme'];
|
|
981
1636
|
};
|
|
982
1637
|
|
|
983
1638
|
/**
|
|
@@ -1000,9 +1655,11 @@ interface BadgeProps extends ComponentProps<'div'>, LayoutProps, SpacingProps, P
|
|
|
1000
1655
|
/** Whether the badge should automatically break content. */
|
|
1001
1656
|
autoBreak?: boolean;
|
|
1002
1657
|
/** Color variant. The product colors are available but should only be used to display the Badge in the color of another product. To display a Badge with a color of the current product, use `default`. */
|
|
1003
|
-
color?:
|
|
1658
|
+
color?: NotificationsColorPalette | PresentationColorPalette;
|
|
1004
1659
|
/** Whether the Badge has its colors reversed or not. */
|
|
1005
1660
|
isReversed?: boolean;
|
|
1661
|
+
/** Theme. */
|
|
1662
|
+
theme?: Theme;
|
|
1006
1663
|
/** Badge variant. */
|
|
1007
1664
|
variant?: BadgeVariant;
|
|
1008
1665
|
}
|
|
@@ -1011,6 +1668,7 @@ type StyledBadgeProps = Omit<BadgeProps, 'color' | 'variant' | 'isReversed' | 'a
|
|
|
1011
1668
|
$color: BadgeProps['color'];
|
|
1012
1669
|
$isReversed: BadgeProps['isReversed'];
|
|
1013
1670
|
$variant: BadgeProps['variant'];
|
|
1671
|
+
$theme: BadgeProps['theme'];
|
|
1014
1672
|
};
|
|
1015
1673
|
|
|
1016
1674
|
/**
|
|
@@ -1047,12 +1705,15 @@ interface SideNavigationMenuItemProps extends ComponentProps<'a'> {
|
|
|
1047
1705
|
isDisabled?: boolean;
|
|
1048
1706
|
/** Whether the component is a second-level menu item. */
|
|
1049
1707
|
isSecondLevel?: boolean;
|
|
1708
|
+
/** Theme. */
|
|
1709
|
+
theme?: Theme;
|
|
1050
1710
|
}
|
|
1051
1711
|
type StyledSideNavigationMenuItemProps = Omit<SideNavigationMenuItemProps, 'isCurrent' | 'isDisabled' | 'isSecondLevel' | 'hasBorder'> & {
|
|
1052
1712
|
$isCurrent: SideNavigationMenuItemProps['isCurrent'];
|
|
1053
1713
|
$isDisabled: SideNavigationMenuItemProps['isDisabled'];
|
|
1054
1714
|
$isSecondLevel: SideNavigationMenuItemProps['isSecondLevel'];
|
|
1055
1715
|
$variant: SideNavigationMenuBarVariant;
|
|
1716
|
+
$theme: SideNavigationMenuItemProps['theme'];
|
|
1056
1717
|
};
|
|
1057
1718
|
|
|
1058
1719
|
/**
|
|
@@ -1095,6 +1756,8 @@ interface SideNavigationMenuBarProps extends ComponentProps<'nav'> {
|
|
|
1095
1756
|
menubarProps?: ComponentProps<'ul'>;
|
|
1096
1757
|
/** Custom ref to pass to the menubar. */
|
|
1097
1758
|
menubarRef?: MutableRefObject<HTMLUListElement>;
|
|
1759
|
+
/** Theme. */
|
|
1760
|
+
theme?: Theme;
|
|
1098
1761
|
/** Variant. */
|
|
1099
1762
|
variant?: SideNavigationMenuBarVariant;
|
|
1100
1763
|
}
|
|
@@ -1102,6 +1765,7 @@ type StyledSideNavigationMenuBarProps = Omit<SideNavigationMenuBarProps, 'isDisa
|
|
|
1102
1765
|
$isDisabled: SideNavigationMenuBarProps['isDisabled'];
|
|
1103
1766
|
$marginTop?: number;
|
|
1104
1767
|
$variant: SideNavigationMenuBarProps['variant'];
|
|
1768
|
+
$theme: SideNavigationMenuBarProps['theme'];
|
|
1105
1769
|
};
|
|
1106
1770
|
/**
|
|
1107
1771
|
* Hook props.
|
|
@@ -1158,8 +1822,11 @@ interface AppContainerProps extends ComponentProps<'div'> {
|
|
|
1158
1822
|
name: string;
|
|
1159
1823
|
logo?: ReactElement;
|
|
1160
1824
|
};
|
|
1825
|
+
/** Overall theme. */
|
|
1826
|
+
theme?: Theme;
|
|
1161
1827
|
}
|
|
1162
1828
|
type StyledAppContainerProps = Omit<AppContainerProps, 'locale' | 'product'> & {
|
|
1829
|
+
$theme: Theme;
|
|
1163
1830
|
$product?: AppContainerProps['product'];
|
|
1164
1831
|
};
|
|
1165
1832
|
|
|
@@ -1174,11 +1841,13 @@ declare const AppContainer: Comp<AppContainerProps, HTMLDivElement>;
|
|
|
1174
1841
|
* Component props.
|
|
1175
1842
|
*/
|
|
1176
1843
|
interface AppContentProps extends ComponentProps<'main'>, StylingProps, ContainerProps {
|
|
1844
|
+
/** Theme. */
|
|
1845
|
+
theme?: Theme;
|
|
1177
1846
|
}
|
|
1178
1847
|
type StyledAppContentProps = Omit<AppContentProps, 'product'> & {
|
|
1179
1848
|
$isLoaded: boolean;
|
|
1180
1849
|
$isSidePanelCollapsed: boolean;
|
|
1181
|
-
$
|
|
1850
|
+
$theme: AppContentProps['theme'];
|
|
1182
1851
|
};
|
|
1183
1852
|
|
|
1184
1853
|
/**
|
|
@@ -1192,9 +1861,12 @@ declare const AppContent: Comp<AppContentProps, HTMLElement>;
|
|
|
1192
1861
|
interface BreadcrumbsProps extends ComponentProps<'nav'>, StylingProps {
|
|
1193
1862
|
/** Whether the component is disabled or not. */
|
|
1194
1863
|
isDisabled?: boolean;
|
|
1864
|
+
/** Theme. */
|
|
1865
|
+
theme?: Theme;
|
|
1195
1866
|
}
|
|
1196
1867
|
type StyledBreadcrumbsProps = Omit<BreadcrumbsProps, 'isDisabled'> & {
|
|
1197
1868
|
$isDisabled: BreadcrumbsProps['isDisabled'];
|
|
1869
|
+
$theme: BreadcrumbsProps['theme'];
|
|
1198
1870
|
};
|
|
1199
1871
|
|
|
1200
1872
|
/**
|
|
@@ -1217,7 +1889,7 @@ type ButtonGroupVariant = ValueOf<typeof ButtonGroupVariant>;
|
|
|
1217
1889
|
/**
|
|
1218
1890
|
* Component color.
|
|
1219
1891
|
*/
|
|
1220
|
-
type ButtonGroupColor =
|
|
1892
|
+
type ButtonGroupColor = ButtonsColorPalette;
|
|
1221
1893
|
/**
|
|
1222
1894
|
* Component props.
|
|
1223
1895
|
*/
|
|
@@ -1226,10 +1898,13 @@ interface ButtonGroupProps extends ComponentProps<'div'>, StylingProps, FlexLayo
|
|
|
1226
1898
|
color?: ButtonGroupColor;
|
|
1227
1899
|
/** Button variant. */
|
|
1228
1900
|
variant?: ButtonGroupVariant;
|
|
1901
|
+
/** Theme. */
|
|
1902
|
+
theme?: Theme;
|
|
1229
1903
|
}
|
|
1230
1904
|
type StyledButtonGroupProps = ButtonGroupProps & {
|
|
1231
1905
|
$color: ButtonGroupProps['color'];
|
|
1232
1906
|
$variant: ButtonGroupProps['variant'];
|
|
1907
|
+
$theme: ButtonGroupProps['theme'];
|
|
1233
1908
|
};
|
|
1234
1909
|
|
|
1235
1910
|
/**
|
|
@@ -1249,7 +1924,7 @@ type ButtonVariant = ValueOf<typeof ButtonVariant>;
|
|
|
1249
1924
|
/**
|
|
1250
1925
|
* Component color.
|
|
1251
1926
|
*/
|
|
1252
|
-
type ButtonColor =
|
|
1927
|
+
type ButtonColor = ButtonsColorPalette;
|
|
1253
1928
|
/**
|
|
1254
1929
|
* Component props.
|
|
1255
1930
|
*/
|
|
@@ -1280,6 +1955,8 @@ interface ButtonProps extends ComponentProps<'button'>, StylingProps {
|
|
|
1280
1955
|
rightIcon?: IconProps['icon'];
|
|
1281
1956
|
/** Props to add to the right icon. */
|
|
1282
1957
|
rightIconProps?: Omit<IconProps, 'icon' | 'ref'>;
|
|
1958
|
+
/** Theme. */
|
|
1959
|
+
theme?: Theme;
|
|
1283
1960
|
/** Button variant. */
|
|
1284
1961
|
variant?: ButtonVariant;
|
|
1285
1962
|
}
|
|
@@ -1290,6 +1967,7 @@ type StyledButtonProps = ButtonProps & {
|
|
|
1290
1967
|
$isDisabled: ButtonProps['isDisabled'];
|
|
1291
1968
|
$isHovered: ButtonProps['isHovered'];
|
|
1292
1969
|
$isLoading: ButtonProps['isLoading'];
|
|
1970
|
+
$theme: ButtonProps['theme'];
|
|
1293
1971
|
$variant: ButtonProps['variant'];
|
|
1294
1972
|
};
|
|
1295
1973
|
|
|
@@ -1297,12 +1975,13 @@ type StyledButtonProps = ButtonProps & {
|
|
|
1297
1975
|
* Component style.
|
|
1298
1976
|
*/
|
|
1299
1977
|
declare const StyledButton: styled_components.StyledComponent<"button", any, ButtonProps & {
|
|
1300
|
-
$color:
|
|
1978
|
+
$color: string | undefined;
|
|
1301
1979
|
$fullWidth?: boolean | undefined;
|
|
1302
1980
|
$isActive: boolean | undefined;
|
|
1303
1981
|
$isDisabled: boolean | undefined;
|
|
1304
1982
|
$isHovered: boolean | undefined;
|
|
1305
1983
|
$isLoading: boolean | undefined;
|
|
1984
|
+
$theme: Theme | undefined;
|
|
1306
1985
|
$variant: ButtonVariant | undefined;
|
|
1307
1986
|
}, never>;
|
|
1308
1987
|
|
|
@@ -1323,9 +2002,12 @@ interface LinkProps extends ComponentProps<'a'>, StylingProps {
|
|
|
1323
2002
|
as?: 'a' | ElementType;
|
|
1324
2003
|
/** Whether the component is disabled or not. */
|
|
1325
2004
|
isDisabled?: boolean;
|
|
2005
|
+
/** Theme. */
|
|
2006
|
+
theme?: Theme;
|
|
1326
2007
|
}
|
|
1327
2008
|
type StyledLinkProps = Omit<LinkProps, 'isDisabled'> & {
|
|
1328
2009
|
$isDisabled: LinkProps['isDisabled'];
|
|
2010
|
+
$theme: LinkProps['theme'];
|
|
1329
2011
|
};
|
|
1330
2012
|
|
|
1331
2013
|
/**
|
|
@@ -1333,6 +2015,7 @@ type StyledLinkProps = Omit<LinkProps, 'isDisabled'> & {
|
|
|
1333
2015
|
*/
|
|
1334
2016
|
declare const StyledLink: styled_components.StyledComponent<"a", any, Omit<LinkProps, "isDisabled"> & {
|
|
1335
2017
|
$isDisabled: boolean | undefined;
|
|
2018
|
+
$theme: Theme | undefined;
|
|
1336
2019
|
}, never>;
|
|
1337
2020
|
|
|
1338
2021
|
/**
|
|
@@ -1348,12 +2031,13 @@ declare const Link: Comp<LinkProps, HTMLAnchorElement>;
|
|
|
1348
2031
|
/**
|
|
1349
2032
|
* Component props.
|
|
1350
2033
|
*/
|
|
1351
|
-
interface ButtonLinkProps extends Omit<LinkProps, 'color'>, Pick<ButtonProps, 'color' | 'isActive' | 'isDisabled' | 'leftIcon' | 'rightIcon' | 'variant'> {
|
|
2034
|
+
interface ButtonLinkProps extends Omit<LinkProps, 'color'>, Pick<ButtonProps, 'color' | 'isActive' | 'isDisabled' | 'leftIcon' | 'rightIcon' | 'variant' | 'theme'> {
|
|
1352
2035
|
}
|
|
1353
2036
|
type StyledButtonLinkProps = Omit<ButtonLinkProps, 'isActive' | 'isDisabled' | 'variant' | 'color' | 'size'> & {
|
|
1354
2037
|
$isActive: ButtonLinkProps['isActive'];
|
|
1355
2038
|
$isDisabled: ButtonLinkProps['isDisabled'];
|
|
1356
2039
|
$variant: ButtonLinkProps['variant'];
|
|
2040
|
+
$theme: ButtonLinkProps['theme'];
|
|
1357
2041
|
$color: ButtonLinkProps['color'];
|
|
1358
2042
|
};
|
|
1359
2043
|
|
|
@@ -1378,9 +2062,12 @@ interface CardProps extends ComponentProps<'div'>, StylingProps {
|
|
|
1378
2062
|
isCollapsible?: boolean;
|
|
1379
2063
|
/** Method to handle component change. */
|
|
1380
2064
|
onCollapse?(isCollapsed: boolean): void;
|
|
2065
|
+
/** Theme. */
|
|
2066
|
+
theme?: Theme;
|
|
1381
2067
|
}
|
|
1382
2068
|
type StyledCardProps = Omit<CardProps, 'isCollapsed'> & {
|
|
1383
2069
|
$isCollapsed: CardProps['isCollapsed'];
|
|
2070
|
+
$theme: CardProps['theme'];
|
|
1384
2071
|
};
|
|
1385
2072
|
|
|
1386
2073
|
/**
|
|
@@ -1436,12 +2123,15 @@ interface HeadingProps extends ComponentProps<'span'>, StylingProps {
|
|
|
1436
2123
|
as: HeadingComponent;
|
|
1437
2124
|
/** Whether the text will truncate with a text overflow ellipsis or wrap. */
|
|
1438
2125
|
noWrap?: boolean;
|
|
2126
|
+
/** Theme. */
|
|
2127
|
+
theme?: Theme;
|
|
1439
2128
|
/** The component the Heading will look like. */
|
|
1440
2129
|
variant?: HeadingVariant;
|
|
1441
2130
|
}
|
|
1442
2131
|
type StyledHeadingProps = Omit<HeadingProps, 'color' | 'noWrap'> & {
|
|
1443
2132
|
$noWrap: HeadingProps['noWrap'];
|
|
1444
2133
|
$variant: HeadingProps['variant'];
|
|
2134
|
+
$theme: HeadingProps['theme'];
|
|
1445
2135
|
};
|
|
1446
2136
|
|
|
1447
2137
|
/**
|
|
@@ -1532,6 +2222,8 @@ interface CheckboxGroupProps extends Omit<ComponentProps<'div'>, 'onChange'>, St
|
|
|
1532
2222
|
onChange?(values: string[]): void;
|
|
1533
2223
|
/** Method to handle component change. */
|
|
1534
2224
|
orientation?: CheckboxGroupOrientation;
|
|
2225
|
+
/** Theme. */
|
|
2226
|
+
theme?: Theme;
|
|
1535
2227
|
/**
|
|
1536
2228
|
* Currently selected values.
|
|
1537
2229
|
* Used for controlled version.
|
|
@@ -1543,6 +2235,7 @@ type StyledCheckboxGroupProps = Omit<CheckboxGroupProps, 'isDisabled' | 'isInval
|
|
|
1543
2235
|
$isInvalid: CheckboxGroupProps['isInvalid'];
|
|
1544
2236
|
$isReadOnly: CheckboxGroupProps['isReadOnly'];
|
|
1545
2237
|
$orientation: CheckboxGroupProps['orientation'];
|
|
2238
|
+
$theme: CheckboxGroupProps['theme'];
|
|
1546
2239
|
};
|
|
1547
2240
|
|
|
1548
2241
|
/**
|
|
@@ -1587,6 +2280,8 @@ interface CheckboxProps extends Omit<ComponentProps<'label'>, 'onChange'>, Styli
|
|
|
1587
2280
|
name?: HTMLInputElement['name'];
|
|
1588
2281
|
/** Method to handle component change. */
|
|
1589
2282
|
onChange?(isChecked: boolean, value?: string, name?: string, event?: ChangeEvent<HTMLInputElement>, state?: CheckboxGroupState): void;
|
|
2283
|
+
/** Theme. */
|
|
2284
|
+
theme?: Theme;
|
|
1590
2285
|
/**
|
|
1591
2286
|
* Value to pass to the input element.
|
|
1592
2287
|
* Required within a group.
|
|
@@ -1600,6 +2295,7 @@ type StyledCheckboxProps = Omit<CheckboxProps, 'color' | 'isColored' | 'isDisabl
|
|
|
1600
2295
|
$isFocusVisible: boolean;
|
|
1601
2296
|
$isRequired: CheckboxProps['isRequired'];
|
|
1602
2297
|
$isSelected: CheckboxProps['isSelected'];
|
|
2298
|
+
$theme: CheckboxProps['theme'];
|
|
1603
2299
|
};
|
|
1604
2300
|
|
|
1605
2301
|
/**
|
|
@@ -1653,6 +2349,8 @@ interface ShieldProps extends ComponentProps<'div'>, StylingProps {
|
|
|
1653
2349
|
isOutlined?: boolean;
|
|
1654
2350
|
/** Whether the shield has its colors reversed or not. */
|
|
1655
2351
|
isReversed?: boolean;
|
|
2352
|
+
/** Theme. */
|
|
2353
|
+
theme?: Theme;
|
|
1656
2354
|
/** Shield variant. */
|
|
1657
2355
|
variant?: ShieldVariant;
|
|
1658
2356
|
}
|
|
@@ -1660,6 +2358,7 @@ type StyledShieldProps = Omit<ShieldProps, 'color'> & {
|
|
|
1660
2358
|
$color?: NotificationsColorPalette | ProductColorPalette | (string & {});
|
|
1661
2359
|
$isOutlined: ShieldProps['isOutlined'];
|
|
1662
2360
|
$isReversed: ShieldProps['isReversed'];
|
|
2361
|
+
$theme: ShieldProps['theme'];
|
|
1663
2362
|
$variant: ShieldProps['variant'];
|
|
1664
2363
|
};
|
|
1665
2364
|
|
|
@@ -1691,11 +2390,14 @@ interface DetailedCardProps extends ComponentProps<'div'>, StylingProps {
|
|
|
1691
2390
|
isLoading?: boolean;
|
|
1692
2391
|
/** Shield to display in place of the banner icon. */
|
|
1693
2392
|
shield?: ShieldVariant;
|
|
2393
|
+
/** Theme. */
|
|
2394
|
+
theme?: Theme;
|
|
1694
2395
|
/** Method to handle component change. */
|
|
1695
2396
|
onCollapseAll?(areAllCollapsed: boolean): void;
|
|
1696
2397
|
}
|
|
1697
2398
|
type StyledDetailedCardProps = Omit<DetailedCardProps, 'color'> & {
|
|
1698
2399
|
$color: DetailedCardProps['color'];
|
|
2400
|
+
$theme: DetailedCardProps['theme'];
|
|
1699
2401
|
};
|
|
1700
2402
|
|
|
1701
2403
|
/**
|
|
@@ -1715,17 +2417,20 @@ interface PillProps extends ComponentProps<'div'>, StylingProps {
|
|
|
1715
2417
|
/** Right button. Usually used to remove the pill but can be used for anything else. An icon should be provided as the only content. By default the icon is an cross. No action is automated here, an onClick should be provided. */
|
|
1716
2418
|
rightButton?: Omit<IconButtonProps, 'ref' | 'color'>;
|
|
1717
2419
|
/** 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`. */
|
|
1718
|
-
color?: PresentationColorPalette |
|
|
2420
|
+
color?: PresentationColorPalette | NeutralColorPalette | 'error' | 'warning' | 'success' | 'error-dark' | 'warning-dark' | 'success-dark' | (string & {});
|
|
1719
2421
|
/** Color to use on hover. */
|
|
1720
2422
|
hoverColor?: string;
|
|
1721
2423
|
/** Size of the Pill. */
|
|
1722
2424
|
size?: PillSize;
|
|
2425
|
+
/** Theme. */
|
|
2426
|
+
theme?: Theme;
|
|
1723
2427
|
}
|
|
1724
2428
|
type StyledPillProps = Omit<PillProps, 'color' | 'autoBreak'> & {
|
|
1725
2429
|
$autoBreak: PillProps['autoBreak'];
|
|
1726
2430
|
$color: PillProps['color'];
|
|
1727
2431
|
$hoverColor: PillProps['hoverColor'];
|
|
1728
2432
|
$size: PillProps['size'];
|
|
2433
|
+
$theme: PillProps['theme'];
|
|
1729
2434
|
};
|
|
1730
2435
|
|
|
1731
2436
|
/**
|
|
@@ -1733,12 +2438,85 @@ type StyledPillProps = Omit<PillProps, 'color' | 'autoBreak'> & {
|
|
|
1733
2438
|
*/
|
|
1734
2439
|
declare const Pill: Comp<PillProps, HTMLDivElement>;
|
|
1735
2440
|
|
|
2441
|
+
/**
|
|
2442
|
+
* Component variant.
|
|
2443
|
+
*/
|
|
2444
|
+
declare const TextVariant: {
|
|
2445
|
+
readonly body: "body";
|
|
2446
|
+
readonly button: "button";
|
|
2447
|
+
readonly caption: "caption";
|
|
2448
|
+
readonly helper: "helper";
|
|
2449
|
+
readonly inherit: "inherit";
|
|
2450
|
+
};
|
|
2451
|
+
type TextVariant = ValueOf<typeof TextVariant>;
|
|
2452
|
+
declare const TextComponent: {
|
|
2453
|
+
readonly p: "p";
|
|
2454
|
+
readonly b: "b";
|
|
2455
|
+
readonly i: "i";
|
|
2456
|
+
readonly u: "u";
|
|
2457
|
+
readonly abbr: "abbr";
|
|
2458
|
+
readonly cite: "cite";
|
|
2459
|
+
readonly del: "del";
|
|
2460
|
+
readonly em: "em";
|
|
2461
|
+
readonly ins: "ins";
|
|
2462
|
+
readonly kbd: "kbd";
|
|
2463
|
+
readonly mark: "mark";
|
|
2464
|
+
readonly s: "s";
|
|
2465
|
+
readonly samp: "samp";
|
|
2466
|
+
readonly sub: "sub";
|
|
2467
|
+
readonly sup: "sup";
|
|
2468
|
+
};
|
|
2469
|
+
type TextComponent = ValueOf<typeof TextComponent>;
|
|
2470
|
+
/**
|
|
2471
|
+
* Component props.
|
|
2472
|
+
*/
|
|
2473
|
+
interface TextProps extends ComponentProps<'span'>, StylingProps {
|
|
2474
|
+
/** Override component. */
|
|
2475
|
+
as?: TextComponent;
|
|
2476
|
+
/** Color variant. Either from color palette or hex or rgb strings. */
|
|
2477
|
+
color?: NotificationsColorPalette | NeutralColorPalette | (string & {});
|
|
2478
|
+
/** Font family. */
|
|
2479
|
+
fontFamily?: FontFamily;
|
|
2480
|
+
/** Font size. */
|
|
2481
|
+
fontSize?: string;
|
|
2482
|
+
/** Font weight. */
|
|
2483
|
+
fontWeight?: string;
|
|
2484
|
+
/** Line height. */
|
|
2485
|
+
lineHeight?: string;
|
|
2486
|
+
/** Whether the text will truncate with a text overflow ellipsis or wrap. */
|
|
2487
|
+
noWrap?: boolean;
|
|
2488
|
+
/** Theme. */
|
|
2489
|
+
theme?: Theme;
|
|
2490
|
+
/** Variant. */
|
|
2491
|
+
variant?: TextVariant;
|
|
2492
|
+
/** Word break CSS properties */
|
|
2493
|
+
wordBreak?: string;
|
|
2494
|
+
}
|
|
2495
|
+
type StyledTextProps = Omit<TextProps, 'as' | 'color' | 'fontFamily' | 'fontSize' | 'lineHeight' | 'noWrap' | 'variant'> & {
|
|
2496
|
+
$as: TextProps['as'];
|
|
2497
|
+
$color: TextProps['color'];
|
|
2498
|
+
$fontFamily?: TextProps['fontFamily'];
|
|
2499
|
+
$fontSize: TextProps['fontSize'];
|
|
2500
|
+
$fontWeight: TextProps['fontWeight'];
|
|
2501
|
+
$lineHeight: TextProps['lineHeight'];
|
|
2502
|
+
$noWrap: TextProps['noWrap'];
|
|
2503
|
+
$variant: TextProps['variant'];
|
|
2504
|
+
$theme: TextProps['theme'];
|
|
2505
|
+
};
|
|
2506
|
+
|
|
2507
|
+
/**
|
|
2508
|
+
* The Text component.
|
|
2509
|
+
*/
|
|
2510
|
+
declare const Text: Comp<TextProps, HTMLDivElement>;
|
|
2511
|
+
|
|
1736
2512
|
/**
|
|
1737
2513
|
* Component props.
|
|
1738
2514
|
*/
|
|
1739
2515
|
interface DetailedCardSectionItemProps extends ComponentProps<'div'> {
|
|
1740
2516
|
/** Description */
|
|
1741
2517
|
description?: string | ReactElement;
|
|
2518
|
+
/** TextProps to forward to the description. */
|
|
2519
|
+
descriptionProps?: Omit<TextProps, 'ref'>;
|
|
1742
2520
|
/**
|
|
1743
2521
|
* Can be a string or an array of strings containing `d` property of the `path` SVG element.<br />
|
|
1744
2522
|
* Can also be a ReactElement.
|
|
@@ -1793,7 +2571,9 @@ interface DetailedCardHeaderProps extends ComponentProps<'div'> {
|
|
|
1793
2571
|
/** Whether the card is loading or not. */
|
|
1794
2572
|
isLoading?: boolean;
|
|
1795
2573
|
}
|
|
1796
|
-
type StyledDetailedCardHeaderProps = DetailedCardHeaderProps & {
|
|
2574
|
+
type StyledDetailedCardHeaderProps = DetailedCardHeaderProps & {
|
|
2575
|
+
$theme: Theme;
|
|
2576
|
+
};
|
|
1797
2577
|
|
|
1798
2578
|
/**
|
|
1799
2579
|
* The DetailedCardHeader component.
|
|
@@ -1843,9 +2623,12 @@ interface FlexboxProps extends ComponentProps<'div'>, StylingProps, InternalSpac
|
|
|
1843
2623
|
colGap: number;
|
|
1844
2624
|
rowGap: number;
|
|
1845
2625
|
};
|
|
2626
|
+
/** Theme. */
|
|
2627
|
+
theme?: Theme;
|
|
1846
2628
|
}
|
|
1847
2629
|
type StyledFlexboxProps = FlexboxProps & {
|
|
1848
2630
|
$divider: FlexboxProps['divider'];
|
|
2631
|
+
$theme: FlexboxProps['theme'];
|
|
1849
2632
|
};
|
|
1850
2633
|
|
|
1851
2634
|
/**
|
|
@@ -2080,9 +2863,12 @@ interface GridProps extends ComponentProps<'div'>, StylingProps, InternalSpacing
|
|
|
2080
2863
|
colGap: number;
|
|
2081
2864
|
rowGap: number;
|
|
2082
2865
|
};
|
|
2866
|
+
/** Theme. */
|
|
2867
|
+
theme?: Theme;
|
|
2083
2868
|
}
|
|
2084
2869
|
type StyledGridProps = GridProps & {
|
|
2085
2870
|
$divider: GridProps['divider'];
|
|
2871
|
+
$theme: GridProps['theme'];
|
|
2086
2872
|
};
|
|
2087
2873
|
|
|
2088
2874
|
/**
|
|
@@ -2157,7 +2943,7 @@ type ListboxVariant = ValueOf<typeof ListboxVariant>;
|
|
|
2157
2943
|
/**
|
|
2158
2944
|
* Component props.
|
|
2159
2945
|
*/
|
|
2160
|
-
interface ListboxProps extends Omit<ComponentProps<'div'>, 'onChange'>,
|
|
2946
|
+
interface ListboxProps extends Omit<ComponentProps<'div'>, 'onChange'>, ContainerProps, FocusWithinGroupOptions {
|
|
2161
2947
|
/**
|
|
2162
2948
|
* Default selected values.
|
|
2163
2949
|
* Used for uncontrolled version.
|
|
@@ -2194,11 +2980,11 @@ type StyledListboxProps = Omit<ListboxProps, 'onChange'> & {
|
|
|
2194
2980
|
|
|
2195
2981
|
declare const ActiveDescendantListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
|
|
2196
2982
|
context: ListboxContextProps;
|
|
2197
|
-
}, "label" | "slot" | "style" | "title" | "left" | "right" | "
|
|
2983
|
+
}, "label" | "slot" | "style" | "title" | "left" | "right" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "alignContent" | "alignItems" | "flexDirection" | "flexWrap" | "gap" | "justifyContent" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyItems" | "display" | "position" | "top" | "bottom" | "zIndex" | "aria-label" | "aria-labelledby" | "variant" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "values" | "isDisabled" | "direction" | "defaultValues" | "isInvalid" | "isReadOnly" | "isRequired" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "listRole" | "activedescendant" | "maxOptionsLength" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2198
2984
|
|
|
2199
2985
|
declare const RovingTabindexListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
|
|
2200
2986
|
context: ListboxContextProps;
|
|
2201
|
-
}, "label" | "slot" | "style" | "title" | "left" | "right" | "
|
|
2987
|
+
}, "label" | "slot" | "style" | "title" | "left" | "right" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "alignContent" | "alignItems" | "flexDirection" | "flexWrap" | "gap" | "justifyContent" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyItems" | "display" | "position" | "top" | "bottom" | "zIndex" | "aria-label" | "aria-labelledby" | "variant" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "values" | "isDisabled" | "direction" | "defaultValues" | "isInvalid" | "isReadOnly" | "isRequired" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "listRole" | "activedescendant" | "maxOptionsLength" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2202
2988
|
|
|
2203
2989
|
/**
|
|
2204
2990
|
* The Listbox component.
|
|
@@ -2235,6 +3021,8 @@ interface ItemProps extends Omit<ComponentProps<'div'>, 'onClick'>, ContainerPro
|
|
|
2235
3021
|
isSelected?: boolean;
|
|
2236
3022
|
/** Method to handle component change. */
|
|
2237
3023
|
onClick?: (isSelected: boolean, value?: string, event?: MouseEvent<HTMLDivElement>, state?: ListboxContextProps) => void | ComponentProps<'div'>['onClick'];
|
|
3024
|
+
/** Theme. */
|
|
3025
|
+
theme?: Theme;
|
|
2238
3026
|
/** Value. */
|
|
2239
3027
|
value?: string;
|
|
2240
3028
|
}
|
|
@@ -2244,6 +3032,7 @@ type StyledItemProps = Omit<ItemProps, 'color' | 'onClick' | 'value'> & {
|
|
|
2244
3032
|
$isFocused: ItemProps['isFocused'];
|
|
2245
3033
|
$isHovered: ItemProps['isHovered'];
|
|
2246
3034
|
$isSelected: ItemProps['isSelected'];
|
|
3035
|
+
$theme: ItemProps['theme'];
|
|
2247
3036
|
};
|
|
2248
3037
|
|
|
2249
3038
|
/**
|
|
@@ -2269,72 +3058,6 @@ type StyledLinkButtonProps = Omit<LinkButtonProps, 'isDisabled'> & {
|
|
|
2269
3058
|
*/
|
|
2270
3059
|
declare const LinkButton: Comp<LinkButtonProps, HTMLButtonElement>;
|
|
2271
3060
|
|
|
2272
|
-
/**
|
|
2273
|
-
* Component variant.
|
|
2274
|
-
*/
|
|
2275
|
-
declare const TextVariant: {
|
|
2276
|
-
readonly body: "body";
|
|
2277
|
-
readonly button: "button";
|
|
2278
|
-
readonly caption: "caption";
|
|
2279
|
-
readonly helper: "helper";
|
|
2280
|
-
readonly inherit: "inherit";
|
|
2281
|
-
};
|
|
2282
|
-
type TextVariant = ValueOf<typeof TextVariant>;
|
|
2283
|
-
declare const TextComponent: {
|
|
2284
|
-
readonly p: "p";
|
|
2285
|
-
readonly b: "b";
|
|
2286
|
-
readonly i: "i";
|
|
2287
|
-
readonly u: "u";
|
|
2288
|
-
readonly abbr: "abbr";
|
|
2289
|
-
readonly cite: "cite";
|
|
2290
|
-
readonly del: "del";
|
|
2291
|
-
readonly em: "em";
|
|
2292
|
-
readonly ins: "ins";
|
|
2293
|
-
readonly kbd: "kbd";
|
|
2294
|
-
readonly mark: "mark";
|
|
2295
|
-
readonly s: "s";
|
|
2296
|
-
readonly samp: "samp";
|
|
2297
|
-
readonly sub: "sub";
|
|
2298
|
-
readonly sup: "sup";
|
|
2299
|
-
};
|
|
2300
|
-
type TextComponent = ValueOf<typeof TextComponent>;
|
|
2301
|
-
/**
|
|
2302
|
-
* Component props.
|
|
2303
|
-
*/
|
|
2304
|
-
interface TextProps extends ComponentProps<'span'>, StylingProps {
|
|
2305
|
-
/** Override component. */
|
|
2306
|
-
as?: TextComponent;
|
|
2307
|
-
/** Color variant. Either from color palette or hex or rgb strings. */
|
|
2308
|
-
color?: NotificationsColorPalette | NeutralColorPalette | (string & {});
|
|
2309
|
-
/** Font family. */
|
|
2310
|
-
fontFamily?: FontFamily;
|
|
2311
|
-
/** Font size. */
|
|
2312
|
-
fontSize?: string;
|
|
2313
|
-
/** Font weight. */
|
|
2314
|
-
fontWeight?: string;
|
|
2315
|
-
/** Line height. */
|
|
2316
|
-
lineHeight?: string;
|
|
2317
|
-
/** Whether the text will truncate with a text overflow ellipsis or wrap. */
|
|
2318
|
-
noWrap?: boolean;
|
|
2319
|
-
/** Variant. */
|
|
2320
|
-
variant?: TextVariant;
|
|
2321
|
-
}
|
|
2322
|
-
type StyledTextProps = Omit<TextProps, 'as' | 'color' | 'fontFamily' | 'fontSize' | 'lineHeight' | 'noWrap' | 'variant'> & {
|
|
2323
|
-
$as: TextProps['as'];
|
|
2324
|
-
$color: TextProps['color'];
|
|
2325
|
-
$fontFamily?: TextProps['fontFamily'];
|
|
2326
|
-
$fontSize: TextProps['fontSize'];
|
|
2327
|
-
$fontWeight: TextProps['fontWeight'];
|
|
2328
|
-
$lineHeight: TextProps['lineHeight'];
|
|
2329
|
-
$noWrap: TextProps['noWrap'];
|
|
2330
|
-
$variant: TextProps['variant'];
|
|
2331
|
-
};
|
|
2332
|
-
|
|
2333
|
-
/**
|
|
2334
|
-
* The Text component.
|
|
2335
|
-
*/
|
|
2336
|
-
declare const Text: Comp<TextProps, HTMLDivElement>;
|
|
2337
|
-
|
|
2338
3061
|
interface NumberFormatOptions {
|
|
2339
3062
|
}
|
|
2340
3063
|
/**
|
|
@@ -2390,6 +3113,7 @@ type StyledNumberProps = Omit<NumberProps, 'as' | 'color' | 'fontFamily' | 'font
|
|
|
2390
3113
|
$color: NumberProps['color'];
|
|
2391
3114
|
$fontSize: NumberProps['fontSize'];
|
|
2392
3115
|
$variant: NumberProps['variant'];
|
|
3116
|
+
$theme: NumberProps['theme'];
|
|
2393
3117
|
};
|
|
2394
3118
|
|
|
2395
3119
|
/**
|
|
@@ -2407,6 +3131,8 @@ interface ProgressBarProps extends LinearProgressProps {
|
|
|
2407
3131
|
backgroundColor?: string;
|
|
2408
3132
|
/** Height of the bar. */
|
|
2409
3133
|
height?: string;
|
|
3134
|
+
/** Theme. */
|
|
3135
|
+
theme?: Theme;
|
|
2410
3136
|
/** Width of the bar. */
|
|
2411
3137
|
width?: string;
|
|
2412
3138
|
}
|
|
@@ -2462,6 +3188,8 @@ interface RadioGroupProps extends Omit<ComponentProps<'div'>, 'onChange'>, Styli
|
|
|
2462
3188
|
onChange?(values: string): void;
|
|
2463
3189
|
/** Method to handle component change. */
|
|
2464
3190
|
orientation?: RadioGroupOrientation;
|
|
3191
|
+
/** Theme. */
|
|
3192
|
+
theme?: Theme;
|
|
2465
3193
|
/**
|
|
2466
3194
|
* Currently selected value.
|
|
2467
3195
|
* Used for controlled version.
|
|
@@ -2473,6 +3201,7 @@ type StyledRadioGroupProps = Omit<RadioGroupProps, 'isDisabled' | 'isInvalid' |
|
|
|
2473
3201
|
$isInvalid: RadioGroupProps['isInvalid'];
|
|
2474
3202
|
$isReadOnly: RadioGroupProps['isReadOnly'];
|
|
2475
3203
|
$orientation: RadioGroupProps['orientation'];
|
|
3204
|
+
$theme: RadioGroupProps['theme'];
|
|
2476
3205
|
};
|
|
2477
3206
|
|
|
2478
3207
|
/**
|
|
@@ -2515,6 +3244,8 @@ interface RadioProps extends Omit<ComponentProps<'label'>, 'onChange'>, StylingP
|
|
|
2515
3244
|
name?: HTMLInputElement['name'];
|
|
2516
3245
|
/** Method to handle component change. */
|
|
2517
3246
|
onChange?(isChecked: boolean, value?: string, name?: string, event?: ChangeEvent<HTMLInputElement>, state?: RadioGroupState): void;
|
|
3247
|
+
/** Theme. */
|
|
3248
|
+
theme?: Theme;
|
|
2518
3249
|
/**
|
|
2519
3250
|
* Value to pass to the input element.
|
|
2520
3251
|
* Required within a group.
|
|
@@ -2528,6 +3259,7 @@ type StyledRadioProps = Omit<RadioProps, 'color' | 'isColored' | 'isDisabled' |
|
|
|
2528
3259
|
$isFocusVisible: boolean;
|
|
2529
3260
|
$isRequired: RadioProps['isRequired'];
|
|
2530
3261
|
$isSelected: RadioProps['isSelected'];
|
|
3262
|
+
$theme: RadioProps['theme'];
|
|
2531
3263
|
};
|
|
2532
3264
|
|
|
2533
3265
|
/**
|
|
@@ -2547,6 +3279,7 @@ declare const baseGrid: styled_components.FlattenInterpolation<styled_components
|
|
|
2547
3279
|
declare const baseStyling: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<StylingProps, any>>;
|
|
2548
3280
|
declare const baseContainer: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<ContainerProps, any>>;
|
|
2549
3281
|
declare const focusRing: styled_components.FlattenSimpleInterpolation;
|
|
3282
|
+
declare const srOnly: styled_components.FlattenSimpleInterpolation;
|
|
2550
3283
|
|
|
2551
3284
|
/**
|
|
2552
3285
|
* Component props.
|
|
@@ -2554,8 +3287,12 @@ declare const focusRing: styled_components.FlattenSimpleInterpolation;
|
|
|
2554
3287
|
interface SkeletonProps extends ComponentProps<'div'>, StylingProps, InternalSpacingProps {
|
|
2555
3288
|
/** Whether the content is loaded and should be displayed instead of the skeleton. */
|
|
2556
3289
|
isLoaded?: boolean;
|
|
3290
|
+
/** Theme. */
|
|
3291
|
+
theme?: Theme;
|
|
2557
3292
|
}
|
|
2558
|
-
type StyledSkeletonProps = SkeletonProps & {
|
|
3293
|
+
type StyledSkeletonProps = SkeletonProps & {
|
|
3294
|
+
$theme: SkeletonProps['theme'];
|
|
3295
|
+
};
|
|
2559
3296
|
|
|
2560
3297
|
/**
|
|
2561
3298
|
* Component variant.
|
|
@@ -2586,6 +3323,7 @@ type StyledSkeletonTextProps = Omit<SkeletonTextProps, 'fontSize' | 'lineHeight'
|
|
|
2586
3323
|
$fontSize: SkeletonTextProps['fontSize'];
|
|
2587
3324
|
$lineHeight: SkeletonTextProps['lineHeight'];
|
|
2588
3325
|
$variant: SkeletonTextProps['variant'];
|
|
3326
|
+
$theme: SkeletonProps['theme'];
|
|
2589
3327
|
};
|
|
2590
3328
|
|
|
2591
3329
|
/**
|
|
@@ -2598,7 +3336,9 @@ declare const SkeletonText: Comp<SkeletonTextProps, HTMLDivElement>;
|
|
|
2598
3336
|
*/
|
|
2599
3337
|
interface SkeletonCircleProps extends SkeletonProps {
|
|
2600
3338
|
}
|
|
2601
|
-
type StyledSkeletonCircleProps = SkeletonCircleProps & {
|
|
3339
|
+
type StyledSkeletonCircleProps = SkeletonCircleProps & {
|
|
3340
|
+
$theme: SkeletonProps['theme'];
|
|
3341
|
+
};
|
|
2602
3342
|
|
|
2603
3343
|
/**
|
|
2604
3344
|
* The SkeletonCircle component.
|
|
@@ -2636,9 +3376,12 @@ interface SpinnerProps extends Omit<ComponentProps<'img'>, 'color'>, LayoutProps
|
|
|
2636
3376
|
isColored?: boolean;
|
|
2637
3377
|
/** Spinner size. */
|
|
2638
3378
|
size?: SpinnerSize;
|
|
3379
|
+
/** Theme. */
|
|
3380
|
+
theme?: Theme;
|
|
2639
3381
|
}
|
|
2640
3382
|
type StyledSpinnerProps = Omit<SpinnerProps, 'color'> & {
|
|
2641
3383
|
$size?: SpinnerProps['size'];
|
|
3384
|
+
$theme?: SpinnerProps['theme'];
|
|
2642
3385
|
};
|
|
2643
3386
|
|
|
2644
3387
|
/**
|
|
@@ -2696,6 +3439,8 @@ interface SwitchGroupProps extends Omit<ComponentProps<'div'>, 'onChange'>, Styl
|
|
|
2696
3439
|
onChange?(values: string[]): void;
|
|
2697
3440
|
/** Method to handle component change. */
|
|
2698
3441
|
orientation?: SwitchGroupOrientation;
|
|
3442
|
+
/** Theme. */
|
|
3443
|
+
theme?: Theme;
|
|
2699
3444
|
/**
|
|
2700
3445
|
* Currently selected values.
|
|
2701
3446
|
* Used for controlled version.
|
|
@@ -2707,6 +3452,7 @@ type StyledSwitchGroupProps = Omit<SwitchGroupProps, 'isDisabled' | 'isInvalid'
|
|
|
2707
3452
|
$isInvalid: SwitchGroupProps['isInvalid'];
|
|
2708
3453
|
$isReadOnly: SwitchGroupProps['isReadOnly'];
|
|
2709
3454
|
$orientation: SwitchGroupProps['orientation'];
|
|
3455
|
+
$theme: SwitchGroupProps['theme'];
|
|
2710
3456
|
};
|
|
2711
3457
|
|
|
2712
3458
|
/**
|
|
@@ -2749,6 +3495,8 @@ interface SwitchProps extends Omit<ComponentProps<'label'>, 'onChange'>, Styling
|
|
|
2749
3495
|
name?: HTMLInputElement['name'];
|
|
2750
3496
|
/** Method to handle component change. */
|
|
2751
3497
|
onChange?(isChecked: boolean, value?: string, name?: string, event?: ChangeEvent<HTMLInputElement>, state?: SwitchGroupState): void;
|
|
3498
|
+
/** Theme. */
|
|
3499
|
+
theme?: Theme;
|
|
2752
3500
|
/**
|
|
2753
3501
|
* Value to pass to the input element.
|
|
2754
3502
|
* Required within a group.
|
|
@@ -2762,6 +3510,7 @@ type StyledSwitchProps = Omit<SwitchProps, 'color' | 'isColored' | 'isDisabled'
|
|
|
2762
3510
|
$isFocusVisible: boolean;
|
|
2763
3511
|
$isRequired: SwitchProps['isRequired'];
|
|
2764
3512
|
$isSelected: SwitchProps['isSelected'];
|
|
3513
|
+
$theme: SwitchProps['theme'];
|
|
2765
3514
|
};
|
|
2766
3515
|
|
|
2767
3516
|
/**
|
|
@@ -2830,6 +3579,8 @@ interface TextFieldProps extends Omit<ComponentProps<'div'>, 'onChange'>, Stylin
|
|
|
2830
3579
|
}[];
|
|
2831
3580
|
/** Placeholder. */
|
|
2832
3581
|
placeholder?: string;
|
|
3582
|
+
/** Theme. */
|
|
3583
|
+
theme?: Theme;
|
|
2833
3584
|
/** Input type. */
|
|
2834
3585
|
type?: HTMLInputElement['type'];
|
|
2835
3586
|
/**
|
|
@@ -2849,6 +3600,7 @@ type StyledTextFieldProps = Omit<TextFieldProps, 'color' | 'isColored' | 'isDisa
|
|
|
2849
3600
|
$isFocused: boolean;
|
|
2850
3601
|
$isFocusVisible: boolean;
|
|
2851
3602
|
$isRequired: TextFieldProps['isRequired'];
|
|
3603
|
+
$theme: TextFieldProps['theme'];
|
|
2852
3604
|
$variant: TextFieldProps['variant'];
|
|
2853
3605
|
};
|
|
2854
3606
|
|
|
@@ -2858,4 +3610,13 @@ type StyledTextFieldProps = Omit<TextFieldProps, 'color' | 'isColored' | 'isDisa
|
|
|
2858
3610
|
*/
|
|
2859
3611
|
declare const TextField: Comp<TextFieldProps, HTMLDivElement>;
|
|
2860
3612
|
|
|
2861
|
-
export { ActiveDescendantListbox, Alert, AlertProps, 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, Card, CardActions, CardActionsProps, CardBody, CardBodyProps, CardHeader, CardHeaderProps, CardProps, Checkbox, CheckboxGroup, CheckboxGroupOrientation, CheckboxGroupProps, CheckboxGroupState, CheckboxProps, Comp, ConditionalWrapper, ConditionalWrapperProps, ContainerProps, CtasColorPalette, DetailedCard, DetailedCardCollapsibleSectionItems, DetailedCardCollapsibleSectionItemsProps, DetailedCardHeader, DetailedCardHeaderProps, DetailedCardProps, DetailedCardSection, DetailedCardSectionItem, DetailedCardSectionItemProps, DetailedCardSectionProps, EventKey, FOCUS_WITHING_GROUP_INITIAL_STATE, Falsy, FlexDirection, FlexLayoutProps, FlexWrap, Flexbox, FlexboxProps, FocusWithinGroup, FocusWithinGroupAction, FocusWithinGroupActionType, FocusWithinGroupContext, FocusWithinGroupContextProps, FocusWithinGroupOptions, FocusWithinGroupProps, FocusWithinGroupReducer, FocusWithinGroupState, FontFamily, Grid, GridItem, GridItemProps, GridLayoutProps, GridProps, Heading, HeadingComponent, HeadingProps, HeadingVariant, 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, ListboxState, ListboxVariant, Menu, MenuBarItems, MenuItem, Navigation, NeutralColorPalette, NotificationsColorPalette, Number, NumberFormatOptions, NumberProps, Pill, PillProps, PillSize, PositioningProps, PresentationColorPalette, Product, ProductColorPalette, ProductLogo, ProductName, ProgressBar, ProgressBarProps, Radio, RadioGroup, RadioGroupOrientation, RadioGroupProps, RadioGroupState, RadioProps, RedsiftAppBarColorBackground, RedsiftAppBarColorExpandIconBackgroundHover, RedsiftAppBarColorExpandIconHover, RedsiftAppBarColorExpandIconResting, RedsiftAppBarColorText, RedsiftColorCtasPrimaryActive, RedsiftColorCtasPrimaryActiveHover, RedsiftColorCtasPrimaryButtonActive, RedsiftColorCtasPrimaryButtonActiveHover, RedsiftColorCtasPrimaryButtonHover, RedsiftColorCtasPrimaryHover, RedsiftColorCtasPrimaryPrimary, RedsiftColorCtasSecondaryActive, RedsiftColorCtasSecondaryActiveHover, RedsiftColorCtasSecondaryButtonActive, RedsiftColorCtasSecondaryButtonActiveHover, RedsiftColorCtasSecondaryButtonHover, RedsiftColorCtasSecondaryHover, RedsiftColorCtasSecondaryPrimary, RedsiftColorNeutralBlack, RedsiftColorNeutralDarkgrey, RedsiftColorNeutralLightgrey, RedsiftColorNeutralMidgrey, RedsiftColorNeutralWhite, RedsiftColorNeutralXlightgrey, RedsiftColorNotificationsErrorActive, RedsiftColorNotificationsErrorActiveHover, RedsiftColorNotificationsErrorButtonActive, RedsiftColorNotificationsErrorButtonActiveHover, RedsiftColorNotificationsErrorButtonHover, RedsiftColorNotificationsErrorHover, RedsiftColorNotificationsErrorPrimary, RedsiftColorNotificationsInfoActive, RedsiftColorNotificationsInfoActiveHover, RedsiftColorNotificationsInfoButtonActive, RedsiftColorNotificationsInfoButtonActiveHover, RedsiftColorNotificationsInfoButtonHover, RedsiftColorNotificationsInfoHover, RedsiftColorNotificationsInfoPrimary, RedsiftColorNotificationsNoDataActive, RedsiftColorNotificationsNoDataActiveHover, RedsiftColorNotificationsNoDataButtonActive, RedsiftColorNotificationsNoDataButtonActiveHover, RedsiftColorNotificationsNoDataButtonHover, RedsiftColorNotificationsNoDataHover, RedsiftColorNotificationsNoDataPrimary, RedsiftColorNotificationsQuestionActive, RedsiftColorNotificationsQuestionActiveHover, RedsiftColorNotificationsQuestionButtonActive, RedsiftColorNotificationsQuestionButtonActiveHover, RedsiftColorNotificationsQuestionButtonHover, RedsiftColorNotificationsQuestionHover, RedsiftColorNotificationsQuestionPrimary, RedsiftColorNotificationsSuccessActive, RedsiftColorNotificationsSuccessActiveHover, RedsiftColorNotificationsSuccessButtonActive, RedsiftColorNotificationsSuccessButtonActiveHover, RedsiftColorNotificationsSuccessButtonHover, RedsiftColorNotificationsSuccessHover, RedsiftColorNotificationsSuccessPrimary, RedsiftColorNotificationsWarningActive, RedsiftColorNotificationsWarningActiveHover, RedsiftColorNotificationsWarningButtonActive, RedsiftColorNotificationsWarningButtonActiveHover, RedsiftColorNotificationsWarningButtonHover, 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, RedsiftColorProductAsm, RedsiftColorProductBrandTrust, RedsiftColorProductCertificates, RedsiftColorProductOndmarc, RedsiftColorProductRadar, RedsiftColorProductRojoDs, RedsiftColorProductVendorSecure, RedsiftColorProductWebsite, RedsiftColorRedsift, RedsiftLayoutZIndexDialog, RedsiftLayoutZIndexDropdown, RedsiftLayoutZIndexFooter, RedsiftLayoutZIndexHeader, RedsiftLayoutZIndexOverlay, RedsiftLayoutZIndexPopover, RedsiftLayoutZIndexSidePanel, RedsiftLayoutZIndexTooltip, RedsiftSideNavigationColorBackground, RedsiftSideNavigationColorMenuItemActive, RedsiftSideNavigationColorMenuItemBackgroundActive, RedsiftSideNavigationColorMenuItemBackgroundHover, RedsiftSideNavigationColorMenuItemBackgroundSecondary, RedsiftSideNavigationColorMenuItemTextDisabled, RedsiftSideNavigationColorMenuItemTextHover, RedsiftSideNavigationColorMenuItemTextResting, RedsiftSideNavigationColorScrollbarHover, RedsiftSideNavigationColorScrollbarResting, 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, 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, StyledItemProps, StyledLink, StyledLinkButtonProps, StyledLinkProps, StyledListboxProps, StyledNumberProps, StyledPillProps, StyledRadioGroupProps, StyledRadioProps, StyledShieldProps, StyledSideNavigationMenuBarProps, StyledSideNavigationMenuItemProps, StyledSideNavigationMenuProps, StyledSkeletonCircleProps, StyledSkeletonProps, StyledSkeletonTextProps, StyledSpinnerProps, StyledSwitchGroupProps, StyledSwitchProps, StyledTextFieldProps, StyledTextProps, StylingProps, Switch, SwitchGroup, SwitchGroupOrientation, SwitchGroupProps, SwitchGroupState, SwitchProps, TabStop, Text, TextComponent, TextField, TextFieldProps, TextFieldVariant, TextProps, TextVariant, 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, uniqueId, useAppSidePanel, useBoundingClientRect, useFocusOnList, useFocusOnListItem, useId, useSideNavigationMenuBar, useWindowSize, warnIfNoAccessibleLabelFound };
|
|
3613
|
+
declare const ThemeContext: React$1.Context<{
|
|
3614
|
+
theme?: Theme | undefined;
|
|
3615
|
+
} | null>;
|
|
3616
|
+
declare const ThemeProvider: React$1.Provider<{
|
|
3617
|
+
theme?: Theme | undefined;
|
|
3618
|
+
} | null>;
|
|
3619
|
+
|
|
3620
|
+
declare function useTheme(theme?: Theme): Theme;
|
|
3621
|
+
|
|
3622
|
+
export { ActiveDescendantListbox, Alert, AlertProps, 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, DetailedCard, DetailedCardCollapsibleSectionItems, DetailedCardCollapsibleSectionItemsProps, DetailedCardHeader, DetailedCardHeaderProps, DetailedCardProps, DetailedCardSection, DetailedCardSectionItem, DetailedCardSectionItemProps, DetailedCardSectionProps, EventKey, FOCUS_WITHING_GROUP_INITIAL_STATE, Falsy, FlexDirection, FlexLayoutProps, FlexWrap, Flexbox, FlexboxProps, FocusWithinGroup, FocusWithinGroupAction, FocusWithinGroupActionType, FocusWithinGroupContext, FocusWithinGroupContextProps, FocusWithinGroupOptions, FocusWithinGroupProps, FocusWithinGroupReducer, FocusWithinGroupState, FontFamily, Grid, GridItem, GridItemProps, GridLayoutProps, GridProps, Heading, HeadingComponent, HeadingProps, HeadingVariant, 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, ListboxState, ListboxVariant, Menu, MenuBarItems, MenuItem, Navigation, NeutralColorPalette, NotificationsColorPalette, Number, 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, RedsiftColorDarkComponentsAlertErrorIcon, RedsiftColorDarkComponentsAlertInfoBackground, RedsiftColorDarkComponentsAlertInfoIcon, RedsiftColorDarkComponentsAlertSuccessBackground, RedsiftColorDarkComponentsAlertSuccessIcon, RedsiftColorDarkComponentsAlertText, RedsiftColorDarkComponentsAlertWarningBackground, 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, RedsiftColorLightComponentsAlertErrorIcon, RedsiftColorLightComponentsAlertInfoBackground, RedsiftColorLightComponentsAlertInfoIcon, RedsiftColorLightComponentsAlertSuccessBackground, RedsiftColorLightComponentsAlertSuccessIcon, RedsiftColorLightComponentsAlertText, RedsiftColorLightComponentsAlertWarningBackground, 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, RedsiftColorProductRadar, RedsiftColorProductVendorSecure, 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, 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, StyledItemProps, StyledLink, StyledLinkButtonProps, StyledLinkProps, StyledListboxProps, StyledNumberProps, StyledPillProps, StyledRadioGroupProps, StyledRadioProps, StyledShieldProps, StyledSideNavigationMenuBarProps, StyledSideNavigationMenuItemProps, StyledSideNavigationMenuProps, StyledSkeletonCircleProps, StyledSkeletonProps, StyledSkeletonTextProps, StyledSpinnerProps, StyledSwitchGroupProps, StyledSwitchProps, StyledTextFieldProps, StyledTextProps, StylingProps, Switch, SwitchGroup, SwitchGroupOrientation, SwitchGroupProps, SwitchGroupState, SwitchProps, TabStop, Text, 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, useFocusOnList, useFocusOnListItem, useId, useSideNavigationMenuBar, useTheme, useWindowSize, warnIfNoAccessibleLabelFound };
|