analytica-frontend-lib 1.0.87 → 1.0.89

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/index.js CHANGED
@@ -7689,7 +7689,7 @@ var QuizFooter = (0, import_react24.forwardRef)(
7689
7689
  onClose: () => setModalNavigateOpen(false),
7690
7690
  title: "Quest\xF5es",
7691
7691
  size: "lg",
7692
- children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "flex flex-col w-full h-full", children: [
7692
+ children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "flex flex-col w-full h-full not-lg:max-h-[calc(100vh-200px)] lg:max-h-[calc(687px-76px)]", children: [
7693
7693
  /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "flex flex-row justify-between items-center py-6 pt-6 pb-4 border-b border-border-200", children: [
7694
7694
  /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("p", { className: "text-text-950 font-bold text-lg", children: "Filtrar por" }),
7695
7695
  /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("span", { className: "max-w-[266px]", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(Select_default, { value: filterType, onValueChange: setFilterType, children: [
@@ -7701,7 +7701,7 @@ var QuizFooter = (0, import_react24.forwardRef)(
7701
7701
  ] })
7702
7702
  ] }) })
7703
7703
  ] }),
7704
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "flex flex-col gap-2 not-lg:h-[calc(100vh-200px)] lg:max-h-[687px] overflow-y-auto", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
7704
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "flex flex-col gap-2 overflow-y-auto", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
7705
7705
  QuizQuestionList,
7706
7706
  {
7707
7707
  filterType,
package/dist/index.mjs CHANGED
@@ -7673,7 +7673,7 @@ var QuizFooter = forwardRef18(
7673
7673
  onClose: () => setModalNavigateOpen(false),
7674
7674
  title: "Quest\xF5es",
7675
7675
  size: "lg",
7676
- children: /* @__PURE__ */ jsxs28("div", { className: "flex flex-col w-full h-full", children: [
7676
+ children: /* @__PURE__ */ jsxs28("div", { className: "flex flex-col w-full h-full not-lg:max-h-[calc(100vh-200px)] lg:max-h-[calc(687px-76px)]", children: [
7677
7677
  /* @__PURE__ */ jsxs28("div", { className: "flex flex-row justify-between items-center py-6 pt-6 pb-4 border-b border-border-200", children: [
7678
7678
  /* @__PURE__ */ jsx35("p", { className: "text-text-950 font-bold text-lg", children: "Filtrar por" }),
7679
7679
  /* @__PURE__ */ jsx35("span", { className: "max-w-[266px]", children: /* @__PURE__ */ jsxs28(Select_default, { value: filterType, onValueChange: setFilterType, children: [
@@ -7685,7 +7685,7 @@ var QuizFooter = forwardRef18(
7685
7685
  ] })
7686
7686
  ] }) })
7687
7687
  ] }),
7688
- /* @__PURE__ */ jsx35("div", { className: "flex flex-col gap-2 not-lg:h-[calc(100vh-200px)] lg:max-h-[687px] overflow-y-auto", children: /* @__PURE__ */ jsx35(
7688
+ /* @__PURE__ */ jsx35("div", { className: "flex flex-col gap-2 overflow-y-auto", children: /* @__PURE__ */ jsx35(
7689
7689
  QuizQuestionList,
7690
7690
  {
7691
7691
  filterType,
package/dist/styles.css CHANGED
@@ -3460,9 +3460,9 @@
3460
3460
  border-radius: var(--radius-xl);
3461
3461
  }
3462
3462
  }
3463
- .not-lg\:h-\[calc\(100vh-200px\)\] {
3463
+ .not-lg\:max-h-\[calc\(100vh-200px\)\] {
3464
3464
  @media not (width >= 64rem) {
3465
- height: calc(100vh - 200px);
3465
+ max-height: calc(100vh - 200px);
3466
3466
  }
3467
3467
  }
3468
3468
  .not-lg\:max-w-\[calc\(100vw-32px\)\] {
@@ -8039,9 +8039,9 @@
8039
8039
  height: calc(var(--spacing) * 6);
8040
8040
  }
8041
8041
  }
8042
- .lg\:max-h-\[687px\] {
8042
+ .lg\:max-h-\[calc\(687px-76px\)\] {
8043
8043
  @media (width >= 64rem) {
8044
- max-height: 687px;
8044
+ max-height: calc(687px - 76px);
8045
8045
  }
8046
8046
  }
8047
8047
  .lg\:w-3\.5 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica-frontend-lib",
3
- "version": "1.0.87",
3
+ "version": "1.0.89",
4
4
  "description": "Repositório público dos componentes utilizados nas plataformas da Analytica Ensino",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -71,7 +71,7 @@
71
71
  "ladle:build": "ladle build",
72
72
  "add:exports": "node scripts/add-exports.mjs",
73
73
  "remove:exports": "node scripts/remove-exports.mjs",
74
- "prepack": "npm run add:exports && npm run build:clean",
74
+ "prepack": "npm run add:exports && npm run build",
75
75
  "postpack": "npm run remove:exports",
76
76
  "publish:dry": "npm run prepack && npm publish --dry-run && npm run postpack"
77
77
  },