analytica-frontend-lib 1.1.36 → 1.1.37
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/CheckBox/index.d.mts +1 -1
- package/dist/CheckBox/index.d.ts +1 -1
- package/dist/Quiz/index.js +4 -4
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +4 -4
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/Radio/index.d.mts +2 -2
- package/dist/Radio/index.d.ts +2 -2
- package/dist/Search/index.d.mts +1 -1
- package/dist/Search/index.d.ts +1 -1
- package/dist/index.css +3 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +3 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -136,7 +136,7 @@ declare const CheckboxListItem: react.ForwardRefExoticComponent<{
|
|
|
136
136
|
state?: CheckboxListState;
|
|
137
137
|
/** Additional CSS classes */
|
|
138
138
|
className?: string;
|
|
139
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "
|
|
139
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "checked" | "type" | "name" | "onChange"> & react.RefAttributes<HTMLInputElement>>;
|
|
140
140
|
|
|
141
141
|
/**
|
|
142
142
|
* Notification store state interface
|
package/dist/index.d.ts
CHANGED
|
@@ -136,7 +136,7 @@ declare const CheckboxListItem: react.ForwardRefExoticComponent<{
|
|
|
136
136
|
state?: CheckboxListState;
|
|
137
137
|
/** Additional CSS classes */
|
|
138
138
|
className?: string;
|
|
139
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "
|
|
139
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "checked" | "type" | "name" | "onChange"> & react.RefAttributes<HTMLInputElement>>;
|
|
140
140
|
|
|
141
141
|
/**
|
|
142
142
|
* Notification store state interface
|
package/dist/index.js
CHANGED
|
@@ -9614,7 +9614,7 @@ var QuizQuestionList = ({
|
|
|
9614
9614
|
case "answered":
|
|
9615
9615
|
return status === "answered";
|
|
9616
9616
|
case "unanswered":
|
|
9617
|
-
return status === "unanswered";
|
|
9617
|
+
return status === "unanswered" || status === "skipped";
|
|
9618
9618
|
default:
|
|
9619
9619
|
return true;
|
|
9620
9620
|
}
|
|
@@ -9881,8 +9881,8 @@ var QuizFooter = (0, import_react28.forwardRef)(
|
|
|
9881
9881
|
onClose: () => setModalNavigateOpen(false),
|
|
9882
9882
|
title: "Quest\xF5es",
|
|
9883
9883
|
size: "lg",
|
|
9884
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex flex-col w-full h-
|
|
9885
|
-
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex flex-row justify-between items-center py-6 pt-6 pb-4 border-b border-border-200", children: [
|
|
9884
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex flex-col w-full not-lg:h-[calc(100vh-200px)] lg:max-h-[687px] lg:h-[687px]", children: [
|
|
9885
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex flex-row justify-between items-center py-6 pt-6 pb-4 border-b border-border-200 flex-shrink-0", children: [
|
|
9886
9886
|
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("p", { className: "text-text-950 font-bold text-lg", children: "Filtrar por" }),
|
|
9887
9887
|
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: "max-w-[266px]", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(Select_default, { value: filterType, onValueChange: setFilterType, children: [
|
|
9888
9888
|
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
@@ -9900,7 +9900,7 @@ var QuizFooter = (0, import_react28.forwardRef)(
|
|
|
9900
9900
|
] })
|
|
9901
9901
|
] }) })
|
|
9902
9902
|
] }),
|
|
9903
|
-
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "flex flex-col gap-2
|
|
9903
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "flex flex-col gap-2 flex-1 min-h-0 overflow-y-auto", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
9904
9904
|
QuizQuestionList,
|
|
9905
9905
|
{
|
|
9906
9906
|
filterType,
|