analytica-frontend-lib 1.1.75 → 1.1.76
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 +2 -1
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +2 -1
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.d.mts +1 -0
- package/dist/Card/index.d.ts +1 -0
- package/dist/Card/index.js +2 -1
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +2 -1
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Quiz/index.js +2 -1
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +2 -1
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1033,6 +1033,7 @@ var CardQuestions = forwardRef(
|
|
|
1033
1033
|
className,
|
|
1034
1034
|
onClickButton,
|
|
1035
1035
|
valueButton,
|
|
1036
|
+
label = "00",
|
|
1036
1037
|
...props
|
|
1037
1038
|
}, ref) => {
|
|
1038
1039
|
const isDone = state === "done";
|
|
@@ -1062,7 +1063,7 @@ var CardQuestions = forwardRef(
|
|
|
1062
1063
|
),
|
|
1063
1064
|
/* @__PURE__ */ jsxs7("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
|
|
1064
1065
|
isDone ? "Nota" : "Sem nota",
|
|
1065
|
-
isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children:
|
|
1066
|
+
isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: label })
|
|
1066
1067
|
] })
|
|
1067
1068
|
] })
|
|
1068
1069
|
] }),
|