ngx-beacon-notify 1.2.6 → 1.2.8

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.
@@ -27,6 +27,8 @@ export declare class BeaconNotifyService {
27
27
  private beaconReplacementClass?;
28
28
  private beaconAnimationClass?;
29
29
  private beaconNoHoverEffect?;
30
+ private beaconFontWeightTitle?;
31
+ private beaconFontWeightBody?;
30
32
  private beaconGlobalStatic?;
31
33
  private beaconGlobalFixed?;
32
34
  private beaconGlobalBlockOthers?;
@@ -36,6 +38,8 @@ export declare class BeaconNotifyService {
36
38
  private beaconGlobalFocusShineScale?;
37
39
  private beaconGlobalPositioning?;
38
40
  private beaconGlobalFocusOverlayColor?;
41
+ private beaconGlobalFontWeightTitle?;
42
+ private beaconGlobalFontWeightBody?;
39
43
  private beaconContainer;
40
44
  private beaconDefaultAnimationClassName;
41
45
  private beaconSuccessorBlockerAutoId?;
@@ -45,6 +45,8 @@ export interface IBeaconConfig {
45
45
  overlayColor?: string;
46
46
  noHoverEffect?: true;
47
47
  shineScale?: number;
48
+ fontWeightTitle?: string;
49
+ fontWeightBody?: string;
48
50
  }
49
51
  export interface IBeaconInlineConfig {
50
52
  static?: true | number;
@@ -62,6 +64,8 @@ export interface IBeaconInlineConfig {
62
64
  overlayColor?: string;
63
65
  noHoverEffect?: true;
64
66
  shineScale?: number;
67
+ fontWeightTitle?: string;
68
+ fontWeightBody?: string;
65
69
  }
66
70
  export interface IBeaconGlobalConfig {
67
71
  static?: true | number;
@@ -77,6 +81,8 @@ export interface IBeaconGlobalConfig {
77
81
  position?: IBeaconPositionConfig;
78
82
  noHoverEffect?: true;
79
83
  shineScale?: number;
84
+ fontWeightTitle?: string;
85
+ fontWeightBody?: string;
80
86
  }
81
87
  export interface IBeaconEvent {
82
88
  on: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-beacon-notify",
3
- "version": "1.2.6",
3
+ "version": "1.2.8",
4
4
  "description": "A versatile and beautifully designed toast/alert plugin for Angular, offering flexible functionalities for powerful and seamless notifications.",
5
5
  "main": "bundles/ngx-beacon-notify.umd.js",
6
6
  "module": "fesm2022/ngx-beacon-notify.mjs",