@solutions2share/s2s-email-builder 0.0.3 → 0.0.4
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/dist/index.cjs.js +1 -1
- package/dist/index.es.js +11 -8
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -28884,8 +28884,10 @@ function Ka({ children: e }) {
|
|
|
28884
28884
|
let a;
|
|
28885
28885
|
t === i ? a = "2px solid rgba(0,121,204, 1)" : r && (a = "2px solid rgba(0,121,204, 0.3)");
|
|
28886
28886
|
let o;
|
|
28887
|
-
Object.keys(e.props.props).length === 1 && Object.keys(e.props.props)[0] === "text" && (o = "break-
|
|
28888
|
-
|
|
28887
|
+
Object.keys(e.props.props).length === 1 && Object.keys(e.props.props)[0] === "text" && (o = "break-word");
|
|
28888
|
+
let u;
|
|
28889
|
+
Object.keys(e.props.props).length === 1 && Object.keys(e.props.props)[0] === "text" && (u = "break-word");
|
|
28890
|
+
const d = () => t !== i ? null : /* @__PURE__ */ G.jsx(G6, { blockId: i });
|
|
28889
28891
|
return /* @__PURE__ */ G.jsxs(
|
|
28890
28892
|
On,
|
|
28891
28893
|
{
|
|
@@ -28896,19 +28898,20 @@ function Ka({ children: e }) {
|
|
|
28896
28898
|
outline: a,
|
|
28897
28899
|
// backgroundColor,
|
|
28898
28900
|
// color,
|
|
28899
|
-
wordBreak: o
|
|
28901
|
+
wordBreak: o,
|
|
28902
|
+
overflowWrap: u
|
|
28900
28903
|
},
|
|
28901
|
-
onMouseEnter: (
|
|
28902
|
-
n(!0),
|
|
28904
|
+
onMouseEnter: (p) => {
|
|
28905
|
+
n(!0), p.stopPropagation();
|
|
28903
28906
|
},
|
|
28904
28907
|
onMouseLeave: () => {
|
|
28905
28908
|
n(!1);
|
|
28906
28909
|
},
|
|
28907
|
-
onClick: (
|
|
28908
|
-
uu(i),
|
|
28910
|
+
onClick: (p) => {
|
|
28911
|
+
uu(i), p.stopPropagation(), p.preventDefault();
|
|
28909
28912
|
},
|
|
28910
28913
|
children: [
|
|
28911
|
-
|
|
28914
|
+
d(),
|
|
28912
28915
|
e
|
|
28913
28916
|
]
|
|
28914
28917
|
}
|