ets-fe-ng-sdk 19.0.116 → 19.0.117

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.
@@ -10,7 +10,27 @@ import * as i0 from "@angular/core";
10
10
  */
11
11
  export declare class ETSPromptUpdateService {
12
12
  cS: ETSConfirmDialogService;
13
- readonly showPrompt = true;
13
+ /**
14
+ * Controls whether the update prompt dialog should be displayed.
15
+ * When set to false, the service will not show any update prompts.
16
+ *
17
+ * @example
18
+ * ```typescript
19
+ * // Disable update prompts
20
+ * promptUpdateService.showPrompt = false;
21
+ *
22
+ * // Enable update prompts (default)
23
+ * promptUpdateService.showPrompt = true;
24
+ *
25
+ * // Conditionally show prompts based on user preferences
26
+ * if (userSettings.allowUpdatePrompts) {
27
+ * promptUpdateService.showPrompt = true;
28
+ * } else {
29
+ * promptUpdateService.showPrompt = false;
30
+ * }
31
+ * ```
32
+ */
33
+ showPrompt: boolean;
14
34
  /**
15
35
  * Indicates whether the confirmation prompt dialog is currently open
16
36
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ets-fe-ng-sdk",
3
- "version": "19.0.116",
3
+ "version": "19.0.117",
4
4
  "repository": {
5
5
  "url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
6
6
  },