@superblocksteam/library 2.0.37-next.6 → 2.0.37-next.8

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 CHANGED
@@ -6229,7 +6229,7 @@ var AsyncSocket = class {
6229
6229
 
6230
6230
  //#endregion
6231
6231
  //#region src/edit-mode/source-update-api.ts
6232
- const PING_INTERVAL_MS = 3e4;
6232
+ const PING_INTERVAL_MS = 15e3;
6233
6233
  var OperationAPI = class {
6234
6234
  retryAttempts = 0;
6235
6235
  asyncSocket = new AsyncSocket();
@@ -6717,7 +6717,7 @@ const propertiesDefinition$4 = {
6717
6717
  //#endregion
6718
6718
  //#region src/lib/user-facing/components/page/index.tsx
6719
6719
  const Page = registerComponentInternal(NATIVE_COMPONENT_TYPES.Page, { propertiesDefinition: propertiesDefinition$4 }, (props) => {
6720
- const { name, isAnonymous, style, onLoad,...other } = props;
6720
+ const { name, isAnonymous, style, onLoad, editorProps,...other } = props;
6721
6721
  const { scopeId } = useScope();
6722
6722
  useEffect(() => {
6723
6723
  return root_store_default.onPageLoaded(scopeId, () => {
@@ -6731,13 +6731,13 @@ const Page = registerComponentInternal(NATIVE_COMPONENT_TYPES.Page, { properties
6731
6731
  overflow: "auto"
6732
6732
  },
6733
6733
  children: /* @__PURE__ */ jsx(InternalVStack, {
6734
+ ...editorProps,
6734
6735
  isVisible: true,
6735
6736
  style: {
6736
6737
  height: "100%",
6737
6738
  width: "100%",
6738
6739
  ...style
6739
6740
  },
6740
- direction: "none",
6741
6741
  ...other,
6742
6742
  children: props.children
6743
6743
  })