@textbus/platform-browser 3.7.8 → 3.7.9
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/bundles/index.esm.js +4 -1
- package/bundles/index.js +4 -1
- package/package.json +2 -2
package/bundles/index.esm.js
CHANGED
@@ -1898,8 +1898,11 @@ let MagicInput = class MagicInput extends Input {
|
|
1898
1898
|
if (text) {
|
1899
1899
|
this.commander.write(text);
|
1900
1900
|
}
|
1901
|
+
const startSlot = this.selection.startSlot;
|
1902
|
+
if (startSlot) {
|
1903
|
+
startSlot.changeMarker.forceMarkDirtied();
|
1904
|
+
}
|
1901
1905
|
if (isCompositionEnd) {
|
1902
|
-
const startSlot = this.selection.startSlot;
|
1903
1906
|
if (startSlot) {
|
1904
1907
|
const event = new Event(startSlot, null);
|
1905
1908
|
invokeListener(startSlot.parent, 'onCompositionEnd', event);
|
package/bundles/index.js
CHANGED
@@ -1900,8 +1900,11 @@ exports.MagicInput = class MagicInput extends Input {
|
|
1900
1900
|
if (text) {
|
1901
1901
|
this.commander.write(text);
|
1902
1902
|
}
|
1903
|
+
const startSlot = this.selection.startSlot;
|
1904
|
+
if (startSlot) {
|
1905
|
+
startSlot.changeMarker.forceMarkDirtied();
|
1906
|
+
}
|
1903
1907
|
if (isCompositionEnd) {
|
1904
|
-
const startSlot = this.selection.startSlot;
|
1905
1908
|
if (startSlot) {
|
1906
1909
|
const event = new core.Event(startSlot, null);
|
1907
1910
|
core.invokeListener(startSlot.parent, 'onCompositionEnd', event);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@textbus/platform-browser",
|
3
|
-
"version": "3.7.
|
3
|
+
"version": "3.7.9",
|
4
4
|
"description": "Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.",
|
5
5
|
"main": "./bundles/index.js",
|
6
6
|
"module": "./bundles/index.esm.js",
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"bugs": {
|
49
49
|
"url": "https://github.com/textbus/textbus.git/issues"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "1ab36c9b889c8f70f02fc56d6397c837a3b06bf4"
|
52
52
|
}
|