@limetech/lime-elements 37.1.0-next.71 → 37.1.0-next.73
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/cjs/limel-code-editor.cjs.entry.js +2 -1
- package/dist/cjs/limel-code-editor.cjs.entry.js.map +1 -1
- package/dist/cjs/limel-markdown.cjs.entry.js +1 -1
- package/dist/cjs/limel-markdown.cjs.entry.js.map +1 -1
- package/dist/collection/components/code-editor/code-editor.js +2 -1
- package/dist/collection/components/code-editor/code-editor.js.map +1 -1
- package/dist/collection/components/markdown/markdown.css +6 -0
- package/dist/esm/limel-code-editor.entry.js +2 -1
- package/dist/esm/limel-code-editor.entry.js.map +1 -1
- package/dist/esm/limel-markdown.entry.js +1 -1
- package/dist/esm/limel-markdown.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-0bd1cb23.entry.js → p-40615c84.entry.js} +2 -2
- package/dist/lime-elements/{p-0bd1cb23.entry.js.map → p-40615c84.entry.js.map} +1 -1
- package/dist/lime-elements/{p-b2f3fba6.entry.js → p-e0087b51.entry.js} +2 -2
- package/dist/lime-elements/p-e0087b51.entry.js.map +1 -0
- package/package.json +1 -1
- package/dist/lime-elements/p-b2f3fba6.entry.js.map +0 -1
|
@@ -12840,8 +12840,9 @@ const CodeEditor = class {
|
|
|
12840
12840
|
this.darkMode.addEventListener('change', this.handleChangeDarkMode);
|
|
12841
12841
|
}
|
|
12842
12842
|
disconnectedCallback() {
|
|
12843
|
+
var _a;
|
|
12843
12844
|
this.observer.unobserve(this.host);
|
|
12844
|
-
this.editor.off('change', this.handleChange);
|
|
12845
|
+
(_a = this.editor) === null || _a === void 0 ? void 0 : _a.off('change', this.handleChange);
|
|
12845
12846
|
this.editor = null;
|
|
12846
12847
|
this.darkMode.removeEventListener('change', this.handleChangeDarkMode);
|
|
12847
12848
|
const editorElement = this.host.shadowRoot.querySelector('.editor');
|