Skip to content

Commit 1140346

Browse files
committed
0.0.24
1 parent a5f6c2a commit 1140346

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

chartlets.js/CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## Version 0.0.23 (from 2024/11/19)
1+
## Version 0.0.24 (from 2024/11/23)
2+
3+
* Exporting required `HostStore` type.
4+
5+
## Version 0.0.23 (from 2024/11/23)
26

37
* Introduced new interface `HostState` that applications may implement
48
to provide computed properties, i.e., a derived state. (#43)

chartlets.js/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chartlets.js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chartlets",
3-
"version": "0.0.23",
3+
"version": "0.0.24",
44
"description": "An experimental library for integrating interactive charts into existing JavaScript applications.",
55
"type": "module",
66
"files": [

chartlets.js/src/lib/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ export {
3131
useComponentChangeHandlers,
3232
makeContributionsHook,
3333
} from "@/lib/hooks";
34+
// Application interface
35+
export { type HostStore } from "@/lib/types/state/options";
3436

3537
/////////////////////////////////////////////////////////////////////
3638
// Register standard Chartlets components

0 commit comments

Comments
 (0)