@contentful/experiences-visual-editor-react 1.42.0-prerelease-20250620T0958-8e54295.0 → 1.42.0-prerelease-20250620T1900-059481b.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 +4 -4
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +4 -4
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/renderApp.js
CHANGED
|
@@ -43342,11 +43342,11 @@ const ComponentPropertyValueSchema$1 = z.discriminatedUnion('type', [
|
|
|
43342
43342
|
]);
|
|
43343
43343
|
// TODO: finalize schema structure before release
|
|
43344
43344
|
// https://contentful.atlassian.net/browse/LUMOS-523
|
|
43345
|
-
const
|
|
43345
|
+
const ParameterSchema$1 = z.object({
|
|
43346
43346
|
type: z.literal('BoundValue'),
|
|
43347
43347
|
path: z.string(),
|
|
43348
43348
|
});
|
|
43349
|
-
const ParametersSchema$1 = z.record(propertyKeySchema$1,
|
|
43349
|
+
const ParametersSchema$1 = z.record(propertyKeySchema$1, ParameterSchema$1);
|
|
43350
43350
|
const BreakpointSchema$1 = z
|
|
43351
43351
|
.object({
|
|
43352
43352
|
id: propertyKeySchema$1,
|
|
@@ -58492,11 +58492,11 @@ const ComponentPropertyValueSchema = z.discriminatedUnion('type', [
|
|
|
58492
58492
|
]);
|
|
58493
58493
|
// TODO: finalize schema structure before release
|
|
58494
58494
|
// https://contentful.atlassian.net/browse/LUMOS-523
|
|
58495
|
-
const
|
|
58495
|
+
const ParameterSchema = z.object({
|
|
58496
58496
|
type: z.literal('BoundValue'),
|
|
58497
58497
|
path: z.string(),
|
|
58498
58498
|
});
|
|
58499
|
-
const ParametersSchema = z.record(propertyKeySchema,
|
|
58499
|
+
const ParametersSchema = z.record(propertyKeySchema, ParameterSchema);
|
|
58500
58500
|
const BreakpointSchema = z
|
|
58501
58501
|
.object({
|
|
58502
58502
|
id: propertyKeySchema,
|