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.
- package/lib/__internal__/popover/popover.component.js +2 -6
- package/lib/__internal__/tooltip-provider/index.d.ts +1 -0
- package/lib/__internal__/tooltip-provider/index.js +6 -3
- package/lib/components/accordion/accordion.style.js +20 -45
- package/lib/components/button/button.component.d.ts +21 -1
- package/lib/components/button/button.component.js +63 -52
- package/lib/components/icon/icon.component.js +4 -2
- package/lib/components/icon-button/icon-button.component.js +11 -19
- package/lib/components/portal/portal.js +3 -6
- package/lib/components/step-sequence/step-sequence-item/step-sequence-item.style.js +13 -23
- package/lib/components/tooltip/tooltip.component.js +7 -7
- package/lib/components/tooltip/tooltip.d.ts +1 -0
- package/lib/style/design-tokens/carbon-scoped-tokens-provider/carbon-scoped-tokens-provider.component.d.ts +7 -5
- package/lib/style/design-tokens/carbon-scoped-tokens-provider/carbon-scoped-tokens-provider.component.js +11 -36
- package/lib/style/themes/aegean/aegean-theme.config.d.ts +1 -0
- package/lib/style/themes/aegean/aegean-theme.config.js +2 -1
- package/lib/style/themes/base/base-theme.config.d.ts +162 -93
- package/lib/style/themes/mint/mint-theme.config.d.ts +1 -0
- package/lib/style/themes/mint/mint-theme.config.js +2 -1
- package/lib/style/themes/sage/index.d.ts +162 -93
- package/package.json +4 -3
|
@@ -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
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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 =
|
|
6
|
+
exports.default = void 0;
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
9
9
|
|
|
10
|
-
var
|
|
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
|
|
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;
|
|
@@ -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:
|
|
561
|
-
typographyAccordionSubtitleM:
|
|
562
|
-
typographyAccordionParagraphM:
|
|
563
|
-
typographyActionPopoverMenuItemM:
|
|
564
|
-
typographyAnchorNavLabelM:
|
|
565
|
-
typographyBadgeLabelM:
|
|
566
|
-
typographyButtonLabelS:
|
|
567
|
-
typographyButtonLabelM:
|
|
568
|
-
typographyButtonLabelL:
|
|
569
|
-
typographyDialogTitleXs:
|
|
570
|
-
typographyDialogTitleS:
|
|
571
|
-
typographyDialogTitleMs:
|
|
572
|
-
typographyDialogTitleM:
|
|
573
|
-
typographyDialogTitleMl:
|
|
574
|
-
typographyDialogTitleL:
|
|
575
|
-
typographyDialogTitleXl:
|
|
576
|
-
typographyDialogParagraphXs:
|
|
577
|
-
typographyDialogParagraphS:
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
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";
|
|
@@ -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
|
|