@nine-lab/nine-mu 0.1.40 → 0.1.41
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/nine-mu.js +5 -4
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineDiff.js +3 -0
package/package.json
CHANGED
|
@@ -207,11 +207,14 @@ export class NineDiff extends HTMLElement {
|
|
|
207
207
|
requestAnimationFrame(() => {
|
|
208
208
|
this.#initCodeMirror();
|
|
209
209
|
|
|
210
|
+
|
|
210
211
|
this.dispatchEvent(new CustomEvent('ready', {
|
|
211
212
|
detail: { target: this },
|
|
212
213
|
bubbles: true,
|
|
213
214
|
composed: true
|
|
214
215
|
}));
|
|
216
|
+
|
|
217
|
+
trace.log("dispatchEvent");
|
|
215
218
|
});
|
|
216
219
|
}
|
|
217
220
|
|