@contentful/experiences-visual-editor-react 3.0.0-alpha-20250805T1527-42cce69.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/renderApp.js CHANGED
@@ -43853,16 +43853,16 @@ const optionalBuiltInStyles = {
43853
43853
  validations: {
43854
43854
  in: [
43855
43855
  {
43856
- value: 'left',
43857
- displayName: 'Align left',
43856
+ value: 'start',
43857
+ displayName: 'Align start',
43858
43858
  },
43859
43859
  {
43860
43860
  value: 'center',
43861
43861
  displayName: 'Align center',
43862
43862
  },
43863
43863
  {
43864
- value: 'right',
43865
- displayName: 'Align right',
43864
+ value: 'end',
43865
+ displayName: 'Align end',
43866
43866
  },
43867
43867
  ],
43868
43868
  },
@@ -43870,7 +43870,7 @@ const optionalBuiltInStyles = {
43870
43870
  type: 'Text',
43871
43871
  group: 'style',
43872
43872
  description: 'The text alignment of the element',
43873
- defaultValue: 'left',
43873
+ defaultValue: 'start',
43874
43874
  },
43875
43875
  cfTextTransform: {
43876
43876
  validations: {
@@ -44263,7 +44263,7 @@ const ParameterDefinitionSchema$1 = z.object({
44263
44263
  }),
44264
44264
  })
44265
44265
  .optional(),
44266
- contentTypes: z.array(z.string()),
44266
+ contentTypes: z.array(z.string()).min(1),
44267
44267
  passToNodes: z.array(PassToNodeSchema$1).optional(),
44268
44268
  });
44269
44269
  const ParameterDefinitionsSchema$1 = z.record(propertyKeySchema$1, ParameterDefinitionSchema$1);
@@ -48877,7 +48877,7 @@ const ParameterDefinitionSchema = z.object({
48877
48877
  }),
48878
48878
  })
48879
48879
  .optional(),
48880
- contentTypes: z.array(z.string()),
48880
+ contentTypes: z.array(z.string()).min(1),
48881
48881
  passToNodes: z.array(PassToNodeSchema).optional(),
48882
48882
  });
48883
48883
  const ParameterDefinitionsSchema = z.record(propertyKeySchema, ParameterDefinitionSchema);