pond-ts 0.40.0 → 0.41.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 +29 -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.40.0...HEAD
11
+ [Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.41.0...HEAD
12
+ [0.41.0]: https://github.com/pjm17971/pond-ts/compare/v0.40.0...v0.41.0
12
13
  [0.40.0]: https://github.com/pjm17971/pond-ts/compare/v0.39.0...v0.40.0
13
14
  [0.39.0]: https://github.com/pjm17971/pond-ts/compare/v0.38.0...v0.39.0
14
15
  [0.38.0]: https://github.com/pjm17971/pond-ts/compare/v0.37.0...v0.38.0
@@ -38,6 +39,33 @@ patch bumps are strictly additive.
38
39
 
39
40
  ## [Unreleased]
40
41
 
42
+ ## [0.41.0] — 2026-07-06
43
+
44
+ ### Added
45
+
46
+ - **`@pond-ts/charts`: `<Candlestick>` — a first-class OHLC mark** (Phase 1 of
47
+ the financial-charts RFC, Tidal-driven). `open`/`high`/`low`/`close` props
48
+ default to the conventional names (`<Candlestick series={s} />` for a standard
49
+ OHLCV series); draws-only (body extents derived per-mark); **point- or
50
+ interval-keyed** so raw daily OHLCV feeds straight in (no `aggregate`), while a
51
+ weekly/monthly rollup is the identical call. `variant: 'candle' | 'bar' |
52
+ 'hollow'`, `colorBy: 'direction' | 'series'`, `gap`, and `showOHLC` (four-pill
53
+ O/H/L/C hover readout; default is a single `close` pill keyed on `as`).
54
+ Participates in the crosshair x-snap (unlike `BoxPlot`). Supersedes `BoxPlot
55
+ shape='solid'` for OHLC data.
56
+ - **`@pond-ts/charts`: `ohlcFromTimeSeries`** + the `OhlcSeries` / `OhlcColumns`
57
+ types — read four price columns into a chart-ready columnar view (exported
58
+ alongside the existing `*FromTimeSeries` builders).
59
+
60
+ ### Changed
61
+
62
+ - **`@pond-ts/charts`: `ChartTheme` gains a required `candle` slot** (a
63
+ `CandleStyle`: `rising`/`falling`/`neutral` body+wick pairs, `bodyWidth`,
64
+ `wickWidth`). `defaultTheme` and `estelaTheme` ship neutral, **unbranded**
65
+ up/down pairs — market green/red is a `cssVarTheme` overlay, not a library
66
+ default. **Breaking (type-level):** a hand-built `ChartTheme` that doesn't
67
+ derive from a shipped theme must add a `candle` slot to compile.
68
+
41
69
  ## [0.40.0] — 2026-07-05
42
70
 
43
71
  A **core + charts** release from the estela `DataChart`-port friction wave.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pond-ts",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
4
4
  "description": "TypeScript-first time series primitives",
5
5
  "license": "MIT",
6
6
  "repository": {