@dropins/storefront-account 3.2.0-beta.0 → 3.2.0-beta.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/package.json +5 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,39 @@
1
+ # @dropins/storefront-account
2
+
3
+ ## 3.2.0-beta.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 4d27653: Bump "@adobe-commerce/elsie" from 1.7.0 to 1.8.0-beta.1
8
+
9
+ ## 3.2.0-beta.1
10
+
11
+ ### Patch Changes
12
+
13
+ - d8a9db4: Bump build-tools version
14
+
15
+ ## 3.2.0-beta.0
16
+
17
+ ### Minor Changes
18
+
19
+ - d6e93e0: This PR adds `orderTime` to `OrderModel`. This is required to show order date and time in OrdersListCard.
20
+ By default, only date is displayed.
21
+
22
+ To show the date and the time, there is a new slot implemented (`OrdersListOrderTime`). To use it, it needs to be added to block in Boilerplate, like in the following example:
23
+
24
+ ```javascript
25
+ (...)
26
+ OrdersListOrderTime: (ctx) => {
27
+ const container = document.createElement('p');
28
+ const tpl = `${ctx.deliveryDateText} ${ctx.orderDate} ${ctx.orderTime}`;
29
+ container.append(tpl);
30
+ ctx.replaceWith(container);
31
+ },
32
+ (...)
33
+ ```
34
+
35
+ - 68f5eda: Enable CustomerOrder GraphQL fragment extension
36
+
37
+ ### Patch Changes
38
+
39
+ - b4c01f1: Add Changesets-based release automation with branch-aware workflows (alpha/beta/stable), PR changeset validation, and contributor helper scripts.
package/package.json CHANGED
@@ -1 +1,5 @@
1
- {"name": "@dropins/storefront-account", "version": "3.2.0-beta.0", "@dropins/tools": "~1.7.0", "license": "SEE LICENSE IN LICENSE.md"}
1
+ {
2
+ "name": "@dropins/storefront-account",
3
+ "version": "3.2.0-beta.2",
4
+ "license": "SEE LICENSE IN LICENSE.md"
5
+ }