@textbus/platform-browser 3.7.6 → 3.7.7

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.
@@ -1788,6 +1788,7 @@ let MagicInput = class MagicInput extends Input {
1788
1788
  }), fromEvent(textarea, 'compositionend').subscribe(() => {
1789
1789
  isWriting = false;
1790
1790
  }), fromEvent(textarea, 'beforeinput').subscribe(ev => {
1791
+ this.ignoreComposition = false;
1791
1792
  if (this.isSafari) {
1792
1793
  if (ev.inputType === 'insertFromComposition') {
1793
1794
  isIgnore = true;
package/bundles/index.js CHANGED
@@ -1790,6 +1790,7 @@ exports.MagicInput = class MagicInput extends Input {
1790
1790
  }), stream.fromEvent(textarea, 'compositionend').subscribe(() => {
1791
1791
  isWriting = false;
1792
1792
  }), stream.fromEvent(textarea, 'beforeinput').subscribe(ev => {
1793
+ this.ignoreComposition = false;
1793
1794
  if (this.isSafari) {
1794
1795
  if (ev.inputType === 'insertFromComposition') {
1795
1796
  isIgnore = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@textbus/platform-browser",
3
- "version": "3.7.6",
3
+ "version": "3.7.7",
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": "2bf443e8633bead50b95e48f859f31236aa6bd0e"
51
+ "gitHead": "f778970701d92b72c4ea88d4583c33a27b339dd8"
52
52
  }