info-library 2.15.1-beta → 3.0.0-beta
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/controls/alert/alert.component.d.ts +7 -7
- package/controls/autocomplete/autocomplete.component.d.ts +52 -51
- package/controls/big-checkbox/big-checkbox.component.d.ts +41 -41
- package/controls/card/card.component.d.ts +16 -16
- package/controls/card-menu/card-menu.component.d.ts +23 -23
- package/controls/checkbox/checkbox.component.d.ts +27 -27
- package/controls/chips/chips.component.d.ts +23 -23
- package/controls/date/date.component.d.ts +38 -37
- package/controls/date-month/date-month.component.d.ts +40 -39
- package/controls/editor/editor.component.d.ts +40 -40
- package/controls/grid/grid.component.d.ts +172 -172
- package/controls/input/input.component.d.ts +47 -37
- package/controls/input-list/input-list.component.d.ts +29 -29
- package/controls/list-checkbox/list-checkbox.component.d.ts +26 -26
- package/controls/message/message.component.d.ts +10 -10
- package/controls/multi-select/multi-select.component.d.ts +39 -37
- package/controls/paginator/paginator.component.d.ts +25 -25
- package/controls/select/select.component.d.ts +42 -41
- package/controls/timeline/timeline.component.d.ts +17 -17
- package/directives/mask.directive.d.ts +24 -24
- package/directives/unmask.directive.d.ts +12 -11
- package/enum/dialog-buttons.enum.d.ts +7 -7
- package/enum/index.d.ts +3 -3
- package/enum/modal-action.enum.d.ts +10 -10
- package/enum/page-action.enum.d.ts +8 -8
- package/esm2022/controls/alert/alert.component.mjs +72 -0
- package/esm2022/controls/autocomplete/autocomplete.component.mjs +265 -0
- package/esm2022/controls/big-checkbox/big-checkbox.component.mjs +300 -0
- package/esm2022/controls/card/card.component.mjs +83 -0
- package/esm2022/controls/card-menu/card-menu.component.mjs +143 -0
- package/esm2022/controls/checkbox/checkbox.component.mjs +93 -0
- package/esm2022/controls/chips/chips.component.mjs +114 -0
- package/esm2022/controls/date/date.component.mjs +173 -0
- package/esm2022/controls/date-month/date-month.component.mjs +181 -0
- package/esm2022/controls/editor/editor.component.mjs +139 -0
- package/esm2022/controls/grid/grid.component.mjs +1818 -0
- package/esm2022/controls/input/input.component.mjs +389 -0
- package/esm2022/controls/input-list/input-list.component.mjs +259 -0
- package/{esm2020 → esm2022}/controls/list-checkbox/list-checkbox.component.mjs +242 -238
- package/esm2022/controls/message/message.component.mjs +48 -0
- package/esm2022/controls/multi-select/multi-select.component.mjs +174 -0
- package/esm2022/controls/paginator/paginator.component.mjs +177 -0
- package/esm2022/controls/select/select.component.mjs +189 -0
- package/esm2022/controls/timeline/timeline.component.mjs +116 -0
- package/esm2022/directives/mask.directive.mjs +134 -0
- package/esm2022/directives/unmask.directive.mjs +35 -0
- package/{esm2020 → esm2022}/enum/dialog-buttons.enum.mjs +8 -8
- package/{esm2020 → esm2022}/enum/index.mjs +3 -3
- package/{esm2020 → esm2022}/enum/modal-action.enum.mjs +11 -11
- package/{esm2020 → esm2022}/enum/page-action.enum.mjs +9 -9
- package/{esm2020 → esm2022}/global-config.mjs +3 -3
- package/{esm2020 → esm2022}/info-library.mjs +4 -4
- package/esm2022/info-library.module.mjs +283 -0
- package/esm2022/layouts/dialog/dialog.component.mjs +192 -0
- package/esm2022/layouts/filter/filter.component.mjs +179 -0
- package/esm2022/layouts/loading/loading.component.mjs +40 -0
- package/esm2022/layouts/main/main.component.mjs +305 -0
- package/esm2022/layouts/modal/modal.component.mjs +273 -0
- package/esm2022/layouts/pagebar/pagebar.component.mjs +432 -0
- package/esm2022/layouts/sidebar/sidebar.component.mjs +447 -0
- package/esm2022/layouts/topbar/topbar.component.mjs +1032 -0
- package/esm2022/layouts/topmenu/topmenu.component.mjs +173 -0
- package/esm2022/model/app-config.model.mjs +14 -0
- package/esm2022/model/data-access.model.mjs +37 -0
- package/esm2022/model/dialog-result.model.mjs +9 -0
- package/esm2022/model/dialog.model.mjs +15 -0
- package/esm2022/model/form-prop.model.mjs +37 -0
- package/esm2022/model/grid-button.model.mjs +26 -0
- package/{esm2020 → esm2022}/model/index.mjs +14 -14
- package/esm2022/model/last-search.model.mjs +7 -0
- package/esm2022/model/login.model.mjs +11 -0
- package/esm2022/model/method-grid-button.model.mjs +11 -0
- package/esm2022/model/notification.model.mjs +13 -0
- package/{esm2020 → esm2022}/model/pagebar-buttons.model.mjs +15 -15
- package/esm2022/model/permission.model.mjs +6 -0
- package/esm2022/model/platform.model.mjs +20 -0
- package/esm2022/model/session.model.mjs +27 -0
- package/{esm2020 → esm2022}/pipe/index.mjs +2 -2
- package/esm2022/pipe/mask.pipe.mjs +38 -0
- package/esm2022/pipe/translate.pipe.mjs +27 -0
- package/{esm2020 → esm2022}/public_api.mjs +37 -36
- package/esm2022/service/authentication.service.mjs +411 -0
- package/esm2022/service/configuration.service.mjs +90 -0
- package/esm2022/service/data.service.mjs +129 -0
- package/{esm2020 → esm2022}/service/index.mjs +5 -5
- package/esm2022/service/theme.service.mjs +89 -0
- package/esm2022/service/translate.service.mjs +57 -0
- package/esm2022/utils/utilities.mjs +189 -0
- package/fesm2022/info-library.mjs +9364 -0
- package/fesm2022/info-library.mjs.map +1 -0
- package/global-config.d.ts +3 -3
- package/index.d.ts +5 -5
- package/info-library-3.0.0-beta.tgz +0 -0
- package/info-library.module.d.ts +61 -60
- package/layouts/dialog/dialog.component.d.ts +29 -29
- package/layouts/filter/filter.component.d.ts +24 -0
- package/layouts/loading/loading.component.d.ts +8 -8
- package/layouts/main/main.component.d.ts +60 -56
- package/layouts/modal/modal.component.d.ts +40 -39
- package/layouts/pagebar/pagebar.component.d.ts +45 -45
- package/layouts/sidebar/sidebar.component.d.ts +40 -40
- package/layouts/topbar/topbar.component.d.ts +69 -66
- package/layouts/topmenu/topmenu.component.d.ts +34 -34
- package/model/app-config.model.d.ts +13 -11
- package/model/data-access.model.d.ts +12 -12
- package/model/dialog-result.model.d.ts +6 -6
- package/model/dialog.model.d.ts +14 -14
- package/model/form-prop.model.d.ts +12 -12
- package/model/grid-button.model.d.ts +18 -18
- package/model/index.d.ts +14 -14
- package/model/last-search.model.d.ts +6 -6
- package/model/login.model.d.ts +6 -6
- package/model/method-grid-button.model.d.ts +6 -6
- package/model/notification.model.d.ts +12 -12
- package/model/pagebar-buttons.model.d.ts +10 -10
- package/model/permission.model.d.ts +5 -5
- package/model/platform.model.d.ts +16 -16
- package/model/session.model.d.ts +27 -22
- package/package.json +5 -11
- package/pipe/index.d.ts +2 -2
- package/pipe/mask.pipe.d.ts +8 -8
- package/pipe/translate.pipe.d.ts +10 -10
- package/public_api.d.ts +34 -33
- package/service/authentication.service.d.ts +63 -61
- package/service/configuration.service.d.ts +17 -14
- package/service/data.service.d.ts +41 -39
- package/service/index.d.ts +5 -5
- package/service/theme.service.d.ts +16 -16
- package/service/translate.service.d.ts +16 -16
- package/utils/utilities.d.ts +38 -27
- package/esm2020/controls/alert/alert.component.mjs +0 -74
- package/esm2020/controls/autocomplete/autocomplete.component.mjs +0 -258
- package/esm2020/controls/big-checkbox/big-checkbox.component.mjs +0 -298
- package/esm2020/controls/card/card.component.mjs +0 -77
- package/esm2020/controls/card-menu/card-menu.component.mjs +0 -145
- package/esm2020/controls/checkbox/checkbox.component.mjs +0 -93
- package/esm2020/controls/chips/chips.component.mjs +0 -113
- package/esm2020/controls/date/date.component.mjs +0 -141
- package/esm2020/controls/date-month/date-month.component.mjs +0 -148
- package/esm2020/controls/editor/editor.component.mjs +0 -135
- package/esm2020/controls/grid/grid.component.mjs +0 -1800
- package/esm2020/controls/input/input.component.mjs +0 -314
- package/esm2020/controls/input-list/input-list.component.mjs +0 -258
- package/esm2020/controls/message/message.component.mjs +0 -50
- package/esm2020/controls/multi-select/multi-select.component.mjs +0 -161
- package/esm2020/controls/paginator/paginator.component.mjs +0 -178
- package/esm2020/controls/select/select.component.mjs +0 -180
- package/esm2020/controls/timeline/timeline.component.mjs +0 -117
- package/esm2020/directives/mask.directive.mjs +0 -125
- package/esm2020/directives/unmask.directive.mjs +0 -28
- package/esm2020/info-library.module.mjs +0 -278
- package/esm2020/layouts/dialog/dialog.component.mjs +0 -188
- package/esm2020/layouts/loading/loading.component.mjs +0 -42
- package/esm2020/layouts/main/main.component.mjs +0 -258
- package/esm2020/layouts/modal/modal.component.mjs +0 -258
- package/esm2020/layouts/pagebar/pagebar.component.mjs +0 -404
- package/esm2020/layouts/sidebar/sidebar.component.mjs +0 -395
- package/esm2020/layouts/topbar/topbar.component.mjs +0 -868
- package/esm2020/layouts/topmenu/topmenu.component.mjs +0 -165
- package/esm2020/model/app-config.model.mjs +0 -14
- package/esm2020/model/data-access.model.mjs +0 -35
- package/esm2020/model/dialog-result.model.mjs +0 -8
- package/esm2020/model/dialog.model.mjs +0 -16
- package/esm2020/model/form-prop.model.mjs +0 -35
- package/esm2020/model/grid-button.model.mjs +0 -21
- package/esm2020/model/last-search.model.mjs +0 -9
- package/esm2020/model/login.model.mjs +0 -9
- package/esm2020/model/method-grid-button.model.mjs +0 -9
- package/esm2020/model/notification.model.mjs +0 -9
- package/esm2020/model/permission.model.mjs +0 -3
- package/esm2020/model/platform.model.mjs +0 -21
- package/esm2020/model/session.model.mjs +0 -8
- package/esm2020/pipe/mask.pipe.mjs +0 -34
- package/esm2020/pipe/translate.pipe.mjs +0 -26
- package/esm2020/service/authentication.service.mjs +0 -358
- package/esm2020/service/configuration.service.mjs +0 -59
- package/esm2020/service/data.service.mjs +0 -112
- package/esm2020/service/theme.service.mjs +0 -79
- package/esm2020/service/translate.service.mjs +0 -53
- package/esm2020/utils/utilities.mjs +0 -142
- package/fesm2015/info-library.mjs +0 -9312
- package/fesm2015/info-library.mjs.map +0 -1
- package/fesm2020/info-library.mjs +0 -8462
- package/fesm2020/info-library.mjs.map +0 -1
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
-
import { InfoDataService } from '../../service/data.service';
|
|
3
|
-
import { InfoAuthenticationService } from '../../service/authentication.service';
|
|
4
|
-
import { InfoThemeService } from '../../service/theme.service';
|
|
5
|
-
import { InfoLastSearchModel } from '../../model/last-search.model';
|
|
6
|
-
import { InfoSessionModel } from '../../model/session.model';
|
|
7
|
-
import { InfoPlatformModel } from '../../model/platform.model';
|
|
8
|
-
import { Router } from '@angular/router';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class InfoSidebarComponent implements OnInit {
|
|
11
|
-
private _dataAcessService;
|
|
12
|
-
private _authentication;
|
|
13
|
-
private _themeService;
|
|
14
|
-
_session: InfoSessionModel;
|
|
15
|
-
_platform: InfoPlatformModel;
|
|
16
|
-
private _lastSearch;
|
|
17
|
-
private _router;
|
|
18
|
-
private _renderer;
|
|
19
|
-
|
|
20
|
-
api: any;
|
|
21
|
-
method: string;
|
|
22
|
-
activemenubyurl: boolean;
|
|
23
|
-
onchangestate: EventEmitter<any>;
|
|
24
|
-
loading: boolean;
|
|
25
|
-
menu: any;
|
|
26
|
-
openSubmenu: string;
|
|
27
|
-
menuAtivo: string;
|
|
28
|
-
constructor(_dataAcessService: InfoDataService, _authentication: InfoAuthenticationService, _themeService: InfoThemeService, _session: InfoSessionModel, _platform: InfoPlatformModel, _lastSearch: InfoLastSearchModel, _router: Router, _renderer: Renderer2, _element: ElementRef);
|
|
29
|
-
ngOnInit(): void;
|
|
30
|
-
toggle(e: Event, menuItem: any): void;
|
|
31
|
-
access(menu: string): void;
|
|
32
|
-
monitorarUrl(): void;
|
|
33
|
-
ativarMenu(url: string): void;
|
|
34
|
-
toggleSubmenu(menu: any): void;
|
|
35
|
-
resetLastSearch(): void;
|
|
36
|
-
changeSidebar(): void;
|
|
37
|
-
toggleSidebar(): void;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoSidebarComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoSidebarComponent, "info-sidebar", never, { "api": "api"; "method": "method"; "activemenubyurl": "activemenubyurl"; }, { "onchangestate": "onchangestate"; }, never, never, false, never>;
|
|
40
|
-
}
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { InfoDataService } from '../../service/data.service';
|
|
3
|
+
import { InfoAuthenticationService } from '../../service/authentication.service';
|
|
4
|
+
import { InfoThemeService } from '../../service/theme.service';
|
|
5
|
+
import { InfoLastSearchModel } from '../../model/last-search.model';
|
|
6
|
+
import { InfoSessionModel } from '../../model/session.model';
|
|
7
|
+
import { InfoPlatformModel } from '../../model/platform.model';
|
|
8
|
+
import { Router } from '@angular/router';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class InfoSidebarComponent implements OnInit {
|
|
11
|
+
private _dataAcessService;
|
|
12
|
+
private _authentication;
|
|
13
|
+
private _themeService;
|
|
14
|
+
_session: InfoSessionModel;
|
|
15
|
+
_platform: InfoPlatformModel;
|
|
16
|
+
private _lastSearch;
|
|
17
|
+
private _router;
|
|
18
|
+
private _renderer;
|
|
19
|
+
_element: ElementRef;
|
|
20
|
+
api: any;
|
|
21
|
+
method: string;
|
|
22
|
+
activemenubyurl: boolean;
|
|
23
|
+
onchangestate: EventEmitter<any>;
|
|
24
|
+
loading: boolean;
|
|
25
|
+
menu: any;
|
|
26
|
+
openSubmenu: string;
|
|
27
|
+
menuAtivo: string;
|
|
28
|
+
constructor(_dataAcessService: InfoDataService, _authentication: InfoAuthenticationService, _themeService: InfoThemeService, _session: InfoSessionModel, _platform: InfoPlatformModel, _lastSearch: InfoLastSearchModel, _router: Router, _renderer: Renderer2, _element: ElementRef);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
toggle(e: Event, menuItem: any): void;
|
|
31
|
+
access(menu: string): void;
|
|
32
|
+
monitorarUrl(): void;
|
|
33
|
+
ativarMenu(url: string): void;
|
|
34
|
+
toggleSubmenu(menu: any): void;
|
|
35
|
+
resetLastSearch(): void;
|
|
36
|
+
changeSidebar(): void;
|
|
37
|
+
toggleSidebar(): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoSidebarComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoSidebarComponent, "info-sidebar", never, { "api": { "alias": "api"; "required": false; }; "method": { "alias": "method"; "required": false; }; "activemenubyurl": { "alias": "activemenubyurl"; "required": false; }; }, { "onchangestate": "onchangestate"; }, never, never, false, never>;
|
|
40
|
+
}
|
|
@@ -1,66 +1,69 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, Renderer2, ElementRef } from '@angular/core';
|
|
2
|
-
import { InfoDialogModal } from '../dialog/dialog.component';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
5
|
-
import { InfoTranslateService } from '../../service/translate.service';
|
|
6
|
-
import { InfoAuthenticationService } from '../../service/authentication.service';
|
|
7
|
-
import { InfoDataService } from '../../service/data.service';
|
|
8
|
-
import { InfoThemeService } from '../../service/theme.service';
|
|
9
|
-
import { InfoNotificationModel } from '../../model/notification.model';
|
|
10
|
-
import { InfoSessionModel } from '../../model/session.model';
|
|
11
|
-
import { InfoPlatformModel } from '../../model/platform.model';
|
|
12
|
-
import { Utilities } from '../../utils/utilities';
|
|
13
|
-
import * as i0 from "@angular/core";
|
|
14
|
-
export declare class InfoTopbarComponent implements OnInit {
|
|
15
|
-
private _translateService;
|
|
16
|
-
_authenticationService: InfoAuthenticationService;
|
|
17
|
-
private _dataService;
|
|
18
|
-
private _themeService;
|
|
19
|
-
private _router;
|
|
20
|
-
private _dialog;
|
|
21
|
-
_session: InfoSessionModel;
|
|
22
|
-
_platform: InfoPlatformModel;
|
|
23
|
-
private _modal;
|
|
24
|
-
private _renderer;
|
|
25
|
-
|
|
26
|
-
private _utilities;
|
|
27
|
-
opened: boolean;
|
|
28
|
-
languages: any;
|
|
29
|
-
themes: any;
|
|
30
|
-
notificationapi: any;
|
|
31
|
-
notificationgetmethod: string;
|
|
32
|
-
notificationpostmethod: string;
|
|
33
|
-
notificationverifymethod: string;
|
|
34
|
-
notificationverifyenabled: boolean;
|
|
35
|
-
fastsearchform: any;
|
|
36
|
-
fastsearchformwidth: number;
|
|
37
|
-
fastsearchtitle: string;
|
|
38
|
-
profileurl: string;
|
|
39
|
-
setthemeonchangecompany: boolean;
|
|
40
|
-
enabledia: boolean;
|
|
41
|
-
onchangestate: EventEmitter<any>;
|
|
42
|
-
ongetnotification: EventEmitter<any>;
|
|
43
|
-
onverifynotification: EventEmitter<any>;
|
|
44
|
-
modalRef: any;
|
|
45
|
-
loading: boolean;
|
|
46
|
-
prodution: boolean;
|
|
47
|
-
notifications: InfoNotificationModel;
|
|
48
|
-
topMenu: any;
|
|
49
|
-
constructor(_translateService: InfoTranslateService, _authenticationService: InfoAuthenticationService, _dataService: InfoDataService, _themeService: InfoThemeService, _router: Router, _dialog: InfoDialogModal, _session: InfoSessionModel, _platform: InfoPlatformModel, _modal: MatDialog, _renderer: Renderer2, _element: ElementRef, _utilities: Utilities);
|
|
50
|
-
ngOnInit(): void;
|
|
51
|
-
setCompany(company: any): void;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
1
|
+
import { OnInit, EventEmitter, Renderer2, ElementRef } from '@angular/core';
|
|
2
|
+
import { InfoDialogModal } from '../dialog/dialog.component';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
5
|
+
import { InfoTranslateService } from '../../service/translate.service';
|
|
6
|
+
import { InfoAuthenticationService } from '../../service/authentication.service';
|
|
7
|
+
import { InfoDataService } from '../../service/data.service';
|
|
8
|
+
import { InfoThemeService } from '../../service/theme.service';
|
|
9
|
+
import { InfoNotificationModel } from '../../model/notification.model';
|
|
10
|
+
import { InfoSessionModel } from '../../model/session.model';
|
|
11
|
+
import { InfoPlatformModel } from '../../model/platform.model';
|
|
12
|
+
import { Utilities } from '../../utils/utilities';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class InfoTopbarComponent implements OnInit {
|
|
15
|
+
private _translateService;
|
|
16
|
+
_authenticationService: InfoAuthenticationService;
|
|
17
|
+
private _dataService;
|
|
18
|
+
private _themeService;
|
|
19
|
+
private _router;
|
|
20
|
+
private _dialog;
|
|
21
|
+
_session: InfoSessionModel;
|
|
22
|
+
_platform: InfoPlatformModel;
|
|
23
|
+
private _modal;
|
|
24
|
+
private _renderer;
|
|
25
|
+
_element: ElementRef;
|
|
26
|
+
private _utilities;
|
|
27
|
+
opened: boolean;
|
|
28
|
+
languages: any;
|
|
29
|
+
themes: any;
|
|
30
|
+
notificationapi: any;
|
|
31
|
+
notificationgetmethod: string;
|
|
32
|
+
notificationpostmethod: string;
|
|
33
|
+
notificationverifymethod: string;
|
|
34
|
+
notificationverifyenabled: boolean;
|
|
35
|
+
fastsearchform: any;
|
|
36
|
+
fastsearchformwidth: number;
|
|
37
|
+
fastsearchtitle: string;
|
|
38
|
+
profileurl: string;
|
|
39
|
+
setthemeonchangecompany: boolean;
|
|
40
|
+
enabledia: boolean;
|
|
41
|
+
onchangestate: EventEmitter<any>;
|
|
42
|
+
ongetnotification: EventEmitter<any>;
|
|
43
|
+
onverifynotification: EventEmitter<any>;
|
|
44
|
+
modalRef: any;
|
|
45
|
+
loading: boolean;
|
|
46
|
+
prodution: boolean;
|
|
47
|
+
notifications: InfoNotificationModel;
|
|
48
|
+
topMenu: any;
|
|
49
|
+
constructor(_translateService: InfoTranslateService, _authenticationService: InfoAuthenticationService, _dataService: InfoDataService, _themeService: InfoThemeService, _router: Router, _dialog: InfoDialogModal, _session: InfoSessionModel, _platform: InfoPlatformModel, _modal: MatDialog, _renderer: Renderer2, _element: ElementRef, _utilities: Utilities);
|
|
50
|
+
ngOnInit(): void;
|
|
51
|
+
setCompany(company: any): void;
|
|
52
|
+
setUnity(unity: any): void;
|
|
53
|
+
setCompanyUnity(company: any, unity: any): void;
|
|
54
|
+
setClient(client: any): void;
|
|
55
|
+
setLanguage(language: string): void;
|
|
56
|
+
setTheme(theme: any): void;
|
|
57
|
+
toggleMode(): void;
|
|
58
|
+
openFastSearch(): void;
|
|
59
|
+
open(achtiveMenu: any): void;
|
|
60
|
+
close(): void;
|
|
61
|
+
openSidebar(): void;
|
|
62
|
+
getNotifications(): void;
|
|
63
|
+
verifyNotifications(): void;
|
|
64
|
+
setNotificationStatus(read: any, access: any, remove: any): void;
|
|
65
|
+
navigate(url: string): void;
|
|
66
|
+
logout(): void;
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoTopbarComponent, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoTopbarComponent, "info-topbar", never, { "opened": { "alias": "opened"; "required": false; }; "languages": { "alias": "languages"; "required": false; }; "themes": { "alias": "themes"; "required": false; }; "notificationapi": { "alias": "notificationapi"; "required": false; }; "notificationgetmethod": { "alias": "notificationgetmethod"; "required": false; }; "notificationpostmethod": { "alias": "notificationpostmethod"; "required": false; }; "notificationverifymethod": { "alias": "notificationverifymethod"; "required": false; }; "notificationverifyenabled": { "alias": "notificationverifyenabled"; "required": false; }; "fastsearchform": { "alias": "fastsearchform"; "required": false; }; "fastsearchformwidth": { "alias": "fastsearchformwidth"; "required": false; }; "fastsearchtitle": { "alias": "fastsearchtitle"; "required": false; }; "profileurl": { "alias": "profileurl"; "required": false; }; "setthemeonchangecompany": { "alias": "setthemeonchangecompany"; "required": false; }; "enabledia": { "alias": "enabledia"; "required": false; }; }, { "onchangestate": "onchangestate"; "ongetnotification": "ongetnotification"; "onverifynotification": "onverifynotification"; }, never, ["*"], false, never>;
|
|
69
|
+
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
-
import { InfoDataService } from '../../service/data.service';
|
|
3
|
-
import { InfoAuthenticationService } from '../../service/authentication.service';
|
|
4
|
-
import { InfoLastSearchModel } from '../../model/last-search.model';
|
|
5
|
-
import { InfoSessionModel } from '../../model/session.model';
|
|
6
|
-
import { InfoPlatformModel } from '../../model/platform.model';
|
|
7
|
-
import { Router } from '@angular/router';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class InfoTopMenuComponent implements OnInit {
|
|
10
|
-
private _dataAcessService;
|
|
11
|
-
private _authentication;
|
|
12
|
-
private _lastSearch;
|
|
13
|
-
private _router;
|
|
14
|
-
_session: InfoSessionModel;
|
|
15
|
-
_platform: InfoPlatformModel;
|
|
16
|
-
private _renderer;
|
|
17
|
-
private _element;
|
|
18
|
-
api: any;
|
|
19
|
-
method: string;
|
|
20
|
-
onchangestate: EventEmitter<any>;
|
|
21
|
-
loading: boolean;
|
|
22
|
-
menu: any;
|
|
23
|
-
openSubmenu: string;
|
|
24
|
-
menuAtivo: string;
|
|
25
|
-
constructor(_dataAcessService: InfoDataService, _authentication: InfoAuthenticationService, _lastSearch: InfoLastSearchModel, _router: Router, _session: InfoSessionModel, _platform: InfoPlatformModel, _renderer: Renderer2, _element: ElementRef);
|
|
26
|
-
ngOnInit(): void;
|
|
27
|
-
toggle(e: Event, menuItem: any): void;
|
|
28
|
-
access(menu: string): void;
|
|
29
|
-
toggleSubmenu(menu: any): void;
|
|
30
|
-
resetLastSearch(): void;
|
|
31
|
-
changeSidebar(): void;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoTopMenuComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoTopMenuComponent, "info-topmenu", never, { "api": "api"; "method": "method"; }, { "onchangestate": "onchangestate"; }, never, never, false, never>;
|
|
34
|
-
}
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { InfoDataService } from '../../service/data.service';
|
|
3
|
+
import { InfoAuthenticationService } from '../../service/authentication.service';
|
|
4
|
+
import { InfoLastSearchModel } from '../../model/last-search.model';
|
|
5
|
+
import { InfoSessionModel } from '../../model/session.model';
|
|
6
|
+
import { InfoPlatformModel } from '../../model/platform.model';
|
|
7
|
+
import { Router } from '@angular/router';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class InfoTopMenuComponent implements OnInit {
|
|
10
|
+
private _dataAcessService;
|
|
11
|
+
private _authentication;
|
|
12
|
+
private _lastSearch;
|
|
13
|
+
private _router;
|
|
14
|
+
_session: InfoSessionModel;
|
|
15
|
+
_platform: InfoPlatformModel;
|
|
16
|
+
private _renderer;
|
|
17
|
+
private _element;
|
|
18
|
+
api: any;
|
|
19
|
+
method: string;
|
|
20
|
+
onchangestate: EventEmitter<any>;
|
|
21
|
+
loading: boolean;
|
|
22
|
+
menu: any;
|
|
23
|
+
openSubmenu: string;
|
|
24
|
+
menuAtivo: string;
|
|
25
|
+
constructor(_dataAcessService: InfoDataService, _authentication: InfoAuthenticationService, _lastSearch: InfoLastSearchModel, _router: Router, _session: InfoSessionModel, _platform: InfoPlatformModel, _renderer: Renderer2, _element: ElementRef);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
toggle(e: Event, menuItem: any): void;
|
|
28
|
+
access(menu: string): void;
|
|
29
|
+
toggleSubmenu(menu: any): void;
|
|
30
|
+
resetLastSearch(): void;
|
|
31
|
+
changeSidebar(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoTopMenuComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoTopMenuComponent, "info-topmenu", never, { "api": { "alias": "api"; "required": false; }; "method": { "alias": "method"; "required": false; }; }, { "onchangestate": "onchangestate"; }, never, never, false, never>;
|
|
34
|
+
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
export declare class InfoAppConfigModel {
|
|
2
|
-
production: boolean;
|
|
3
|
-
webapiUrl: string;
|
|
4
|
-
processingUrl: string;
|
|
5
|
-
theme: string;
|
|
6
|
-
dictionary: string;
|
|
7
|
-
ux:
|
|
8
|
-
style: string;
|
|
9
|
-
topMenu: boolean;
|
|
10
|
-
enabledPrime: boolean;
|
|
11
|
-
|
|
1
|
+
export declare class InfoAppConfigModel {
|
|
2
|
+
production: boolean;
|
|
3
|
+
webapiUrl: string;
|
|
4
|
+
processingUrl: string;
|
|
5
|
+
theme: string;
|
|
6
|
+
dictionary: string;
|
|
7
|
+
ux: number;
|
|
8
|
+
style: string;
|
|
9
|
+
topMenu: boolean;
|
|
10
|
+
enabledPrime: boolean;
|
|
11
|
+
title: string;
|
|
12
|
+
headers: any;
|
|
13
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export declare class InfoDataAccessModel {
|
|
2
|
-
success: boolean;
|
|
3
|
-
messages: string[];
|
|
4
|
-
name: string;
|
|
5
|
-
description: string;
|
|
6
|
-
data: any;
|
|
7
|
-
total: number;
|
|
8
|
-
parentId: number;
|
|
9
|
-
referenceGuid: string;
|
|
10
|
-
external: boolean;
|
|
11
|
-
constructor(data: any, success?: boolean, messages?: string[]);
|
|
12
|
-
}
|
|
1
|
+
export declare class InfoDataAccessModel {
|
|
2
|
+
success: boolean;
|
|
3
|
+
messages: string[];
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
data: any;
|
|
7
|
+
total: number;
|
|
8
|
+
parentId: number;
|
|
9
|
+
referenceGuid: string;
|
|
10
|
+
external: boolean;
|
|
11
|
+
constructor(data: any, success?: boolean, messages?: string[]);
|
|
12
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { InfoDialogButtons } from "../enum/dialog-buttons.enum";
|
|
2
|
-
export declare class InfoDialogResult {
|
|
3
|
-
data?: any;
|
|
4
|
-
button: InfoDialogButtons;
|
|
5
|
-
constructor(button: InfoDialogButtons);
|
|
6
|
-
}
|
|
1
|
+
import { InfoDialogButtons } from "../enum/dialog-buttons.enum";
|
|
2
|
+
export declare class InfoDialogResult {
|
|
3
|
+
data?: any;
|
|
4
|
+
button: InfoDialogButtons;
|
|
5
|
+
constructor(button: InfoDialogButtons);
|
|
6
|
+
}
|
package/model/dialog.model.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export declare class InfoDialogModel {
|
|
2
|
-
yesOrNo: boolean;
|
|
3
|
-
title: string;
|
|
4
|
-
message: string;
|
|
5
|
-
width: number;
|
|
6
|
-
labelOk: string;
|
|
7
|
-
labelCancel: string;
|
|
8
|
-
labelAux: string;
|
|
9
|
-
colorOk: string;
|
|
10
|
-
colorCancel: string;
|
|
11
|
-
colorAux: string;
|
|
12
|
-
processingMode: boolean;
|
|
13
|
-
disableButtonCancel: boolean;
|
|
14
|
-
}
|
|
1
|
+
export declare class InfoDialogModel {
|
|
2
|
+
yesOrNo: boolean;
|
|
3
|
+
title: string;
|
|
4
|
+
message: string;
|
|
5
|
+
width: number;
|
|
6
|
+
labelOk: string;
|
|
7
|
+
labelCancel: string;
|
|
8
|
+
labelAux: string;
|
|
9
|
+
colorOk: string;
|
|
10
|
+
colorCancel: string;
|
|
11
|
+
colorAux: string;
|
|
12
|
+
processingMode: boolean;
|
|
13
|
+
disableButtonCancel: boolean;
|
|
14
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { InfoPageAction } from "../enum/page-action.enum";
|
|
2
|
-
import { InfoModalAction } from "../enum/modal-action.enum";
|
|
3
|
-
export declare class InfoFormPropModel {
|
|
4
|
-
title: string;
|
|
5
|
-
readonly: boolean;
|
|
6
|
-
data: any;
|
|
7
|
-
pageAction: InfoPageAction;
|
|
8
|
-
modalAction: InfoModalAction;
|
|
9
|
-
modalComponent: any;
|
|
10
|
-
api: any;
|
|
11
|
-
set(pageAction: InfoPageAction, data: any): void;
|
|
12
|
-
}
|
|
1
|
+
import { InfoPageAction } from "../enum/page-action.enum";
|
|
2
|
+
import { InfoModalAction } from "../enum/modal-action.enum";
|
|
3
|
+
export declare class InfoFormPropModel {
|
|
4
|
+
title: string;
|
|
5
|
+
readonly: boolean;
|
|
6
|
+
data: any;
|
|
7
|
+
pageAction: InfoPageAction;
|
|
8
|
+
modalAction: InfoModalAction;
|
|
9
|
+
modalComponent: any;
|
|
10
|
+
api: any;
|
|
11
|
+
set(pageAction: InfoPageAction, data: any): void;
|
|
12
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export declare class InfoGridButtonModel {
|
|
2
|
-
label: string;
|
|
3
|
-
passId: boolean;
|
|
4
|
-
icon: string;
|
|
5
|
-
navigateTo: string;
|
|
6
|
-
modalComponent: any;
|
|
7
|
-
widthModalComponent: Number;
|
|
8
|
-
api: any;
|
|
9
|
-
method: string;
|
|
10
|
-
showOnlyClass: string;
|
|
11
|
-
disabledField: string;
|
|
12
|
-
confirm: boolean;
|
|
13
|
-
constructor(label: string, passId: boolean, icon: string, navigateTo: string);
|
|
14
|
-
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number);
|
|
15
|
-
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number, api: any, method: string);
|
|
16
|
-
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number, api: any, method: string, disabledField: string);
|
|
17
|
-
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number, api: any, method: string, disabledField: string, confirm: boolean);
|
|
18
|
-
}
|
|
1
|
+
export declare class InfoGridButtonModel {
|
|
2
|
+
label: string;
|
|
3
|
+
passId: boolean;
|
|
4
|
+
icon: string;
|
|
5
|
+
navigateTo: string;
|
|
6
|
+
modalComponent: any;
|
|
7
|
+
widthModalComponent: Number;
|
|
8
|
+
api: any;
|
|
9
|
+
method: string;
|
|
10
|
+
showOnlyClass: string;
|
|
11
|
+
disabledField: string;
|
|
12
|
+
confirm: boolean;
|
|
13
|
+
constructor(label: string, passId: boolean, icon: string, navigateTo: string);
|
|
14
|
+
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number);
|
|
15
|
+
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number, api: any, method: string);
|
|
16
|
+
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number, api: any, method: string, disabledField: string);
|
|
17
|
+
constructor(label: string, passId: boolean, icon: string, navigateTo: string, modalComponent: Function, widthModalComponent: Number, api: any, method: string, disabledField: string, confirm: boolean);
|
|
18
|
+
}
|
package/model/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export { InfoAppConfigModel } from './app-config.model';
|
|
2
|
-
export { InfoDataAccessModel } from './data-access.model';
|
|
3
|
-
export { InfoDialogResult } from './dialog-result.model';
|
|
4
|
-
export { InfoDialogModel } from './dialog.model';
|
|
5
|
-
export { InfoFormPropModel } from './form-prop.model';
|
|
6
|
-
export { InfoGridButtonModel } from './grid-button.model';
|
|
7
|
-
export { InfoMethodGridButtonModel } from './method-grid-button.model';
|
|
8
|
-
export { InfoLastSearchModel } from './last-search.model';
|
|
9
|
-
export { InfoLoginModel } from './login.model';
|
|
10
|
-
export { InfoPagebarButtonModel } from './pagebar-buttons.model';
|
|
11
|
-
export { InfoPermissionModel } from './permission.model';
|
|
12
|
-
export { InfoPlatformModel } from './platform.model';
|
|
13
|
-
export { InfoSessionModel } from './session.model';
|
|
14
|
-
export { InfoNotificationModel, InfoNotificationItemModel } from './notification.model';
|
|
1
|
+
export { InfoAppConfigModel } from './app-config.model';
|
|
2
|
+
export { InfoDataAccessModel } from './data-access.model';
|
|
3
|
+
export { InfoDialogResult } from './dialog-result.model';
|
|
4
|
+
export { InfoDialogModel } from './dialog.model';
|
|
5
|
+
export { InfoFormPropModel } from './form-prop.model';
|
|
6
|
+
export { InfoGridButtonModel } from './grid-button.model';
|
|
7
|
+
export { InfoMethodGridButtonModel } from './method-grid-button.model';
|
|
8
|
+
export { InfoLastSearchModel } from './last-search.model';
|
|
9
|
+
export { InfoLoginModel } from './login.model';
|
|
10
|
+
export { InfoPagebarButtonModel } from './pagebar-buttons.model';
|
|
11
|
+
export { InfoPermissionModel } from './permission.model';
|
|
12
|
+
export { InfoPlatformModel } from './platform.model';
|
|
13
|
+
export { InfoSessionModel } from './session.model';
|
|
14
|
+
export { InfoNotificationModel, InfoNotificationItemModel } from './notification.model';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare class InfoLastSearchModel {
|
|
2
|
-
url: string;
|
|
3
|
-
model: any;
|
|
4
|
-
index: number;
|
|
5
|
-
enabledSearch: boolean;
|
|
6
|
-
}
|
|
1
|
+
export declare class InfoLastSearchModel {
|
|
2
|
+
url: string;
|
|
3
|
+
model: any;
|
|
4
|
+
index: number;
|
|
5
|
+
enabledSearch: boolean;
|
|
6
|
+
}
|
package/model/login.model.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare class InfoLoginModel {
|
|
2
|
-
success: boolean;
|
|
3
|
-
messages: string;
|
|
4
|
-
data: any;
|
|
5
|
-
constructor(success: boolean, messages: string, data?: any);
|
|
6
|
-
}
|
|
1
|
+
export declare class InfoLoginModel {
|
|
2
|
+
success: boolean;
|
|
3
|
+
messages: string;
|
|
4
|
+
data: any;
|
|
5
|
+
constructor(success: boolean, messages: string, data?: any);
|
|
6
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare class InfoMethodGridButtonModel {
|
|
2
|
-
label: string;
|
|
3
|
-
icon: string;
|
|
4
|
-
method: () => any;
|
|
5
|
-
constructor(label: string, icon: string, method: () => any);
|
|
6
|
-
}
|
|
1
|
+
export declare class InfoMethodGridButtonModel {
|
|
2
|
+
label: string;
|
|
3
|
+
icon: string;
|
|
4
|
+
method: () => any;
|
|
5
|
+
constructor(label: string, icon: string, method: () => any);
|
|
6
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export declare class InfoNotificationModel {
|
|
2
|
-
Count: number;
|
|
3
|
-
Itens: InfoNotificationItemModel[];
|
|
4
|
-
}
|
|
5
|
-
export declare class InfoNotificationItemModel {
|
|
6
|
-
Id: number;
|
|
7
|
-
Icon: string;
|
|
8
|
-
Description: string;
|
|
9
|
-
Url: string;
|
|
10
|
-
Date: string;
|
|
11
|
-
Viewed: boolean;
|
|
12
|
-
}
|
|
1
|
+
export declare class InfoNotificationModel {
|
|
2
|
+
Count: number;
|
|
3
|
+
Itens: InfoNotificationItemModel[];
|
|
4
|
+
}
|
|
5
|
+
export declare class InfoNotificationItemModel {
|
|
6
|
+
Id: number;
|
|
7
|
+
Icon: string;
|
|
8
|
+
Description: string;
|
|
9
|
+
Url: string;
|
|
10
|
+
Date: string;
|
|
11
|
+
Viewed: boolean;
|
|
12
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export declare class InfoPagebarButtonModel {
|
|
2
|
-
label: string;
|
|
3
|
-
url: string;
|
|
4
|
-
icon: string;
|
|
5
|
-
modal: any;
|
|
6
|
-
modalwidth: number;
|
|
7
|
-
constructor(label: string, url: string);
|
|
8
|
-
constructor(label: string, url: string, icon: string);
|
|
9
|
-
constructor(label: string, url: string, icon: string, modal: any, modalwidth: number);
|
|
10
|
-
}
|
|
1
|
+
export declare class InfoPagebarButtonModel {
|
|
2
|
+
label: string;
|
|
3
|
+
url: string;
|
|
4
|
+
icon: string;
|
|
5
|
+
modal: any;
|
|
6
|
+
modalwidth: number;
|
|
7
|
+
constructor(label: string, url: string);
|
|
8
|
+
constructor(label: string, url: string, icon: string);
|
|
9
|
+
constructor(label: string, url: string, icon: string, modal: any, modalwidth: number);
|
|
10
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare class InfoPermissionModel {
|
|
2
|
-
Acesso: boolean;
|
|
3
|
-
URL: string;
|
|
4
|
-
ChaveFuncionalidade: string;
|
|
5
|
-
}
|
|
1
|
+
export declare class InfoPermissionModel {
|
|
2
|
+
Acesso: boolean;
|
|
3
|
+
URL: string;
|
|
4
|
+
ChaveFuncionalidade: string;
|
|
5
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { InfoAppConfigModel } from "./app-config.model";
|
|
2
|
-
export declare class InfoPlatformModel {
|
|
3
|
-
TokenKey: string;
|
|
4
|
-
SessionKey: string;
|
|
5
|
-
ConfigIsNull: boolean;
|
|
6
|
-
Themes: any;
|
|
7
|
-
Config: InfoAppConfigModel;
|
|
8
|
-
PaginaAtiva: any;
|
|
9
|
-
UnificarTopbar: boolean;
|
|
10
|
-
MenuMin: boolean;
|
|
11
|
-
ModoPrime: boolean;
|
|
12
|
-
PaginaLimpa: boolean;
|
|
13
|
-
Menu: any;
|
|
14
|
-
ShortcutApi: any;
|
|
15
|
-
setConfig(config: InfoAppConfigModel): void;
|
|
16
|
-
}
|
|
1
|
+
import { InfoAppConfigModel } from "./app-config.model";
|
|
2
|
+
export declare class InfoPlatformModel {
|
|
3
|
+
TokenKey: string;
|
|
4
|
+
SessionKey: string;
|
|
5
|
+
ConfigIsNull: boolean;
|
|
6
|
+
Themes: any;
|
|
7
|
+
Config: InfoAppConfigModel;
|
|
8
|
+
PaginaAtiva: any;
|
|
9
|
+
UnificarTopbar: boolean;
|
|
10
|
+
MenuMin: boolean;
|
|
11
|
+
ModoPrime: boolean;
|
|
12
|
+
PaginaLimpa: boolean;
|
|
13
|
+
Menu: any;
|
|
14
|
+
ShortcutApi: any;
|
|
15
|
+
setConfig(config: InfoAppConfigModel): void;
|
|
16
|
+
}
|