bug: Html attributes not exported in wrapper components #407
Labels
help wanted
a good issue for the community
package: angular
@stencil/angular-output-target package
package: react
@stencil/react-output-target package
package: vue
@stencil/vue-output-target package
type: bug
Something isn't working
Prerequisites
Stencil Version
4.5.0
Current Behavior
When building my stencil library using vue and react output targets, Html attributes, like aria attributes, tabindex etc. do not get exported when they are part of some nested HTML elements inside the component, such as list items, or nested divs.
In a vanillajs example application, I get the following output:
<li class="tab-item active" tabindex="0" aria-selected="true" aria-disabled="false" role="tab">tab header 1</li>
Whereas in my Vue (as well as in React) application, I see the following:
<li class="tab-item active">tab header a</li>
I dont have any special settings in my build process, I use the default described in the framework integration documentation.
Any ideas how I can fix this?
Expected Behavior
I would expect the wrapper components to be rendered the same as when using the plain stencil components.
System Info
No response
Steps to Reproduce
Code Reproduction URL
Infineon/infineon-design-system-stencil#741
Additional Information
No response
The text was updated successfully, but these errors were encountered: