@trackunit/react-chart-components 0.0.100-alpha-a6869e1d4c.0 → 0.0.101

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,15 +1,15 @@
1
1
  {
2
2
  "name": "@trackunit/react-chart-components",
3
- "version": "0.0.100-alpha-a6869e1d4c.0",
3
+ "version": "0.0.101",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
7
7
  "node": ">=18.x"
8
8
  },
9
9
  "dependencies": {
10
- "@trackunit/css-class-variance-utilities": "0.0.13-alpha-a6869e1d4c.0",
11
- "@trackunit/react-components": "0.1.155-alpha-a6869e1d4c.0",
12
- "@trackunit/ui-design-tokens": "0.0.76-alpha-a6869e1d4c.0",
10
+ "@trackunit/css-class-variance-utilities": "0.0.14",
11
+ "@trackunit/react-components": "0.1.156",
12
+ "@trackunit/ui-design-tokens": "0.0.77",
13
13
  "echarts": "5.4.0",
14
14
  "echarts-for-react": "3.0.2",
15
15
  "react": "18.2.0"
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface DonutChartProps {
3
2
  /**
4
3
  * The color to be used for the count portion in the chart.
package/src/KPI/Kpi.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { CommonProps } from "@trackunit/react-components";
3
2
  export interface KpiProps extends CommonProps {
4
3
  /**
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export interface ILegendItem {
3
2
  label?: string;
4
3
  selected?: boolean;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { CommonProps } from "@trackunit/react-components";
3
2
  type Size = "compact" | "full";
4
3
  export interface ChartData<T extends object = object> {