Skip to content

Releases: TeamworkGuy2/excel-builder-ts

excel-builder-ts 0.4.2

17 Oct 13:05

Choose a tag to compare

Changed

  • Update to TypeScript 3.1
  • Update dev dependencies and @types
  • Enable tsconfig.json strict and fix compile errors
  • Removed compiled bin tarball in favor of git tags

excel-builder-ts 0.4.1

17 Oct 13:05

Choose a tag to compare

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

17 Oct 13:04

Choose a tag to compare

Changed

  • Update to TypeScript 2.8
  • Update tsconfig.json with strictNullChecks: true, noImplicitReturns: true and forceConsistentCasingInFileNames: true
  • Added release tarball and npm script build-package to package.json referencing external process to generate tarball
  • Cleanup JSZip dependency:
    • ExcelBuilder.createFile() now requires a JSZip instance or object with file() method instead of creating a JSZip instance from a constructor function and generating the zip file. i.e. use ExcelBuilder.createFile(new JSZip(), ...).generateAsync(...) instead of previously using ExcelBuilder.createFile(JSZip, ...)
    • JSZip is only required if using ZipWorker

excel-builder-ts 0.3.2

17 Oct 13:04

Choose a tag to compare

Changed

  • Update to TypeScript 2.7
  • Update dependencies: mocha, @types/chai, @types/mocha
  • Enable tsconfig.json noImplicitAny and add/refine missing types

excel-builder-ts 0.3.1

17 Oct 13:04

Choose a tag to compare

Fixed

  • Fix importScripts() definition in ZipWorker to match the definition in WorksheetExportWorker

excel-builder-ts 0.3.0

17 Oct 13:03

Choose a tag to compare

Changed

  • Re-organized the project into sub-folders: drawings/, export/, util/, workbook/, worksheet/, and xml/
  • 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

17 Oct 13:03

Choose a tag to compare

Changed

  • Fixed some StyleSheet type issues

excel-builder-ts 0.2.0

17 Oct 13:03

Choose a tag to compare

Changed

  • Added missing types and improved existing types (mostly in StyleSheet)
  • Removed new ActiveXObject("Microsoft.XMLDOM") fallback from Util.createXmlDoc() since document.implementation.createDocument() is supported by all major browsers
  • Throw new Error(string) instances instead of strings

excel-builder-ts 0.1.5

17 Oct 13:03

Choose a tag to compare

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

17 Oct 13:02

Choose a tag to compare

Changed