ide-assi 0.323.0 → 0.325.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
|
@@ -194025,7 +194025,6 @@ class IdeAssi extends HTMLElement
|
|
|
194025
194025
|
|
|
194026
194026
|
<div class="wrapper">
|
|
194027
194027
|
<ide-assi-settings></ide-assi-settings>
|
|
194028
|
-
<ide-diff-popup></ide-diff-popup>
|
|
194029
194028
|
|
|
194030
194029
|
<div class="container">
|
|
194031
194030
|
<div class="head">
|
|
@@ -196616,11 +196615,11 @@ class IdeDiff extends HTMLElement
|
|
|
196616
196615
|
this.shadowRoot.querySelector('.tobe').innerHTML = html;
|
|
196617
196616
|
};
|
|
196618
196617
|
|
|
196619
|
-
initialize = (
|
|
196618
|
+
initialize = (src1, src2) => {
|
|
196620
196619
|
console.log(src1, src2);
|
|
196621
196620
|
|
|
196622
|
-
this.#asisSrc =
|
|
196623
|
-
this.#tobeSrc =
|
|
196621
|
+
this.#asisSrc = src1;
|
|
196622
|
+
this.#tobeSrc = src2;
|
|
196624
196623
|
|
|
196625
196624
|
this.#renderDiff();
|
|
196626
196625
|
};
|
package/dist/bundle.esm.js
CHANGED
|
@@ -194021,7 +194021,6 @@ class IdeAssi extends HTMLElement
|
|
|
194021
194021
|
|
|
194022
194022
|
<div class="wrapper">
|
|
194023
194023
|
<ide-assi-settings></ide-assi-settings>
|
|
194024
|
-
<ide-diff-popup></ide-diff-popup>
|
|
194025
194024
|
|
|
194026
194025
|
<div class="container">
|
|
194027
194026
|
<div class="head">
|
|
@@ -196612,11 +196611,11 @@ class IdeDiff extends HTMLElement
|
|
|
196612
196611
|
this.shadowRoot.querySelector('.tobe').innerHTML = html;
|
|
196613
196612
|
};
|
|
196614
196613
|
|
|
196615
|
-
initialize = (
|
|
196614
|
+
initialize = (src1, src2) => {
|
|
196616
196615
|
console.log(src1, src2);
|
|
196617
196616
|
|
|
196618
|
-
this.#asisSrc =
|
|
196619
|
-
this.#tobeSrc =
|
|
196617
|
+
this.#asisSrc = src1;
|
|
196618
|
+
this.#tobeSrc = src2;
|
|
196620
196619
|
|
|
196621
196620
|
this.#renderDiff();
|
|
196622
196621
|
};
|
|
@@ -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
|
};
|