@po-ui/ng-templates 19.23.0 → 19.25.0
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/po-ui-ng-templates.mjs +356 -420
- package/fesm2022/po-ui-ng-templates.mjs.map +1 -1
- package/lib/components/po-modal-password-recovery/po-modal-password-recovery-base.component.d.ts +2 -3
- package/lib/components/po-modal-password-recovery/po-modal-password-recovery.component.d.ts +2 -5
- package/lib/components/po-modal-password-recovery/po-modal-password-recovery.service.d.ts +1 -2
- package/lib/components/po-page-background/po-page-background.component.d.ts +1 -3
- package/lib/components/po-page-blocked-user/po-page-blocked-user-base.component.d.ts +0 -3
- package/lib/components/po-page-blocked-user/po-page-blocked-user-contacts/po-page-blocked-user-contacts.component.d.ts +1 -2
- package/lib/components/po-page-blocked-user/po-page-blocked-user-reason/po-page-blocked-user-reason.component.d.ts +2 -3
- package/lib/components/po-page-blocked-user/po-page-blocked-user.component.d.ts +1 -4
- package/lib/components/po-page-change-password/po-page-change-password-base.component.d.ts +1 -3
- package/lib/components/po-page-change-password/po-page-change-password.component.d.ts +2 -5
- package/lib/components/po-page-change-password/po-page-change-password.service.d.ts +1 -2
- package/lib/components/po-page-dynamic-detail/po-page-dynamic-detail-actions.service.d.ts +1 -2
- package/lib/components/po-page-dynamic-detail/po-page-dynamic-detail.component.d.ts +2 -7
- package/lib/components/po-page-dynamic-edit/po-page-dynamic-edit-actions.service.d.ts +1 -2
- package/lib/components/po-page-dynamic-edit/po-page-dynamic-edit.component.d.ts +2 -7
- package/lib/components/po-page-dynamic-search/po-advanced-filter/po-advanced-filter-base.component.d.ts +2 -3
- package/lib/components/po-page-dynamic-search/po-advanced-filter/po-advanced-filter.component.d.ts +2 -3
- package/lib/components/po-page-dynamic-search/po-page-dynamic-search-base.component.d.ts +2 -3
- package/lib/components/po-page-dynamic-search/po-page-dynamic-search.component.d.ts +3 -5
- package/lib/components/po-page-dynamic-table/po-page-dynamic-table-actions.service.d.ts +1 -2
- package/lib/components/po-page-dynamic-table/po-page-dynamic-table.component.d.ts +2 -7
- package/lib/components/po-page-job-scheduler/po-page-job-scheduler-base.component.d.ts +2 -3
- package/lib/components/po-page-job-scheduler/po-page-job-scheduler-execution/po-page-job-scheduler-execution.component.d.ts +0 -2
- package/lib/components/po-page-job-scheduler/po-page-job-scheduler-lookup.service.d.ts +0 -2
- package/lib/components/po-page-job-scheduler/po-page-job-scheduler-summary/po-page-job-scheduler-summary.component.d.ts +0 -2
- package/lib/components/po-page-job-scheduler/po-page-job-scheduler.component.d.ts +2 -6
- package/lib/components/po-page-job-scheduler/po-page-job-scheduler.service.d.ts +1 -2
- package/lib/components/po-page-login/po-page-login-base.component.d.ts +2 -3
- package/lib/components/po-page-login/po-page-login.component.d.ts +2 -7
- package/lib/services/po-page-customization/po-page-customization.service.d.ts +0 -2
- package/lib/services/po-page-dynamic/po-page-dynamic.service.d.ts +2 -3
- package/lib/utils/util.d.ts +25 -1
- package/package.json +4 -4
- package/po-ui-ng-templates-19.25.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/po-ui-ng-templates-19.23.0.tgz +0 -0
package/lib/components/po-modal-password-recovery/po-modal-password-recovery-base.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { PoLanguageService
|
|
2
|
+
import { PoLanguageService } from '@po-ui/ng-components';
|
|
3
3
|
import { PoModalPasswordRecoveryType } from './enums/po-modal-password-recovery-type.enum';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
@@ -51,7 +51,6 @@ import * as i0 from "@angular/core";
|
|
|
51
51
|
* ```
|
|
52
52
|
*/
|
|
53
53
|
export declare abstract class PoModalPasswordRecoveryBaseComponent {
|
|
54
|
-
protected poThemeService: PoThemeService;
|
|
55
54
|
/**
|
|
56
55
|
* @optional
|
|
57
56
|
*
|
|
@@ -275,7 +274,7 @@ export declare abstract class PoModalPasswordRecoveryBaseComponent {
|
|
|
275
274
|
*/
|
|
276
275
|
set type(value: PoModalPasswordRecoveryType);
|
|
277
276
|
get type(): PoModalPasswordRecoveryType;
|
|
278
|
-
constructor(languageService: PoLanguageService
|
|
277
|
+
constructor(languageService: PoLanguageService);
|
|
279
278
|
private concatenateSMSErrorMessage;
|
|
280
279
|
/**
|
|
281
280
|
* Acão para conclusão de processo e fechamento da modal. Indica-se sua utilização
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { AbstractControl, NgForm } from '@angular/forms';
|
|
3
|
-
import {
|
|
4
|
-
import { PoI18nPipe, PoLanguageService, PoModalAction, PoModalComponent, PoRadioGroupOption, PoThemeService } from '@po-ui/ng-components';
|
|
3
|
+
import { PoModalAction, PoModalComponent, PoRadioGroupOption } from '@po-ui/ng-components';
|
|
5
4
|
import { PoModalPasswordRecoveryModalContent } from './enums/po-modal-password-recovery-modal-content.enum';
|
|
6
5
|
import { PoModalPasswordRecovery } from './interfaces/po-modal-password-recovery.interface';
|
|
7
6
|
import { PoModalPasswordRecoveryBaseComponent } from './po-modal-password-recovery-base.component';
|
|
8
|
-
import { PoModalPasswordRecoveryService } from './po-modal-password-recovery.service';
|
|
9
7
|
import * as i0 from "@angular/core";
|
|
10
8
|
/**
|
|
11
9
|
* @docsExtends PoModalPasswordRecoveryBaseComponent
|
|
@@ -31,7 +29,6 @@ export declare class PoModalPasswordRecoveryComponent extends PoModalPasswordRec
|
|
|
31
29
|
private router;
|
|
32
30
|
private poI18nPipe;
|
|
33
31
|
private poModalPasswordRecoveryService;
|
|
34
|
-
protected poThemeService: PoThemeService;
|
|
35
32
|
emailForm: NgForm;
|
|
36
33
|
recoveryModalElement: PoModalComponent;
|
|
37
34
|
smsCodeForm: NgForm;
|
|
@@ -58,7 +55,7 @@ export declare class PoModalPasswordRecoveryComponent extends PoModalPasswordRec
|
|
|
58
55
|
private passwordRecoverySubscription;
|
|
59
56
|
private smsBodyResponse;
|
|
60
57
|
private smsCodeSubscription;
|
|
61
|
-
constructor(
|
|
58
|
+
constructor();
|
|
62
59
|
ngOnDestroy(): void;
|
|
63
60
|
completed(): void;
|
|
64
61
|
formModelChangesCheck(form: NgForm): void;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HttpParams, HttpResponse } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { PoModalPasswordRecovery } from './interfaces/po-modal-password-recovery.interface';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PoModalPasswordRecoveryService {
|
|
6
6
|
private http;
|
|
7
|
-
constructor(http: HttpClient);
|
|
8
7
|
post(urlRecovery: string, item: PoModalPasswordRecovery, params?: HttpParams | {
|
|
9
8
|
[param: string]: string | Array<string>;
|
|
10
9
|
}): Observable<HttpResponse<object>>;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { PoLanguage, PoLanguageService, PoSelectOption
|
|
2
|
+
import { PoLanguage, PoLanguageService, PoSelectOption } from '@po-ui/ng-components';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PoPageBackgroundComponent implements OnInit {
|
|
5
5
|
poLanguageService: PoLanguageService;
|
|
6
|
-
protected poThemeService: PoThemeService;
|
|
7
6
|
/** Insere uma imagem de destaque ao lado direito do container. */
|
|
8
7
|
background?: string;
|
|
9
8
|
/** Idioma inicial selecionado no combo */
|
|
@@ -60,7 +59,6 @@ export declare class PoPageBackgroundComponent implements OnInit {
|
|
|
60
59
|
/** Define se o seletor de idiomas deve ser exibido. */
|
|
61
60
|
set showSelectLanguage(showSelectLanguage: boolean);
|
|
62
61
|
get showSelectLanguage(): boolean;
|
|
63
|
-
constructor(poLanguageService: PoLanguageService, poThemeService: PoThemeService);
|
|
64
62
|
ngOnInit(): void;
|
|
65
63
|
onChangeLanguage(): void;
|
|
66
64
|
get selectLanguageOptions(): Array<PoSelectOption>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PoThemeService } from '@po-ui/ng-components';
|
|
2
1
|
import { PoPageBlockedUserReason } from './enums/po-page-blocked-user-reason.enum';
|
|
3
2
|
import { PoPageBlockedUserReasonParams } from './interfaces/po-page-blocked-user-reason-params.interface';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
@@ -63,7 +62,6 @@ import * as i0 from "@angular/core";
|
|
|
63
62
|
*
|
|
64
63
|
*/
|
|
65
64
|
export declare class PoPageBlockedUserBaseComponent {
|
|
66
|
-
protected poThemeService: PoThemeService;
|
|
67
65
|
/**
|
|
68
66
|
* @optional
|
|
69
67
|
*
|
|
@@ -160,7 +158,6 @@ export declare class PoPageBlockedUserBaseComponent {
|
|
|
160
158
|
*/
|
|
161
159
|
set urlBack(url: string);
|
|
162
160
|
get urlBack(): string;
|
|
163
|
-
constructor(poThemeService: PoThemeService);
|
|
164
161
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageBlockedUserBaseComponent, never>;
|
|
165
162
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageBlockedUserBaseComponent, never, never, { "contactEmail": { "alias": "p-contact-email"; "required": false; }; "contactPhone": { "alias": "p-contact-phone"; "required": false; }; "logo": { "alias": "p-logo"; "required": false; }; "secondaryLogo": { "alias": "p-secondary-logo"; "required": false; }; "componentsSize": { "alias": "p-components-size"; "required": false; }; "params": { "alias": "p-params"; "required": false; }; "reason": { "alias": "p-reason"; "required": false; }; "urlBack": { "alias": "p-url-back"; "required": false; }; }, {}, never, never, true, never>;
|
|
166
163
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class PoPageBlockedUserContactsComponent {
|
|
4
4
|
private changeDetector;
|
|
@@ -12,7 +12,6 @@ export declare class PoPageBlockedUserContactsComponent {
|
|
|
12
12
|
get email(): string;
|
|
13
13
|
set phone(value: string);
|
|
14
14
|
get phone(): string;
|
|
15
|
-
constructor(changeDetector: ChangeDetectorRef);
|
|
16
15
|
private checkContactItemWidth;
|
|
17
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageBlockedUserContactsComponent, never>;
|
|
18
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<PoPageBlockedUserContactsComponent, "po-page-blocked-user-contacts", never, { "email": { "alias": "p-email"; "required": false; }; "phone": { "alias": "p-phone"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { PoLanguageService } from '@po-ui/ng-components';
|
|
1
|
+
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
3
2
|
import { PoPageBlockedUserReason } from '../enums/po-page-blocked-user-reason.enum';
|
|
4
3
|
import { PoPageBlockedUserReasonParams } from '../interfaces/po-page-blocked-user-reason-params.interface';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
@@ -15,7 +14,7 @@ export declare class PoPageBlockedUserReasonComponent implements OnChanges, OnIn
|
|
|
15
14
|
thirdPhrase: string;
|
|
16
15
|
};
|
|
17
16
|
private language;
|
|
18
|
-
constructor(
|
|
17
|
+
constructor();
|
|
19
18
|
ngOnChanges(changes: SimpleChanges): void;
|
|
20
19
|
ngOnInit(): void;
|
|
21
20
|
getImageByReasonType(): string;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
-
import { PoLanguageService, PoThemeService } from '@po-ui/ng-components';
|
|
4
2
|
import { PoPageBlockedUserBaseComponent } from './po-page-blocked-user-base.component';
|
|
5
3
|
import * as i0 from "@angular/core";
|
|
6
4
|
export declare const poPageBlockedUserButtonLiterals: object;
|
|
@@ -32,9 +30,8 @@ export declare const poPageBlockedUserButtonLiterals: object;
|
|
|
32
30
|
export declare class PoPageBlockedUserComponent extends PoPageBlockedUserBaseComponent implements OnInit {
|
|
33
31
|
private activatedRoute;
|
|
34
32
|
private router;
|
|
35
|
-
protected poThemeService: PoThemeService;
|
|
36
33
|
literals: any;
|
|
37
|
-
constructor(
|
|
34
|
+
constructor();
|
|
38
35
|
ngOnInit(): void;
|
|
39
36
|
navigateTo(url: string): void;
|
|
40
37
|
private checkingForMetadataProperty;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { PoModalAction
|
|
2
|
+
import { PoModalAction } from '@po-ui/ng-components';
|
|
3
3
|
import { PoPageChangePasswordRecovery } from './interfaces/po-page-change-password-recovery.interface';
|
|
4
4
|
import { PoPageChangePasswordRequirement } from './interfaces/po-page-change-password-requirement.interface';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -32,7 +32,6 @@ import * as i0 from "@angular/core";
|
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export declare abstract class PoPageChangePasswordBaseComponent {
|
|
35
|
-
protected poThemeService: PoThemeService;
|
|
36
35
|
/**
|
|
37
36
|
* @optional
|
|
38
37
|
*
|
|
@@ -257,7 +256,6 @@ export declare abstract class PoPageChangePasswordBaseComponent {
|
|
|
257
256
|
* @default `true`
|
|
258
257
|
*/
|
|
259
258
|
noAutocompletePassword: boolean;
|
|
260
|
-
constructor(poThemeService: PoThemeService);
|
|
261
259
|
abstract navigateTo(url: string): void;
|
|
262
260
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageChangePasswordBaseComponent, never>;
|
|
263
261
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageChangePasswordBaseComponent, never, never, { "logo": { "alias": "p-logo"; "required": false; }; "secondaryLogo": { "alias": "p-secondary-logo"; "required": false; }; "token": { "alias": "p-token"; "required": false; }; "urlBack": { "alias": "p-url-back"; "required": false; }; "urlNewPassword": { "alias": "p-url-new-password"; "required": false; }; "componentsSize": { "alias": "p-components-size"; "required": false; }; "hideCurrentPassword": { "alias": "p-hide-current-password"; "required": false; }; "recovery": { "alias": "p-recovery"; "required": false; }; "requirements": { "alias": "p-requirements"; "required": false; }; "urlHome": { "alias": "p-url-home"; "required": false; }; "noAutocompletePassword": { "alias": "p-no-autocomplete-password"; "required": false; }; }, { "submit": "p-submit"; }, never, never, true, never>;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { AfterViewInit, OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { NgForm } from '@angular/forms';
|
|
3
|
-
import {
|
|
4
|
-
import { PoComponentInjectorService, PoLanguageService, PoModalAction, PoModalComponent, PoThemeService } from '@po-ui/ng-components';
|
|
3
|
+
import { PoModalAction, PoModalComponent } from '@po-ui/ng-components';
|
|
5
4
|
import { PoPageChangePasswordRequirement } from './interfaces/po-page-change-password-requirement.interface';
|
|
6
5
|
import { PoPageChangePasswordBaseComponent } from './po-page-change-password-base.component';
|
|
7
|
-
import { PoPageChangePasswordService } from './po-page-change-password.service';
|
|
8
6
|
import * as i0 from "@angular/core";
|
|
9
7
|
/**
|
|
10
8
|
* @docsExtends PoPageChangePasswordBaseComponent
|
|
@@ -42,7 +40,6 @@ export declare class PoPageChangePasswordComponent extends PoPageChangePasswordB
|
|
|
42
40
|
private router;
|
|
43
41
|
private service;
|
|
44
42
|
private poComponentInjector;
|
|
45
|
-
protected poThemeService: PoThemeService;
|
|
46
43
|
modal: PoModalComponent;
|
|
47
44
|
pageChangePassword: ViewContainerRef;
|
|
48
45
|
passwordForm: NgForm;
|
|
@@ -68,7 +65,7 @@ export declare class PoPageChangePasswordComponent extends PoPageChangePasswordB
|
|
|
68
65
|
modalAction: PoModalAction;
|
|
69
66
|
private newPasswordSubscription;
|
|
70
67
|
private componentRef;
|
|
71
|
-
constructor(
|
|
68
|
+
constructor();
|
|
72
69
|
ngAfterViewInit(): void;
|
|
73
70
|
ngOnDestroy(): void;
|
|
74
71
|
ngOnInit(): void;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import {
|
|
2
|
+
import { HttpResponse } from '@angular/common/http';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PoPageChangePasswordService {
|
|
5
5
|
private http;
|
|
6
|
-
constructor(http: HttpClient);
|
|
7
6
|
post(url: string, item: any): Observable<HttpResponse<object>>;
|
|
8
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageChangePasswordService, never>;
|
|
9
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<PoPageChangePasswordService>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { PoPageDynamicDetailActions } from './interfaces/po-page-dynamic-detail-actions.interface';
|
|
4
4
|
import { PoPageDynamicDetailBeforeBack } from './interfaces/po-page-dynamic-detail-before-back.interface';
|
|
@@ -8,7 +8,6 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class PoPageDynamicDetailActionsService {
|
|
9
9
|
private http;
|
|
10
10
|
readonly headers: HttpHeaders;
|
|
11
|
-
constructor(http: HttpClient);
|
|
12
11
|
beforeBack(action?: PoPageDynamicDetailActions['beforeBack']): Observable<PoPageDynamicDetailBeforeBack>;
|
|
13
12
|
beforeEdit(action: PoPageDynamicDetailActions['beforeEdit'], id: any, body: any): Observable<PoPageDynamicDetailBeforeEdit>;
|
|
14
13
|
beforeRemove(action: PoPageDynamicDetailActions['beforeRemove'], id: any, body: any): Observable<PoPageDynamicDetailBeforeRemove>;
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { PoBreadcrumb, PoDialogService, PoLanguageService, PoNotificationService, PoPageAction, PoThemeService } from '@po-ui/ng-components';
|
|
4
|
-
import { PoPageDynamicService } from '../../services/po-page-dynamic/po-page-dynamic.service';
|
|
5
|
-
import { PoPageCustomizationService } from './../../services/po-page-customization/po-page-customization.service';
|
|
2
|
+
import { PoBreadcrumb, PoPageAction } from '@po-ui/ng-components';
|
|
6
3
|
import { PoPageDynamicDetailActions } from './interfaces/po-page-dynamic-detail-actions.interface';
|
|
7
4
|
import { PoPageDynamicDetailField } from './interfaces/po-page-dynamic-detail-field.interface';
|
|
8
5
|
import { PoPageDynamicDetailOptions } from './interfaces/po-page-dynamic-detail-options.interface';
|
|
9
|
-
import { PoPageDynamicDetailActionsService } from './po-page-dynamic-detail-actions.service';
|
|
10
6
|
import * as i0 from "@angular/core";
|
|
11
7
|
export declare const poPageDynamicDetailLiteralsDefault: {
|
|
12
8
|
en: {
|
|
@@ -128,7 +124,6 @@ export declare class PoPageDynamicDetailComponent implements OnInit, OnDestroy {
|
|
|
128
124
|
private poPageDynamicService;
|
|
129
125
|
private poPageDynamicDetailActionsService;
|
|
130
126
|
private poPageCustomizationService;
|
|
131
|
-
private poThemeService;
|
|
132
127
|
/** Objeto com propriedades do breadcrumb. */
|
|
133
128
|
breadcrumb?: PoBreadcrumb;
|
|
134
129
|
/**
|
|
@@ -252,7 +247,7 @@ export declare class PoPageDynamicDetailComponent implements OnInit, OnDestroy {
|
|
|
252
247
|
/** Lista dos campos exibidos na página. */
|
|
253
248
|
set fields(value: Array<PoPageDynamicDetailField>);
|
|
254
249
|
get fields(): Array<PoPageDynamicDetailField>;
|
|
255
|
-
constructor(
|
|
250
|
+
constructor();
|
|
256
251
|
ngOnInit(): void;
|
|
257
252
|
ngOnDestroy(): void;
|
|
258
253
|
get duplicates(): any[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { PoPageDynamicEditActions } from './interfaces/po-page-dynamic-edit-actions.interface';
|
|
4
4
|
import { PoPageDynamicEditBeforeCancel } from './interfaces/po-page-dynamic-edit-before-cancel.interface';
|
|
@@ -8,7 +8,6 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class PoPageDynamicEditActionsService {
|
|
9
9
|
private http;
|
|
10
10
|
readonly headers: HttpHeaders;
|
|
11
|
-
constructor(http: HttpClient);
|
|
12
11
|
beforeCancel(action: PoPageDynamicEditActions['beforeCancel']): Observable<PoPageDynamicEditBeforeCancel>;
|
|
13
12
|
beforeSave(action: PoPageDynamicEditActions['beforeSave'], id: string, body: any): Observable<PoPageDynamicEditBeforeSave>;
|
|
14
13
|
beforeSaveNew(action: PoPageDynamicEditActions['beforeSaveNew'], id: string, body: any): Observable<PoPageDynamicEditBeforeSaveNew>;
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
2
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { PoBreadcrumb,
|
|
5
|
-
import { PoPageCustomizationService } from '../../services/po-page-customization/po-page-customization.service';
|
|
6
|
-
import { PoPageDynamicService } from '../../services/po-page-dynamic/po-page-dynamic.service';
|
|
3
|
+
import { PoBreadcrumb, PoDynamicFormComponent, PoGridComponent, PoGridRowActions, PoPageAction } from '@po-ui/ng-components';
|
|
7
4
|
import { PoPageDynamicEditActions } from './interfaces/po-page-dynamic-edit-actions.interface';
|
|
8
5
|
import { PoPageDynamicEditField } from './interfaces/po-page-dynamic-edit-field.interface';
|
|
9
6
|
import { PoPageDynamicEditLiterals } from './interfaces/po-page-dynamic-edit-literals.interface';
|
|
10
7
|
import { PoPageDynamicEditOptions } from './interfaces/po-page-dynamic-edit-options.interface';
|
|
11
|
-
import { PoPageDynamicEditActionsService } from './po-page-dynamic-edit-actions.service';
|
|
12
8
|
import * as i0 from "@angular/core";
|
|
13
9
|
export declare const poNotificationType: string[];
|
|
14
10
|
export declare const poNotificationTypeDefault = "warning";
|
|
@@ -121,7 +117,6 @@ export declare class PoPageDynamicEditComponent implements OnInit, OnDestroy {
|
|
|
121
117
|
private poPageDynamicService;
|
|
122
118
|
private poPageCustomizationService;
|
|
123
119
|
private poPageDynamicEditActionsService;
|
|
124
|
-
private poThemeService;
|
|
125
120
|
dynamicForm: PoDynamicFormComponent;
|
|
126
121
|
gridDetail: PoGridComponent;
|
|
127
122
|
/** Objeto com propriedades do breadcrumb. */
|
|
@@ -371,7 +366,7 @@ export declare class PoPageDynamicEditComponent implements OnInit, OnDestroy {
|
|
|
371
366
|
*/
|
|
372
367
|
set componentsSize(value: string);
|
|
373
368
|
get componentsSize(): string;
|
|
374
|
-
constructor(
|
|
369
|
+
constructor();
|
|
375
370
|
ngOnInit(): void;
|
|
376
371
|
ngOnDestroy(): void;
|
|
377
372
|
detailActionNew(): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { PoComboOption, PoLanguageService, PoModalAction, PoModalComponent
|
|
2
|
+
import { PoComboOption, PoLanguageService, PoModalAction, PoModalComponent } from '@po-ui/ng-components';
|
|
3
3
|
import { PoPageDynamicSearchFilters } from '../interfaces/po-page-dynamic-search-filters.interface';
|
|
4
4
|
import { PoAdvancedFilterLiterals } from './po-advanced-filter-literals.interface';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -18,7 +18,6 @@ export declare const poAdvancedFiltersLiteralsDefault: {
|
|
|
18
18
|
* Componente de uso interno.
|
|
19
19
|
*/
|
|
20
20
|
export declare class PoAdvancedFilterBaseComponent {
|
|
21
|
-
protected poThemeService: PoThemeService;
|
|
22
21
|
poModal: PoModalComponent;
|
|
23
22
|
/**
|
|
24
23
|
* Mantém na modal de busca avançada os valores preenchidos do último filtro realizado pelo usuário.
|
|
@@ -59,7 +58,7 @@ export declare class PoAdvancedFilterBaseComponent {
|
|
|
59
58
|
/** Objeto com as literais usadas no `po-advanced-filter`. */
|
|
60
59
|
set literals(value: PoAdvancedFilterLiterals);
|
|
61
60
|
get literals(): PoAdvancedFilterLiterals;
|
|
62
|
-
constructor(languageService: PoLanguageService
|
|
61
|
+
constructor(languageService: PoLanguageService);
|
|
63
62
|
private getValuesFromForm;
|
|
64
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoAdvancedFilterBaseComponent, never>;
|
|
65
64
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PoAdvancedFilterBaseComponent, never, never, { "keepFilters": { "alias": "p-keep-filters"; "required": false; }; "componentsSize": { "alias": "p-components-size"; "required": false; }; "filters": { "alias": "p-filters"; "required": false; }; "literals": { "alias": "p-literals"; "required": false; }; }, { "searchEvent": "p-search-event"; }, never, never, true, never>;
|
package/lib/components/po-page-dynamic-search/po-advanced-filter/po-advanced-filter.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { PoDynamicFormComponent
|
|
2
|
+
import { PoDynamicFormComponent } from '@po-ui/ng-components';
|
|
3
3
|
import { PoAdvancedFilterBaseComponent } from './po-advanced-filter-base.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
@@ -15,10 +15,9 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* </example-private>
|
|
16
16
|
*/
|
|
17
17
|
export declare class PoAdvancedFilterComponent extends PoAdvancedFilterBaseComponent implements OnDestroy, OnInit {
|
|
18
|
-
protected poThemeService: PoThemeService;
|
|
19
18
|
poDynamicForm: PoDynamicFormComponent;
|
|
20
19
|
private subscription;
|
|
21
|
-
constructor(
|
|
20
|
+
constructor();
|
|
22
21
|
ngOnInit(): void;
|
|
23
22
|
ngOnDestroy(): void;
|
|
24
23
|
open(): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { PoBreadcrumb, PoDynamicFormField, PoLanguageService, PoPageAction
|
|
2
|
+
import { PoBreadcrumb, PoDynamicFormField, PoLanguageService, PoPageAction } from '@po-ui/ng-components';
|
|
3
3
|
import { PoPageDynamicSearchFilters } from './interfaces/po-page-dynamic-search-filters.interface';
|
|
4
4
|
import { PoPageDynamicSearchLiterals } from './interfaces/po-page-dynamic-search-literals.interface';
|
|
5
5
|
import { PoPageDynamicSearchOptions } from './interfaces/po-page-dynamic-search-options.interface';
|
|
@@ -18,7 +18,6 @@ export declare const poPageDynamicSearchLiteralsDefault: {
|
|
|
18
18
|
* e exiba as informações.
|
|
19
19
|
*/
|
|
20
20
|
export declare abstract class PoPageDynamicSearchBaseComponent {
|
|
21
|
-
protected poThemeService: PoThemeService;
|
|
22
21
|
/** Nesta propriedade deve ser definido um array de objetos que implementam a interface `PoPageAction`. */
|
|
23
22
|
actions?: Array<PoPageAction>;
|
|
24
23
|
/** Objeto com propriedades do breadcrumb. */
|
|
@@ -251,7 +250,7 @@ export declare abstract class PoPageDynamicSearchBaseComponent {
|
|
|
251
250
|
*/
|
|
252
251
|
set hideCloseDisclaimers(value: Array<string>);
|
|
253
252
|
get hideCloseDisclaimers(): Array<string>;
|
|
254
|
-
constructor(languageService: PoLanguageService
|
|
253
|
+
constructor(languageService: PoLanguageService);
|
|
255
254
|
protected setAdvancedFilterLiterals(literals: PoPageDynamicSearchLiterals): void;
|
|
256
255
|
stringify(columns: Array<PoPageDynamicSearchFilters>): string;
|
|
257
256
|
abstract onChangeFilters(filters: Array<PoPageDynamicSearchFilters>): any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
2
|
-
import { PoDisclaimerGroup,
|
|
3
|
-
import { PoPageCustomizationService } from '../../services/po-page-customization/po-page-customization.service';
|
|
1
|
+
import { AfterViewInit, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { PoDisclaimerGroup, PoPageFilter, PoPageListComponent } from '@po-ui/ng-components';
|
|
4
3
|
import { PoPageDynamicSearchFilters } from './interfaces/po-page-dynamic-search-filters.interface';
|
|
5
4
|
import { PoAdvancedFilterComponent } from './po-advanced-filter/po-advanced-filter.component';
|
|
6
5
|
import { PoPageDynamicSearchBaseComponent } from './po-page-dynamic-search-base.component';
|
|
@@ -25,13 +24,12 @@ export declare class PoPageDynamicSearchComponent extends PoPageDynamicSearchBas
|
|
|
25
24
|
private languageService;
|
|
26
25
|
private poPageCustomizationService;
|
|
27
26
|
private changeDetector;
|
|
28
|
-
protected poThemeService: PoThemeService;
|
|
29
27
|
poAdvancedFilter: PoAdvancedFilterComponent;
|
|
30
28
|
poPageList: PoPageListComponent;
|
|
31
29
|
private loadSubscription;
|
|
32
30
|
private readonly _disclaimerGroup;
|
|
33
31
|
private readonly _filterSettings;
|
|
34
|
-
constructor(
|
|
32
|
+
constructor();
|
|
35
33
|
get disclaimerGroup(): PoDisclaimerGroup & {
|
|
36
34
|
title: string;
|
|
37
35
|
hideRemoveAll: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { PoPageDynamicTableActions } from './interfaces/po-page-dynamic-table-actions.interface';
|
|
4
4
|
import { PoPageDynamicTableBeforeDuplicate } from './interfaces/po-page-dynamic-table-before-duplicate.interface';
|
|
@@ -12,7 +12,6 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
export declare class PoPageDynamicTableActionsService {
|
|
13
13
|
private http;
|
|
14
14
|
readonly headers: HttpHeaders;
|
|
15
|
-
constructor(http: HttpClient);
|
|
16
15
|
beforeDuplicate(action: PoPageDynamicTableActions['beforeDuplicate'], id: any, body: any): Observable<PoPageDynamicTableBeforeDuplicate>;
|
|
17
16
|
beforeEdit(action: PoPageDynamicTableActions['beforeEdit'], id: any, body: any): Observable<PoPageDynamicTableBeforeEdit>;
|
|
18
17
|
beforeNew(action?: PoPageDynamicTableActions['beforeNew']): Observable<PoPageDynamicTableBeforeNew>;
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { PoDialogService, PoLanguageService, PoNotificationService, PoPageAction, PoTableAction, PoTableColumnSort, PoThemeService } from '@po-ui/ng-components';
|
|
4
|
-
import { PoPageDynamicService } from '../../services/po-page-dynamic/po-page-dynamic.service';
|
|
2
|
+
import { PoPageAction, PoTableAction, PoTableColumnSort } from '@po-ui/ng-components';
|
|
5
3
|
import { PoPageDynamicSearchLiterals } from '../po-page-dynamic-search/interfaces/po-page-dynamic-search-literals.interface';
|
|
6
|
-
import { PoPageCustomizationService } from './../../services/po-page-customization/po-page-customization.service';
|
|
7
4
|
import { PoPageDynamicTableActions } from './interfaces/po-page-dynamic-table-actions.interface';
|
|
8
5
|
import { PoPageDynamicTableCustomAction } from './interfaces/po-page-dynamic-table-custom-action.interface';
|
|
9
6
|
import { PoPageDynamicTableCustomTableAction } from './interfaces/po-page-dynamic-table-custom-table-action.interface';
|
|
10
7
|
import { PoPageDynamicTableOptions } from './interfaces/po-page-dynamic-table-options.interface';
|
|
11
8
|
import { PoPageDynamicListBaseComponent } from './po-page-dynamic-list-base.component';
|
|
12
|
-
import { PoPageDynamicTableActionsService } from './po-page-dynamic-table-actions.service';
|
|
13
9
|
import * as i0 from "@angular/core";
|
|
14
10
|
/**
|
|
15
11
|
* @docsExtends PoPageDynamicListBaseComponent
|
|
@@ -109,7 +105,6 @@ import * as i0 from "@angular/core";
|
|
|
109
105
|
* </example>
|
|
110
106
|
*/
|
|
111
107
|
export declare class PoPageDynamicTableComponent extends PoPageDynamicListBaseComponent implements OnInit, OnDestroy {
|
|
112
|
-
protected poThemeService: PoThemeService;
|
|
113
108
|
private router;
|
|
114
109
|
private activatedRoute;
|
|
115
110
|
private poDialogService;
|
|
@@ -492,7 +487,7 @@ export declare class PoPageDynamicTableComponent extends PoPageDynamicListBaseCo
|
|
|
492
487
|
* ```
|
|
493
488
|
*/
|
|
494
489
|
visibleFixedFilters: boolean;
|
|
495
|
-
constructor(
|
|
490
|
+
constructor();
|
|
496
491
|
ngOnInit(): void;
|
|
497
492
|
ngOnDestroy(): void;
|
|
498
493
|
onAdvancedSearch(filter: any): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
|
-
import { PoBreadcrumb, PoDynamicFormField, PoStepperOrientation
|
|
3
|
+
import { PoBreadcrumb, PoDynamicFormField, PoStepperOrientation } from '@po-ui/ng-components';
|
|
4
4
|
import { PoJobSchedulerInternal } from './interfaces/po-job-scheduler-internal.interface';
|
|
5
5
|
import { PoPageJobSchedulerService } from './po-page-job-scheduler.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -17,7 +17,6 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
*/
|
|
18
18
|
export declare class PoPageJobSchedulerBaseComponent implements OnDestroy {
|
|
19
19
|
protected poPageJobSchedulerService: PoPageJobSchedulerService;
|
|
20
|
-
protected poThemeService: PoThemeService;
|
|
21
20
|
private _componentsSize?;
|
|
22
21
|
/** Objeto com as propriedades do breadcrumb. */
|
|
23
22
|
breadcrumb?: PoBreadcrumb;
|
|
@@ -248,7 +247,7 @@ export declare class PoPageJobSchedulerBaseComponent implements OnDestroy {
|
|
|
248
247
|
model: PoJobSchedulerInternal;
|
|
249
248
|
private _subscription;
|
|
250
249
|
private _orientation;
|
|
251
|
-
constructor(poPageJobSchedulerService: PoPageJobSchedulerService
|
|
250
|
+
constructor(poPageJobSchedulerService: PoPageJobSchedulerService);
|
|
252
251
|
ngOnDestroy(): void;
|
|
253
252
|
protected loadData(id: string | number): void;
|
|
254
253
|
protected markAsDirtyInvalidControls(controls: {
|
|
@@ -2,7 +2,6 @@ import { AfterViewInit, EventEmitter, OnInit, TemplateRef } from '@angular/core'
|
|
|
2
2
|
import { NgForm } from '@angular/forms';
|
|
3
3
|
import { PoCheckboxGroupOption, PoRadioGroupOption } from '@po-ui/ng-components';
|
|
4
4
|
import { PoPageJobSchedulerLookupService } from '../po-page-job-scheduler-lookup.service';
|
|
5
|
-
import { PoPageJobSchedulerService } from '../po-page-job-scheduler.service';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class PoPageJobSchedulerExecutionComponent implements OnInit, AfterViewInit {
|
|
8
7
|
private poPageJobSchedulerService;
|
|
@@ -35,7 +34,6 @@ export declare class PoPageJobSchedulerExecutionComponent implements OnInit, Aft
|
|
|
35
34
|
private _value;
|
|
36
35
|
set value(value: any);
|
|
37
36
|
get value(): any;
|
|
38
|
-
constructor(poPageJobSchedulerService: PoPageJobSchedulerService, poPageJobSchedulerLookup: PoPageJobSchedulerLookupService);
|
|
39
37
|
get startDateFirstExecution(): Date;
|
|
40
38
|
get hourLabel(): any;
|
|
41
39
|
get dayLabel(): any;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { PoLookupFilter } from '@po-ui/ng-components';
|
|
3
|
-
import { PoPageJobSchedulerService } from './po-page-job-scheduler.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class PoPageJobSchedulerLookupService implements PoLookupFilter {
|
|
6
5
|
private poPageJobSchedulerService;
|
|
7
|
-
constructor(poPageJobSchedulerService: PoPageJobSchedulerService);
|
|
8
6
|
getFilteredItems({ filter, page, pageSize }: {
|
|
9
7
|
filter: any;
|
|
10
8
|
page: any;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { DatePipe } from '@angular/common';
|
|
2
1
|
import { OnInit } from '@angular/core';
|
|
3
2
|
import { PoDynamicViewField, PoInfoOrientation } from '@po-ui/ng-components';
|
|
4
3
|
import { PoJobSchedulerInternal } from '../interfaces/po-job-scheduler-internal.interface';
|
|
@@ -19,7 +18,6 @@ export declare class PoPageJobSchedulerSummaryComponent implements OnInit {
|
|
|
19
18
|
rangeLimitHour: string;
|
|
20
19
|
rangeLimitDay: string;
|
|
21
20
|
recurrentValue: string;
|
|
22
|
-
constructor(datePipe: DatePipe);
|
|
23
21
|
ngOnInit(): void;
|
|
24
22
|
private getFrequencyValue;
|
|
25
23
|
private getExecutionValue;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { AfterContentInit, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { NgForm } from '@angular/forms';
|
|
3
|
-
import { ActivatedRoute } from '@angular/router';
|
|
4
3
|
import { Observable } from 'rxjs';
|
|
5
|
-
import {
|
|
4
|
+
import { PoPageAction, PoStepperItem } from '@po-ui/ng-components';
|
|
6
5
|
import { PoJobSchedulerInternal } from './interfaces/po-job-scheduler-internal.interface';
|
|
7
6
|
import { PoPageJobSchedulerBaseComponent } from './po-page-job-scheduler-base.component';
|
|
8
7
|
import { PoPageJobSchedulerLookupService } from './po-page-job-scheduler-lookup.service';
|
|
9
8
|
import { PoJobSchedulerParametersTemplateDirective } from './po-page-job-scheduler-parameters';
|
|
10
9
|
import { PoJobSchedulerSummaryTemplateDirective } from './po-page-job-scheduler-summary';
|
|
11
|
-
import { PoPageJobSchedulerService } from './po-page-job-scheduler.service';
|
|
12
10
|
import * as i0 from "@angular/core";
|
|
13
11
|
/**
|
|
14
12
|
* @docsExtends PoPageJobSchedulerBaseComponent
|
|
@@ -31,8 +29,6 @@ export declare class PoPageJobSchedulerComponent extends PoPageJobSchedulerBaseC
|
|
|
31
29
|
private activatedRoute;
|
|
32
30
|
private poDialogService;
|
|
33
31
|
private poNotification;
|
|
34
|
-
protected poThemeService: PoThemeService;
|
|
35
|
-
protected poPageJobSchedulerService: PoPageJobSchedulerService;
|
|
36
32
|
schedulerExecution: {
|
|
37
33
|
form: NgForm;
|
|
38
34
|
};
|
|
@@ -106,7 +102,7 @@ export declare class PoPageJobSchedulerComponent extends PoPageJobSchedulerBaseC
|
|
|
106
102
|
protected stepParameters: number;
|
|
107
103
|
protected stepSummary: number;
|
|
108
104
|
protected _stepExecutionLast: boolean;
|
|
109
|
-
constructor(
|
|
105
|
+
constructor();
|
|
110
106
|
get stepperOrientation(): 'horizontal' | 'vertical';
|
|
111
107
|
ngOnInit(): void;
|
|
112
108
|
ngAfterContentInit(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { PoJobScheduler } from './interfaces/po-job-scheduler.interface';
|
|
4
4
|
import { PoJobSchedulerInternal } from './interfaces/po-job-scheduler-internal.interface';
|
|
@@ -7,7 +7,6 @@ export declare class PoPageJobSchedulerService {
|
|
|
7
7
|
private http;
|
|
8
8
|
readonly headers: HttpHeaders;
|
|
9
9
|
private endpoint;
|
|
10
|
-
constructor(http: HttpClient);
|
|
11
10
|
configServiceApi(config?: {
|
|
12
11
|
endpoint?: string;
|
|
13
12
|
}): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { Subscription } from 'rxjs';
|
|
4
|
-
import { PoLanguage, PoLanguageService
|
|
4
|
+
import { PoLanguage, PoLanguageService } from '@po-ui/ng-components';
|
|
5
5
|
import { PoPageLoginAuthenticationType } from './enums/po-page-login-authentication-type.enum';
|
|
6
6
|
import { PoPageLoginCustomField } from './interfaces/po-page-login-custom-field.interface';
|
|
7
7
|
import { PoPageLoginLiterals } from './interfaces/po-page-login-literals.interface';
|
|
@@ -51,7 +51,6 @@ export declare const poPageLoginLiteralIn: {
|
|
|
51
51
|
* ```
|
|
52
52
|
*/
|
|
53
53
|
export declare abstract class PoPageLoginBaseComponent implements OnDestroy {
|
|
54
|
-
protected poThemeService: PoThemeService;
|
|
55
54
|
private loginService;
|
|
56
55
|
router: Router;
|
|
57
56
|
poLanguageService: PoLanguageService;
|
|
@@ -707,7 +706,7 @@ export declare abstract class PoPageLoginBaseComponent implements OnDestroy {
|
|
|
707
706
|
get showLanguage(): boolean;
|
|
708
707
|
get language(): string;
|
|
709
708
|
get pageLoginLiterals(): PoPageLoginLiterals;
|
|
710
|
-
constructor(
|
|
709
|
+
constructor(loginService: PoPageLoginService, router: Router, poLanguageService: PoLanguageService);
|
|
711
710
|
ngOnDestroy(): void;
|
|
712
711
|
closePopover(): void;
|
|
713
712
|
onLoginSubmit(): void;
|