@supernova-studio/client 0.47.44 → 0.47.45
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/yjs/version-room/frontend.ts +10 -0
package/dist/index.mjs
CHANGED
|
@@ -6096,6 +6096,14 @@ var FrontendVersionRoomYDoc = class {
|
|
|
6096
6096
|
[pageId]: pageContentHash
|
|
6097
6097
|
});
|
|
6098
6098
|
}
|
|
6099
|
+
//
|
|
6100
|
+
// Misc
|
|
6101
|
+
//
|
|
6102
|
+
isDraftFeatureAdopted() {
|
|
6103
|
+
const doc = new VersionRoomBaseYDoc(this.yDoc);
|
|
6104
|
+
const settings = doc.getDocumentationInternalSettings();
|
|
6105
|
+
return settings.isDraftFeatureAdopted;
|
|
6106
|
+
}
|
|
6099
6107
|
};
|
|
6100
6108
|
|
|
6101
6109
|
// src/yjs/design-system-content/documentation-hierarchy.ts
|