@bigbinary/neeto-editor 1.47.44 → 1.47.46

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
@@ -11365,6 +11365,9 @@ var FigCaption = Node.create({
11365
11365
  var Italic = Italic$1.extend({
11366
11366
  addInputRules: function addInputRules() {
11367
11367
  return [];
11368
+ },
11369
+ addPasteRules: function addPasteRules() {
11370
+ return [];
11368
11371
  }
11369
11372
  });
11370
11373
 
@@ -20123,8 +20126,8 @@ var getEmbedAttributes = function getEmbedAttributes() {
20123
20126
  "default": null
20124
20127
  },
20125
20128
  frameBorder: "0",
20126
- allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",
20127
- allowfullscreen: "allowfullscreen"
20129
+ allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen",
20130
+ allowfullscreen: true
20128
20131
  };
20129
20132
  };
20130
20133
  var renderEmbedHTML = function renderEmbedHTML(node, HTMLAttributes, options) {
@@ -20137,7 +20140,9 @@ var renderEmbedHTML = function renderEmbedHTML(node, HTMLAttributes, options) {
20137
20140
  }, ["div", {
20138
20141
  "class": "neeto-editor__video-iframe",
20139
20142
  style: "width: ".concat(figwidth, "px; height: ").concat(figheight, "px;")
20140
- }, ["iframe", mergeAttributes(options.HTMLAttributes, HTMLAttributes)]]];
20143
+ }, ["iframe", mergeAttributes(options.HTMLAttributes, _objectSpread$1(_objectSpread$1({}, HTMLAttributes), {}, {
20144
+ allowfullscreen: true
20145
+ }))]]];
20141
20146
  };
20142
20147
  var renderUploadHTML = function renderUploadHTML(node, HTMLAttributes, options) {
20143
20148
  var _node$attrs2 = node.attrs,