fontdue-js 2.19.0 → 2.19.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.
- package/CHANGELOG.md +10 -0
- package/dist/__tests__/collectionBundleSelection.test.d.ts +1 -0
- package/dist/__tests__/collectionBundleSelection.test.js +1634 -0
- package/dist/fontdue.css +190 -126
- package/dist/reducer.js +32 -6
- package/dist/utils.d.ts +3 -0
- package/dist/utils.js +21 -10
- package/package.json +5 -2
- package/vitest.config.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 2.19.2
|
|
2
|
+
|
|
3
|
+
- Fixed style packages (bundles within a family) not displaying as selected and not responding to deselection clicks when selected via a parent collection bundle or family
|
|
4
|
+
- Fixed auto-upgrade not selecting collection bundles transitively (e.g., selecting both style packages now upgrades through the family to the collection bundle in a single step)
|
|
5
|
+
|
|
6
|
+
## 2.19.1
|
|
7
|
+
|
|
8
|
+
- Fixed collection bundles not auto-selecting when a family at the same price is chosen — the bundle now correctly takes priority over the family itself
|
|
9
|
+
- Fixed potential NaN in price difference calculations when a SKU is missing from the price map
|
|
10
|
+
|
|
1
11
|
## 2.19.0
|
|
2
12
|
|
|
3
13
|
- Added a CORS error modal that shows actionable instructions when a tenant's website origin isn't in the allowed list, with automatic reload once fixed
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|