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.mjs
CHANGED
|
@@ -4432,7 +4432,6 @@ var CardQuestions = forwardRef10(
|
|
|
4432
4432
|
className,
|
|
4433
4433
|
onClickButton,
|
|
4434
4434
|
valueButton,
|
|
4435
|
-
label = "00",
|
|
4436
4435
|
...props
|
|
4437
4436
|
}, ref) => {
|
|
4438
4437
|
const isDone = state === "done";
|
|
@@ -4450,21 +4449,15 @@ var CardQuestions = forwardRef10(
|
|
|
4450
4449
|
children: [
|
|
4451
4450
|
/* @__PURE__ */ jsxs16("section", { className: "flex flex-col gap-1 flex-1 min-w-0", children: [
|
|
4452
4451
|
/* @__PURE__ */ jsx20("p", { className: "font-bold text-xs text-text-950 truncate", children: header }),
|
|
4453
|
-
/* @__PURE__ */
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
),
|
|
4463
|
-
/* @__PURE__ */ jsxs16("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
|
|
4464
|
-
isDone ? "Nota" : "Sem nota",
|
|
4465
|
-
isDone && /* @__PURE__ */ jsx20(Badge_default, { size: "medium", action: "success", children: label })
|
|
4466
|
-
] })
|
|
4467
|
-
] })
|
|
4452
|
+
/* @__PURE__ */ jsx20("div", { className: "flex flex-row gap-6 items-center", children: /* @__PURE__ */ jsx20(
|
|
4453
|
+
Badge_default,
|
|
4454
|
+
{
|
|
4455
|
+
size: "medium",
|
|
4456
|
+
variant: "solid",
|
|
4457
|
+
action: isDone ? "success" : "error",
|
|
4458
|
+
children: stateLabel
|
|
4459
|
+
}
|
|
4460
|
+
) })
|
|
4468
4461
|
] }),
|
|
4469
4462
|
/* @__PURE__ */ jsx20("span", { className: "flex-shrink-0", children: /* @__PURE__ */ jsx20(
|
|
4470
4463
|
Button_default,
|