@useloops/design-system 1.4.398 → 1.4.399
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 +9 -0
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2017,8 +2017,17 @@ 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
|
+
questions?: TopNumber;
|
|
2029
|
+
answers?: TopNumber;
|
|
2030
|
+
comments?: TopNumber;
|
|
2022
2031
|
}
|
|
2023
2032
|
declare const ExtendedTestStatus: FunctionComponent<ExtendedTestStatusProps>;
|
|
2024
2033
|
|