carbon-react 104.0.0 → 104.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,6 +25,7 @@ export interface TooltipProps {
25
25
  * (see https://popper.js.org/docs/v2/modifiers/flip/#fallbackplacements)
26
26
  */
27
27
  flipOverrides?: ["top" | "bottom" | "left" | "right"];
28
+ target?: Element;
28
29
  }
29
30
 
30
31
  export interface TooltipInternalProps extends TooltipProps {
@@ -1,6 +1,8 @@
1
- export function tokensClassName(theme: any): string;
2
- export const GlobalTokens: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
3
1
  export default CarbonScopedTokensProvider;
4
- declare function CarbonScopedTokensProvider({ children }: {
5
- children: any;
6
- }): JSX.Element;
2
+ /**
3
+ *
4
+ * Converts theme properties to css variables form and set them locally for
5
+ * given scope
6
+ *
7
+ */
8
+ declare const CarbonScopedTokensProvider: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -3,20 +3,14 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.default = exports.GlobalTokens = exports.tokensClassName = void 0;
6
+ exports.default = void 0;
7
7
 
8
- var _react = _interopRequireDefault(require("react"));
8
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
9
9
 
10
- var _styledComponents = _interopRequireWildcard(require("styled-components"));
10
+ var _themes = require("../../themes");
11
11
 
12
12
  var _generateCssVariables = _interopRequireDefault(require("../generate-css-variables.util"));
13
13
 
14
- var _guid = _interopRequireDefault(require("../../../__internal__/utils/helpers/guid"));
15
-
16
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
17
-
18
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
14
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
15
 
22
16
  /**
@@ -25,37 +19,18 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
25
19
  * given scope
26
20
  *
27
21
  */
28
- const activeThemes = {};
29
- const carbonInstanceId = (0, _guid.default)();
30
-
31
- const kebabCase = input => input && input.toString().toLowerCase().match(/\w*/gm).filter(Boolean).join("-");
32
-
33
- const tokensClassName = theme => `sage-design-tokens-${kebabCase(theme)}-${carbonInstanceId}`;
34
-
35
- exports.tokensClassName = tokensClassName;
36
- const GlobalTokens = (0, _styledComponents.createGlobalStyle)`
37
- ${({
38
- theme
39
- }) => {
40
- const className = tokensClassName(theme.name);
41
- activeThemes[className] = activeThemes[className] || (0, _generateCssVariables.default)(theme.compatibility);
42
- return Object.entries(activeThemes).reduce((acc, [name, definitions]) => `${acc} .${name} { ${definitions} }`, "");
43
- }}`;
44
- exports.GlobalTokens = GlobalTokens;
45
- const TokensProviderWrapper = _styledComponents.default.div.attrs(({
46
- theme
47
- }) => ({
48
- className: tokensClassName(theme.name)
49
- }))`
22
+ const CarbonScopedTokensProvider = _styledComponents.default.div`
50
23
  margin: 0;
51
24
  padding: 0;
52
25
  width: auto;
53
26
  display: inline;
54
- `;
55
-
56
- const CarbonScopedTokensProvider = ({
57
- children
58
- }) => /*#__PURE__*/_react.default.createElement(TokensProviderWrapper, null, /*#__PURE__*/_react.default.createElement(GlobalTokens, null), children);
59
27
 
28
+ ${({
29
+ theme
30
+ }) => (0, _generateCssVariables.default)(theme.compatibility)}
31
+ `;
32
+ CarbonScopedTokensProvider.defaultProps = {
33
+ theme: _themes.baseTheme
34
+ };
60
35
  var _default = CarbonScopedTokensProvider;
61
36
  exports.default = _default;
@@ -18,6 +18,7 @@ declare function _default(palette: any): {
18
18
  colorsActionMajor500: any;
19
19
  colorsActionMajor600: any;
20
20
  colorsActionMajor150: any;
21
+ colorsBaseTheme: any;
21
22
  };
22
23
  };
23
24
  export default _default;
@@ -32,7 +32,8 @@ var _default = palette => {
32
32
  return {
33
33
  colorsActionMajor500: this.colors.primary,
34
34
  colorsActionMajor600: this.colors.secondary,
35
- colorsActionMajor150: this.colors.loadingBarBackground
35
+ colorsActionMajor150: this.colors.loadingBarBackground,
36
+ colorsBaseTheme: this.colors.primary
36
37
  };
37
38
  }
38
39
 
@@ -389,14 +389,69 @@ declare function _default(palette: any): {
389
389
  colorsYin030: string;
390
390
  colorsYin055: string;
391
391
  colorsYin065: string;
392
+ colorsYin075: string;
392
393
  colorsYin090: string;
393
394
  colorsYang100: string;
395
+ colorsYang080: string;
396
+ colorsGray850: string;
397
+ colorsGray900: string;
398
+ colorsGray1000: string;
399
+ colorsGray000: string;
394
400
  colorsDisabled400: string;
395
401
  colorsDisabled500: string;
396
402
  colorsDisabled600: string;
397
403
  colorsReadOnly400: string;
398
404
  colorsReadOnly500: string;
399
405
  colorsReadOnly600: string;
406
+ colorsComponentsMenuSpringStandard500: string;
407
+ colorsComponentsMenuSpringStandard600: string;
408
+ colorsComponentsMenuSpringStandard700: string;
409
+ colorsComponentsMenuSpringParent500: string;
410
+ colorsComponentsMenuSpringParent600: string;
411
+ colorsComponentsMenuSpringParent700: string;
412
+ colorsComponentsMenuSpringChild400: string;
413
+ colorsComponentsMenuSpringChild500: string;
414
+ colorsComponentsMenuSpringChild600: string;
415
+ colorsComponentsMenuSpringChildAlt500: string;
416
+ colorsComponentsMenuSpringChildAlt600: string;
417
+ colorsComponentsMenuSummerStandard500: string;
418
+ colorsComponentsMenuSummerStandard600: string;
419
+ colorsComponentsMenuSummerStandard700: string;
420
+ colorsComponentsMenuSummerParent500: string;
421
+ colorsComponentsMenuSummerParent600: string;
422
+ colorsComponentsMenuSummerParent700: string;
423
+ colorsComponentsMenuSummerChild400: string;
424
+ colorsComponentsMenuSummerChild500: string;
425
+ colorsComponentsMenuSummerChild600: string;
426
+ colorsComponentsMenuSummerChildAlt500: string;
427
+ colorsComponentsMenuSummerChildAlt600: string;
428
+ colorsComponentsMenuAutumnStandard500: string;
429
+ colorsComponentsMenuAutumnStandard600: string;
430
+ colorsComponentsMenuAutumnStandard700: string;
431
+ colorsComponentsMenuAutumnParent500: string;
432
+ colorsComponentsMenuAutumnParent600: string;
433
+ colorsComponentsMenuAutumnParent700: string;
434
+ colorsComponentsMenuAutumnChild400: string;
435
+ colorsComponentsMenuAutumnChild500: string;
436
+ colorsComponentsMenuAutumnChild600: string;
437
+ colorsComponentsMenuAutumnChildAlt500: string;
438
+ colorsComponentsMenuAutumnChildAlt600: string;
439
+ colorsComponentsMenuWinterStandard500: string;
440
+ colorsComponentsMenuWinterStandard600: string;
441
+ colorsComponentsMenuWinterStandard700: string;
442
+ colorsComponentsMenuWinterParent500: string;
443
+ colorsComponentsMenuWinterParent600: string;
444
+ colorsComponentsMenuWinterParent700: string;
445
+ colorsComponentsMenuWinterChild400: string;
446
+ colorsComponentsMenuWinterChild500: string;
447
+ colorsComponentsMenuWinterChild600: string;
448
+ colorsComponentsMenuWinterChildAlt500: string;
449
+ colorsComponentsMenuWinterChildAlt600: string;
450
+ colorsComponentsMenuYin100: string;
451
+ colorsComponentsMenuYin065: string;
452
+ colorsComponentsMenuYin090: string;
453
+ colorsComponentsMenuYang100: string;
454
+ colorsComponentsMenuYang080: string;
400
455
  colorsComponentsNavigation500: string;
401
456
  colorsComponentsNavigation600: string;
402
457
  colorsComponentsNavigation700: string;
@@ -415,6 +470,7 @@ declare function _default(palette: any): {
415
470
  colorsUtilityMajor500: string;
416
471
  colorsUtilityMajor800: string;
417
472
  colorsUtilityMajor025: string;
473
+ colorsUtilityMajor040: string;
418
474
  colorsUtilityMajor050: string;
419
475
  colorsUtilityMajor075: string;
420
476
  colorsUtilityMajorTransparent: string;
@@ -444,7 +500,9 @@ declare function _default(palette: any): {
444
500
  colorsActionMinor300: string;
445
501
  colorsActionMinor400: string;
446
502
  colorsActionMinor500: string;
503
+ colorsActionMinor550: string;
447
504
  colorsActionMinor600: string;
505
+ colorsActionMinor850: string;
448
506
  colorsActionMinor900: string;
449
507
  colorsActionMinor025: string;
450
508
  colorsActionMinor050: string;
@@ -542,6 +600,7 @@ declare function _default(palette: any): {
542
600
  fontSizes025: string;
543
601
  fontSizes050: string;
544
602
  boxShadow100: string;
603
+ boxShadow150: string;
545
604
  boxShadow200: string;
546
605
  boxShadow300: string;
547
606
  boxShadow400: string;
@@ -557,101 +616,111 @@ declare function _default(palette: any): {
557
616
  fontFamiliesAndroid: string;
558
617
  fontFamiliesOther: string;
559
618
  borderRadiusCircle: string;
560
- typographyAccordionTitleM: typeof tokens.typographyAccordionTitleM;
561
- typographyAccordionSubtitleM: typeof tokens.typographyAccordionSubtitleM;
562
- typographyAccordionParagraphM: typeof tokens.typographyAccordionParagraphM;
563
- typographyActionPopoverMenuItemM: typeof tokens.typographyActionPopoverMenuItemM;
564
- typographyAnchorNavLabelM: typeof tokens.typographyAnchorNavLabelM;
565
- typographyBadgeLabelM: typeof tokens.typographyBadgeLabelM;
566
- typographyButtonLabelS: typeof tokens.typographyButtonLabelS;
567
- typographyButtonLabelM: typeof tokens.typographyButtonLabelM;
568
- typographyButtonLabelL: typeof tokens.typographyButtonLabelL;
569
- typographyDialogTitleXs: typeof tokens.typographyDialogTitleXs;
570
- typographyDialogTitleS: typeof tokens.typographyDialogTitleS;
571
- typographyDialogTitleMs: typeof tokens.typographyDialogTitleMs;
572
- typographyDialogTitleM: typeof tokens.typographyDialogTitleM;
573
- typographyDialogTitleMl: typeof tokens.typographyDialogTitleMl;
574
- typographyDialogTitleL: typeof tokens.typographyDialogTitleL;
575
- typographyDialogTitleXl: typeof tokens.typographyDialogTitleXl;
576
- typographyDialogParagraphXs: typeof tokens.typographyDialogParagraphXs;
577
- typographyDialogParagraphS: typeof tokens.typographyDialogParagraphS;
578
- typographyFlashTextM: typeof tokens.typographyFlashTextM;
579
- typographyFlashTextL: typeof tokens.typographyFlashTextL;
580
- typographyFormFieldLabelXs: typeof tokens.typographyFormFieldLabelXs;
581
- typographyFormFieldLabelS: typeof tokens.typographyFormFieldLabelS;
582
- typographyFormFieldLabelM: typeof tokens.typographyFormFieldLabelM;
583
- typographyFormFieldLabelL: typeof tokens.typographyFormFieldLabelL;
584
- typographyFormFieldHintTextXs: typeof tokens.typographyFormFieldHintTextXs;
585
- typographyFormFieldHintTextS: typeof tokens.typographyFormFieldHintTextS;
586
- typographyFormFieldHintTextM: typeof tokens.typographyFormFieldHintTextM;
587
- typographyFormFieldHintTextL: typeof tokens.typographyFormFieldHintTextL;
588
- typographyFormFieldErrorMessageXs: typeof tokens.typographyFormFieldErrorMessageXs;
589
- typographyFormFieldErrorMessageS: typeof tokens.typographyFormFieldErrorMessageS;
590
- typographyFormFieldErrorMessageM: typeof tokens.typographyFormFieldErrorMessageM;
591
- typographyFormFieldErrorMessageL: typeof tokens.typographyFormFieldErrorMessageL;
592
- typographyFormFieldCautionMessageXs: typeof tokens.typographyFormFieldCautionMessageXs;
593
- typographyFormFieldCautionMessageS: typeof tokens.typographyFormFieldCautionMessageS;
594
- typographyFormFieldCautionMessageM: typeof tokens.typographyFormFieldCautionMessageM;
595
- typographyFormFieldCautionMessageL: typeof tokens.typographyFormFieldCautionMessageL;
596
- typographyFormFieldInputTextXs: typeof tokens.typographyFormFieldInputTextXs;
597
- typographyFormFieldInputTextS: typeof tokens.typographyFormFieldInputTextS;
598
- typographyFormFieldInputTextM: typeof tokens.typographyFormFieldInputTextM;
599
- typographyFormFieldInputTextL: typeof tokens.typographyFormFieldInputTextL;
600
- typographyFormFieldDropdownOptionsXs: typeof tokens.typographyFormFieldDropdownOptionsXs;
601
- typographyFormFieldDropdownOptionsS: typeof tokens.typographyFormFieldDropdownOptionsS;
602
- typographyFormFieldDropdownOptionsM: typeof tokens.typographyFormFieldDropdownOptionsM;
603
- typographyFormFieldDropdownOptionsL: typeof tokens.typographyFormFieldDropdownOptionsL;
604
- typographyFormFieldSecondLabelXs: typeof tokens.typographyFormFieldSecondLabelXs;
605
- typographyFormFieldSecondLabelS: typeof tokens.typographyFormFieldSecondLabelS;
606
- typographyFormFieldSecondLabelM: typeof tokens.typographyFormFieldSecondLabelM;
607
- typographyFormFieldSecondLabelL: typeof tokens.typographyFormFieldSecondLabelL;
608
- typographyFormFieldCharacterCountXs: typeof tokens.typographyFormFieldCharacterCountXs;
609
- typographyFormFieldCharacterCountS: typeof tokens.typographyFormFieldCharacterCountS;
610
- typographyFormFieldCharacterCountM: typeof tokens.typographyFormFieldCharacterCountM;
611
- typographyFormFieldCharacterCountL: typeof tokens.typographyFormFieldCharacterCountL;
612
- typographyLinkTextM: typeof tokens.typographyLinkTextM;
613
- typographyLinkTextL: typeof tokens.typographyLinkTextL;
614
- typographyMessageHeadingM: typeof tokens.typographyMessageHeadingM;
615
- typographyMessageHeadingL: typeof tokens.typographyMessageHeadingL;
616
- typographyMessageTextM: typeof tokens.typographyMessageTextM;
617
- typographyMessageTextL: typeof tokens.typographyMessageTextL;
618
- typographyPillLabelS: typeof tokens.typographyPillLabelS;
619
- typographyPillLabelM: typeof tokens.typographyPillLabelM;
620
- typographyPillLabelL: typeof tokens.typographyPillLabelL;
621
- typographyPillLabelXl: typeof tokens.typographyPillLabelXl;
622
- typographyProfileEmailXs: typeof tokens.typographyProfileEmailXs;
623
- typographyProfileEmailS: typeof tokens.typographyProfileEmailS;
624
- typographyProfileEmailM: typeof tokens.typographyProfileEmailM;
625
- typographyProfileEmailMl: typeof tokens.typographyProfileEmailMl;
626
- typographyProfileEmailL: typeof tokens.typographyProfileEmailL;
627
- typographyProfileEmailXl: typeof tokens.typographyProfileEmailXl;
628
- typographyProfileEmailXxl: typeof tokens.typographyProfileEmailXxl;
629
- typographyProfileInitialsXs: typeof tokens.typographyProfileInitialsXs;
630
- typographyProfileInitialsS: typeof tokens.typographyProfileInitialsS;
631
- typographyProfileInitialsM: typeof tokens.typographyProfileInitialsM;
632
- typographyProfileInitialsMl: typeof tokens.typographyProfileInitialsMl;
633
- typographyProfileInitialsL: typeof tokens.typographyProfileInitialsL;
634
- typographyProfileInitialsXl: typeof tokens.typographyProfileInitialsXl;
635
- typographyProfileInitialsXxl: typeof tokens.typographyProfileInitialsXxl;
636
- typographyProfileNameXs: typeof tokens.typographyProfileNameXs;
637
- typographyProfileNameS: typeof tokens.typographyProfileNameS;
638
- typographyProfileNameM: typeof tokens.typographyProfileNameM;
639
- typographyProfileNameMl: typeof tokens.typographyProfileNameMl;
640
- typographyProfileNameL: typeof tokens.typographyProfileNameL;
641
- typographyProfileNameXl: typeof tokens.typographyProfileNameXl;
642
- typographyProfileNameXxl: typeof tokens.typographyProfileNameXxl;
643
- typographyProgressTrackerValueLabelS: typeof tokens.typographyProgressTrackerValueLabelS;
644
- typographyProgressTrackerValueLabelM: typeof tokens.typographyProgressTrackerValueLabelM;
645
- typographyProgressTrackerValueLabelL: typeof tokens.typographyProgressTrackerValueLabelL;
646
- typographySwitchOptionLabelM: typeof tokens.typographySwitchOptionLabelM;
647
- typographySwitchOptionLabelL: typeof tokens.typographySwitchOptionLabelL;
648
- typographyTableHeaderTextM: typeof tokens.typographyTableHeaderTextM;
649
- typographyTableCellTextM: typeof tokens.typographyTableCellTextM;
650
- typographyTooltipTextM: typeof tokens.typographyTooltipTextM;
651
- typographyTooltipTextL: typeof tokens.typographyTooltipTextL;
619
+ typographyAccordionTitleM: string;
620
+ typographyAccordionSubtitleM: string;
621
+ typographyAccordionParagraphM: string;
622
+ typographyActionPopoverMenuItemM: string;
623
+ typographyAnchorNavLabelM: string;
624
+ typographyBadgeLabelM: string;
625
+ typographyButtonLabelS: string;
626
+ typographyButtonLabelM: string;
627
+ typographyButtonLabelL: string;
628
+ typographyDialogTitleXs: string;
629
+ typographyDialogTitleS: string;
630
+ typographyDialogTitleMs: string;
631
+ typographyDialogTitleM: string;
632
+ typographyDialogTitleMl: string;
633
+ typographyDialogTitleL: string;
634
+ typographyDialogTitleXl: string;
635
+ typographyDialogParagraphXs: string;
636
+ typographyDialogParagraphS: string;
637
+ typographyDrawerTitleM: string;
638
+ typographyFlashTextM: string;
639
+ typographyFlashTextL: string;
640
+ typographyFormFieldLabelXs: string;
641
+ typographyFormFieldLabelS: string;
642
+ typographyFormFieldLabelM: string;
643
+ typographyFormFieldLabelL: string;
644
+ typographyFormFieldHintTextXs: string;
645
+ typographyFormFieldHintTextS: string;
646
+ typographyFormFieldHintTextM: string;
647
+ typographyFormFieldHintTextL: string;
648
+ typographyFormFieldErrorMessageXs: string;
649
+ typographyFormFieldErrorMessageS: string;
650
+ typographyFormFieldErrorMessageM: string;
651
+ typographyFormFieldErrorMessageL: string;
652
+ typographyFormFieldCautionMessageXs: string;
653
+ typographyFormFieldCautionMessageS: string;
654
+ typographyFormFieldCautionMessageM: string;
655
+ typographyFormFieldCautionMessageL: string;
656
+ typographyFormFieldInputTextXs: string;
657
+ typographyFormFieldInputTextS: string;
658
+ typographyFormFieldInputTextM: string;
659
+ typographyFormFieldInputTextL: string;
660
+ typographyFormFieldDropdownOptionsXs: string;
661
+ typographyFormFieldDropdownOptionsS: string;
662
+ typographyFormFieldDropdownOptionsM: string;
663
+ typographyFormFieldDropdownOptionsL: string;
664
+ typographyFormFieldSecondLabelXs: string;
665
+ typographyFormFieldSecondLabelS: string;
666
+ typographyFormFieldSecondLabelM: string;
667
+ typographyFormFieldSecondLabelL: string;
668
+ typographyFormFieldCharacterCountXs: string;
669
+ typographyFormFieldCharacterCountS: string;
670
+ typographyFormFieldCharacterCountM: string;
671
+ typographyFormFieldCharacterCountL: string;
672
+ typographyLinkTextM: string;
673
+ typographyLinkTextL: string;
674
+ typographyMenuLabelM: string;
675
+ typographyMenuSegmentTitleM: string;
676
+ typographyMessageHeadingM: string;
677
+ typographyMessageHeadingL: string;
678
+ typographyMessageTextM: string;
679
+ typographyMessageTextL: string;
680
+ typographyPillLabelS: string;
681
+ typographyPillLabelM: string;
682
+ typographyPillLabelL: string;
683
+ typographyPillLabelXl: string;
684
+ typographyProfileEmailXs: string;
685
+ typographyProfileEmailS: string;
686
+ typographyProfileEmailM: string;
687
+ typographyProfileEmailMl: string;
688
+ typographyProfileEmailL: string;
689
+ typographyProfileEmailXl: string;
690
+ typographyProfileEmailXxl: string;
691
+ typographyProfileInitialsXs: string;
692
+ typographyProfileInitialsS: string;
693
+ typographyProfileInitialsM: string;
694
+ typographyProfileInitialsMl: string;
695
+ typographyProfileInitialsL: string;
696
+ typographyProfileInitialsXl: string;
697
+ typographyProfileInitialsXxl: string;
698
+ typographyProfileNameXs: string;
699
+ typographyProfileNameS: string;
700
+ typographyProfileNameM: string;
701
+ typographyProfileNameMl: string;
702
+ typographyProfileNameL: string;
703
+ typographyProfileNameXl: string;
704
+ typographyProfileNameXxl: string;
705
+ typographyProgressTrackerValueLabelS: string;
706
+ typographyProgressTrackerValueLabelM: string;
707
+ typographyProgressTrackerValueLabelL: string;
708
+ typographySearchLabelM: string;
709
+ typographySidebarTitleS: string;
710
+ typographySidebarTitleM: string;
711
+ typographySidebarTitleL: string;
712
+ typographyStepFlowCompleteLabelM: string;
713
+ typographyStepFlowCurrentLabelM: string;
714
+ typographyStepFlowIncompleteLabelM: string;
715
+ typographySwitchOptionLabelM: string;
716
+ typographySwitchOptionLabelL: string;
717
+ typographyTableHeaderTextM: string;
718
+ typographyTableCellTextM: string;
719
+ typographyTooltipTextM: string;
720
+ typographyTooltipTextL: string;
652
721
  opacity300: string;
653
722
  opacity600: string;
723
+ opacity800: string;
654
724
  };
655
725
  };
656
726
  export default _default;
657
- import tokens from "@sage/design-tokens/js/base/common";
@@ -17,6 +17,7 @@ declare function _default(palette: any): {
17
17
  colorsActionMajor500: any;
18
18
  colorsActionMajor600: any;
19
19
  colorsActionMajor150: any;
20
+ colorsBaseTheme: any;
20
21
  };
21
22
  };
22
23
  export default _default;
@@ -26,7 +26,8 @@ var _default = palette => {
26
26
  return {
27
27
  colorsActionMajor500: this.colors.primary,
28
28
  colorsActionMajor600: this.colors.secondary,
29
- colorsActionMajor150: this.colors.loadingBarBackground
29
+ colorsActionMajor150: this.colors.loadingBarBackground,
30
+ colorsBaseTheme: this.colors.primary
30
31
  };
31
32
  }
32
33