@363045841yyt/klinechart 0.6.0 → 0.6.2
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/README.md +1 -0
- package/dist/index.cjs +9 -9
- package/dist/index.js +2907 -2634
- package/dist/klinechart.css +1 -1
- package/dist/src/core/chart.d.ts +83 -6
- package/dist/src/core/indicators/scheduler.d.ts +22 -0
- package/dist/src/core/layout/pane.d.ts +16 -1
- package/dist/src/core/paneRenderer.d.ts +2 -1
- package/dist/src/core/theme/fonts.d.ts +1 -0
- package/dist/src/debug/canvasProfiler.d.ts +21 -0
- package/dist/src/plugin/rendererPluginManager.d.ts +3 -2
- package/dist/src/plugin/types.d.ts +9 -0
- package/dist/src/utils/kLineDraw/axis.d.ts +0 -16
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -133,6 +133,7 @@ const config: SemanticChartConfig = {
|
|
|
133
133
|
|
|
134
134
|
## 🚀 What's New
|
|
135
135
|
|
|
136
|
+
- **v0.6.1** Dual-layer canvas architecture: Main + Overlay separation with UpdateLevel filtering, achieves stable **180fps with low jitter on 200Hz displays**
|
|
136
137
|
- **v0.6.0** Stateless indicator pipeline: MA/BOLL/EXPMA/ENE/RSI/CCI/STOCH/MOM/WMSR/KST/FASTK now use unified Calculator → Scheduler → StateStore → Renderer architecture for better performance and maintainability
|
|
137
138
|
- **v0.5.6** Logarithmic price axis with evenly distributed grid lines at pixel level
|
|
138
139
|
- **v0.5.2** Advanced drawing tools: parallel channel, regression channel, smooth top/bottom, and non-intersecting channel
|