@commonsku/styles 1.14.0 → 1.14.1

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/dist/index.d.ts CHANGED
@@ -1612,8 +1612,8 @@ declare const Link: StyledComponent<React$1.FC<{
1612
1612
  } & ({} | {
1613
1613
  children?: React$1.ReactNode;
1614
1614
  })) & {
1615
- as?: keyof JSX.IntrinsicElements | React$1.ComponentType<any> | undefined;
1616
- forwardedAs?: keyof JSX.IntrinsicElements | React$1.ComponentType<any> | undefined;
1615
+ as?: string | React$1.ComponentType<any> | undefined;
1616
+ forwardedAs?: string | React$1.ComponentType<any> | undefined;
1617
1617
  }) & SharedStyleTypes>, any, {}, never>;
1618
1618
  declare const Number: React$1.FC<{
1619
1619
  num: number;
@@ -1859,8 +1859,11 @@ declare type ThermometerProps = {
1859
1859
  target: number;
1860
1860
  value1: number;
1861
1861
  value1Label?: string | ((v: number) => string);
1862
+ barColor?: string;
1863
+ labelTextColor?: string;
1864
+ isSecondary?: boolean;
1862
1865
  };
1863
- declare function Thermometer({ title, target, value1, value1Label, ...props }: ThermometerProps): JSX.Element;
1866
+ declare function Thermometer({ title, target, value1, value1Label, barColor, labelTextColor, isSecondary, ...props }: ThermometerProps): JSX.Element;
1864
1867
 
1865
1868
  declare function TableIcon({ width, height, viewBox, fill, style, ...props }: React$1.PropsWithChildren<{
1866
1869
  width?: number | string;