@dropins/storefront-requisition-list 1.5.0-beta.0 → 1.5.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 +25 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @dropins/storefront-requisition-list
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f3b5b17: fix: display variant-specific SKU, options, price and thumbnail for configurable requisition list items
8
+
9
+ `ProductListTable` previously showed only the parent product's name/SKU and never rendered the selected configurable options (e.g. color, size), and the configured product's thumbnail was shown unconditionally, ignoring the storefront's "Configurable Product Image" setting used by the cart.
10
+
11
+ - Renders the selected configurable options next to the SKU.
12
+ - Adds a `useParentConfigurableThumbnail` prop to `ProductListTable`, driven by the new `configurable_thumbnail_source` store config field, so the thumbnail is consistent with the cart's admin-configured behavior.
13
+ - Adds a built-in `enrichConfigurableProducts` default (exported from `@dropins/storefront-requisition-list`) that resolves the selected variant's SKU, price and thumbnail via Catalog Service's `refineProduct`, matching selected options by label, so integrators no longer need to implement this resolution themselves. Passing a custom `enrichConfigurableProducts` still overrides the default.
14
+
15
+ ### Patch Changes
16
+
17
+ - 4a9f96b: Bump SDK stable versions
18
+ - 33ac652: fix: show original and final price in requisition list
19
+
20
+ `ProductListTable` previously rendered only the final (discounted) price for an item's unit price and subtotal. It now also renders the original price with a strikethrough when a discount applies, for simple, configured, and bundle products, matching wishlist's price display.
21
+
22
+ ## 1.5.0-beta.1
23
+
24
+ ### Patch Changes
25
+
26
+ - 4a9f96b: Bump SDK stable versions
27
+
3
28
  ## 1.5.0-beta.0
4
29
 
5
30
  ### Minor Changes
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@dropins/storefront-requisition-list",
3
- "version": "1.5.0-beta.0",
3
+ "version": "1.5.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md"
5
5
  }