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.
@@ -1034,7 +1034,6 @@ var CardQuestions = forwardRef(
1034
1034
  className,
1035
1035
  onClickButton,
1036
1036
  valueButton,
1037
- label = "00",
1038
1037
  ...props
1039
1038
  }, ref) => {
1040
1039
  const isDone = state === "done";
@@ -1052,21 +1051,15 @@ var CardQuestions = forwardRef(
1052
1051
  children: [
1053
1052
  /* @__PURE__ */ jsxs7("section", { className: "flex flex-col gap-1 flex-1 min-w-0", children: [
1054
1053
  /* @__PURE__ */ jsx9("p", { className: "font-bold text-xs text-text-950 truncate", children: header }),
1055
- /* @__PURE__ */ jsxs7("div", { className: "flex flex-row gap-6 items-center", children: [
1056
- /* @__PURE__ */ jsx9(
1057
- Badge_default,
1058
- {
1059
- size: "medium",
1060
- variant: "solid",
1061
- action: isDone ? "success" : "error",
1062
- children: stateLabel
1063
- }
1064
- ),
1065
- /* @__PURE__ */ jsxs7("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
1066
- isDone ? "Nota" : "Sem nota",
1067
- isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: label })
1068
- ] })
1069
- ] })
1054
+ /* @__PURE__ */ jsx9("div", { className: "flex flex-row gap-6 items-center", children: /* @__PURE__ */ jsx9(
1055
+ Badge_default,
1056
+ {
1057
+ size: "medium",
1058
+ variant: "solid",
1059
+ action: isDone ? "success" : "error",
1060
+ children: stateLabel
1061
+ }
1062
+ ) })
1070
1063
  ] }),
1071
1064
  /* @__PURE__ */ jsx9("span", { className: "flex-shrink-0", children: /* @__PURE__ */ jsx9(
1072
1065
  Button_default,