@contentful/experiences-core 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/index.js CHANGED
@@ -418,16 +418,16 @@ const optionalBuiltInStyles = {
418
418
  validations: {
419
419
  in: [
420
420
  {
421
- value: 'left',
422
- displayName: 'Align left',
421
+ value: 'start',
422
+ displayName: 'Align start',
423
423
  },
424
424
  {
425
425
  value: 'center',
426
426
  displayName: 'Align center',
427
427
  },
428
428
  {
429
- value: 'right',
430
- displayName: 'Align right',
429
+ value: 'end',
430
+ displayName: 'Align end',
431
431
  },
432
432
  ],
433
433
  },
@@ -435,7 +435,7 @@ const optionalBuiltInStyles = {
435
435
  type: 'Text',
436
436
  group: 'style',
437
437
  description: 'The text alignment of the element',
438
- defaultValue: 'left',
438
+ defaultValue: 'start',
439
439
  },
440
440
  cfTextTransform: {
441
441
  validations: {
@@ -1069,7 +1069,7 @@ const ParameterDefinitionSchema = z.object({
1069
1069
  }),
1070
1070
  })
1071
1071
  .optional(),
1072
- contentTypes: z.array(z.string()),
1072
+ contentTypes: z.array(z.string()).min(1),
1073
1073
  passToNodes: z.array(PassToNodeSchema).optional(),
1074
1074
  });
1075
1075
  const ParameterDefinitionsSchema = z.record(propertyKeySchema, ParameterDefinitionSchema);