analytica-frontend-lib 1.1.32 → 1.1.33

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.
@@ -81,7 +81,7 @@ declare const Radio: react.ForwardRefExoticComponent<{
81
81
  value?: string;
82
82
  /** Default checked state for uncontrolled radios */
83
83
  defaultChecked?: boolean;
84
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "defaultChecked" | "type"> & react.RefAttributes<HTMLInputElement>>;
84
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "defaultChecked" | "type" | "size"> & react.RefAttributes<HTMLInputElement>>;
85
85
  /**
86
86
  * RadioGroup store interface
87
87
  */
@@ -198,6 +198,6 @@ declare const RadioGroupItem: react.ForwardRefExoticComponent<{
198
198
  state?: RadioState;
199
199
  /** Additional CSS classes */
200
200
  className?: string;
201
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "checked" | "type" | "name" | "onChange"> & react.RefAttributes<HTMLInputElement>>;
201
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "name" | "type" | "size" | "value" | "checked"> & react.RefAttributes<HTMLInputElement>>;
202
202
 
203
203
  export { RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, Radio as default, useRadioGroupStore };
@@ -81,7 +81,7 @@ declare const Radio: react.ForwardRefExoticComponent<{
81
81
  value?: string;
82
82
  /** Default checked state for uncontrolled radios */
83
83
  defaultChecked?: boolean;
84
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "defaultChecked" | "type"> & react.RefAttributes<HTMLInputElement>>;
84
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "defaultChecked" | "type" | "size"> & react.RefAttributes<HTMLInputElement>>;
85
85
  /**
86
86
  * RadioGroup store interface
87
87
  */
@@ -198,6 +198,6 @@ declare const RadioGroupItem: react.ForwardRefExoticComponent<{
198
198
  state?: RadioState;
199
199
  /** Additional CSS classes */
200
200
  className?: string;
201
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "checked" | "type" | "name" | "onChange"> & react.RefAttributes<HTMLInputElement>>;
201
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "name" | "type" | "size" | "value" | "checked"> & react.RefAttributes<HTMLInputElement>>;
202
202
 
203
203
  export { RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, Radio as default, useRadioGroupStore };
@@ -22,6 +22,6 @@ declare const Search: react.ForwardRefExoticComponent<{
22
22
  containerClassName?: string;
23
23
  /** Callback when clear button is clicked */
24
24
  onClear?: () => void;
25
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "onSelect"> & react.RefAttributes<HTMLInputElement>>;
25
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "onSelect" | "size"> & react.RefAttributes<HTMLInputElement>>;
26
26
 
27
27
  export { Search as default };
@@ -22,6 +22,6 @@ declare const Search: react.ForwardRefExoticComponent<{
22
22
  containerClassName?: string;
23
23
  /** Callback when clear button is clicked */
24
24
  onClear?: () => void;
25
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "onSelect"> & react.RefAttributes<HTMLInputElement>>;
25
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "onSelect" | "size"> & react.RefAttributes<HTMLInputElement>>;
26
26
 
27
27
  export { Search as default };
package/dist/index.d.mts CHANGED
@@ -134,6 +134,6 @@ declare const CheckboxListItem: react.ForwardRefExoticComponent<{
134
134
  state?: CheckboxListState;
135
135
  /** Additional CSS classes */
136
136
  className?: string;
137
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "checked" | "type" | "name" | "onChange"> & react.RefAttributes<HTMLInputElement>>;
137
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "name" | "type" | "size" | "value" | "checked"> & react.RefAttributes<HTMLInputElement>>;
138
138
 
139
139
  export { CheckboxList, CheckboxListItem };
package/dist/index.d.ts CHANGED
@@ -134,6 +134,6 @@ declare const CheckboxListItem: react.ForwardRefExoticComponent<{
134
134
  state?: CheckboxListState;
135
135
  /** Additional CSS classes */
136
136
  className?: string;
137
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "checked" | "type" | "name" | "onChange"> & react.RefAttributes<HTMLInputElement>>;
137
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "name" | "type" | "size" | "value" | "checked"> & react.RefAttributes<HTMLInputElement>>;
138
138
 
139
139
  export { CheckboxList, CheckboxListItem };
package/dist/index.js CHANGED
@@ -4937,12 +4937,12 @@ var CardAudio = (0, import_react14.forwardRef)(
4937
4937
  };
4938
4938
  const getVolumeIcon = () => {
4939
4939
  if (volume === 0) {
4940
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_phosphor_react12.SpeakerSimpleX, {});
4940
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_phosphor_react12.SpeakerSimpleX, { size: 24 });
4941
4941
  }
4942
4942
  if (volume < 0.5) {
4943
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_phosphor_react12.SpeakerLow, {});
4943
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_phosphor_react12.SpeakerLow, { size: 24 });
4944
4944
  }
4945
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_phosphor_react12.SpeakerHigh, {});
4945
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_phosphor_react12.SpeakerHigh, { size: 24 });
4946
4946
  };
4947
4947
  return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
4948
4948
  CardBase,
@@ -4951,7 +4951,10 @@ var CardAudio = (0, import_react14.forwardRef)(
4951
4951
  layout: "horizontal",
4952
4952
  padding: "medium",
4953
4953
  minHeight: "none",
4954
- className: cn("w-auto h-14 items-center gap-2", className),
4954
+ className: cn(
4955
+ "flex flex-row w-auto h-14 items-center gap-2",
4956
+ className
4957
+ ),
4955
4958
  ...props,
4956
4959
  children: [
4957
4960
  /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
@@ -5001,7 +5004,7 @@ var CardAudio = (0, import_react14.forwardRef)(
5001
5004
  ] }) }) : /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_phosphor_react12.Play, { size: 24 })
5002
5005
  }
5003
5006
  ),
5004
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("p", { className: "text-text-800 text-sm font-medium min-w-[2.5rem]", children: formatTime2(currentTime) }),
5007
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("p", { className: "text-text-800 text-md font-medium min-w-[2.5rem]", children: formatTime2(currentTime) }),
5005
5008
  /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "flex-1 relative", "data-testid": "progress-bar", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
5006
5009
  "button",
5007
5010
  {
@@ -5028,8 +5031,8 @@ var CardAudio = (0, import_react14.forwardRef)(
5028
5031
  )
5029
5032
  }
5030
5033
  ) }),
5031
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("p", { className: "text-text-800 text-sm font-medium min-w-[2.5rem]", children: formatTime2(duration) }),
5032
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "relative", children: [
5034
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("p", { className: "text-text-800 text-md font-medium min-w-[2.5rem]", children: formatTime2(duration) }),
5035
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "relative h-6", children: [
5033
5036
  /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
5034
5037
  "button",
5035
5038
  {
@@ -5091,7 +5094,7 @@ var CardAudio = (0, import_react14.forwardRef)(
5091
5094
  }
5092
5095
  )
5093
5096
  ] }),
5094
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "relative", children: [
5097
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "relative h-6", children: [
5095
5098
  /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
5096
5099
  "button",
5097
5100
  {