Releases: TeamworkGuy2/excel-builder-ts
Releases · TeamworkGuy2/excel-builder-ts
excel-builder-ts 0.4.2
Changed
- Update to TypeScript 3.1
- Update dev dependencies and @types
- Enable
tsconfig.jsonstrictand fix compile errors - Removed compiled bin tarball in favor of git tags
excel-builder-ts 0.4.1
Added
- Support for worksheet
<autoFilter>and workbook<definedName name="_FilterDatabase">which add filter/search dropdowns on column header cells
excel-builder-ts 0.4.0
Changed
- Update to TypeScript 2.8
- Update tsconfig.json with
strictNullChecks: true,noImplicitReturns: trueandforceConsistentCasingInFileNames: true - Added release tarball and npm script
build-packageto package.json referencing external process to generate tarball - Cleanup JSZip dependency:
ExcelBuilder.createFile()now requires a JSZip instance or object withfile()method instead of creating a JSZip instance from a constructor function and generating the zip file. i.e. useExcelBuilder.createFile(new JSZip(), ...).generateAsync(...)instead of previously usingExcelBuilder.createFile(JSZip, ...)JSZipis only required if usingZipWorker
excel-builder-ts 0.3.2
Changed
- Update to TypeScript 2.7
- Update dependencies: mocha, @types/chai, @types/mocha
- Enable tsconfig.json
noImplicitAnyand add/refine missing types
excel-builder-ts 0.3.1
Fixed
- Fix
importScripts()definition in ZipWorker to match the definition inWorksheetExportWorker
excel-builder-ts 0.3.0
Changed
- Re-organized the project into sub-folders:
drawings/,export/,util/,workbook/,worksheet/, andxml/ - Tweaked some variable names and comments/documentation
- Improved some TypeScript types
- Updated README with note about eventual desire to merge/deprecate project in favor of xlsx-spec-models and xlsx-spec-utils libraries
- Upgraded to TypeScript 2.4
excel-builder-ts 0.2.1
Changed
- Fixed some StyleSheet type issues
excel-builder-ts 0.2.0
Changed
- Added missing types and improved existing types (mostly in StyleSheet)
- Removed
new ActiveXObject("Microsoft.XMLDOM")fallback from Util.createXmlDoc() sincedocument.implementation.createDocument()is supported by all major browsers - Throw new Error(string) instances instead of strings
excel-builder-ts 0.1.5
Changed
- Simplified some documentation for Visual Studio
- Added some missing types
- Upgraded to TypeScript 2.3, added tsconfig.json, use npm @types/ definitions
excel-builder-ts 0.1.4
Changed
- TypeScript 2.0 compatibility tweaks
- Merged up to latest excel-builder.js commit from 2016-10-30 (stephenliberty/excel-builder.js@162004e)