├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── rollup.config.js ├── setup.ts ├── src ├── react-xls.ts ├── useExcelDownloder.tsx └── useSheetTo.tsx ├── supports ├── book.xlsx └── create-react-app │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── tsconfig.jest.json └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/rollup.config.js -------------------------------------------------------------------------------- /setup.ts: -------------------------------------------------------------------------------- 1 | // require('mutationobserver-shim'); 2 | -------------------------------------------------------------------------------- /src/react-xls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/src/react-xls.ts -------------------------------------------------------------------------------- /src/useExcelDownloder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/src/useExcelDownloder.tsx -------------------------------------------------------------------------------- /src/useSheetTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/src/useSheetTo.tsx -------------------------------------------------------------------------------- /supports/book.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/book.xlsx -------------------------------------------------------------------------------- /supports/create-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/.gitignore -------------------------------------------------------------------------------- /supports/create-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/README.md -------------------------------------------------------------------------------- /supports/create-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/package.json -------------------------------------------------------------------------------- /supports/create-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/public/favicon.ico -------------------------------------------------------------------------------- /supports/create-react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/public/index.html -------------------------------------------------------------------------------- /supports/create-react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/public/logo192.png -------------------------------------------------------------------------------- /supports/create-react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/public/logo512.png -------------------------------------------------------------------------------- /supports/create-react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/public/manifest.json -------------------------------------------------------------------------------- /supports/create-react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/public/robots.txt -------------------------------------------------------------------------------- /supports/create-react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/App.css -------------------------------------------------------------------------------- /supports/create-react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/App.js -------------------------------------------------------------------------------- /supports/create-react-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/App.test.js -------------------------------------------------------------------------------- /supports/create-react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/index.css -------------------------------------------------------------------------------- /supports/create-react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/index.js -------------------------------------------------------------------------------- /supports/create-react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/logo.svg -------------------------------------------------------------------------------- /supports/create-react-app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/reportWebVitals.js -------------------------------------------------------------------------------- /supports/create-react-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/supports/create-react-app/src/setupTests.js -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bunlong/react-xls/HEAD/tsconfig.json --------------------------------------------------------------------------------