@contentful/experiences-components-react 3.0.0-alpha-20250804T0859-6413b63.0 → 3.0.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
@@ -841,16 +841,16 @@ const optionalBuiltInStyles = {
841
841
  validations: {
842
842
  in: [
843
843
  {
844
- value: 'left',
845
- displayName: 'Align left',
844
+ value: 'start',
845
+ displayName: 'Align start',
846
846
  },
847
847
  {
848
848
  value: 'center',
849
849
  displayName: 'Align center',
850
850
  },
851
851
  {
852
- value: 'right',
853
- displayName: 'Align right',
852
+ value: 'end',
853
+ displayName: 'Align end',
854
854
  },
855
855
  ],
856
856
  },
@@ -858,7 +858,7 @@ const optionalBuiltInStyles = {
858
858
  type: 'Text',
859
859
  group: 'style',
860
860
  description: 'The text alignment of the element',
861
- defaultValue: 'left',
861
+ defaultValue: 'start',
862
862
  },
863
863
  cfTextTransform: {
864
864
  validations: {
@@ -1410,7 +1410,7 @@ const ParameterDefinitionSchema = z.object({
1410
1410
  }),
1411
1411
  })
1412
1412
  .optional(),
1413
- contentTypes: z.array(z.string()),
1413
+ contentTypes: z.array(z.string()).min(1),
1414
1414
  passToNodes: z.array(PassToNodeSchema).optional(),
1415
1415
  });
1416
1416
  const ParameterDefinitionsSchema = z.record(propertyKeySchema, ParameterDefinitionSchema);