We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
used for identify the compoenent type
data-component-name="drawer-container"
used to identify the unique instance
data-id={id}
<section data-component-name="drawer-container" // lower-case dash version of component name data-id={id} > ... </section>
Example DOM query
[...document.querySelectorAll('[data-component-name="drawer-container"] [data-component-name="toggle"]')].map(e => e.click())