analytica-frontend-lib 1.0.66 → 1.0.67

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.mjs CHANGED
@@ -3793,7 +3793,7 @@ var MenuItem = forwardRef11(
3793
3793
  {
3794
3794
  "data-variant": "menu2",
3795
3795
  className: `
3796
- w-full flex flex-col items-center px-2 pt-4 gap-3 border-b-4 border-transparent cursor-pointer focus:rounded-sm justify-center hover:bg-background-100 rounded-lg
3796
+ w-full flex flex-col items-center px-2 pt-4 gap-3 cursor-pointer focus:rounded-sm justify-center hover:bg-background-100 rounded-lg
3797
3797
  focus:outline-none focus:border-indicator-info focus:border-2
3798
3798
  ${selectedValue === value ? "" : "pb-4"}
3799
3799
  `,
@@ -4450,42 +4450,32 @@ var CardResults = forwardRef12(
4450
4450
  );
4451
4451
  var CardStatus = forwardRef12(
4452
4452
  ({ header, className, status, ...props }, ref) => {
4453
- return /* @__PURE__ */ jsxs21(
4453
+ return /* @__PURE__ */ jsx26(
4454
4454
  CardBase,
4455
4455
  {
4456
4456
  ref,
4457
4457
  layout: "horizontal",
4458
- padding: "none",
4458
+ padding: "medium",
4459
4459
  minHeight: "medium",
4460
- className: `items-center pr-4 ${className}`,
4460
+ className: `items-center ${className}`,
4461
4461
  ...props,
4462
- children: [
4463
- /* @__PURE__ */ jsxs21(
4464
- "div",
4465
- {
4466
- className: `
4467
- p-4 flex justify-between w-full h-full flex-row items-center gap-2
4468
- `,
4469
- children: [
4470
- /* @__PURE__ */ jsx26("p", { className: "text-sm font-bold text-text-950 truncate flex-1 min-w-0", children: header }),
4471
- status && /* @__PURE__ */ jsxs21("span", { className: "flex flex-row gap-1 items-center", children: [
4472
- /* @__PURE__ */ jsx26(
4473
- Badge_default,
4474
- {
4475
- action: status == "correct" ? "success" : "error",
4476
- variant: "solid",
4477
- size: "medium",
4478
- iconLeft: /* @__PURE__ */ jsx26(CheckCircle3, {}),
4479
- children: status == "correct" ? "Correta" : "Incorreta"
4480
- }
4481
- ),
4482
- /* @__PURE__ */ jsx26("p", { className: "text-sm text-text-800", children: "Respondida" })
4483
- ] })
4484
- ]
4485
- }
4486
- ),
4487
- /* @__PURE__ */ jsx26(CaretRight2, { className: "min-w-6 min-h-6 text-text-800 cursor-pointer" })
4488
- ]
4462
+ children: /* @__PURE__ */ jsxs21("div", { className: "flex justify-between w-full h-full flex-row items-center gap-2", children: [
4463
+ /* @__PURE__ */ jsx26("p", { className: "text-sm font-bold text-text-950 truncate flex-1 min-w-0", children: header }),
4464
+ status && /* @__PURE__ */ jsxs21("span", { className: "flex flex-row gap-1 items-center flex-shrink-0", children: [
4465
+ /* @__PURE__ */ jsx26(
4466
+ Badge_default,
4467
+ {
4468
+ action: status == "correct" ? "success" : "error",
4469
+ variant: "solid",
4470
+ size: "medium",
4471
+ iconLeft: /* @__PURE__ */ jsx26(CheckCircle3, {}),
4472
+ children: status == "correct" ? "Correta" : "Incorreta"
4473
+ }
4474
+ ),
4475
+ /* @__PURE__ */ jsx26("p", { className: "text-sm text-text-800", children: "Respondida" })
4476
+ ] }),
4477
+ /* @__PURE__ */ jsx26(CaretRight2, { className: "min-w-6 min-h-6 text-text-800 cursor-pointer flex-shrink-0 ml-2" })
4478
+ ] })
4489
4479
  }
4490
4480
  );
4491
4481
  }