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 901f09f commit cb653bfCopy full SHA for cb653bf
CHANGES.md
@@ -35,6 +35,7 @@
35
36
### Features
37
38
+- pat auto suggest: Import styles for select2.
39
- pat-tooltip: Import styles for tippy.
40
- pat-modal: Import styles.
41
- pat datetime picker: Import styles.
src/pat/auto-suggest/auto-suggest.js
@@ -41,6 +41,9 @@ export default Base.extend({
trigger: ".pat-autosuggest,.pat-auto-suggest",
42
43
async init() {
44
+ if (window.__patternslib_import_styles) {
45
+ import("select2/select2.css");
46
+ }
47
await import("select2");
48
49
this.options = parser.parse(this.el, this.options);
0 commit comments