@dropins/storefront-cart 3.3.0-beta.2 → 3.3.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @dropins/storefront-cart
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9974a25: Added `confirmBeforeDelete` prop to `CartSummaryList` and `MiniCart`. When enabled, clicking the remove button shows an inline confirmation banner before the item is deleted, rather than removing it immediately. A custom `ConfirmDeleteBanner` slot is available on both containers for full rendering control.
8
+
9
+ Extended `enableUpdateItemQuantity` on `CartSummaryList` and `enableQuantityUpdate` on `MiniCart` to accept `boolean | { removeOnZero?: boolean }`. When `removeOnZero` is not explicitly set to `true`, setting the quantity to `0` via the input is a no-op — the item is not removed. Explicit removal actions (trash button, confirm-delete, out-of-stock removal) are unaffected.
10
+
11
+ - d4b49bb: Removed the `engines.node` constraint from `package.json`. This package targets browser environments exclusively and does not depend on a specific Node.js runtime version. The package is now built and distributed using Node.js 22 LTS.
12
+
13
+ ### Patch Changes
14
+
15
+ - bbb8b80: Bump to StorefrontSDK stable version
16
+ - b9c309e: Bump @adobe-commerce/elsie to v1.9.0-beta.3
17
+ - 855a803: Fixed bug due to a case-sensitive SKU comparison in addProductsToCart() that caused items to be silently excluded from ACDL data collection events. The sku input (lowercase) was compared against item.topLevelSku (uppercase) using strict equality, so the filter always returned false. Both values are now normalized with .toUpperCase() before comparison.
18
+
3
19
  ## 3.3.0-beta.2
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@dropins/storefront-cart",
3
- "version": "3.3.0-beta.2",
3
+ "version": "3.3.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md"
5
5
  }