analytica-frontend-lib 1.2.3 → 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/index.js
CHANGED
|
@@ -7629,7 +7629,6 @@ var CardQuestions = (0, import_react27.forwardRef)(
|
|
|
7629
7629
|
className,
|
|
7630
7630
|
onClickButton,
|
|
7631
7631
|
valueButton,
|
|
7632
|
-
label = "00",
|
|
7633
7632
|
...props
|
|
7634
7633
|
}, ref) => {
|
|
7635
7634
|
const isDone = state === "done";
|
|
@@ -7647,21 +7646,15 @@ var CardQuestions = (0, import_react27.forwardRef)(
|
|
|
7647
7646
|
children: [
|
|
7648
7647
|
/* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("section", { className: "flex flex-col gap-1 flex-1 min-w-0", children: [
|
|
7649
7648
|
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("p", { className: "font-bold text-xs text-text-950 truncate", children: header }),
|
|
7650
|
-
/* @__PURE__ */ (0, import_jsx_runtime43.
|
|
7651
|
-
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
),
|
|
7660
|
-
/* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
|
|
7661
|
-
isDone ? "Nota" : "Sem nota",
|
|
7662
|
-
isDone && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Badge_default, { size: "medium", action: "success", children: label })
|
|
7663
|
-
] })
|
|
7664
|
-
] })
|
|
7649
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "flex flex-row gap-6 items-center", children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
7650
|
+
Badge_default,
|
|
7651
|
+
{
|
|
7652
|
+
size: "medium",
|
|
7653
|
+
variant: "solid",
|
|
7654
|
+
action: isDone ? "success" : "error",
|
|
7655
|
+
children: stateLabel
|
|
7656
|
+
}
|
|
7657
|
+
) })
|
|
7665
7658
|
] }),
|
|
7666
7659
|
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: "flex-shrink-0", children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
7667
7660
|
Button_default,
|