ide-assi 0.310.0 → 0.313.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.
@@ -193998,42 +193998,6 @@ class IdeAi
193998
193998
  };
193999
193999
  }
194000
194000
 
194001
- class IdeDiffPopup extends HTMLElement
194002
- {
194003
- constructor() {
194004
-
194005
- super();
194006
-
194007
- this.attachShadow({ mode: 'open' });
194008
- }
194009
-
194010
- connectedCallback() {
194011
-
194012
- this.#owner = this.getRootNode().host;//this.closest("nine-grid");
194013
-
194014
- this.shadowRoot.innerHTML = `
194015
- <style>
194016
-
194017
- </style>
194018
-
194019
- <nx-dialog>
194020
- <nx-diff></nx-diff>
194021
- </nx-dialog>
194022
- `;
194023
- }
194024
-
194025
- popup = (src1, src2) => {
194026
- setTimeout(() => {
194027
- const target = this.shadowRoot.querySelector("nx-diff");
194028
- target.initialize(src1, src2);
194029
- this.shadowRoot.querySelector('dialog').showModal();
194030
- }, 100);
194031
- };
194032
- }
194033
-
194034
-
194035
- customElements.define("ide-diff-popup", IdeDiffPopup);
194036
-
194037
194001
  class IdeAssi extends HTMLElement
194038
194002
  {
194039
194003
  #ing = false;
@@ -194336,6 +194300,42 @@ class ideAssiSettings extends HTMLElement
194336
194300
 
194337
194301
  customElements.define("ide-assi-settings", ideAssiSettings);
194338
194302
 
194303
+ class IdeDiffPopup extends HTMLElement
194304
+ {
194305
+ constructor() {
194306
+
194307
+ super();
194308
+
194309
+ this.attachShadow({ mode: 'open' });
194310
+ }
194311
+
194312
+ connectedCallback() {
194313
+
194314
+ this.#owner = this.getRootNode().host;//this.closest("nine-grid");
194315
+
194316
+ this.shadowRoot.innerHTML = `
194317
+ <style>
194318
+
194319
+ </style>
194320
+
194321
+ <nx-dialog>
194322
+ <nx-diff></nx-diff>
194323
+ </nx-dialog>
194324
+ `;
194325
+ }
194326
+
194327
+ popup = (src1, src2) => {
194328
+ setTimeout(() => {
194329
+ const target = this.shadowRoot.querySelector("nx-diff");
194330
+ target.initialize(src1, src2);
194331
+ this.shadowRoot.querySelector('dialog').showModal();
194332
+ }, 100);
194333
+ };
194334
+ }
194335
+
194336
+
194337
+ customElements.define("ide-diff-popup", IdeDiffPopup);
194338
+
194339
194339
  //import "./components/ideAssi.js";
194340
194340
 
194341
194341
 
@@ -193994,42 +193994,6 @@ class IdeAi
193994
193994
  };
193995
193995
  }
193996
193996
 
193997
- class IdeDiffPopup extends HTMLElement
193998
- {
193999
- constructor() {
194000
-
194001
- super();
194002
-
194003
- this.attachShadow({ mode: 'open' });
194004
- }
194005
-
194006
- connectedCallback() {
194007
-
194008
- this.#owner = this.getRootNode().host;//this.closest("nine-grid");
194009
-
194010
- this.shadowRoot.innerHTML = `
194011
- <style>
194012
-
194013
- </style>
194014
-
194015
- <nx-dialog>
194016
- <nx-diff></nx-diff>
194017
- </nx-dialog>
194018
- `;
194019
- }
194020
-
194021
- popup = (src1, src2) => {
194022
- setTimeout(() => {
194023
- const target = this.shadowRoot.querySelector("nx-diff");
194024
- target.initialize(src1, src2);
194025
- this.shadowRoot.querySelector('dialog').showModal();
194026
- }, 100);
194027
- };
194028
- }
194029
-
194030
-
194031
- customElements.define("ide-diff-popup", IdeDiffPopup);
194032
-
194033
193997
  class IdeAssi extends HTMLElement
194034
193998
  {
194035
193999
  #ing = false;
@@ -194332,6 +194296,42 @@ class ideAssiSettings extends HTMLElement
194332
194296
 
194333
194297
  customElements.define("ide-assi-settings", ideAssiSettings);
194334
194298
 
194299
+ class IdeDiffPopup extends HTMLElement
194300
+ {
194301
+ constructor() {
194302
+
194303
+ super();
194304
+
194305
+ this.attachShadow({ mode: 'open' });
194306
+ }
194307
+
194308
+ connectedCallback() {
194309
+
194310
+ this.#owner = this.getRootNode().host;//this.closest("nine-grid");
194311
+
194312
+ this.shadowRoot.innerHTML = `
194313
+ <style>
194314
+
194315
+ </style>
194316
+
194317
+ <nx-dialog>
194318
+ <nx-diff></nx-diff>
194319
+ </nx-dialog>
194320
+ `;
194321
+ }
194322
+
194323
+ popup = (src1, src2) => {
194324
+ setTimeout(() => {
194325
+ const target = this.shadowRoot.querySelector("nx-diff");
194326
+ target.initialize(src1, src2);
194327
+ this.shadowRoot.querySelector('dialog').showModal();
194328
+ }, 100);
194329
+ };
194330
+ }
194331
+
194332
+
194333
+ customElements.define("ide-diff-popup", IdeDiffPopup);
194334
+
194335
194335
  //import "./components/ideAssi.js";
194336
194336
 
194337
194337
 
@@ -1,7 +1,6 @@
1
1
  import ninegrid from "ninegrid2";
2
2
  import { IdeAi } from "./ideAi.js";
3
3
  import { api } from "./ideFetch.js";
4
- import { IdeDiffPopup } from "./ideDiffPopup.js";
5
4
 
6
5
  export class IdeAssi extends HTMLElement
7
6
  {
package/dist/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  import { IdeAssi } from "./components/ideAssi.js";
4
4
  import "./components/ideAssiSettings.js";
5
+ import "./components/ideDiffPopup.js";
5
6
  import { IdeFetch } from "./components/ideFetch.js";
6
7
  import { IdeAi } from "./components/ideAi.js";
7
- //import { IdeDiffPopup } from "./components/ideDiffPopup.js";
8
8
 
9
9
  export { IdeAssi, IdeFetch as api, IdeAi as ai }; // Named Export
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.310.0",
4
+ "version": "0.313.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -1,7 +1,6 @@
1
1
  import ninegrid from "ninegrid2";
2
2
  import { IdeAi } from "./ideAi.js";
3
3
  import { api } from "./ideFetch.js";
4
- import { IdeDiffPopup } from "./ideDiffPopup.js";
5
4
 
6
5
  export class IdeAssi extends HTMLElement
7
6
  {
package/src/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  import { IdeAssi } from "./components/ideAssi.js";
4
4
  import "./components/ideAssiSettings.js";
5
+ import "./components/ideDiffPopup.js";
5
6
  import { IdeFetch } from "./components/ideFetch.js";
6
7
  import { IdeAi } from "./components/ideAi.js";
7
- //import { IdeDiffPopup } from "./components/ideDiffPopup.js";
8
8
 
9
9
  export { IdeAssi, IdeFetch as api, IdeAi as ai }; // Named Export
10
10