@embedreach/components 0.1.53 → 0.1.55

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.
@@ -40473,7 +40473,7 @@ function SegmentBuilder({
40473
40473
  ]
40474
40474
  });
40475
40475
  };
40476
- return /* @__PURE__ */ jsxs("div", { children: [
40476
+ return /* @__PURE__ */ jsxs("div", { className: "flex flex-1 flex-col overflow-hidden", children: [
40477
40477
  /* @__PURE__ */ jsx("div", { className: "flex flex-1 flex-col overflow-hidden px-8", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-1 flex-col gap-4 overflow-hidden", children: [
40478
40478
  /* @__PURE__ */ jsxs("div", { className: "mb-6 grid grid-cols-2 gap-2", children: [
40479
40479
  /* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
@@ -40608,7 +40608,7 @@ function SegmentBuilderDialog({
40608
40608
  return /* @__PURE__ */ jsx(Dialog, { open, onOpenChange: setOpen, children: /* @__PURE__ */ jsxs(
40609
40609
  DialogContent,
40610
40610
  {
40611
- className: "flex max-h-[90dvh] flex-col gap-0 p-0 max-w-4xl overflow-visible",
40611
+ className: "flex max-h-[86vh] flex-col gap-0 p-0 overflow-visible max-w-[800px] w-full",
40612
40612
  hideCloseButton: true,
40613
40613
  children: [
40614
40614
  /* @__PURE__ */ jsx(DialogHeader, { className: "p-8 pb-4", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
@@ -40628,7 +40628,10 @@ function SegmentBuilderDialog({
40628
40628
  SegmentBuilder,
40629
40629
  {
40630
40630
  segmentId,
40631
- setOpen,
40631
+ setOpen: (val) => {
40632
+ setOpen(val);
40633
+ onSegmentUpdated?.(false);
40634
+ },
40632
40635
  onSegmentUpdated
40633
40636
  }
40634
40637
  )