ide-assi 0.565.0 → 0.567.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bundle.cjs.js
CHANGED
|
@@ -202639,7 +202639,10 @@ class IdeAssi extends HTMLElement
|
|
|
202639
202639
|
|
|
202640
202640
|
this.settings = this.shadowRoot.querySelector("ide-assi-settings");
|
|
202641
202641
|
|
|
202642
|
-
|
|
202642
|
+
const tipPopup = document.createElement('ide-tip-popup');
|
|
202643
|
+
tipPopup.classList.add("fade");
|
|
202644
|
+
this.shadowRoot.appendChild(tipPopup);
|
|
202645
|
+
|
|
202643
202646
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
202644
202647
|
|
|
202645
202648
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202635,7 +202635,10 @@ class IdeAssi extends HTMLElement
|
|
|
202635
202635
|
|
|
202636
202636
|
this.settings = this.shadowRoot.querySelector("ide-assi-settings");
|
|
202637
202637
|
|
|
202638
|
-
|
|
202638
|
+
const tipPopup = document.createElement('ide-tip-popup');
|
|
202639
|
+
tipPopup.classList.add("fade");
|
|
202640
|
+
this.shadowRoot.appendChild(tipPopup);
|
|
202641
|
+
|
|
202639
202642
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
202640
202643
|
|
|
202641
202644
|
|
|
@@ -100,7 +100,10 @@ export class IdeAssi extends HTMLElement
|
|
|
100
100
|
|
|
101
101
|
this.settings = this.shadowRoot.querySelector("ide-assi-settings");
|
|
102
102
|
|
|
103
|
-
|
|
103
|
+
const tipPopup = document.createElement('ide-tip-popup');
|
|
104
|
+
tipPopup.classList.add("fade");
|
|
105
|
+
this.shadowRoot.appendChild(tipPopup);
|
|
106
|
+
|
|
104
107
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
105
108
|
|
|
106
109
|
|
package/package.json
CHANGED
|
@@ -100,7 +100,10 @@ export class IdeAssi extends HTMLElement
|
|
|
100
100
|
|
|
101
101
|
this.settings = this.shadowRoot.querySelector("ide-assi-settings");
|
|
102
102
|
|
|
103
|
-
|
|
103
|
+
const tipPopup = document.createElement('ide-tip-popup');
|
|
104
|
+
tipPopup.classList.add("fade");
|
|
105
|
+
this.shadowRoot.appendChild(tipPopup);
|
|
106
|
+
|
|
104
107
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
105
108
|
|
|
106
109
|
|