kupos-ui-components-lib 10.4.27 → 10.4.28

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.
@@ -448,7 +448,7 @@ export const PaymentCardMobile = (props) => {
448
448
  renderDiscount ? "" : "- ",
449
449
  currency ? currency : "",
450
450
  " ",
451
- CommonService.currency(discountAmount, currencySign))),
451
+ `-${CommonService.currency(discountAmount, currencySign)}`)),
452
452
  React.createElement("div", { className: "discount-label-wrapper", style: { marginTop: "2px" } },
453
453
  React.createElement("style", null, `
454
454
  .discount-label-wrapper .discount-row {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "10.4.27",
3
+ "version": "10.4.28",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -856,7 +856,7 @@ export const PaymentCardMobile: React.FC<PaymentSideBarProps> = (props) => {
856
856
  <span style={{ fontWeight: 700, color: "#e05252" }}>
857
857
  {renderDiscount ? "" : "- "}
858
858
  {currency ? currency : ""}{" "}
859
- {CommonService.currency(discountAmount, currencySign)}
859
+ {`-${CommonService.currency(discountAmount, currencySign)}`}
860
860
  </span>
861
861
  </div>
862
862
  <div