carbon-react 104.38.1 → 104.40.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/esm/__internal__/sticky-footer/sticky-footer.style.js +1 -1
- package/esm/components/carousel/slide/slide.style.js +1 -1
- package/esm/components/draggable/draggable-item.style.js +1 -3
- package/esm/components/grid/grid-item/grid-item.style.d.ts +1 -0
- package/esm/components/grid/grid-item/grid-item.style.js +48 -16
- package/esm/components/popover-container/popover-container.style.d.ts +0 -1
- package/esm/components/popover-container/popover-container.style.js +5 -29
- package/esm/components/select/select-list/select-list.style.js +1 -1
- package/esm/style/themes/base/base-theme.config.d.ts +4 -10
- package/esm/style/themes/sage/index.d.ts +4 -10
- package/lib/__internal__/sticky-footer/sticky-footer.style.js +1 -1
- package/lib/components/carousel/slide/slide.style.js +1 -1
- package/lib/components/draggable/draggable-item.style.js +1 -3
- package/lib/components/grid/grid-item/grid-item.style.d.ts +1 -0
- package/lib/components/grid/grid-item/grid-item.style.js +49 -16
- package/lib/components/popover-container/popover-container.style.d.ts +0 -1
- package/lib/components/popover-container/popover-container.style.js +5 -30
- package/lib/components/select/select-list/select-list.style.js +1 -1
- package/lib/style/themes/base/base-theme.config.d.ts +4 -10
- package/lib/style/themes/sage/index.d.ts +4 -10
- package/package.json +2 -2
|
@@ -14,7 +14,7 @@ const StyledStickyFooter = styled.div`
|
|
|
14
14
|
position: sticky;
|
|
15
15
|
bottom: 0;
|
|
16
16
|
left: 0;
|
|
17
|
-
background-color: var(--
|
|
17
|
+
background-color: var(--colorsActionMinorYang100);
|
|
18
18
|
box-shadow: var(--boxShadow150);
|
|
19
19
|
z-index: 1000;
|
|
20
20
|
`}
|
|
@@ -16,7 +16,7 @@ const SlideStyle = styled.div`
|
|
|
16
16
|
opacity: 0.3;
|
|
17
17
|
margin: 30px 0;
|
|
18
18
|
box-shadow: var(--boxShadow200);
|
|
19
|
-
background-color: var(--
|
|
19
|
+
background-color: var(--colorsUtilityYang100);
|
|
20
20
|
|
|
21
21
|
${id === selectedIndex && css`
|
|
22
22
|
transform: scale(1);
|
|
@@ -8,9 +8,7 @@ const StyledDraggableContainer = styled.div`
|
|
|
8
8
|
const StyledDraggableItem = styled.div`
|
|
9
9
|
display: flex;
|
|
10
10
|
align-items: center;
|
|
11
|
-
border-bottom: 1px solid
|
|
12
|
-
theme
|
|
13
|
-
}) => theme.draggableItem.border};
|
|
11
|
+
border-bottom: 1px solid var(--colorsUtilityMajor050);
|
|
14
12
|
${padding}
|
|
15
13
|
cursor: move;
|
|
16
14
|
|
|
@@ -3,10 +3,9 @@ import { grid, flexbox } from "styled-system";
|
|
|
3
3
|
import styledSystemPropTypes from "@styled-system/prop-types";
|
|
4
4
|
import { padding } from "@styled-system/space";
|
|
5
5
|
import PropTypes from "prop-types";
|
|
6
|
-
import { baseTheme } from "../../../style/themes";
|
|
7
6
|
import { filterStyledSystemPaddingProps } from "../../../style/utils";
|
|
8
7
|
|
|
9
|
-
function responsiveGridItem(responsiveSettings
|
|
8
|
+
function responsiveGridItem(responsiveSettings) {
|
|
10
9
|
return responsiveSettings.map(setting => {
|
|
11
10
|
const {
|
|
12
11
|
alignSelf,
|
|
@@ -26,24 +25,59 @@ function responsiveGridItem(responsiveSettings, theme) {
|
|
|
26
25
|
justify-self: ${justifySelf || "stretch"};
|
|
27
26
|
grid-column: ${gridColumn};
|
|
28
27
|
grid-row: ${gridRow};
|
|
29
|
-
padding: ${getSpacing(p
|
|
30
|
-
padding-left: ${getSpacing(pl
|
|
31
|
-
padding-right: ${getSpacing(pr
|
|
32
|
-
padding-top: ${getSpacing(pt
|
|
33
|
-
padding-bottom: ${getSpacing(pb
|
|
28
|
+
padding: ${getSpacing(p)};
|
|
29
|
+
padding-left: ${getSpacing(pl)};
|
|
30
|
+
padding-right: ${getSpacing(pr)};
|
|
31
|
+
padding-top: ${getSpacing(pt)};
|
|
32
|
+
padding-bottom: ${getSpacing(pb)};
|
|
34
33
|
}
|
|
35
34
|
`;
|
|
36
35
|
});
|
|
37
36
|
}
|
|
38
37
|
|
|
39
|
-
function getSpacing(prop
|
|
40
|
-
if (
|
|
41
|
-
|
|
38
|
+
export function getSpacing(prop) {
|
|
39
|
+
if (typeof prop === "number") {
|
|
40
|
+
switch (prop) {
|
|
41
|
+
case 0:
|
|
42
|
+
return "var(--spacing000)";
|
|
43
|
+
|
|
44
|
+
case 1:
|
|
45
|
+
return "var(--spacing100)";
|
|
46
|
+
|
|
47
|
+
case 2:
|
|
48
|
+
return "var(--spacing200)";
|
|
49
|
+
|
|
50
|
+
case 3:
|
|
51
|
+
return "var(--spacing300)";
|
|
52
|
+
|
|
53
|
+
case 4:
|
|
54
|
+
return "var(--spacing400)";
|
|
55
|
+
|
|
56
|
+
case 5:
|
|
57
|
+
return "var(--spacing500)";
|
|
58
|
+
|
|
59
|
+
case 6:
|
|
60
|
+
return "var(--spacing600)";
|
|
61
|
+
|
|
62
|
+
case 7:
|
|
63
|
+
return "var(--spacing700)";
|
|
64
|
+
|
|
65
|
+
case 8:
|
|
66
|
+
return "var(--spacing800)";
|
|
67
|
+
|
|
68
|
+
case 9:
|
|
69
|
+
return "var(--spacing900)";
|
|
70
|
+
|
|
71
|
+
case 10:
|
|
72
|
+
return "var(--spacing1000)";
|
|
73
|
+
|
|
74
|
+
default:
|
|
75
|
+
return "var(--spacing100)";
|
|
76
|
+
}
|
|
42
77
|
}
|
|
43
78
|
|
|
44
79
|
return prop;
|
|
45
80
|
}
|
|
46
|
-
|
|
47
81
|
const paddingPropTypes = filterStyledSystemPaddingProps(styledSystemPropTypes.space);
|
|
48
82
|
const GridItemStyle = styled.div`
|
|
49
83
|
margin: 0;
|
|
@@ -70,10 +104,9 @@ const GridItemStyle = styled.div`
|
|
|
70
104
|
gridColumn
|
|
71
105
|
})}
|
|
72
106
|
${({
|
|
73
|
-
responsiveSettings
|
|
74
|
-
theme
|
|
107
|
+
responsiveSettings
|
|
75
108
|
}) => responsiveSettings && css`
|
|
76
|
-
${responsiveGridItem(responsiveSettings
|
|
109
|
+
${responsiveGridItem(responsiveSettings)};
|
|
77
110
|
`}
|
|
78
111
|
`;
|
|
79
112
|
GridItemStyle.propTypes = {
|
|
@@ -93,7 +126,6 @@ GridItemStyle.propTypes = {
|
|
|
93
126
|
};
|
|
94
127
|
GridItemStyle.defaultProps = {
|
|
95
128
|
gridColumn: "1 / 13",
|
|
96
|
-
gridRow: "auto"
|
|
97
|
-
theme: baseTheme
|
|
129
|
+
gridRow: "auto"
|
|
98
130
|
};
|
|
99
131
|
export default GridItemStyle;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export const PopoverContainerWrapperStyle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
-
export const PopoverContainerIcon: import("styled-components").StyledComponent<typeof IconButton, any, {}, never>;
|
|
3
2
|
export const PopoverContainerHeaderStyle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
3
|
export const PopoverContainerContentStyle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
4
|
export const PopoverContainerCloseIcon: import("styled-components").StyledComponent<typeof IconButton, any, {}, never>;
|
|
@@ -7,13 +7,6 @@ const PopoverContainerWrapperStyle = styled.div`
|
|
|
7
7
|
position: relative;
|
|
8
8
|
display: inline-block;
|
|
9
9
|
`;
|
|
10
|
-
const PopoverContainerIcon = styled(IconButton)`
|
|
11
|
-
${StyledIcon} {
|
|
12
|
-
color: ${({
|
|
13
|
-
theme
|
|
14
|
-
}) => theme.popoverContainer.iconColor};
|
|
15
|
-
}
|
|
16
|
-
`;
|
|
17
10
|
const PopoverContainerHeaderStyle = styled.div`
|
|
18
11
|
display: flex;
|
|
19
12
|
justify-content: space-between;
|
|
@@ -23,12 +16,8 @@ const PopoverContainerHeaderStyle = styled.div`
|
|
|
23
16
|
const PopoverContainerContentStyle = styled.div`
|
|
24
17
|
${padding}
|
|
25
18
|
|
|
26
|
-
background:
|
|
27
|
-
|
|
28
|
-
}) => theme.colors.white};
|
|
29
|
-
box-shadow: ${({
|
|
30
|
-
theme
|
|
31
|
-
}) => theme.shadows.depth1};
|
|
19
|
+
background: var(--colorsUtilityYang100);
|
|
20
|
+
box-shadow: var(--boxShadow100);
|
|
32
21
|
min-width: 300px;
|
|
33
22
|
position: absolute;
|
|
34
23
|
z-index: ${({
|
|
@@ -74,9 +63,7 @@ const PopoverContainerContentStyle = styled.div`
|
|
|
74
63
|
`;
|
|
75
64
|
const PopoverContainerOpenIcon = styled(IconButton)`
|
|
76
65
|
${StyledIcon} {
|
|
77
|
-
color:
|
|
78
|
-
theme
|
|
79
|
-
}) => theme.popoverContainer.iconColor};
|
|
66
|
+
color: var(--colorsActionMinor500);
|
|
80
67
|
}
|
|
81
68
|
`;
|
|
82
69
|
const PopoverContainerCloseIcon = styled(IconButton)`
|
|
@@ -85,9 +72,7 @@ const PopoverContainerCloseIcon = styled(IconButton)`
|
|
|
85
72
|
right: 24px;
|
|
86
73
|
|
|
87
74
|
${StyledIcon} {
|
|
88
|
-
color:
|
|
89
|
-
theme
|
|
90
|
-
}) => theme.popoverContainer.iconColor};
|
|
75
|
+
color: var(--colorsActionMinor500);
|
|
91
76
|
}
|
|
92
77
|
`;
|
|
93
78
|
const PopoverContainerTitleStyle = styled.div`
|
|
@@ -97,13 +82,4 @@ const PopoverContainerTitleStyle = styled.div`
|
|
|
97
82
|
PopoverContainerContentStyle.defaultProps = {
|
|
98
83
|
theme: baseTheme
|
|
99
84
|
};
|
|
100
|
-
|
|
101
|
-
theme: baseTheme
|
|
102
|
-
};
|
|
103
|
-
PopoverContainerCloseIcon.defaultProps = {
|
|
104
|
-
theme: baseTheme
|
|
105
|
-
};
|
|
106
|
-
PopoverContainerOpenIcon.defaultProps = {
|
|
107
|
-
theme: baseTheme
|
|
108
|
-
};
|
|
109
|
-
export { PopoverContainerWrapperStyle, PopoverContainerIcon, PopoverContainerHeaderStyle, PopoverContainerContentStyle, PopoverContainerCloseIcon, PopoverContainerTitleStyle, PopoverContainerOpenIcon };
|
|
85
|
+
export { PopoverContainerWrapperStyle, PopoverContainerHeaderStyle, PopoverContainerContentStyle, PopoverContainerCloseIcon, PopoverContainerTitleStyle, PopoverContainerOpenIcon };
|
|
@@ -433,16 +433,6 @@ declare function _default(palette: any): {
|
|
|
433
433
|
colorsComponentsMenuYin090: string;
|
|
434
434
|
colorsComponentsMenuYang100: string;
|
|
435
435
|
colorsComponentsMenuYang080: string;
|
|
436
|
-
colorsComponentsNavigation500: string;
|
|
437
|
-
colorsComponentsNavigation600: string;
|
|
438
|
-
colorsComponentsNavigation700: string;
|
|
439
|
-
colorsComponentsNavigationTransparent: string;
|
|
440
|
-
colorsComponentsNavigationYin100: string;
|
|
441
|
-
colorsComponentsNavigationYin030: string;
|
|
442
|
-
colorsComponentsNavigationYin055: string;
|
|
443
|
-
colorsComponentsNavigationYin065: string;
|
|
444
|
-
colorsComponentsNavigationYin090: string;
|
|
445
|
-
colorsComponentsNavigationYang100: string;
|
|
446
436
|
colorsUtilityMajor100: string;
|
|
447
437
|
colorsUtilityMajor150: string;
|
|
448
438
|
colorsUtilityMajor200: string;
|
|
@@ -566,6 +556,7 @@ declare function _default(palette: any): {
|
|
|
566
556
|
sizing075: string;
|
|
567
557
|
sizingLogowidth: string;
|
|
568
558
|
sizing010: string;
|
|
559
|
+
spacing1000: string;
|
|
569
560
|
borderWidth100: string;
|
|
570
561
|
borderWidth200: string;
|
|
571
562
|
borderWidth300: string;
|
|
@@ -610,6 +601,9 @@ declare function _default(palette: any): {
|
|
|
610
601
|
typographyButtonLabelS: string;
|
|
611
602
|
typographyButtonLabelM: string;
|
|
612
603
|
typographyButtonLabelL: string;
|
|
604
|
+
typographyCardSelectTitleM: string;
|
|
605
|
+
typographyCardSelectSubtitleM: string;
|
|
606
|
+
typographyCardSelectParagraphM: string;
|
|
613
607
|
typographyDatePickerCalendarDateM: string;
|
|
614
608
|
typographyDatePickerCalendarDayM: string;
|
|
615
609
|
typographyDatePickerCalendarMonthM: string;
|
|
@@ -70,16 +70,6 @@ declare var _default: {
|
|
|
70
70
|
colorsComponentsMenuYin090: string;
|
|
71
71
|
colorsComponentsMenuYang100: string;
|
|
72
72
|
colorsComponentsMenuYang080: string;
|
|
73
|
-
colorsComponentsNavigation500: string;
|
|
74
|
-
colorsComponentsNavigation600: string;
|
|
75
|
-
colorsComponentsNavigation700: string;
|
|
76
|
-
colorsComponentsNavigationTransparent: string;
|
|
77
|
-
colorsComponentsNavigationYin100: string;
|
|
78
|
-
colorsComponentsNavigationYin030: string;
|
|
79
|
-
colorsComponentsNavigationYin055: string;
|
|
80
|
-
colorsComponentsNavigationYin065: string;
|
|
81
|
-
colorsComponentsNavigationYin090: string;
|
|
82
|
-
colorsComponentsNavigationYang100: string;
|
|
83
73
|
colorsUtilityMajor100: string;
|
|
84
74
|
colorsUtilityMajor150: string;
|
|
85
75
|
colorsUtilityMajor200: string;
|
|
@@ -224,6 +214,7 @@ declare var _default: {
|
|
|
224
214
|
spacing700: string;
|
|
225
215
|
spacing800: string;
|
|
226
216
|
spacing900: string;
|
|
217
|
+
spacing1000: string;
|
|
227
218
|
spacing000: string;
|
|
228
219
|
spacing025: string;
|
|
229
220
|
spacing050: string;
|
|
@@ -273,6 +264,9 @@ declare var _default: {
|
|
|
273
264
|
typographyButtonLabelS: string;
|
|
274
265
|
typographyButtonLabelM: string;
|
|
275
266
|
typographyButtonLabelL: string;
|
|
267
|
+
typographyCardSelectTitleM: string;
|
|
268
|
+
typographyCardSelectSubtitleM: string;
|
|
269
|
+
typographyCardSelectParagraphM: string;
|
|
276
270
|
typographyDatePickerCalendarDateM: string;
|
|
277
271
|
typographyDatePickerCalendarDayM: string;
|
|
278
272
|
typographyDatePickerCalendarMonthM: string;
|
|
@@ -26,7 +26,7 @@ const StyledStickyFooter = _styledComponents.default.div`
|
|
|
26
26
|
position: sticky;
|
|
27
27
|
bottom: 0;
|
|
28
28
|
left: 0;
|
|
29
|
-
background-color: var(--
|
|
29
|
+
background-color: var(--colorsActionMinorYang100);
|
|
30
30
|
box-shadow: var(--boxShadow150);
|
|
31
31
|
z-index: 1000;
|
|
32
32
|
`}
|
|
@@ -28,7 +28,7 @@ const SlideStyle = _styledComponents.default.div`
|
|
|
28
28
|
opacity: 0.3;
|
|
29
29
|
margin: 30px 0;
|
|
30
30
|
box-shadow: var(--boxShadow200);
|
|
31
|
-
background-color: var(--
|
|
31
|
+
background-color: var(--colorsUtilityYang100);
|
|
32
32
|
|
|
33
33
|
${id === selectedIndex && (0, _styledComponents.css)`
|
|
34
34
|
transform: scale(1);
|
|
@@ -22,9 +22,7 @@ exports.StyledDraggableContainer = StyledDraggableContainer;
|
|
|
22
22
|
const StyledDraggableItem = _styledComponents.default.div`
|
|
23
23
|
display: flex;
|
|
24
24
|
align-items: center;
|
|
25
|
-
border-bottom: 1px solid
|
|
26
|
-
theme
|
|
27
|
-
}) => theme.draggableItem.border};
|
|
25
|
+
border-bottom: 1px solid var(--colorsUtilityMajor050);
|
|
28
26
|
${_styledSystem.padding}
|
|
29
27
|
cursor: move;
|
|
30
28
|
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
exports.getSpacing = getSpacing;
|
|
6
7
|
exports.default = void 0;
|
|
7
8
|
|
|
8
9
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
@@ -15,8 +16,6 @@ var _space = require("@styled-system/space");
|
|
|
15
16
|
|
|
16
17
|
var _propTypes2 = _interopRequireDefault(require("prop-types"));
|
|
17
18
|
|
|
18
|
-
var _themes = require("../../../style/themes");
|
|
19
|
-
|
|
20
19
|
var _utils = require("../../../style/utils");
|
|
21
20
|
|
|
22
21
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -25,7 +24,7 @@ function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return
|
|
|
25
24
|
|
|
26
25
|
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; }
|
|
27
26
|
|
|
28
|
-
function responsiveGridItem(responsiveSettings
|
|
27
|
+
function responsiveGridItem(responsiveSettings) {
|
|
29
28
|
return responsiveSettings.map(setting => {
|
|
30
29
|
const {
|
|
31
30
|
alignSelf,
|
|
@@ -45,19 +44,55 @@ function responsiveGridItem(responsiveSettings, theme) {
|
|
|
45
44
|
justify-self: ${justifySelf || "stretch"};
|
|
46
45
|
grid-column: ${gridColumn};
|
|
47
46
|
grid-row: ${gridRow};
|
|
48
|
-
padding: ${getSpacing(p
|
|
49
|
-
padding-left: ${getSpacing(pl
|
|
50
|
-
padding-right: ${getSpacing(pr
|
|
51
|
-
padding-top: ${getSpacing(pt
|
|
52
|
-
padding-bottom: ${getSpacing(pb
|
|
47
|
+
padding: ${getSpacing(p)};
|
|
48
|
+
padding-left: ${getSpacing(pl)};
|
|
49
|
+
padding-right: ${getSpacing(pr)};
|
|
50
|
+
padding-top: ${getSpacing(pt)};
|
|
51
|
+
padding-bottom: ${getSpacing(pb)};
|
|
53
52
|
}
|
|
54
53
|
`;
|
|
55
54
|
});
|
|
56
55
|
}
|
|
57
56
|
|
|
58
|
-
function getSpacing(prop
|
|
59
|
-
if (
|
|
60
|
-
|
|
57
|
+
function getSpacing(prop) {
|
|
58
|
+
if (typeof prop === "number") {
|
|
59
|
+
switch (prop) {
|
|
60
|
+
case 0:
|
|
61
|
+
return "var(--spacing000)";
|
|
62
|
+
|
|
63
|
+
case 1:
|
|
64
|
+
return "var(--spacing100)";
|
|
65
|
+
|
|
66
|
+
case 2:
|
|
67
|
+
return "var(--spacing200)";
|
|
68
|
+
|
|
69
|
+
case 3:
|
|
70
|
+
return "var(--spacing300)";
|
|
71
|
+
|
|
72
|
+
case 4:
|
|
73
|
+
return "var(--spacing400)";
|
|
74
|
+
|
|
75
|
+
case 5:
|
|
76
|
+
return "var(--spacing500)";
|
|
77
|
+
|
|
78
|
+
case 6:
|
|
79
|
+
return "var(--spacing600)";
|
|
80
|
+
|
|
81
|
+
case 7:
|
|
82
|
+
return "var(--spacing700)";
|
|
83
|
+
|
|
84
|
+
case 8:
|
|
85
|
+
return "var(--spacing800)";
|
|
86
|
+
|
|
87
|
+
case 9:
|
|
88
|
+
return "var(--spacing900)";
|
|
89
|
+
|
|
90
|
+
case 10:
|
|
91
|
+
return "var(--spacing1000)";
|
|
92
|
+
|
|
93
|
+
default:
|
|
94
|
+
return "var(--spacing100)";
|
|
95
|
+
}
|
|
61
96
|
}
|
|
62
97
|
|
|
63
98
|
return prop;
|
|
@@ -89,10 +124,9 @@ const GridItemStyle = _styledComponents.default.div`
|
|
|
89
124
|
gridColumn
|
|
90
125
|
})}
|
|
91
126
|
${({
|
|
92
|
-
responsiveSettings
|
|
93
|
-
theme
|
|
127
|
+
responsiveSettings
|
|
94
128
|
}) => responsiveSettings && (0, _styledComponents.css)`
|
|
95
|
-
${responsiveGridItem(responsiveSettings
|
|
129
|
+
${responsiveGridItem(responsiveSettings)};
|
|
96
130
|
`}
|
|
97
131
|
`;
|
|
98
132
|
GridItemStyle.propTypes = {
|
|
@@ -112,8 +146,7 @@ GridItemStyle.propTypes = {
|
|
|
112
146
|
};
|
|
113
147
|
GridItemStyle.defaultProps = {
|
|
114
148
|
gridColumn: "1 / 13",
|
|
115
|
-
gridRow: "auto"
|
|
116
|
-
theme: _themes.baseTheme
|
|
149
|
+
gridRow: "auto"
|
|
117
150
|
};
|
|
118
151
|
var _default = GridItemStyle;
|
|
119
152
|
exports.default = _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export const PopoverContainerWrapperStyle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
-
export const PopoverContainerIcon: import("styled-components").StyledComponent<typeof IconButton, any, {}, never>;
|
|
3
2
|
export const PopoverContainerHeaderStyle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
3
|
export const PopoverContainerContentStyle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
4
|
export const PopoverContainerCloseIcon: import("styled-components").StyledComponent<typeof IconButton, any, {}, never>;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.PopoverContainerOpenIcon = exports.PopoverContainerTitleStyle = exports.PopoverContainerCloseIcon = exports.PopoverContainerContentStyle = exports.PopoverContainerHeaderStyle = exports.
|
|
6
|
+
exports.PopoverContainerOpenIcon = exports.PopoverContainerTitleStyle = exports.PopoverContainerCloseIcon = exports.PopoverContainerContentStyle = exports.PopoverContainerHeaderStyle = exports.PopoverContainerWrapperStyle = void 0;
|
|
7
7
|
|
|
8
8
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
9
9
|
|
|
@@ -22,14 +22,6 @@ const PopoverContainerWrapperStyle = _styledComponents.default.div`
|
|
|
22
22
|
display: inline-block;
|
|
23
23
|
`;
|
|
24
24
|
exports.PopoverContainerWrapperStyle = PopoverContainerWrapperStyle;
|
|
25
|
-
const PopoverContainerIcon = (0, _styledComponents.default)(_iconButton.default)`
|
|
26
|
-
${_icon.default} {
|
|
27
|
-
color: ${({
|
|
28
|
-
theme
|
|
29
|
-
}) => theme.popoverContainer.iconColor};
|
|
30
|
-
}
|
|
31
|
-
`;
|
|
32
|
-
exports.PopoverContainerIcon = PopoverContainerIcon;
|
|
33
25
|
const PopoverContainerHeaderStyle = _styledComponents.default.div`
|
|
34
26
|
display: flex;
|
|
35
27
|
justify-content: space-between;
|
|
@@ -40,12 +32,8 @@ exports.PopoverContainerHeaderStyle = PopoverContainerHeaderStyle;
|
|
|
40
32
|
const PopoverContainerContentStyle = _styledComponents.default.div`
|
|
41
33
|
${_styledSystem.padding}
|
|
42
34
|
|
|
43
|
-
background:
|
|
44
|
-
|
|
45
|
-
}) => theme.colors.white};
|
|
46
|
-
box-shadow: ${({
|
|
47
|
-
theme
|
|
48
|
-
}) => theme.shadows.depth1};
|
|
35
|
+
background: var(--colorsUtilityYang100);
|
|
36
|
+
box-shadow: var(--boxShadow100);
|
|
49
37
|
min-width: 300px;
|
|
50
38
|
position: absolute;
|
|
51
39
|
z-index: ${({
|
|
@@ -92,9 +80,7 @@ const PopoverContainerContentStyle = _styledComponents.default.div`
|
|
|
92
80
|
exports.PopoverContainerContentStyle = PopoverContainerContentStyle;
|
|
93
81
|
const PopoverContainerOpenIcon = (0, _styledComponents.default)(_iconButton.default)`
|
|
94
82
|
${_icon.default} {
|
|
95
|
-
color:
|
|
96
|
-
theme
|
|
97
|
-
}) => theme.popoverContainer.iconColor};
|
|
83
|
+
color: var(--colorsActionMinor500);
|
|
98
84
|
}
|
|
99
85
|
`;
|
|
100
86
|
exports.PopoverContainerOpenIcon = PopoverContainerOpenIcon;
|
|
@@ -104,9 +90,7 @@ const PopoverContainerCloseIcon = (0, _styledComponents.default)(_iconButton.def
|
|
|
104
90
|
right: 24px;
|
|
105
91
|
|
|
106
92
|
${_icon.default} {
|
|
107
|
-
color:
|
|
108
|
-
theme
|
|
109
|
-
}) => theme.popoverContainer.iconColor};
|
|
93
|
+
color: var(--colorsActionMinor500);
|
|
110
94
|
}
|
|
111
95
|
`;
|
|
112
96
|
exports.PopoverContainerCloseIcon = PopoverContainerCloseIcon;
|
|
@@ -117,13 +101,4 @@ const PopoverContainerTitleStyle = _styledComponents.default.div`
|
|
|
117
101
|
exports.PopoverContainerTitleStyle = PopoverContainerTitleStyle;
|
|
118
102
|
PopoverContainerContentStyle.defaultProps = {
|
|
119
103
|
theme: _themes.baseTheme
|
|
120
|
-
};
|
|
121
|
-
PopoverContainerIcon.defaultProps = {
|
|
122
|
-
theme: _themes.baseTheme
|
|
123
|
-
};
|
|
124
|
-
PopoverContainerCloseIcon.defaultProps = {
|
|
125
|
-
theme: _themes.baseTheme
|
|
126
|
-
};
|
|
127
|
-
PopoverContainerOpenIcon.defaultProps = {
|
|
128
|
-
theme: _themes.baseTheme
|
|
129
104
|
};
|
|
@@ -109,7 +109,7 @@ const StyledSelectListTableHeader = _styledComponents.default.thead`
|
|
|
109
109
|
bottom: -8px;
|
|
110
110
|
left: 0px;
|
|
111
111
|
background-image: linear-gradient(
|
|
112
|
-
var(--
|
|
112
|
+
var(--colorsUtilityMajor800),
|
|
113
113
|
var(--colorsUtilityYang100)
|
|
114
114
|
);
|
|
115
115
|
opacity: 0.03;
|
|
@@ -433,16 +433,6 @@ declare function _default(palette: any): {
|
|
|
433
433
|
colorsComponentsMenuYin090: string;
|
|
434
434
|
colorsComponentsMenuYang100: string;
|
|
435
435
|
colorsComponentsMenuYang080: string;
|
|
436
|
-
colorsComponentsNavigation500: string;
|
|
437
|
-
colorsComponentsNavigation600: string;
|
|
438
|
-
colorsComponentsNavigation700: string;
|
|
439
|
-
colorsComponentsNavigationTransparent: string;
|
|
440
|
-
colorsComponentsNavigationYin100: string;
|
|
441
|
-
colorsComponentsNavigationYin030: string;
|
|
442
|
-
colorsComponentsNavigationYin055: string;
|
|
443
|
-
colorsComponentsNavigationYin065: string;
|
|
444
|
-
colorsComponentsNavigationYin090: string;
|
|
445
|
-
colorsComponentsNavigationYang100: string;
|
|
446
436
|
colorsUtilityMajor100: string;
|
|
447
437
|
colorsUtilityMajor150: string;
|
|
448
438
|
colorsUtilityMajor200: string;
|
|
@@ -566,6 +556,7 @@ declare function _default(palette: any): {
|
|
|
566
556
|
sizing075: string;
|
|
567
557
|
sizingLogowidth: string;
|
|
568
558
|
sizing010: string;
|
|
559
|
+
spacing1000: string;
|
|
569
560
|
borderWidth100: string;
|
|
570
561
|
borderWidth200: string;
|
|
571
562
|
borderWidth300: string;
|
|
@@ -610,6 +601,9 @@ declare function _default(palette: any): {
|
|
|
610
601
|
typographyButtonLabelS: string;
|
|
611
602
|
typographyButtonLabelM: string;
|
|
612
603
|
typographyButtonLabelL: string;
|
|
604
|
+
typographyCardSelectTitleM: string;
|
|
605
|
+
typographyCardSelectSubtitleM: string;
|
|
606
|
+
typographyCardSelectParagraphM: string;
|
|
613
607
|
typographyDatePickerCalendarDateM: string;
|
|
614
608
|
typographyDatePickerCalendarDayM: string;
|
|
615
609
|
typographyDatePickerCalendarMonthM: string;
|
|
@@ -70,16 +70,6 @@ declare var _default: {
|
|
|
70
70
|
colorsComponentsMenuYin090: string;
|
|
71
71
|
colorsComponentsMenuYang100: string;
|
|
72
72
|
colorsComponentsMenuYang080: string;
|
|
73
|
-
colorsComponentsNavigation500: string;
|
|
74
|
-
colorsComponentsNavigation600: string;
|
|
75
|
-
colorsComponentsNavigation700: string;
|
|
76
|
-
colorsComponentsNavigationTransparent: string;
|
|
77
|
-
colorsComponentsNavigationYin100: string;
|
|
78
|
-
colorsComponentsNavigationYin030: string;
|
|
79
|
-
colorsComponentsNavigationYin055: string;
|
|
80
|
-
colorsComponentsNavigationYin065: string;
|
|
81
|
-
colorsComponentsNavigationYin090: string;
|
|
82
|
-
colorsComponentsNavigationYang100: string;
|
|
83
73
|
colorsUtilityMajor100: string;
|
|
84
74
|
colorsUtilityMajor150: string;
|
|
85
75
|
colorsUtilityMajor200: string;
|
|
@@ -224,6 +214,7 @@ declare var _default: {
|
|
|
224
214
|
spacing700: string;
|
|
225
215
|
spacing800: string;
|
|
226
216
|
spacing900: string;
|
|
217
|
+
spacing1000: string;
|
|
227
218
|
spacing000: string;
|
|
228
219
|
spacing025: string;
|
|
229
220
|
spacing050: string;
|
|
@@ -273,6 +264,9 @@ declare var _default: {
|
|
|
273
264
|
typographyButtonLabelS: string;
|
|
274
265
|
typographyButtonLabelM: string;
|
|
275
266
|
typographyButtonLabelL: string;
|
|
267
|
+
typographyCardSelectTitleM: string;
|
|
268
|
+
typographyCardSelectSubtitleM: string;
|
|
269
|
+
typographyCardSelectParagraphM: string;
|
|
276
270
|
typographyDatePickerCalendarDateM: string;
|
|
277
271
|
typographyDatePickerCalendarDayM: string;
|
|
278
272
|
typographyDatePickerCalendarMonthM: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "carbon-react",
|
|
3
|
-
"version": "104.
|
|
3
|
+
"version": "104.40.0",
|
|
4
4
|
"description": "A library of reusable React components for easily building user interfaces.",
|
|
5
5
|
"engineStrict": true,
|
|
6
6
|
"engines": {
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"dependencies": {
|
|
158
158
|
"@octokit/rest": "^18.12.0",
|
|
159
159
|
"@popperjs/core": "^2.9.0",
|
|
160
|
-
"@sage/design-tokens": "^1.
|
|
160
|
+
"@sage/design-tokens": "^1.93.0",
|
|
161
161
|
"@styled-system/prop-types": "^5.1.5",
|
|
162
162
|
"@tippyjs/react": "^4.2.5",
|
|
163
163
|
"@types/styled-system": "^5.1.11",
|