Sitegeist.Silhouettes
Sitegeist.Silhouettes copied to clipboard
Preconfigure property-silhouettes that can be applied to various properties of multiple NodeTypes.
The pre-defined silhouettes (text.plain, text.block, text.free) and my own are working fine with everything but `Neos.NodeTypes:Text`. ``` 'Neos.NodeTypes:Text': properties: text: options: silhouette: 'text.free' ``` (referencing https://github.com/sitegeist/Sitegeist.Silhouettes/blob/master/Configuration/Settings.yaml#L58) We've got this with...
I'd love to have multiple Silhouettes for one single property. Or is there already a way @mficzel ? ``` image: options: silhouette: - 'vendor.image.square' - 'vendor.message.sync' ```
The [NodeTypeConfigurationEnrichmentAspect](https://github.com/neos/neos-development-collection/blob/master/Neos.Neos/Classes/Aspects/NodeTypeConfigurationEnrichmentAspect.php#L59) enriches the property configuratiuon with dataType-specific default values. This is triggered via `@Flow\Around("method(Neos\ContentRepository\Domain\Model\NodeType->__construct())"). Sihouettes postprocess is called after the media enrichment and therefore misses the vital defaults. This...
… after the Silhouettes are added A manual test case can be found in #4 Fixes Issues #2 #3 #4
After upgrading to 1.1.0 on Neos 4.3.13 the site will die during bootstrap. Can you reproduce this? Or is there something wrong with our configuration? Site works fine with 1.0.3...
Currently it is not possible to add `i18n` labels to `Settings.yaml`: Would be nice if this would be possible :)