analytica-frontend-lib 1.1.74 → 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.d.mts +2 -2
- package/dist/Quiz/index.d.ts +2 -2
- package/dist/Quiz/index.js +4 -3
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +4 -3
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/Card/index.mjs
CHANGED
|
@@ -1026,6 +1026,7 @@ var CardQuestions = forwardRef(
|
|
|
1026
1026
|
className,
|
|
1027
1027
|
onClickButton,
|
|
1028
1028
|
valueButton,
|
|
1029
|
+
label = "00",
|
|
1029
1030
|
...props
|
|
1030
1031
|
}, ref) => {
|
|
1031
1032
|
const isDone = state === "done";
|
|
@@ -1055,7 +1056,7 @@ var CardQuestions = forwardRef(
|
|
|
1055
1056
|
),
|
|
1056
1057
|
/* @__PURE__ */ jsxs7("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
|
|
1057
1058
|
isDone ? "Nota" : "Sem nota",
|
|
1058
|
-
isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children:
|
|
1059
|
+
isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: label })
|
|
1059
1060
|
] })
|
|
1060
1061
|
] })
|
|
1061
1062
|
] }),
|