@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/renderApp.js CHANGED
@@ -42129,7 +42129,7 @@ const BreakpointSchema$1 = z
42129
42129
  id: propertyKeySchema$1,
42130
42130
  // Can be replace with z.templateLiteral when upgrading to zod v4
42131
42131
  query: z.string().refine((s) => BREAKPOINT_QUERY_REGEX$1.test(s)),
42132
- previewSize: z.string(),
42132
+ previewSize: z.string().optional(),
42133
42133
  displayName: z.string(),
42134
42134
  displayIcon: z.enum(['desktop', 'tablet', 'mobile']).optional(),
42135
42135
  })
@@ -49680,7 +49680,7 @@ const BreakpointSchema = z
49680
49680
  id: propertyKeySchema,
49681
49681
  // Can be replace with z.templateLiteral when upgrading to zod v4
49682
49682
  query: z.string().refine((s) => BREAKPOINT_QUERY_REGEX.test(s)),
49683
- previewSize: z.string(),
49683
+ previewSize: z.string().optional(),
49684
49684
  displayName: z.string(),
49685
49685
  displayIcon: z.enum(['desktop', 'tablet', 'mobile']).optional(),
49686
49686
  })