@supernova-studio/model 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 CHANGED
@@ -48959,6 +48959,7 @@ declare const PageBlockItemStorybookValue: z$1.ZodObject<{
48959
48959
  showProperties: z$1.ZodOptional<z$1.ZodBoolean>;
48960
48960
  showDescription: z$1.ZodOptional<z$1.ZodBoolean>;
48961
48961
  showDefaults: z$1.ZodOptional<z$1.ZodBoolean>;
48962
+ showThemeSwitcher: z$1.ZodOptional<z$1.ZodBoolean>;
48962
48963
  }, "strip", z$1.ZodTypeAny, {
48963
48964
  value?: {
48964
48965
  entityId?: string | undefined;
@@ -48978,6 +48979,7 @@ declare const PageBlockItemStorybookValue: z$1.ZodObject<{
48978
48979
  showProperties?: boolean | undefined;
48979
48980
  showDescription?: boolean | undefined;
48980
48981
  showDefaults?: boolean | undefined;
48982
+ showThemeSwitcher?: boolean | undefined;
48981
48983
  }, {
48982
48984
  value?: {
48983
48985
  entityId?: string | undefined;
@@ -48997,6 +48999,7 @@ declare const PageBlockItemStorybookValue: z$1.ZodObject<{
48997
48999
  showProperties?: boolean | undefined;
48998
49000
  showDescription?: boolean | undefined;
48999
49001
  showDefaults?: boolean | undefined;
49002
+ showThemeSwitcher?: boolean | undefined;
49000
49003
  }>;
49001
49004
  type PageBlockItemStorybookValue = z$1.infer<typeof PageBlockItemStorybookValue>;
49002
49005
  declare const PageBlockItemTextValue: z$1.ZodObject<{
package/dist/index.d.ts CHANGED
@@ -48959,6 +48959,7 @@ declare const PageBlockItemStorybookValue: z$1.ZodObject<{
48959
48959
  showProperties: z$1.ZodOptional<z$1.ZodBoolean>;
48960
48960
  showDescription: z$1.ZodOptional<z$1.ZodBoolean>;
48961
48961
  showDefaults: z$1.ZodOptional<z$1.ZodBoolean>;
48962
+ showThemeSwitcher: z$1.ZodOptional<z$1.ZodBoolean>;
48962
48963
  }, "strip", z$1.ZodTypeAny, {
48963
48964
  value?: {
48964
48965
  entityId?: string | undefined;
@@ -48978,6 +48979,7 @@ declare const PageBlockItemStorybookValue: z$1.ZodObject<{
48978
48979
  showProperties?: boolean | undefined;
48979
48980
  showDescription?: boolean | undefined;
48980
48981
  showDefaults?: boolean | undefined;
48982
+ showThemeSwitcher?: boolean | undefined;
48981
48983
  }, {
48982
48984
  value?: {
48983
48985
  entityId?: string | undefined;
@@ -48997,6 +48999,7 @@ declare const PageBlockItemStorybookValue: z$1.ZodObject<{
48997
48999
  showProperties?: boolean | undefined;
48998
49000
  showDescription?: boolean | undefined;
48999
49001
  showDefaults?: boolean | undefined;
49002
+ showThemeSwitcher?: boolean | undefined;
49000
49003
  }>;
49001
49004
  type PageBlockItemStorybookValue = z$1.infer<typeof PageBlockItemStorybookValue>;
49002
49005
  declare const PageBlockItemTextValue: z$1.ZodObject<{
package/dist/index.js CHANGED
@@ -2898,7 +2898,8 @@ var PageBlockItemStorybookValue = _zod.z.object({
2898
2898
  showFooter: _zod.z.boolean().optional(),
2899
2899
  showProperties: _zod.z.boolean().optional(),
2900
2900
  showDescription: _zod.z.boolean().optional(),
2901
- showDefaults: _zod.z.boolean().optional()
2901
+ showDefaults: _zod.z.boolean().optional(),
2902
+ showThemeSwitcher: _zod.z.boolean().optional()
2902
2903
  });
2903
2904
  var PageBlockItemTextValue = _zod.z.object({
2904
2905
  value: _zod.z.string()