analytica-frontend-lib 1.2.4 → 1.2.5
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 +9 -16
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +9 -16
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.d.mts +0 -1
- package/dist/Card/index.d.ts +0 -1
- package/dist/Card/index.js +9 -16
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +9 -16
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Quiz/index.js +9 -16
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +9 -16
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/index.js +9 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/Quiz/index.js
CHANGED
|
@@ -4407,7 +4407,6 @@ var CardQuestions = (0, import_react13.forwardRef)(
|
|
|
4407
4407
|
className,
|
|
4408
4408
|
onClickButton,
|
|
4409
4409
|
valueButton,
|
|
4410
|
-
label = "00",
|
|
4411
4410
|
...props
|
|
4412
4411
|
}, ref) => {
|
|
4413
4412
|
const isDone = state === "done";
|
|
@@ -4425,21 +4424,15 @@ var CardQuestions = (0, import_react13.forwardRef)(
|
|
|
4425
4424
|
children: [
|
|
4426
4425
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { className: "flex flex-col gap-1 flex-1 min-w-0", children: [
|
|
4427
4426
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("p", { className: "font-bold text-xs text-text-950 truncate", children: header }),
|
|
4428
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
4437
|
-
),
|
|
4438
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
|
|
4439
|
-
isDone ? "Nota" : "Sem nota",
|
|
4440
|
-
isDone && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Badge_default, { size: "medium", action: "success", children: label })
|
|
4441
|
-
] })
|
|
4442
|
-
] })
|
|
4427
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "flex flex-row gap-6 items-center", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
4428
|
+
Badge_default,
|
|
4429
|
+
{
|
|
4430
|
+
size: "medium",
|
|
4431
|
+
variant: "solid",
|
|
4432
|
+
action: isDone ? "success" : "error",
|
|
4433
|
+
children: stateLabel
|
|
4434
|
+
}
|
|
4435
|
+
) })
|
|
4443
4436
|
] }),
|
|
4444
4437
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "flex-shrink-0", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
4445
4438
|
Button_default,
|