@thecb/components 5.6.2 → 5.6.3
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/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/layouts/Sidebar.js +1 -1
- package/src/components/atoms/layouts/Sidebar.styled.js +2 -2
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/molecules/.DS_Store +0 -0
- package/src/deprecated/.DS_Store +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -6575,10 +6575,10 @@ function (_ref2) {
|
|
|
6575
6575
|
var minHeight = _ref6.minHeight;
|
|
6576
6576
|
return minHeight ? "margin-top: 0; margin-bottom: 0;" : "";
|
|
6577
6577
|
}, function (_ref7) {
|
|
6578
|
-
var sidebarOnRight = _ref7
|
|
6578
|
+
var $sidebarOnRight = _ref7.$sidebarOnRight,
|
|
6579
6579
|
contentMinWidth = _ref7.contentMinWidth,
|
|
6580
6580
|
childGap = _ref7.childGap;
|
|
6581
|
-
return sidebarOnRight ? "> :first-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }\n ") : "> :last-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }");
|
|
6581
|
+
return $sidebarOnRight ? "> :first-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }\n ") : "> :last-child {\n flex-basis: 0;\n flex-grow: 999;\n min-width: calc(".concat(contentMinWidth, " - ").concat(childGap, ");\n }");
|
|
6582
6582
|
}, function (_ref8) {
|
|
6583
6583
|
var fullHeight = _ref8.fullHeight;
|
|
6584
6584
|
return fullHeight ? "min-height: 100%;" : "";
|
|
@@ -6618,7 +6618,7 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
6618
6618
|
}, rest), /*#__PURE__*/React__default.createElement(SidebarInnerWrapper, {
|
|
6619
6619
|
childGap: childGap,
|
|
6620
6620
|
width: width,
|
|
6621
|
-
sidebarOnRight: sidebarOnRight,
|
|
6621
|
+
$sidebarOnRight: sidebarOnRight,
|
|
6622
6622
|
contentMinWidth: contentMinWidth,
|
|
6623
6623
|
fullHeight: fullHeight,
|
|
6624
6624
|
minHeight: minHeight
|