@ixo/editor 1.21.0 → 1.22.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.
|
@@ -13180,6 +13180,7 @@ function IxoEditorContent({
|
|
|
13180
13180
|
className,
|
|
13181
13181
|
onChange,
|
|
13182
13182
|
onSelectionChange,
|
|
13183
|
+
isPanelVisible = true,
|
|
13183
13184
|
children
|
|
13184
13185
|
}) {
|
|
13185
13186
|
return /* @__PURE__ */ React141.createElement("div", { style: { display: "flex", height: "100%" } }, /* @__PURE__ */ React141.createElement("div", { className: `ixo-editor ixo-editor--theme-${config.theme} ${className}`, style: { flex: 1 } }, /* @__PURE__ */ React141.createElement(
|
|
@@ -13209,7 +13210,7 @@ function IxoEditorContent({
|
|
|
13209
13210
|
}
|
|
13210
13211
|
),
|
|
13211
13212
|
children
|
|
13212
|
-
)), /* @__PURE__ */ React141.createElement(PanelContent, { theme: config.theme }));
|
|
13213
|
+
)), isPanelVisible && /* @__PURE__ */ React141.createElement(PanelContent, { theme: config.theme }));
|
|
13213
13214
|
}
|
|
13214
13215
|
function IxoEditor({
|
|
13215
13216
|
editor,
|
|
@@ -13336,4 +13337,4 @@ export {
|
|
|
13336
13337
|
ixoGraphQLClient,
|
|
13337
13338
|
getEntity
|
|
13338
13339
|
};
|
|
13339
|
-
//# sourceMappingURL=chunk-
|
|
13340
|
+
//# sourceMappingURL=chunk-4XIQ44T7.mjs.map
|