diff --git a/CHANGELOG.md b/CHANGELOG.md index 85224bc..0c9e1fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [2.0.4] - 2020-01-05 + +### Changed +* bumped devDependencies +* added UMD build +* changed build location for commonjs and esmodules to `dist/esm/` and + `dist/cjs`. + ## [2.0.3] - 2019-10-14 ### Fixed diff --git a/docs/app.js b/docs/app.js index da7485f..c9144d6 100644 --- a/docs/app.js +++ b/docs/app.js @@ -1,108 +1,107 @@ -(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o () - - -var resize = function resize(rows, el) { - if (el) { - el.style.height = '0'; - el.style.overflowY = 'hidden'; - el.style.height = "".concat(getHeight(rows, el), "px"); - el.style.overflowY = 'auto'; - } -}; // ExpandingTextarea :: Props ->