ide-assi 0.320.0 → 0.322.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 +37 -37
- package/dist/bundle.esm.js +37 -37
- package/dist/components/ideDiffPopup.js +2 -3
- package/package.json +1 -1
- package/src/components/ideDiffPopup.js +2 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -194300,6 +194300,43 @@ class ideAssiSettings extends HTMLElement
|
|
|
194300
194300
|
|
|
194301
194301
|
customElements.define("ide-assi-settings", ideAssiSettings);
|
|
194302
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
|
+
<ide-diff></ide-diff>
|
|
194323
|
+
</nx-dialog>
|
|
194324
|
+
`;
|
|
194325
|
+
}
|
|
194326
|
+
|
|
194327
|
+
popup = (src1, src2) => {
|
|
194328
|
+
setTimeout(() => {
|
|
194329
|
+
const target = ninegrid.querySelector("ide-diff", this.shadowRoot);
|
|
194330
|
+
console.log(target);
|
|
194331
|
+
target.initialize(src1, src2);
|
|
194332
|
+
this.shadowRoot.querySelector('dialog').showModal();
|
|
194333
|
+
}, 100);
|
|
194334
|
+
};
|
|
194335
|
+
}
|
|
194336
|
+
|
|
194337
|
+
|
|
194338
|
+
customElements.define("ide-diff-popup", IdeDiffPopup);
|
|
194339
|
+
|
|
194303
194340
|
var diffMatchPatch = {exports: {}};
|
|
194304
194341
|
|
|
194305
194342
|
/**
|
|
@@ -196589,43 +196626,6 @@ class IdeDiff extends HTMLElement
|
|
|
196589
196626
|
|
|
196590
196627
|
customElements.define("ide-diff", IdeDiff);
|
|
196591
196628
|
|
|
196592
|
-
class IdeDiffPopup extends HTMLElement
|
|
196593
|
-
{
|
|
196594
|
-
constructor() {
|
|
196595
|
-
|
|
196596
|
-
super();
|
|
196597
|
-
|
|
196598
|
-
this.attachShadow({ mode: 'open' });
|
|
196599
|
-
}
|
|
196600
|
-
|
|
196601
|
-
connectedCallback() {
|
|
196602
|
-
|
|
196603
|
-
//this.#owner = this.getRootNode().host;//this.closest("nine-grid");
|
|
196604
|
-
|
|
196605
|
-
this.shadowRoot.innerHTML = `
|
|
196606
|
-
<style>
|
|
196607
|
-
|
|
196608
|
-
</style>
|
|
196609
|
-
|
|
196610
|
-
<nx-dialog>
|
|
196611
|
-
<nx-diff></nx-diff>
|
|
196612
|
-
</nx-dialog>
|
|
196613
|
-
`;
|
|
196614
|
-
}
|
|
196615
|
-
|
|
196616
|
-
popup = (src1, src2) => {
|
|
196617
|
-
setTimeout(() => {
|
|
196618
|
-
const target = ninegrid.querySelector("nx-diff", this.shadowRoot);
|
|
196619
|
-
console.log(target);
|
|
196620
|
-
target.initialize(src1, src2);
|
|
196621
|
-
this.shadowRoot.querySelector('dialog').showModal();
|
|
196622
|
-
}, 100);
|
|
196623
|
-
};
|
|
196624
|
-
}
|
|
196625
|
-
|
|
196626
|
-
|
|
196627
|
-
customElements.define("ide-diff-popup", IdeDiffPopup);
|
|
196628
|
-
|
|
196629
196629
|
//import "./components/ideAssi.js";
|
|
196630
196630
|
|
|
196631
196631
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -194296,6 +194296,43 @@ class ideAssiSettings extends HTMLElement
|
|
|
194296
194296
|
|
|
194297
194297
|
customElements.define("ide-assi-settings", ideAssiSettings);
|
|
194298
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
|
+
<ide-diff></ide-diff>
|
|
194319
|
+
</nx-dialog>
|
|
194320
|
+
`;
|
|
194321
|
+
}
|
|
194322
|
+
|
|
194323
|
+
popup = (src1, src2) => {
|
|
194324
|
+
setTimeout(() => {
|
|
194325
|
+
const target = ninegrid.querySelector("ide-diff", this.shadowRoot);
|
|
194326
|
+
console.log(target);
|
|
194327
|
+
target.initialize(src1, src2);
|
|
194328
|
+
this.shadowRoot.querySelector('dialog').showModal();
|
|
194329
|
+
}, 100);
|
|
194330
|
+
};
|
|
194331
|
+
}
|
|
194332
|
+
|
|
194333
|
+
|
|
194334
|
+
customElements.define("ide-diff-popup", IdeDiffPopup);
|
|
194335
|
+
|
|
194299
194336
|
var diffMatchPatch = {exports: {}};
|
|
194300
194337
|
|
|
194301
194338
|
/**
|
|
@@ -196585,43 +196622,6 @@ class IdeDiff extends HTMLElement
|
|
|
196585
196622
|
|
|
196586
196623
|
customElements.define("ide-diff", IdeDiff);
|
|
196587
196624
|
|
|
196588
|
-
class IdeDiffPopup extends HTMLElement
|
|
196589
|
-
{
|
|
196590
|
-
constructor() {
|
|
196591
|
-
|
|
196592
|
-
super();
|
|
196593
|
-
|
|
196594
|
-
this.attachShadow({ mode: 'open' });
|
|
196595
|
-
}
|
|
196596
|
-
|
|
196597
|
-
connectedCallback() {
|
|
196598
|
-
|
|
196599
|
-
//this.#owner = this.getRootNode().host;//this.closest("nine-grid");
|
|
196600
|
-
|
|
196601
|
-
this.shadowRoot.innerHTML = `
|
|
196602
|
-
<style>
|
|
196603
|
-
|
|
196604
|
-
</style>
|
|
196605
|
-
|
|
196606
|
-
<nx-dialog>
|
|
196607
|
-
<nx-diff></nx-diff>
|
|
196608
|
-
</nx-dialog>
|
|
196609
|
-
`;
|
|
196610
|
-
}
|
|
196611
|
-
|
|
196612
|
-
popup = (src1, src2) => {
|
|
196613
|
-
setTimeout(() => {
|
|
196614
|
-
const target = ninegrid.querySelector("nx-diff", this.shadowRoot);
|
|
196615
|
-
console.log(target);
|
|
196616
|
-
target.initialize(src1, src2);
|
|
196617
|
-
this.shadowRoot.querySelector('dialog').showModal();
|
|
196618
|
-
}, 100);
|
|
196619
|
-
};
|
|
196620
|
-
}
|
|
196621
|
-
|
|
196622
|
-
|
|
196623
|
-
customElements.define("ide-diff-popup", IdeDiffPopup);
|
|
196624
|
-
|
|
196625
196625
|
//import "./components/ideAssi.js";
|
|
196626
196626
|
|
|
196627
196627
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import ninegrid from "ninegrid2";
|
|
2
|
-
import "./ideDiff.js";
|
|
3
2
|
|
|
4
3
|
class IdeDiffPopup extends HTMLElement
|
|
5
4
|
{
|
|
@@ -20,14 +19,14 @@ class IdeDiffPopup extends HTMLElement
|
|
|
20
19
|
</style>
|
|
21
20
|
|
|
22
21
|
<nx-dialog>
|
|
23
|
-
<
|
|
22
|
+
<ide-diff></ide-diff>
|
|
24
23
|
</nx-dialog>
|
|
25
24
|
`;
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
popup = (src1, src2) => {
|
|
29
28
|
setTimeout(() => {
|
|
30
|
-
const target = ninegrid.querySelector("
|
|
29
|
+
const target = ninegrid.querySelector("ide-diff", this.shadowRoot);
|
|
31
30
|
console.log(target);
|
|
32
31
|
target.initialize(src1, src2);
|
|
33
32
|
this.shadowRoot.querySelector('dialog').showModal();
|
package/package.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import ninegrid from "ninegrid2";
|
|
2
|
-
import "./ideDiff.js";
|
|
3
2
|
|
|
4
3
|
class IdeDiffPopup extends HTMLElement
|
|
5
4
|
{
|
|
@@ -20,14 +19,14 @@ class IdeDiffPopup extends HTMLElement
|
|
|
20
19
|
</style>
|
|
21
20
|
|
|
22
21
|
<nx-dialog>
|
|
23
|
-
<
|
|
22
|
+
<ide-diff></ide-diff>
|
|
24
23
|
</nx-dialog>
|
|
25
24
|
`;
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
popup = (src1, src2) => {
|
|
29
28
|
setTimeout(() => {
|
|
30
|
-
const target = ninegrid.querySelector("
|
|
29
|
+
const target = ninegrid.querySelector("ide-diff", this.shadowRoot);
|
|
31
30
|
console.log(target);
|
|
32
31
|
target.initialize(src1, src2);
|
|
33
32
|
this.shadowRoot.querySelector('dialog').showModal();
|