digitinary-ui 1.0.179 → 1.0.180

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.
@@ -3,7 +3,7 @@ import './style.scss';
3
3
  interface KebabMenuProps {
4
4
  actions: React.ReactNode[];
5
5
  className?: string;
6
- menuButton: React.ReactNode;
6
+ menuButton?: React.ReactNode;
7
7
  }
8
8
  declare const EllipsisMenu: ({ actions, className, menuButton }: KebabMenuProps) => import("react/jsx-runtime").JSX.Element;
9
9
  export default EllipsisMenu;
@@ -0,0 +1,4 @@
1
+ import './style.scss';
2
+ import { GaugeChartProps } from './types';
3
+ declare const GaugeChart: ({ percentage, charTtitle, label, diameter, color, backColor, }: GaugeChartProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default GaugeChart;
@@ -0,0 +1,8 @@
1
+ export type GaugeChartProps = {
2
+ percentage: number;
3
+ charTtitle?: string;
4
+ label?: string;
5
+ diameter?: number;
6
+ color?: string;
7
+ backColor?: string;
8
+ };
@@ -52,5 +52,6 @@ export { default as Toast } from './Toast/Toast';
52
52
  export { default as EllipsisMenu } from './EllipsisMenu';
53
53
  export { default as SelectGroupV2 } from './SelectGroupV2/SelectGroupV2';
54
54
  export { default as TableV2 } from './TableV2';
55
+ export { default as GaugeChart } from './GaugeChart';
55
56
  export { default as ArenaDatePicker } from './ArenaDatePicker/index';
56
57
  export { default as ArenaDateRange } from './ArenaDateRange/index';