@limetech/lime-elements 37.48.0 → 37.49.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/CHANGELOG.md +8 -0
- package/dist/cjs/limel-prosemirror-adapter.cjs.entry.js +5 -0
- package/dist/cjs/limel-prosemirror-adapter.cjs.entry.js.map +1 -1
- package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.js +5 -0
- package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.js.map +1 -1
- package/dist/esm/limel-prosemirror-adapter.entry.js +5 -0
- package/dist/esm/limel-prosemirror-adapter.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-94598713.entry.js → p-242ea74c.entry.js} +2 -2
- package/dist/lime-elements/p-242ea74c.entry.js.map +1 -0
- package/dist/types/components/text-editor/prosemirror-adapter/prosemirror-adapter.d.ts +1 -0
- package/package.json +1 -1
- package/dist/lime-elements/p-94598713.entry.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [37.49.0](https://github.com/Lundalogik/lime-elements/compare/v37.48.0...v37.49.0) (2024-06-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **text-editor:** reinitialise editor on reconnect ([aa63ca4](https://github.com/Lundalogik/lime-elements/commit/aa63ca4027b78034d94cdd68607b1b4dd4ecf89c))
|
|
8
|
+
|
|
1
9
|
## [37.48.0](https://github.com/Lundalogik/lime-elements/compare/v37.47.0...v37.48.0) (2024-06-07)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -26066,6 +26066,11 @@ const ProsemirrorAdapter = class {
|
|
|
26066
26066
|
setTimeout(() => {
|
|
26067
26067
|
this.initializeTextEditor();
|
|
26068
26068
|
}, 0);
|
|
26069
|
+
}
|
|
26070
|
+
connectedCallback() {
|
|
26071
|
+
if (this.view) {
|
|
26072
|
+
this.initializeTextEditor();
|
|
26073
|
+
}
|
|
26069
26074
|
this.host.addEventListener('open-editor-link-menu', this.handleOpenLinkMenu);
|
|
26070
26075
|
}
|
|
26071
26076
|
disconnectedCallback() {
|