@textbus/platform-browser 5.4.7 → 5.4.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/dist/index.esm.js +5 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -2131,7 +2131,9 @@ var MagicInput = /*#__PURE__*/ function(Input) {
|
|
|
2131
2131
|
}), fromEvent(textarea, 'focus').subscribe(function() {
|
|
2132
2132
|
_this.nativeFocus = true;
|
|
2133
2133
|
}), this.caret.onStyleChange.subscribe(function(style) {
|
|
2134
|
-
Object.assign(textarea.style,
|
|
2134
|
+
Object.assign(textarea.style, {
|
|
2135
|
+
fontSize: style.fontSize
|
|
2136
|
+
});
|
|
2135
2137
|
}));
|
|
2136
2138
|
this.handleInput(textarea);
|
|
2137
2139
|
this.handleShortcut(textarea);
|
|
@@ -2375,9 +2377,9 @@ var MagicInput = /*#__PURE__*/ function(Input) {
|
|
|
2375
2377
|
border: 'none',
|
|
2376
2378
|
width: '100%',
|
|
2377
2379
|
display: 'block',
|
|
2378
|
-
height: '
|
|
2380
|
+
height: '16px',
|
|
2379
2381
|
position: 'relative',
|
|
2380
|
-
|
|
2382
|
+
bottom: this.isWindows ? '3px' : '0'
|
|
2381
2383
|
}
|
|
2382
2384
|
});
|
|
2383
2385
|
}
|