@voila.dev/ui-chart 1.1.9 → 1.1.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voila.dev/ui-chart",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "type": "module",
5
5
  "description": "Charts with zero charting library. SVG you can read, scales included.",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@ import { useChartContext } from "#/context/chart-context.tsx";
31
31
  * `Chart.Root` frames the picture and `Chart.*` draws into it:
32
32
  *
33
33
  * ```tsx
34
- * <Chart.Root config={config} data={data} x={{ key: "month" }} y={{ keys: ["missions"] }}>
34
+ * <Chart.Root config={config} data={data} x={{ key: "month" }} y={{ keys: ["projects"] }}>
35
35
  * <Chart.Grid />
36
36
  * <Chart.XAxis />
37
37
  * <Chart.Cursor />