@arcteryx/components-cart
Advanced tools
Comparing version 1.1.5 to 1.1.6
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.1.6](http://bitbucket.org/arcteryx/arcteryx-js-helpers/compare/@arcteryx/components-cart@1.1.5...@arcteryx/components-cart@1.1.6) (2020-03-02) | ||
### Bug Fixes | ||
* add classnames for qa to cart items and shipping total ([e75f970](http://bitbucket.org/arcteryx/arcteryx-js-helpers/commits/e75f970193ff984eac3ce33113db4031f2c32b05)) | ||
## [1.1.5](http://bitbucket.org/arcteryx/arcteryx-js-helpers/compare/@arcteryx/components-cart@1.1.4...@arcteryx/components-cart@1.1.5) (2020-03-02) | ||
@@ -8,0 +19,0 @@ |
@@ -217,3 +217,3 @@ 'use strict'; | ||
}, React__default.createElement(Button, { | ||
className: "qa-cart-item-increase", | ||
className: "qa-cart-item-decrease", | ||
"aria-label": "decrease", | ||
@@ -238,3 +238,3 @@ count: quantity, | ||
}), React__default.createElement(Button, { | ||
className: "qa-cart-item-decrease", | ||
className: "qa-cart-item-increase", | ||
"aria-label": "increase", | ||
@@ -696,3 +696,5 @@ count: quantity, | ||
currency: cart.itemTotalPrice.currency | ||
})), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Express Shipping"), ":"), React__default.createElement(Red, null, t("FREE"))), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Subtotal"), ":"), React__default.createElement(StyledPrice$1, { | ||
})), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Express Shipping"), ":"), React__default.createElement(Red, { | ||
className: "qa-cart-shipping" | ||
}, t("FREE"))), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Subtotal"), ":"), React__default.createElement(StyledPrice$1, { | ||
className: "qa-cart-total", | ||
@@ -699,0 +701,0 @@ price: cart.totalPrice.value, |
@@ -209,3 +209,3 @@ import React, { useContext } from 'react'; | ||
}, React.createElement(Button, { | ||
className: "qa-cart-item-increase", | ||
className: "qa-cart-item-decrease", | ||
"aria-label": "decrease", | ||
@@ -230,3 +230,3 @@ count: quantity, | ||
}), React.createElement(Button, { | ||
className: "qa-cart-item-decrease", | ||
className: "qa-cart-item-increase", | ||
"aria-label": "increase", | ||
@@ -688,3 +688,5 @@ count: quantity, | ||
currency: cart.itemTotalPrice.currency | ||
})), React.createElement(CartLine, null, React.createElement(P$1, null, t("Express Shipping"), ":"), React.createElement(Red, null, t("FREE"))), React.createElement(CartLine, null, React.createElement(P$1, null, t("Subtotal"), ":"), React.createElement(StyledPrice$1, { | ||
})), React.createElement(CartLine, null, React.createElement(P$1, null, t("Express Shipping"), ":"), React.createElement(Red, { | ||
className: "qa-cart-shipping" | ||
}, t("FREE"))), React.createElement(CartLine, null, React.createElement(P$1, null, t("Subtotal"), ":"), React.createElement(StyledPrice$1, { | ||
className: "qa-cart-total", | ||
@@ -691,0 +693,0 @@ price: cart.totalPrice.value, |
@@ -213,3 +213,3 @@ (function (global, factory) { | ||
}, React__default.createElement(Button, { | ||
className: "qa-cart-item-increase", | ||
className: "qa-cart-item-decrease", | ||
"aria-label": "decrease", | ||
@@ -234,3 +234,3 @@ count: quantity, | ||
}), React__default.createElement(Button, { | ||
className: "qa-cart-item-decrease", | ||
className: "qa-cart-item-increase", | ||
"aria-label": "increase", | ||
@@ -692,3 +692,5 @@ count: quantity, | ||
currency: cart.itemTotalPrice.currency | ||
})), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Express Shipping"), ":"), React__default.createElement(Red, null, t("FREE"))), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Subtotal"), ":"), React__default.createElement(StyledPrice$1, { | ||
})), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Express Shipping"), ":"), React__default.createElement(Red, { | ||
className: "qa-cart-shipping" | ||
}, t("FREE"))), React__default.createElement(CartLine, null, React__default.createElement(P$1, null, t("Subtotal"), ":"), React__default.createElement(StyledPrice$1, { | ||
className: "qa-cart-total", | ||
@@ -695,0 +697,0 @@ price: cart.totalPrice.value, |
{ | ||
"name": "@arcteryx/components-cart", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "Arcteryx Cart", | ||
@@ -18,3 +18,3 @@ "source": "src/index.js", | ||
"license": "ISC", | ||
"gitHead": "9ce97859a9bf534b33dd88f948259590f4ff59dd", | ||
"gitHead": "67da093db2fe0bce2d765f7d44be9fc31acf4306", | ||
"peerDependencies": { | ||
@@ -21,0 +21,0 @@ "@arcteryx/components-contexts": "^1.1.0" |
@@ -53,3 +53,3 @@ import React from "react"; | ||
<P>{t("Express Shipping")}:</P> | ||
<Red>{t("FREE")}</Red> | ||
<Red className="qa-cart-shipping">{t("FREE")}</Red> | ||
</CartLine> | ||
@@ -56,0 +56,0 @@ <CartLine> |
@@ -76,3 +76,3 @@ import React from "react"; | ||
<Wrap isNarrow={isNarrow}> | ||
<Button className="qa-cart-item-increase" aria-label="decrease" count={quantity} onClick={decrementCount}> | ||
<Button className="qa-cart-item-decrease" aria-label="decrease" count={quantity} onClick={decrementCount}> | ||
– | ||
@@ -92,3 +92,3 @@ </Button> | ||
/> | ||
<Button className="qa-cart-item-decrease" aria-label="increase" count={quantity} onClick={incrementCount}> | ||
<Button className="qa-cart-item-increase" aria-label="increase" count={quantity} onClick={incrementCount}> | ||
+ | ||
@@ -95,0 +95,0 @@ </Button> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
386287
3501