@embedreach/components 0.2.22 → 0.2.24
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/chunks/index.js +27 -20
- package/dist/index.umd.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/chunks/index.js
CHANGED
|
@@ -74911,30 +74911,37 @@ const AutomationEditorTabs = ({
|
|
|
74911
74911
|
{
|
|
74912
74912
|
className: `grid w-full ${hideSms ? "grid-cols-1" : "grid-cols-2"}`,
|
|
74913
74913
|
children: [
|
|
74914
|
-
/* @__PURE__ */ jsx(
|
|
74915
|
-
|
|
74916
|
-
|
|
74917
|
-
|
|
74918
|
-
|
|
74919
|
-
|
|
74920
|
-
|
|
74921
|
-
|
|
74922
|
-
|
|
74923
|
-
|
|
74924
|
-
|
|
74925
|
-
|
|
74926
|
-
|
|
74927
|
-
|
|
74928
|
-
|
|
74929
|
-
|
|
74930
|
-
|
|
74931
|
-
|
|
74932
|
-
|
|
74914
|
+
/* @__PURE__ */ jsx(
|
|
74915
|
+
TabsTrigger,
|
|
74916
|
+
{
|
|
74917
|
+
value: "email",
|
|
74918
|
+
className: "group data-[state=active]:bg-white",
|
|
74919
|
+
children: /* @__PURE__ */ jsxs("div", { className: "flex items-center", children: [
|
|
74920
|
+
/* @__PURE__ */ jsx(
|
|
74921
|
+
"img",
|
|
74922
|
+
{
|
|
74923
|
+
src: emailActiveIcon,
|
|
74924
|
+
alt: "Email",
|
|
74925
|
+
className: "w-4 h-4 mr-2 hidden group-data-[state=active]:block"
|
|
74926
|
+
}
|
|
74927
|
+
),
|
|
74928
|
+
/* @__PURE__ */ jsx(
|
|
74929
|
+
"img",
|
|
74930
|
+
{
|
|
74931
|
+
src: emailInactiveIcon,
|
|
74932
|
+
alt: "Email",
|
|
74933
|
+
className: "w-4 h-4 mr-2 block group-data-[state=active]:hidden"
|
|
74934
|
+
}
|
|
74935
|
+
),
|
|
74936
|
+
/* @__PURE__ */ jsx("span", { children: "Email" })
|
|
74937
|
+
] })
|
|
74938
|
+
}
|
|
74939
|
+
),
|
|
74933
74940
|
!hideSms && /* @__PURE__ */ jsx(
|
|
74934
74941
|
TabsTrigger,
|
|
74935
74942
|
{
|
|
74936
74943
|
value: "sms",
|
|
74937
|
-
className: "group data-[state=active]:bg-
|
|
74944
|
+
className: "group data-[state=active]:bg-white",
|
|
74938
74945
|
children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
74939
74946
|
/* @__PURE__ */ jsx(
|
|
74940
74947
|
"img",
|