@dropins/storefront-requisition-list 1.3.0-beta.0 → 1.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.
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @dropins/storefront-requisition-list
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4205285: feat: add Move to List and Copy to List features for requisition list items
|
|
8
|
+
|
|
9
|
+
- Add `moveItemsBetweenRequisitionLists` API to move items from one requisition list to another, removing them from the source and adding to the destination
|
|
10
|
+
- Add `copyItemsBetweenRequisitionLists` API to copy items between requisition lists, keeping items in the source list
|
|
11
|
+
- Add `RequisitionListPicker` reusable component for selecting a requisition list from a scrollable list of cards
|
|
12
|
+
- Add "Move to List" and "Copy to List" bulk action buttons in the requisition list view, with modal-based list selection
|
|
13
|
+
- Refactor `RequisitionListSelector` to use `RequisitionListPicker` for consistent list selection UX
|
|
14
|
+
- Include destination list name in success alert messages for both move and copy operations
|
|
15
|
+
|
|
16
|
+
- 9fdf4f4: Add an an active class and prop to the **RequisitionListSelector** so the button on the PDP page can reflect when the current product is already in the requisition list. Both an `active` prop as well as `requisition-list-selector--active` class was added. In addition, the `activeIcon` was also included should that the developer would like to change the button icon once an active state is truthy.
|
|
17
|
+
- 98cd3b9: fix: merge user-provided langDefinitions in Provider
|
|
18
|
+
|
|
19
|
+
The Provider now imports `config` and uses `deepmerge` to merge user-provided `langDefinitions` with the drop-in's bundled defaults before passing them to `UIProvider`. This enables label/placeholder overrides via the initializer API.
|
|
20
|
+
|
|
3
21
|
## 1.3.0-beta.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/package.json
CHANGED