@limetech/lime-elements 37.76.2 → 37.76.3

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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## [37.76.3](https://github.com/Lundalogik/lime-elements/compare/v37.76.2...v37.76.3) (2024-12-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **text-editor:** avoid occasional null reference error ([26860c4](https://github.com/Lundalogik/lime-elements/commit/26860c4a7b6e27a2de5ba5ca6271216877656bdf))
8
+
1
9
  ## [37.76.2](https://github.com/Lundalogik/lime-elements/compare/v37.76.1...v37.76.2) (2024-12-17)
2
10
 
3
11
 
@@ -25814,7 +25814,7 @@ const findEnd = (doc, pos, href) => {
25814
25814
  */
25815
25815
  const getLinkDataAtPosition = (view, event) => {
25816
25816
  const pos = view.posAtCoords({ left: event.clientX, top: event.clientY });
25817
- const node = view.state.doc.nodeAt(pos.pos);
25817
+ const node = view.state.doc.nodeAt(pos === null || pos === void 0 ? void 0 : pos.pos);
25818
25818
  if (!node) {
25819
25819
  return null;
25820
25820
  }