You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently encountered a challenge while using the Tooltip.Trigger component in my Qwik application. Because the trigger is implemented as a <button>, it creates conflicts when I need to use it with custom button components that might render <a> tags or other interactive elements. This limitation led to invalid HTML (nested buttons) and forced me to implement workarounds.
import{component$}from'@builder.io/qwik';import{Tooltip}from'@qwik-ui/headless';exportdefaultcomponent$(()=>{return(<Tooltip.RootdelayDuration={800}gutter={4}flipplacement="top"><Tooltip.Trigger><button>Hover or Focus me</button></Tooltip.Trigger><Tooltip.Panelaria-label="Tooltip content"><Tooltip.Arrowwidth={10}height={5}/>
Tooltip content here
</Tooltip.Panel></Tooltip.Root>);});
This example nests a <button> inside another <button>, which is invalid HTML and results in an error.
To improve the flexibility, reusability, and correctness of the tooltip component, I would suggest:
Fixing the documentation: Correct the example in the documentation to avoid the nested button issue.
Exploring alternative implementations: Consider alternatives like a renderless component or an as prop to allow users to attach tooltip functionality to any element.
I believe these changes would make the tooltip component more versatile and easier to integrate into various use cases.
Which package is affected?
Headless Kit
Describe the bug
I recently encountered a challenge while using the Tooltip.Trigger component in my Qwik application. Because the trigger is implemented as a
<button>
, it creates conflicts when I need to use it with custom button components that might render<a>
tags or other interactive elements. This limitation led to invalid HTML (nested buttons) and forced me to implement workarounds.Additionally, the documentation example at https://qwikui.com/docs/headless/tooltip/ shows an incorrect usage of the component:
This example nests a
<button>
inside another<button>
, which is invalid HTML and results in an error.To improve the flexibility, reusability, and correctness of the tooltip component, I would suggest:
Fixing the documentation: Correct the example in the documentation to avoid the nested button issue.
Exploring alternative implementations: Consider alternatives like a renderless component or an as prop to allow users to attach tooltip functionality to any element.
I believe these changes would make the tooltip component more versatile and easier to integrate into various use cases.
Reproduction
https://github.com/qwikifiers/qwik-ui/blob/main/packages/kit-headless/src/components/tooltip/tooltip-trigger.tsx
Steps to reproduce
16:41:02 [ERROR]
<button>
can not be rendered because one of its ancestor is already a<button>
.This goes against the HTML spec: https://html.spec.whatwg.org/multipage/dom.html#interactive-content
System Info
Additional Information
No response
The text was updated successfully, but these errors were encountered: