@esfaenza/extensions 11.2.26 → 11.2.27

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.
@@ -51,7 +51,7 @@ export declare class MessageService {
51
51
  * @param {string} text Testo da mostrare
52
52
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
53
53
  */
54
- simpleSuccess(text: string, secondaryNotificationType?: "toastr" | "swal" | null): void;
54
+ simpleSuccess(text: string, secondaryNotificationType?: "toastr" | "swal" | null, secondaryNotificationTimeout?: number): void;
55
55
  /**
56
56
  * Presentazione di un semplice messaggio di informazione
57
57
  *
@@ -61,7 +61,7 @@ export declare class MessageService {
61
61
  * @param {string} text Testo da mostrare
62
62
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
63
63
  */
64
- simpleInfo(text: string, secondaryNotificationType?: "toastr" | "swal" | null): void;
64
+ simpleInfo(text: string, secondaryNotificationType?: "toastr" | "swal" | null, secondaryNotificationTimeout?: number): void;
65
65
  /**
66
66
  * Presentazione di un semplice messaggio di errore
67
67
  *
@@ -71,7 +71,7 @@ export declare class MessageService {
71
71
  * @param {string} text Testo da mostrare
72
72
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
73
73
  */
74
- simpleError(text: string, secondaryNotificationType?: "toastr" | "swal" | null): void;
74
+ simpleError(text: string, secondaryNotificationType?: "toastr" | "swal" | null, secondaryNotificationTimeout?: number): void;
75
75
  /**
76
76
  * Presentazione di un semplice messaggio di avviso
77
77
  *
@@ -81,7 +81,7 @@ export declare class MessageService {
81
81
  * @param {string} text Testo da mostrare
82
82
  * @param {"toastr" | "swal" | null} secondaryNotificationType Qualora sia una notifica secondaria, ne indica il tipo
83
83
  */
84
- simpleWarning(text: string, secondaryNotificationType?: "toastr" | "swal" | null): void;
84
+ simpleWarning(text: string, secondaryNotificationType?: "toastr" | "swal" | null, secondaryNotificationTimeout?: number): void;
85
85
  /**
86
86
  * Ripulisce tutti i messaggi presenti in un dato momento sullo schermo
87
87
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/extensions",
3
- "version": "11.2.26",
3
+ "version": "11.2.27",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },