@embedreach/components 0.1.43 → 0.1.44
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 +45 -27
- package/dist/index.umd.js +45 -27
- package/package.json +1 -1
package/dist/chunks/index.js
CHANGED
|
@@ -46886,15 +46886,21 @@ const ViewAutomationHeader = ({
|
|
|
46886
46886
|
{
|
|
46887
46887
|
open: openEditAutomationPopup,
|
|
46888
46888
|
onOpenChange: setOpenEditAutomationPopup,
|
|
46889
|
-
children: /* @__PURE__ */
|
|
46890
|
-
|
|
46891
|
-
|
|
46892
|
-
|
|
46893
|
-
|
|
46894
|
-
|
|
46895
|
-
|
|
46896
|
-
|
|
46897
|
-
|
|
46889
|
+
children: /* @__PURE__ */ jsxs(DialogContent, { className: "max-w-screen min-h-screen max-h-screen overflow-hidden rounded-none sm:rounded-none", children: [
|
|
46890
|
+
/* @__PURE__ */ jsxs(VisuallyHidden, { children: [
|
|
46891
|
+
/* @__PURE__ */ jsx(DialogTitle, { children: "Edit Automation" }),
|
|
46892
|
+
/* @__PURE__ */ jsx(DialogDescription, { children: "Edit the automation to change the content, schedule, and other details." })
|
|
46893
|
+
] }),
|
|
46894
|
+
/* @__PURE__ */ jsx(
|
|
46895
|
+
EditAutomationPopup,
|
|
46896
|
+
{
|
|
46897
|
+
automationId: automation.id,
|
|
46898
|
+
iconDefinitions,
|
|
46899
|
+
setOpenEditAutomationPopup,
|
|
46900
|
+
logoUrl
|
|
46901
|
+
}
|
|
46902
|
+
)
|
|
46903
|
+
] })
|
|
46898
46904
|
}
|
|
46899
46905
|
),
|
|
46900
46906
|
/* @__PURE__ */ jsx(
|
|
@@ -46902,15 +46908,21 @@ const ViewAutomationHeader = ({
|
|
|
46902
46908
|
{
|
|
46903
46909
|
open: openSendPreviewSmsPopup,
|
|
46904
46910
|
onOpenChange: setOpenSendPreviewSmsPopup,
|
|
46905
|
-
children: /* @__PURE__ */
|
|
46906
|
-
|
|
46907
|
-
|
|
46908
|
-
automation
|
|
46909
|
-
|
|
46910
|
-
|
|
46911
|
-
|
|
46912
|
-
|
|
46913
|
-
|
|
46911
|
+
children: /* @__PURE__ */ jsxs(DialogContent, { className: "", children: [
|
|
46912
|
+
/* @__PURE__ */ jsxs(VisuallyHidden, { children: [
|
|
46913
|
+
/* @__PURE__ */ jsx(DialogTitle, { children: "Send Preview SMS" }),
|
|
46914
|
+
/* @__PURE__ */ jsx(DialogDescription, { children: "Send a preview SMS to the automation." })
|
|
46915
|
+
] }),
|
|
46916
|
+
/* @__PURE__ */ jsx(
|
|
46917
|
+
SendPreviewPopup,
|
|
46918
|
+
{
|
|
46919
|
+
automation,
|
|
46920
|
+
type: "sms",
|
|
46921
|
+
setOpenSendPreviewPopup: setOpenSendPreviewSmsPopup,
|
|
46922
|
+
iconDefinitions
|
|
46923
|
+
}
|
|
46924
|
+
)
|
|
46925
|
+
] })
|
|
46914
46926
|
}
|
|
46915
46927
|
),
|
|
46916
46928
|
/* @__PURE__ */ jsx(
|
|
@@ -46918,15 +46930,21 @@ const ViewAutomationHeader = ({
|
|
|
46918
46930
|
{
|
|
46919
46931
|
open: openSendPreviewEmailPopup,
|
|
46920
46932
|
onOpenChange: setOpenSendPreviewEmailPopup,
|
|
46921
|
-
children: /* @__PURE__ */
|
|
46922
|
-
|
|
46923
|
-
|
|
46924
|
-
automation
|
|
46925
|
-
|
|
46926
|
-
|
|
46927
|
-
|
|
46928
|
-
|
|
46929
|
-
|
|
46933
|
+
children: /* @__PURE__ */ jsxs(DialogContent, { className: "", children: [
|
|
46934
|
+
/* @__PURE__ */ jsxs(VisuallyHidden, { children: [
|
|
46935
|
+
/* @__PURE__ */ jsx(DialogTitle, { children: "Send Preview Email" }),
|
|
46936
|
+
/* @__PURE__ */ jsx(DialogDescription, { children: "Send a preview email to the automation." })
|
|
46937
|
+
] }),
|
|
46938
|
+
/* @__PURE__ */ jsx(
|
|
46939
|
+
SendPreviewPopup,
|
|
46940
|
+
{
|
|
46941
|
+
automation,
|
|
46942
|
+
type: "email",
|
|
46943
|
+
setOpenSendPreviewPopup: setOpenSendPreviewEmailPopup,
|
|
46944
|
+
iconDefinitions
|
|
46945
|
+
}
|
|
46946
|
+
)
|
|
46947
|
+
] })
|
|
46930
46948
|
}
|
|
46931
46949
|
),
|
|
46932
46950
|
/* @__PURE__ */ jsxs("div", { className: "p-6 border-b border-gray-200", children: [
|
package/dist/index.umd.js
CHANGED
|
@@ -46903,15 +46903,21 @@ ${message2 ?? ""}`);
|
|
|
46903
46903
|
{
|
|
46904
46904
|
open: openEditAutomationPopup,
|
|
46905
46905
|
onOpenChange: setOpenEditAutomationPopup,
|
|
46906
|
-
children: /* @__PURE__ */ jsxRuntime.
|
|
46907
|
-
|
|
46908
|
-
|
|
46909
|
-
|
|
46910
|
-
|
|
46911
|
-
|
|
46912
|
-
|
|
46913
|
-
|
|
46914
|
-
|
|
46906
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(DialogContent, { className: "max-w-screen min-h-screen max-h-screen overflow-hidden rounded-none sm:rounded-none", children: [
|
|
46907
|
+
/* @__PURE__ */ jsxRuntime.jsxs(VisuallyHidden, { children: [
|
|
46908
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogTitle, { children: "Edit Automation" }),
|
|
46909
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogDescription, { children: "Edit the automation to change the content, schedule, and other details." })
|
|
46910
|
+
] }),
|
|
46911
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
46912
|
+
EditAutomationPopup,
|
|
46913
|
+
{
|
|
46914
|
+
automationId: automation.id,
|
|
46915
|
+
iconDefinitions,
|
|
46916
|
+
setOpenEditAutomationPopup,
|
|
46917
|
+
logoUrl
|
|
46918
|
+
}
|
|
46919
|
+
)
|
|
46920
|
+
] })
|
|
46915
46921
|
}
|
|
46916
46922
|
),
|
|
46917
46923
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -46919,15 +46925,21 @@ ${message2 ?? ""}`);
|
|
|
46919
46925
|
{
|
|
46920
46926
|
open: openSendPreviewSmsPopup,
|
|
46921
46927
|
onOpenChange: setOpenSendPreviewSmsPopup,
|
|
46922
|
-
children: /* @__PURE__ */ jsxRuntime.
|
|
46923
|
-
|
|
46924
|
-
|
|
46925
|
-
automation
|
|
46926
|
-
|
|
46927
|
-
|
|
46928
|
-
|
|
46929
|
-
|
|
46930
|
-
|
|
46928
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(DialogContent, { className: "", children: [
|
|
46929
|
+
/* @__PURE__ */ jsxRuntime.jsxs(VisuallyHidden, { children: [
|
|
46930
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogTitle, { children: "Send Preview SMS" }),
|
|
46931
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogDescription, { children: "Send a preview SMS to the automation." })
|
|
46932
|
+
] }),
|
|
46933
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
46934
|
+
SendPreviewPopup,
|
|
46935
|
+
{
|
|
46936
|
+
automation,
|
|
46937
|
+
type: "sms",
|
|
46938
|
+
setOpenSendPreviewPopup: setOpenSendPreviewSmsPopup,
|
|
46939
|
+
iconDefinitions
|
|
46940
|
+
}
|
|
46941
|
+
)
|
|
46942
|
+
] })
|
|
46931
46943
|
}
|
|
46932
46944
|
),
|
|
46933
46945
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -46935,15 +46947,21 @@ ${message2 ?? ""}`);
|
|
|
46935
46947
|
{
|
|
46936
46948
|
open: openSendPreviewEmailPopup,
|
|
46937
46949
|
onOpenChange: setOpenSendPreviewEmailPopup,
|
|
46938
|
-
children: /* @__PURE__ */ jsxRuntime.
|
|
46939
|
-
|
|
46940
|
-
|
|
46941
|
-
automation
|
|
46942
|
-
|
|
46943
|
-
|
|
46944
|
-
|
|
46945
|
-
|
|
46946
|
-
|
|
46950
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(DialogContent, { className: "", children: [
|
|
46951
|
+
/* @__PURE__ */ jsxRuntime.jsxs(VisuallyHidden, { children: [
|
|
46952
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogTitle, { children: "Send Preview Email" }),
|
|
46953
|
+
/* @__PURE__ */ jsxRuntime.jsx(DialogDescription, { children: "Send a preview email to the automation." })
|
|
46954
|
+
] }),
|
|
46955
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
46956
|
+
SendPreviewPopup,
|
|
46957
|
+
{
|
|
46958
|
+
automation,
|
|
46959
|
+
type: "email",
|
|
46960
|
+
setOpenSendPreviewPopup: setOpenSendPreviewEmailPopup,
|
|
46961
|
+
iconDefinitions
|
|
46962
|
+
}
|
|
46963
|
+
)
|
|
46964
|
+
] })
|
|
46947
46965
|
}
|
|
46948
46966
|
),
|
|
46949
46967
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "p-6 border-b border-gray-200", children: [
|