ide-assi 0.316.0 → 0.317.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.
@@ -26,7 +26,8 @@ class IdeDiffPopup extends HTMLElement
26
26
 
27
27
  popup = (src1, src2) => {
28
28
  setTimeout(() => {
29
- const target = this.shadowRoot.querySelector("nx-diff");
29
+ const target = ninegrid.querySelector("nx-diff", this.shadowRoot);
30
+ console.log(target);
30
31
  target.initialize(src1, src2);
31
32
  this.shadowRoot.querySelector('dialog').showModal();
32
33
  }, 100);
package/dist/index.js CHANGED
@@ -3,6 +3,7 @@
3
3
  import { IdeAssi } from "./components/ideAssi.js";
4
4
  import "./components/ideAssiSettings.js";
5
5
  import "./components/ideDiffPopup.js";
6
+ import "./components/ideDiff.js";
6
7
  import { IdeFetch } from "./components/ideFetch.js";
7
8
  import { IdeAi } from "./components/ideAi.js";
8
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.316.0",
4
+ "version": "0.317.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -26,7 +26,8 @@ class IdeDiffPopup extends HTMLElement
26
26
 
27
27
  popup = (src1, src2) => {
28
28
  setTimeout(() => {
29
- const target = this.shadowRoot.querySelector("nx-diff");
29
+ const target = ninegrid.querySelector("nx-diff", this.shadowRoot);
30
+ console.log(target);
30
31
  target.initialize(src1, src2);
31
32
  this.shadowRoot.querySelector('dialog').showModal();
32
33
  }, 100);
package/src/index.js CHANGED
@@ -3,6 +3,7 @@
3
3
  import { IdeAssi } from "./components/ideAssi.js";
4
4
  import "./components/ideAssiSettings.js";
5
5
  import "./components/ideDiffPopup.js";
6
+ import "./components/ideDiff.js";
6
7
  import { IdeFetch } from "./components/ideFetch.js";
7
8
  import { IdeAi } from "./components/ideAi.js";
8
9