@scality/core-ui 0.141.0 → 0.143.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StyledTabs.d.ts","sourceRoot":"","sources":["../../../src/lib/components/tabsv2/StyledTabs.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,yGAGlB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;SAkDnB,CAAC;AACF,eAAO,MAAM,aAAa;;;
|
|
1
|
+
{"version":3,"file":"StyledTabs.d.ts","sourceRoot":"","sources":["../../../src/lib/components/tabsv2/StyledTabs.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,yGAGlB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;SAkDnB,CAAC;AACF,eAAO,MAAM,aAAa;;;SA4BzB,CAAC;AACF,eAAO,MAAM,UAAU;;;SAYtB,CAAC;AACF,eAAO,MAAM,mBAAmB,yGAE/B,CAAC;AACF,eAAO,MAAM,YAAY,yGAYxB,CAAC"}
|
|
@@ -51,6 +51,7 @@ export const TabItem = styled.div `
|
|
|
51
51
|
export const TabsContainer = styled.div `
|
|
52
52
|
height: 100%;
|
|
53
53
|
width: 100%;
|
|
54
|
+
contain: 'layout';
|
|
54
55
|
display: flex;
|
|
55
56
|
flex-direction: column;
|
|
56
57
|
background-color: ${(props) => props.tabLineColor || props.theme.backgroundLevel3};
|
|
@@ -79,7 +80,6 @@ export const TabContent = styled.div `
|
|
|
79
80
|
width: 100%;
|
|
80
81
|
height: 100%;
|
|
81
82
|
box-sizing: border-box;
|
|
82
|
-
overflow: auto;
|
|
83
83
|
background-color: ${(props) => props.tabContentColor || props.theme.backgroundLevel4};
|
|
84
84
|
`;
|
|
85
85
|
export const ScrollableContainer = styled.div `
|
package/package.json
CHANGED
|
@@ -62,6 +62,7 @@ export const TabsContainer = styled.div<{
|
|
|
62
62
|
}>`
|
|
63
63
|
height: 100%;
|
|
64
64
|
width: 100%;
|
|
65
|
+
contain: 'layout';
|
|
65
66
|
display: flex;
|
|
66
67
|
flex-direction: column;
|
|
67
68
|
background-color: ${(props) =>
|
|
@@ -94,7 +95,6 @@ export const TabContent = styled.div<{
|
|
|
94
95
|
width: 100%;
|
|
95
96
|
height: 100%;
|
|
96
97
|
box-sizing: border-box;
|
|
97
|
-
overflow: auto;
|
|
98
98
|
background-color: ${(props) =>
|
|
99
99
|
props.tabContentColor || props.theme.backgroundLevel4};
|
|
100
100
|
`;
|