analytica-frontend-lib 1.1.88 → 1.1.90
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/Accordation/index.js +1 -1
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +1 -1
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.js +1 -1
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +1 -1
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Quiz/index.js +3 -7
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +3 -7
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/index.js +3 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/Quiz/index.mjs
CHANGED
|
@@ -4423,7 +4423,7 @@ var CardQuestions = forwardRef10(
|
|
|
4423
4423
|
}, ref) => {
|
|
4424
4424
|
const isDone = state === "done";
|
|
4425
4425
|
const stateLabel = isDone ? "Realizado" : "N\xE3o Realizado";
|
|
4426
|
-
const buttonLabel = isDone ? "Ver
|
|
4426
|
+
const buttonLabel = isDone ? "Ver Resultado" : "Responder";
|
|
4427
4427
|
return /* @__PURE__ */ jsxs16(
|
|
4428
4428
|
CardBase,
|
|
4429
4429
|
{
|
|
@@ -5991,18 +5991,14 @@ var QuizFooter = forwardRef11(
|
|
|
5991
5991
|
] })
|
|
5992
5992
|
] }),
|
|
5993
5993
|
/* @__PURE__ */ jsxs17("div", { className: "px-6 flex flex-row items-center gap-2 w-full", children: [
|
|
5994
|
-
/* @__PURE__ */
|
|
5994
|
+
/* @__PURE__ */ jsx21(
|
|
5995
5995
|
Button_default,
|
|
5996
5996
|
{
|
|
5997
5997
|
variant: "outline",
|
|
5998
5998
|
className: "w-full",
|
|
5999
5999
|
size: "small",
|
|
6000
6000
|
onClick: onGoToSimulated,
|
|
6001
|
-
children:
|
|
6002
|
-
"Ir para ",
|
|
6003
|
-
quizTypeLabel.toLocaleLowerCase(),
|
|
6004
|
-
"s"
|
|
6005
|
-
]
|
|
6001
|
+
children: quizTypeLabel === "Question\xE1rio" ? "Ir para aulas" : `Ir para ${quizTypeLabel.toLocaleLowerCase()}s`
|
|
6006
6002
|
}
|
|
6007
6003
|
),
|
|
6008
6004
|
/* @__PURE__ */ jsx21(Button_default, { className: "w-full", onClick: onDetailResult, children: "Detalhar resultado" })
|