ets-fe-ng-sdk 20.3.16 → 20.3.17

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
@@ -1850,6 +1850,7 @@ interface IBaseFormSchema<T, Component, TFormGroup extends {
1850
1850
  valueField?: string;
1851
1851
  /** When true, enables verbose logging for this field */
1852
1852
  verbose?: boolean;
1853
+ accept?: string;
1853
1854
  }
1854
1855
  type IfFunc<T, TFormGroup extends {
1855
1856
  [K in keyof TFormGroup]: AbstractControl<any, any>;
@@ -3211,7 +3212,7 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
3211
3212
  * @returns Array containing value, validators, and async validators
3212
3213
  * @template T - Type of the form control value
3213
3214
  */
3214
- formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | AsyncValidatorFn | ValidatorFn[] | AsyncValidatorFn[] | FormControlOptions | T)[];
3215
+ formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (FormControlOptions | AsyncValidatorFn | AsyncValidatorFn[] | ValidatorFn | ValidatorFn[] | T)[];
3215
3216
  /**
3216
3217
  * Navigates back to the previous page using Angular's Location service
3217
3218
  */
@@ -7878,6 +7879,7 @@ declare class FormGeneratedValueComponent<TFormGroup extends {
7878
7879
  value?: any;
7879
7880
  valueField?: string;
7880
7881
  verbose?: boolean;
7882
+ accept?: string;
7881
7883
  }[]>;
7882
7884
  formatValue: (item: IFormSchema, value: string | boolean | number) => string | boolean | number;
7883
7885
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormGeneratedValueComponent<any>, never>;
@@ -7990,7 +7992,7 @@ declare class InfoDialogComponent implements OnInit {
7990
7992
  * @param status Status code (0=danger, 1=success, 2=info, 3=warning)
7991
7993
  * @returns CSS class name corresponding to the status
7992
7994
  */
7993
- cls: (status?: 0 | 1 | 2 | 3) => "" | "info" | "danger" | "success" | "warning";
7995
+ cls: (status?: 0 | 1 | 2 | 3) => "info" | "danger" | "success" | "" | "warning";
7994
7996
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
7995
7997
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
7996
7998
  }
@@ -8867,7 +8869,7 @@ declare class ResizeGridPipe implements PipeTransform {
8867
8869
  */
8868
8870
  declare class IndexCompLayoutComponent {
8869
8871
  /** Number of columns in the grid layout */
8870
- readonly grid: InputSignal<1 | 5 | 3 | 2 | 4 | 6 | "auto">;
8872
+ readonly grid: InputSignal<1 | 3 | 2 | 5 | 4 | "auto" | 6>;
8871
8873
  /** Whether to show the action buttons */
8872
8874
  readonly showButtons: InputSignal<boolean>;
8873
8875
  /** Whether to hide the clone button */
@@ -11021,7 +11023,7 @@ declare class GetColFormattedPipe implements PipeTransform {
11021
11023
  * @param col - The column configuration
11022
11024
  * @returns An observable containing the formatted value
11023
11025
  */
11024
- transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
11026
+ transform(row: any, col: TableCol): Promise<string> | rxjs.Observable<any>;
11025
11027
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedPipe, never>;
11026
11028
  static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedPipe, "getColFormatted", true>;
11027
11029
  }
@@ -11036,7 +11038,7 @@ declare class GetColFormattedEPipe implements PipeTransform {
11036
11038
  * @param col - The column configuration
11037
11039
  * @returns An observable containing the formatted value
11038
11040
  */
11039
- transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
11041
+ transform(row: any, col: TableCol): Promise<string> | rxjs.Observable<any>;
11040
11042
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
11041
11043
  static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
11042
11044
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ets-fe-ng-sdk",
3
- "version": "20.3.16",
3
+ "version": "20.3.17",
4
4
  "repository": {
5
5
  "url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
6
6
  },