Marc Henry Schultz
Marc Henry Schultz
this for example wont work: ```jsx value = afx` {"{"} {itemKey}: {item} {"}"} ` ``` and will transform to: ``` value = ${"{"} {itemKey}: {item} {"}"} ``` which makes the...
### Description The idea is to make the package creation for Fusion packages simpler. currently one needs to - run `./flow package:create Vendor.AdditionalFusionStuff` - then go to that package, create...
`findChildNodes` is corrently implemented, but `countChildNodes` doesnt transform the argument $nodeTypeConstraints NodeTypeConstraints to a string for the legacy api: this snipped must be included: ```php $filter = $nodeTypeConstraints !== null...
### Description proposal to introduce `` for afx: ``` < @if={false}> bar foo ``` as alias for `Neos.Fusion:Fragment` ``` bar foo ``` ### Implementation detail: it should be discussed, if...
Taken from the The Zen of Python https://peps.python.org/pep-0020/ ;) I think there are a few to many aliases ^^
Neos.Neos adjustment https://github.com/neos/neos-development-collection/pull/4630 Replaces: https://github.com/neos/neos-ui/pull/3720 for Neos9 Resolves: https://github.com/neos/neos-ui/issues/3615 Resolves: https://github.com/neos/neos-ui/issues/3509 ### The `NodeCreationHandlerInterface` Contract to hook into the process before the node creation command is handled by the content...
Steps: add this to `Neos.Demo:Content.BlogPostingList` ```yaml properties: blogs: ui: inspector: editorOptions: createNew: path: //neosdemo type: 'Neos.Demo:Document.Blog' titleProperty: 'title' ``` server exception > Warning: Undefined array key 1 in /Users/marchenryschultz/Code/core/neos-manufacture-90/Packages/Neos/Neos.Neos/Classes/FrontendRouting/NodeAddressFactory.php line...
With https://github.com/neos/neos-ui/pull/2178 we moved into a direction of rather fetching context paths from the server than manually guessing them in the client. The current 9.0-dev still shows 21 references to...
As seen here in the code https://github.com/neos/neos-ui/blob/4d1baf9289c020b93fa2683d909d3aa23cc67ee9/packages/neos-ui-editors/src/Editors/Reference/createNew.js#L38 or shown by this issue https://github.com/neos/neos-ui/issues/1764 the `createNew` option allows to redirect the entered title in a custom property field if `titleProperty: 'myTitle'...
if you have a node with the following config (to override the label name of the title) ```yaml Foo.Bar:NodeType: superTypes: Neos.Neos:Document: true title: ui: label: "hello" ``` it will still...