calcsuite-react 1.1.2 → 1.1.4

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 **CalcSuite** are documented here. This project adheres to
4
4
  [Semantic Versioning](https://semver.org/).
5
5
 
6
+ ## [1.1.4] — 2026-09-04
7
+
8
+ ### Fixed
9
+ - **Build no longer fails without `jspdf` / `xlsx`.** The lazy PDF/XLSX exports carried only Vite's `/* @vite-ignore */`, which meant nothing to webpack/Turbopack — so a consumer's Next.js build tried to resolve the optional peers at bundle time and hard-failed (`Module not found: Can't resolve 'jspdf' / 'xlsx'`) even for apps that never export to those formats. The dynamic imports now also carry `/* webpackIgnore: true */` and `/* turbopackIgnore: true */`, so consumer bundlers leave them as native runtime `import()`s. Installing `calcsuite-react` alone is enough to build; PDF/XLSX still degrade gracefully at runtime with a friendly error until you add the optional peer.
10
+
11
+ ## [1.1.3] — 2026-09-04
12
+
13
+ ### Fixed
14
+ - **Readable text on accent surfaces.** Buttons, active nav, segmented toggles, the FAB and scientific keys now use each preset's own contrast colour (`--fc-accent-ink`) instead of a hardcoded white / dark-mode override — so the default Cyan (and Purple/Blue) accents no longer render near-black text on a mid-tone fill in dark mode.
15
+ - **"Solved" field contrast.** The computed-value field dropped its muddy accent-tinted fill (it was low-contrast on dark themes); the dashed accent border + "solved" note still mark it.
16
+
17
+ ### Added
18
+ - **Brand mark.** The calculator glyph (the default launcher/FAB icon) now sits beside the **CalcSuite** title in the dialog header, with the title and "an AceCBM product" subtitle stacked.
19
+
6
20
  ## [1.1.2] — 2026-09-04
7
21
 
8
22
  ### Fixed