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.
1 parent 2fe998e commit 901f09fCopy full SHA for 901f09f
CHANGES.md
@@ -35,6 +35,7 @@
35
36
### Features
37
38
+- pat-tooltip: Import styles for tippy.
39
- pat-modal: Import styles.
40
- pat datetime picker: Import styles.
41
- pat date picker: Import styles for pikaday.
src/pat/tooltip/tooltip.js
@@ -51,6 +51,9 @@ export default Base.extend({
51
async init($el, opts) {
52
const el = this.el;
53
54
+ if (window.__patternslib_import_styles) {
55
+ import("tippy.js/dist/tippy.css");
56
+ }
57
const Tippy = (await import("tippy.js")).default;
58
59
this.options = parser.parse(el, opts);
0 commit comments