@pond-ts/process 0.54.0 → 0.55.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 +18 -38
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -8,7 +8,8 @@ The `@pond-ts` packages — `pond-ts`, `@pond-ts/react`, `@pond-ts/charts`,
8
8
  under a single `v*` tag, so this file covers them all. Pre-1.0: minor bumps may
9
9
  include new features and type-level changes; patch bumps are strictly additive.
10
10
 
11
- [Unreleased]: https://github.com/pond-ts/pond/compare/v0.54.0...HEAD
11
+ [Unreleased]: https://github.com/pond-ts/pond/compare/v0.55.0...HEAD
12
+ [0.55.0]: https://github.com/pond-ts/pond/compare/v0.54.0...v0.55.0
12
13
  [0.54.0]: https://github.com/pond-ts/pond/compare/v0.53.1...v0.54.0
13
14
  [0.53.1]: https://github.com/pond-ts/pond/compare/v0.53.0...v0.53.1
14
15
  [0.53.0]: https://github.com/pond-ts/pond/compare/v0.52.0...v0.53.0
@@ -55,6 +56,8 @@ include new features and type-level changes; patch bumps are strictly additive.
55
56
 
56
57
  ## [Unreleased]
57
58
 
59
+ ## [0.55.0] — 2026-08-04
60
+
58
61
  ### Added
59
62
 
60
63
  - **process:** **`@pond-ts/process` publishes for the first time —
@@ -122,13 +125,21 @@ label={…}>` / `<BoxList series>` take a `TimeSeries` / `ValueSeries`
122
125
  the table-shaped cases it can't be (link labels, cells, expanders, custom
123
126
  sort).
124
127
 
125
- ### Fixed
128
+ - **charts:** **`BarStyle.hover` — a distinct hover colour for bars**
129
+ ([#577](https://github.com/pond-ts/pond/issues/577)). A theme may now give
130
+ bars a three-step emphasis — `fill` at rest → `hover` under the pointer →
131
+ `highlight` (plus the outline) when selected. Previously one `highlight`
132
+ served both live states, so hover and select differed only by the presence of
133
+ an outline; `ScatterStyle` has carried distinct rest / selected treatments
134
+ (`outline` vs `selectedOutline`) all along, making bars the less expressive
135
+ layer for the same two-state interaction.
126
136
 
127
- - **charts:** toggling **`<ChartContainer grid>`** now repaints immediately.
128
- `Layers`' draw callback read `container.grid` but didn't depend on it, so
129
- switching gridlines off changed nothing until an unrelated dependency moved
130
- in practice you had to pan or zoom a little to force the update. The same
131
- omission covered `sessionDividers` and `xKind`.
137
+ **Optional, with a `highlight` fallback**, so no existing theme changes
138
+ meaning or rendering a theme that wants the distinction adds one colour.
139
+ Selection outranks hover on a bar that is both. Single-series only: a stacked
140
+ or per-bin-coloured bar has no separate highlight colour to replace (it pops
141
+ its _own_ fill, so a red/green volume bar keeps its meaning while live), and
142
+ that convention is unchanged.
132
143
 
133
144
  ### Changed
134
145
 
@@ -231,37 +242,6 @@ label={…}>` / `<BoxList series>` take a `TimeSeries` / `ValueSeries`
231
242
  bar — the rule `barIndexAtTime` already documented, so the two now agree by
232
243
  construction.
233
244
 
234
- ### Added
235
-
236
- - **charts:** **`BarStyle.hover` — a distinct hover colour for bars**
237
- ([#577](https://github.com/pond-ts/pond/issues/577)). A theme may now give
238
- bars a three-step emphasis — `fill` at rest → `hover` under the pointer →
239
- `highlight` (plus the outline) when selected. Previously one `highlight`
240
- served both live states, so hover and select differed only by the presence of
241
- an outline; `ScatterStyle` has carried distinct rest / selected treatments
242
- (`outline` vs `selectedOutline`) all along, making bars the less expressive
243
- layer for the same two-state interaction.
244
-
245
- **Optional, with a `highlight` fallback**, so no existing theme changes
246
- meaning or rendering — a theme that wants the distinction adds one colour.
247
- Selection outranks hover on a bar that is both. Single-series only: a stacked
248
- or per-bin-coloured bar has no separate highlight colour to replace (it pops
249
- its _own_ fill, so a red/green volume bar keeps its meaning while live), and
250
- that convention is unchanged.
251
-
252
- - **docs theme:** **a sequential ramp — `seq1…seq8` — for charts with more
253
- series than the categorical set has hues.** `--pond-viz-1…5` were, and
254
- remain, the categorical set; a chart needing more slots (an eight-source
255
- stack, a wall of climate stripes) now steps **tonally** through the brand
256
- teal instead of introducing competing hues. Eight steps, evenly spaced
257
- (~ΔL\* 9 in CIELAB), defined for light and dark, each mode's ramp containing
258
- that mode's `--pond-viz-1` exactly. Exposed as `line` / `area` / `bar` theme
259
- roles on `docsTheme` (Storybook) and the docs site's `useSiteChartTheme`,
260
- and as an array from the site's `useSequentialRamp()`. Dev-only: the ramp
261
- lives in the `docs-theme.fixture.ts` Storybook fixture and the website's
262
- CSS, both excluded from the published `@pond-ts/charts` build — the library
263
- still ships no palette.
264
-
265
245
  ### Fixed
266
246
 
267
247
  - **process:** **audit hardening — five wrong-answer / silent-acceptance paths
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pond-ts/process",
3
- "version": "0.54.0",
3
+ "version": "0.55.0",
4
4
  "description": "Computations as data over pond-ts: processing graphs authored fluently or composed as JSON, resolved against a declared op vocabulary with content-addressed caching, provenance, and per-node timings. Experimental, pre-1.0.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,7 +41,7 @@
41
41
  "verify": "npm run format:check && npm run build && npm test"
42
42
  },
43
43
  "peerDependencies": {
44
- "pond-ts": "^0.54.0"
44
+ "pond-ts": "^0.55.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "typescript": "^5.6.3",