├── .eslintrc ├── .flowconfig ├── .fossaignore ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .jscs.json ├── .jshintrc ├── .npmignore ├── .spelling ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bin └── xlsx.njs ├── bits ├── .npmignore ├── 00_header.js ├── 01_version.js ├── 02_codepage.js ├── 03_consts.js ├── 04_base64.js ├── 05_buf.js ├── 09_types.js ├── 10_ssf.js ├── 11_ssfutils.js ├── 18_cfb.js ├── 19_fsutils.js ├── 20_jsutils.js ├── 21_ziputils.js ├── 22_xmlutils.js ├── 23_binutils.js ├── 24_hoppers.js ├── 25_cellutils.js ├── 26_crypto.js ├── 27_csfutils.js ├── 28_binstructs.js ├── 29_xlsenum.js ├── 30_ctype.js ├── 31_rels.js ├── 32_odmanrdf.js ├── 33_coreprops.js ├── 34_extprops.js ├── 35_custprops.js ├── 36_xlsprops.js ├── 38_xlstypes.js ├── 39_xlsbiff.js ├── 40_harb.js ├── 41_lotus.js ├── 42_sstxml.js ├── 43_sstbin.js ├── 44_offcrypto.js ├── 45_rtf.js ├── 46_stycommon.js ├── 47_styxml.js ├── 48_stybin.js ├── 49_theme.js ├── 50_styxls.js ├── 52_calcchain.js ├── 53_externlink.js ├── 54_drawing.js ├── 55_vml.js ├── 56_cmntcommon.js ├── 57_cmntxml.js ├── 58_cmntbin.js ├── 59_vba.js ├── 60_macrovba.js ├── 61_fcommon.js ├── 62_fxls.js ├── 63_fbin.js ├── 64_ftab.js ├── 65_fods.js ├── 66_wscommon.js ├── 67_wsxml.js ├── 68_wsbin.js ├── 69_chartxml.js ├── 70_csheet.js ├── 71_wbcommon.js ├── 72_wbxml.js ├── 73_wbbin.js ├── 74_xmlbin.js ├── 75_xlml.js ├── 76_xls.js ├── 77_parsetab.js ├── 78_writebiff.js ├── 79_html.js ├── 80_parseods.js ├── 81_writeods.js ├── 82_sheeter.js ├── 84_defaults.js ├── 85_parsezip.js ├── 86_writezip.js ├── 87_read.js ├── 88_write.js ├── 90_utils.js ├── 95_api.js ├── 97_node.js ├── 98_exports.js └── 99_footer.js ├── book.json ├── bower.json ├── demos ├── README.md ├── altjs │ ├── .gitignore │ ├── .swiftlint.yml │ ├── Makefile │ ├── README.md │ ├── SJSPlayground.swift │ ├── SheetJSCore.swift │ ├── SheetJSRhino.java │ ├── chakra.js │ ├── com │ │ └── sheetjs │ │ │ ├── JSHelper.java │ │ │ ├── ObjectNotFoundException.java │ │ │ ├── SheetJS.java │ │ │ ├── SheetJSFile.java │ │ │ └── SheetJSSheet.java │ ├── duktape.sh │ ├── global.js │ ├── goja.go │ ├── main.swift │ ├── nashorn.js │ ├── qjs.js │ └── sheetjs.duk.c ├── angular │ ├── README.md │ ├── SheetJS-angular.js │ ├── app.js │ ├── grid.html │ ├── index.html │ ├── shim.js │ ├── xlsx.core.min.js │ └── xlsx.full.min.js ├── angular2 │ ├── .angular-cli.json │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── ionic.sh │ ├── ionic.ts │ ├── nscript.sh │ ├── nscript.ts │ ├── nsmain.ts │ ├── package.json │ ├── package.json-angular2 │ ├── package.json-angular4 │ ├── package.json-angular5 │ ├── screen.png │ ├── src │ │ ├── app │ │ │ ├── app.module.ts │ │ │ └── sheetjs.component.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── tsconfig.app.json │ └── tsconfig.json ├── array │ ├── Makefile │ ├── README.md │ ├── linest.js │ ├── propel.js │ └── tf.js ├── browserify │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── app.js │ ├── browserify.html │ └── xlsxworker.js ├── chrome │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── content.js │ ├── manifest.json │ ├── popup.html │ ├── popup.js │ └── table.js ├── database │ ├── .eslintrc │ ├── .gitignore │ ├── FirebaseDemo.html │ ├── FirebaseTest.js │ ├── KnexTest.js │ ├── LocalForage.html │ ├── LocalStorage.html │ ├── LowDBTest.js │ ├── Makefile │ ├── MongoDBCRUD.js │ ├── MongoDBTest.js │ ├── MySQLTest.js │ ├── ObjUtils.js │ ├── PgSQLTest.js │ ├── README.md │ ├── RedisTest.js │ ├── SQLiteTest.js │ ├── SheetJSForage.js │ ├── SheetJSKnex.js │ ├── SheetJSLowDB.js │ ├── SheetJSMongo.js │ ├── SheetJSRedis.js │ ├── SheetJSSQL.js │ ├── SheetJSStorage.js │ └── xlsx.full.min.js ├── datagrid │ ├── README.md │ ├── index.html │ ├── shim.js │ └── xlsx.full.min.js ├── electron │ ├── .eslintrc │ ├── Makefile │ ├── README.md │ ├── index.html │ ├── index.js │ ├── main.js │ └── package.json ├── extendscript │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── aftereffects.base │ ├── aftereffects.jsx │ ├── estoolkit.base │ ├── estoolkit.jsx │ ├── illustrator.base │ ├── illustrator.jsx │ ├── indesign.base │ ├── indesign.jsx │ ├── photoshop.base │ ├── photoshop.jsx │ ├── sheetjs.xlsx │ └── test.jsx ├── function │ ├── .eslintrc │ ├── AzureHTTPTrigger │ │ ├── function.json │ │ └── index.js │ ├── LambdaProxy │ │ ├── index.js │ │ └── template.yaml │ ├── Makefile │ ├── README.md │ ├── host.json │ ├── local.settings.json │ └── mcstream.js ├── fusebox │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── fuse.js │ ├── index.html │ └── sheetjs.ts ├── headless │ ├── .gitignore │ ├── README.md │ ├── chromeless.js │ ├── phantomjs.js │ ├── puppeteer.js │ ├── sheetjs.xlsx │ └── slimerjs.js ├── knockout │ ├── README.md │ ├── index.html │ ├── shim.js │ └── xlsx.full.min.js ├── meteor │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── client │ │ ├── main.css │ │ ├── main.html │ │ └── main.js │ ├── package.json │ └── server │ │ └── main.js ├── nwjs │ ├── Makefile │ ├── README.md │ ├── index.html │ ├── index.js │ ├── package.json │ └── xlsx.full.min.js ├── oldie │ ├── README.md │ ├── base64.min.js │ ├── download.png │ ├── downloadify.min.js │ ├── downloadify.swf │ ├── index.html │ ├── shim.min.js │ ├── swfobject.js │ └── xlsx.full.min.js ├── parcel │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── index.html │ └── index.js ├── react │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── index.html │ ├── native.sh │ ├── nexthdr.js │ ├── pages │ │ ├── .gitignore │ │ └── index.js │ ├── preact.html │ ├── react-native.js │ ├── screen.png │ └── sheetjs.jsx ├── requirejs │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── app.js │ ├── browser.html │ ├── build.js │ └── optimizer.html ├── rollup │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── app.js │ ├── main.js │ ├── rollup.config.js │ ├── rollup.config.node.js │ ├── rollup.config.worker.js │ ├── rollup.html │ └── xlsxworker.js ├── server │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── _cors.js │ ├── _logit.js │ ├── _request.js │ ├── express.js │ ├── hapi.js │ ├── koa.js │ ├── koasub.js │ ├── micro.js │ ├── node.js │ └── worker.js ├── showcase │ └── README.md ├── systemjs │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── app.node.js │ ├── main.js │ ├── main.simple.js │ ├── simple.html │ ├── systemjs.html │ ├── test.node.js │ ├── worker.js │ └── xlsxworker.js ├── typescript │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── demo.js │ ├── index.html │ ├── lib │ │ └── index.ts │ ├── package.json │ ├── src │ │ └── index.js │ ├── tsconfig.json │ └── tslint.json ├── vue │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── SheetJS-vue.js │ ├── index.html │ ├── native.vue │ ├── nuxt.config.js │ ├── package.json │ ├── pages │ │ └── index.vue │ ├── screen.png │ ├── shim.js │ ├── static │ │ ├── shim.js │ │ └── xlsx.full.min.js │ ├── weex.sh │ └── xlsx.full.min.js ├── webpack │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── app.js │ ├── appworker.js │ ├── core.html │ ├── core.js │ ├── coreworker.js │ ├── full.html │ ├── full.js │ ├── fullworker.js │ ├── main.html │ ├── main.js │ ├── mainworker.js │ ├── webpack.app.js │ ├── webpack.config.js │ ├── xlsx.core.min.js │ └── xlsx.full.min.js ├── xhr │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── axios.html │ ├── fetch.html │ ├── package.json │ ├── server.js │ ├── superagent.html │ ├── xhr.html │ └── xlsx.full.min.js └── xspreadsheet │ ├── README.md │ ├── index.html │ ├── shim.js │ └── xlsx.full.min.js ├── dist ├── LICENSE ├── cpexcel.js ├── jszip.js ├── shim.min.js ├── xlsx.core.min.js ├── xlsx.core.min.map ├── xlsx.extendscript.js ├── xlsx.full.min.js ├── xlsx.full.min.map ├── xlsx.js ├── xlsx.min.js ├── xlsx.min.map ├── xlsx.mini.min.js └── xlsx.mini.min.map ├── docbits ├── 00_intro.md ├── 01_toc.md ├── 10_install.md ├── 11_demos.md ├── 12_optional.md ├── 15_phil.md ├── 20_import.md ├── 21_readstream.md ├── 25_manip.md ├── 30_export.md ├── 31_writestream.md ├── 40_interface.md ├── 50_csf.md ├── 51_cell.md ├── 52_datatype.md ├── 53_wsobject.md ├── 54_shobject.md ├── 55_wbobject.md ├── 56_wbprops.md ├── 57_wbbook.md ├── 60_features.md ├── 61_formulae.md ├── 62_colrow.md ├── 63_numfmt.md ├── 64_cellprops.md ├── 66_comments.md ├── 73_sheetprops.md ├── 77_macrovba.md ├── 80_parseopts.md ├── 81_writeopts.md ├── 82_util.md ├── 85_filetype.md ├── 90_test.md ├── 95_contrib.md ├── 97_license.md └── 98_reference.md ├── formats.dot ├── formats.png ├── imgs └── 1.png ├── index.html ├── jszip.js ├── legend.png ├── make.cmd ├── mini.lst ├── misc ├── 02_codepage.js ├── 21_ziputils.js ├── docs │ ├── README.md │ ├── SUMMARY.md │ ├── formats.png │ ├── legend.png │ └── style.css ├── flow.js ├── flowdeps.js ├── help.sh ├── legend.dot ├── prof.js ├── spin.sh ├── ssf.json ├── strip_flow.js ├── strip_sourcemap.sh └── suppress_export.js ├── multiformat.lst ├── package.json ├── packages └── s │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── dist │ ├── S.js │ ├── cjs │ │ ├── index.js │ │ ├── index.js.map │ │ ├── s │ │ │ ├── Range.js │ │ │ ├── Range.js.map │ │ │ ├── Workbook.js │ │ │ ├── Workbook.js.map │ │ │ ├── XLSXWrapper.js │ │ │ ├── XLSXWrapper.js.map │ │ │ ├── names │ │ │ │ ├── DefinedName.js │ │ │ │ ├── DefinedName.js.map │ │ │ │ ├── DefinedNameCollection.js │ │ │ │ ├── DefinedNameCollection.js.map │ │ │ │ ├── WorkbookDefinedNameCollection.js │ │ │ │ └── WorkbookDefinedNameCollection.js.map │ │ │ └── worksheet │ │ │ │ ├── WorksheetCollection.js │ │ │ │ └── WorksheetCollection.js.map │ │ ├── umd.js │ │ └── umd.js.map │ ├── esm │ │ ├── index.js │ │ ├── index.js.map │ │ ├── s │ │ │ ├── Range.js │ │ │ ├── Range.js.map │ │ │ ├── Workbook.js │ │ │ ├── Workbook.js.map │ │ │ ├── XLSXWrapper.js │ │ │ ├── XLSXWrapper.js.map │ │ │ ├── names │ │ │ │ ├── DefinedName.js │ │ │ │ ├── DefinedName.js.map │ │ │ │ ├── DefinedNameCollection.js │ │ │ │ ├── DefinedNameCollection.js.map │ │ │ │ ├── WorkbookDefinedNameCollection.js │ │ │ │ └── WorkbookDefinedNameCollection.js.map │ │ │ └── worksheet │ │ │ │ ├── WorksheetCollection.js │ │ │ │ └── WorksheetCollection.js.map │ │ ├── umd.js │ │ └── umd.js.map │ ├── mjs │ │ ├── index.js.map │ │ ├── index.mjs │ │ ├── s │ │ │ ├── Range.js.map │ │ │ ├── Range.mjs │ │ │ ├── Workbook.js.map │ │ │ ├── Workbook.mjs │ │ │ ├── XLSXWrapper.js.map │ │ │ ├── XLSXWrapper.mjs │ │ │ ├── names │ │ │ │ ├── DefinedName.js.map │ │ │ │ ├── DefinedName.mjs │ │ │ │ ├── DefinedNameCollection.js.map │ │ │ │ ├── DefinedNameCollection.mjs │ │ │ │ ├── WorkbookDefinedNameCollection.js.map │ │ │ │ └── WorkbookDefinedNameCollection.mjs │ │ │ └── worksheet │ │ │ │ ├── WorksheetCollection.js.map │ │ │ │ └── WorksheetCollection.mjs │ │ ├── umd.js.map │ │ └── umd.mjs │ └── typings │ │ ├── index.d.ts │ │ ├── s │ │ ├── Range.d.ts │ │ ├── Workbook.d.ts │ │ ├── XLSXWrapper.d.ts │ │ ├── names │ │ │ ├── DefinedName.d.ts │ │ │ ├── DefinedNameCollection.d.ts │ │ │ └── WorkbookDefinedNameCollection.d.ts │ │ └── worksheet │ │ │ └── WorksheetCollection.d.ts │ │ └── umd.d.ts │ ├── esm.mjs │ ├── index.js │ ├── misc │ ├── .gitignore │ ├── import_test.mjs │ ├── make_mjs.sh │ ├── module.html │ ├── parcel.html │ ├── parcel.js │ ├── puppetmjs.js │ ├── puppetpcl.js │ ├── puppetsta.js │ ├── require_test.njs │ ├── standalone.html │ ├── standalone.js │ ├── webpack.config.js │ └── xlsx.mini.min.js │ ├── package.json │ ├── src │ ├── index.ts │ ├── s │ │ ├── Range.ts │ │ ├── Workbook.ts │ │ ├── XLSXWrapper.ts │ │ ├── names │ │ │ ├── DefinedName.ts │ │ │ ├── DefinedNameCollection.ts │ │ │ └── WorkbookDefinedNameCollection.ts │ │ └── worksheet │ │ │ ├── Worksheet.ts │ │ │ └── WorksheetCollection.ts │ ├── umd.ts │ └── xlsx.d.ts │ ├── test.ts │ ├── tsconfig.base.json │ ├── tsconfig.json │ ├── tsconfig.vscode.json │ └── tsconfig │ ├── tsconfig.base.json │ ├── tsconfig.cjs.json │ ├── tsconfig.esm.json │ └── tsconfig.types.json ├── shim.js ├── test.js ├── tests.lst ├── tests ├── base64.js ├── core.js ├── fixtures.js ├── fixtures.lst ├── fs_.js ├── index.html ├── make_fixtures.js ├── mocha.css ├── mocha.js ├── sauce.html ├── shim.js ├── testA.lst ├── write.html ├── write.js ├── xlsx.core.min.js └── xlsx.full.min.js ├── types ├── .npmignore ├── Makefile ├── bin_xlsx.ts ├── doc.ts ├── index.d.ts ├── tsconfig.json ├── tslint.json ├── write.ts └── xlsx-tests.ts ├── xlsx.flow.js ├── xlsx.js ├── xlsx.mini.flow.js ├── xlsx.mini.js ├── xlsxworker.flow.js └── xlsxworker.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.flowconfig -------------------------------------------------------------------------------- /.fossaignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.fossaignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SheetJSDev 2 | custom: https://sheetjs.com 3 | open_collective: s5s 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.jscs.json -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.npmignore -------------------------------------------------------------------------------- /.spelling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.spelling -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/README.md -------------------------------------------------------------------------------- /bin/xlsx.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bin/xlsx.njs -------------------------------------------------------------------------------- /bits/.npmignore: -------------------------------------------------------------------------------- 1 | *.js 2 | -------------------------------------------------------------------------------- /bits/00_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/00_header.js -------------------------------------------------------------------------------- /bits/01_version.js: -------------------------------------------------------------------------------- 1 | XLSX.version = '0.15.6'; 2 | -------------------------------------------------------------------------------- /bits/02_codepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/02_codepage.js -------------------------------------------------------------------------------- /bits/03_consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/03_consts.js -------------------------------------------------------------------------------- /bits/04_base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/04_base64.js -------------------------------------------------------------------------------- /bits/05_buf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/05_buf.js -------------------------------------------------------------------------------- /bits/09_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/09_types.js -------------------------------------------------------------------------------- /bits/10_ssf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/10_ssf.js -------------------------------------------------------------------------------- /bits/11_ssfutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/11_ssfutils.js -------------------------------------------------------------------------------- /bits/18_cfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/18_cfb.js -------------------------------------------------------------------------------- /bits/19_fsutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/19_fsutils.js -------------------------------------------------------------------------------- /bits/20_jsutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/20_jsutils.js -------------------------------------------------------------------------------- /bits/21_ziputils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/21_ziputils.js -------------------------------------------------------------------------------- /bits/22_xmlutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/22_xmlutils.js -------------------------------------------------------------------------------- /bits/23_binutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/23_binutils.js -------------------------------------------------------------------------------- /bits/24_hoppers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/24_hoppers.js -------------------------------------------------------------------------------- /bits/25_cellutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/25_cellutils.js -------------------------------------------------------------------------------- /bits/26_crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/26_crypto.js -------------------------------------------------------------------------------- /bits/27_csfutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/27_csfutils.js -------------------------------------------------------------------------------- /bits/28_binstructs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/28_binstructs.js -------------------------------------------------------------------------------- /bits/29_xlsenum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/29_xlsenum.js -------------------------------------------------------------------------------- /bits/30_ctype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/30_ctype.js -------------------------------------------------------------------------------- /bits/31_rels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/31_rels.js -------------------------------------------------------------------------------- /bits/32_odmanrdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/32_odmanrdf.js -------------------------------------------------------------------------------- /bits/33_coreprops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/33_coreprops.js -------------------------------------------------------------------------------- /bits/34_extprops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/34_extprops.js -------------------------------------------------------------------------------- /bits/35_custprops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/35_custprops.js -------------------------------------------------------------------------------- /bits/36_xlsprops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/36_xlsprops.js -------------------------------------------------------------------------------- /bits/38_xlstypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/38_xlstypes.js -------------------------------------------------------------------------------- /bits/39_xlsbiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/39_xlsbiff.js -------------------------------------------------------------------------------- /bits/40_harb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/40_harb.js -------------------------------------------------------------------------------- /bits/41_lotus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/41_lotus.js -------------------------------------------------------------------------------- /bits/42_sstxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/42_sstxml.js -------------------------------------------------------------------------------- /bits/43_sstbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/43_sstbin.js -------------------------------------------------------------------------------- /bits/44_offcrypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/44_offcrypto.js -------------------------------------------------------------------------------- /bits/45_rtf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/45_rtf.js -------------------------------------------------------------------------------- /bits/46_stycommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/46_stycommon.js -------------------------------------------------------------------------------- /bits/47_styxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/47_styxml.js -------------------------------------------------------------------------------- /bits/48_stybin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/48_stybin.js -------------------------------------------------------------------------------- /bits/49_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/49_theme.js -------------------------------------------------------------------------------- /bits/50_styxls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/50_styxls.js -------------------------------------------------------------------------------- /bits/52_calcchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/52_calcchain.js -------------------------------------------------------------------------------- /bits/53_externlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/53_externlink.js -------------------------------------------------------------------------------- /bits/54_drawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/54_drawing.js -------------------------------------------------------------------------------- /bits/55_vml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/55_vml.js -------------------------------------------------------------------------------- /bits/56_cmntcommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/56_cmntcommon.js -------------------------------------------------------------------------------- /bits/57_cmntxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/57_cmntxml.js -------------------------------------------------------------------------------- /bits/58_cmntbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/58_cmntbin.js -------------------------------------------------------------------------------- /bits/59_vba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/59_vba.js -------------------------------------------------------------------------------- /bits/60_macrovba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/60_macrovba.js -------------------------------------------------------------------------------- /bits/61_fcommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/61_fcommon.js -------------------------------------------------------------------------------- /bits/62_fxls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/62_fxls.js -------------------------------------------------------------------------------- /bits/63_fbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/63_fbin.js -------------------------------------------------------------------------------- /bits/64_ftab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/64_ftab.js -------------------------------------------------------------------------------- /bits/65_fods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/65_fods.js -------------------------------------------------------------------------------- /bits/66_wscommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/66_wscommon.js -------------------------------------------------------------------------------- /bits/67_wsxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/67_wsxml.js -------------------------------------------------------------------------------- /bits/68_wsbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/68_wsbin.js -------------------------------------------------------------------------------- /bits/69_chartxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/69_chartxml.js -------------------------------------------------------------------------------- /bits/70_csheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/70_csheet.js -------------------------------------------------------------------------------- /bits/71_wbcommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/71_wbcommon.js -------------------------------------------------------------------------------- /bits/72_wbxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/72_wbxml.js -------------------------------------------------------------------------------- /bits/73_wbbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/73_wbbin.js -------------------------------------------------------------------------------- /bits/74_xmlbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/74_xmlbin.js -------------------------------------------------------------------------------- /bits/75_xlml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/75_xlml.js -------------------------------------------------------------------------------- /bits/76_xls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/76_xls.js -------------------------------------------------------------------------------- /bits/77_parsetab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/77_parsetab.js -------------------------------------------------------------------------------- /bits/78_writebiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/78_writebiff.js -------------------------------------------------------------------------------- /bits/79_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/79_html.js -------------------------------------------------------------------------------- /bits/80_parseods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/80_parseods.js -------------------------------------------------------------------------------- /bits/81_writeods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/81_writeods.js -------------------------------------------------------------------------------- /bits/82_sheeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/82_sheeter.js -------------------------------------------------------------------------------- /bits/84_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/84_defaults.js -------------------------------------------------------------------------------- /bits/85_parsezip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/85_parsezip.js -------------------------------------------------------------------------------- /bits/86_writezip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/86_writezip.js -------------------------------------------------------------------------------- /bits/87_read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/87_read.js -------------------------------------------------------------------------------- /bits/88_write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/88_write.js -------------------------------------------------------------------------------- /bits/90_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/90_utils.js -------------------------------------------------------------------------------- /bits/95_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/95_api.js -------------------------------------------------------------------------------- /bits/97_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/97_node.js -------------------------------------------------------------------------------- /bits/98_exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/98_exports.js -------------------------------------------------------------------------------- /bits/99_footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bits/99_footer.js -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/book.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/bower.json -------------------------------------------------------------------------------- /demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/README.md -------------------------------------------------------------------------------- /demos/altjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/.gitignore -------------------------------------------------------------------------------- /demos/altjs/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/.swiftlint.yml -------------------------------------------------------------------------------- /demos/altjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/Makefile -------------------------------------------------------------------------------- /demos/altjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/README.md -------------------------------------------------------------------------------- /demos/altjs/SJSPlayground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/SJSPlayground.swift -------------------------------------------------------------------------------- /demos/altjs/SheetJSCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/SheetJSCore.swift -------------------------------------------------------------------------------- /demos/altjs/SheetJSRhino.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/SheetJSRhino.java -------------------------------------------------------------------------------- /demos/altjs/chakra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/chakra.js -------------------------------------------------------------------------------- /demos/altjs/com/sheetjs/JSHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/com/sheetjs/JSHelper.java -------------------------------------------------------------------------------- /demos/altjs/com/sheetjs/ObjectNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/com/sheetjs/ObjectNotFoundException.java -------------------------------------------------------------------------------- /demos/altjs/com/sheetjs/SheetJS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/com/sheetjs/SheetJS.java -------------------------------------------------------------------------------- /demos/altjs/com/sheetjs/SheetJSFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/com/sheetjs/SheetJSFile.java -------------------------------------------------------------------------------- /demos/altjs/com/sheetjs/SheetJSSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/com/sheetjs/SheetJSSheet.java -------------------------------------------------------------------------------- /demos/altjs/duktape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/duktape.sh -------------------------------------------------------------------------------- /demos/altjs/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/global.js -------------------------------------------------------------------------------- /demos/altjs/goja.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/goja.go -------------------------------------------------------------------------------- /demos/altjs/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/main.swift -------------------------------------------------------------------------------- /demos/altjs/nashorn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/nashorn.js -------------------------------------------------------------------------------- /demos/altjs/qjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/qjs.js -------------------------------------------------------------------------------- /demos/altjs/sheetjs.duk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/altjs/sheetjs.duk.c -------------------------------------------------------------------------------- /demos/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular/README.md -------------------------------------------------------------------------------- /demos/angular/SheetJS-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular/SheetJS-angular.js -------------------------------------------------------------------------------- /demos/angular/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular/app.js -------------------------------------------------------------------------------- /demos/angular/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular/grid.html -------------------------------------------------------------------------------- /demos/angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular/index.html -------------------------------------------------------------------------------- /demos/angular/shim.js: -------------------------------------------------------------------------------- 1 | ../../shim.js -------------------------------------------------------------------------------- /demos/angular/xlsx.core.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.core.min.js -------------------------------------------------------------------------------- /demos/angular/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/angular2/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/.angular-cli.json -------------------------------------------------------------------------------- /demos/angular2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/.gitignore -------------------------------------------------------------------------------- /demos/angular2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/Makefile -------------------------------------------------------------------------------- /demos/angular2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/README.md -------------------------------------------------------------------------------- /demos/angular2/ionic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/ionic.sh -------------------------------------------------------------------------------- /demos/angular2/ionic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/ionic.ts -------------------------------------------------------------------------------- /demos/angular2/nscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/nscript.sh -------------------------------------------------------------------------------- /demos/angular2/nscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/nscript.ts -------------------------------------------------------------------------------- /demos/angular2/nsmain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/nsmain.ts -------------------------------------------------------------------------------- /demos/angular2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/package.json -------------------------------------------------------------------------------- /demos/angular2/package.json-angular2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/package.json-angular2 -------------------------------------------------------------------------------- /demos/angular2/package.json-angular4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/package.json-angular4 -------------------------------------------------------------------------------- /demos/angular2/package.json-angular5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/package.json-angular5 -------------------------------------------------------------------------------- /demos/angular2/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/screen.png -------------------------------------------------------------------------------- /demos/angular2/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/src/app/app.module.ts -------------------------------------------------------------------------------- /demos/angular2/src/app/sheetjs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/src/app/sheetjs.component.ts -------------------------------------------------------------------------------- /demos/angular2/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/src/index.html -------------------------------------------------------------------------------- /demos/angular2/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/src/main.ts -------------------------------------------------------------------------------- /demos/angular2/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/src/polyfills.ts -------------------------------------------------------------------------------- /demos/angular2/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/src/tsconfig.app.json -------------------------------------------------------------------------------- /demos/angular2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/angular2/tsconfig.json -------------------------------------------------------------------------------- /demos/array/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/array/Makefile -------------------------------------------------------------------------------- /demos/array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/array/README.md -------------------------------------------------------------------------------- /demos/array/linest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/array/linest.js -------------------------------------------------------------------------------- /demos/array/propel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/array/propel.js -------------------------------------------------------------------------------- /demos/array/tf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/array/tf.js -------------------------------------------------------------------------------- /demos/browserify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/browserify/.gitignore -------------------------------------------------------------------------------- /demos/browserify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/browserify/Makefile -------------------------------------------------------------------------------- /demos/browserify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/browserify/README.md -------------------------------------------------------------------------------- /demos/browserify/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/browserify/app.js -------------------------------------------------------------------------------- /demos/browserify/browserify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/browserify/browserify.html -------------------------------------------------------------------------------- /demos/browserify/xlsxworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/browserify/xlsxworker.js -------------------------------------------------------------------------------- /demos/chrome/.gitignore: -------------------------------------------------------------------------------- 1 | xlsx.*.js 2 | logo.png 3 | -------------------------------------------------------------------------------- /demos/chrome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/chrome/Makefile -------------------------------------------------------------------------------- /demos/chrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/chrome/README.md -------------------------------------------------------------------------------- /demos/chrome/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/chrome/content.js -------------------------------------------------------------------------------- /demos/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/chrome/manifest.json -------------------------------------------------------------------------------- /demos/chrome/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/chrome/popup.html -------------------------------------------------------------------------------- /demos/chrome/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/chrome/popup.js -------------------------------------------------------------------------------- /demos/chrome/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/chrome/table.js -------------------------------------------------------------------------------- /demos/database/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/.eslintrc -------------------------------------------------------------------------------- /demos/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | -------------------------------------------------------------------------------- /demos/database/FirebaseDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/FirebaseDemo.html -------------------------------------------------------------------------------- /demos/database/FirebaseTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/FirebaseTest.js -------------------------------------------------------------------------------- /demos/database/KnexTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/KnexTest.js -------------------------------------------------------------------------------- /demos/database/LocalForage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/LocalForage.html -------------------------------------------------------------------------------- /demos/database/LocalStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/LocalStorage.html -------------------------------------------------------------------------------- /demos/database/LowDBTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/LowDBTest.js -------------------------------------------------------------------------------- /demos/database/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/Makefile -------------------------------------------------------------------------------- /demos/database/MongoDBCRUD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/MongoDBCRUD.js -------------------------------------------------------------------------------- /demos/database/MongoDBTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/MongoDBTest.js -------------------------------------------------------------------------------- /demos/database/MySQLTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/MySQLTest.js -------------------------------------------------------------------------------- /demos/database/ObjUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/ObjUtils.js -------------------------------------------------------------------------------- /demos/database/PgSQLTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/PgSQLTest.js -------------------------------------------------------------------------------- /demos/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/README.md -------------------------------------------------------------------------------- /demos/database/RedisTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/RedisTest.js -------------------------------------------------------------------------------- /demos/database/SQLiteTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SQLiteTest.js -------------------------------------------------------------------------------- /demos/database/SheetJSForage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SheetJSForage.js -------------------------------------------------------------------------------- /demos/database/SheetJSKnex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SheetJSKnex.js -------------------------------------------------------------------------------- /demos/database/SheetJSLowDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SheetJSLowDB.js -------------------------------------------------------------------------------- /demos/database/SheetJSMongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SheetJSMongo.js -------------------------------------------------------------------------------- /demos/database/SheetJSRedis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SheetJSRedis.js -------------------------------------------------------------------------------- /demos/database/SheetJSSQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SheetJSSQL.js -------------------------------------------------------------------------------- /demos/database/SheetJSStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/database/SheetJSStorage.js -------------------------------------------------------------------------------- /demos/database/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/datagrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/datagrid/README.md -------------------------------------------------------------------------------- /demos/datagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/datagrid/index.html -------------------------------------------------------------------------------- /demos/datagrid/shim.js: -------------------------------------------------------------------------------- 1 | ../../shim.js -------------------------------------------------------------------------------- /demos/datagrid/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/electron/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/electron/.eslintrc -------------------------------------------------------------------------------- /demos/electron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/electron/Makefile -------------------------------------------------------------------------------- /demos/electron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/electron/README.md -------------------------------------------------------------------------------- /demos/electron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/electron/index.html -------------------------------------------------------------------------------- /demos/electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/electron/index.js -------------------------------------------------------------------------------- /demos/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/electron/main.js -------------------------------------------------------------------------------- /demos/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/electron/package.json -------------------------------------------------------------------------------- /demos/extendscript/.gitignore: -------------------------------------------------------------------------------- 1 | xlsx.extendscript.js 2 | -------------------------------------------------------------------------------- /demos/extendscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/Makefile -------------------------------------------------------------------------------- /demos/extendscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/README.md -------------------------------------------------------------------------------- /demos/extendscript/aftereffects.base: -------------------------------------------------------------------------------- 1 | #target aftereffects 2 | -------------------------------------------------------------------------------- /demos/extendscript/aftereffects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/aftereffects.jsx -------------------------------------------------------------------------------- /demos/extendscript/estoolkit.base: -------------------------------------------------------------------------------- 1 | #target estoolkit 2 | -------------------------------------------------------------------------------- /demos/extendscript/estoolkit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/estoolkit.jsx -------------------------------------------------------------------------------- /demos/extendscript/illustrator.base: -------------------------------------------------------------------------------- 1 | #target illustrator 2 | -------------------------------------------------------------------------------- /demos/extendscript/illustrator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/illustrator.jsx -------------------------------------------------------------------------------- /demos/extendscript/indesign.base: -------------------------------------------------------------------------------- 1 | #target indesign 2 | -------------------------------------------------------------------------------- /demos/extendscript/indesign.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/indesign.jsx -------------------------------------------------------------------------------- /demos/extendscript/photoshop.base: -------------------------------------------------------------------------------- 1 | #target photoshop 2 | -------------------------------------------------------------------------------- /demos/extendscript/photoshop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/photoshop.jsx -------------------------------------------------------------------------------- /demos/extendscript/sheetjs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/sheetjs.xlsx -------------------------------------------------------------------------------- /demos/extendscript/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/extendscript/test.jsx -------------------------------------------------------------------------------- /demos/function/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/.eslintrc -------------------------------------------------------------------------------- /demos/function/AzureHTTPTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/AzureHTTPTrigger/function.json -------------------------------------------------------------------------------- /demos/function/AzureHTTPTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/AzureHTTPTrigger/index.js -------------------------------------------------------------------------------- /demos/function/LambdaProxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/LambdaProxy/index.js -------------------------------------------------------------------------------- /demos/function/LambdaProxy/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/LambdaProxy/template.yaml -------------------------------------------------------------------------------- /demos/function/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/Makefile -------------------------------------------------------------------------------- /demos/function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/README.md -------------------------------------------------------------------------------- /demos/function/host.json: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /demos/function/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/local.settings.json -------------------------------------------------------------------------------- /demos/function/mcstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/function/mcstream.js -------------------------------------------------------------------------------- /demos/fusebox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/fusebox/.gitignore -------------------------------------------------------------------------------- /demos/fusebox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/fusebox/Makefile -------------------------------------------------------------------------------- /demos/fusebox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/fusebox/README.md -------------------------------------------------------------------------------- /demos/fusebox/fuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/fusebox/fuse.js -------------------------------------------------------------------------------- /demos/fusebox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/fusebox/index.html -------------------------------------------------------------------------------- /demos/fusebox/sheetjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/fusebox/sheetjs.ts -------------------------------------------------------------------------------- /demos/headless/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /demos/headless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/headless/README.md -------------------------------------------------------------------------------- /demos/headless/chromeless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/headless/chromeless.js -------------------------------------------------------------------------------- /demos/headless/phantomjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/headless/phantomjs.js -------------------------------------------------------------------------------- /demos/headless/puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/headless/puppeteer.js -------------------------------------------------------------------------------- /demos/headless/sheetjs.xlsx: -------------------------------------------------------------------------------- 1 | ../extendscript/sheetjs.xlsx -------------------------------------------------------------------------------- /demos/headless/slimerjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/headless/slimerjs.js -------------------------------------------------------------------------------- /demos/knockout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/knockout/README.md -------------------------------------------------------------------------------- /demos/knockout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/knockout/index.html -------------------------------------------------------------------------------- /demos/knockout/shim.js: -------------------------------------------------------------------------------- 1 | ../../shim.js -------------------------------------------------------------------------------- /demos/knockout/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/meteor/.gitignore: -------------------------------------------------------------------------------- 1 | .meteor 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /demos/meteor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/meteor/Makefile -------------------------------------------------------------------------------- /demos/meteor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/meteor/README.md -------------------------------------------------------------------------------- /demos/meteor/client/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/meteor/client/main.css -------------------------------------------------------------------------------- /demos/meteor/client/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/meteor/client/main.html -------------------------------------------------------------------------------- /demos/meteor/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/meteor/client/main.js -------------------------------------------------------------------------------- /demos/meteor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/meteor/package.json -------------------------------------------------------------------------------- /demos/meteor/server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/meteor/server/main.js -------------------------------------------------------------------------------- /demos/nwjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/nwjs/Makefile -------------------------------------------------------------------------------- /demos/nwjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/nwjs/README.md -------------------------------------------------------------------------------- /demos/nwjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/nwjs/index.html -------------------------------------------------------------------------------- /demos/nwjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/nwjs/index.js -------------------------------------------------------------------------------- /demos/nwjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/nwjs/package.json -------------------------------------------------------------------------------- /demos/nwjs/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/oldie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/oldie/README.md -------------------------------------------------------------------------------- /demos/oldie/base64.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/oldie/base64.min.js -------------------------------------------------------------------------------- /demos/oldie/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/oldie/download.png -------------------------------------------------------------------------------- /demos/oldie/downloadify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/oldie/downloadify.min.js -------------------------------------------------------------------------------- /demos/oldie/downloadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/oldie/downloadify.swf -------------------------------------------------------------------------------- /demos/oldie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/oldie/index.html -------------------------------------------------------------------------------- /demos/oldie/shim.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/shim.min.js -------------------------------------------------------------------------------- /demos/oldie/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/oldie/swfobject.js -------------------------------------------------------------------------------- /demos/oldie/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/parcel/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | dist 3 | -------------------------------------------------------------------------------- /demos/parcel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/parcel/Makefile -------------------------------------------------------------------------------- /demos/parcel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/parcel/README.md -------------------------------------------------------------------------------- /demos/parcel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/parcel/index.html -------------------------------------------------------------------------------- /demos/parcel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/parcel/index.js -------------------------------------------------------------------------------- /demos/react/.gitignore: -------------------------------------------------------------------------------- 1 | SheetJS 2 | .next 3 | static/shim.js 4 | -------------------------------------------------------------------------------- /demos/react/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/Makefile -------------------------------------------------------------------------------- /demos/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/README.md -------------------------------------------------------------------------------- /demos/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/index.html -------------------------------------------------------------------------------- /demos/react/native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/native.sh -------------------------------------------------------------------------------- /demos/react/nexthdr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/nexthdr.js -------------------------------------------------------------------------------- /demos/react/pages/.gitignore: -------------------------------------------------------------------------------- 1 | sheetjs.js 2 | -------------------------------------------------------------------------------- /demos/react/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/pages/index.js -------------------------------------------------------------------------------- /demos/react/preact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/preact.html -------------------------------------------------------------------------------- /demos/react/react-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/react-native.js -------------------------------------------------------------------------------- /demos/react/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/screen.png -------------------------------------------------------------------------------- /demos/react/sheetjs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/react/sheetjs.jsx -------------------------------------------------------------------------------- /demos/requirejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/requirejs/.gitignore -------------------------------------------------------------------------------- /demos/requirejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/requirejs/Makefile -------------------------------------------------------------------------------- /demos/requirejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/requirejs/README.md -------------------------------------------------------------------------------- /demos/requirejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/requirejs/app.js -------------------------------------------------------------------------------- /demos/requirejs/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/requirejs/browser.html -------------------------------------------------------------------------------- /demos/requirejs/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/requirejs/build.js -------------------------------------------------------------------------------- /demos/requirejs/optimizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/requirejs/optimizer.html -------------------------------------------------------------------------------- /demos/rollup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/.gitignore -------------------------------------------------------------------------------- /demos/rollup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/Makefile -------------------------------------------------------------------------------- /demos/rollup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/README.md -------------------------------------------------------------------------------- /demos/rollup/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/app.js -------------------------------------------------------------------------------- /demos/rollup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/main.js -------------------------------------------------------------------------------- /demos/rollup/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/rollup.config.js -------------------------------------------------------------------------------- /demos/rollup/rollup.config.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/rollup.config.node.js -------------------------------------------------------------------------------- /demos/rollup/rollup.config.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/rollup.config.worker.js -------------------------------------------------------------------------------- /demos/rollup/rollup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/rollup.html -------------------------------------------------------------------------------- /demos/rollup/xlsxworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/rollup/xlsxworker.js -------------------------------------------------------------------------------- /demos/server/.gitignore: -------------------------------------------------------------------------------- 1 | xlsx.full.min.js 2 | -------------------------------------------------------------------------------- /demos/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/Makefile -------------------------------------------------------------------------------- /demos/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/README.md -------------------------------------------------------------------------------- /demos/server/_cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/_cors.js -------------------------------------------------------------------------------- /demos/server/_logit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/_logit.js -------------------------------------------------------------------------------- /demos/server/_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/_request.js -------------------------------------------------------------------------------- /demos/server/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/express.js -------------------------------------------------------------------------------- /demos/server/hapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/hapi.js -------------------------------------------------------------------------------- /demos/server/koa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/koa.js -------------------------------------------------------------------------------- /demos/server/koasub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/koasub.js -------------------------------------------------------------------------------- /demos/server/micro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/micro.js -------------------------------------------------------------------------------- /demos/server/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/node.js -------------------------------------------------------------------------------- /demos/server/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/server/worker.js -------------------------------------------------------------------------------- /demos/showcase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/showcase/README.md -------------------------------------------------------------------------------- /demos/systemjs/.gitignore: -------------------------------------------------------------------------------- 1 | systemjs/ 2 | xlsx.full.min.js 3 | -------------------------------------------------------------------------------- /demos/systemjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/Makefile -------------------------------------------------------------------------------- /demos/systemjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/README.md -------------------------------------------------------------------------------- /demos/systemjs/app.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/app.node.js -------------------------------------------------------------------------------- /demos/systemjs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/main.js -------------------------------------------------------------------------------- /demos/systemjs/main.simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/main.simple.js -------------------------------------------------------------------------------- /demos/systemjs/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/simple.html -------------------------------------------------------------------------------- /demos/systemjs/systemjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/systemjs.html -------------------------------------------------------------------------------- /demos/systemjs/test.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/test.node.js -------------------------------------------------------------------------------- /demos/systemjs/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/worker.js -------------------------------------------------------------------------------- /demos/systemjs/xlsxworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/systemjs/xlsxworker.js -------------------------------------------------------------------------------- /demos/typescript/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /demos/typescript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/Makefile -------------------------------------------------------------------------------- /demos/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/README.md -------------------------------------------------------------------------------- /demos/typescript/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/demo.js -------------------------------------------------------------------------------- /demos/typescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/index.html -------------------------------------------------------------------------------- /demos/typescript/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/lib/index.ts -------------------------------------------------------------------------------- /demos/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/package.json -------------------------------------------------------------------------------- /demos/typescript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/src/index.js -------------------------------------------------------------------------------- /demos/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/tsconfig.json -------------------------------------------------------------------------------- /demos/typescript/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/typescript/tslint.json -------------------------------------------------------------------------------- /demos/vue/.gitignore: -------------------------------------------------------------------------------- 1 | SheetJS 2 | .nuxt 3 | -------------------------------------------------------------------------------- /demos/vue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/Makefile -------------------------------------------------------------------------------- /demos/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/README.md -------------------------------------------------------------------------------- /demos/vue/SheetJS-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/SheetJS-vue.js -------------------------------------------------------------------------------- /demos/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/index.html -------------------------------------------------------------------------------- /demos/vue/native.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/native.vue -------------------------------------------------------------------------------- /demos/vue/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/nuxt.config.js -------------------------------------------------------------------------------- /demos/vue/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /demos/vue/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/pages/index.vue -------------------------------------------------------------------------------- /demos/vue/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/screen.png -------------------------------------------------------------------------------- /demos/vue/shim.js: -------------------------------------------------------------------------------- 1 | ../../shim.js -------------------------------------------------------------------------------- /demos/vue/static/shim.js: -------------------------------------------------------------------------------- 1 | ../shim.js -------------------------------------------------------------------------------- /demos/vue/static/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../xlsx.full.min.js -------------------------------------------------------------------------------- /demos/vue/weex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/vue/weex.sh -------------------------------------------------------------------------------- /demos/vue/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/webpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/.gitignore -------------------------------------------------------------------------------- /demos/webpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/Makefile -------------------------------------------------------------------------------- /demos/webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/README.md -------------------------------------------------------------------------------- /demos/webpack/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/app.js -------------------------------------------------------------------------------- /demos/webpack/appworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/appworker.js -------------------------------------------------------------------------------- /demos/webpack/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/core.html -------------------------------------------------------------------------------- /demos/webpack/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/core.js -------------------------------------------------------------------------------- /demos/webpack/coreworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/coreworker.js -------------------------------------------------------------------------------- /demos/webpack/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/full.html -------------------------------------------------------------------------------- /demos/webpack/full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/full.js -------------------------------------------------------------------------------- /demos/webpack/fullworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/fullworker.js -------------------------------------------------------------------------------- /demos/webpack/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/main.html -------------------------------------------------------------------------------- /demos/webpack/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/main.js -------------------------------------------------------------------------------- /demos/webpack/mainworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/mainworker.js -------------------------------------------------------------------------------- /demos/webpack/webpack.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/webpack.app.js -------------------------------------------------------------------------------- /demos/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/webpack/webpack.config.js -------------------------------------------------------------------------------- /demos/webpack/xlsx.core.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.core.min.js -------------------------------------------------------------------------------- /demos/webpack/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/xhr/.gitignore: -------------------------------------------------------------------------------- 1 | files/ 2 | -------------------------------------------------------------------------------- /demos/xhr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/Makefile -------------------------------------------------------------------------------- /demos/xhr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/README.md -------------------------------------------------------------------------------- /demos/xhr/axios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/axios.html -------------------------------------------------------------------------------- /demos/xhr/fetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/fetch.html -------------------------------------------------------------------------------- /demos/xhr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/package.json -------------------------------------------------------------------------------- /demos/xhr/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/server.js -------------------------------------------------------------------------------- /demos/xhr/superagent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/superagent.html -------------------------------------------------------------------------------- /demos/xhr/xhr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xhr/xhr.html -------------------------------------------------------------------------------- /demos/xhr/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /demos/xspreadsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xspreadsheet/README.md -------------------------------------------------------------------------------- /demos/xspreadsheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/demos/xspreadsheet/index.html -------------------------------------------------------------------------------- /demos/xspreadsheet/shim.js: -------------------------------------------------------------------------------- 1 | ../../shim.js -------------------------------------------------------------------------------- /demos/xspreadsheet/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/LICENSE -------------------------------------------------------------------------------- /dist/cpexcel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/cpexcel.js -------------------------------------------------------------------------------- /dist/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/jszip.js -------------------------------------------------------------------------------- /dist/shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/shim.min.js -------------------------------------------------------------------------------- /dist/xlsx.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.core.min.js -------------------------------------------------------------------------------- /dist/xlsx.core.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.core.min.map -------------------------------------------------------------------------------- /dist/xlsx.extendscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.extendscript.js -------------------------------------------------------------------------------- /dist/xlsx.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.full.min.js -------------------------------------------------------------------------------- /dist/xlsx.full.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.full.min.map -------------------------------------------------------------------------------- /dist/xlsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.js -------------------------------------------------------------------------------- /dist/xlsx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.min.js -------------------------------------------------------------------------------- /dist/xlsx.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.min.map -------------------------------------------------------------------------------- /dist/xlsx.mini.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.mini.min.js -------------------------------------------------------------------------------- /dist/xlsx.mini.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/dist/xlsx.mini.min.map -------------------------------------------------------------------------------- /docbits/00_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/00_intro.md -------------------------------------------------------------------------------- /docbits/01_toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/01_toc.md -------------------------------------------------------------------------------- /docbits/10_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/10_install.md -------------------------------------------------------------------------------- /docbits/11_demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/11_demos.md -------------------------------------------------------------------------------- /docbits/12_optional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/12_optional.md -------------------------------------------------------------------------------- /docbits/15_phil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/15_phil.md -------------------------------------------------------------------------------- /docbits/20_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/20_import.md -------------------------------------------------------------------------------- /docbits/21_readstream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/21_readstream.md -------------------------------------------------------------------------------- /docbits/25_manip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/25_manip.md -------------------------------------------------------------------------------- /docbits/30_export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/30_export.md -------------------------------------------------------------------------------- /docbits/31_writestream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/31_writestream.md -------------------------------------------------------------------------------- /docbits/40_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/40_interface.md -------------------------------------------------------------------------------- /docbits/50_csf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/50_csf.md -------------------------------------------------------------------------------- /docbits/51_cell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/51_cell.md -------------------------------------------------------------------------------- /docbits/52_datatype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/52_datatype.md -------------------------------------------------------------------------------- /docbits/53_wsobject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/53_wsobject.md -------------------------------------------------------------------------------- /docbits/54_shobject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/54_shobject.md -------------------------------------------------------------------------------- /docbits/55_wbobject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/55_wbobject.md -------------------------------------------------------------------------------- /docbits/56_wbprops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/56_wbprops.md -------------------------------------------------------------------------------- /docbits/57_wbbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/57_wbbook.md -------------------------------------------------------------------------------- /docbits/60_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/60_features.md -------------------------------------------------------------------------------- /docbits/61_formulae.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/61_formulae.md -------------------------------------------------------------------------------- /docbits/62_colrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/62_colrow.md -------------------------------------------------------------------------------- /docbits/63_numfmt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/63_numfmt.md -------------------------------------------------------------------------------- /docbits/64_cellprops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/64_cellprops.md -------------------------------------------------------------------------------- /docbits/66_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/66_comments.md -------------------------------------------------------------------------------- /docbits/73_sheetprops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/73_sheetprops.md -------------------------------------------------------------------------------- /docbits/77_macrovba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/77_macrovba.md -------------------------------------------------------------------------------- /docbits/80_parseopts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/80_parseopts.md -------------------------------------------------------------------------------- /docbits/81_writeopts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/81_writeopts.md -------------------------------------------------------------------------------- /docbits/82_util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/82_util.md -------------------------------------------------------------------------------- /docbits/85_filetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/85_filetype.md -------------------------------------------------------------------------------- /docbits/90_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/90_test.md -------------------------------------------------------------------------------- /docbits/95_contrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/95_contrib.md -------------------------------------------------------------------------------- /docbits/97_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/97_license.md -------------------------------------------------------------------------------- /docbits/98_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/docbits/98_reference.md -------------------------------------------------------------------------------- /formats.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/formats.dot -------------------------------------------------------------------------------- /formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/formats.png -------------------------------------------------------------------------------- /imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/imgs/1.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/index.html -------------------------------------------------------------------------------- /jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/jszip.js -------------------------------------------------------------------------------- /legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/legend.png -------------------------------------------------------------------------------- /make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/make.cmd -------------------------------------------------------------------------------- /mini.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/mini.lst -------------------------------------------------------------------------------- /misc/02_codepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/02_codepage.js -------------------------------------------------------------------------------- /misc/21_ziputils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/21_ziputils.js -------------------------------------------------------------------------------- /misc/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/docs/README.md -------------------------------------------------------------------------------- /misc/docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/docs/SUMMARY.md -------------------------------------------------------------------------------- /misc/docs/formats.png: -------------------------------------------------------------------------------- 1 | ../../formats.png -------------------------------------------------------------------------------- /misc/docs/legend.png: -------------------------------------------------------------------------------- 1 | ../../legend.png -------------------------------------------------------------------------------- /misc/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/docs/style.css -------------------------------------------------------------------------------- /misc/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/flow.js -------------------------------------------------------------------------------- /misc/flowdeps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/flowdeps.js -------------------------------------------------------------------------------- /misc/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/help.sh -------------------------------------------------------------------------------- /misc/legend.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/legend.dot -------------------------------------------------------------------------------- /misc/prof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/prof.js -------------------------------------------------------------------------------- /misc/spin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/spin.sh -------------------------------------------------------------------------------- /misc/ssf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/ssf.json -------------------------------------------------------------------------------- /misc/strip_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/strip_flow.js -------------------------------------------------------------------------------- /misc/strip_sourcemap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/strip_sourcemap.sh -------------------------------------------------------------------------------- /misc/suppress_export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/misc/suppress_export.js -------------------------------------------------------------------------------- /multiformat.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/multiformat.lst -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/package.json -------------------------------------------------------------------------------- /packages/s/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | -------------------------------------------------------------------------------- /packages/s/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/.npmignore -------------------------------------------------------------------------------- /packages/s/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/LICENSE -------------------------------------------------------------------------------- /packages/s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/Makefile -------------------------------------------------------------------------------- /packages/s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/README.md -------------------------------------------------------------------------------- /packages/s/dist/S.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/S.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/index.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/index.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/Range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/Range.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/Range.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/Range.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/Workbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/Workbook.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/Workbook.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/Workbook.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/XLSXWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/XLSXWrapper.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/XLSXWrapper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/XLSXWrapper.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/names/DefinedName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/names/DefinedName.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/names/DefinedName.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/names/DefinedName.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/names/DefinedNameCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/names/DefinedNameCollection.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/names/DefinedNameCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/names/DefinedNameCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/names/WorkbookDefinedNameCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/names/WorkbookDefinedNameCollection.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/names/WorkbookDefinedNameCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/names/WorkbookDefinedNameCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/worksheet/WorksheetCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/worksheet/WorksheetCollection.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/s/worksheet/WorksheetCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/s/worksheet/WorksheetCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/cjs/umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/umd.js -------------------------------------------------------------------------------- /packages/s/dist/cjs/umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/cjs/umd.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/index.js -------------------------------------------------------------------------------- /packages/s/dist/esm/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/index.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/s/Range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/Range.js -------------------------------------------------------------------------------- /packages/s/dist/esm/s/Range.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/Range.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/s/Workbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/Workbook.js -------------------------------------------------------------------------------- /packages/s/dist/esm/s/Workbook.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/Workbook.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/s/XLSXWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/XLSXWrapper.js -------------------------------------------------------------------------------- /packages/s/dist/esm/s/XLSXWrapper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/XLSXWrapper.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/s/names/DefinedName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/names/DefinedName.js -------------------------------------------------------------------------------- /packages/s/dist/esm/s/names/DefinedName.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/names/DefinedName.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/s/names/DefinedNameCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/names/DefinedNameCollection.js -------------------------------------------------------------------------------- /packages/s/dist/esm/s/names/DefinedNameCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/names/DefinedNameCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/s/names/WorkbookDefinedNameCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/names/WorkbookDefinedNameCollection.js -------------------------------------------------------------------------------- /packages/s/dist/esm/s/names/WorkbookDefinedNameCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/names/WorkbookDefinedNameCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/s/worksheet/WorksheetCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/worksheet/WorksheetCollection.js -------------------------------------------------------------------------------- /packages/s/dist/esm/s/worksheet/WorksheetCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/s/worksheet/WorksheetCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/esm/umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/umd.js -------------------------------------------------------------------------------- /packages/s/dist/esm/umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/esm/umd.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/index.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/index.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/Range.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/Range.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/Range.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/Range.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/Workbook.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/Workbook.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/Workbook.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/Workbook.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/XLSXWrapper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/XLSXWrapper.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/XLSXWrapper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/XLSXWrapper.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/names/DefinedName.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/names/DefinedName.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/names/DefinedName.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/names/DefinedName.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/names/DefinedNameCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/names/DefinedNameCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/names/DefinedNameCollection.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/names/DefinedNameCollection.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/names/WorkbookDefinedNameCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/names/WorkbookDefinedNameCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/names/WorkbookDefinedNameCollection.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/names/WorkbookDefinedNameCollection.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/worksheet/WorksheetCollection.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/worksheet/WorksheetCollection.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/s/worksheet/WorksheetCollection.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/s/worksheet/WorksheetCollection.mjs -------------------------------------------------------------------------------- /packages/s/dist/mjs/umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/umd.js.map -------------------------------------------------------------------------------- /packages/s/dist/mjs/umd.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/mjs/umd.mjs -------------------------------------------------------------------------------- /packages/s/dist/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/index.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/s/Range.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/s/Range.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/s/Workbook.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/s/Workbook.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/s/XLSXWrapper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/s/XLSXWrapper.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/s/names/DefinedName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/s/names/DefinedName.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/s/names/DefinedNameCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/s/names/DefinedNameCollection.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/s/names/WorkbookDefinedNameCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/s/names/WorkbookDefinedNameCollection.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/s/worksheet/WorksheetCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/s/worksheet/WorksheetCollection.d.ts -------------------------------------------------------------------------------- /packages/s/dist/typings/umd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/dist/typings/umd.d.ts -------------------------------------------------------------------------------- /packages/s/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/esm.mjs -------------------------------------------------------------------------------- /packages/s/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/index.js -------------------------------------------------------------------------------- /packages/s/misc/.gitignore: -------------------------------------------------------------------------------- 1 | S.js 2 | parcel/ 3 | -------------------------------------------------------------------------------- /packages/s/misc/import_test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/import_test.mjs -------------------------------------------------------------------------------- /packages/s/misc/make_mjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/make_mjs.sh -------------------------------------------------------------------------------- /packages/s/misc/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/module.html -------------------------------------------------------------------------------- /packages/s/misc/parcel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/parcel.html -------------------------------------------------------------------------------- /packages/s/misc/parcel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/parcel.js -------------------------------------------------------------------------------- /packages/s/misc/puppetmjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/puppetmjs.js -------------------------------------------------------------------------------- /packages/s/misc/puppetpcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/puppetpcl.js -------------------------------------------------------------------------------- /packages/s/misc/puppetsta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/puppetsta.js -------------------------------------------------------------------------------- /packages/s/misc/require_test.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/require_test.njs -------------------------------------------------------------------------------- /packages/s/misc/standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/standalone.html -------------------------------------------------------------------------------- /packages/s/misc/standalone.js: -------------------------------------------------------------------------------- 1 | var S = require("../"); 2 | module.exports = S; -------------------------------------------------------------------------------- /packages/s/misc/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/misc/webpack.config.js -------------------------------------------------------------------------------- /packages/s/misc/xlsx.mini.min.js: -------------------------------------------------------------------------------- 1 | ../../../dist/xlsx.mini.min.js -------------------------------------------------------------------------------- /packages/s/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/package.json -------------------------------------------------------------------------------- /packages/s/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/index.ts -------------------------------------------------------------------------------- /packages/s/src/s/Range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/Range.ts -------------------------------------------------------------------------------- /packages/s/src/s/Workbook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/Workbook.ts -------------------------------------------------------------------------------- /packages/s/src/s/XLSXWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/XLSXWrapper.ts -------------------------------------------------------------------------------- /packages/s/src/s/names/DefinedName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/names/DefinedName.ts -------------------------------------------------------------------------------- /packages/s/src/s/names/DefinedNameCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/names/DefinedNameCollection.ts -------------------------------------------------------------------------------- /packages/s/src/s/names/WorkbookDefinedNameCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/names/WorkbookDefinedNameCollection.ts -------------------------------------------------------------------------------- /packages/s/src/s/worksheet/Worksheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/worksheet/Worksheet.ts -------------------------------------------------------------------------------- /packages/s/src/s/worksheet/WorksheetCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/s/worksheet/WorksheetCollection.ts -------------------------------------------------------------------------------- /packages/s/src/umd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/umd.ts -------------------------------------------------------------------------------- /packages/s/src/xlsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/src/xlsx.d.ts -------------------------------------------------------------------------------- /packages/s/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/test.ts -------------------------------------------------------------------------------- /packages/s/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/tsconfig.base.json -------------------------------------------------------------------------------- /packages/s/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/tsconfig.json -------------------------------------------------------------------------------- /packages/s/tsconfig.vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/tsconfig.vscode.json -------------------------------------------------------------------------------- /packages/s/tsconfig/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/tsconfig/tsconfig.base.json -------------------------------------------------------------------------------- /packages/s/tsconfig/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/tsconfig/tsconfig.cjs.json -------------------------------------------------------------------------------- /packages/s/tsconfig/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/tsconfig/tsconfig.esm.json -------------------------------------------------------------------------------- /packages/s/tsconfig/tsconfig.types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/packages/s/tsconfig/tsconfig.types.json -------------------------------------------------------------------------------- /shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/shim.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/test.js -------------------------------------------------------------------------------- /tests.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests.lst -------------------------------------------------------------------------------- /tests/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/base64.js -------------------------------------------------------------------------------- /tests/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/core.js -------------------------------------------------------------------------------- /tests/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/fixtures.js -------------------------------------------------------------------------------- /tests/fixtures.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/fixtures.lst -------------------------------------------------------------------------------- /tests/fs_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/fs_.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/make_fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/make_fixtures.js -------------------------------------------------------------------------------- /tests/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/mocha.css -------------------------------------------------------------------------------- /tests/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/mocha.js -------------------------------------------------------------------------------- /tests/sauce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/sauce.html -------------------------------------------------------------------------------- /tests/shim.js: -------------------------------------------------------------------------------- 1 | ../shim.js -------------------------------------------------------------------------------- /tests/testA.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/testA.lst -------------------------------------------------------------------------------- /tests/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/write.html -------------------------------------------------------------------------------- /tests/write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/tests/write.js -------------------------------------------------------------------------------- /tests/xlsx.core.min.js: -------------------------------------------------------------------------------- 1 | ../dist/xlsx.core.min.js -------------------------------------------------------------------------------- /tests/xlsx.full.min.js: -------------------------------------------------------------------------------- 1 | ../dist/xlsx.full.min.js -------------------------------------------------------------------------------- /types/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/.npmignore -------------------------------------------------------------------------------- /types/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/Makefile -------------------------------------------------------------------------------- /types/bin_xlsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/bin_xlsx.ts -------------------------------------------------------------------------------- /types/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/doc.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/tsconfig.json -------------------------------------------------------------------------------- /types/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/tslint.json -------------------------------------------------------------------------------- /types/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/write.ts -------------------------------------------------------------------------------- /types/xlsx-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/types/xlsx-tests.ts -------------------------------------------------------------------------------- /xlsx.flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/xlsx.flow.js -------------------------------------------------------------------------------- /xlsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/xlsx.js -------------------------------------------------------------------------------- /xlsx.mini.flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/xlsx.mini.flow.js -------------------------------------------------------------------------------- /xlsx.mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/xlsx.mini.js -------------------------------------------------------------------------------- /xlsxworker.flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/xlsxworker.flow.js -------------------------------------------------------------------------------- /xlsxworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShanaMaid/sheetjs-style/HEAD/xlsxworker.js --------------------------------------------------------------------------------