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