@resolveio/client-lib-core 21.1.0 → 21.1.1
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/package.json
CHANGED
|
@@ -419,6 +419,7 @@ declare class AccountManagerService {
|
|
|
419
419
|
user$: Subscription;
|
|
420
420
|
environment: any;
|
|
421
421
|
constructor(_router: Router, _socket: SocketManagerService, _token: TokenManagerService, _http: HttpClient, _alert: AlertService, _offline: OfflineManagerService);
|
|
422
|
+
private normalizeUser;
|
|
422
423
|
initLoginManager(environment: any): void;
|
|
423
424
|
private initLogin;
|
|
424
425
|
getAccessToken(refreshToken: any): void;
|
|
@@ -906,7 +907,7 @@ declare class PipeModule {
|
|
|
906
907
|
}
|
|
907
908
|
|
|
908
909
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
909
|
-
resolveFirstDayOfWeek: () => "
|
|
910
|
+
resolveFirstDayOfWeek: () => "M" | "S";
|
|
910
911
|
resolveTimezone: () => any;
|
|
911
912
|
};
|
|
912
913
|
declare class CoreServicesModule {
|
|
@@ -1414,14 +1415,19 @@ declare class DialogSelectDataLabelsContent implements OnInit {
|
|
|
1414
1415
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialogSelectDataLabelsContent, "resolveio-dialog.select-data-labels", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "data": { "alias": "data"; "required": false; }; "showArraySubData": { "alias": "showArraySubData"; "required": false; }; }, {}, never, never, false, never>;
|
|
1415
1416
|
}
|
|
1416
1417
|
|
|
1417
|
-
declare class DialogLoginContent implements OnInit {
|
|
1418
|
+
declare class DialogLoginContent implements OnInit, AfterViewInit, OnDestroy {
|
|
1418
1419
|
_activeModal: NgbActiveModal;
|
|
1419
1420
|
private _fb;
|
|
1420
1421
|
msAllowed: boolean;
|
|
1421
1422
|
showLoginText: boolean;
|
|
1423
|
+
usernameInput?: ElementRef<HTMLInputElement>;
|
|
1422
1424
|
form: FormGroup;
|
|
1425
|
+
private focusTimeout;
|
|
1423
1426
|
constructor(_activeModal: NgbActiveModal, _fb: FormBuilder);
|
|
1424
1427
|
ngOnInit(): void;
|
|
1428
|
+
ngAfterViewInit(): void;
|
|
1429
|
+
ngOnDestroy(): void;
|
|
1430
|
+
private queueUsernameFocus;
|
|
1425
1431
|
toggleForgotPassword(): void;
|
|
1426
1432
|
close(type: string): void;
|
|
1427
1433
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogLoginContent, never>;
|