@supernova-studio/client 1.87.1 → 1.87.2
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 +24 -1
- package/dist/index.d.ts +24 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2696,7 +2696,8 @@ var PageBlockItemStorybookValue = z51.object({
|
|
|
2696
2696
|
showFooter: z51.boolean().optional(),
|
|
2697
2697
|
showProperties: z51.boolean().optional(),
|
|
2698
2698
|
showDescription: z51.boolean().optional(),
|
|
2699
|
-
showDefaults: z51.boolean().optional()
|
|
2699
|
+
showDefaults: z51.boolean().optional(),
|
|
2700
|
+
showThemeSwitcher: z51.boolean().optional()
|
|
2700
2701
|
});
|
|
2701
2702
|
var PageBlockItemTextValue = z51.object({
|
|
2702
2703
|
value: z51.string()
|
|
@@ -15094,6 +15095,7 @@ var VersionRoomBaseYDoc = class {
|
|
|
15094
15095
|
const version = this.getStorageVersion();
|
|
15095
15096
|
switch (version) {
|
|
15096
15097
|
case 2:
|
|
15098
|
+
key += "V2";
|
|
15097
15099
|
return new YJSKeyValueStorageV2(this.yDoc, key);
|
|
15098
15100
|
default:
|
|
15099
15101
|
return new YJSKeyValueStorageV1(this.yDoc, key);
|
|
@@ -21824,6 +21826,8 @@ export {
|
|
|
21824
21826
|
WorkspaceNpmRegistryEndpoint,
|
|
21825
21827
|
WorkspaceSubscriptionEndpoint,
|
|
21826
21828
|
WorkspacesEndpoint,
|
|
21829
|
+
YJSKeyValueStorageV1,
|
|
21830
|
+
YJSKeyValueStorageV2,
|
|
21827
21831
|
applyActionsLocally,
|
|
21828
21832
|
applyPrivacyConfigurationToNestedItems,
|
|
21829
21833
|
applyProjectActionsLocally,
|