@daisychainapp/maily-to-core 0.4.1 → 0.4.3

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.
@@ -4339,7 +4339,7 @@ var TooltipContent = React5.forwardRef((_a, ref) => {
4339
4339
  ref,
4340
4340
  sideOffset,
4341
4341
  className: cn(
4342
- "mly:z-50 mly:overflow-hidden mly:rounded-md mly:border mly:border-gray-200 mly:bg-white mly:px-2 mly:py-1 mly:text-xs mly:animate-in mly:fade-in-0 mly:zoom-in-95",
4342
+ "tooltip-surface mly:z-50 mly:overflow-hidden mly:rounded-md mly:border mly:border-gray-200 mly:bg-white mly:px-2 mly:py-1 mly:text-xs mly:animate-in mly:fade-in-0 mly:zoom-in-95",
4343
4343
  className
4344
4344
  )
4345
4345
  }, props)
@@ -4388,7 +4388,14 @@ function BubbleMenuButton(item) {
4388
4388
  if (tooltip) {
4389
4389
  return /* @__PURE__ */ jsxs2(Tooltip, { children: [
4390
4390
  /* @__PURE__ */ jsx7(TooltipTrigger, { asChild: true, children: content }),
4391
- /* @__PURE__ */ jsx7(TooltipContent, { sideOffset: 8, children: tooltip })
4391
+ /* @__PURE__ */ jsx7(
4392
+ TooltipContent,
4393
+ {
4394
+ sideOffset: 8,
4395
+ className: "tooltip-surface",
4396
+ children: tooltip
4397
+ }
4398
+ )
4392
4399
  ] });
4393
4400
  }
4394
4401
  return content;
@@ -5132,7 +5139,14 @@ function AlignmentSwitch(props) {
5132
5139
  children: /* @__PURE__ */ jsx10(activeAlignment.icon, { className: "mly:h-3 mly:w-3 mly:stroke-[2.5]" })
5133
5140
  }
5134
5141
  ) }),
5135
- /* @__PURE__ */ jsx10(TooltipContent, { sideOffset: 8, children: "Alignment" })
5142
+ /* @__PURE__ */ jsx10(
5143
+ TooltipContent,
5144
+ {
5145
+ sideOffset: 8,
5146
+ className: "tooltip-surface",
5147
+ children: "Alignment"
5148
+ }
5149
+ )
5136
5150
  ] }),
5137
5151
  /* @__PURE__ */ jsx10(
5138
5152
  PopoverContent,
@@ -5216,7 +5230,14 @@ function ColorPicker(props) {
5216
5230
  children: [
5217
5231
  tooltip ? /* @__PURE__ */ jsxs6(Tooltip, { children: [
5218
5232
  /* @__PURE__ */ jsx11(TooltipTrigger, { asChild: true, children: popoverButton }),
5219
- /* @__PURE__ */ jsx11(TooltipContent, { sideOffset: 8, children: tooltip })
5233
+ /* @__PURE__ */ jsx11(
5234
+ TooltipContent,
5235
+ {
5236
+ sideOffset: 8,
5237
+ className: "tooltip-surface",
5238
+ children: tooltip
5239
+ }
5240
+ )
5220
5241
  ] }) : popoverButton,
5221
5242
  /* @__PURE__ */ jsx11(
5222
5243
  PopoverContent,
@@ -6870,7 +6891,14 @@ function LinkInputPopover(props) {
6870
6891
  children: [
6871
6892
  tooltip ? /* @__PURE__ */ jsxs13(Tooltip, { children: [
6872
6893
  /* @__PURE__ */ jsx29(TooltipTrigger, { asChild: true, children: popoverButton }),
6873
- /* @__PURE__ */ jsx29(TooltipContent, { sideOffset: 8, children: tooltip })
6894
+ /* @__PURE__ */ jsx29(
6895
+ TooltipContent,
6896
+ {
6897
+ sideOffset: 8,
6898
+ className: "tooltip-surface",
6899
+ children: tooltip
6900
+ }
6901
+ )
6874
6902
  ] }) : popoverButton,
6875
6903
  /* @__PURE__ */ jsx29(
6876
6904
  PopoverContent,
@@ -7003,7 +7031,14 @@ function Select(props) {
7003
7031
  }
7004
7032
  return /* @__PURE__ */ jsxs14(Tooltip, { children: [
7005
7033
  /* @__PURE__ */ jsx30(TooltipTrigger, { asChild: true, children: content }),
7006
- /* @__PURE__ */ jsx30(TooltipContent, { sideOffset: 8, children: tooltip })
7034
+ /* @__PURE__ */ jsx30(
7035
+ TooltipContent,
7036
+ {
7037
+ sideOffset: 8,
7038
+ className: "tooltip-surface",
7039
+ children: tooltip
7040
+ }
7041
+ )
7007
7042
  ] });
7008
7043
  }
7009
7044