@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.esm.js
CHANGED
|
@@ -50080,11 +50080,13 @@ var fallbackValues$X = {
|
|
|
50080
50080
|
var TabSidebar = function TabSidebar(_ref) {
|
|
50081
50081
|
var links = _ref.links,
|
|
50082
50082
|
isMobile = _ref.isMobile,
|
|
50083
|
-
themeValues = _ref.themeValues
|
|
50083
|
+
themeValues = _ref.themeValues,
|
|
50084
|
+
_ref$minHeight = _ref.minHeight,
|
|
50085
|
+
minHeight = _ref$minHeight === void 0 ? "100%" : _ref$minHeight;
|
|
50084
50086
|
return /*#__PURE__*/React.createElement(Box, {
|
|
50085
50087
|
padding: "0",
|
|
50086
50088
|
background: COOL_GREY_05,
|
|
50087
|
-
minHeight:
|
|
50089
|
+
minHeight: minHeight,
|
|
50088
50090
|
role: "region",
|
|
50089
50091
|
"aria-label": "Profile tabs",
|
|
50090
50092
|
boxShadow: isMobile && "inset 0px -1px 0px 0px rgb(202, 206, 216)"
|
|
@@ -51274,7 +51276,7 @@ var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelec
|
|
|
51274
51276
|
var Container$1 = styled(Box).withConfig({
|
|
51275
51277
|
displayName: "ContactCardstyled__Container",
|
|
51276
51278
|
componentId: "sc-1v62a1n-0"
|
|
51277
|
-
})(["display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;"]);
|
|
51279
|
+
})(["height:fit-content;display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;"]);
|
|
51278
51280
|
var Title$3 = styled(Heading$1).withConfig({
|
|
51279
51281
|
displayName: "ContactCardstyled__Title",
|
|
51280
51282
|
componentId: "sc-1v62a1n-1"
|