ets-fe-ng-sdk 20.3.17 → 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/fesm2022/ets-fe-ng-sdk.mjs +27 -12
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/index.d.ts +7 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -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[]) => (
|
|
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
|
*/
|
|
@@ -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> |
|
|
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> |
|
|
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>;
|
|
@@ -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;
|
|
@@ -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 | 3 | 2 | 5 | 4 | "auto"
|
|
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 */
|
|
@@ -11023,7 +11023,7 @@ declare class GetColFormattedPipe implements PipeTransform {
|
|
|
11023
11023
|
* @param col - The column configuration
|
|
11024
11024
|
* @returns An observable containing the formatted value
|
|
11025
11025
|
*/
|
|
11026
|
-
transform(row: any, col: TableCol):
|
|
11026
|
+
transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
|
|
11027
11027
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedPipe, never>;
|
|
11028
11028
|
static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedPipe, "getColFormatted", true>;
|
|
11029
11029
|
}
|
|
@@ -11038,7 +11038,7 @@ declare class GetColFormattedEPipe implements PipeTransform {
|
|
|
11038
11038
|
* @param col - The column configuration
|
|
11039
11039
|
* @returns An observable containing the formatted value
|
|
11040
11040
|
*/
|
|
11041
|
-
transform(row: any, col: TableCol):
|
|
11041
|
+
transform(row: any, col: TableCol): rxjs.Observable<any> | Promise<string>;
|
|
11042
11042
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
|
|
11043
11043
|
static ɵpipe: _angular_core.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
|
|
11044
11044
|
}
|