ets-fe-ng-sdk 20.3.16 → 20.3.18

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>;
@@ -3115,7 +3116,7 @@ declare class NumberFormatService {
3115
3116
  readonly numberFormat: _angular_core.WritableSignal<"AM" | "EU">;
3116
3117
  readonly isNormal: _angular_core.Signal<boolean>;
3117
3118
  readonly locale: _angular_core.Signal<"en-US" | "fr-FR">;
3118
- readonly decimal: _angular_core.Signal<"." | ",">;
3119
+ readonly decimal: _angular_core.Signal<"," | ".">;
3119
3120
  constructor();
3120
3121
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NumberFormatService, never>;
3121
3122
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<NumberFormatService>;
@@ -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[]) => (ValidatorFn | AsyncValidatorFn | AsyncValidatorFn[] | T | FormControlOptions | ValidatorFn[])[];
3215
3216
  /**
3216
3217
  * Navigates back to the previous page using Angular's Location service
3217
3218
  */
@@ -5684,13 +5685,13 @@ declare class BtnComponent implements OnInit {
5684
5685
  */
5685
5686
  set customIcon(v: string);
5686
5687
  /** Form to bind to the button for validation */
5687
- 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>>;
5688
5689
  /** Subject for form changes */
5689
5690
  protected readonly formStateRes: _angular_core.ResourceRef<boolean>;
5690
5691
  /** Signal for form validity state */
5691
5692
  protected readonly formState: _angular_core.Signal<boolean>;
5692
5693
  /** Multiple forms to bind to the button for validation */
5693
- 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>)[]>;
5694
5695
  /** Signal for multiple forms validity state */
5695
5696
  protected readonly formsStateRes: _angular_core.ResourceRef<Omit<IFormState, "status">>;
5696
5697
  protected readonly formsState: _angular_core.Signal<boolean>;
@@ -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>;
@@ -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 | 2 | 3 | "auto" | 5 | 4 | 6>;
8871
8873
  /** Whether to show the action buttons */
8872
8874
  readonly showButtons: InputSignal<boolean>;
8873
8875
  /** Whether to hide the clone button */
@@ -10502,7 +10504,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10502
10504
  readonly form: FormGroup<{
10503
10505
  pageNumber: FormControl<number>;
10504
10506
  sortBy: FormControl<keyof TItem>;
10505
- sortDirection: FormControl<"" | "ASC" | "DESC">;
10507
+ sortDirection: FormControl<"" | "DESC" | "ASC">;
10506
10508
  pageSize: FormControl<number>;
10507
10509
  }>;
10508
10510
  /**
@@ -10511,7 +10513,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10511
10513
  readonly allQueryData: _angular_core.Signal<{
10512
10514
  pageNumber: number;
10513
10515
  sortBy: keyof TItem;
10514
- sortDirection: "" | "ASC" | "DESC";
10516
+ sortDirection: "" | "DESC" | "ASC";
10515
10517
  pageSize: number;
10516
10518
  }>;
10517
10519
  /**
@@ -10520,7 +10522,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10520
10522
  readonly formValue: _angular_core.Signal<{
10521
10523
  pageNumber: number;
10522
10524
  sortBy: keyof TItem;
10523
- sortDirection: "" | "ASC" | "DESC";
10525
+ sortDirection: "" | "DESC" | "ASC";
10524
10526
  pageSize: number;
10525
10527
  }>;
10526
10528
  /**
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.18",
4
4
  "repository": {
5
5
  "url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
6
6
  },