overtype 2.3.1 → 2.3.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/dist/overtype-webcomponent.esm.js +2 -1
- package/dist/overtype-webcomponent.esm.js.map +2 -2
- package/dist/overtype-webcomponent.js +2 -1
- package/dist/overtype-webcomponent.js.map +2 -2
- package/dist/overtype-webcomponent.min.js +2 -2
- package/dist/overtype.cjs +2 -1
- package/dist/overtype.cjs.map +2 -2
- package/dist/overtype.esm.js +2 -1
- package/dist/overtype.esm.js.map +2 -2
- package/dist/overtype.js +2 -1
- package/dist/overtype.js.map +2 -2
- package/dist/overtype.min.js +50 -50
- package/package.json +1 -1
- package/src/overtype.js +4 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* OverType v2.3.
|
|
2
|
+
* OverType v2.3.2
|
|
3
3
|
* A lightweight markdown editor library with perfect WYSIWYG alignment
|
|
4
4
|
* @license MIT
|
|
5
5
|
* @author David Miranda
|
|
@@ -5588,6 +5588,7 @@ var _OverType = class _OverType {
|
|
|
5588
5588
|
const paddingTop = parseFloat(computed.paddingTop);
|
|
5589
5589
|
const paddingBottom = parseFloat(computed.paddingBottom);
|
|
5590
5590
|
const scrollTop = textarea.scrollTop;
|
|
5591
|
+
wrapper.style.setProperty("height", "auto", "important");
|
|
5591
5592
|
textarea.style.setProperty("height", "auto", "important");
|
|
5592
5593
|
let newHeight = textarea.scrollHeight;
|
|
5593
5594
|
if (this.options.minHeight) {
|