@oaknational/oak-components 1.7.0 → 1.7.2
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -2589,11 +2589,12 @@ type OakQuizHintProps = {
|
|
|
2589
2589
|
* Some content to give as a hint to answer a question
|
|
2590
2590
|
*/
|
|
2591
2591
|
hint: ReactNode;
|
|
2592
|
+
id: string;
|
|
2592
2593
|
};
|
|
2593
2594
|
/**
|
|
2594
2595
|
* Presents a button which will show a hint when clicked
|
|
2595
2596
|
*/
|
|
2596
|
-
declare const OakQuizHint: ({ hint }: OakQuizHintProps) => React__default.JSX.Element;
|
|
2597
|
+
declare const OakQuizHint: ({ hint, id }: OakQuizHintProps) => React__default.JSX.Element;
|
|
2597
2598
|
|
|
2598
2599
|
type OakQuizFeedbackProps = {
|
|
2599
2600
|
/**
|