├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── example ├── Example.js ├── index.html ├── main.css └── main.js ├── flow-typed └── npm │ └── jest_v23.x.x.js ├── index.d.ts ├── jest.config.js ├── package.json ├── src ├── getTransitionTimeMs.js ├── getTransitionTimeMs.test.js ├── index.js └── index.test.js └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /flow-typed 2 | /example/bundle.js 3 | /js 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | /node_modules 4 | npm-debug.log 5 | /js 6 | /example/bundle.js 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/README.md -------------------------------------------------------------------------------- /example/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/example/Example.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/example/index.html -------------------------------------------------------------------------------- /example/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/example/main.css -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/example/main.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v23.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/flow-typed/npm/jest_v23.x.x.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/index.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/package.json -------------------------------------------------------------------------------- /src/getTransitionTimeMs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/src/getTransitionTimeMs.js -------------------------------------------------------------------------------- /src/getTransitionTimeMs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/src/getTransitionTimeMs.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/src/index.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StreakYC/react-smooth-collapse/HEAD/tsconfig.json --------------------------------------------------------------------------------