@useloops/design-system 1.4.398 → 1.4.400
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/esm/index.js +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2017,8 +2017,15 @@ interface TestStatusProps {
|
|
|
2017
2017
|
sizing?: 'md' | 'sm' | 'xs';
|
|
2018
2018
|
}
|
|
2019
2019
|
|
|
2020
|
+
interface TopNumber {
|
|
2021
|
+
number: number | string;
|
|
2022
|
+
totalNumber?: number;
|
|
2023
|
+
label: string;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2020
2026
|
interface ExtendedTestStatusProps {
|
|
2021
2027
|
status: TestStatusProps['status'];
|
|
2028
|
+
segments: TopNumber[];
|
|
2022
2029
|
}
|
|
2023
2030
|
declare const ExtendedTestStatus: FunctionComponent<ExtendedTestStatusProps>;
|
|
2024
2031
|
|
|
@@ -2065,6 +2072,7 @@ interface GraphBarProps {
|
|
|
2065
2072
|
type: 'emoji' | 'icon';
|
|
2066
2073
|
name: CommentEmotion | IconName$2;
|
|
2067
2074
|
};
|
|
2075
|
+
id: string;
|
|
2068
2076
|
label: string;
|
|
2069
2077
|
value: number;
|
|
2070
2078
|
tooltipContent?: ReactNode;
|