@embedreach/components 0.2.67 → 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.
@@ -86431,7 +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 cursor-not-allowed", children: /* @__PURE__ */ jsx(InfoTooltip, { alertText, asChild: false, children: /* @__PURE__ */ jsx("div", { className: "px-4 py-2 rounded border border-input bg-background text-muted-foreground cursor-not-allowed text-sm font-medium", children: /* @__PURE__ */ jsx("span", { children: sendText }) }) }) });
86434
+ return /* @__PURE__ */ jsx("div", { className: "flex items-center gap-2", children: /* @__PURE__ */ jsx(
86435
+ InfoTooltip,
86436
+ {
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
+ )
86450
+ }
86451
+ ) });
86435
86452
  };
86436
86453
  return /* @__PURE__ */ jsx("div", { className: "flex items-center gap-2 cursor-not-allowed", children: renderInfoTooltip() });
86437
86454
  }