|
| 1 | +## Version 0.1.0 (in development) |
| 2 | + |
| 3 | +* Reorganised Chartlets project to better separate demo from library code. |
| 4 | + Using monorepo layout for `chartlets.js` with workspaces `lib` and `demo` |
| 5 | + that host the packages for `chartlets` and `chartlets-demo`. |
| 6 | + |
| 7 | +* Other code reorganisations: |
| 8 | + - moved `component/Registry` into `store` |
| 9 | + - renamed module `component` into `components` |
| 10 | + - no longer exposing `Registry` type |
| 11 | + |
| 12 | +* Chartlets now allows for plugins that can provide individual component |
| 13 | + implementations. |
| 14 | + The Vega-based chart and MUI components are now optional and have been |
| 15 | + moved into respective plugin modules `chartlets/plugins/vega` and |
| 16 | + `chartlets/plugins/mui`. |
| 17 | + To activate them, use the new `plugins: PluginLike[]` option |
| 18 | + of `FrameworkOptions`: |
| 19 | + ```TypeScript |
| 20 | + import { configureFramework } from "chartlets"; |
| 21 | + import mui from "chartlets/plugins/mui"; |
| 22 | + import vega from "chartlets/plugins/vega"; |
| 23 | + |
| 24 | + configureFramework({ plugins: [mui(), vega()], ... }); |
| 25 | + ``` |
| 26 | + |
| 27 | +* Renamed `Plot` component into `VegaChart`. |
| 28 | + |
| 29 | +* The new `VegaChart` component respects a `theme` property. If not given, |
| 30 | + it will respect the current theme mode `"dark"` otherwise fallback to the |
| 31 | + Vega default theme. |
| 32 | + |
| 33 | +* The demo application now allows for switching the theme mode between |
| 34 | + dark, light, and system mode. |
| 35 | + |
| 36 | +* Changed the yet unused descriptor type `CbFunction` for callback functions. |
| 37 | + - using `schema` instead of `type` property for callback arguments |
| 38 | + - using `return` object with `schema` property for callback return values |
| 39 | + |
| 40 | +* New (MUI) components |
| 41 | + - `LinearProgress` |
| 42 | + - `RadioGroup` and `Radio` |
| 43 | + - `Switch` |
| 44 | + - `Tabs` |
| 45 | + |
| 46 | +* Supporting `tooltip` property for interactive MUI components. |
| 47 | + |
| 48 | +## Version 0.0.29 (from 2024/11/26) |
| 49 | + |
| 50 | +* Resolved warnings that appeared when using Vega charts. |
| 51 | + |
1 | 52 | ## Version 0.0.28 (from 2024/11/26) |
2 | 53 |
|
3 | 54 | * Updated docs. |
|
0 commit comments