ide-assi 0.322.0 → 0.324.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
|
@@ -196616,9 +196616,11 @@ class IdeDiff extends HTMLElement
|
|
|
196616
196616
|
this.shadowRoot.querySelector('.tobe').innerHTML = html;
|
|
196617
196617
|
};
|
|
196618
196618
|
|
|
196619
|
-
initialize = (
|
|
196620
|
-
|
|
196621
|
-
|
|
196619
|
+
initialize = (src1, src2) => {
|
|
196620
|
+
console.log(src1, src2);
|
|
196621
|
+
|
|
196622
|
+
this.#asisSrc = src1;
|
|
196623
|
+
this.#tobeSrc = src2;
|
|
196622
196624
|
|
|
196623
196625
|
this.#renderDiff();
|
|
196624
196626
|
};
|
package/dist/bundle.esm.js
CHANGED
|
@@ -196612,9 +196612,11 @@ class IdeDiff extends HTMLElement
|
|
|
196612
196612
|
this.shadowRoot.querySelector('.tobe').innerHTML = html;
|
|
196613
196613
|
};
|
|
196614
196614
|
|
|
196615
|
-
initialize = (
|
|
196616
|
-
|
|
196617
|
-
|
|
196615
|
+
initialize = (src1, src2) => {
|
|
196616
|
+
console.log(src1, src2);
|
|
196617
|
+
|
|
196618
|
+
this.#asisSrc = src1;
|
|
196619
|
+
this.#tobeSrc = src2;
|
|
196618
196620
|
|
|
196619
196621
|
this.#renderDiff();
|
|
196620
196622
|
};
|
|
@@ -51,9 +51,11 @@ export class IdeDiff extends HTMLElement
|
|
|
51
51
|
this.shadowRoot.querySelector('.tobe').innerHTML = html;
|
|
52
52
|
};
|
|
53
53
|
|
|
54
|
-
initialize = (
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
initialize = (src1, src2) => {
|
|
55
|
+
console.log(src1, src2);
|
|
56
|
+
|
|
57
|
+
this.#asisSrc = src1;
|
|
58
|
+
this.#tobeSrc = src2;
|
|
57
59
|
|
|
58
60
|
this.#renderDiff();
|
|
59
61
|
};
|
package/package.json
CHANGED
|
@@ -51,9 +51,11 @@ export class IdeDiff extends HTMLElement
|
|
|
51
51
|
this.shadowRoot.querySelector('.tobe').innerHTML = html;
|
|
52
52
|
};
|
|
53
53
|
|
|
54
|
-
initialize = (
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
initialize = (src1, src2) => {
|
|
55
|
+
console.log(src1, src2);
|
|
56
|
+
|
|
57
|
+
this.#asisSrc = src1;
|
|
58
|
+
this.#tobeSrc = src2;
|
|
57
59
|
|
|
58
60
|
this.#renderDiff();
|
|
59
61
|
};
|