ets-fe-ng-sdk 17.0.310 → 17.0.311
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/esm2022/lib/Shared/components/file-upload/file-upload.component.mjs +3 -3
- package/esm2022/lib/Shared/components/webcam-media/webcam-media.component.mjs +9 -3
- package/fesm2022/ets-fe-ng-sdk.mjs +9 -4
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/utility.service.d.ts +1 -1
- package/lib/Shared/components/btn/btn.component.d.ts +1 -1
- package/lib/Shared/components/info-dialog/info-dialog.component.d.ts +1 -1
- package/lib/Shared/components/table-https/table-https.component.d.ts +1 -1
- package/lib/Shared/components/webcam-media/webcam-media.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -57,7 +57,7 @@ export declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnv
|
|
|
57
57
|
debouncerService: DebouncerService;
|
|
58
58
|
numberPipe: DecimalPipe;
|
|
59
59
|
constructor();
|
|
60
|
-
formControl: <T>(value?: T, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (
|
|
60
|
+
formControl: <T>(value?: T, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (T | ValidatorFn | FormControlOptions | ValidatorFn[] | AsyncValidatorFn | AsyncValidatorFn[])[];
|
|
61
61
|
back: () => void;
|
|
62
62
|
onlyOneInput(inputs: FormControl[]): Subscription;
|
|
63
63
|
copyPayload(payload: any): Promise<void>;
|
|
@@ -25,7 +25,7 @@ export declare class BtnComponent implements OnInit {
|
|
|
25
25
|
set _type(v: BtnType);
|
|
26
26
|
set _group(v: BtnGroup);
|
|
27
27
|
_mclass: import("@angular/core").WritableSignal<string>;
|
|
28
|
-
actionType: import("@angular/core").InputSignal<"
|
|
28
|
+
actionType: import("@angular/core").InputSignal<"button" | "submit" | "reset">;
|
|
29
29
|
animate: import("@angular/core").InputSignal<boolean>;
|
|
30
30
|
excludeLogging: boolean;
|
|
31
31
|
loggingValue: string;
|
|
@@ -20,7 +20,7 @@ export declare class InfoDialogComponent implements OnInit {
|
|
|
20
20
|
yes(): void;
|
|
21
21
|
no(): void;
|
|
22
22
|
handleAction: (event: PointerEvent, item: IInfoDialogBtn) => void;
|
|
23
|
-
cls: (status?: 0 | 1 | 2) => "
|
|
23
|
+
cls: (status?: 0 | 1 | 2) => "" | "info" | "danger" | "success";
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
25
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -20,7 +20,7 @@ export declare class TableHttpsComponent<TItem = any> extends TableBaseComponent
|
|
|
20
20
|
form: FormGroup<{
|
|
21
21
|
pageNumber: FormControl<number>;
|
|
22
22
|
sortBy: FormControl<keyof TItem>;
|
|
23
|
-
sortDirection: FormControl<"" | "
|
|
23
|
+
sortDirection: FormControl<"" | "DESC" | "ASC">;
|
|
24
24
|
pageSize: FormControl<number>;
|
|
25
25
|
}>;
|
|
26
26
|
route: ActivatedRoute;
|
|
@@ -44,6 +44,7 @@ export declare class WebcamMediaComponent {
|
|
|
44
44
|
isRecording: import("@angular/core").Signal<boolean>;
|
|
45
45
|
recordedBlobs: Blob[];
|
|
46
46
|
recordedTime: import("@angular/core").WritableSignal<number>;
|
|
47
|
+
loading: import("@angular/core").WritableSignal<boolean>;
|
|
47
48
|
ngAfterViewInit(): void;
|
|
48
49
|
ngOnDestroy(): void;
|
|
49
50
|
/**
|