pond-ts 0.44.0 → 0.44.1
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 +24 -1
- 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`,
|
|
|
8
8
|
tag, so this file covers them all. Pre-1.0: minor bumps may include new features
|
|
9
9
|
and type-level changes; patch bumps are strictly additive.
|
|
10
10
|
|
|
11
|
-
[Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.44.
|
|
11
|
+
[Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.44.1...HEAD
|
|
12
|
+
[0.44.1]: https://github.com/pjm17971/pond-ts/compare/v0.44.0...v0.44.1
|
|
12
13
|
[0.44.0]: https://github.com/pjm17971/pond-ts/compare/v0.43.0...v0.44.0
|
|
13
14
|
[0.43.0]: https://github.com/pjm17971/pond-ts/compare/v0.42.0...v0.43.0
|
|
14
15
|
[0.42.0]: https://github.com/pjm17971/pond-ts/compare/v0.41.0...v0.42.0
|
|
@@ -42,6 +43,28 @@ and type-level changes; patch bumps are strictly additive.
|
|
|
42
43
|
|
|
43
44
|
## [Unreleased]
|
|
44
45
|
|
|
46
|
+
## [0.44.1] — 2026-07-13
|
|
47
|
+
|
|
48
|
+
A `@pond-ts/charts` patch: fixes trading-time axis tick density. `pond-ts`,
|
|
49
|
+
`@pond-ts/react`, `@pond-ts/fit`, and `@pond-ts/financial` carry no code
|
|
50
|
+
changes — republished in lock-step; their `^0.44.0` peer ranges already
|
|
51
|
+
admit this patch.
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
|
|
55
|
+
- **charts:** trading-time axis tick density now derives from plot width
|
|
56
|
+
instead of a fixed count of 5. The trading scale's tick `count` caps how many
|
|
57
|
+
calendar buckets `coarsenCalendar` may keep, so the fixed count coarsened any
|
|
58
|
+
≳6-month daily view to quarter or year grain — a 1-year daily chart on a
|
|
59
|
+
~900px plot showed 2 ticks; it now lands on month grain (~12). Continuous
|
|
60
|
+
(non-trading) time and value axes keep the fixed default, unchanged. The
|
|
61
|
+
count is shared through the container frame (`xTickCount`), so axis labels,
|
|
62
|
+
x gridlines, session dividers, and the cursor-time formatter all derive from
|
|
63
|
+
the same instants — previously the label formatter anchored at the scale's
|
|
64
|
+
internal default (10) while ticks used 5, which is why sparse year-grain
|
|
65
|
+
ticks were labelled with dates (`Jun 22`) instead of years. (Tidal friction
|
|
66
|
+
report, charts 0.44.)
|
|
67
|
+
|
|
45
68
|
## [0.44.0] — 2026-07-11
|
|
46
69
|
|
|
47
70
|
The **value-axis charts** release: cross-sectional data (a volatility smile keyed
|