pond-ts 0.34.1 → 0.35.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,7 +8,8 @@ The `@pond-ts` packages — `pond-ts`, `@pond-ts/react`, `@pond-ts/charts`, and
8
8
  them all. Pre-1.0: minor bumps may include new features and type-level changes;
9
9
  patch bumps are strictly additive.
10
10
 
11
- [Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.34.1...HEAD
11
+ [Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.35.0...HEAD
12
+ [0.35.0]: https://github.com/pjm17971/pond-ts/compare/v0.34.1...v0.35.0
12
13
  [0.34.1]: https://github.com/pjm17971/pond-ts/compare/v0.34.0...v0.34.1
13
14
  [0.34.0]: https://github.com/pjm17971/pond-ts/compare/v0.33.0...v0.34.0
14
15
  [0.33.0]: https://github.com/pjm17971/pond-ts/compare/v0.32.0...v0.33.0
@@ -30,6 +31,23 @@ patch bumps are strictly additive.
30
31
  [0.19.0]: https://github.com/pjm17971/pond-ts/compare/v0.18.0...v0.19.0
31
32
  [0.18.0]: https://github.com/pjm17971/pond-ts/compare/v0.17.1...v0.18.0
32
33
 
34
+ ## [0.35.0] — 2026-07-02
35
+
36
+ A `@pond-ts/charts` release: per-series line dash patterns. `pond-ts`,
37
+ `@pond-ts/react`, and `@pond-ts/fit` carry no code changes — republished in
38
+ lock-step (their `pond-ts` / `@pond-ts/react` peer ranges widen to `^0.35.0`).
39
+
40
+ ### Added
41
+
42
+ - **Charts — per-series line dash (`LineStyle.dash`).** A theme's line style
43
+ accepts an optional `dash?: readonly number[]` — a px on/off pattern
44
+ (`[6, 4]` dashed, `[2, 3]` ≈ dotted; omit or `[]` = solid) applied to the
45
+ series stroke. Lets a theme set a **modeled / forecast** line (e.g. GARCH
46
+ vol) apart from an observed one at a glance. Distinct from a `GapMode`'s
47
+ inferred gap-bridge dashing (which marks *missing data*, not the whole
48
+ line). Additive: existing themes are unaffected; a solid line never touches
49
+ `setLineDash`. New `Charts/LineChart → LineStyles` story. (#313)
50
+
33
51
  ## [0.34.1] — 2026-07-01
34
52
 
35
53
  A `pond-ts` core patch: fixes a performance regression introduced in 0.34.0.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pond-ts",
3
- "version": "0.34.1",
3
+ "version": "0.35.0",
4
4
  "description": "TypeScript-first time series primitives",
5
5
  "license": "MIT",
6
6
  "repository": {