@embedreach/components 0.2.66 → 0.2.68
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 +16 -7
- package/dist/index.umd.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/chunks/index.js
CHANGED
|
@@ -86431,15 +86431,24 @@ const AutomationsEditorHeader = ({ showBackButton, onDuplicationCreated, onBefor
|
|
|
86431
86431
|
(msg) => capitalize(msg)
|
|
86432
86432
|
);
|
|
86433
86433
|
const alertText = `You cannot start this ${t$1("engage:broadcast")} yet. ${formattedMessages.join(" · ")}`;
|
|
86434
|
-
return /* @__PURE__ */ jsx("div", { className: "flex items-center gap-2
|
|
86435
|
-
|
|
86434
|
+
return /* @__PURE__ */ jsx("div", { className: "flex items-center gap-2", children: /* @__PURE__ */ jsx(
|
|
86435
|
+
InfoTooltip,
|
|
86436
86436
|
{
|
|
86437
|
-
|
|
86438
|
-
|
|
86439
|
-
|
|
86440
|
-
children: /* @__PURE__ */ jsx(
|
|
86437
|
+
alertText,
|
|
86438
|
+
asChild: false,
|
|
86439
|
+
className: "!cursor-not-allowed",
|
|
86440
|
+
children: /* @__PURE__ */ jsx(
|
|
86441
|
+
Button$1,
|
|
86442
|
+
{
|
|
86443
|
+
variant: "outline",
|
|
86444
|
+
className: "flex items-center gap-2",
|
|
86445
|
+
disabled: true,
|
|
86446
|
+
asChild: false,
|
|
86447
|
+
children: sendText
|
|
86448
|
+
}
|
|
86449
|
+
)
|
|
86441
86450
|
}
|
|
86442
|
-
) })
|
|
86451
|
+
) });
|
|
86443
86452
|
};
|
|
86444
86453
|
return /* @__PURE__ */ jsx("div", { className: "flex items-center gap-2 cursor-not-allowed", children: renderInfoTooltip() });
|
|
86445
86454
|
}
|