analytica-frontend-lib 1.2.4 → 1.2.6
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/DropdownMenu/index.d.mts +1 -0
- package/dist/DropdownMenu/index.d.ts +1 -0
- package/dist/DropdownMenu/index.js +9 -2
- package/dist/DropdownMenu/index.js.map +1 -1
- package/dist/DropdownMenu/index.mjs +9 -2
- package/dist/DropdownMenu/index.mjs.map +1 -1
- package/dist/NotificationCard/index.js +9 -2
- package/dist/NotificationCard/index.js.map +1 -1
- package/dist/NotificationCard/index.mjs +9 -2
- package/dist/NotificationCard/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/Search/index.js +9 -2
- package/dist/Search/index.js.map +1 -1
- package/dist/Search/index.mjs +9 -2
- package/dist/Search/index.mjs.map +1 -1
- package/dist/index.css +0 -4
- package/dist/index.css.map +1 -1
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -18
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +0 -4
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
|
@@ -1046,7 +1046,6 @@ var CardQuestions = (0, import_react2.forwardRef)(
|
|
|
1046
1046
|
className,
|
|
1047
1047
|
onClickButton,
|
|
1048
1048
|
valueButton,
|
|
1049
|
-
label = "00",
|
|
1050
1049
|
...props
|
|
1051
1050
|
}, ref) => {
|
|
1052
1051
|
const isDone = state === "done";
|
|
@@ -1064,21 +1063,15 @@ var CardQuestions = (0, import_react2.forwardRef)(
|
|
|
1064
1063
|
children: [
|
|
1065
1064
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { className: "flex flex-col gap-1 flex-1 min-w-0", children: [
|
|
1066
1065
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { className: "font-bold text-xs text-text-950 truncate", children: header }),
|
|
1067
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
),
|
|
1077
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
|
|
1078
|
-
isDone ? "Nota" : "Sem nota",
|
|
1079
|
-
isDone && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Badge_default, { size: "medium", action: "success", children: label })
|
|
1080
|
-
] })
|
|
1081
|
-
] })
|
|
1066
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "flex flex-row gap-6 items-center", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1067
|
+
Badge_default,
|
|
1068
|
+
{
|
|
1069
|
+
size: "medium",
|
|
1070
|
+
variant: "solid",
|
|
1071
|
+
action: isDone ? "success" : "error",
|
|
1072
|
+
children: stateLabel
|
|
1073
|
+
}
|
|
1074
|
+
) })
|
|
1082
1075
|
] }),
|
|
1083
1076
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "flex-shrink-0", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1084
1077
|
Button_default,
|