@limetech/lime-elements 37.75.1 → 37.75.2

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.75.2](https://github.com/Lundalogik/lime-elements/compare/v37.75.1...v37.75.2) (2024-12-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **text-editor:** send stop trigger when outside ([d33417d](https://github.com/Lundalogik/lime-elements/commit/d33417d4f817c38993ce68b29d5bd6a82f4a50d3))
8
+
1
9
  ## [37.75.1](https://github.com/Lundalogik/lime-elements/compare/v37.75.0...v37.75.1) (2024-12-09)
2
10
 
3
11
 
@@ -26311,6 +26311,7 @@ const createTriggerPlugin = (triggerCharacters, contentConverter) => {
26311
26311
  return;
26312
26312
  }
26313
26313
  if (!stillHasTrigger(newState, activeTrigger, triggerPosition, triggerText.length)) {
26314
+ stopTrigger();
26314
26315
  return;
26315
26316
  }
26316
26317
  const updatedText = processTransactions(triggerText, transactions, oldState);