@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.
- package/bundles/esfaenza-extensions.umd.js +13 -9
- package/bundles/esfaenza-extensions.umd.js.map +1 -1
- package/bundles/esfaenza-extensions.umd.min.js +1 -1
- package/bundles/esfaenza-extensions.umd.min.js.map +1 -1
- package/esm2015/lib/services/extensions.dates.service.js +2 -2
- package/esm2015/lib/services/extensions.messages.service.js +9 -9
- package/fesm2015/esfaenza-extensions.js +9 -9
- package/fesm2015/esfaenza-extensions.js.map +1 -1
- package/lib/services/extensions.messages.service.d.ts +4 -4
- package/package.json +1 -1
|
@@ -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
|
*/
|