@bnsights/bbsf-controls 1.0.83 → 1.0.84
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.
- package/README.md +5 -0
- package/bnsights-bbsf-controls-1.0.84.tgz +0 -0
- package/bnsights-bbsf-controls.metadata.json +1 -1
- package/bundles/bnsights-bbsf-controls.umd.js +13 -1
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/Shared/components/app-base-component.js +5 -1
- package/esm2015/lib/controls/HtmlEditor/HtmlEditor.component.js +10 -2
- package/fesm2015/bnsights-bbsf-controls.js +13 -1
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/lib/Shared/components/app-base-component.d.ts +3 -1
- package/package.json +1 -1
- package/bnsights-bbsf-controls-1.0.83.tgz +0 -0
|
@@ -2972,7 +2972,15 @@
|
|
|
2972
2972
|
uploadWithCredentials: false,
|
|
2973
2973
|
sanitize: false,
|
|
2974
2974
|
toolbarPosition: 'top',
|
|
2975
|
-
toolbarHiddenButtons: [
|
|
2975
|
+
toolbarHiddenButtons: [
|
|
2976
|
+
[
|
|
2977
|
+
'link',
|
|
2978
|
+
'unlink',
|
|
2979
|
+
'insertImage',
|
|
2980
|
+
'insertVideo',
|
|
2981
|
+
'insertHorizontalRule',
|
|
2982
|
+
]
|
|
2983
|
+
]
|
|
2976
2984
|
};
|
|
2977
2985
|
this.controlValidationService.isCreatedBefor = false;
|
|
2978
2986
|
// this.miscList = this.options.ToolsList_Misc != null ? this.options.ToolsList_Misc : ['codeview', 'undo', 'redo'];
|
|
@@ -8224,6 +8232,10 @@
|
|
|
8224
8232
|
});
|
|
8225
8233
|
saveAs__namespace(file, fileName);
|
|
8226
8234
|
};
|
|
8235
|
+
AppBaseComponent.prototype.downloadPDF = function (fileDTO, fileName) {
|
|
8236
|
+
var file = new Blob([fileDTO], { type: "application/pdf" });
|
|
8237
|
+
saveAs__namespace(file, fileName);
|
|
8238
|
+
};
|
|
8227
8239
|
AppBaseComponent.prototype.base64toBlob = function (base64Data, contentType) {
|
|
8228
8240
|
contentType = contentType || '';
|
|
8229
8241
|
var sliceSize = 1024;
|