analytica-frontend-lib 1.1.32 → 1.1.34

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
@@ -4859,12 +4859,12 @@ var CardAudio = forwardRef12(
4859
4859
  };
4860
4860
  const getVolumeIcon = () => {
4861
4861
  if (volume === 0) {
4862
- return /* @__PURE__ */ jsx27(SpeakerSimpleX, {});
4862
+ return /* @__PURE__ */ jsx27(SpeakerSimpleX, { size: 24 });
4863
4863
  }
4864
4864
  if (volume < 0.5) {
4865
- return /* @__PURE__ */ jsx27(SpeakerLow, {});
4865
+ return /* @__PURE__ */ jsx27(SpeakerLow, { size: 24 });
4866
4866
  }
4867
- return /* @__PURE__ */ jsx27(SpeakerHigh, {});
4867
+ return /* @__PURE__ */ jsx27(SpeakerHigh, { size: 24 });
4868
4868
  };
4869
4869
  return /* @__PURE__ */ jsxs21(
4870
4870
  CardBase,
@@ -4873,7 +4873,10 @@ var CardAudio = forwardRef12(
4873
4873
  layout: "horizontal",
4874
4874
  padding: "medium",
4875
4875
  minHeight: "none",
4876
- className: cn("w-auto h-14 items-center gap-2", className),
4876
+ className: cn(
4877
+ "flex flex-row w-auto h-14 items-center gap-2",
4878
+ className
4879
+ ),
4877
4880
  ...props,
4878
4881
  children: [
4879
4882
  /* @__PURE__ */ jsx27(
@@ -4923,7 +4926,7 @@ var CardAudio = forwardRef12(
4923
4926
  ] }) }) : /* @__PURE__ */ jsx27(Play, { size: 24 })
4924
4927
  }
4925
4928
  ),
4926
- /* @__PURE__ */ jsx27("p", { className: "text-text-800 text-sm font-medium min-w-[2.5rem]", children: formatTime2(currentTime) }),
4929
+ /* @__PURE__ */ jsx27("p", { className: "text-text-800 text-md font-medium min-w-[2.5rem]", children: formatTime2(currentTime) }),
4927
4930
  /* @__PURE__ */ jsx27("div", { className: "flex-1 relative", "data-testid": "progress-bar", children: /* @__PURE__ */ jsx27(
4928
4931
  "button",
4929
4932
  {
@@ -4950,8 +4953,8 @@ var CardAudio = forwardRef12(
4950
4953
  )
4951
4954
  }
4952
4955
  ) }),
4953
- /* @__PURE__ */ jsx27("p", { className: "text-text-800 text-sm font-medium min-w-[2.5rem]", children: formatTime2(duration) }),
4954
- /* @__PURE__ */ jsxs21("div", { className: "relative", children: [
4956
+ /* @__PURE__ */ jsx27("p", { className: "text-text-800 text-md font-medium min-w-[2.5rem]", children: formatTime2(duration) }),
4957
+ /* @__PURE__ */ jsxs21("div", { className: "relative h-6", children: [
4955
4958
  /* @__PURE__ */ jsx27(
4956
4959
  "button",
4957
4960
  {
@@ -5013,7 +5016,7 @@ var CardAudio = forwardRef12(
5013
5016
  }
5014
5017
  )
5015
5018
  ] }),
5016
- /* @__PURE__ */ jsxs21("div", { className: "relative", children: [
5019
+ /* @__PURE__ */ jsxs21("div", { className: "relative h-6", children: [
5017
5020
  /* @__PURE__ */ jsx27(
5018
5021
  "button",
5019
5022
  {
@@ -7535,7 +7538,7 @@ var VideoPlayer_default = VideoPlayer;
7535
7538
 
7536
7539
  // src/components/Whiteboard/Whiteboard.tsx
7537
7540
  import { useCallback as useCallback2, useState as useState15 } from "react";
7538
- import { DownloadSimple } from "phosphor-react";
7541
+ import { ArrowsOut } from "phosphor-react";
7539
7542
  import { Fragment as Fragment7, jsx as jsx37, jsxs as jsxs31 } from "react/jsx-runtime";
7540
7543
  var IMAGE_WIDTH = 225;
7541
7544
  var IMAGE_HEIGHT = 90;
@@ -7630,10 +7633,10 @@ var Whiteboard = ({
7630
7633
  {
7631
7634
  type: "button",
7632
7635
  onClick: () => handleDownload(image),
7633
- className: "absolute bottom-3 right-3 flex items-center justify-center bg-black/20 backdrop-blur-sm rounded hover:bg-black/30 transition-colors duration-200 group/button w-6 h-6",
7636
+ className: "cursor-pointer absolute bottom-3 right-3 flex items-center justify-center bg-black/20 backdrop-blur-sm rounded hover:bg-black/30 transition-colors duration-200 group/button w-6 h-6",
7634
7637
  "aria-label": `Download ${image.title || "imagem"}`,
7635
7638
  children: /* @__PURE__ */ jsx37(
7636
- DownloadSimple,
7639
+ ArrowsOut,
7637
7640
  {
7638
7641
  size: 24,
7639
7642
  weight: "regular",