ets-fe-ng-sdk 20.3.27 → 20.3.28

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/index.d.ts CHANGED
@@ -5668,7 +5668,7 @@ declare class BtnComponent implements OnInit {
5668
5668
  /** CSS class for the button */
5669
5669
  readonly _mclass: _angular_core.WritableSignal<string>;
5670
5670
  /** HTML button type (submit, button, reset) */
5671
- readonly actionType: _angular_core.InputSignal<"button" | "submit" | "reset">;
5671
+ readonly actionType: _angular_core.InputSignal<"submit" | "button" | "reset">;
5672
5672
  /** Enables animation effect on the button */
5673
5673
  readonly animate: _angular_core.InputSignal<boolean>;
5674
5674
  /** Excludes this button from logging when true */
@@ -5685,13 +5685,13 @@ declare class BtnComponent implements OnInit {
5685
5685
  */
5686
5686
  set customIcon(v: string);
5687
5687
  /** Form to bind to the button for validation */
5688
- readonly form: _angular_core.InputSignal<AbstractControl<any, any, any> | FormGroup<any> | FormArray<any> | FormControl<any>>;
5688
+ readonly form: _angular_core.InputSignal<FormGroup<any> | AbstractControl<any, any, any> | FormArray<any> | FormControl<any>>;
5689
5689
  /** Subject for form changes */
5690
5690
  protected readonly formStateRes: _angular_core.ResourceRef<boolean>;
5691
5691
  /** Signal for form validity state */
5692
5692
  protected readonly formState: _angular_core.Signal<boolean>;
5693
5693
  /** Multiple forms to bind to the button for validation */
5694
- readonly forms: _angular_core.InputSignal<(AbstractControl<any, any, any> | FormGroup<any> | FormArray<any> | FormControl<any>)[]>;
5694
+ readonly forms: _angular_core.InputSignal<(FormGroup<any> | AbstractControl<any, any, any> | FormArray<any> | FormControl<any>)[]>;
5695
5695
  /** Signal for multiple forms validity state */
5696
5696
  protected readonly formsStateRes: _angular_core.ResourceRef<Omit<IFormState, "status">>;
5697
5697
  protected readonly formsState: _angular_core.Signal<boolean>;
@@ -7993,7 +7993,7 @@ declare class InfoDialogComponent implements OnInit {
7993
7993
  * @param status Status code (0=danger, 1=success, 2=info, 3=warning)
7994
7994
  * @returns CSS class name corresponding to the status
7995
7995
  */
7996
- cls: (status?: 0 | 1 | 2 | 3) => "" | "info" | "danger" | "success" | "warning";
7996
+ cls: (status?: 0 | 1 | 2 | 3) => "" | "danger" | "success" | "info" | "warning";
7997
7997
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
7998
7998
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
7999
7999
  }
@@ -8870,7 +8870,7 @@ declare class ResizeGridPipe implements PipeTransform {
8870
8870
  */
8871
8871
  declare class IndexCompLayoutComponent {
8872
8872
  /** Number of columns in the grid layout */
8873
- readonly grid: InputSignal<1 | 5 | 4 | 3 | 2 | "auto" | 6>;
8873
+ readonly grid: InputSignal<1 | 2 | 3 | 5 | 4 | 6 | "auto">;
8874
8874
  /** Whether to show the action buttons */
8875
8875
  readonly showButtons: InputSignal<boolean>;
8876
8876
  /** Whether to hide the clone button */
@@ -11024,7 +11024,7 @@ declare class GetColFormattedPipe implements PipeTransform {
11024
11024
  * @param col - The column configuration
11025
11025
  * @returns An observable containing the formatted value
11026
11026
  */
11027
- transform(row: any, col: TableCol): Promise<string> | rxjs.Observable<any>;
11027
+ transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
11028
11028
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedPipe, never>;
11029
11029
  static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedPipe, "getColFormatted", true>;
11030
11030
  }
@@ -11039,7 +11039,7 @@ declare class GetColFormattedEPipe implements PipeTransform {
11039
11039
  * @param col - The column configuration
11040
11040
  * @returns An observable containing the formatted value
11041
11041
  */
11042
- transform(row: any, col: TableCol): Promise<string> | rxjs.Observable<any>;
11042
+ transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
11043
11043
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
11044
11044
  static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
11045
11045
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ets-fe-ng-sdk",
3
- "version": "20.3.27",
3
+ "version": "20.3.28",
4
4
  "repository": {
5
5
  "url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
6
6
  },