@commonsku/styles 1.17.76 → 1.17.77
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
|
@@ -2324,13 +2324,15 @@ type ThermometerProps = {
|
|
|
2324
2324
|
};
|
|
2325
2325
|
declare function Thermometer({ title, target, targetLabel, value, valueLabel, barColor, labelTextColor, isSecondary, ...props }: ThermometerProps): React__default.JSX.Element;
|
|
2326
2326
|
|
|
2327
|
+
type LightStatus = 'on' | 'off' | 'error';
|
|
2327
2328
|
type LightIndicatorProps = {
|
|
2328
2329
|
name: string;
|
|
2329
2330
|
on?: boolean;
|
|
2331
|
+
status?: LightStatus;
|
|
2330
2332
|
large?: boolean;
|
|
2331
2333
|
textProps?: React__default.HTMLAttributes<HTMLParagraphElement>;
|
|
2332
2334
|
};
|
|
2333
|
-
declare function LightIndicator({ name, on, large, textProps, ...props }: LightIndicatorProps): React__default.JSX.Element;
|
|
2335
|
+
declare function LightIndicator({ name, on, status, large, textProps, ...props }: LightIndicatorProps): React__default.JSX.Element;
|
|
2334
2336
|
|
|
2335
2337
|
type DefaultStarProps = React__default.PropsWithChildren<{
|
|
2336
2338
|
initialSelected?: boolean;
|