easy-email-pro-theme 1.50.0 → 1.50.1
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/lib/index.js +6 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -15498,7 +15498,12 @@ const TextLink = () => {
|
|
|
15498
15498
|
type: "secondary",
|
|
15499
15499
|
icon: /* @__PURE__ */ React__default.createElement(IconFont, { iconName: "icon-merge-tags" })
|
|
15500
15500
|
}
|
|
15501
|
-
)
|
|
15501
|
+
),
|
|
15502
|
+
getPopupContainer: (node) => {
|
|
15503
|
+
return Array.from(
|
|
15504
|
+
document.querySelectorAll(".RichTextBar")
|
|
15505
|
+
).find((item2) => item2.contains(node));
|
|
15506
|
+
}
|
|
15502
15507
|
}
|
|
15503
15508
|
),
|
|
15504
15509
|
/* @__PURE__ */ React__default.createElement(
|