@bigbinary/neeto-editor 1.47.64 → 1.47.65

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/Editor.js CHANGED
@@ -11448,7 +11448,9 @@ var ImageExtension = Node.create({
11448
11448
  if (!src) return ["span"];
11449
11449
  var openImageInNewTab = this.options.openImageInNewTab;
11450
11450
  var wrapperDivAttrs = {
11451
- "class": "neeto-editor__image-wrapper neeto-editor__image--".concat(align)
11451
+ "class": classnames("neeto-editor__image-wrapper", "neeto-editor__image--".concat(align), {
11452
+ "neeto-editor__image--bordered": border
11453
+ })
11452
11454
  };
11453
11455
  var wrapperLinkPointerEventsStyle = openImageInNewTab ? "" : "pointer-events:none;";
11454
11456
  var heightStyle = figheight === "auto" ? "auto" : "".concat(figheight, "px");