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/Accordation/index.js +11 -8
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +11 -8
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Card/index.js +11 -8
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +11 -8
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Quiz/index.js +11 -8
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +11 -8
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/Whiteboard/index.js +2 -2
- package/dist/Whiteboard/index.js.map +1 -1
- package/dist/Whiteboard/index.mjs +3 -3
- package/dist/Whiteboard/index.mjs.map +1 -1
- package/dist/index.js +13 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/Card/index.mjs
CHANGED
|
@@ -1597,12 +1597,12 @@ var CardAudio = forwardRef(
|
|
|
1597
1597
|
};
|
|
1598
1598
|
const getVolumeIcon = () => {
|
|
1599
1599
|
if (volume === 0) {
|
|
1600
|
-
return /* @__PURE__ */ jsx6(SpeakerSimpleX, {});
|
|
1600
|
+
return /* @__PURE__ */ jsx6(SpeakerSimpleX, { size: 24 });
|
|
1601
1601
|
}
|
|
1602
1602
|
if (volume < 0.5) {
|
|
1603
|
-
return /* @__PURE__ */ jsx6(SpeakerLow, {});
|
|
1603
|
+
return /* @__PURE__ */ jsx6(SpeakerLow, { size: 24 });
|
|
1604
1604
|
}
|
|
1605
|
-
return /* @__PURE__ */ jsx6(SpeakerHigh, {});
|
|
1605
|
+
return /* @__PURE__ */ jsx6(SpeakerHigh, { size: 24 });
|
|
1606
1606
|
};
|
|
1607
1607
|
return /* @__PURE__ */ jsxs5(
|
|
1608
1608
|
CardBase,
|
|
@@ -1611,7 +1611,10 @@ var CardAudio = forwardRef(
|
|
|
1611
1611
|
layout: "horizontal",
|
|
1612
1612
|
padding: "medium",
|
|
1613
1613
|
minHeight: "none",
|
|
1614
|
-
className: cn(
|
|
1614
|
+
className: cn(
|
|
1615
|
+
"flex flex-row w-auto h-14 items-center gap-2",
|
|
1616
|
+
className
|
|
1617
|
+
),
|
|
1615
1618
|
...props,
|
|
1616
1619
|
children: [
|
|
1617
1620
|
/* @__PURE__ */ jsx6(
|
|
@@ -1661,7 +1664,7 @@ var CardAudio = forwardRef(
|
|
|
1661
1664
|
] }) }) : /* @__PURE__ */ jsx6(Play, { size: 24 })
|
|
1662
1665
|
}
|
|
1663
1666
|
),
|
|
1664
|
-
/* @__PURE__ */ jsx6("p", { className: "text-text-800 text-
|
|
1667
|
+
/* @__PURE__ */ jsx6("p", { className: "text-text-800 text-md font-medium min-w-[2.5rem]", children: formatTime(currentTime) }),
|
|
1665
1668
|
/* @__PURE__ */ jsx6("div", { className: "flex-1 relative", "data-testid": "progress-bar", children: /* @__PURE__ */ jsx6(
|
|
1666
1669
|
"button",
|
|
1667
1670
|
{
|
|
@@ -1688,8 +1691,8 @@ var CardAudio = forwardRef(
|
|
|
1688
1691
|
)
|
|
1689
1692
|
}
|
|
1690
1693
|
) }),
|
|
1691
|
-
/* @__PURE__ */ jsx6("p", { className: "text-text-800 text-
|
|
1692
|
-
/* @__PURE__ */ jsxs5("div", { className: "relative", children: [
|
|
1694
|
+
/* @__PURE__ */ jsx6("p", { className: "text-text-800 text-md font-medium min-w-[2.5rem]", children: formatTime(duration) }),
|
|
1695
|
+
/* @__PURE__ */ jsxs5("div", { className: "relative h-6", children: [
|
|
1693
1696
|
/* @__PURE__ */ jsx6(
|
|
1694
1697
|
"button",
|
|
1695
1698
|
{
|
|
@@ -1751,7 +1754,7 @@ var CardAudio = forwardRef(
|
|
|
1751
1754
|
}
|
|
1752
1755
|
)
|
|
1753
1756
|
] }),
|
|
1754
|
-
/* @__PURE__ */ jsxs5("div", { className: "relative", children: [
|
|
1757
|
+
/* @__PURE__ */ jsxs5("div", { className: "relative h-6", children: [
|
|
1755
1758
|
/* @__PURE__ */ jsx6(
|
|
1756
1759
|
"button",
|
|
1757
1760
|
{
|