@contentful/experiences-visual-editor-react 1.33.3-dev-20250227T1553-467d4ac.0 → 1.34.0-beta.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
@@ -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
  });