contentful-import 9.3.4 → 9.4.0
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.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -642,6 +642,8 @@ function pushToSpace({
|
|
|
642
642
|
ctEditorInterface.controls = editorInterface.controls;
|
|
643
643
|
ctEditorInterface.groupControls = editorInterface.groupControls;
|
|
644
644
|
ctEditorInterface.editorLayout = editorInterface.editorLayout;
|
|
645
|
+
ctEditorInterface.sidebar = editorInterface.sidebar;
|
|
646
|
+
ctEditorInterface.editors = editorInterface.editors;
|
|
645
647
|
const updatedEditorInterface = await requestQueue.add(() => ctEditorInterface.update());
|
|
646
648
|
return updatedEditorInterface;
|
|
647
649
|
} catch (err) {
|
package/dist/index.mjs
CHANGED
|
@@ -615,6 +615,8 @@ function pushToSpace({
|
|
|
615
615
|
ctEditorInterface.controls = editorInterface.controls;
|
|
616
616
|
ctEditorInterface.groupControls = editorInterface.groupControls;
|
|
617
617
|
ctEditorInterface.editorLayout = editorInterface.editorLayout;
|
|
618
|
+
ctEditorInterface.sidebar = editorInterface.sidebar;
|
|
619
|
+
ctEditorInterface.editors = editorInterface.editors;
|
|
618
620
|
const updatedEditorInterface = await requestQueue.add(() => ctEditorInterface.update());
|
|
619
621
|
return updatedEditorInterface;
|
|
620
622
|
} catch (err) {
|