@thecb/components 10.4.5-beta.2 → 10.4.5-beta.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 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -6
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/placeholder/Placeholder.js +4 -21
- package/dist/src/apps/checkout/pages/payment/sub-pages/payment-amount/PaymentAmount_old.js +0 -49322
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/icons/.DS_Store +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -28065,20 +28065,18 @@ var renderContent = function renderContent(_ref2) {
|
|
|
28065
28065
|
var isLink = _ref2.isLink,
|
|
28066
28066
|
destination = _ref2.destination,
|
|
28067
28067
|
dataQa = _ref2.dataQa,
|
|
28068
|
-
isDisabled = _ref2.isDisabled,
|
|
28069
28068
|
children = _ref2.children,
|
|
28070
28069
|
action = _ref2.action;
|
|
28071
28070
|
return isLink ? /*#__PURE__*/React__default.createElement(reactRouterDom.Link, {
|
|
28072
28071
|
to: destination,
|
|
28073
|
-
|
|
28074
|
-
disabled: isDisabled,
|
|
28072
|
+
"data-qa": dataQa,
|
|
28075
28073
|
style: {
|
|
28076
28074
|
textDecoration: "none"
|
|
28077
28075
|
}
|
|
28078
28076
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
28079
28077
|
padding: "0",
|
|
28080
28078
|
minHeight: "100%",
|
|
28081
|
-
extraStyles:
|
|
28079
|
+
extraStyles: "cursor: pointer;"
|
|
28082
28080
|
}, children)) : /*#__PURE__*/React__default.createElement(Box, {
|
|
28083
28081
|
onClick: action,
|
|
28084
28082
|
padding: "0",
|
|
@@ -28102,8 +28100,7 @@ var PlaceholderContentWrapper = function PlaceholderContentWrapper(_ref3) {
|
|
|
28102
28100
|
action: action,
|
|
28103
28101
|
isLink: isLink,
|
|
28104
28102
|
destination: destination,
|
|
28105
|
-
dataQa: dataQa
|
|
28106
|
-
isDisabled: isDisabled
|
|
28103
|
+
dataQa: dataQa
|
|
28107
28104
|
});
|
|
28108
28105
|
};
|
|
28109
28106
|
var Placeholder = function Placeholder(_ref4) {
|