@redsift/design-system 8.1.0 → 9.0.0-alpha.1

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.
Files changed (40) hide show
  1. package/index.d.ts +429 -377
  2. package/index.js +1765 -1514
  3. package/index.js.map +1 -1
  4. package/package.json +5 -4
  5. package/style/index.css +764 -382
  6. package/style/redsift-design-tokens.css +214 -245
  7. package/style/redsift-fonts.css +545 -132
  8. package/style/redsift-reset.css +1 -0
  9. package/style/redsift-style.css +4 -5
  10. package/style/redsift.css +764 -382
  11. package/style/fonts/electrolize-v14-latin-regular.woff +0 -0
  12. package/style/fonts/electrolize-v14-latin-regular.woff2 +0 -0
  13. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300.woff +0 -0
  14. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300.woff2 +0 -0
  15. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300italic.woff +0 -0
  16. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-300italic.woff2 +0 -0
  17. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500.woff +0 -0
  18. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500.woff2 +0 -0
  19. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500italic.woff +0 -0
  20. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-500italic.woff2 +0 -0
  21. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600.woff +0 -0
  22. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600.woff2 +0 -0
  23. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600italic.woff +0 -0
  24. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-600italic.woff2 +0 -0
  25. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.woff +0 -0
  26. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.woff2 +0 -0
  27. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff +0 -0
  28. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff2 +0 -0
  29. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.woff +0 -0
  30. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.woff2 +0 -0
  31. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.woff +0 -0
  32. package/style/fonts/raleway-v28-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.woff2 +0 -0
  33. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff +0 -0
  34. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff2 +0 -0
  35. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600.woff +0 -0
  36. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600.woff2 +0 -0
  37. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff +0 -0
  38. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 +0 -0
  39. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff +0 -0
  40. package/style/fonts/source-code-pro-v22-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 +0 -0
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { I18nProvider, useCollator, useDateFormatter, useFilter, useListFormatter, useLocale, useLocalizedStringFormatter, useNumberFormatter } from '@react-aria/i18n';
2
2
  export { SSRProvider, useIsSSR } from '@react-aria/ssr';
3
- import React$1, { Ref, ReactElement, ReactNode, ComponentProps, DependencyList, MutableRefObject, RefObject, ElementType, ChangeEvent, MouseEvent } from 'react';
3
+ import React$1, { Ref, ReactElement, ReactNode, ComponentProps, DependencyList, MutableRefObject, ElementType, RefObject, MouseEvent, Dispatch, SetStateAction, ChangeEvent } from 'react';
4
4
  import * as styled_components from 'styled-components';
5
5
 
6
6
  /** Component Type. */
@@ -29,17 +29,54 @@ type ValueOf<T extends Record<any, any>> = T[keyof T];
29
29
  * Font.
30
30
  */
31
31
  declare const FontFamily: {
32
- readonly raleway: "raleway";
32
+ readonly poppins: "poppins";
33
33
  readonly 'source-code-pro': "source-code-pro";
34
- readonly electrolize: "electrolize";
35
34
  };
36
35
  type FontFamily = ValueOf<typeof FontFamily>;
37
36
 
37
+ declare const Product: {
38
+ readonly asm: "asm";
39
+ readonly 'brand-trust': "brand-trust";
40
+ readonly certificates: "certificates";
41
+ readonly ondmarc: "ondmarc";
42
+ readonly radar: "radar";
43
+ readonly 'rojo-ds': "rojo-ds";
44
+ readonly 'vendor-secure': "vendor-secure";
45
+ readonly website: "website";
46
+ };
47
+ type Product = ValueOf<typeof Product>;
48
+ declare const ProductName: {
49
+ readonly asm: "ASM";
50
+ readonly 'brand-trust': "Brand Trust";
51
+ readonly certificates: "Certificates";
52
+ readonly ondmarc: "OnDMARC";
53
+ readonly radar: "RADAR";
54
+ readonly 'rojo-ds': "ROJO DS";
55
+ readonly 'vendor-secure': "Vendor Secure";
56
+ readonly website: "Website";
57
+ };
58
+ type ProductName = ValueOf<typeof ProductName>;
59
+ declare const ProductLogo: {
60
+ readonly asm: JSX.Element;
61
+ readonly 'brand-trust': JSX.Element;
62
+ readonly certificates: JSX.Element;
63
+ readonly ondmarc: JSX.Element;
64
+ readonly radar: JSX.Element;
65
+ readonly 'rojo-ds': JSX.Element;
66
+ readonly 'vendor-secure': JSX.Element;
67
+ readonly website: JSX.Element;
68
+ };
69
+ type ProductLogo = ValueOf<typeof ProductLogo>;
70
+
38
71
  /**
39
72
  * Color palette.
40
73
  */
41
- declare const ColorPalette: {
42
- readonly default: "default";
74
+ declare const CtasColorPalette: {
75
+ readonly primary: "primary";
76
+ readonly secondary: "secondary";
77
+ };
78
+ type CtasColorPalette = ValueOf<typeof CtasColorPalette>;
79
+ declare const NotificationsColorPalette: {
43
80
  readonly success: "success";
44
81
  readonly error: "error";
45
82
  readonly warning: "warning";
@@ -47,17 +84,19 @@ declare const ColorPalette: {
47
84
  readonly question: "question";
48
85
  readonly 'no-data': "no-data";
49
86
  };
50
- type ColorPalette = ValueOf<typeof ColorPalette>;
87
+ type NotificationsColorPalette = ValueOf<typeof NotificationsColorPalette>;
51
88
  declare const ProductColorPalette: {
52
- readonly website: "website";
89
+ readonly asm: "asm";
90
+ readonly 'brand-trust': "brand-trust";
91
+ readonly certificates: "certificates";
53
92
  readonly ondmarc: "ondmarc";
54
- readonly oninbox: "oninbox";
55
- readonly ondomain: "ondomain";
56
- readonly hardenize: "hardenize";
57
- readonly tools: "tools";
93
+ readonly radar: "radar";
94
+ readonly 'rojo-ds': "rojo-ds";
95
+ readonly 'vendor-secure': "vendor-secure";
96
+ readonly website: "website";
58
97
  };
59
98
  type ProductColorPalette = ValueOf<typeof ProductColorPalette>;
60
- declare const DataVizColorPalette: {
99
+ declare const PresentationColorPalette: {
61
100
  readonly green: "green";
62
101
  readonly pink: "pink";
63
102
  readonly aqua: "aqua";
@@ -69,7 +108,7 @@ declare const DataVizColorPalette: {
69
108
  readonly blue: "blue";
70
109
  readonly grey: "grey";
71
110
  };
72
- type DataVizColorPalette = ValueOf<typeof DataVizColorPalette>;
111
+ type PresentationColorPalette = ValueOf<typeof PresentationColorPalette>;
73
112
  declare const NeutralColorPalette: {
74
113
  readonly black: "black";
75
114
  readonly darkgrey: "darkgrey";
@@ -331,190 +370,164 @@ declare function partitionComponents<T>(components: T[], predicates: Array<(t: T
331
370
 
332
371
  /**
333
372
  * Do not edit directly
334
- * Generated on Mon, 12 Jun 2023 10:28:00 GMT
335
- */
336
- declare const RedsiftColorDefaultPrimary = "#0079e1";
337
- declare const RedsiftColorDefaultSecondary = "#0063b9";
338
- declare const RedsiftColorDefaultHover = "#dce8f3";
339
- declare const RedsiftColorDefaultActive = "#c4dcf1";
340
- declare const RedsiftColorDefaultActiveHover = "#abcfef";
341
- declare const RedsiftColorDefaultPrimaryActive = "#004a8a";
342
- declare const RedsiftColorDefaultPrimaryActiveHover = "#00427c";
343
- declare const RedsiftColorWebsitePrimary = "#0079e1";
344
- declare const RedsiftColorWebsiteSecondary = "#0063b9";
345
- declare const RedsiftColorWebsiteHover = "#dce8f3";
346
- declare const RedsiftColorWebsiteActive = "#c4dcf1";
347
- declare const RedsiftColorWebsiteActiveHover = "#abcfef";
348
- declare const RedsiftColorWebsitePrimaryActive = "#004a8a";
349
- declare const RedsiftColorWebsitePrimaryActiveHover = "#00427c";
350
- declare const RedsiftColorOndmarcPrimary = "#02ac61";
351
- declare const RedsiftColorOndmarcSecondary = "#009252";
352
- declare const RedsiftColorOndmarcHover = "#dcede6";
353
- declare const RedsiftColorOndmarcActive = "#c4e6d7";
354
- declare const RedsiftColorOndmarcActiveHover = "#acdfc8";
355
- declare const RedsiftColorOndmarcPrimaryActive = "#00512e";
356
- declare const RedsiftColorOndmarcPrimaryActiveHover = "#004829";
357
- declare const RedsiftColorOninboxPrimary = "#33b222";
358
- declare const RedsiftColorOninboxSecondary = "#268519";
359
- declare const RedsiftColorOninboxHover = "#e1eedf";
360
- declare const RedsiftColorOninboxActive = "#cee8cb";
361
- declare const RedsiftColorOninboxActiveHover = "#bae0b5";
362
- declare const RedsiftColorOninboxPrimaryActive = "#164e0e";
363
- declare const RedsiftColorOninboxPrimaryActiveHover = "#13460c";
364
- declare const RedsiftColorOndomainPrimary = "#028062";
365
- declare const RedsiftColorOndomainSecondary = "#015944";
366
- declare const RedsiftColorOndomainHover = "#dce9e6";
367
- declare const RedsiftColorOndomainActive = "#c4ded8";
368
- declare const RedsiftColorOndomainActiveHover = "#acd1c8";
369
- declare const RedsiftColorOndomainPrimaryActive = "#003f30";
370
- declare const RedsiftColorOndomainPrimaryActiveHover = "#00382b";
371
- declare const RedsiftColorHardenizePrimary = "#0f7ab3";
372
- declare const RedsiftColorHardenizeSecondary = "#3498db";
373
- declare const RedsiftColorHardenizeHover = "#dee8ee";
374
- declare const RedsiftColorHardenizeActive = "#c7dce8";
375
- declare const RedsiftColorHardenizeActiveHover = "#b0d0e1";
376
- declare const RedsiftColorHardenizePrimaryActive = "#0a5379";
377
- declare const RedsiftColorHardenizePrimaryActiveHover = "#094a6c";
378
- declare const RedsiftColorToolsPrimary = "#37bdfb";
379
- declare const RedsiftColorToolsSecondary = "#02a2ef";
380
- declare const RedsiftColorToolsHover = "#e2eff5";
381
- declare const RedsiftColorToolsActive = "#cfeaf6";
382
- declare const RedsiftColorToolsActiveHover = "#bce4f6";
383
- declare const RedsiftColorToolsPrimaryActive = "#237ea8";
384
- declare const RedsiftColorToolsPrimaryActiveHover = "#1f7197";
385
- declare const RedsiftColorSuccessPrimary = "#02ac61";
386
- declare const RedsiftColorSuccessSecondary = "#009252";
387
- declare const RedsiftColorSuccessHover = "#dcede6";
388
- declare const RedsiftColorSuccessActive = "#c4e6d7";
389
- declare const RedsiftColorSuccessActiveHover = "#acdfc8";
390
- declare const RedsiftColorSuccessPrimaryActive = "#00512e";
391
- declare const RedsiftColorSuccessPrimaryActiveHover = "#004829";
392
- declare const RedsiftColorErrorPrimary = "#e11010";
393
- declare const RedsiftColorErrorSecondary = "#b41010";
394
- declare const RedsiftColorErrorHover = "#f3dede";
395
- declare const RedsiftColorErrorActive = "#f1c7c7";
396
- declare const RedsiftColorErrorActiveHover = "#efb0b0";
397
- declare const RedsiftColorErrorPrimaryActive = "#770a0a";
398
- declare const RedsiftColorErrorPrimaryActiveHover = "#6b0909";
399
- declare const RedsiftColorWarningPrimary = "#fcbb54";
400
- declare const RedsiftColorWarningSecondary = "#c09300";
401
- declare const RedsiftColorWarningHover = "#f5efe4";
402
- declare const RedsiftColorWarningActive = "#f6e9d5";
403
- declare const RedsiftColorWarningActiveHover = "#f7e3c4";
404
- declare const RedsiftColorWarningPrimaryActive = "#ae833f";
405
- declare const RedsiftColorWarningPrimaryActiveHover = "#9c7538";
406
- declare const RedsiftColorInfoPrimary = "#0079e1";
407
- declare const RedsiftColorInfoSecondary = "#0063b9";
408
- declare const RedsiftColorInfoHover = "#dce8f3";
409
- declare const RedsiftColorInfoActive = "#c4dcf1";
410
- declare const RedsiftColorInfoActiveHover = "#abcfef";
411
- declare const RedsiftColorInfoPrimaryActive = "#004a8a";
412
- declare const RedsiftColorInfoPrimaryActiveHover = "#00427c";
413
- declare const RedsiftColorQuestionPrimary = "#666666";
414
- declare const RedsiftColorQuestionSecondary = "#1c1c1c";
415
- declare const RedsiftColorQuestionHover = "#e6e6e6";
416
- declare const RedsiftColorQuestionActive = "#d8d8d8";
417
- declare const RedsiftColorQuestionActiveHover = "#cacaca";
418
- declare const RedsiftColorQuestionPrimaryActive = "#111111";
419
- declare const RedsiftColorQuestionPrimaryActiveHover = "#0f0f0f";
420
- declare const RedsiftColorNoDataPrimary = "#bdbdbd";
421
- declare const RedsiftColorNoDataSecondary = "#666666";
422
- declare const RedsiftColorNoDataHover = "#efefef";
423
- declare const RedsiftColorNoDataActive = "#eaeaea";
424
- declare const RedsiftColorNoDataActiveHover = "#e4e4e4";
425
- declare const RedsiftColorNoDataPrimaryActive = "#3d3d3d";
426
- declare const RedsiftColorNoDataPrimaryActiveHover = "#363636";
373
+ * Generated on Thu, 21 Sep 2023 13:54:48 GMT
374
+ */
375
+ declare const RedsiftColorRedsift = "#e11010";
376
+ declare const RedsiftColorProductAsm = "#8361ea";
377
+ declare const RedsiftColorProductBrandTrust = "#7ec2fa";
378
+ declare const RedsiftColorProductCertificates = "#e8712e";
379
+ declare const RedsiftColorProductOndmarc = "#96d36e";
380
+ declare const RedsiftColorProductRadar = "#51b7a4";
381
+ declare const RedsiftColorProductRojoDs = "#e11010";
382
+ declare const RedsiftColorProductVendorSecure = "#f7c948";
383
+ declare const RedsiftColorProductWebsite = "#e11010";
427
384
  declare const RedsiftColorNeutralBlack = "#1c1c1c";
428
- declare const RedsiftColorNeutralDarkgrey = "#666666";
429
- declare const RedsiftColorNeutralMidgrey = "#bdbdbd";
430
- declare const RedsiftColorNeutralLightgrey = "#ebebeb";
431
- declare const RedsiftColorNeutralXlightgrey = "#f5f5f5";
385
+ declare const RedsiftColorNeutralDarkgrey = "#333333";
386
+ declare const RedsiftColorNeutralMidgrey = "#666666";
387
+ declare const RedsiftColorNeutralLightgrey = "#b6b6b6";
388
+ declare const RedsiftColorNeutralXlightgrey = "#f2f2f2";
432
389
  declare const RedsiftColorNeutralWhite = "#ffffff";
433
- declare const RedsiftAppBarColorBackground = "#0079e1";
434
- declare const RedsiftAppBarColorText = "#FFFFFF";
435
- declare const RedsiftAppBarColorExpandIconResting = "#FFFFFF";
436
- declare const RedsiftAppBarColorExpandIconHover = "#FFFFFF";
437
- declare const RedsiftAppBarColorExpandIconBackgroundHover = "#0063b9";
438
- declare const RedsiftDataVizColorGreenDarkerer = "#078833";
439
- declare const RedsiftDataVizColorGreenDarker = "#07AA45";
440
- declare const RedsiftDataVizColorGreenDark = "#00CE59";
441
- declare const RedsiftDataVizColorGreenDefault = "#56D58E";
442
- declare const RedsiftDataVizColorGreenLight = "#A2E7BA";
443
- declare const RedsiftDataVizColorGreenLighter = "#C2EFD1";
444
- declare const RedsiftDataVizColorGreenLighterer = "#E1F7E8";
445
- declare const RedsiftDataVizColorPinkDarkerer = "#B10078";
446
- declare const RedsiftDataVizColorPinkDarker = "#C5008C";
447
- declare const RedsiftDataVizColorPinkDark = "#D800A2";
448
- declare const RedsiftDataVizColorPinkDefault = "#D95CBA";
449
- declare const RedsiftDataVizColorPinkLight = "#ECA0D6";
450
- declare const RedsiftDataVizColorPinkLighter = "#F4C0E3";
451
- declare const RedsiftDataVizColorPinkLighterer = "#FAE0F1";
452
- declare const RedsiftDataVizColorAquaDarkerer = "#0B9287";
453
- declare const RedsiftDataVizColorAquaDarker = "#0AB5AB";
454
- declare const RedsiftDataVizColorAquaDark = "#00D9D2";
455
- declare const RedsiftDataVizColorAquaDefault = "#63EAE4";
456
- declare const RedsiftDataVizColorAquaLight = "#9AF8F4";
457
- declare const RedsiftDataVizColorAquaLighter = "#CAF7F4";
458
- declare const RedsiftDataVizColorAquaLighterer = "#E5FBFA";
459
- declare const RedsiftDataVizColorBrownDarkerer = "#701205";
460
- declare const RedsiftDataVizColorBrownDarker = "#903107";
461
- declare const RedsiftDataVizColorBrownDark = "#AF5100";
462
- declare const RedsiftDataVizColorBrownDefault = "#C78348";
463
- declare const RedsiftDataVizColorBrownLight = "#EDC19C";
464
- declare const RedsiftDataVizColorBrownLighter = "#F6D9C3";
465
- declare const RedsiftDataVizColorBrownLighterer = "#FAE6D7";
466
- declare const RedsiftDataVizColorRedDarkerer = "#B10004";
467
- declare const RedsiftDataVizColorRedDarker = "#C70003";
468
- declare const RedsiftDataVizColorRedDark = "#DE0000";
469
- declare const RedsiftDataVizColorRedDefault = "#E06363";
470
- declare const RedsiftDataVizColorRedLight = "#F3A39E";
471
- declare const RedsiftDataVizColorRedLighter = "#F8BBBA";
472
- declare const RedsiftDataVizColorRedLighterer = "#FDDDDC";
473
- declare const RedsiftDataVizColorYellowDarkerer = "#8A7F18";
474
- declare const RedsiftDataVizColorYellowDarker = "#BCAD14";
475
- declare const RedsiftDataVizColorYellowDark = "#F0DE00";
476
- declare const RedsiftDataVizColorYellowDefault = "#FFF741";
477
- declare const RedsiftDataVizColorYellowLight = "#F7EFC3";
478
- declare const RedsiftDataVizColorYellowLighter = "#FBF5DB";
479
- declare const RedsiftDataVizColorYellowLighterer = "#FCF9E7";
480
- declare const RedsiftDataVizColorPurpleDarkerer = "#4702C1";
481
- declare const RedsiftDataVizColorPurpleDarker = "#7902EB";
482
- declare const RedsiftDataVizColorPurpleDark = "#9200FF";
483
- declare const RedsiftDataVizColorPurpleDefault = "#965EDE";
484
- declare const RedsiftDataVizColorPurpleLight = "#C6A8EF";
485
- declare const RedsiftDataVizColorPurpleLighter = "#DECAF6";
486
- declare const RedsiftDataVizColorPurpleLighterer = "#E9DCF9";
487
- declare const RedsiftDataVizColorOrangeDarkerer = "#B45310";
488
- declare const RedsiftDataVizColorOrangeDarker = "#D2710B";
489
- declare const RedsiftDataVizColorOrangeDark = "#ED9200";
490
- declare const RedsiftDataVizColorOrangeDefault = "#FCBB54";
491
- declare const RedsiftDataVizColorOrangeLight = "#F8D296";
492
- declare const RedsiftDataVizColorOrangeLighter = "#FDE4C0";
493
- declare const RedsiftDataVizColorOrangeLighterer = "#FEEDD5";
494
- declare const RedsiftDataVizColorBlueDarkerer = "#0082F8";
495
- declare const RedsiftDataVizColorBlueDarker = "#0099FD";
496
- declare const RedsiftDataVizColorBlueDark = "#00AEFF";
497
- declare const RedsiftDataVizColorBlueDefault = "#73C5EB";
498
- declare const RedsiftDataVizColorBlueLight = "#B1DCF3";
499
- declare const RedsiftDataVizColorBlueLighter = "#CCE8F7";
500
- declare const RedsiftDataVizColorBlueLighterer = "#E6F3FB";
501
- declare const RedsiftDataVizColorGreyDarkerer = "#6E6E6E";
502
- declare const RedsiftDataVizColorGreyDarker = "#959595";
503
- declare const RedsiftDataVizColorGreyDark = "#BFBFBF";
504
- declare const RedsiftDataVizColorGreyDefault = "#D6D6D6";
505
- declare const RedsiftDataVizColorGreyLight = "#E6E6E6";
506
- declare const RedsiftDataVizColorGreyLighter = "#EEEEEE";
507
- declare const RedsiftDataVizColorGreyLighterer = "#F7F7F7";
508
- declare const RedsiftSideNavigationColorBackground = "#2D2D34";
509
- declare const RedsiftSideNavigationColorMenuItemTextResting = "#FFFFFFB3";
510
- declare const RedsiftSideNavigationColorMenuItemTextDisabled = "#76767A";
511
- declare const RedsiftSideNavigationColorMenuItemTextHover = "#FFFFFF";
512
- declare const RedsiftSideNavigationColorMenuItemBackgroundHover = "#4C4C64";
513
- declare const RedsiftSideNavigationColorMenuItemBackgroundSecondary = "#333340";
514
- declare const RedsiftSideNavigationColorMenuItemBackgroundActive = "#39394C";
515
- declare const RedsiftSideNavigationColorMenuItemActive = "#02AC61";
516
- declare const RedsiftSideNavigationColorScrollbarResting = "#4C4C64";
517
- declare const RedsiftSideNavigationColorScrollbarHover = "#5d5d73";
390
+ declare const RedsiftAppBarColorBackground = "#ffffff";
391
+ declare const RedsiftAppBarColorText = "#1c1c1c";
392
+ declare const RedsiftAppBarColorExpandIconResting = "#333333";
393
+ declare const RedsiftAppBarColorExpandIconHover = "#1c1c1c";
394
+ declare const RedsiftAppBarColorExpandIconBackgroundHover = "#ffffff";
395
+ declare const RedsiftColorCtasPrimaryPrimary = "#4285F4";
396
+ declare const RedsiftColorCtasPrimaryHover = "#D9E7FD";
397
+ declare const RedsiftColorCtasPrimaryActive = "#B3CEFB";
398
+ declare const RedsiftColorCtasPrimaryActiveHover = "#8EB6F8";
399
+ declare const RedsiftColorCtasPrimaryButtonHover = "#356AC3";
400
+ declare const RedsiftColorCtasPrimaryButtonActive = "#285092";
401
+ declare const RedsiftColorCtasPrimaryButtonActiveHover = "#1A3562";
402
+ declare const RedsiftColorCtasSecondaryPrimary = "#51B7A4";
403
+ declare const RedsiftColorCtasSecondaryHover = "#DCF1ED";
404
+ declare const RedsiftColorCtasSecondaryActive = "#B9E2DB";
405
+ declare const RedsiftColorCtasSecondaryActiveHover = "#97D4C8";
406
+ declare const RedsiftColorCtasSecondaryButtonHover = "#419283";
407
+ declare const RedsiftColorCtasSecondaryButtonActive = "#316E62";
408
+ declare const RedsiftColorCtasSecondaryButtonActiveHover = "#204942";
409
+ declare const RedsiftColorNotificationsSuccessPrimary = "#02AC61";
410
+ declare const RedsiftColorNotificationsSuccessHover = "#CCEEDF";
411
+ declare const RedsiftColorNotificationsSuccessActive = "#9ADEC0";
412
+ declare const RedsiftColorNotificationsSuccessActiveHover = "#67CDA0";
413
+ declare const RedsiftColorNotificationsSuccessButtonHover = "#028A4E";
414
+ declare const RedsiftColorNotificationsSuccessButtonActive = "#01673A";
415
+ declare const RedsiftColorNotificationsSuccessButtonActiveHover = "#014527";
416
+ declare const RedsiftColorNotificationsErrorPrimary = "#E11010";
417
+ declare const RedsiftColorNotificationsErrorHover = "#F9CFCF";
418
+ declare const RedsiftColorNotificationsErrorActive = "#F39F9F";
419
+ declare const RedsiftColorNotificationsErrorActiveHover = "#ED7070";
420
+ declare const RedsiftColorNotificationsErrorButtonHover = "#B40D0D";
421
+ declare const RedsiftColorNotificationsErrorButtonActive = "#870A0A";
422
+ declare const RedsiftColorNotificationsErrorButtonActiveHover = "#5A0606";
423
+ declare const RedsiftColorNotificationsWarningPrimary = "#FCBB54";
424
+ declare const RedsiftColorNotificationsWarningHover = "#FEF1DD";
425
+ declare const RedsiftColorNotificationsWarningActive = "#FEE4BB";
426
+ declare const RedsiftColorNotificationsWarningActiveHover = "#FDD698";
427
+ declare const RedsiftColorNotificationsWarningButtonHover = "#CA9643";
428
+ declare const RedsiftColorNotificationsWarningButtonActive = "#977032";
429
+ declare const RedsiftColorNotificationsWarningButtonActiveHover = "#654B22";
430
+ declare const RedsiftColorNotificationsInfoPrimary = "#4285F4";
431
+ declare const RedsiftColorNotificationsInfoHover = "#D9E7FD";
432
+ declare const RedsiftColorNotificationsInfoActive = "#B3CEFB";
433
+ declare const RedsiftColorNotificationsInfoActiveHover = "#8EB6F8";
434
+ declare const RedsiftColorNotificationsInfoButtonHover = "#356AC3";
435
+ declare const RedsiftColorNotificationsInfoButtonActive = "#285092";
436
+ declare const RedsiftColorNotificationsInfoButtonActiveHover = "#1A3562";
437
+ declare const RedsiftColorNotificationsQuestionPrimary = "#666666";
438
+ declare const RedsiftColorNotificationsQuestionHover = "#B2B2B2";
439
+ declare const RedsiftColorNotificationsQuestionActive = "#A3A3A3";
440
+ declare const RedsiftColorNotificationsQuestionActiveHover = "#949494";
441
+ declare const RedsiftColorNotificationsQuestionButtonHover = "#525252";
442
+ declare const RedsiftColorNotificationsQuestionButtonActive = "#474747";
443
+ declare const RedsiftColorNotificationsQuestionButtonActiveHover = "#3D3D3D";
444
+ declare const RedsiftColorNotificationsNoDataPrimary = "#BDBDBD";
445
+ declare const RedsiftColorNotificationsNoDataHover = "#DEDEDE";
446
+ declare const RedsiftColorNotificationsNoDataActive = "#D7D7D7";
447
+ declare const RedsiftColorNotificationsNoDataActiveHover = "#D1D1D1";
448
+ declare const RedsiftColorNotificationsNoDataButtonHover = "#979797";
449
+ declare const RedsiftColorNotificationsNoDataButtonActive = "#848484";
450
+ declare const RedsiftColorNotificationsNoDataButtonActiveHover = "#717171";
451
+ declare const RedsiftColorPresentationGreenDarkerer = "#078833";
452
+ declare const RedsiftColorPresentationGreenDarker = "#07AA45";
453
+ declare const RedsiftColorPresentationGreenDark = "#00CE59";
454
+ declare const RedsiftColorPresentationGreenDefault = "#56D58E";
455
+ declare const RedsiftColorPresentationGreenLight = "#A2E7BA";
456
+ declare const RedsiftColorPresentationGreenLighter = "#C2EFD1";
457
+ declare const RedsiftColorPresentationGreenLighterer = "#E1F7E8";
458
+ declare const RedsiftColorPresentationPinkDarkerer = "#B10078";
459
+ declare const RedsiftColorPresentationPinkDarker = "#C5008C";
460
+ declare const RedsiftColorPresentationPinkDark = "#D800A2";
461
+ declare const RedsiftColorPresentationPinkDefault = "#D95CBA";
462
+ declare const RedsiftColorPresentationPinkLight = "#ECA0D6";
463
+ declare const RedsiftColorPresentationPinkLighter = "#F4C0E3";
464
+ declare const RedsiftColorPresentationPinkLighterer = "#FAE0F1";
465
+ declare const RedsiftColorPresentationAquaDarkerer = "#0B9287";
466
+ declare const RedsiftColorPresentationAquaDarker = "#0AB5AB";
467
+ declare const RedsiftColorPresentationAquaDark = "#00D9D2";
468
+ declare const RedsiftColorPresentationAquaDefault = "#63EAE4";
469
+ declare const RedsiftColorPresentationAquaLight = "#9AF8F4";
470
+ declare const RedsiftColorPresentationAquaLighter = "#CAF7F4";
471
+ declare const RedsiftColorPresentationAquaLighterer = "#E5FBFA";
472
+ declare const RedsiftColorPresentationBrownDarkerer = "#701205";
473
+ declare const RedsiftColorPresentationBrownDarker = "#903107";
474
+ declare const RedsiftColorPresentationBrownDark = "#AF5100";
475
+ declare const RedsiftColorPresentationBrownDefault = "#C78348";
476
+ declare const RedsiftColorPresentationBrownLight = "#EDC19C";
477
+ declare const RedsiftColorPresentationBrownLighter = "#F6D9C3";
478
+ declare const RedsiftColorPresentationBrownLighterer = "#FAE6D7";
479
+ declare const RedsiftColorPresentationRedDarkerer = "#B10004";
480
+ declare const RedsiftColorPresentationRedDarker = "#C70003";
481
+ declare const RedsiftColorPresentationRedDark = "#DE0000";
482
+ declare const RedsiftColorPresentationRedDefault = "#E06363";
483
+ declare const RedsiftColorPresentationRedLight = "#F3A39E";
484
+ declare const RedsiftColorPresentationRedLighter = "#F8BBBA";
485
+ declare const RedsiftColorPresentationRedLighterer = "#FDDDDC";
486
+ declare const RedsiftColorPresentationYellowDarkerer = "#8A7F18";
487
+ declare const RedsiftColorPresentationYellowDarker = "#BCAD14";
488
+ declare const RedsiftColorPresentationYellowDark = "#F0DE00";
489
+ declare const RedsiftColorPresentationYellowDefault = "#FFF741";
490
+ declare const RedsiftColorPresentationYellowLight = "#F7EFC3";
491
+ declare const RedsiftColorPresentationYellowLighter = "#FBF5DB";
492
+ declare const RedsiftColorPresentationYellowLighterer = "#FCF9E7";
493
+ declare const RedsiftColorPresentationPurpleDarkerer = "#4702C1";
494
+ declare const RedsiftColorPresentationPurpleDarker = "#7902EB";
495
+ declare const RedsiftColorPresentationPurpleDark = "#9200FF";
496
+ declare const RedsiftColorPresentationPurpleDefault = "#965EDE";
497
+ declare const RedsiftColorPresentationPurpleLight = "#C6A8EF";
498
+ declare const RedsiftColorPresentationPurpleLighter = "#DECAF6";
499
+ declare const RedsiftColorPresentationPurpleLighterer = "#E9DCF9";
500
+ declare const RedsiftColorPresentationOrangeDarkerer = "#B45310";
501
+ declare const RedsiftColorPresentationOrangeDarker = "#D2710B";
502
+ declare const RedsiftColorPresentationOrangeDark = "#ED9200";
503
+ declare const RedsiftColorPresentationOrangeDefault = "#FCBB54";
504
+ declare const RedsiftColorPresentationOrangeLight = "#F8D296";
505
+ declare const RedsiftColorPresentationOrangeLighter = "#FDE4C0";
506
+ declare const RedsiftColorPresentationOrangeLighterer = "#FEEDD5";
507
+ declare const RedsiftColorPresentationBlueDarkerer = "#0082F8";
508
+ declare const RedsiftColorPresentationBlueDarker = "#0099FD";
509
+ declare const RedsiftColorPresentationBlueDark = "#00AEFF";
510
+ declare const RedsiftColorPresentationBlueDefault = "#73C5EB";
511
+ declare const RedsiftColorPresentationBlueLight = "#B1DCF3";
512
+ declare const RedsiftColorPresentationBlueLighter = "#CCE8F7";
513
+ declare const RedsiftColorPresentationBlueLighterer = "#E6F3FB";
514
+ declare const RedsiftColorPresentationGreyDarkerer = "#6E6E6E";
515
+ declare const RedsiftColorPresentationGreyDarker = "#959595";
516
+ declare const RedsiftColorPresentationGreyDark = "#BFBFBF";
517
+ declare const RedsiftColorPresentationGreyDefault = "#D6D6D6";
518
+ declare const RedsiftColorPresentationGreyLight = "#E6E6E6";
519
+ declare const RedsiftColorPresentationGreyLighter = "#EEEEEE";
520
+ declare const RedsiftColorPresentationGreyLighterer = "#F7F7F7";
521
+ declare const RedsiftSideNavigationColorBackground = "#f2f2f2";
522
+ declare const RedsiftSideNavigationColorMenuItemTextResting = "#333333";
523
+ declare const RedsiftSideNavigationColorMenuItemTextDisabled = "#666666";
524
+ declare const RedsiftSideNavigationColorMenuItemTextHover = "#1c1c1c";
525
+ declare const RedsiftSideNavigationColorMenuItemBackgroundHover = "#E6E6E6";
526
+ declare const RedsiftSideNavigationColorMenuItemBackgroundSecondary = "transparent";
527
+ declare const RedsiftSideNavigationColorMenuItemBackgroundActive = "#b6b6b6";
528
+ declare const RedsiftSideNavigationColorMenuItemActive = "#1c1c1c";
529
+ declare const RedsiftSideNavigationColorScrollbarResting = "#b6b6b6";
530
+ declare const RedsiftSideNavigationColorScrollbarHover = "#666666";
518
531
  declare const RedsiftLayoutZIndexFooter = "1000";
519
532
  declare const RedsiftLayoutZIndexHeader = "1010";
520
533
  declare const RedsiftLayoutZIndexSidePanel = "1050";
@@ -523,98 +536,99 @@ declare const RedsiftLayoutZIndexOverlay = "1150";
523
536
  declare const RedsiftLayoutZIndexDialog = "1200";
524
537
  declare const RedsiftLayoutZIndexPopover = "1250";
525
538
  declare const RedsiftLayoutZIndexTooltip = "1300";
526
- declare const RedsiftTypographyFontFamilyRaleway = "'Raleway', sans-serif";
527
- declare const RedsiftTypographyFontFamilyElectrolize = "'electrolize', sans-serif";
539
+ declare const RedsiftTypographyFontFamilyPoppins = "'Poppins', sans-serif";
528
540
  declare const RedsiftTypographyFontFamilySourceCodePro = "'Source Code Pro', sans-serif";
541
+ declare const RedsiftTypographyFontWeightThin = "100";
542
+ declare const RedsiftTypographyFontWeightExtraLight = "200";
543
+ declare const RedsiftTypographyFontWeightLight = "300";
529
544
  declare const RedsiftTypographyFontWeightRegular = "400";
530
545
  declare const RedsiftTypographyFontWeightMedium = "500";
531
546
  declare const RedsiftTypographyFontWeightSemiBold = "600";
532
547
  declare const RedsiftTypographyFontWeightBold = "700";
533
- declare const RedsiftTypographyH1FontFamily = "'electrolize', sans-serif";
548
+ declare const RedsiftTypographyFontWeightExtraBold = "800";
549
+ declare const RedsiftTypographyFontWeightBlack = "900";
550
+ declare const RedsiftTypographyH1FontFamily = "'Poppins', sans-serif";
534
551
  declare const RedsiftTypographyH1FontSize = "24px";
535
- declare const RedsiftTypographyH1FontWeight = "400";
536
- declare const RedsiftTypographyH1LineHeight = "28px";
537
- declare const RedsiftTypographyH1TextTransform = "uppercase";
538
- declare const RedsiftTypographyH2FontFamily = "'Raleway', sans-serif";
539
- declare const RedsiftTypographyH2FontSize = "24px";
552
+ declare const RedsiftTypographyH1FontWeight = "600";
553
+ declare const RedsiftTypographyH1LineHeight = "36px";
554
+ declare const RedsiftTypographyH1TextTransform = "unset";
555
+ declare const RedsiftTypographyH2FontFamily = "'Poppins', sans-serif";
556
+ declare const RedsiftTypographyH2FontSize = "22px";
540
557
  declare const RedsiftTypographyH2FontWeight = "600";
541
- declare const RedsiftTypographyH2LineHeight = "28px";
558
+ declare const RedsiftTypographyH2LineHeight = "30px";
542
559
  declare const RedsiftTypographyH2TextTransform = "unset";
543
- declare const RedsiftTypographyH3FontFamily = "'Raleway', sans-serif";
560
+ declare const RedsiftTypographyH3FontFamily = "'Poppins', sans-serif";
544
561
  declare const RedsiftTypographyH3FontSize = "20px";
545
- declare const RedsiftTypographyH3FontWeight = "500";
546
- declare const RedsiftTypographyH3LineHeight = "24px";
562
+ declare const RedsiftTypographyH3FontWeight = "600";
563
+ declare const RedsiftTypographyH3LineHeight = "30px";
547
564
  declare const RedsiftTypographyH3TextTransform = "unset";
548
- declare const RedsiftTypographyH4FontFamily = "'Raleway', sans-serif";
549
- declare const RedsiftTypographyH4FontSize = "18px";
550
- declare const RedsiftTypographyH4FontWeight = "500";
551
- declare const RedsiftTypographyH4LineHeight = "22px";
565
+ declare const RedsiftTypographyH4FontFamily = "'Poppins', sans-serif";
566
+ declare const RedsiftTypographyH4FontSize = "16px";
567
+ declare const RedsiftTypographyH4FontWeight = "600";
568
+ declare const RedsiftTypographyH4LineHeight = "24px";
552
569
  declare const RedsiftTypographyH4TextTransform = "unset";
553
- declare const RedsiftTypographyH5FontFamily = "'Raleway', sans-serif";
554
- declare const RedsiftTypographyH5FontSize = "16px";
570
+ declare const RedsiftTypographyH5FontFamily = "'Poppins', sans-serif";
571
+ declare const RedsiftTypographyH5FontSize = "12px";
555
572
  declare const RedsiftTypographyH5FontWeight = "600";
556
- declare const RedsiftTypographyH5LineHeight = "20px";
573
+ declare const RedsiftTypographyH5LineHeight = "18px";
557
574
  declare const RedsiftTypographyH5TextTransform = "unset";
558
- declare const RedsiftTypographySubtitleFontFamily = "'Raleway', sans-serif";
559
- declare const RedsiftTypographySubtitleFontSize = "15px";
560
- declare const RedsiftTypographySubtitleFontWeight = "700";
561
- declare const RedsiftTypographySubtitleLineHeight = "26px";
562
- declare const RedsiftTypographySubtitleTextTransform = "unset";
563
- declare const RedsiftTypographyBodyFontFamily = "'Raleway', sans-serif";
575
+ declare const RedsiftTypographyBodyFontFamily = "'Poppins', sans-serif";
564
576
  declare const RedsiftTypographyBodyFontSize = "15px";
565
577
  declare const RedsiftTypographyBodyFontWeight = "400";
566
- declare const RedsiftTypographyBodyLineHeight = "26px";
578
+ declare const RedsiftTypographyBodyLineHeight = "24px";
567
579
  declare const RedsiftTypographyBodyTextTransform = "unset";
568
- declare const RedsiftTypographyBody2FontFamily = "'Raleway', sans-serif";
569
- declare const RedsiftTypographyBody2FontSize = "14px";
570
- declare const RedsiftTypographyBody2FontWeight = "400";
571
- declare const RedsiftTypographyBody2LineHeight = "20px";
572
- declare const RedsiftTypographyLinkFontFamily = "'Raleway', sans-serif";
580
+ declare const RedsiftTypographyLinkFontFamily = "'Poppins', sans-serif";
573
581
  declare const RedsiftTypographyLinkFontSize = "15px";
574
582
  declare const RedsiftTypographyLinkFontWeight = "400";
575
583
  declare const RedsiftTypographyLinkLineHeight = "26px";
576
- declare const RedsiftTypographyInputTextFontFamily = "'Source Code Pro', sans-serif";
584
+ declare const RedsiftTypographyInputTextFontFamily = "'Poppins', sans-serif";
577
585
  declare const RedsiftTypographyInputTextFontSize = "15px";
578
586
  declare const RedsiftTypographyInputTextFontWeight = "400";
579
- declare const RedsiftTypographyInputTextLineHeight = "26px";
580
- declare const RedsiftTypographyButtonFontFamily = "'Raleway', sans-serif";
581
- declare const RedsiftTypographyButtonFontSize = "15px";
587
+ declare const RedsiftTypographyInputTextLineHeight = "24px";
588
+ declare const RedsiftTypographyButtonFontFamily = "'Poppins', sans-serif";
589
+ declare const RedsiftTypographyButtonFontSize = "16px";
582
590
  declare const RedsiftTypographyButtonFontWeight = "500";
583
- declare const RedsiftTypographyButtonLineHeight = "26px";
591
+ declare const RedsiftTypographyButtonLineHeight = "24px";
584
592
  declare const RedsiftTypographyButtonTextTransform = "uppercase";
585
- declare const RedsiftTypographyCaptionFontFamily = "'Raleway', sans-serif";
586
- declare const RedsiftTypographyCaptionFontSize = "13px";
593
+ declare const RedsiftTypographyCaptionFontFamily = "'Poppins', sans-serif";
594
+ declare const RedsiftTypographyCaptionFontSize = "12px";
587
595
  declare const RedsiftTypographyCaptionFontWeight = "400";
588
- declare const RedsiftTypographyCaptionLineHeight = "23px";
596
+ declare const RedsiftTypographyCaptionLineHeight = "18px";
589
597
  declare const RedsiftTypographyCaptionTextTransform = "unset";
590
- declare const RedsiftTypographyHelperFontFamily = "'Raleway', sans-serif";
591
- declare const RedsiftTypographyHelperFontSize = "12px";
598
+ declare const RedsiftTypographyHelperFontFamily = "'Poppins', sans-serif";
599
+ declare const RedsiftTypographyHelperFontSize = "16px";
592
600
  declare const RedsiftTypographyHelperFontWeight = "400";
593
- declare const RedsiftTypographyHelperLineHeight = "16px";
594
- declare const RedsiftTypographyBadgeFontFamily = "'Source Code Pro', sans-serif";
601
+ declare const RedsiftTypographyHelperLineHeight = "24px";
602
+ declare const RedsiftTypographyHelperTextTransform = "unset";
603
+ declare const RedsiftTypographyBadgeFontFamily = "'Poppins', sans-serif";
595
604
  declare const RedsiftTypographyBadgeFontSize = "12px";
596
- declare const RedsiftTypographyBadgeFontWeight = "500";
597
- declare const RedsiftTypographyBadgeLineHeight = "20px";
598
- declare const RedsiftTypographyPillFontFamily = "'Source Code Pro', sans-serif";
599
- declare const RedsiftTypographyPillFontSize = "15px";
600
- declare const RedsiftTypographyPillFontWeight = "500";
601
- declare const RedsiftTypographyPillLineHeight = "28px";
602
- declare const RedsiftTypographyChipFontFamily = "'Source Code Pro', sans-serif";
603
- declare const RedsiftTypographyChipFontSize = "13px";
605
+ declare const RedsiftTypographyBadgeFontWeight = "400";
606
+ declare const RedsiftTypographyBadgeLineHeight = "12px";
607
+ declare const RedsiftTypographyPillFontFamily = "'Poppins', sans-serif";
608
+ declare const RedsiftTypographyPillFontSize = "10px";
609
+ declare const RedsiftTypographyPillFontWeight = "400";
610
+ declare const RedsiftTypographyPillLineHeight = "normal";
611
+ declare const RedsiftTypographyChipFontFamily = "'Poppins', sans-serif";
612
+ declare const RedsiftTypographyChipFontSize = "12px";
604
613
  declare const RedsiftTypographyChipFontWeight = "400";
605
614
  declare const RedsiftTypographyChipLineHeight = "18px";
606
- declare const RedsiftTypographyTooltipFontFamily = "'Raleway', sans-serif";
607
- declare const RedsiftTypographyTooltipFontSize = "13px";
608
- declare const RedsiftTypographyTooltipFontWeight = "500";
609
- declare const RedsiftTypographyTooltipLineHeight = "23px";
610
- declare const RedsiftTypographyDatagridHeaderFontFamily = "'Raleway', sans-serif";
611
- declare const RedsiftTypographyDatagridHeaderFontSize = "15px";
612
- declare const RedsiftTypographyDatagridHeaderFontWeight = "700";
613
- declare const RedsiftTypographyDatagridHeaderLineHeight = "18px";
614
- declare const RedsiftTypographyDatagridCellFontFamily = "'Source Code Pro', sans-serif";
615
- declare const RedsiftTypographyDatagridCellFontSize = "15px";
615
+ declare const RedsiftTypographyTooltipFontFamily = "'Poppins', sans-serif";
616
+ declare const RedsiftTypographyTooltipFontSize = "12px";
617
+ declare const RedsiftTypographyTooltipFontWeight = "400";
618
+ declare const RedsiftTypographyTooltipLineHeight = "18px";
619
+ declare const RedsiftTypographyDatagridHeaderFontFamily = "'Poppins', sans-serif";
620
+ declare const RedsiftTypographyDatagridHeaderFontSize = "14px";
621
+ declare const RedsiftTypographyDatagridHeaderFontWeight = "600";
622
+ declare const RedsiftTypographyDatagridHeaderLineHeight = "21px";
623
+ declare const RedsiftTypographyDatagridCellFontFamily = "'Poppins', sans-serif";
624
+ declare const RedsiftTypographyDatagridCellFontSize = "16px";
616
625
  declare const RedsiftTypographyDatagridCellFontWeight = "400";
617
- declare const RedsiftTypographyDatagridCellLineHeight = "18px";
626
+ declare const RedsiftTypographyDatagridCellLineHeight = "24px";
627
+
628
+ declare const nextId: (localPrefix?: string | null) => string;
629
+ declare const resetId: () => void;
630
+ declare const setPrefix: (newPrefix: string) => void;
631
+ declare const useId: (count?: number, prefix?: string) => string[];
618
632
 
619
633
  /**
620
634
  * Display a warning if no label was found for screen readers and assistive technologies.
@@ -682,8 +696,15 @@ declare const IconSize: {
682
696
  readonly medium: "medium";
683
697
  readonly large: "large";
684
698
  readonly xlarge: "xlarge";
699
+ readonly xxlarge: "xxlarge";
685
700
  };
686
701
  type IconSize = ValueOf<typeof IconSize>;
702
+ type IconDimensions = {
703
+ width?: number;
704
+ height?: number;
705
+ fontSize?: number;
706
+ lineHeight?: number;
707
+ };
687
708
  /**
688
709
  * Component props.
689
710
  */
@@ -693,7 +714,7 @@ interface IconProps extends ComponentProps<'span'>, LayoutProps, SpacingProps, P
693
714
  /** A screen reader only label for the Icon. */
694
715
  'aria-label'?: string;
695
716
  /** Color variant. Either from color palette or hex or rgb strings. */
696
- color?: ColorPalette | ProductColorPalette | (string & {});
717
+ color?: NotificationsColorPalette | ProductColorPalette | (string & {});
697
718
  /** Whether the icon has a badge attached to it. */
698
719
  badge?: ReactElement;
699
720
  /**
@@ -702,15 +723,19 @@ interface IconProps extends ComponentProps<'span'>, LayoutProps, SpacingProps, P
702
723
  */
703
724
  icon: string | string[] | ReactElement;
704
725
  /** Icon size. */
705
- size?: IconSize;
726
+ size?: IconSize | IconDimensions;
706
727
  /** Additional properties to forward to the SVG tag. */
707
728
  svgProps?: ComponentProps<'svg'>;
708
729
  }
709
730
  type StyledIconProps = Omit<IconProps, 'color' | 'size' | 'icon' | 'svgProps'> & {
710
731
  $color: IconProps['color'];
711
- $size: IconProps['size'];
732
+ $width: IconDimensions['width'];
733
+ $height: IconDimensions['height'];
734
+ $fontSize: IconDimensions['fontSize'];
735
+ $lineHeight: IconDimensions['lineHeight'];
712
736
  };
713
737
 
738
+ declare const sizeToDimension: (size: IconSize | IconDimensions) => IconDimensions;
714
739
  /**
715
740
  * The Icon component.
716
741
  */
@@ -728,7 +753,7 @@ type IconButtonVariant = ValueOf<typeof IconButtonVariant>;
728
753
  /**
729
754
  * Component color.
730
755
  */
731
- type IconButtonColor = ColorPalette | ProductColorPalette;
756
+ type IconButtonColor = CtasColorPalette | NotificationsColorPalette;
732
757
  /**
733
758
  * Component props.
734
759
  */
@@ -740,6 +765,8 @@ interface IconButtonProps extends ComponentProps<'button'>, StylingProps {
740
765
  * Can also be a ReactElement.
741
766
  */
742
767
  icon: IconProps['icon'];
768
+ /** Props to forward to the icon. */
769
+ iconProps?: Omit<IconProps, 'ref' | 'icon'>;
743
770
  /** Whether the component is active or not. */
744
771
  isActive?: boolean;
745
772
  /** Whether the component is disabled or not. */
@@ -768,21 +795,40 @@ type StyledIconButtonProps = Omit<IconButtonProps, 'icon'> & {
768
795
  */
769
796
  declare const IconButton: Comp<IconButtonProps, HTMLButtonElement>;
770
797
 
798
+ /**
799
+ * Component props.
800
+ */
801
+ interface BreadcrumbItemProps extends ComponentProps<'a'> {
802
+ /** Prop to pass a custom react component instead of a simple HTML anchor (useful for Nextjs or React Router Link component). */
803
+ as?: 'a' | ElementType;
804
+ /** Whether the breadcrumb item is the current page. */
805
+ isCurrent?: boolean;
806
+ /** Whether the component is disabled or not. */
807
+ isDisabled?: boolean;
808
+ }
809
+ type StyledBreadcrumbItemProps = Omit<BreadcrumbItemProps, 'isDisabled' | 'isCurrent'> & {
810
+ $isCurrent: BreadcrumbItemProps['isCurrent'];
811
+ $isDisabled: BreadcrumbItemProps['isDisabled'];
812
+ };
813
+
814
+ /**
815
+ * The BreadcrumbItem components is a list of links to the parent pages of the current page in hierarchical order.
816
+ */
817
+ declare const BreadcrumbItem: Comp<BreadcrumbItemProps, HTMLAnchorElement>;
818
+
771
819
  /**
772
820
  * Component props.
773
821
  */
774
822
  interface AppBarProps extends Omit<ComponentProps<'header'>, 'title'> {
823
+ /** Array of breadcrumb item props to use to generate a Breadcrumbs in place of the title. The last item is considered as the current page. */
824
+ breadcrumbs?: Omit<BreadcrumbItemProps, 'ref'>[];
775
825
  /** Custom props to pass to the IconButton used to collapse the side panel. */
776
- collapseIconButtonProps?: Omit<IconButtonProps, 'icon'>;
826
+ iconButtonProps?: Omit<IconButtonProps, 'icon'>;
777
827
  /** Custom ref to pass to the IconButton used to collapse the side panel. */
778
- collapseIconButtonRef?: RefObject<HTMLButtonElement>;
779
- /** Custom props to pass to the IconButton used to expand the side panel. */
780
- expandIconButtonProps?: Omit<IconButtonProps, 'icon'>;
781
- /** Custom ref to pass to the IconButton used to expand the side panel. */
782
- expandIconButtonRef?: RefObject<HTMLButtonElement>;
828
+ iconButtonRef?: RefObject<HTMLButtonElement>;
783
829
  /** Title of the page if no one provided automatically */
784
830
  fallbackTitle?: string;
785
- /** Title of the page */
831
+ /** Title of the page, if no breadcrumbs used. */
786
832
  title?: string | ReactElement;
787
833
  }
788
834
  type StyledAppBarProps = AppBarProps & {
@@ -796,79 +842,32 @@ type StyledAppBarProps = AppBarProps & {
796
842
  declare const AppBar: Comp<AppBarProps, HTMLHeadingElement>;
797
843
 
798
844
  /**
799
- * Context props.
800
- */
801
- type AppContainerState = {
802
- /** Collapses the side panel. */
803
- collapseSidePanel(): void;
804
- /** Expandes the side panel. */
805
- expandSidePanel(): void;
806
- /** Whether the container contains an AppBar or not. */
807
- hasAppBar: boolean;
808
- /** Whether the container contains an AppSidePanel or not. */
809
- hasAppSidePanel: boolean;
810
- /** Whether the container contains an AppContent or not. */
811
- hasAppContent: boolean;
812
- /** Whether the side panel is collapsed. */
813
- readonly isSidePanelCollapsed: boolean;
814
- /** Product theme. */
815
- productTheme?: AppContainerProps['productTheme'];
816
- /** Set title of the page. */
817
- setTitle(title?: string): void;
818
- /** Page title. */
819
- readonly title?: string;
820
- };
821
- /**
822
- * Component props.
823
- */
824
- interface AppContainerProps extends ComponentProps<'div'> {
825
- /** The locale to apply to the children. */
826
- locale?: string;
827
- /** Product theme to apply to everything within. This overrides the CSS variables automatically. */
828
- productTheme?: ProductColorPalette;
829
- }
830
- type StyledAppContainerProps = Omit<AppContainerProps, 'locale' | 'productTheme'> & {
831
- $productTheme?: AppContainerProps['productTheme'];
832
- };
833
-
834
- declare const AppContainerContext: React$1.Context<AppContainerState | null>;
835
-
836
- /**
837
- * The AppContainer component.
838
- */
839
- declare const AppContainer: Comp<AppContainerProps, HTMLDivElement>;
840
-
841
- /**
842
- * Component props.
845
+ * Component variant.
843
846
  */
844
- interface AppContentProps extends ComponentProps<'main'>, StylingProps, ContainerProps {
845
- /** Product theme to apply to everything within. This overrides the CSS variables automatically. */
846
- productTheme?: ProductColorPalette;
847
- }
848
- type StyledAppContentProps = Omit<AppContentProps, 'productTheme'> & {
849
- $isLoaded: boolean;
850
- $isSidePanelCollapsed: boolean;
851
- $productTheme?: string;
847
+ declare const AppSidePanelVariant: {
848
+ readonly shrinked: "shrinked";
849
+ readonly standard: "standard";
852
850
  };
853
-
854
- /**
855
- * The AppContent component.
856
- */
857
- declare const AppContent: Comp<AppContentProps, HTMLElement>;
858
-
851
+ type AppSidePanelVariant = ValueOf<typeof AppSidePanelVariant>;
859
852
  /**
860
853
  * Component props.
861
854
  */
862
855
  interface AppSidePanelProps extends ComponentProps<'div'> {
863
856
  /** Elements to display on top of the navigation menu. Usually a button. */
864
857
  featuredElements?: ReactElement | ReactElement[];
865
- /** Whether the component is collapsed or not. */
866
- isCollapsed?: boolean;
858
+ /** Custom props to pass to the IconButton used to collapse the side panel. */
859
+ iconButtonProps?: Omit<IconButtonProps, 'icon'>;
860
+ /** Custom ref to pass to the IconButton used to collapse the side panel. */
861
+ iconButtonRef?: RefObject<HTMLButtonElement>;
867
862
  /** Place to display the logo app. */
868
863
  logo?: ReactElement | ComponentProps<'img'>;
864
+ /** Method called when a click occurs on the top open button - which is displayed only in shrinked variant. */
865
+ onOpen?: (e: MouseEvent) => void;
866
+ /** Variant. */
867
+ variant?: AppSidePanelVariant;
869
868
  }
870
- type StyledAppSidePanelProps = Omit<AppSidePanelProps, 'isCollapsed'> & {
871
- $isCollapsed: boolean;
869
+ type StyledAppSidePanelProps = Omit<AppSidePanelProps, 'isCollapsed' | 'logo'> & {
870
+ $variant: AppSidePanelProps['variant'];
872
871
  };
873
872
 
874
873
  /**
@@ -926,13 +925,12 @@ interface SideNavigationMenuProps extends ComponentProps<'div'> {
926
925
  menuProps?: ComponentProps<'ul'>;
927
926
  /** Custom ref to pass to the menu. */
928
927
  menuRef?: MutableRefObject<HTMLUListElement>;
929
- /** Whether the component should hide icons or not. */
930
- withoutIcons?: boolean;
931
928
  }
932
- type StyledSideNavigationMenuProps = Omit<SideNavigationMenuProps, 'isDisabled' | 'isExpanded' | 'withoutIcons'> & {
929
+ type StyledSideNavigationMenuProps = Omit<SideNavigationMenuProps, 'isDisabled' | 'isExpanded'> & {
933
930
  $isDisabled: SideNavigationMenuProps['isDisabled'];
934
931
  $isExpanded: SideNavigationMenuProps['isExpanded'];
935
- $withoutIcons: SideNavigationMenuProps['withoutIcons'];
932
+ $numberOfChildren: number;
933
+ $variant: SideNavigationMenuBarVariant;
936
934
  };
937
935
 
938
936
  /**
@@ -955,7 +953,7 @@ interface BadgeProps extends ComponentProps<'div'>, LayoutProps, SpacingProps, P
955
953
  /** Whether the badge should automatically break content. */
956
954
  autoBreak?: boolean;
957
955
  /** 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`. */
958
- color?: ColorPalette | DataVizColorPalette | ProductColorPalette;
956
+ color?: CtasColorPalette | NotificationsColorPalette | PresentationColorPalette;
959
957
  /** Whether the Badge has its colors reversed or not. */
960
958
  isReversed?: boolean;
961
959
  /** Badge variant. */
@@ -1000,14 +998,12 @@ interface SideNavigationMenuItemProps extends ComponentProps<'a'> {
1000
998
  isDisabled?: boolean;
1001
999
  /** Whether the component is a second-level menu item. */
1002
1000
  isSecondLevel?: boolean;
1003
- /** Whether the component should hide icons or not. */
1004
- withoutIcons?: boolean;
1005
1001
  }
1006
- type StyledSideNavigationMenuItemProps = Omit<SideNavigationMenuItemProps, 'isCurrent' | 'isDisabled' | 'isSecondLevel' | 'withoutIcons'> & {
1002
+ type StyledSideNavigationMenuItemProps = Omit<SideNavigationMenuItemProps, 'isCurrent' | 'isDisabled' | 'isSecondLevel'> & {
1007
1003
  $isCurrent: SideNavigationMenuItemProps['isCurrent'];
1008
1004
  $isDisabled: SideNavigationMenuItemProps['isDisabled'];
1009
1005
  $isSecondLevel: SideNavigationMenuItemProps['isSecondLevel'];
1010
- $withoutIcons: SideNavigationMenuItemProps['withoutIcons'];
1006
+ $variant: SideNavigationMenuBarVariant;
1011
1007
  };
1012
1008
 
1013
1009
  /**
@@ -1015,29 +1011,48 @@ type StyledSideNavigationMenuItemProps = Omit<SideNavigationMenuItemProps, 'isCu
1015
1011
  */
1016
1012
  declare const SideNavigationMenuItem: Comp<SideNavigationMenuItemProps, HTMLAnchorElement>;
1017
1013
 
1014
+ /**
1015
+ * Component variant.
1016
+ */
1017
+ declare const SideNavigationMenuBarVariant: {
1018
+ readonly shrinked: "shrinked";
1019
+ readonly standard: "standard";
1020
+ };
1021
+ type SideNavigationMenuBarVariant = ValueOf<typeof SideNavigationMenuBarVariant>;
1018
1022
  /**
1019
1023
  * Context props.
1020
1024
  */
1021
1025
  type SideNavigationMenuBarContextProps = {
1026
+ /** List of menu items. */
1022
1027
  menuItems: Set<HTMLAnchorElement | HTMLButtonElement>;
1028
+ /** Side navigation variant. */
1029
+ sideNavigationMenuBarVariant: SideNavigationMenuBarVariant;
1030
+ /** Change side navigation variant. */
1031
+ setSideNavigationMenuBarVariant: Dispatch<SetStateAction<SideNavigationMenuBarVariant>>;
1032
+ /** Current open menu, used to close other menu when canHaveMultipleMenuOpenAtOnce is false. */
1033
+ currentOpenMenuId?: string;
1034
+ /** Change current open menu id. */
1035
+ setCurrentOpenMenuId?: Dispatch<SetStateAction<string | undefined>>;
1023
1036
  };
1024
1037
  /**
1025
1038
  * Component props.
1026
1039
  */
1027
1040
  interface SideNavigationMenuBarProps extends ComponentProps<'nav'> {
1041
+ /** Whether or not opening a menu closes the others. */
1042
+ canHaveMultipleMenuOpenAtOnce?: boolean;
1028
1043
  /** Whether the component is disabled or not. */
1029
1044
  isDisabled?: boolean;
1030
1045
  /** Custom props to pass to the menubar. */
1031
1046
  menubarProps?: ComponentProps<'ul'>;
1032
1047
  /** Custom ref to pass to the menubar. */
1033
1048
  menubarRef?: MutableRefObject<HTMLUListElement>;
1034
- /** Whether the component should hide icons or not. */
1035
- withoutIcons?: boolean;
1049
+ /** Variant. */
1050
+ variant?: SideNavigationMenuBarVariant;
1036
1051
  }
1037
- type StyledSideNavigationMenuBarProps = Omit<SideNavigationMenuBarProps, 'isDisabled' | 'withoutIcons'> & {
1052
+ type StyledSideNavigationMenuBarProps = Omit<SideNavigationMenuBarProps, 'isDisabled'> & {
1038
1053
  $isDisabled: SideNavigationMenuBarProps['isDisabled'];
1039
1054
  $marginTop?: number;
1040
- $withoutIcons: SideNavigationMenuBarProps['withoutIcons'];
1055
+ $variant: SideNavigationMenuBarProps['variant'];
1041
1056
  };
1042
1057
  /**
1043
1058
  * Hook props.
@@ -1062,28 +1077,70 @@ interface UseSideNavigationMenuBarProps {
1062
1077
  }
1063
1078
  declare const useSideNavigationMenuBar: ({ items, isActive, }: UseSideNavigationMenuBarProps) => Omit<SideNavigationMenuBarProps, 'ref'>;
1064
1079
 
1065
- declare const useAppSidePanel: ({ items, isActive, }: UseSideNavigationMenuBarProps) => Omit<AppSidePanelProps, 'ref'>;
1080
+ declare const useAppSidePanel: ({ items, isActive }: UseSideNavigationMenuBarProps) => Omit<AppSidePanelProps, 'ref'>;
1066
1081
 
1082
+ /**
1083
+ * Context props.
1084
+ */
1085
+ type AppContainerState = {
1086
+ /** Collapses the side panel. */
1087
+ collapseSidePanel(): void;
1088
+ /** Expandes the side panel. */
1089
+ expandSidePanel(): void;
1090
+ /** Whether the container contains an AppBar or not. */
1091
+ hasAppBar: boolean;
1092
+ /** Whether the container contains an AppSidePanel or not. */
1093
+ hasAppSidePanel: boolean;
1094
+ /** Whether the container contains an AppContent or not. */
1095
+ hasAppContent: boolean;
1096
+ /** Product theme. */
1097
+ product?: AppContainerProps['product'];
1098
+ /** Set breadcrumbs of the page. */
1099
+ setBreadcrumbs(breadcrumbs?: Omit<BreadcrumbItemProps, 'ref'>[]): void;
1100
+ /** Page breadcrumbs. */
1101
+ readonly breadcrumbs?: Omit<BreadcrumbItemProps, 'ref'>[];
1102
+ /** Side panel variant. */
1103
+ sidePanelVariant: AppSidePanelVariant;
1104
+ /** Change side panel variant. */
1105
+ setSidePanelVariant: Dispatch<SetStateAction<AppSidePanelVariant>>;
1106
+ };
1067
1107
  /**
1068
1108
  * Component props.
1069
1109
  */
1070
- interface BreadcrumbItemProps extends ComponentProps<'a'> {
1071
- /** Prop to pass a custom react component instead of a simple HTML anchor (useful for Nextjs or React Router Link component). */
1072
- as?: 'a' | ElementType;
1073
- /** Whether the breadcrumb item is the current page. */
1074
- isCurrent?: boolean;
1075
- /** Whether the component is disabled or not. */
1076
- isDisabled?: boolean;
1110
+ interface AppContainerProps extends ComponentProps<'div'> {
1111
+ /** The locale to apply to the children. */
1112
+ locale?: string;
1113
+ /** Product theme to apply to everything within. This overrides the CSS variables automatically. */
1114
+ product?: Product;
1077
1115
  }
1078
- type StyledBreadcrumbItemProps = Omit<BreadcrumbItemProps, 'isDisabled' | 'isCurrent'> & {
1079
- $isCurrent: BreadcrumbItemProps['isCurrent'];
1080
- $isDisabled: BreadcrumbItemProps['isDisabled'];
1116
+ type StyledAppContainerProps = Omit<AppContainerProps, 'locale' | 'product'> & {
1117
+ $product?: AppContainerProps['product'];
1081
1118
  };
1082
1119
 
1120
+ declare const AppContainerContext: React$1.Context<AppContainerState | null>;
1121
+
1083
1122
  /**
1084
- * The BreadcrumbItem components is a list of links to the parent pages of the current page in hierarchical order.
1123
+ * The AppContainer component.
1085
1124
  */
1086
- declare const BreadcrumbItem: Comp<BreadcrumbItemProps, HTMLAnchorElement>;
1125
+ declare const AppContainer: Comp<AppContainerProps, HTMLDivElement>;
1126
+
1127
+ /**
1128
+ * Component props.
1129
+ */
1130
+ interface AppContentProps extends ComponentProps<'main'>, StylingProps, ContainerProps {
1131
+ /** Product theme to apply to everything within. This overrides the CSS variables automatically. */
1132
+ product?: Product;
1133
+ }
1134
+ type StyledAppContentProps = Omit<AppContentProps, 'product'> & {
1135
+ $isLoaded: boolean;
1136
+ $isSidePanelCollapsed: boolean;
1137
+ $product?: string;
1138
+ };
1139
+
1140
+ /**
1141
+ * The AppContent component.
1142
+ */
1143
+ declare const AppContent: Comp<AppContentProps, HTMLElement>;
1087
1144
 
1088
1145
  /**
1089
1146
  * Component props.
@@ -1116,7 +1173,7 @@ type ButtonVariant = ValueOf<typeof ButtonVariant>;
1116
1173
  /**
1117
1174
  * Component color.
1118
1175
  */
1119
- type ButtonColor = ColorPalette | ProductColorPalette;
1176
+ type ButtonColor = CtasColorPalette | NotificationsColorPalette;
1120
1177
  /**
1121
1178
  * Component props.
1122
1179
  */
@@ -1522,7 +1579,7 @@ interface ShieldProps extends ComponentProps<'div'>, StylingProps {
1522
1579
  variant?: ShieldVariant;
1523
1580
  }
1524
1581
  type StyledShieldProps = Omit<ShieldProps, 'color'> & {
1525
- $color?: ColorPalette | ProductColorPalette | (string & {});
1582
+ $color?: NotificationsColorPalette | ProductColorPalette | (string & {});
1526
1583
  $isOutlined: ShieldProps['isOutlined'];
1527
1584
  $isReversed: ShieldProps['isReversed'];
1528
1585
  $variant: ShieldProps['variant'];
@@ -1542,7 +1599,7 @@ interface DetailedCardProps extends ComponentProps<'div'>, StylingProps {
1542
1599
  /** Banner variant. */
1543
1600
  bannerVariant?: 'standard' | 'condensed';
1544
1601
  /** Banner color. */
1545
- color?: ColorPalette;
1602
+ color?: NotificationsColorPalette;
1546
1603
  /** Default collapse status. Used for uncontrolled version. */
1547
1604
  defaultAllCollapsed?: boolean;
1548
1605
  /**
@@ -1570,7 +1627,7 @@ interface PillProps extends ComponentProps<'div'>, StylingProps {
1570
1627
  /** Whether the badge should automatically break content. */
1571
1628
  autoBreak?: boolean;
1572
1629
  /** 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`. */
1573
- color?: DataVizColorPalette | 'white' | 'black' | 'no-data' | 'error' | 'warning' | 'success' | 'error-dark' | 'warning-dark' | 'success-dark';
1630
+ color?: PresentationColorPalette | 'white' | 'black' | 'no-data' | 'error' | 'warning' | 'success' | 'error-dark' | 'warning-dark' | 'success-dark';
1574
1631
  }
1575
1632
  type StyledPillProps = Omit<PillProps, 'color' | 'autoBreak'> & {
1576
1633
  $autoBreak: PillProps['autoBreak'];
@@ -1656,7 +1713,7 @@ interface DetailedCardSectionProps extends ComponentProps<'div'> {
1656
1713
  /** Props to pass to the badge displayed next to the title. */
1657
1714
  badge?: Omit<BadgeProps, 'ref'>;
1658
1715
  /** Color that will be used on the header line. */
1659
- color?: ColorPalette | DataVizColorPalette | (string & {});
1716
+ color?: NotificationsColorPalette | PresentationColorPalette | (string & {});
1660
1717
  /** Header. */
1661
1718
  header?: string | ReactElement;
1662
1719
  /** Whether the section is collapsed or not. */
@@ -2019,11 +2076,11 @@ type StyledListboxProps = Omit<ListboxProps, 'onChange'> & {
2019
2076
 
2020
2077
  declare const ActiveDescendantListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
2021
2078
  context: ListboxContextProps;
2022
- }, "left" | "right" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "alignSelf" | "justifySelf" | "order" | "gridArea" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridColumnEnd" | "gridRowStart" | "gridRowEnd" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "position" | "top" | "bottom" | "zIndex" | "label" | "slot" | "style" | "title" | "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" | "values" | "isDisabled" | "direction" | "defaultValues" | "isInvalid" | "isReadOnly" | "isRequired" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "activedescendant" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
2079
+ }, "label" | "slot" | "style" | "title" | "left" | "right" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "alignSelf" | "justifySelf" | "order" | "gridArea" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridColumnEnd" | "gridRowStart" | "gridRowEnd" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "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" | "values" | "isDisabled" | "direction" | "defaultValues" | "isInvalid" | "isReadOnly" | "isRequired" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "activedescendant" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
2023
2080
 
2024
2081
  declare const RovingTabindexListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
2025
2082
  context: ListboxContextProps;
2026
- }, "left" | "right" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "alignSelf" | "justifySelf" | "order" | "gridArea" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridColumnEnd" | "gridRowStart" | "gridRowEnd" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "position" | "top" | "bottom" | "zIndex" | "label" | "slot" | "style" | "title" | "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" | "values" | "isDisabled" | "direction" | "defaultValues" | "isInvalid" | "isReadOnly" | "isRequired" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "activedescendant" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
2083
+ }, "label" | "slot" | "style" | "title" | "left" | "right" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "alignSelf" | "justifySelf" | "order" | "gridArea" | "gridColumn" | "gridRow" | "gridColumnStart" | "gridColumnEnd" | "gridRowStart" | "gridRowEnd" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "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" | "values" | "isDisabled" | "direction" | "defaultValues" | "isInvalid" | "isReadOnly" | "isRequired" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "activedescendant" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
2027
2084
 
2028
2085
  /**
2029
2086
  * The Listbox component.
@@ -2098,11 +2155,10 @@ declare const LinkButton: Comp<LinkButtonProps, HTMLButtonElement>;
2098
2155
  * Component variant.
2099
2156
  */
2100
2157
  declare const TextVariant: {
2101
- readonly subtitle: "subtitle";
2102
2158
  readonly body: "body";
2103
- readonly body2: "body2";
2104
2159
  readonly button: "button";
2105
2160
  readonly caption: "caption";
2161
+ readonly helper: "helper";
2106
2162
  readonly inherit: "inherit";
2107
2163
  };
2108
2164
  type TextVariant = ValueOf<typeof TextVariant>;
@@ -2131,11 +2187,13 @@ interface TextProps extends ComponentProps<'span'>, StylingProps {
2131
2187
  /** Override component. */
2132
2188
  as?: TextComponent;
2133
2189
  /** Color variant. Either from color palette or hex or rgb strings. */
2134
- color?: ColorPalette | ProductColorPalette | NeutralColorPalette | (string & {});
2190
+ color?: NotificationsColorPalette | NeutralColorPalette | (string & {});
2135
2191
  /** Font family. */
2136
2192
  fontFamily?: FontFamily;
2137
2193
  /** Font size. */
2138
2194
  fontSize?: string;
2195
+ /** Font weight. */
2196
+ fontWeight?: string;
2139
2197
  /** Line height. */
2140
2198
  lineHeight?: string;
2141
2199
  /** Whether the text will truncate with a text overflow ellipsis or wrap. */
@@ -2148,6 +2206,7 @@ type StyledTextProps = Omit<TextProps, 'as' | 'color' | 'fontFamily' | 'fontSize
2148
2206
  $color: TextProps['color'];
2149
2207
  $fontFamily?: TextProps['fontFamily'];
2150
2208
  $fontSize: TextProps['fontSize'];
2209
+ $fontWeight: TextProps['fontWeight'];
2151
2210
  $lineHeight: TextProps['lineHeight'];
2152
2211
  $noWrap: TextProps['noWrap'];
2153
2212
  $variant: TextProps['variant'];
@@ -2370,9 +2429,7 @@ declare const SkeletonTextVariant: {
2370
2429
  readonly h3: "h3";
2371
2430
  readonly h4: "h4";
2372
2431
  readonly h5: "h5";
2373
- readonly subtitle: "subtitle";
2374
2432
  readonly body: "body";
2375
- readonly body2: "body2";
2376
2433
  readonly button: "button";
2377
2434
  readonly caption: "caption";
2378
2435
  };
@@ -2430,25 +2487,20 @@ declare const SpinnerSize: {
2430
2487
  readonly large: "large";
2431
2488
  };
2432
2489
  type SpinnerSize = ValueOf<typeof SpinnerSize>;
2433
- /**
2434
- * Component color.
2435
- */
2436
- type SpinnerColor = typeof ColorPalette.default | typeof ColorPalette.question | typeof ColorPalette['no-data'] | ProductColorPalette;
2437
2490
  /**
2438
2491
  * Component props.
2439
2492
  */
2440
- interface SpinnerProps extends ComponentProps<'img'>, LayoutProps, SpacingProps, PositioningProps {
2493
+ interface SpinnerProps extends Omit<ComponentProps<'img'>, 'color'>, LayoutProps, SpacingProps, PositioningProps {
2441
2494
  /** Indicates whether the element is exposed to an accessibility API. */
2442
2495
  'aria-hidden'?: boolean | 'false' | 'true';
2443
2496
  /** A screen reader only label for the Spinner. */
2444
2497
  'aria-label'?: string;
2445
- /** Color variant. The product colors are available but should only be used to display the Spinner in the color of another product. To display a Spinner with a color of the current product, use `default`. */
2446
- color?: SpinnerColor;
2498
+ /** Whether the spinner is colored or not. */
2499
+ isColored?: boolean;
2447
2500
  /** Spinner size. */
2448
2501
  size?: SpinnerSize;
2449
2502
  }
2450
2503
  type StyledSpinnerProps = Omit<SpinnerProps, 'color'> & {
2451
- $color?: SpinnerProps['color'];
2452
2504
  $size?: SpinnerProps['size'];
2453
2505
  };
2454
2506
 
@@ -2662,4 +2714,4 @@ type StyledTextFieldProps = Omit<TextFieldProps, 'color' | 'isColored' | 'isDisa
2662
2714
  */
2663
2715
  declare const TextField: Comp<TextFieldProps, HTMLDivElement>;
2664
2716
 
2665
- export { ActiveDescendantListbox, Alert, AlertProps, AlertVariant, AlignContent, AlignItems, AlignSelf, AppBar, AppBarProps, AppContainer, AppContainerContext, AppContainerProps, AppContainerState, AppContent, AppContentProps, AppSidePanel, AppSidePanelProps, Badge, BadgeProps, BadgeVariant, BaseBreadcrumbs, BaseFocusWithinGroupAction, BaseGrid, BaseSkeleton, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonColor, ButtonLink, ButtonLinkProps, ButtonProps, ButtonVariant, Card, CardActions, CardActionsProps, CardBody, CardBodyProps, CardHeader, CardHeaderProps, CardProps, Checkbox, CheckboxGroup, CheckboxGroupOrientation, CheckboxGroupProps, CheckboxGroupState, CheckboxProps, ColorPalette, Comp, ConditionalWrapper, ConditionalWrapperProps, ContainerProps, DataVizColorPalette, 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, 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, Number, NumberFormatOptions, NumberProps, Pill, PillProps, PositioningProps, ProductColorPalette, Radio, RadioGroup, RadioGroupOrientation, RadioGroupProps, RadioGroupState, RadioProps, RedsiftAppBarColorBackground, RedsiftAppBarColorExpandIconBackgroundHover, RedsiftAppBarColorExpandIconHover, RedsiftAppBarColorExpandIconResting, RedsiftAppBarColorText, RedsiftColorDefaultActive, RedsiftColorDefaultActiveHover, RedsiftColorDefaultHover, RedsiftColorDefaultPrimary, RedsiftColorDefaultPrimaryActive, RedsiftColorDefaultPrimaryActiveHover, RedsiftColorDefaultSecondary, RedsiftColorErrorActive, RedsiftColorErrorActiveHover, RedsiftColorErrorHover, RedsiftColorErrorPrimary, RedsiftColorErrorPrimaryActive, RedsiftColorErrorPrimaryActiveHover, RedsiftColorErrorSecondary, RedsiftColorHardenizeActive, RedsiftColorHardenizeActiveHover, RedsiftColorHardenizeHover, RedsiftColorHardenizePrimary, RedsiftColorHardenizePrimaryActive, RedsiftColorHardenizePrimaryActiveHover, RedsiftColorHardenizeSecondary, RedsiftColorInfoActive, RedsiftColorInfoActiveHover, RedsiftColorInfoHover, RedsiftColorInfoPrimary, RedsiftColorInfoPrimaryActive, RedsiftColorInfoPrimaryActiveHover, RedsiftColorInfoSecondary, RedsiftColorNeutralBlack, RedsiftColorNeutralDarkgrey, RedsiftColorNeutralLightgrey, RedsiftColorNeutralMidgrey, RedsiftColorNeutralWhite, RedsiftColorNeutralXlightgrey, RedsiftColorNoDataActive, RedsiftColorNoDataActiveHover, RedsiftColorNoDataHover, RedsiftColorNoDataPrimary, RedsiftColorNoDataPrimaryActive, RedsiftColorNoDataPrimaryActiveHover, RedsiftColorNoDataSecondary, RedsiftColorOndmarcActive, RedsiftColorOndmarcActiveHover, RedsiftColorOndmarcHover, RedsiftColorOndmarcPrimary, RedsiftColorOndmarcPrimaryActive, RedsiftColorOndmarcPrimaryActiveHover, RedsiftColorOndmarcSecondary, RedsiftColorOndomainActive, RedsiftColorOndomainActiveHover, RedsiftColorOndomainHover, RedsiftColorOndomainPrimary, RedsiftColorOndomainPrimaryActive, RedsiftColorOndomainPrimaryActiveHover, RedsiftColorOndomainSecondary, RedsiftColorOninboxActive, RedsiftColorOninboxActiveHover, RedsiftColorOninboxHover, RedsiftColorOninboxPrimary, RedsiftColorOninboxPrimaryActive, RedsiftColorOninboxPrimaryActiveHover, RedsiftColorOninboxSecondary, RedsiftColorQuestionActive, RedsiftColorQuestionActiveHover, RedsiftColorQuestionHover, RedsiftColorQuestionPrimary, RedsiftColorQuestionPrimaryActive, RedsiftColorQuestionPrimaryActiveHover, RedsiftColorQuestionSecondary, RedsiftColorSuccessActive, RedsiftColorSuccessActiveHover, RedsiftColorSuccessHover, RedsiftColorSuccessPrimary, RedsiftColorSuccessPrimaryActive, RedsiftColorSuccessPrimaryActiveHover, RedsiftColorSuccessSecondary, RedsiftColorToolsActive, RedsiftColorToolsActiveHover, RedsiftColorToolsHover, RedsiftColorToolsPrimary, RedsiftColorToolsPrimaryActive, RedsiftColorToolsPrimaryActiveHover, RedsiftColorToolsSecondary, RedsiftColorWarningActive, RedsiftColorWarningActiveHover, RedsiftColorWarningHover, RedsiftColorWarningPrimary, RedsiftColorWarningPrimaryActive, RedsiftColorWarningPrimaryActiveHover, RedsiftColorWarningSecondary, RedsiftColorWebsiteActive, RedsiftColorWebsiteActiveHover, RedsiftColorWebsiteHover, RedsiftColorWebsitePrimary, RedsiftColorWebsitePrimaryActive, RedsiftColorWebsitePrimaryActiveHover, RedsiftColorWebsiteSecondary, RedsiftDataVizColorAquaDark, RedsiftDataVizColorAquaDarker, RedsiftDataVizColorAquaDarkerer, RedsiftDataVizColorAquaDefault, RedsiftDataVizColorAquaLight, RedsiftDataVizColorAquaLighter, RedsiftDataVizColorAquaLighterer, RedsiftDataVizColorBlueDark, RedsiftDataVizColorBlueDarker, RedsiftDataVizColorBlueDarkerer, RedsiftDataVizColorBlueDefault, RedsiftDataVizColorBlueLight, RedsiftDataVizColorBlueLighter, RedsiftDataVizColorBlueLighterer, RedsiftDataVizColorBrownDark, RedsiftDataVizColorBrownDarker, RedsiftDataVizColorBrownDarkerer, RedsiftDataVizColorBrownDefault, RedsiftDataVizColorBrownLight, RedsiftDataVizColorBrownLighter, RedsiftDataVizColorBrownLighterer, RedsiftDataVizColorGreenDark, RedsiftDataVizColorGreenDarker, RedsiftDataVizColorGreenDarkerer, RedsiftDataVizColorGreenDefault, RedsiftDataVizColorGreenLight, RedsiftDataVizColorGreenLighter, RedsiftDataVizColorGreenLighterer, RedsiftDataVizColorGreyDark, RedsiftDataVizColorGreyDarker, RedsiftDataVizColorGreyDarkerer, RedsiftDataVizColorGreyDefault, RedsiftDataVizColorGreyLight, RedsiftDataVizColorGreyLighter, RedsiftDataVizColorGreyLighterer, RedsiftDataVizColorOrangeDark, RedsiftDataVizColorOrangeDarker, RedsiftDataVizColorOrangeDarkerer, RedsiftDataVizColorOrangeDefault, RedsiftDataVizColorOrangeLight, RedsiftDataVizColorOrangeLighter, RedsiftDataVizColorOrangeLighterer, RedsiftDataVizColorPinkDark, RedsiftDataVizColorPinkDarker, RedsiftDataVizColorPinkDarkerer, RedsiftDataVizColorPinkDefault, RedsiftDataVizColorPinkLight, RedsiftDataVizColorPinkLighter, RedsiftDataVizColorPinkLighterer, RedsiftDataVizColorPurpleDark, RedsiftDataVizColorPurpleDarker, RedsiftDataVizColorPurpleDarkerer, RedsiftDataVizColorPurpleDefault, RedsiftDataVizColorPurpleLight, RedsiftDataVizColorPurpleLighter, RedsiftDataVizColorPurpleLighterer, RedsiftDataVizColorRedDark, RedsiftDataVizColorRedDarker, RedsiftDataVizColorRedDarkerer, RedsiftDataVizColorRedDefault, RedsiftDataVizColorRedLight, RedsiftDataVizColorRedLighter, RedsiftDataVizColorRedLighterer, RedsiftDataVizColorYellowDark, RedsiftDataVizColorYellowDarker, RedsiftDataVizColorYellowDarkerer, RedsiftDataVizColorYellowDefault, RedsiftDataVizColorYellowLight, RedsiftDataVizColorYellowLighter, RedsiftDataVizColorYellowLighterer, RedsiftLayoutZIndexDialog, RedsiftLayoutZIndexDropdown, RedsiftLayoutZIndexFooter, RedsiftLayoutZIndexHeader, RedsiftLayoutZIndexOverlay, RedsiftLayoutZIndexPopover, RedsiftLayoutZIndexSidePanel, RedsiftLayoutZIndexTooltip, RedsiftSideNavigationColorBackground, RedsiftSideNavigationColorMenuItemActive, RedsiftSideNavigationColorMenuItemBackgroundActive, RedsiftSideNavigationColorMenuItemBackgroundHover, RedsiftSideNavigationColorMenuItemBackgroundSecondary, RedsiftSideNavigationColorMenuItemTextDisabled, RedsiftSideNavigationColorMenuItemTextHover, RedsiftSideNavigationColorMenuItemTextResting, RedsiftSideNavigationColorScrollbarHover, RedsiftSideNavigationColorScrollbarResting, RedsiftTypographyBadgeFontFamily, RedsiftTypographyBadgeFontSize, RedsiftTypographyBadgeFontWeight, RedsiftTypographyBadgeLineHeight, RedsiftTypographyBody2FontFamily, RedsiftTypographyBody2FontSize, RedsiftTypographyBody2FontWeight, RedsiftTypographyBody2LineHeight, 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, RedsiftTypographyFontFamilyElectrolize, RedsiftTypographyFontFamilyRaleway, RedsiftTypographyFontFamilySourceCodePro, RedsiftTypographyFontWeightBold, RedsiftTypographyFontWeightMedium, RedsiftTypographyFontWeightRegular, RedsiftTypographyFontWeightSemiBold, 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, RedsiftTypographyInputTextFontFamily, RedsiftTypographyInputTextFontSize, RedsiftTypographyInputTextFontWeight, RedsiftTypographyInputTextLineHeight, RedsiftTypographyLinkFontFamily, RedsiftTypographyLinkFontSize, RedsiftTypographyLinkFontWeight, RedsiftTypographyLinkLineHeight, RedsiftTypographyPillFontFamily, RedsiftTypographyPillFontSize, RedsiftTypographyPillFontWeight, RedsiftTypographyPillLineHeight, RedsiftTypographySubtitleFontFamily, RedsiftTypographySubtitleFontSize, RedsiftTypographySubtitleFontWeight, RedsiftTypographySubtitleLineHeight, RedsiftTypographySubtitleTextTransform, RedsiftTypographyTooltipFontFamily, RedsiftTypographyTooltipFontSize, RedsiftTypographyTooltipFontWeight, RedsiftTypographyTooltipLineHeight, RovingTabindexListbox, RowStartMap, Shield, ShieldProps, ShieldVariant, SideNavigationMenu, SideNavigationMenuBar, SideNavigationMenuBarContextProps, SideNavigationMenuBarProps, SideNavigationMenuContextProps, SideNavigationMenuItem, SideNavigationMenuItemProps, SideNavigationMenuProps, SideNavigationMenuReducerAction, SideNavigationMenuReducerActionType, SideNavigationMenuReducerState, SizingProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkeletonTextVariant, SpacingProps, Spinner, SpinnerColor, SpinnerProps, SpinnerSize, StyledAlertProps, StyledAppBarProps, StyledAppContainerProps, StyledAppContentProps, StyledAppSidePanelProps, StyledBadgeProps, StyledBreadcrumbItemProps, StyledBreadcrumbsProps, StyledButton, 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, isComponent, partitionComponents, uniqueId, useAppSidePanel, useBoundingClientRect, useFocusOnList, useFocusOnListItem, useSideNavigationMenuBar, useWindowSize, warnIfNoAccessibleLabelFound };
2717
+ 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, 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, PositioningProps, PresentationColorPalette, Product, ProductColorPalette, ProductLogo, ProductName, 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, 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, isComponent, nextId, partitionComponents, resetId, setPrefix, sizeToDimension, uniqueId, useAppSidePanel, useBoundingClientRect, useFocusOnList, useFocusOnListItem, useId, useSideNavigationMenuBar, useWindowSize, warnIfNoAccessibleLabelFound };