File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Resources/Private/Fusion/Components Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ prototype(Onedrop.Form.Hubspot:Component.Atom.ElementRenderer) < prototype(Neos.
10
10
errorClass = ${props.element.properties.elementErrorClassAttribute}
11
11
name = ${'--' + formRuntime.identifier + '[' + props.element.identifier + ']'}
12
12
label = ${props.element.label}
13
- value = ${Neos.Form.elementValue(formRuntime, props.element)}
13
+ value = ${Neos.Form.FusionRenderer. elementValue(formRuntime, props.element)}
14
14
isRequired = ${props.element.required}
15
15
properties = ${props.element.properties}
16
- validationErrors = ${Neos.Form.validationErrors(formRuntime, props.element)}
16
+ validationErrors = ${Neos.Form.FusionRenderer. validationErrors(formRuntime, props.element)}
17
17
childElements = ${props.element.elements}
18
18
multiple = ${props.element.properties.multiple}
19
19
defaultValue = ${props.element.defaultValue}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ prototype(Onedrop.Form.Hubspot:Component.Molecule.Page) < prototype(Neos.Fusion:
6
6
renderer = afx`
7
7
<fieldset class={containerElement.properties.elementClassAttribute}>
8
8
<legend @if.hasLabel={containerElement.label}>
9
- {Neos.Form.translateAndEscapeProperty(props.containerElement, 'label')}
9
+ {Neos.Form.FusionRenderer. translateAndEscapeProperty(props.containerElement, 'label')}
10
10
</legend>
11
11
<Neos.Fusion:Collection collection={props.containerElement.elements} itemName="element" @children="itemRenderer" iterationName="itemIterator">
12
12
<Neos.Fusion:Renderer
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ prototype(Onedrop.Form.Hubspot:Component.Molecule.Section) < prototype(Neos.Fusi
6
6
renderer = afx`
7
7
<fieldset class={containerElement.properties.elementClassAttribute}>
8
8
<legend @if.hasLabel={containerElement.label}>
9
- {Neos.Form.translateAndEscapeProperty(props.containerElement, 'label')}
9
+ {Neos.Form.FusionRenderer. translateAndEscapeProperty(props.containerElement, 'label')}
10
10
</legend>
11
11
<Neos.Fusion:Collection collection={props.containerElement.elements} itemName="element" @children="itemRenderer" iterationName="itemIterator">
12
12
<Onedrop.Form.Hubspot:Component.Atom.ElementRenderer
Original file line number Diff line number Diff line change 12
12
"require" : {
13
13
"neos/neos" : " ^4.0" ,
14
14
"neos/form" : " ^4.0" ,
15
- "neos/form-fusionrenderer" : " 1.0.* " ,
15
+ "neos/form-fusionrenderer" : " ^ 1.0.2 " ,
16
16
"ryanwinchester/hubspot-php" : " ^1.1" ,
17
17
"onedrop/ajaxform" : " ^3.1.2"
18
18
},
You can’t perform that action at this time.
0 commit comments