@thecb/components 4.2.8-beta.2 → 4.2.8-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
CHANGED
|
@@ -21259,6 +21259,7 @@ var Jumbo = function Jumbo(_ref) {
|
|
|
21259
21259
|
largeSideSize = _ref$largeSideSize === void 0 ? "2" : _ref$largeSideSize,
|
|
21260
21260
|
CartStatus = _ref.cartStatus,
|
|
21261
21261
|
total = _ref.total,
|
|
21262
|
+
itemsCount = _ref.itemsCount,
|
|
21262
21263
|
showCartStatus = _ref.showCartStatus,
|
|
21263
21264
|
openCartSlider = _ref.openCartSlider;
|
|
21264
21265
|
|
|
@@ -21300,6 +21301,7 @@ var Jumbo = function Jumbo(_ref) {
|
|
|
21300
21301
|
extraStyles: "margin: 0 0 65px 0; min-width: 320px;"
|
|
21301
21302
|
}), showCartStatus && /*#__PURE__*/React__default.createElement(CartStatus, {
|
|
21302
21303
|
total: total,
|
|
21304
|
+
itemsCount: itemsCount,
|
|
21303
21305
|
openCart: openCartSlider
|
|
21304
21306
|
}))))));
|
|
21305
21307
|
};
|
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@ const Jumbo = ({
|
|
|
17
17
|
largeSideSize = "2",
|
|
18
18
|
cartStatus: CartStatus,
|
|
19
19
|
total,
|
|
20
|
+
itemsCount,
|
|
20
21
|
showCartStatus,
|
|
21
22
|
openCartSlider
|
|
22
23
|
}) => {
|
|
@@ -74,7 +75,11 @@ const Jumbo = ({
|
|
|
74
75
|
/>
|
|
75
76
|
)}
|
|
76
77
|
{showCartStatus && (
|
|
77
|
-
<CartStatus
|
|
78
|
+
<CartStatus
|
|
79
|
+
total={total}
|
|
80
|
+
itemsCount={itemsCount}
|
|
81
|
+
openCart={openCartSlider}
|
|
82
|
+
/>
|
|
78
83
|
)}
|
|
79
84
|
</Cluster>
|
|
80
85
|
</Switcher>
|