ets-fe-ng-sdk 19.0.115 → 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,6 +10,27 @@ import * as i0 from "@angular/core";
10
10
  */
11
11
  export declare class ETSPromptUpdateService {
12
12
  cS: ETSConfirmDialogService;
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;
13
34
  /**
14
35
  * Indicates whether the confirmation prompt dialog is currently open
15
36
  */
@@ -94,7 +94,7 @@ export declare class BtnComponent implements OnInit {
94
94
  /** CSS class for the button */
95
95
  readonly _mclass: import("@angular/core").WritableSignal<string>;
96
96
  /** HTML button type (submit, button, reset) */
97
- readonly actionType: import("@angular/core").InputSignal<"button" | "reset" | "submit">;
97
+ readonly actionType: import("@angular/core").InputSignal<"reset" | "button" | "submit">;
98
98
  /** Enables animation effect on the button */
99
99
  readonly animate: import("@angular/core").InputSignal<boolean>;
100
100
  /** Excludes this button from logging when true */
@@ -38,7 +38,7 @@ export declare class ResizeGridPipe implements PipeTransform {
38
38
  */
39
39
  export declare class IndexCompLayoutComponent {
40
40
  /** Number of columns in the grid layout */
41
- readonly grid: InputSignal<"auto" | 2 | 1 | 3 | 4 | 5 | 6>;
41
+ readonly grid: InputSignal<2 | "auto" | 1 | 3 | 4 | 5 | 6>;
42
42
  /** Whether to show the action buttons */
43
43
  readonly showButtons: InputSignal<boolean>;
44
44
  /** Whether to hide the clone button */
@@ -14,7 +14,7 @@ export declare class GetColFormattedPipe implements PipeTransform {
14
14
  * @param col - The column configuration
15
15
  * @returns An observable containing the formatted value
16
16
  */
17
- transform(row: any, col: TableCol): Promise<string> | import("rxjs").Observable<any>;
17
+ transform(row: any, col: TableCol): import("rxjs").Observable<any> | Promise<string>;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<GetColFormattedPipe, never>;
19
19
  static ɵpipe: i0.ɵɵPipeDeclaration<GetColFormattedPipe, "getColFormatted", true>;
20
20
  }
@@ -29,7 +29,7 @@ export declare class GetColFormattedEPipe implements PipeTransform {
29
29
  * @param col - The column configuration
30
30
  * @returns An observable containing the formatted value
31
31
  */
32
- transform(row: any, col: TableCol): Promise<string> | import("rxjs").Observable<any>;
32
+ transform(row: any, col: TableCol): import("rxjs").Observable<any> | Promise<string>;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
34
34
  static ɵpipe: i0.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
35
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ets-fe-ng-sdk",
3
- "version": "19.0.115",
3
+ "version": "19.0.117",
4
4
  "repository": {
5
5
  "url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
6
6
  },