@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 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
@@ -8,7 +8,7 @@
8
8
 
9
9
  ```typescript
10
10
  __prices: {
11
- current: {
11
+ current?: {
12
12
  value: number;
13
13
  };
14
14
  previous?: {
@@ -113,7 +113,7 @@ string
113
113
 
114
114
  </td><td>
115
115
 
116
- { current: { value: number; }; previous?: { value: number; }; future?: { value: number; }; }
116
+ { current?: { value: number; }; previous?: { value: number; }; future?: { value: number; }; }
117
117
 
118
118
 
119
119
  </td><td>
@@ -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>
@@ -9,5 +9,5 @@ The old value.
9
9
  **Signature:**
10
10
 
11
11
  ```typescript
12
- originalValue: number;
12
+ originalValue?: number | undefined;
13
13
  ```
@@ -9,5 +9,5 @@ The current value.
9
9
  **Signature:**
10
10
 
11
11
  ```typescript
12
- value: number;
12
+ value?: number | undefined;
13
13
  ```