easy-email-pro-editor 1.34.3 → 1.35.0
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 +1 -1
- package/lib/typings/constants/index.d.ts +2 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -910,7 +910,7 @@ const Ds = (e) => {
|
|
|
910
910
|
const u = Vg(e);
|
|
911
911
|
return !!u && e instanceof u.Node && e instanceof u.Node;
|
|
912
912
|
}, Vg = (e) => e && e.ownerDocument && e.ownerDocument.defaultView || null;
|
|
913
|
-
var ts = /* @__PURE__ */ ((e) => (e.TURN_INTO = "turnInto", e.FONT_SIZE = "fontSize", e.FONT_FAMILY = "fontFamily", e.BOLD = "bold", e.ITALIC = "italic", e.UNDERLINE = "underline", e.STRIKETHROUGH = "strikethrough", e.LINK = "link", e.TEXT_COLOR = "color", e.BACKGROUND_COLOR = "bgColor", e.MERGETAG = "mergetag", e.ALIGN = "align", e.REMOVE_FORMAT = "removeFormat", e.LIST = "LIST", e))(ts || {}), Pl = /* @__PURE__ */ ((e) => (e.EDITOR_CLICK = "EDITOR_CLICK", e))(Pl || {});
|
|
913
|
+
var ts = /* @__PURE__ */ ((e) => (e.TURN_INTO = "turnInto", e.FONT_SIZE = "fontSize", e.FONT_FAMILY = "fontFamily", e.BOLD = "bold", e.ITALIC = "italic", e.UNDERLINE = "underline", e.STRIKETHROUGH = "strikethrough", e.LINK = "link", e.TEXT_COLOR = "color", e.BACKGROUND_COLOR = "bgColor", e.MERGETAG = "mergetag", e.ALIGN = "align", e.REMOVE_FORMAT = "removeFormat", e.LIST = "LIST", e.AI_ASSISTANT = "AIAssistantPlugin", e))(ts || {}), Pl = /* @__PURE__ */ ((e) => (e.EDITOR_CLICK = "EDITOR_CLICK", e))(Pl || {});
|
|
914
914
|
const Gg = (d) => {
|
|
915
915
|
var g = d, {
|
|
916
916
|
children: e,
|
|
@@ -12,7 +12,8 @@ export declare enum TextFormat {
|
|
|
12
12
|
MERGETAG = "mergetag",
|
|
13
13
|
ALIGN = "align",
|
|
14
14
|
REMOVE_FORMAT = "removeFormat",
|
|
15
|
-
LIST = "LIST"
|
|
15
|
+
LIST = "LIST",
|
|
16
|
+
AI_ASSISTANT = "AIAssistantPlugin"
|
|
16
17
|
}
|
|
17
18
|
export declare enum CustomEvent {
|
|
18
19
|
EDITOR_CLICK = "EDITOR_CLICK"
|