@bnsights/bbsf-controls 1.2.22 → 1.2.23

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!
@@ -394,12 +392,23 @@ If the issue persists, consider using a different HTML editor component that's c
394
392
 
395
393
  ## Change Log
396
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
+
397
404
  ## 1.2.22 / 06-05-2026
405
+
398
406
  =====================
399
407
 
400
- - Fix spacing in html
408
+ - Fix spacing in html
401
409
 
402
410
  ## 1.2.21 / 19-04-2026
411
+
403
412
  =====================
404
413
 
405
414
  - Fix BBSFFileUpload on dropzone mode behavior
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-controls",
3
- "version": "1.2.22",
3
+ "version": "1.2.23",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^19.2.14",
6
6
  "@angular/cdk": "^19.2.19",
@@ -1,15 +1,15 @@
1
1
  //angular material
2
- @import '/node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css';
2
+ @import '@angular/material/prebuilt-themes/deeppurple-amber.css';
3
3
  //fontawesome
4
4
  @import "fontawesome/fontawesome.scss";
5
5
  //toaster
6
- @import'/node_modules/ngx-toastr/toastr.css';
6
+ @import 'ngx-toastr/toastr';
7
7
  //phone
8
- @import'/node_modules/intl-tel-input/build/css/intlTelInput.css';
8
+ @import 'intl-tel-input/build/css/intlTelInput.css';
9
9
  //markdown
10
- @import '/node_modules/ngx-markdown-editor/assets/highlight.js/agate.min.css';
10
+ @import 'ngx-markdown-editor/assets/highlight.js/agate.min';
11
11
  //datepicker
12
- @import '/node_modules/@danielmoncada/angular-datetime-picker/assets/style/picker.min.css';
12
+ @import '@danielmoncada/angular-datetime-picker/assets/style/picker.min.css';
13
13
  //custom
14
14
  @import"sass/base.scss";
15
15
  @import"sass/textarea.scss";