@thecb/components 12.0.4-beta.0 → 12.0.5-beta.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/dist/index.cjs.js +88 -50
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +88 -50
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/AccountsIconSmall.js +5 -1
- package/src/components/atoms/icons/FindIconSmall.js +5 -1
- package/src/components/atoms/icons/HistoryIconSmall.js +5 -1
- package/src/components/atoms/icons/PropertiesIconSmall.js +5 -1
- package/src/components/atoms/icons/SettingsIconSmall.js +5 -1
- package/src/components/atoms/icons/WalletIconSmall.js +10 -1
- package/src/components/molecules/link-card/LinkCard.js +92 -68
- package/src/components/molecules/link-card/LinkCard.stories.js +17 -13
- package/src/components/molecules/link-card/LinkCard.styled.js +45 -45
- package/src/components/molecules/link-card/index.d.ts +4 -1
- package/src/components/molecules/nav-menu/NavMenuMobile.js +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -14066,8 +14066,12 @@ var PaymentMethodIcon = function PaymentMethodIcon(_ref) {
|
|
|
14066
14066
|
};
|
|
14067
14067
|
var PaymentMethodIcon$1 = themeComponent(PaymentMethodIcon, "Icons", fallbackValues$2, "info");
|
|
14068
14068
|
|
|
14069
|
+
// When ariaHidden is true, aria-hidden="true" is added to the SVG, which tells
|
|
14070
|
+
// screen readers to skip this element. Use this when the icon is purely decorative
|
|
14071
|
+
// and adjacent text already conveys its meaning (e.g. an icon inside a labeled nav link).
|
|
14069
14072
|
var AccountsIconSmall = function AccountsIconSmall(_ref) {
|
|
14070
|
-
var themeValues = _ref.themeValues
|
|
14073
|
+
var themeValues = _ref.themeValues,
|
|
14074
|
+
ariaHidden = _ref.ariaHidden;
|
|
14071
14075
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14072
14076
|
width: "22px",
|
|
14073
14077
|
height: "22px",
|
|
@@ -14078,7 +14082,8 @@ var AccountsIconSmall = function AccountsIconSmall(_ref) {
|
|
|
14078
14082
|
style: {
|
|
14079
14083
|
display: "inline-block",
|
|
14080
14084
|
verticalAlign: "text-bottom"
|
|
14081
|
-
}
|
|
14085
|
+
},
|
|
14086
|
+
"aria-hidden": ariaHidden ? "true" : undefined
|
|
14082
14087
|
}, /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("rect", {
|
|
14083
14088
|
id: "path-1-accountssmall",
|
|
14084
14089
|
x: "0",
|
|
@@ -14245,8 +14250,12 @@ var ProfileIconSmall = function ProfileIconSmall(_ref) {
|
|
|
14245
14250
|
};
|
|
14246
14251
|
var ProfileIconSmall$1 = themeComponent(ProfileIconSmall, "Icons", fallbackValues$2, "primary");
|
|
14247
14252
|
|
|
14253
|
+
// When ariaHidden is true, aria-hidden="true" is added to the SVG, which tells
|
|
14254
|
+
// screen readers to skip this element. Use this when the icon is purely decorative
|
|
14255
|
+
// and adjacent text already conveys its meaning (e.g. an icon inside a labeled nav link).
|
|
14248
14256
|
var SettingsIconSmall = function SettingsIconSmall(_ref) {
|
|
14249
|
-
var themeValues = _ref.themeValues
|
|
14257
|
+
var themeValues = _ref.themeValues,
|
|
14258
|
+
ariaHidden = _ref.ariaHidden;
|
|
14250
14259
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14251
14260
|
width: "22px",
|
|
14252
14261
|
height: "22px",
|
|
@@ -14257,7 +14266,8 @@ var SettingsIconSmall = function SettingsIconSmall(_ref) {
|
|
|
14257
14266
|
style: {
|
|
14258
14267
|
display: "inline-block",
|
|
14259
14268
|
verticalAlign: "text-bottom"
|
|
14260
|
-
}
|
|
14269
|
+
},
|
|
14270
|
+
"aria-hidden": ariaHidden ? "true" : undefined
|
|
14261
14271
|
}, /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("rect", {
|
|
14262
14272
|
id: "path-1-paymentssmall",
|
|
14263
14273
|
x: "0",
|
|
@@ -14295,17 +14305,22 @@ var SettingsIconSmall = function SettingsIconSmall(_ref) {
|
|
|
14295
14305
|
};
|
|
14296
14306
|
var SettingsIconSmall$1 = themeComponent(SettingsIconSmall, "Icons", fallbackValues$2, "primary");
|
|
14297
14307
|
|
|
14308
|
+
// When ariaHidden is true, aria-hidden="true" is added to the SVG, which tells
|
|
14309
|
+
// screen readers to skip this element. Use this when the icon is purely decorative
|
|
14310
|
+
// and adjacent text already conveys its meaning (e.g. an icon inside a labeled nav link).
|
|
14298
14311
|
var WalletIconSmall = function WalletIconSmall(_ref) {
|
|
14299
14312
|
var themeValues = _ref.themeValues,
|
|
14300
14313
|
_ref$iconIndex = _ref.iconIndex,
|
|
14301
14314
|
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex,
|
|
14302
|
-
colorOverride = _ref.colorOverride
|
|
14315
|
+
colorOverride = _ref.colorOverride,
|
|
14316
|
+
ariaHidden = _ref.ariaHidden;
|
|
14303
14317
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14304
14318
|
width: "20",
|
|
14305
14319
|
height: "20",
|
|
14306
14320
|
viewBox: "0 0 20 20",
|
|
14307
14321
|
fill: "none",
|
|
14308
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
14322
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14323
|
+
"aria-hidden": ariaHidden ? "true" : undefined
|
|
14309
14324
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
14310
14325
|
fillRule: "evenodd",
|
|
14311
14326
|
clipRule: "evenodd",
|
|
@@ -14445,8 +14460,12 @@ var PropertiesAddIcon = function PropertiesAddIcon(_ref) {
|
|
|
14445
14460
|
};
|
|
14446
14461
|
var PropertiesAddIcon$1 = themeComponent(PropertiesAddIcon, "Icons", fallbackValues$2, "info");
|
|
14447
14462
|
|
|
14463
|
+
// When ariaHidden is true, aria-hidden="true" is added to the SVG, which tells
|
|
14464
|
+
// screen readers to skip this element. Use this when the icon is purely decorative
|
|
14465
|
+
// and adjacent text already conveys its meaning (e.g. an icon inside a labeled nav link).
|
|
14448
14466
|
var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
|
|
14449
|
-
var themeValues = _ref.themeValues
|
|
14467
|
+
var themeValues = _ref.themeValues,
|
|
14468
|
+
ariaHidden = _ref.ariaHidden;
|
|
14450
14469
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14451
14470
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14452
14471
|
width: "22px",
|
|
@@ -14457,7 +14476,8 @@ var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
|
|
|
14457
14476
|
style: {
|
|
14458
14477
|
display: "inline-block",
|
|
14459
14478
|
verticalAlign: "text-bottom"
|
|
14460
|
-
}
|
|
14479
|
+
},
|
|
14480
|
+
"aria-hidden": ariaHidden ? "true" : undefined
|
|
14461
14481
|
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14462
14482
|
fill: "none",
|
|
14463
14483
|
fillRule: "evenodd",
|
|
@@ -17223,17 +17243,22 @@ var CashieringImage = function CashieringImage() {
|
|
|
17223
17243
|
})));
|
|
17224
17244
|
};
|
|
17225
17245
|
|
|
17246
|
+
// When ariaHidden is true, aria-hidden="true" is added to the SVG, which tells
|
|
17247
|
+
// screen readers to skip this element. Use this when the icon is purely decorative
|
|
17248
|
+
// and adjacent text already conveys its meaning (e.g. an icon inside a labeled nav link).
|
|
17226
17249
|
var FindIconSmall = function FindIconSmall(_ref) {
|
|
17227
17250
|
var themeValues = _ref.themeValues,
|
|
17228
17251
|
_ref$iconIndex = _ref.iconIndex,
|
|
17229
|
-
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex
|
|
17252
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex,
|
|
17253
|
+
ariaHidden = _ref.ariaHidden;
|
|
17230
17254
|
var maskId = "find-icon-mask-".concat(iconIndex);
|
|
17231
17255
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17232
17256
|
width: "20",
|
|
17233
17257
|
height: "20",
|
|
17234
17258
|
viewBox: "0 0 20 20",
|
|
17235
17259
|
fill: "none",
|
|
17236
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
17260
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17261
|
+
"aria-hidden": ariaHidden ? "true" : undefined
|
|
17237
17262
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17238
17263
|
fillRule: "evenodd",
|
|
17239
17264
|
clipRule: "evenodd",
|
|
@@ -17264,14 +17289,19 @@ var FindIconSmall = function FindIconSmall(_ref) {
|
|
|
17264
17289
|
};
|
|
17265
17290
|
var FindIconSmall$1 = themeComponent(FindIconSmall, "Icons", fallbackValues$2, "primary");
|
|
17266
17291
|
|
|
17292
|
+
// When ariaHidden is true, aria-hidden="true" is added to the SVG, which tells
|
|
17293
|
+
// screen readers to skip this element. Use this when the icon is purely decorative
|
|
17294
|
+
// and adjacent text already conveys its meaning (e.g. an icon inside a labeled nav link).
|
|
17267
17295
|
var HistoryIconSmall = function HistoryIconSmall(_ref) {
|
|
17268
|
-
var themeValues = _ref.themeValues
|
|
17296
|
+
var themeValues = _ref.themeValues,
|
|
17297
|
+
ariaHidden = _ref.ariaHidden;
|
|
17269
17298
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17270
17299
|
width: "20",
|
|
17271
17300
|
height: "20",
|
|
17272
17301
|
viewBox: "0 0 20 20",
|
|
17273
17302
|
fill: "none",
|
|
17274
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
17303
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17304
|
+
"aria-hidden": ariaHidden ? "true" : undefined
|
|
17275
17305
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17276
17306
|
d: "M3.33337 8.33333C3.33337 7.8731 3.70647 7.5 4.16671 7.5H15.8334C16.2936 7.5 16.6667 7.8731 16.6667 8.33333V16.6667C16.6667 17.1269 16.2936 17.5 15.8334 17.5H4.16671C3.70647 17.5 3.33337 17.1269 3.33337 16.6667V8.33333Z",
|
|
17277
17307
|
fill: themeValues.singleIconColor
|
|
@@ -45839,37 +45869,34 @@ var fallbackValues$L = {
|
|
|
45839
45869
|
textColor: textColor$5
|
|
45840
45870
|
};
|
|
45841
45871
|
|
|
45842
|
-
var
|
|
45843
|
-
|
|
45844
|
-
|
|
45845
|
-
|
|
45846
|
-
|
|
45847
|
-
|
|
45848
|
-
|
|
45849
|
-
|
|
45850
|
-
|
|
45851
|
-
activeStyles = _ref.$activeStyles;
|
|
45852
|
-
return "\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 40px;\n flex-shrink: 0;\n padding: 24px;\n align-self: stretch;\n border-radius: 8px;\n text-decoration: none;\n background-color: ".concat(disabled ? theme.disabledBackgroundColor : theme.backgroundColor, ";\n border: 1px solid\n ").concat(disabled ? theme.disabledBorderColor : theme.borderColor, ";\n transition: all 0.2s ease-in-out;\n ").concat(extraStyles || "", "\n\n ").concat(disabled ? "\n &:hover,\n &:active {\n cursor: default;\n box-shadow: none;\n border: 1px solid ".concat(theme.disabledBorderColor, ";\n ").concat(disabledStyles || "", "\n }\n ") : "\n &:hover,\n &:active {\n cursor: pointer;\n box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.1),\n 0px 5px 11px 0px rgba(41, 42, 51, 0.1),\n 0px 4px 19px 0px rgba(41, 42, 51, 0.09),\n 0px 27px 26px 0px rgba(41, 42, 51, 0.05),\n 0px 56px 31px 0px rgba(41, 42, 51, 0.01),\n 0px 80px 33px 0px rgba(41, 42, 51, 0);\n }\n ".concat(hoverStyles || "", "\n\n &:hover:not(:active) {\n border: 1px solid ").concat(theme.borderColor, ";\n }\n\n &:active {\n background-color: ").concat(theme.activeBackgroundColor, ";\n border: 1px solid ").concat(theme.borderColor, ";\n ").concat(activeStyles || "", "\n }\n "), "\n ");
|
|
45853
|
-
});
|
|
45872
|
+
var getCardBaseStyles = function getCardBaseStyles(theme, disabled, extraStyles) {
|
|
45873
|
+
return "\n flex-direction: column;\n align-items: flex-start;\n gap: 40px;\n flex-shrink: 0;\n padding: 24px;\n align-self: stretch;\n border-radius: 8px;\n text-decoration: none;\n font-size: inherit;\n color: inherit;\n font-weight: inherit;\n line-height: inherit;\n background-color: ".concat(disabled ? theme.disabledBackgroundColor : theme.backgroundColor, ";\n border: 1px solid\n ").concat(disabled ? theme.disabledBorderColor : theme.borderColor, ";\n transition: all 0.2s ease-in-out;\n ").concat(disabled ? "pointer-events: none;" : "", "\n ").concat(extraStyles || "", "\n");
|
|
45874
|
+
};
|
|
45875
|
+
var getCardHoverActiveStyles = function getCardHoverActiveStyles(theme, disabled, hoverStyles, activeStyles) {
|
|
45876
|
+
if (disabled) {
|
|
45877
|
+
return "\n &:hover,\n &:active {\n cursor: default;\n box-shadow: none;\n border: 1px solid ".concat(theme.disabledBorderColor, ";\n }\n ");
|
|
45878
|
+
}
|
|
45879
|
+
return "\n &:hover,\n &:active {\n cursor: pointer;\n box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.1),\n 0px 5px 11px 0px rgba(41, 42, 51, 0.1),\n 0px 4px 19px 0px rgba(41, 42, 51, 0.09),\n 0px 27px 26px 0px rgba(41, 42, 51, 0.05),\n 0px 56px 31px 0px rgba(41, 42, 51, 0.01),\n 0px 80px 33px 0px rgba(41, 42, 51, 0);\n }\n ".concat(hoverStyles || "", "\n\n &:hover:not(:active) {\n border: 1px solid ").concat(theme.borderColor, ";\n }\n\n &:active {\n background-color: ").concat(theme.activeBackgroundColor, ";\n border: 1px solid ").concat(theme.borderColor, ";\n ").concat(activeStyles || "", "\n }\n ");
|
|
45880
|
+
};
|
|
45854
45881
|
var Title$2 = styled(Heading$1).withConfig({
|
|
45855
45882
|
displayName: "LinkCardstyled__Title",
|
|
45856
|
-
componentId: "sc-l5q1h2-
|
|
45857
|
-
})(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;font-weight:", ";color:", ";"], FONT_WEIGHT_SEMIBOLD, function (
|
|
45858
|
-
var disabled =
|
|
45859
|
-
theme =
|
|
45883
|
+
componentId: "sc-l5q1h2-0"
|
|
45884
|
+
})(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;font-weight:", ";color:", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref) {
|
|
45885
|
+
var disabled = _ref.$disabled,
|
|
45886
|
+
theme = _ref.$theme;
|
|
45860
45887
|
return disabled ? theme.disabledColor : theme.color;
|
|
45861
45888
|
});
|
|
45862
45889
|
var Subtitle = styled(Paragraph$1).withConfig({
|
|
45863
45890
|
displayName: "LinkCardstyled__Subtitle",
|
|
45864
|
-
componentId: "sc-l5q1h2-
|
|
45865
|
-
})(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150%;letter-spacing:0.14px;font-weight:", ";color:", ";"], FONT_WEIGHT_REGULAR, function (
|
|
45866
|
-
var disabled =
|
|
45867
|
-
theme =
|
|
45891
|
+
componentId: "sc-l5q1h2-1"
|
|
45892
|
+
})(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150%;letter-spacing:0.14px;font-weight:", ";color:", ";"], FONT_WEIGHT_REGULAR, function (_ref2) {
|
|
45893
|
+
var disabled = _ref2.$disabled,
|
|
45894
|
+
theme = _ref2.$theme;
|
|
45868
45895
|
return disabled ? theme.disabledColor : theme.textColor;
|
|
45869
45896
|
});
|
|
45870
45897
|
var Footer = styled(Stack).withConfig({
|
|
45871
45898
|
displayName: "LinkCardstyled__Footer",
|
|
45872
|
-
componentId: "sc-l5q1h2-
|
|
45899
|
+
componentId: "sc-l5q1h2-2"
|
|
45873
45900
|
})(["align-items:center;width:100%;"]);
|
|
45874
45901
|
|
|
45875
45902
|
var LinkCard = function LinkCard(_ref) {
|
|
@@ -45900,21 +45927,9 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45900
45927
|
isExternalLink = _ref$isExternalLink === void 0 ? false : _ref$isExternalLink;
|
|
45901
45928
|
var regex = /\W/g;
|
|
45902
45929
|
var locatorSlug = title === null || title === void 0 || (_title$toLowerCase = title.toLowerCase) === null || _title$toLowerCase === void 0 || (_title$toLowerCase = _title$toLowerCase.call(title)) === null || _title$toLowerCase === void 0 || (_title$toLowerCase$re = _title$toLowerCase.replaceAll) === null || _title$toLowerCase$re === void 0 ? void 0 : _title$toLowerCase$re.call(_title$toLowerCase, regex, "-");
|
|
45903
|
-
|
|
45904
|
-
|
|
45905
|
-
|
|
45906
|
-
rel: isExternalLink ? "noopener noreferrer" : undefined,
|
|
45907
|
-
target: isExternalLink ? "_blank" : undefined,
|
|
45908
|
-
tabIndex: disabled ? -1 : 0,
|
|
45909
|
-
"aria-disabled": disabled,
|
|
45910
|
-
$disabled: disabled,
|
|
45911
|
-
"aria-label": "".concat(title, ", ").concat(subtitle),
|
|
45912
|
-
"data-qa": "link-card-".concat(locatorSlug),
|
|
45913
|
-
$theme: themeValues,
|
|
45914
|
-
$extraStyles: disabled ? "pointer-events: none; ".concat(extraStyles) : extraStyles,
|
|
45915
|
-
$hoverStyles: extraHoverStyles,
|
|
45916
|
-
$activeStyles: extraActiveStyles
|
|
45917
|
-
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
45930
|
+
var baseStyles = getCardBaseStyles(themeValues, disabled, extraStyles);
|
|
45931
|
+
var hoverActiveStyles = getCardHoverActiveStyles(themeValues, disabled, extraHoverStyles, extraActiveStyles);
|
|
45932
|
+
var cardContent = /*#__PURE__*/React__default.createElement(Stack, {
|
|
45918
45933
|
childGap: 0,
|
|
45919
45934
|
bottomItem: 3,
|
|
45920
45935
|
justify: "space-between",
|
|
@@ -45956,7 +45971,30 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45956
45971
|
justify: "space-between"
|
|
45957
45972
|
}, showLeft && !!leftContent ? leftContent : /*#__PURE__*/React__default.createElement(Box, {
|
|
45958
45973
|
extraStyles: "margin-right: auto;"
|
|
45959
|
-
}), showRight && !!rightContent && rightContent)))
|
|
45974
|
+
}), showRight && !!rightContent && rightContent)));
|
|
45975
|
+
if (isExternalLink) {
|
|
45976
|
+
return /*#__PURE__*/React__default.createElement(ExternalLink, {
|
|
45977
|
+
key: "link-card-".concat(locatorSlug),
|
|
45978
|
+
href: disabled ? undefined : href,
|
|
45979
|
+
newTab: true,
|
|
45980
|
+
isUnderlined: false,
|
|
45981
|
+
tabIndex: disabled ? "-1" : "0",
|
|
45982
|
+
ariaLabel: "".concat(title, ", ").concat(subtitle),
|
|
45983
|
+
dataQa: "link-card-".concat(locatorSlug),
|
|
45984
|
+
extraStyles: "".concat(baseStyles, " ").concat(hoverActiveStyles)
|
|
45985
|
+
}, cardContent);
|
|
45986
|
+
}
|
|
45987
|
+
return /*#__PURE__*/React__default.createElement(InternalLink, {
|
|
45988
|
+
key: "link-card-".concat(locatorSlug),
|
|
45989
|
+
to: disabled ? undefined : href,
|
|
45990
|
+
isUnderlined: false,
|
|
45991
|
+
hoverUnderline: false,
|
|
45992
|
+
tabIndex: disabled ? "-1" : "0",
|
|
45993
|
+
"aria-label": "".concat(title, ", ").concat(subtitle),
|
|
45994
|
+
"aria-disabled": disabled,
|
|
45995
|
+
"data-qa": "link-card-".concat(locatorSlug),
|
|
45996
|
+
extraStyles: "".concat(baseStyles, " ").concat(hoverActiveStyles)
|
|
45997
|
+
}, cardContent);
|
|
45960
45998
|
};
|
|
45961
45999
|
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$L, "primary");
|
|
45962
46000
|
|
|
@@ -46118,7 +46156,7 @@ var NavMenuMobile = function NavMenuMobile(_ref3) {
|
|
|
46118
46156
|
width: "100%",
|
|
46119
46157
|
maxWidth: "400px",
|
|
46120
46158
|
padding: "1rem 0.5rem",
|
|
46121
|
-
extraStyles: "position: relative; max-width: 400px; height: calc(100vh - 72px);",
|
|
46159
|
+
extraStyles: "position: relative; max-width: 400px; height: calc(100vh - 72px); overflow-y: auto;",
|
|
46122
46160
|
background: themeValues.backgroundColor
|
|
46123
46161
|
}, menuContent));
|
|
46124
46162
|
};
|