@schoolio/player 1.4.6 → 1.4.7
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.js +11 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2802,6 +2802,17 @@ function QuizPlayer({
|
|
|
2802
2802
|
] }),
|
|
2803
2803
|
/* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { ...defaultStyles.question, position: "relative", paddingBottom: "40px" }, children: [
|
|
2804
2804
|
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: defaultStyles.questionText, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(TextToSpeech, { text: currentQuestion.question, inline: true, size: "md" }) }),
|
|
2805
|
+
currentQuestion.type === "multiple" && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: {
|
|
2806
|
+
marginTop: "8px",
|
|
2807
|
+
marginBottom: "12px",
|
|
2808
|
+
display: "inline-block",
|
|
2809
|
+
padding: "4px 10px",
|
|
2810
|
+
backgroundColor: "rgba(139, 92, 246, 0.1)",
|
|
2811
|
+
color: "#7c3aed",
|
|
2812
|
+
fontSize: "13px",
|
|
2813
|
+
fontStyle: "italic",
|
|
2814
|
+
borderRadius: "4px"
|
|
2815
|
+
}, children: "Select all that apply" }),
|
|
2805
2816
|
isExtraQuestion && /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
2806
2817
|
"button",
|
|
2807
2818
|
{
|