@@ -35,14 +35,17 @@ export {
3535export { type HostStore } from "@/lib/types/state/options" ;
3636
3737/////////////////////////////////////////////////////////////////////
38- // Register standard Chartlets components
38+ // Register standard Chartlets components that can be rendered
39+ // by the Chartlets `Component` component.
40+ // Plugins may register their own components.
3941
4042import { registry } from "@/lib/component/Registry" ;
4143
4244import { Box } from "@/lib/components/Box" ;
4345import { Button } from "@/lib/components/Button" ;
4446import { Checkbox } from "@/lib/components/Checkbox" ;
4547import { CircularProgress } from "@/lib/components/CircularProgress" ;
48+ import { IconButton } from "@/lib/components/IconButton" ;
4649import { Plot } from "@/lib/components/Plot" ;
4750import { Select } from "@/lib/components/Select" ;
4851import { Typography } from "@/lib/components/Typography" ;
@@ -51,6 +54,7 @@ registry.register("Box", Box);
5154registry . register ( "Button" , Button ) ;
5255registry . register ( "Checkbox" , Checkbox ) ;
5356registry . register ( "CircularProgress" , CircularProgress ) ;
57+ registry . register ( "IconButton" , IconButton ) ;
5458registry . register ( "Plot" , Plot ) ;
5559registry . register ( "Select" , Select ) ;
5660registry . register ( "Typography" , Typography ) ;
0 commit comments