Is your feature request related to a problem? Please describe.
React spa libraries do not have support for omitting component decoration. In AEM server side rendering eg. using HTL, the component decoration (default is "div") can be skipped by setting cq:NoDecoration=false in component properties
Describe the solution you'd like
Adding a property aemNoDecoration=true at the component level (and making it available in model.json) should be respected by the SPA lib and not add div (or other block) wrapper, when NOT in editor mode isInEditor=false...
Describe alternatives you've considered
The following work around implemented in project code was manipulate the DOM causing performance implications...
Is your feature request related to a problem? Please describe. React spa libraries do not have support for omitting component decoration. In AEM server side rendering eg. using HTL, the component decoration (default is "div") can be skipped by setting
cq:NoDecoration=false
in component propertieshttps://experienceleague.adobe.com/docs/experience-manager-65/developing/components/decoration-tag.html?lang=en
Describe the solution you'd like Adding a property aemNoDecoration=true at the component level (and making it available in model.json) should be respected by the SPA lib and not add div (or other block) wrapper, when NOT in editor mode
isInEditor=false
...Describe alternatives you've considered The following work around implemented in project code was manipulate the DOM causing performance implications...
Additional context