@butternutbox/pawprint-native 0.24.1 → 0.24.2
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/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/ProductDisplayCard/ProductDisplayCard.tsx +9 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
[34mCJS[39m Build start
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
[34mDTS[39m Build start
|
|
10
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m554.
|
|
10
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m554.62 KB[39m
|
|
11
11
|
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.08 MB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
-
[32mESM[39m [1mdist/index.js [22m[32m523.
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 7560ms
|
|
13
|
+
[32mESM[39m [1mdist/index.js [22m[32m523.98 KB[39m
|
|
14
14
|
[32mESM[39m [1mdist/index.js.map [22m[32m1.08 MB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[32m103.
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m103.
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 7564ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 22152ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m103.19 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m103.19 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -12286,6 +12286,7 @@ var ProductDisplayCard = React66__default.default.forwardRef(
|
|
|
12286
12286
|
incrementDisabled = false,
|
|
12287
12287
|
decrementDisabled = false,
|
|
12288
12288
|
minQuantity = 1,
|
|
12289
|
+
quantityStep = 1,
|
|
12289
12290
|
image,
|
|
12290
12291
|
imageBackgroundColor,
|
|
12291
12292
|
thumbnailWidth,
|
|
@@ -12307,6 +12308,7 @@ var ProductDisplayCard = React66__default.default.forwardRef(
|
|
|
12307
12308
|
"incrementDisabled",
|
|
12308
12309
|
"decrementDisabled",
|
|
12309
12310
|
"minQuantity",
|
|
12311
|
+
"quantityStep",
|
|
12310
12312
|
"image",
|
|
12311
12313
|
"imageBackgroundColor",
|
|
12312
12314
|
"thumbnailWidth",
|
|
@@ -12362,8 +12364,8 @@ var ProductDisplayCard = React66__default.default.forwardRef(
|
|
|
12362
12364
|
handleQuantityChange(value);
|
|
12363
12365
|
}
|
|
12364
12366
|
},
|
|
12365
|
-
onIncrement: () => handleQuantityChange(quantity +
|
|
12366
|
-
onDecrement: () => handleQuantityChange(quantity -
|
|
12367
|
+
onIncrement: () => handleQuantityChange(quantity + quantityStep),
|
|
12368
|
+
onDecrement: () => handleQuantityChange(quantity - quantityStep),
|
|
12367
12369
|
min: minQuantity,
|
|
12368
12370
|
accessible: true,
|
|
12369
12371
|
accessibilityLabel: `Quantity: ${quantity}`,
|