easy-email-pro-editor 1.51.7 → 1.51.9
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 +10 -9
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -13604,15 +13604,6 @@ const rr = (e) => {
|
|
|
13604
13604
|
case "strikethrough":
|
|
13605
13605
|
N = /* @__PURE__ */ f.createElement("del", null, N);
|
|
13606
13606
|
break;
|
|
13607
|
-
case "link":
|
|
13608
|
-
I.link && (N = /* @__PURE__ */ f.createElement(
|
|
13609
|
-
"a",
|
|
13610
|
-
{
|
|
13611
|
-
target: I.link.blank ? "_blank" : void 0
|
|
13612
|
-
},
|
|
13613
|
-
N
|
|
13614
|
-
));
|
|
13615
|
-
break;
|
|
13616
13607
|
case "color":
|
|
13617
13608
|
O.color = I.color;
|
|
13618
13609
|
break;
|
|
@@ -13625,6 +13616,16 @@ const rr = (e) => {
|
|
|
13625
13616
|
case "fontFamily":
|
|
13626
13617
|
O.fontFamily = I.fontFamily;
|
|
13627
13618
|
break;
|
|
13619
|
+
case "link":
|
|
13620
|
+
I.link && (N = /* @__PURE__ */ f.createElement(
|
|
13621
|
+
"a",
|
|
13622
|
+
{
|
|
13623
|
+
style: O,
|
|
13624
|
+
target: I.link.blank ? "_blank" : void 0
|
|
13625
|
+
},
|
|
13626
|
+
N
|
|
13627
|
+
));
|
|
13628
|
+
break;
|
|
13628
13629
|
default:
|
|
13629
13630
|
OE(O, S, p(I, S));
|
|
13630
13631
|
}
|