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
package/dist/Card/index.mjs
CHANGED
|
@@ -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__ */
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
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,
|