@bnsights/bbsf-controls 1.0.194-beta.19-1 → 1.0.194-beta.19-3

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
@@ -6,6 +6,39 @@ For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsigh
6
6
 
7
7
  ---
8
8
 
9
+ ## ⚙️ Configuration for esbuild (Angular 19+)
10
+
11
+ If your consuming app uses Angular 19+ with esbuild and you encounter CSS import errors, you need to configure `stylePreprocessorOptions` in your `angular.json`:
12
+
13
+ ```json
14
+ {
15
+ "projects": {
16
+ "your-app-name": {
17
+ "architect": {
18
+ "build": {
19
+ "options": {
20
+ "stylePreprocessorOptions": {
21
+ "includePaths": ["node_modules"]
22
+ }
23
+ }
24
+ },
25
+ "serve": {
26
+ "options": {
27
+ "stylePreprocessorOptions": {
28
+ "includePaths": ["node_modules"]
29
+ }
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }
35
+ }
36
+ ```
37
+
38
+ This allows esbuild to resolve CSS/SCSS imports from `node_modules` packages.
39
+
40
+ ---
41
+
9
42
  ## 🚀 NEW! Tree-Shakable Granular Modules (v2.0+)
10
43
 
11
44
  The package now supports **true tree-shaking** through granular modules for optimal bundle size!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-controls",
3
- "version": "1.0.194-beta.19-1",
3
+ "version": "1.0.194-beta.19-3",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^19.2.14",
6
6
  "@angular/cdk": "^19.2.19",
@@ -21,8 +21,8 @@
21
21
  "@fullcalendar/interaction": "^6.1.19",
22
22
  "@fullcalendar/list": "^6.1.19",
23
23
  "@fullcalendar/timegrid": "^6.1.19",
24
- "@ng-bootstrap/ng-bootstrap": "^18.0.0",
25
24
  "@kolkov/angular-editor": "^3.0.0-beta.2",
25
+ "@ng-bootstrap/ng-bootstrap": "^18.0.0",
26
26
  "@ng-select/ng-select": "^14.9.0",
27
27
  "@ngrx/store": "^19.2.1",
28
28
  "@ngrx/store-devtools": "^19.2.1",
@@ -1,13 +1,13 @@
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.css';
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.css';
11
11
  //custom
12
12
  @import"sass/base.scss";
13
13
  @import"sass/textarea.scss";