From 5ca95bb586ac004414c6cf47cc194e92b3b150a7 Mon Sep 17 00:00:00 2001 From: Julio Zynger Date: Thu, 28 Apr 2022 13:58:15 +0200 Subject: [PATCH] Remove @public annotations from non-exported components Signed-off-by: Julio Zynger --- plugins/codescene/src/components/Gauge/Gauge.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/plugins/codescene/src/components/Gauge/Gauge.tsx b/plugins/codescene/src/components/Gauge/Gauge.tsx index 2ea63126aa..97e6b33daf 100644 --- a/plugins/codescene/src/components/Gauge/Gauge.tsx +++ b/plugins/codescene/src/components/Gauge/Gauge.tsx @@ -43,7 +43,6 @@ const useStyles = makeStyles( { name: 'CodeSceneGauge' }, ); -/** @public */ export type GaugeProps = { value: number; max: number; @@ -51,14 +50,12 @@ export type GaugeProps = { tooltipText: string; }; -/** @public */ export type GaugePropsGetColorOptions = { palette: BackstagePalette; value: number; max: number; }; -/** @public */ export type GaugePropsGetColor = (args: GaugePropsGetColorOptions) => string; export const getProgressColor: GaugePropsGetColor = ({ @@ -82,8 +79,6 @@ export const getProgressColor: GaugePropsGetColor = ({ /** * Circular Progress Bar * - * @public - * */ export function Gauge(props: GaugeProps) { const classes = useStyles(props);