@bnsights/bbsf-controls 1.0.86 → 1.0.88

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8340,6 +8340,10 @@
8340
8340
  var file = new Blob([fileDTO], { type: "application/pdf" });
8341
8341
  saveAs__namespace(file, fileName);
8342
8342
  };
8343
+ AppBaseComponent.prototype.downloadWord = function (fileDTO, fileName) {
8344
+ var file = new Blob([fileDTO], { type: "application/vnd.openxmlformats-officedocument.wordprocessingml.document" });
8345
+ saveAs__namespace(file, fileName);
8346
+ };
8343
8347
  AppBaseComponent.prototype.base64toBlob = function (base64Data, contentType) {
8344
8348
  contentType = contentType || '';
8345
8349
  var sliceSize = 1024;