@contentful/experiences-components-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 +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1339,7 +1339,7 @@ const BreakpointSchema = z
|
|
|
1339
1339
|
id: propertyKeySchema,
|
|
1340
1340
|
// Can be replace with z.templateLiteral when upgrading to zod v4
|
|
1341
1341
|
query: z.string().refine((s) => BREAKPOINT_QUERY_REGEX.test(s)),
|
|
1342
|
-
previewSize: z.string(),
|
|
1342
|
+
previewSize: z.string().optional(),
|
|
1343
1343
|
displayName: z.string(),
|
|
1344
1344
|
displayIcon: z.enum(['desktop', 'tablet', 'mobile']).optional(),
|
|
1345
1345
|
})
|