@contentful/experiences-visual-editor-react 3.7.0-dev-20250918T1641-6da833a.0 → 3.7.0-dev-20250918T1653-d735f6f.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.
package/dist/index.js CHANGED
@@ -755,7 +755,7 @@ const BreakpointSchema$1 = z
755
755
  id: propertyKeySchema$1,
756
756
  // Can be replace with z.templateLiteral when upgrading to zod v4
757
757
  query: z.string().refine((s) => BREAKPOINT_QUERY_REGEX$1.test(s)),
758
- previewSize: z.string(),
758
+ previewSize: z.string().optional(),
759
759
  displayName: z.string(),
760
760
  displayIcon: z.enum(['desktop', 'tablet', 'mobile']).optional(),
761
761
  })
@@ -3734,7 +3734,7 @@ const BreakpointSchema = z
3734
3734
  id: propertyKeySchema,
3735
3735
  // Can be replace with z.templateLiteral when upgrading to zod v4
3736
3736
  query: z.string().refine((s) => BREAKPOINT_QUERY_REGEX.test(s)),
3737
- previewSize: z.string(),
3737
+ previewSize: z.string().optional(),
3738
3738
  displayName: z.string(),
3739
3739
  displayIcon: z.enum(['desktop', 'tablet', 'mobile']).optional(),
3740
3740
  })