@contentful/experiences-visual-editor-react 1.33.3 → 1.34.0-dev-20250228T1701-87c41f6.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 +2 -0
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +2 -0
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/renderApp.js
CHANGED
|
@@ -43665,6 +43665,7 @@ const THUMBNAIL_IDS$1 = [
|
|
|
43665
43665
|
const ComponentSettingsSchema$1 = z.object({
|
|
43666
43666
|
variableDefinitions: ComponentVariablesSchema$1,
|
|
43667
43667
|
thumbnailId: z.enum(THUMBNAIL_IDS$1).optional(),
|
|
43668
|
+
category: z.string().max(50, 'Category must contain at most 50 characters').optional(),
|
|
43668
43669
|
variableMappings: VariableMappingsSchema$1.optional(),
|
|
43669
43670
|
patternPropertyDefinitions: PatternPropertyDefinitionsSchema$1.optional(),
|
|
43670
43671
|
});
|
|
@@ -58392,6 +58393,7 @@ const THUMBNAIL_IDS = [
|
|
|
58392
58393
|
const ComponentSettingsSchema = z.object({
|
|
58393
58394
|
variableDefinitions: ComponentVariablesSchema,
|
|
58394
58395
|
thumbnailId: z.enum(THUMBNAIL_IDS).optional(),
|
|
58396
|
+
category: z.string().max(50, 'Category must contain at most 50 characters').optional(),
|
|
58395
58397
|
variableMappings: VariableMappingsSchema.optional(),
|
|
58396
58398
|
patternPropertyDefinitions: PatternPropertyDefinitionsSchema.optional(),
|
|
58397
58399
|
});
|