analytica-frontend-lib 1.1.74 → 1.1.75

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.mjs CHANGED
@@ -10366,7 +10366,7 @@ var QuizHeader = () => {
10366
10366
  }
10367
10367
  );
10368
10368
  };
10369
- var QuizContent = forwardRef20(({ paddingBottom }) => {
10369
+ var QuizContent = ({ paddingBottom }) => {
10370
10370
  const { getCurrentQuestion } = useQuizStore();
10371
10371
  const currentQuestion = getCurrentQuestion();
10372
10372
  const questionComponents = {
@@ -10380,7 +10380,7 @@ var QuizContent = forwardRef20(({ paddingBottom }) => {
10380
10380
  };
10381
10381
  const QuestionComponent = currentQuestion ? questionComponents[currentQuestion.questionType] : null;
10382
10382
  return QuestionComponent ? /* @__PURE__ */ jsx48(QuestionComponent, { paddingBottom }) : null;
10383
- });
10383
+ };
10384
10384
  var QuizQuestionList = ({
10385
10385
  filterType = "all",
10386
10386
  onQuestionClick