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
|
|
@@ -5611,6 +5611,7 @@ ${blockSuffix}` : suffix;
|
|
|
5611
5611
|
const paddingTop = parseFloat(computed.paddingTop);
|
|
5612
5612
|
const paddingBottom = parseFloat(computed.paddingBottom);
|
|
5613
5613
|
const scrollTop = textarea.scrollTop;
|
|
5614
|
+
wrapper.style.setProperty("height", "auto", "important");
|
|
5614
5615
|
textarea.style.setProperty("height", "auto", "important");
|
|
5615
5616
|
let newHeight = textarea.scrollHeight;
|
|
5616
5617
|
if (this.options.minHeight) {
|