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/Quiz/index.d.mts +2 -2
- package/dist/Quiz/index.d.ts +2 -2
- package/dist/Quiz/index.js +2 -2
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +2 -2
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10394,7 +10394,7 @@ var QuizHeader = () => {
|
|
|
10394
10394
|
}
|
|
10395
10395
|
);
|
|
10396
10396
|
};
|
|
10397
|
-
var QuizContent = (
|
|
10397
|
+
var QuizContent = ({ paddingBottom }) => {
|
|
10398
10398
|
const { getCurrentQuestion } = useQuizStore();
|
|
10399
10399
|
const currentQuestion = getCurrentQuestion();
|
|
10400
10400
|
const questionComponents = {
|
|
@@ -10408,7 +10408,7 @@ var QuizContent = (0, import_react32.forwardRef)(({ paddingBottom }) => {
|
|
|
10408
10408
|
};
|
|
10409
10409
|
const QuestionComponent = currentQuestion ? questionComponents[currentQuestion.questionType] : null;
|
|
10410
10410
|
return QuestionComponent ? /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(QuestionComponent, { paddingBottom }) : null;
|
|
10411
|
-
}
|
|
10411
|
+
};
|
|
10412
10412
|
var QuizQuestionList = ({
|
|
10413
10413
|
filterType = "all",
|
|
10414
10414
|
onQuestionClick
|