kelt-ui-kit-react 0.8.4 → 0.8.5

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.js CHANGED
@@ -2656,7 +2656,7 @@ const pe = (e = 12) => `${e / 12 * 100}%`, Xs = Ut.div`
2656
2656
  (p) => {
2657
2657
  if (p.stopPropagation(), r || n)
2658
2658
  return;
2659
- const h = c - i;
2659
+ const h = c + i;
2660
2660
  l(Math.round(h * 100) / 100);
2661
2661
  },
2662
2662
  [c, l]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kelt-ui-kit-react",
3
3
  "type": "module",
4
- "version": "0.8.4",
4
+ "version": "0.8.5",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -40,7 +40,7 @@ export const Quantity = ({
40
40
  if (disabled || disabledPlus) {
41
41
  return;
42
42
  }
43
- const newQuantity = qte - pas;
43
+ const newQuantity = qte + pas;
44
44
  changeQuantity(Math.round(newQuantity * 100) / 100);
45
45
  },
46
46
  [qte, changeQuantity]