Skip to content

Commit

Permalink
Merge pull request #115 from crydotsnake/task/mixin-abstract
Browse files Browse the repository at this point in the history
BUGFIX: Properly declare mixin node types as abstract
  • Loading branch information
bwaidelich committed Sep 1, 2022
2 parents 60d7460 + 713aec2 commit e3a6841
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.DefaultValue.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:DefaultValueMixin':
abstract: true
properties:
'defaultValue':
type: string
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.Identifier.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:IdentifierMixin':
abstract: true
properties:
'identifier':
type: string
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.Label.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:LabelMixin':
abstract: true
properties:
'label':
type: string
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.MaxLength.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:MaxlengthMixin':
abstract: true
properties:
'maxlength':
type: integer
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.Placeholder.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:PlaceholderMixin':
abstract: true
properties:
'placeholder':
type: string
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.RequiredCheckbox.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:RequiredCheckboxMixin':
abstract: true
properties:
'required':
type: boolean
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.Section.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:SectionMixin':
abstract: true
childNodes:
'elements':
type: 'Neos.Form.Builder:ElementCollection'
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.Selection.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:SelectionMixin':
abstract: true
ui:
group: 'form.select'
childNodes:
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.TextValidators.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:TextValidatorsMixin':
abstract: true
superTypes:
'Neos.Form.Builder:ValidatorsMixin': true
childNodes:
Expand Down
1 change: 1 addition & 0 deletions Configuration/NodeTypes.Mixin.Validators.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'Neos.Form.Builder:ValidatorsMixin':
abstract: true
childNodes:
'validators':
type: 'Neos.Form.Builder:ValidatorCollection'

0 comments on commit e3a6841

Please sign in to comment.