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