ets-fe-ng-sdk 20.3.18 → 20.3.19
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[] |
|
|
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: (
|
|
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) => "" | "
|
|
7995
|
+
cls: (status?: 0 | 1 | 2 | 3) => "info" | "danger" | "success" | "" | "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 |
|
|
8872
|
+
readonly grid: InputSignal<1 | 3 | 2 | 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 */
|
|
@@ -10504,7 +10504,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
10504
10504
|
readonly form: FormGroup<{
|
|
10505
10505
|
pageNumber: FormControl<number>;
|
|
10506
10506
|
sortBy: FormControl<keyof TItem>;
|
|
10507
|
-
sortDirection: FormControl<"" | "
|
|
10507
|
+
sortDirection: FormControl<"" | "ASC" | "DESC">;
|
|
10508
10508
|
pageSize: FormControl<number>;
|
|
10509
10509
|
}>;
|
|
10510
10510
|
/**
|
|
@@ -10513,7 +10513,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
10513
10513
|
readonly allQueryData: _angular_core.Signal<{
|
|
10514
10514
|
pageNumber: number;
|
|
10515
10515
|
sortBy: keyof TItem;
|
|
10516
|
-
sortDirection: "" | "
|
|
10516
|
+
sortDirection: "" | "ASC" | "DESC";
|
|
10517
10517
|
pageSize: number;
|
|
10518
10518
|
}>;
|
|
10519
10519
|
/**
|
|
@@ -10522,7 +10522,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
10522
10522
|
readonly formValue: _angular_core.Signal<{
|
|
10523
10523
|
pageNumber: number;
|
|
10524
10524
|
sortBy: keyof TItem;
|
|
10525
|
-
sortDirection: "" | "
|
|
10525
|
+
sortDirection: "" | "ASC" | "DESC";
|
|
10526
10526
|
pageSize: number;
|
|
10527
10527
|
}>;
|
|
10528
10528
|
/**
|