ets-fe-ng-sdk 20.3.18 → 20.3.20

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
@@ -3116,7 +3116,7 @@ declare class NumberFormatService {
3116
3116
  readonly numberFormat: _angular_core.WritableSignal<"AM" | "EU">;
3117
3117
  readonly isNormal: _angular_core.Signal<boolean>;
3118
3118
  readonly locale: _angular_core.Signal<"en-US" | "fr-FR">;
3119
- readonly decimal: _angular_core.Signal<"," | ".">;
3119
+ readonly decimal: _angular_core.Signal<"." | ",">;
3120
3120
  constructor();
3121
3121
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NumberFormatService, never>;
3122
3122
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<NumberFormatService>;
@@ -3212,7 +3212,7 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
3212
3212
  * @returns Array containing value, validators, and async validators
3213
3213
  * @template T - Type of the form control value
3214
3214
  */
3215
- formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | AsyncValidatorFn | AsyncValidatorFn[] | T | FormControlOptions | ValidatorFn[])[];
3215
+ formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | AsyncValidatorFn | FormControlOptions | AsyncValidatorFn[] | ValidatorFn[] | T)[];
3216
3216
  /**
3217
3217
  * Navigates back to the previous page using Angular's Location service
3218
3218
  */
@@ -7371,7 +7371,7 @@ declare class FilterFormArrayGroupPipe implements PipeTransform {
7371
7371
  * @param exactMatch Whether to require exact matches
7372
7372
  * @returns Filter function for FormGroups
7373
7373
  */
7374
- filterFunc: (queryObject: {
7374
+ filterFunc: (_queryObject: {
7375
7375
  key: string;
7376
7376
  value: string | boolean | number;
7377
7377
  type: TypeOf;
@@ -7992,7 +7992,7 @@ declare class InfoDialogComponent implements OnInit {
7992
7992
  * @param status Status code (0=danger, 1=success, 2=info, 3=warning)
7993
7993
  * @returns CSS class name corresponding to the status
7994
7994
  */
7995
- cls: (status?: 0 | 1 | 2 | 3) => "" | "info" | "danger" | "success" | "warning";
7995
+ cls: (status?: 0 | 1 | 2 | 3) => "" | "danger" | "success" | "info" | "warning";
7996
7996
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
7997
7997
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
7998
7998
  }
@@ -8869,7 +8869,7 @@ declare class ResizeGridPipe implements PipeTransform {
8869
8869
  */
8870
8870
  declare class IndexCompLayoutComponent {
8871
8871
  /** Number of columns in the grid layout */
8872
- readonly grid: InputSignal<1 | 2 | 3 | "auto" | 5 | 4 | 6>;
8872
+ readonly grid: InputSignal<1 | 2 | 3 | 5 | 4 | 6 | "auto">;
8873
8873
  /** Whether to show the action buttons */
8874
8874
  readonly showButtons: InputSignal<boolean>;
8875
8875
  /** Whether to hide the clone button */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ets-fe-ng-sdk",
3
- "version": "20.3.18",
3
+ "version": "20.3.20",
4
4
  "repository": {
5
5
  "url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
6
6
  },