ets-fe-ng-sdk 19.0.21 → 19.0.22
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/lib/Services/utility.service.d.ts +1 -1
- package/lib/Shared/components/btn/btn.component.d.ts +3 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/info-dialog/info-dialog.component.d.ts +1 -1
- package/lib/Shared/components/table/table.pipe.d.ts +2 -2
- package/package.json +1 -1
|
@@ -65,7 +65,7 @@ export declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnv
|
|
|
65
65
|
readonly delimiter = "~~~//~~~";
|
|
66
66
|
formBuilder: import("@angular/forms").NonNullableFormBuilder;
|
|
67
67
|
constructor();
|
|
68
|
-
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (
|
|
68
|
+
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | ValidatorFn[] | AsyncValidatorFn | AsyncValidatorFn[] | FormControlOptions | T)[];
|
|
69
69
|
back: () => void;
|
|
70
70
|
readonly toast: {
|
|
71
71
|
add: (item: import("@serene-dev/toast-notifications").IAddToastNotification) => {
|
|
@@ -27,7 +27,7 @@ export declare class BtnComponent implements OnInit {
|
|
|
27
27
|
set _type(v: BtnType);
|
|
28
28
|
set _group(v: BtnGroup);
|
|
29
29
|
readonly _mclass: import("@angular/core").WritableSignal<string>;
|
|
30
|
-
readonly actionType: import("@angular/core").InputSignal<"
|
|
30
|
+
readonly actionType: import("@angular/core").InputSignal<"button" | "reset" | "submit">;
|
|
31
31
|
readonly animate: import("@angular/core").InputSignal<boolean>;
|
|
32
32
|
excludeLogging: boolean;
|
|
33
33
|
loggingValue: string;
|
|
@@ -38,9 +38,9 @@ export declare class BtnComponent implements OnInit {
|
|
|
38
38
|
*/
|
|
39
39
|
set customIcon(v: string);
|
|
40
40
|
readonly checkFormState$: BehaviorSubject<IFormState>;
|
|
41
|
-
readonly form: import("@angular/core").InputSignal<
|
|
41
|
+
readonly form: import("@angular/core").InputSignal<FormGroup<any> | FormArray<any> | AbstractControl<any, any> | FormControl<any>>;
|
|
42
42
|
protected readonly formState: import("@angular/core").Signal<IFormState>;
|
|
43
|
-
readonly forms: import("@angular/core").InputSignal<(
|
|
43
|
+
readonly forms: import("@angular/core").InputSignal<(FormGroup<any> | FormArray<any> | AbstractControl<any, any> | FormControl<any>)[]>;
|
|
44
44
|
protected readonly formsState: import("@angular/core").Signal<Omit<IFormState, "status">>;
|
|
45
45
|
/**The message to be displayed in the tooltip */
|
|
46
46
|
readonly help: import("@angular/core").InputSignal<string>;
|
|
@@ -18,7 +18,7 @@ export declare class ResizeGridPipe implements PipeTransform {
|
|
|
18
18
|
static ɵpipe: i0.ɵɵPipeDeclaration<ResizeGridPipe, "resizeGrid", true>;
|
|
19
19
|
}
|
|
20
20
|
export declare class IndexCompLayoutComponent {
|
|
21
|
-
readonly grid: InputSignal<
|
|
21
|
+
readonly grid: InputSignal<"auto" | 2 | 1 | 3 | 4 | 5 | 6>;
|
|
22
22
|
readonly showButtons: InputSignal<boolean>;
|
|
23
23
|
readonly hideClone: InputSignal<boolean>;
|
|
24
24
|
readonly hideShow: InputSignal<boolean>;
|
|
@@ -20,7 +20,7 @@ export declare class InfoDialogComponent implements OnInit {
|
|
|
20
20
|
yes(btn?: IInfoDialogBtn): void;
|
|
21
21
|
no(): void;
|
|
22
22
|
handleAction: (event: PointerEvent, item: IInfoDialogBtn) => void;
|
|
23
|
-
cls: (status?: 0 | 1 | 2 | 3) => "" | "
|
|
23
|
+
cls: (status?: 0 | 1 | 2 | 3) => "" | "success" | "info" | "danger" | "warning";
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
25
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -4,13 +4,13 @@ import { TableService } from './table-plain.service';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
import * as i1 from "@angular/common";
|
|
6
6
|
export declare class GetColFormattedPipe implements PipeTransform {
|
|
7
|
-
transform(row: any, col: TableCol): import("rxjs").Observable<any
|
|
7
|
+
transform(row: any, col: TableCol): Promise<string> | import("rxjs").Observable<any>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<GetColFormattedPipe, never>;
|
|
9
9
|
static ɵpipe: i0.ɵɵPipeDeclaration<GetColFormattedPipe, "getColFormatted", true>;
|
|
10
10
|
}
|
|
11
11
|
/**For the expanded value */
|
|
12
12
|
export declare class GetColFormattedEPipe implements PipeTransform {
|
|
13
|
-
transform(row: any, col: TableCol): import("rxjs").Observable<any
|
|
13
|
+
transform(row: any, col: TableCol): Promise<string> | import("rxjs").Observable<any>;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
|
|
15
15
|
static ɵpipe: i0.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
|
|
16
16
|
}
|