@bnsights/bbsf-controls 1.2.21 → 1.2.22

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
@@ -393,6 +393,12 @@ If the issue persists, consider using a different HTML editor component that's c
393
393
  ---
394
394
 
395
395
  ## Change Log
396
+
397
+ ## 1.2.22 / 06-05-2026
398
+ =====================
399
+
400
+ - Fix spacing in html
401
+
396
402
  ## 1.2.21 / 19-04-2026
397
403
  =====================
398
404
 
@@ -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];