@thecb/components 10.4.4-beta.1 → 10.4.4-beta.2
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
CHANGED
|
@@ -27955,29 +27955,24 @@ var PlaceholderContentWrapper = function PlaceholderContentWrapper(_ref) {
|
|
|
27955
27955
|
return isDisabled ? /*#__PURE__*/React__default.createElement(Box, {
|
|
27956
27956
|
padding: "0",
|
|
27957
27957
|
minHeight: "100%",
|
|
27958
|
-
extraStyles:
|
|
27959
|
-
"aria-disabled":
|
|
27958
|
+
extraStyles: "cursor: default;",
|
|
27959
|
+
"aria-disabled": true
|
|
27960
27960
|
}, children) : isLink ? /*#__PURE__*/React__default.createElement(reactRouterDom.Link, {
|
|
27961
27961
|
to: destination,
|
|
27962
27962
|
"data-qa": dataQa,
|
|
27963
27963
|
disabled: isDisabled,
|
|
27964
|
-
style:
|
|
27965
|
-
textDecoration: "none",
|
|
27966
|
-
color: "".concat(MANATEE_GREY),
|
|
27967
|
-
borderColor: "".concat(MANATEE_GREY)
|
|
27968
|
-
} : {
|
|
27964
|
+
style: {
|
|
27969
27965
|
textDecoration: "none"
|
|
27970
27966
|
}
|
|
27971
27967
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
27972
27968
|
padding: "0",
|
|
27973
27969
|
minHeight: "100%",
|
|
27974
|
-
extraStyles:
|
|
27970
|
+
extraStyles: "cursor: pointer;"
|
|
27975
27971
|
}, children)) : /*#__PURE__*/React__default.createElement(Box, {
|
|
27976
|
-
onClick:
|
|
27972
|
+
onClick: action,
|
|
27977
27973
|
padding: "0",
|
|
27978
27974
|
minHeight: "100%",
|
|
27979
|
-
"
|
|
27980
|
-
extraStyles: isDisabled ? "cursor: default" : "cursor: pointer;",
|
|
27975
|
+
extraStyles: "cursor: pointer;",
|
|
27981
27976
|
dataQa: dataQa
|
|
27982
27977
|
}, children);
|
|
27983
27978
|
};
|