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.
@@ -1026,7 +1026,6 @@ var CardQuestions = forwardRef(
1026
1026
  className,
1027
1027
  onClickButton,
1028
1028
  valueButton,
1029
- label = "00",
1030
1029
  ...props
1031
1030
  }, ref) => {
1032
1031
  const isDone = state === "done";
@@ -1044,21 +1043,15 @@ var CardQuestions = forwardRef(
1044
1043
  children: [
1045
1044
  /* @__PURE__ */ jsxs7("section", { className: "flex flex-col gap-1 flex-1 min-w-0", children: [
1046
1045
  /* @__PURE__ */ jsx9("p", { className: "font-bold text-xs text-text-950 truncate", children: header }),
1047
- /* @__PURE__ */ jsxs7("div", { className: "flex flex-row gap-6 items-center", children: [
1048
- /* @__PURE__ */ jsx9(
1049
- Badge_default,
1050
- {
1051
- size: "medium",
1052
- variant: "solid",
1053
- action: isDone ? "success" : "error",
1054
- children: stateLabel
1055
- }
1056
- ),
1057
- /* @__PURE__ */ jsxs7("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
1058
- isDone ? "Nota" : "Sem nota",
1059
- isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: label })
1060
- ] })
1061
- ] })
1046
+ /* @__PURE__ */ jsx9("div", { className: "flex flex-row gap-6 items-center", children: /* @__PURE__ */ jsx9(
1047
+ Badge_default,
1048
+ {
1049
+ size: "medium",
1050
+ variant: "solid",
1051
+ action: isDone ? "success" : "error",
1052
+ children: stateLabel
1053
+ }
1054
+ ) })
1062
1055
  ] }),
1063
1056
  /* @__PURE__ */ jsx9("span", { className: "flex-shrink-0", children: /* @__PURE__ */ jsx9(
1064
1057
  Button_default,