@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 +8 -3
- package/dist/Editor.js.map +1 -1
- package/dist/cjs/Editor.cjs.js +8 -3
- package/dist/cjs/Editor.cjs.js.map +1 -1
- package/dist/editor-stats.html +1 -1
- package/package.json +1 -1
package/dist/cjs/Editor.cjs.js
CHANGED
|
@@ -11385,6 +11385,9 @@ var FigCaption = Menu$3.Node.create({
|
|
|
11385
11385
|
var Italic = Italic$1.extend({
|
|
11386
11386
|
addInputRules: function addInputRules() {
|
|
11387
11387
|
return [];
|
|
11388
|
+
},
|
|
11389
|
+
addPasteRules: function addPasteRules() {
|
|
11390
|
+
return [];
|
|
11388
11391
|
}
|
|
11389
11392
|
});
|
|
11390
11393
|
|
|
@@ -20143,8 +20146,8 @@ var getEmbedAttributes = function getEmbedAttributes() {
|
|
|
20143
20146
|
"default": null
|
|
20144
20147
|
},
|
|
20145
20148
|
frameBorder: "0",
|
|
20146
|
-
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",
|
|
20147
|
-
allowfullscreen:
|
|
20149
|
+
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen",
|
|
20150
|
+
allowfullscreen: true
|
|
20148
20151
|
};
|
|
20149
20152
|
};
|
|
20150
20153
|
var renderEmbedHTML = function renderEmbedHTML(node, HTMLAttributes, options) {
|
|
@@ -20157,7 +20160,9 @@ var renderEmbedHTML = function renderEmbedHTML(node, HTMLAttributes, options) {
|
|
|
20157
20160
|
}, ["div", {
|
|
20158
20161
|
"class": "neeto-editor__video-iframe",
|
|
20159
20162
|
style: "width: ".concat(figwidth, "px; height: ").concat(figheight, "px;")
|
|
20160
|
-
}, ["iframe", Menu$3.mergeAttributes(options.HTMLAttributes, HTMLAttributes)
|
|
20163
|
+
}, ["iframe", Menu$3.mergeAttributes(options.HTMLAttributes, _objectSpread$1(_objectSpread$1({}, HTMLAttributes), {}, {
|
|
20164
|
+
allowfullscreen: true
|
|
20165
|
+
}))]]];
|
|
20161
20166
|
};
|
|
20162
20167
|
var renderUploadHTML = function renderUploadHTML(node, HTMLAttributes, options) {
|
|
20163
20168
|
var _node$attrs2 = node.attrs,
|