ngx-beacon-notify 1.2.1 → 1.2.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/esm2022/lib/beacon/beacon.component.mjs +7 -6
- package/esm2022/lib/beacon-notify.service.mjs +8 -2
- package/esm2022/lib/types/interfaces/index.mjs +1 -1
- package/fesm2022/ngx-beacon-notify.mjs +13 -6
- package/fesm2022/ngx-beacon-notify.mjs.map +1 -1
- package/lib/beacon-notify.service.d.ts +3 -1
- package/lib/types/interfaces/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export declare class BeaconNotifyService {
|
|
|
21
21
|
private beaconAllowDuplicate?;
|
|
22
22
|
private beaconFocus?;
|
|
23
23
|
private beaconFocusShine?;
|
|
24
|
+
private beaconFocusShineScale?;
|
|
24
25
|
private beaconOverlayColor?;
|
|
25
26
|
private beaconStyleClass?;
|
|
26
27
|
private beaconReplacementClass?;
|
|
@@ -32,6 +33,7 @@ export declare class BeaconNotifyService {
|
|
|
32
33
|
private beaconGlobalPreventClickClose?;
|
|
33
34
|
private beaconGlobalDuplicate?;
|
|
34
35
|
private beaconGlobalNoHoverEffect?;
|
|
36
|
+
private beaconGlobalFocusShineScale?;
|
|
35
37
|
private beaconGlobalPositioning?;
|
|
36
38
|
private beaconGlobalFocusOverlayColor?;
|
|
37
39
|
private beaconContainer;
|
|
@@ -83,7 +85,7 @@ export declare class BeaconNotifyService {
|
|
|
83
85
|
fixed(): BeaconNotifyService;
|
|
84
86
|
block(): BeaconNotifyService;
|
|
85
87
|
focus(overlayColor?: string): BeaconNotifyService;
|
|
86
|
-
shine(overlayColor?: string): BeaconNotifyService;
|
|
88
|
+
shine(scale?: string, overlayColor?: string): BeaconNotifyService;
|
|
87
89
|
button(text: string, canDismiss?: boolean | null, callback?: any, callbackArgs?: any[] | null, position?: 'left' | 'center' | 'right'): BeaconNotifyService;
|
|
88
90
|
duplicate(): BeaconNotifyService;
|
|
89
91
|
build(config: IBeaconInlineConfig): BeaconNotifyService;
|
|
@@ -44,6 +44,7 @@ export interface IBeaconConfig {
|
|
|
44
44
|
buttons?: IBeaconButtonType;
|
|
45
45
|
overlayColor?: string;
|
|
46
46
|
noHoverEffect?: true;
|
|
47
|
+
shineScale?: string;
|
|
47
48
|
}
|
|
48
49
|
export interface IBeaconInlineConfig {
|
|
49
50
|
static?: true | number;
|
|
@@ -60,6 +61,7 @@ export interface IBeaconInlineConfig {
|
|
|
60
61
|
animationClass?: string;
|
|
61
62
|
overlayColor?: string;
|
|
62
63
|
noHoverEffect?: true;
|
|
64
|
+
shineScale?: string;
|
|
63
65
|
}
|
|
64
66
|
export interface IBeaconGlobalConfig {
|
|
65
67
|
static?: true | number;
|
|
@@ -74,6 +76,7 @@ export interface IBeaconGlobalConfig {
|
|
|
74
76
|
animationClass?: IBeaconType;
|
|
75
77
|
position?: IBeaconPositionConfig;
|
|
76
78
|
noHoverEffect?: true;
|
|
79
|
+
shineScale?: string;
|
|
77
80
|
}
|
|
78
81
|
export interface IBeaconEvent {
|
|
79
82
|
on: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-beacon-notify",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
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",
|