analytica-frontend-lib 1.1.24 → 1.1.25

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.
@@ -69,6 +69,6 @@ declare const CheckBox: react.ForwardRefExoticComponent<{
69
69
  className?: string;
70
70
  /** Label CSS classes */
71
71
  labelClassName?: string;
72
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "type"> & react.RefAttributes<HTMLInputElement>>;
72
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "size"> & react.RefAttributes<HTMLInputElement>>;
73
73
 
74
74
  export { type CheckBoxProps, CheckBox as default };
@@ -69,6 +69,6 @@ declare const CheckBox: react.ForwardRefExoticComponent<{
69
69
  className?: string;
70
70
  /** Label CSS classes */
71
71
  labelClassName?: string;
72
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "type"> & react.RefAttributes<HTMLInputElement>>;
72
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "size"> & react.RefAttributes<HTMLInputElement>>;
73
73
 
74
74
  export { type CheckBoxProps, CheckBox as default };
@@ -5510,7 +5510,7 @@ var QuizFooter = (0, import_react12.forwardRef)(
5510
5510
  const [modalResultOpen, setModalResultOpen] = (0, import_react12.useState)(false);
5511
5511
  const [modalNavigateOpen, setModalNavigateOpen] = (0, import_react12.useState)(false);
5512
5512
  const [modalResolutionOpen, setModalResolutionOpen] = (0, import_react12.useState)(false);
5513
- const [filterType, setFilterType] = (0, import_react12.useState)(void 0);
5513
+ const [filterType, setFilterType] = (0, import_react12.useState)("all");
5514
5514
  const unansweredQuestions = getUnansweredQuestionsFromUserAnswers();
5515
5515
  const allQuestions = getTotalQuestions();
5516
5516
  const handleFinishQuiz = async () => {