Skip to content
Compare
Choose a tag to compare
@jcfauchet jcfauchet released this 23 Jun 10:04
· 124 commits to main since this release
e5c0e41

What's Changed

  • fix: dropdown custom trigger and use cards in hompage by @jcfauchet in #139

BREAKING CHANGES

Tooltip now uses slots for trigger and content

Before :

<Tooltip trigger={<button>Show tooltip</button>} content={<div>Tooltip content</div>} triggerStrategy="hover"  />

Now :

<Tooltip trigger="hover">
  <button q:slot="trigger">Show tooltip</button>
  <div q:slot="content">Tooltip content</div>
</Tooltip>

Full Changelog: https://github.com/qwikerx/flowbite-qwik/compare/[email protected]@0.29.1