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

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
@@ -37,6 +37,15 @@ If your consuming app uses Angular 19+ with esbuild and you encounter CSS import
37
37
 
38
38
  This allows esbuild to resolve CSS/SCSS imports from `node_modules` packages.
39
39
 
40
+ ### Optional: Markdown Editor Syntax Highlighting Theme
41
+
42
+ If you're using the `MarkdownEditorComponent` and want the Agate syntax highlighting theme, you can import it separately in your app's styles (the library includes basic highlighting styles by default):
43
+
44
+ ```scss
45
+ // In your app's main styles file
46
+ @import 'node_modules/ngx-markdown-editor/assets/highlight.js/agate.min.css';
47
+ ```
48
+
40
49
  ---
41
50
 
42
51
  ## 🚀 NEW! Tree-Shakable Granular Modules (v2.0+)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-controls",
3
- "version": "1.0.194-beta.19-3",
3
+ "version": "1.0.194-beta.19-5",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^19.2.14",
6
6
  "@angular/cdk": "^19.2.19",
@@ -3,11 +3,13 @@
3
3
  //fontawesome
4
4
  @import "fontawesome/fontawesome.scss";
5
5
  //toaster
6
- @import 'ngx-toastr/toastr.css';
6
+ @import 'ngx-toastr/toastr';
7
7
  //phone
8
8
  @import 'intl-tel-input/build/css/intlTelInput.css';
9
9
  //markdown
10
- @import 'ngx-markdown-editor/assets/highlight.js/agate.min.css';
10
+ // Note: agate.min.css cannot be imported here due to esbuild limitations.
11
+ // If you need syntax highlighting styles, import them separately in your app:
12
+ // @import 'node_modules/ngx-markdown-editor/assets/highlight.js/agate.min.css';
11
13
  //custom
12
14
  @import"sass/base.scss";
13
15
  @import"sass/textarea.scss";