@contentful/experiences-visual-editor-react 1.33.3 → 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/index.js CHANGED
@@ -1044,6 +1044,7 @@ const THUMBNAIL_IDS$1 = [
1044
1044
  const ComponentSettingsSchema$1 = z.object({
1045
1045
  variableDefinitions: ComponentVariablesSchema$1,
1046
1046
  thumbnailId: z.enum(THUMBNAIL_IDS$1).optional(),
1047
+ category: z.string().max(50, 'Category must contain at most 50 characters').optional(),
1047
1048
  variableMappings: VariableMappingsSchema$1.optional(),
1048
1049
  patternPropertyDefinitions: PatternPropertyDefinitionsSchema$1.optional(),
1049
1050
  });
@@ -3478,6 +3479,7 @@ const THUMBNAIL_IDS = [
3478
3479
  const ComponentSettingsSchema = z.object({
3479
3480
  variableDefinitions: ComponentVariablesSchema,
3480
3481
  thumbnailId: z.enum(THUMBNAIL_IDS).optional(),
3482
+ category: z.string().max(50, 'Category must contain at most 50 characters').optional(),
3481
3483
  variableMappings: VariableMappingsSchema.optional(),
3482
3484
  patternPropertyDefinitions: PatternPropertyDefinitionsSchema.optional(),
3483
3485
  });