├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── dist ├── ExcelPlugin │ ├── components │ │ └── ExcelFile.js │ ├── elements │ │ ├── ExcelColumn.js │ │ └── ExcelSheet.js │ └── utils │ │ └── DataUtil.js └── index.js ├── examples ├── simple_excel_export_01.md ├── simple_excel_export_02.md ├── styled_excel_sheet.md └── with_custom_download_element.md ├── jest.config.js ├── package.json ├── src ├── ExcelPlugin │ ├── components │ │ └── ExcelFile.js │ ├── elements │ │ ├── ExcelColumn.js │ │ └── ExcelSheet.js │ └── utils │ │ └── DataUtil.js └── index.js ├── test ├── global.js └── unit │ ├── __snapshots__ │ └── excel.test.js.snap │ └── excel.test.js ├── types ├── index.d.ts └── types.md └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.log 4 | .idea/ 5 | .nyc_output/ 6 | coverage/ 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | /.nyc_output/ 3 | /coverage/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/_config.yml -------------------------------------------------------------------------------- /dist/ExcelPlugin/components/ExcelFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/dist/ExcelPlugin/components/ExcelFile.js -------------------------------------------------------------------------------- /dist/ExcelPlugin/elements/ExcelColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/dist/ExcelPlugin/elements/ExcelColumn.js -------------------------------------------------------------------------------- /dist/ExcelPlugin/elements/ExcelSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/dist/ExcelPlugin/elements/ExcelSheet.js -------------------------------------------------------------------------------- /dist/ExcelPlugin/utils/DataUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/dist/ExcelPlugin/utils/DataUtil.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/dist/index.js -------------------------------------------------------------------------------- /examples/simple_excel_export_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/examples/simple_excel_export_01.md -------------------------------------------------------------------------------- /examples/simple_excel_export_02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/examples/simple_excel_export_02.md -------------------------------------------------------------------------------- /examples/styled_excel_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/examples/styled_excel_sheet.md -------------------------------------------------------------------------------- /examples/with_custom_download_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/examples/with_custom_download_element.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/package.json -------------------------------------------------------------------------------- /src/ExcelPlugin/components/ExcelFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/src/ExcelPlugin/components/ExcelFile.js -------------------------------------------------------------------------------- /src/ExcelPlugin/elements/ExcelColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/src/ExcelPlugin/elements/ExcelColumn.js -------------------------------------------------------------------------------- /src/ExcelPlugin/elements/ExcelSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/src/ExcelPlugin/elements/ExcelSheet.js -------------------------------------------------------------------------------- /src/ExcelPlugin/utils/DataUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/src/ExcelPlugin/utils/DataUtil.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/src/index.js -------------------------------------------------------------------------------- /test/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/test/global.js -------------------------------------------------------------------------------- /test/unit/__snapshots__/excel.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/test/unit/__snapshots__/excel.test.js.snap -------------------------------------------------------------------------------- /test/unit/excel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/test/unit/excel.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/types/types.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdcalle/react-export-excel/HEAD/yarn.lock --------------------------------------------------------------------------------