pond-ts 0.32.0 → 0.33.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 +37 -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.32.0...HEAD
11
+ [Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.33.0...HEAD
12
+ [0.33.0]: https://github.com/pjm17971/pond-ts/compare/v0.32.0...v0.33.0
12
13
  [0.32.0]: https://github.com/pjm17971/pond-ts/compare/v0.31.2...v0.32.0
13
14
  [0.31.2]: https://github.com/pjm17971/pond-ts/compare/v0.31.1...v0.31.2
14
15
  [0.31.1]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...v0.31.1
@@ -27,6 +28,41 @@ patch bumps are strictly additive.
27
28
  [0.19.0]: https://github.com/pjm17971/pond-ts/compare/v0.18.0...v0.19.0
28
29
  [0.18.0]: https://github.com/pjm17971/pond-ts/compare/v0.17.1...v0.18.0
29
30
 
31
+ ## [0.33.0] — 2026-06-30
32
+
33
+ A `@pond-ts/charts` release: a label opt-out for annotations plus interaction
34
+ fixes from an adversarial review of the #306 annotation system. `pond-ts`,
35
+ `@pond-ts/react`, and `@pond-ts/fit` carry no code changes — republished in
36
+ lock-step (their `pond-ts` / `@pond-ts/react` peer ranges widen to `^0.33.0`).
37
+
38
+ ### Added
39
+
40
+ - **Charts — annotation label opt-out.** `<Region>`, `<Marker>`, and
41
+ `<Baseline>` accept `label={false}` (or `label=""`) to render **no label
42
+ chip** — for an inert background mark (e.g. a `selectable={false}` highlight
43
+ band) where the auto-label would only show a raw axis value. Omitting `label`
44
+ still auto-labels; a string still renders it. `label` widens to
45
+ `string | false`. New `Highlight` story + Linux e2e baselines for the
46
+ `Annotations` stories. (#308)
47
+
48
+ ### Changed
49
+
50
+ - **Charts — `<Region>` / `<Marker>` / `<Baseline>` with `label=""` now render
51
+ no chip** (previously an empty, zero-width chip). The label-less path; pass a
52
+ non-empty string for a visible label. (#308)
53
+
54
+ ### Fixed
55
+
56
+ - **Charts — annotation edge-resize no longer inverts.** Dragging a `<Region>`
57
+ edge past the opposite one previously reported `{ from > to }`; it now pivots
58
+ around the fixed opposite edge, so the reported span stays ordered and a drag
59
+ either way re-opens the region instead of dead-ending at zero width. (#308)
60
+ - **Charts — annotation drag releases on `pointercancel`.** A system gesture
61
+ takeover (which fires `pointercancel`, not `pointerup`) no longer leaves a mark
62
+ stuck mid-drag. (#308)
63
+ - **Charts — single-annotation edit exits on an empty-plot click** even when the
64
+ mark is `editing` but not `selected`. (#308)
65
+
30
66
  ## [0.32.0] — 2026-06-29
31
67
 
32
68
  A `@pond-ts/charts` release: value-axis support across the fill/bar layers, plus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pond-ts",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "description": "TypeScript-first time series primitives",
5
5
  "license": "MIT",
6
6
  "repository": {