@gomusdev/web-components 4.9.2 → 4.11.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/README.md +18 -0
- package/dist-js/gomus-webcomponents.iife.js +248 -198
- package/dist-js/gomus-webcomponents.js +248 -198
- package/dist-js/gomus-webcomponents.min.iife.js +44 -44
- package/dist-js/gomus-webcomponents.min.js +5054 -5026
- package/dist-js/src/components/order/components/subcomponents/breakdown/items/TicketSale.spec.d.ts +1 -0
- package/dist-js/src/factories/TicketFactories.d.ts +19 -0
- package/dist-js/src/lib/helpers/locale.d.ts +1 -0
- package/dist-js/src/lib/helpers/locale.spec.d.ts +1 -0
- package/dist-js/src/lib/helpers/utils.d.ts +1 -1
- package/dist-js/src/lib/helpers/utils.spec.d.ts +1 -0
- package/dist-js/src/lib/models/cart/cart.svelte.d.ts +0 -1
- package/dist-js/src/lib/models/ticket/UITicket.svelte.d.ts +1 -2
- package/dist-js/src/lib/stores/auth.svelte.d.ts +1 -1
- package/dist-js/src/lib/stores/shop.load.spec.d.ts +1 -0
- package/dist-js/src/lib/stores/shop.svelte.d.ts +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.11.0 (2026-07-23)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **tickets:** render ticket sub_title in selection, cart and order breakdown
|
|
8
|
+
|
|
9
|
+
## 4.10.0 (2026-07-23)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **shop:** warn in console when the configured locale is invalid
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **cart:** format prices in the shop currency instead of hardcoded EUR
|
|
18
|
+
* **currency:** fall back to de/EUR when Intl.NumberFormat rejects the shop config
|
|
19
|
+
* **types:** define the missing NotSignedIn result type
|
|
20
|
+
|
|
3
21
|
## 4.9.2 (2026-07-20)
|
|
4
22
|
|
|
5
23
|
### Bug Fixes
|