@bnsights/bbsf-controls 1.2.21 → 1.2.23-beta.0

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 CHANGED
@@ -4,8 +4,6 @@ BBSF Controls package is part of BBSF 3 packages. It has all the form controls t
4
4
 
5
5
  For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsights.com/controls) or [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
6
6
 
7
- ---
8
-
9
7
  ## 🚀 NEW! Tree-Shakable Granular Modules (v2.0+)
10
8
 
11
9
  The package now supports **true tree-shaking** through granular modules for optimal bundle size!
@@ -393,7 +391,24 @@ If the issue persists, consider using a different HTML editor component that's c
393
391
  ---
394
392
 
395
393
  ## Change Log
394
+
395
+ ## 1.2.23 / 10-06-2026
396
+
397
+ =====================
398
+
399
+ - Fixed package stylesheet imports for Angular esbuild application builder compatibility.
400
+ - Replaced webpack-era `/node_modules/...` SCSS imports in `src/lib/assets/Style.scss` with relative package imports.
401
+ - Removed `.css` extensions from SCSS imports so Sass resolves and inlines vendor styles instead of leaving CSS `@import` statements for esbuild.
402
+ - Fixed imports for Angular Material prebuilt theme, ngx-toastr, intl-tel-input, ngx-markdown-editor highlight theme, and angular-datetime-picker styles.
403
+
404
+ ## 1.2.22 / 06-05-2026
405
+
406
+ =====================
407
+
408
+ - Fix spacing in html
409
+
396
410
  ## 1.2.21 / 19-04-2026
411
+
397
412
  =====================
398
413
 
399
414
  - Fix BBSFFileUpload on dropzone mode behavior
@@ -7403,16 +7403,17 @@ class FileUploadComponent {
7403
7403
  break;
7404
7404
  }
7405
7405
  }
7406
- this.validationMessage = this.validationMessage + `${this.UtilityService.getResourceValue('Extensions')} (${this.toolTipTypeArray}) `;
7406
+ this.validationMessage = this.validationMessage +
7407
+ `${this.UtilityService.getResourceValue('Extensions')} (${this.toolTipTypeArray.join(', ')}) `;
7407
7408
  }
7408
7409
  if (this.options.fileMaxSizeInMB > 0) {
7409
7410
  this.validationMessage = this.validationMessage + `<br /> ${this.UtilityService.getResourceValue('FileMaxSizeInMB') + this.options.fileMaxSizeInMB + ' ' + this.UtilityService.getResourceValue('MB')}`;
7410
7411
  }
7411
7412
  if (this.options.minNoOfFiles > 0) {
7412
- this.validationMessage = this.validationMessage + `<br /> ${this.UtilityService.getResourceValue('MinFileCountValidationKey') + this.options.minNoOfFiles}`;
7413
+ this.validationMessage = this.validationMessage + `<br /> ${this.UtilityService.getResourceValue('MinFileCountValidationKey') + ' ' + this.options.minNoOfFiles}`;
7413
7414
  }
7414
7415
  if (this.options.maxNoOfFiles > 0) {
7415
- this.validationMessage = this.validationMessage + `<br /> ${this.UtilityService.getResourceValue('MaxFileCountValidationKey') + this.options.maxNoOfFiles}`;
7416
+ this.validationMessage = this.validationMessage + `<br /> ${this.UtilityService.getResourceValue('MaxFileCountValidationKey') + ' ' + this.options.maxNoOfFiles}`;
7416
7417
  }
7417
7418
  this.group.addControl(this.options.name, new FormControl(''));
7418
7419
  this.fileUploadFormControl = this.group.controls[this.options.name];