This is an Ember wrapper for Tippy.js with easy to use modifier and component.
- Ember-tippy ❤️ Octane. No observers. No computeds. 0% Ember Classic.
- Powered by modern and up to date Tippy.js and Popper.js v2.
- Ember.js v3.25 or above
- Ember CLI v3.25 or above
- ember-auto-import v2 or above
- tippy.js ^6.0.0. It's a peer dependency. The default addon blueprint will add tippy.js to your package.json during install.
- ember-auto-import ^2.0.0
- ember-modifier ^3.0.0
ember install ember-tippy
This addon provides a modifier {{tippy}}
and a component <Tippy>
.
Here are some basic usage examples:
You can see the demos and all the examples here: https://nag5000.github.io/ember-tippy/.
ember-tippy supports all tippy.js options.
Singleton is supported via
<TippySingleton>
component.
Headless Tippy is supported via
<TippyHeadless>
component.
All the Plugins also should work: just use them the same way as for vanilla tippy.js.
Please see the demos and examples here: https://nag5000.github.io/ember-tippy/.
Please see the API.
ember-tippy does not import any optional extra stuff from tippy, except Tippy Core CSS.
If you don't want to bundle Tippy Core CSS, you can disable it by using
shouldIncludeTippyCoreCss: false
in ember-tippy build-time config.
If you want to use tippy's built-in custom themes, arrows or animations, please refer to this example. Configurable bundling of optional extra tippy stuff at build-time could be implemented in the future.
<TippySingleton>
also imports
createSingleton
.
If you don't use this component and you are on embroider, it should be tree-shaken.
Below is the ember-tippy build-time config with defaults:
// ember-cli-build.js
let app = new EmberApp(defaults, {
'@embroider/macros': {
setConfig: {
'ember-tippy': {
shouldIncludeTippyCoreCss: true,
},
},
},
});
See the Contributing guide for details.
This project is licensed under the MIT License.