@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.
@@ -4432,7 +4432,7 @@ var TooltipContent = React5.forwardRef((_a, ref) => {
4432
4432
  ref,
4433
4433
  sideOffset,
4434
4434
  className: cn(
4435
- "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",
4435
+ "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",
4436
4436
  className
4437
4437
  )
4438
4438
  }, props)
@@ -4481,7 +4481,14 @@ function BubbleMenuButton(item) {
4481
4481
  if (tooltip) {
4482
4482
  return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(Tooltip, { children: [
4483
4483
  /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(TooltipTrigger, { asChild: true, children: content }),
4484
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(TooltipContent, { sideOffset: 8, children: tooltip })
4484
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
4485
+ TooltipContent,
4486
+ {
4487
+ sideOffset: 8,
4488
+ className: "tooltip-surface",
4489
+ children: tooltip
4490
+ }
4491
+ )
4485
4492
  ] });
4486
4493
  }
4487
4494
  return content;
@@ -5220,7 +5227,14 @@ function AlignmentSwitch(props) {
5220
5227
  children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(activeAlignment.icon, { className: "mly:h-3 mly:w-3 mly:stroke-[2.5]" })
5221
5228
  }
5222
5229
  ) }),
5223
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(TooltipContent, { sideOffset: 8, children: "Alignment" })
5230
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
5231
+ TooltipContent,
5232
+ {
5233
+ sideOffset: 8,
5234
+ className: "tooltip-surface",
5235
+ children: "Alignment"
5236
+ }
5237
+ )
5224
5238
  ] }),
5225
5239
  /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
5226
5240
  PopoverContent,
@@ -5304,7 +5318,14 @@ function ColorPicker(props) {
5304
5318
  children: [
5305
5319
  tooltip ? /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(Tooltip, { children: [
5306
5320
  /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(TooltipTrigger, { asChild: true, children: popoverButton }),
5307
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(TooltipContent, { sideOffset: 8, children: tooltip })
5321
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
5322
+ TooltipContent,
5323
+ {
5324
+ sideOffset: 8,
5325
+ className: "tooltip-surface",
5326
+ children: tooltip
5327
+ }
5328
+ )
5308
5329
  ] }) : popoverButton,
5309
5330
  /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
5310
5331
  PopoverContent,
@@ -6928,7 +6949,14 @@ function LinkInputPopover(props) {
6928
6949
  children: [
6929
6950
  tooltip ? /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(Tooltip, { children: [
6930
6951
  /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(TooltipTrigger, { asChild: true, children: popoverButton }),
6931
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(TooltipContent, { sideOffset: 8, children: tooltip })
6952
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
6953
+ TooltipContent,
6954
+ {
6955
+ sideOffset: 8,
6956
+ className: "tooltip-surface",
6957
+ children: tooltip
6958
+ }
6959
+ )
6932
6960
  ] }) : popoverButton,
6933
6961
  /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
6934
6962
  PopoverContent,
@@ -7061,7 +7089,14 @@ function Select(props) {
7061
7089
  }
7062
7090
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(Tooltip, { children: [
7063
7091
  /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(TooltipTrigger, { asChild: true, children: content }),
7064
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(TooltipContent, { sideOffset: 8, children: tooltip })
7092
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
7093
+ TooltipContent,
7094
+ {
7095
+ sideOffset: 8,
7096
+ className: "tooltip-surface",
7097
+ children: tooltip
7098
+ }
7099
+ )
7065
7100
  ] });
7066
7101
  }
7067
7102