@empathyco/x-components 6.2.2 → 6.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 +14 -0
- package/docs/API-reference/api/x-adapter-platform.platformresult.__prices.md +1 -1
- package/docs/API-reference/api/x-adapter-platform.platformresult.md +1 -1
- package/docs/API-reference/api/x-types.resultprice.md +6 -6
- package/docs/API-reference/api/x-types.resultprice.originalvalue.md +1 -1
- package/docs/API-reference/api/x-types.resultprice.value.md +1 -1
- package/js/components/icons/ai-spinner-icon.vue.js +9 -2429
- package/js/components/icons/ai-spinner-icon.vue.js.map +1 -1
- package/js/components/result/base-result-current-price.vue.js +1 -1
- package/js/components/result/base-result-current-price.vue.js.map +1 -1
- package/js/components/result/base-result-current-price.vue2.js.map +1 -1
- package/js/components/result/base-result-previous-price.vue.js +4 -3
- package/js/components/result/base-result-previous-price.vue.js.map +1 -1
- package/js/components/result/base-result-previous-price.vue2.js.map +1 -1
- package/package.json +4 -4
- package/report/x-adapter-platform.api.json +1 -1
- package/report/x-types.api.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.3.0](https://github.com/empathyco/x/compare/@empathyco/x-components@6.2.3...@empathyco/x-components@6.3.0) (2026-05-21)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* allow empty prices (#2108)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [6.2.3](https://github.com/empathyco/x/compare/@empathyco/x-components@6.2.2...@empathyco/x-components@6.2.3) (2026-05-20)
|
|
14
|
+
|
|
15
|
+
### Code Refactoring
|
|
16
|
+
|
|
17
|
+
* **ai-spinner:** optimize SVG structure and remove unused script logic (#2107)
|
|
18
|
+
|
|
19
|
+
|
|
6
20
|
## [6.2.2](https://github.com/empathyco/x/compare/@empathyco/x-components@6.2.1...@empathyco/x-components@6.2.2) (2026-05-18)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @empathyco/x-components
|
|
@@ -56,7 +56,7 @@ Whether this result has a discount.
|
|
|
56
56
|
</td></tr>
|
|
57
57
|
<tr><td>
|
|
58
58
|
|
|
59
|
-
[originalValue](./x-types.resultprice.originalvalue.md)
|
|
59
|
+
[originalValue?](./x-types.resultprice.originalvalue.md)
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
</td><td>
|
|
@@ -64,18 +64,18 @@ Whether this result has a discount.
|
|
|
64
64
|
|
|
65
65
|
</td><td>
|
|
66
66
|
|
|
67
|
-
number
|
|
67
|
+
number \| undefined
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
</td><td>
|
|
71
71
|
|
|
72
|
-
The old value.
|
|
72
|
+
_(Optional)_ The old value.
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
</td></tr>
|
|
76
76
|
<tr><td>
|
|
77
77
|
|
|
78
|
-
[value](./x-types.resultprice.value.md)
|
|
78
|
+
[value?](./x-types.resultprice.value.md)
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
</td><td>
|
|
@@ -83,12 +83,12 @@ The old value.
|
|
|
83
83
|
|
|
84
84
|
</td><td>
|
|
85
85
|
|
|
86
|
-
number
|
|
86
|
+
number \| undefined
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
</td><td>
|
|
90
90
|
|
|
91
|
-
The current value.
|
|
91
|
+
_(Optional)_ The current value.
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
</td></tr>
|