@thecb/components 11.2.1-beta.0 → 11.2.1
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 +5 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/contact-card/ContactCard.styled.js +1 -0
- package/src/components/molecules/tab-sidebar/TabSidebar.js +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -50088,11 +50088,13 @@ var fallbackValues$X = {
|
|
|
50088
50088
|
var TabSidebar = function TabSidebar(_ref) {
|
|
50089
50089
|
var links = _ref.links,
|
|
50090
50090
|
isMobile = _ref.isMobile,
|
|
50091
|
-
themeValues = _ref.themeValues
|
|
50091
|
+
themeValues = _ref.themeValues,
|
|
50092
|
+
_ref$minHeight = _ref.minHeight,
|
|
50093
|
+
minHeight = _ref$minHeight === void 0 ? "100%" : _ref$minHeight;
|
|
50092
50094
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
50093
50095
|
padding: "0",
|
|
50094
50096
|
background: COOL_GREY_05,
|
|
50095
|
-
minHeight:
|
|
50097
|
+
minHeight: minHeight,
|
|
50096
50098
|
role: "region",
|
|
50097
50099
|
"aria-label": "Profile tabs",
|
|
50098
50100
|
boxShadow: isMobile && "inset 0px -1px 0px 0px rgb(202, 206, 216)"
|
|
@@ -51282,7 +51284,7 @@ var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelec
|
|
|
51282
51284
|
var Container$1 = styled__default(Box).withConfig({
|
|
51283
51285
|
displayName: "ContactCardstyled__Container",
|
|
51284
51286
|
componentId: "sc-1v62a1n-0"
|
|
51285
|
-
})(["display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;"]);
|
|
51287
|
+
})(["height:fit-content;display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;"]);
|
|
51286
51288
|
var Title$3 = styled__default(Heading$1).withConfig({
|
|
51287
51289
|
displayName: "ContactCardstyled__Title",
|
|
51288
51290
|
componentId: "sc-1v62a1n-1"
|