├── .gitignore ├── .hophoprc ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── ci ├── pipeline.yml ├── test.sh └── test.yml ├── examples ├── Examples.md └── examples.scss ├── package.json ├── src ├── .gitkeep ├── README.md ├── TextareaAutosize.tsx └── index.ts ├── styleguide.config.js ├── styleguide ├── index.html └── setup.ts ├── test ├── .eslintrc └── tests │ ├── .gitkeep │ ├── TextareaAutosize.test.tsx │ └── __snapshots__ │ └── TextareaAutosize.test.tsx.snap ├── tsconfig.json ├── typings └── line-height.d.ts └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | coverage 4 | lib 5 | .eslintcache 6 | -------------------------------------------------------------------------------- /.hophoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/.hophoprc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/README.md -------------------------------------------------------------------------------- /ci/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/ci/pipeline.yml -------------------------------------------------------------------------------- /ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/ci/test.sh -------------------------------------------------------------------------------- /ci/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/ci/test.yml -------------------------------------------------------------------------------- /examples/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/examples/Examples.md -------------------------------------------------------------------------------- /examples/examples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/examples/examples.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/package.json -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/src/README.md -------------------------------------------------------------------------------- /src/TextareaAutosize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/src/TextareaAutosize.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/src/index.ts -------------------------------------------------------------------------------- /styleguide.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/styleguide.config.js -------------------------------------------------------------------------------- /styleguide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/styleguide/index.html -------------------------------------------------------------------------------- /styleguide/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/styleguide/setup.ts -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tests/TextareaAutosize.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/test/tests/TextareaAutosize.test.tsx -------------------------------------------------------------------------------- /test/tests/__snapshots__/TextareaAutosize.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/test/tests/__snapshots__/TextareaAutosize.test.tsx.snap -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/line-height.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'line-height' 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildo/react-autosize-textarea/HEAD/webpack.config.js --------------------------------------------------------------------------------