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,172 +1,172 @@
|
|
|
1
|
-
import { OnInit, AfterViewInit, EventEmitter, ChangeDetectorRef, Renderer2, ElementRef } from "@angular/core";
|
|
2
|
-
import { InfoDataService } from "../../service/data.service";
|
|
3
|
-
import { InfoFormPropModel } from "../../model/form-prop.model";
|
|
4
|
-
import { InfoPaginatorComponent } from "../paginator/paginator.component";
|
|
5
|
-
import { InfoDialogModal } from "../../layouts/dialog/dialog.component";
|
|
6
|
-
import { MatDialog, MatDialogRef } from "@angular/material/dialog";
|
|
7
|
-
import { ActivatedRoute, Router } from "@angular/router";
|
|
8
|
-
import { InfoAuthenticationService } from "../../service/authentication.service";
|
|
9
|
-
import { InfoTranslateService } from "../../service/translate.service";
|
|
10
|
-
import { InfoPagebarButtonModel } from "../../model/pagebar-buttons.model";
|
|
11
|
-
import { InfoGridButtonModel } from "../../model/grid-button.model";
|
|
12
|
-
import { InfoLastSearchModel } from "../../model/last-search.model";
|
|
13
|
-
import { InfoMethodGridButtonModel } from "../../model/method-grid-button.model";
|
|
14
|
-
import { NgModel, NgForm } from '@angular/forms';
|
|
15
|
-
import { QueryList } from '@angular/core';
|
|
16
|
-
import { InfoPlatformModel } from "../../model/platform.model";
|
|
17
|
-
import * as i0 from "@angular/core";
|
|
18
|
-
export declare class InfoGridComponent implements OnInit, AfterViewInit {
|
|
19
|
-
private _dialog;
|
|
20
|
-
_platform: InfoPlatformModel;
|
|
21
|
-
modal: MatDialog;
|
|
22
|
-
private _prop;
|
|
23
|
-
private _dataAccessService;
|
|
24
|
-
private _router;
|
|
25
|
-
private _activatedRoute;
|
|
26
|
-
private _authenticationService;
|
|
27
|
-
private _changeDetectorRef;
|
|
28
|
-
private _translate;
|
|
29
|
-
private _lastSearch;
|
|
30
|
-
private _renderer;
|
|
31
|
-
private _element;
|
|
32
|
-
pagetitle: string;
|
|
33
|
-
prefixtitle: string;
|
|
34
|
-
description: string;
|
|
35
|
-
pagebarbuttons: InfoPagebarButtonModel[];
|
|
36
|
-
fullarea: boolean;
|
|
37
|
-
api: any;
|
|
38
|
-
method: string;
|
|
39
|
-
form: any;
|
|
40
|
-
width: number;
|
|
41
|
-
parent: any;
|
|
42
|
-
apidownload: any;
|
|
43
|
-
methoddownload: string;
|
|
44
|
-
backurl: string;
|
|
45
|
-
newurl: string;
|
|
46
|
-
newlabel: string;
|
|
47
|
-
editurl: string;
|
|
48
|
-
viewurl: string;
|
|
49
|
-
templateurl: string;
|
|
50
|
-
paged: boolean;
|
|
51
|
-
size: number;
|
|
52
|
-
autorefresh: number;
|
|
53
|
-
enabledcols: boolean;
|
|
54
|
-
enablednew: boolean;
|
|
55
|
-
enablededit: boolean;
|
|
56
|
-
enableddelete: boolean;
|
|
57
|
-
enabledview: boolean;
|
|
58
|
-
enabledcancelsearch: boolean;
|
|
59
|
-
enableddetail: boolean;
|
|
60
|
-
enabledclassicons: boolean;
|
|
61
|
-
enabledclickaccess: boolean;
|
|
62
|
-
enabledclickevent: boolean;
|
|
63
|
-
enabledexpand: boolean;
|
|
64
|
-
searchopened: boolean;
|
|
65
|
-
searchonlyonebutton: boolean;
|
|
66
|
-
disablesearchlast: boolean;
|
|
67
|
-
statictitle: boolean;
|
|
68
|
-
disabledcol: string;
|
|
69
|
-
accessicon: string;
|
|
70
|
-
loadoninit: boolean;
|
|
71
|
-
data: any[];
|
|
72
|
-
searchmodel: any;
|
|
73
|
-
onbeforesearch: EventEmitter<any>;
|
|
74
|
-
onloadcomplete: EventEmitter<any>;
|
|
75
|
-
onclosemodal: EventEmitter<any>;
|
|
76
|
-
onnew: EventEmitter<any>;
|
|
77
|
-
onedit: EventEmitter<any>;
|
|
78
|
-
onview: EventEmitter<any>;
|
|
79
|
-
ondelete: EventEmitter<any>;
|
|
80
|
-
customdelete: EventEmitter<any>;
|
|
81
|
-
dynamiccols: string;
|
|
82
|
-
buttons: InfoGridButtonModel[];
|
|
83
|
-
searchbuttons: InfoMethodGridButtonModel[];
|
|
84
|
-
showmessageerror: boolean;
|
|
85
|
-
defaultnewobject: any;
|
|
86
|
-
formModel: QueryList<NgModel>;
|
|
87
|
-
formSearch: NgForm;
|
|
88
|
-
messages: String[];
|
|
89
|
-
resultTitle: string;
|
|
90
|
-
enabledSearch: boolean;
|
|
91
|
-
searchModelReset: any;
|
|
92
|
-
showPagebar: boolean;
|
|
93
|
-
hasPermissionNew: boolean;
|
|
94
|
-
hasPermissionEdit: boolean;
|
|
95
|
-
hasPermissionDelete: boolean;
|
|
96
|
-
tableHeight: number;
|
|
97
|
-
loading: boolean;
|
|
98
|
-
pagebarTitle: string;
|
|
99
|
-
icons: any[];
|
|
100
|
-
colunasItens: any[];
|
|
101
|
-
colunasHeaders: any[];
|
|
102
|
-
colunasPadraoHeaders: any[];
|
|
103
|
-
colunasType: any[];
|
|
104
|
-
colunasWidth: any[];
|
|
105
|
-
colunasTranslate: any[];
|
|
106
|
-
colunasHtml: any[];
|
|
107
|
-
colunasItensExpandidos: any[];
|
|
108
|
-
currentUrl: string;
|
|
109
|
-
url: string;
|
|
110
|
-
chaveStorage: string;
|
|
111
|
-
identificador: string;
|
|
112
|
-
limitcharacters: number;
|
|
113
|
-
callTimeout: any;
|
|
114
|
-
paginator: InfoPaginatorComponent;
|
|
115
|
-
parentIdUrlChange: EventEmitter<any>;
|
|
116
|
-
parentIdUrlValue: number;
|
|
117
|
-
get parentIdUrl(): number;
|
|
118
|
-
set parentIdUrl(value: number);
|
|
119
|
-
_cols: string;
|
|
120
|
-
get cols(): string;
|
|
121
|
-
set cols(value: string);
|
|
122
|
-
constructor(_dialog: InfoDialogModal, _platform: InfoPlatformModel, modal: MatDialog, _prop: InfoFormPropModel, _dataAccessService: InfoDataService, _router: Router, _activatedRoute: ActivatedRoute, _authenticationService: InfoAuthenticationService, _changeDetectorRef: ChangeDetectorRef, _translate: InfoTranslateService, _lastSearch: InfoLastSearchModel, _renderer: Renderer2, _element: ElementRef);
|
|
123
|
-
ngOnInit(): void;
|
|
124
|
-
ngAfterViewInit(): void;
|
|
125
|
-
ngOnDestroy(): void;
|
|
126
|
-
setColumns(): void;
|
|
127
|
-
setItensExpandidos(): void;
|
|
128
|
-
setPagebarTitle(): void;
|
|
129
|
-
navigateTo(url: string, passId: boolean, id?: string): void;
|
|
130
|
-
openCustomModal(modalComponent: any, width: Number, model?: any): void;
|
|
131
|
-
getData(): void;
|
|
132
|
-
getAll(): any;
|
|
133
|
-
getPaged(): any;
|
|
134
|
-
getSearch(): any;
|
|
135
|
-
getByParentId(): any;
|
|
136
|
-
getDataReturn(result: any, refreshPaginator?: boolean): void;
|
|
137
|
-
changePage(index: number): void;
|
|
138
|
-
cancelSearch(): void;
|
|
139
|
-
search(): void;
|
|
140
|
-
add(): void;
|
|
141
|
-
detail(model: any): void;
|
|
142
|
-
mostrarMais(linha: any, coluna: any): void;
|
|
143
|
-
access(model: any): void;
|
|
144
|
-
view(model: any): void;
|
|
145
|
-
edit(model: any): void;
|
|
146
|
-
delete(model: any): void;
|
|
147
|
-
customizeTable(): void;
|
|
148
|
-
fillIcons(): void;
|
|
149
|
-
info(value: any): void;
|
|
150
|
-
back(): void;
|
|
151
|
-
openModal(modalComponent?: any, width?: Number): void;
|
|
152
|
-
hideLoad(): void;
|
|
153
|
-
getPermission(): void;
|
|
154
|
-
download(arquivoId: any): void;
|
|
155
|
-
eventButton(model: any, api: any, method: string, confirm?: boolean): void;
|
|
156
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoGridComponent, never>;
|
|
157
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoGridComponent, "info-grid", never, { "pagetitle": "pagetitle"; "prefixtitle": "prefixtitle"; "description": "description"; "pagebarbuttons": "pagebarbuttons"; "fullarea": "fullarea"; "api": "api"; "method": "method"; "form": "form"; "width": "width"; "parent": "parent"; "apidownload": "apidownload"; "methoddownload": "methoddownload"; "backurl": "backurl"; "newurl": "newurl"; "newlabel": "newlabel"; "editurl": "editurl"; "viewurl": "viewurl"; "templateurl": "templateurl"; "paged": "paged"; "size": "size"; "autorefresh": "autorefresh"; "enabledcols": "enabledcols"; "enablednew": "enablednew"; "enablededit": "enablededit"; "enableddelete": "enableddelete"; "enabledview": "enabledview"; "enabledcancelsearch": "enabledcancelsearch"; "enableddetail": "enableddetail"; "enabledclassicons": "enabledclassicons"; "enabledclickaccess": "enabledclickaccess"; "enabledclickevent": "enabledclickevent"; "enabledexpand": "enabledexpand"; "searchopened": "searchopened"; "searchonlyonebutton": "searchonlyonebutton"; "disablesearchlast": "disablesearchlast"; "statictitle": "statictitle"; "disabledcol": "disabledcol"; "accessicon": "accessicon"; "loadoninit": "loadoninit"; "data": "data"; "searchmodel": "searchmodel"; "dynamiccols": "dynamiccols"; "buttons": "buttons"; "searchbuttons": "searchbuttons"; "showmessageerror": "showmessageerror"; "defaultnewobject": "defaultnewobject"; "parentIdUrl": "parentIdUrl"; "cols": "cols"; }, { "onbeforesearch": "onbeforesearch"; "onloadcomplete": "onloadcomplete"; "onclosemodal": "onclosemodal"; "onnew": "onnew"; "onedit": "onedit"; "onview": "onview"; "ondelete": "ondelete"; "customdelete": "customdelete"; "parentIdUrlChange": "parentIdUrlChange"; }, ["formModel"], ["*"], false, never>;
|
|
158
|
-
}
|
|
159
|
-
export declare class InfoGridModalComponent {
|
|
160
|
-
_prop: InfoFormPropModel;
|
|
161
|
-
private _ref;
|
|
162
|
-
private _modal;
|
|
163
|
-
identificador: string;
|
|
164
|
-
chaveStorage: string;
|
|
165
|
-
colunas: any;
|
|
166
|
-
dadosStorage: any;
|
|
167
|
-
constructor(_prop: InfoFormPropModel, _ref: MatDialogRef<InfoGridModalComponent>, _modal: MatDialog);
|
|
168
|
-
ngOnInit(): void;
|
|
169
|
-
save(): void;
|
|
170
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoGridModalComponent, never>;
|
|
171
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoGridModalComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
172
|
-
}
|
|
1
|
+
import { OnInit, AfterViewInit, EventEmitter, ChangeDetectorRef, Renderer2, ElementRef } from "@angular/core";
|
|
2
|
+
import { InfoDataService } from "../../service/data.service";
|
|
3
|
+
import { InfoFormPropModel } from "../../model/form-prop.model";
|
|
4
|
+
import { InfoPaginatorComponent } from "../paginator/paginator.component";
|
|
5
|
+
import { InfoDialogModal } from "../../layouts/dialog/dialog.component";
|
|
6
|
+
import { MatDialog, MatDialogRef } from "@angular/material/dialog";
|
|
7
|
+
import { ActivatedRoute, Router } from "@angular/router";
|
|
8
|
+
import { InfoAuthenticationService } from "../../service/authentication.service";
|
|
9
|
+
import { InfoTranslateService } from "../../service/translate.service";
|
|
10
|
+
import { InfoPagebarButtonModel } from "../../model/pagebar-buttons.model";
|
|
11
|
+
import { InfoGridButtonModel } from "../../model/grid-button.model";
|
|
12
|
+
import { InfoLastSearchModel } from "../../model/last-search.model";
|
|
13
|
+
import { InfoMethodGridButtonModel } from "../../model/method-grid-button.model";
|
|
14
|
+
import { NgModel, NgForm } from '@angular/forms';
|
|
15
|
+
import { QueryList } from '@angular/core';
|
|
16
|
+
import { InfoPlatformModel } from "../../model/platform.model";
|
|
17
|
+
import * as i0 from "@angular/core";
|
|
18
|
+
export declare class InfoGridComponent implements OnInit, AfterViewInit {
|
|
19
|
+
private _dialog;
|
|
20
|
+
_platform: InfoPlatformModel;
|
|
21
|
+
modal: MatDialog;
|
|
22
|
+
private _prop;
|
|
23
|
+
private _dataAccessService;
|
|
24
|
+
private _router;
|
|
25
|
+
private _activatedRoute;
|
|
26
|
+
private _authenticationService;
|
|
27
|
+
private _changeDetectorRef;
|
|
28
|
+
private _translate;
|
|
29
|
+
private _lastSearch;
|
|
30
|
+
private _renderer;
|
|
31
|
+
private _element;
|
|
32
|
+
pagetitle: string;
|
|
33
|
+
prefixtitle: string;
|
|
34
|
+
description: string;
|
|
35
|
+
pagebarbuttons: InfoPagebarButtonModel[];
|
|
36
|
+
fullarea: boolean;
|
|
37
|
+
api: any;
|
|
38
|
+
method: string;
|
|
39
|
+
form: any;
|
|
40
|
+
width: number;
|
|
41
|
+
parent: any;
|
|
42
|
+
apidownload: any;
|
|
43
|
+
methoddownload: string;
|
|
44
|
+
backurl: string;
|
|
45
|
+
newurl: string;
|
|
46
|
+
newlabel: string;
|
|
47
|
+
editurl: string;
|
|
48
|
+
viewurl: string;
|
|
49
|
+
templateurl: string;
|
|
50
|
+
paged: boolean;
|
|
51
|
+
size: number;
|
|
52
|
+
autorefresh: number;
|
|
53
|
+
enabledcols: boolean;
|
|
54
|
+
enablednew: boolean;
|
|
55
|
+
enablededit: boolean;
|
|
56
|
+
enableddelete: boolean;
|
|
57
|
+
enabledview: boolean;
|
|
58
|
+
enabledcancelsearch: boolean;
|
|
59
|
+
enableddetail: boolean;
|
|
60
|
+
enabledclassicons: boolean;
|
|
61
|
+
enabledclickaccess: boolean;
|
|
62
|
+
enabledclickevent: boolean;
|
|
63
|
+
enabledexpand: boolean;
|
|
64
|
+
searchopened: boolean;
|
|
65
|
+
searchonlyonebutton: boolean;
|
|
66
|
+
disablesearchlast: boolean;
|
|
67
|
+
statictitle: boolean;
|
|
68
|
+
disabledcol: string;
|
|
69
|
+
accessicon: string;
|
|
70
|
+
loadoninit: boolean;
|
|
71
|
+
data: any[];
|
|
72
|
+
searchmodel: any;
|
|
73
|
+
onbeforesearch: EventEmitter<any>;
|
|
74
|
+
onloadcomplete: EventEmitter<any>;
|
|
75
|
+
onclosemodal: EventEmitter<any>;
|
|
76
|
+
onnew: EventEmitter<any>;
|
|
77
|
+
onedit: EventEmitter<any>;
|
|
78
|
+
onview: EventEmitter<any>;
|
|
79
|
+
ondelete: EventEmitter<any>;
|
|
80
|
+
customdelete: EventEmitter<any>;
|
|
81
|
+
dynamiccols: string;
|
|
82
|
+
buttons: InfoGridButtonModel[];
|
|
83
|
+
searchbuttons: InfoMethodGridButtonModel[];
|
|
84
|
+
showmessageerror: boolean;
|
|
85
|
+
defaultnewobject: any;
|
|
86
|
+
formModel: QueryList<NgModel>;
|
|
87
|
+
formSearch: NgForm;
|
|
88
|
+
messages: String[];
|
|
89
|
+
resultTitle: string;
|
|
90
|
+
enabledSearch: boolean;
|
|
91
|
+
searchModelReset: any;
|
|
92
|
+
showPagebar: boolean;
|
|
93
|
+
hasPermissionNew: boolean;
|
|
94
|
+
hasPermissionEdit: boolean;
|
|
95
|
+
hasPermissionDelete: boolean;
|
|
96
|
+
tableHeight: number;
|
|
97
|
+
loading: boolean;
|
|
98
|
+
pagebarTitle: string;
|
|
99
|
+
icons: any[];
|
|
100
|
+
colunasItens: any[];
|
|
101
|
+
colunasHeaders: any[];
|
|
102
|
+
colunasPadraoHeaders: any[];
|
|
103
|
+
colunasType: any[];
|
|
104
|
+
colunasWidth: any[];
|
|
105
|
+
colunasTranslate: any[];
|
|
106
|
+
colunasHtml: any[];
|
|
107
|
+
colunasItensExpandidos: any[];
|
|
108
|
+
currentUrl: string;
|
|
109
|
+
url: string;
|
|
110
|
+
chaveStorage: string;
|
|
111
|
+
identificador: string;
|
|
112
|
+
limitcharacters: number;
|
|
113
|
+
callTimeout: any;
|
|
114
|
+
paginator: InfoPaginatorComponent;
|
|
115
|
+
parentIdUrlChange: EventEmitter<any>;
|
|
116
|
+
parentIdUrlValue: number;
|
|
117
|
+
get parentIdUrl(): number;
|
|
118
|
+
set parentIdUrl(value: number);
|
|
119
|
+
_cols: string;
|
|
120
|
+
get cols(): string;
|
|
121
|
+
set cols(value: string);
|
|
122
|
+
constructor(_dialog: InfoDialogModal, _platform: InfoPlatformModel, modal: MatDialog, _prop: InfoFormPropModel, _dataAccessService: InfoDataService, _router: Router, _activatedRoute: ActivatedRoute, _authenticationService: InfoAuthenticationService, _changeDetectorRef: ChangeDetectorRef, _translate: InfoTranslateService, _lastSearch: InfoLastSearchModel, _renderer: Renderer2, _element: ElementRef);
|
|
123
|
+
ngOnInit(): void;
|
|
124
|
+
ngAfterViewInit(): void;
|
|
125
|
+
ngOnDestroy(): void;
|
|
126
|
+
setColumns(): void;
|
|
127
|
+
setItensExpandidos(): void;
|
|
128
|
+
setPagebarTitle(): void;
|
|
129
|
+
navigateTo(url: string, passId: boolean, id?: string): void;
|
|
130
|
+
openCustomModal(modalComponent: any, width: Number, model?: any): void;
|
|
131
|
+
getData(): void;
|
|
132
|
+
getAll(): any;
|
|
133
|
+
getPaged(): any;
|
|
134
|
+
getSearch(): any;
|
|
135
|
+
getByParentId(): any;
|
|
136
|
+
getDataReturn(result: any, refreshPaginator?: boolean): void;
|
|
137
|
+
changePage(index: number): void;
|
|
138
|
+
cancelSearch(): void;
|
|
139
|
+
search(): void;
|
|
140
|
+
add(): void;
|
|
141
|
+
detail(model: any): void;
|
|
142
|
+
mostrarMais(linha: any, coluna: any, e: Event): void;
|
|
143
|
+
access(model: any, e: Event): void;
|
|
144
|
+
view(model: any, e: Event): void;
|
|
145
|
+
edit(model: any, e: Event): void;
|
|
146
|
+
delete(model: any, e: Event): void;
|
|
147
|
+
customizeTable(): void;
|
|
148
|
+
fillIcons(): void;
|
|
149
|
+
info(value: any): void;
|
|
150
|
+
back(): void;
|
|
151
|
+
openModal(modalComponent?: any, width?: Number): void;
|
|
152
|
+
hideLoad(): void;
|
|
153
|
+
getPermission(): void;
|
|
154
|
+
download(arquivoId: any): void;
|
|
155
|
+
eventButton(model: any, api: any, method: string, confirm?: boolean): void;
|
|
156
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoGridComponent, never>;
|
|
157
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoGridComponent, "info-grid", never, { "pagetitle": { "alias": "pagetitle"; "required": false; }; "prefixtitle": { "alias": "prefixtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "pagebarbuttons": { "alias": "pagebarbuttons"; "required": false; }; "fullarea": { "alias": "fullarea"; "required": false; }; "api": { "alias": "api"; "required": false; }; "method": { "alias": "method"; "required": false; }; "form": { "alias": "form"; "required": false; }; "width": { "alias": "width"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; "apidownload": { "alias": "apidownload"; "required": false; }; "methoddownload": { "alias": "methoddownload"; "required": false; }; "backurl": { "alias": "backurl"; "required": false; }; "newurl": { "alias": "newurl"; "required": false; }; "newlabel": { "alias": "newlabel"; "required": false; }; "editurl": { "alias": "editurl"; "required": false; }; "viewurl": { "alias": "viewurl"; "required": false; }; "templateurl": { "alias": "templateurl"; "required": false; }; "paged": { "alias": "paged"; "required": false; }; "size": { "alias": "size"; "required": false; }; "autorefresh": { "alias": "autorefresh"; "required": false; }; "enabledcols": { "alias": "enabledcols"; "required": false; }; "enablednew": { "alias": "enablednew"; "required": false; }; "enablededit": { "alias": "enablededit"; "required": false; }; "enableddelete": { "alias": "enableddelete"; "required": false; }; "enabledview": { "alias": "enabledview"; "required": false; }; "enabledcancelsearch": { "alias": "enabledcancelsearch"; "required": false; }; "enableddetail": { "alias": "enableddetail"; "required": false; }; "enabledclassicons": { "alias": "enabledclassicons"; "required": false; }; "enabledclickaccess": { "alias": "enabledclickaccess"; "required": false; }; "enabledclickevent": { "alias": "enabledclickevent"; "required": false; }; "enabledexpand": { "alias": "enabledexpand"; "required": false; }; "searchopened": { "alias": "searchopened"; "required": false; }; "searchonlyonebutton": { "alias": "searchonlyonebutton"; "required": false; }; "disablesearchlast": { "alias": "disablesearchlast"; "required": false; }; "statictitle": { "alias": "statictitle"; "required": false; }; "disabledcol": { "alias": "disabledcol"; "required": false; }; "accessicon": { "alias": "accessicon"; "required": false; }; "loadoninit": { "alias": "loadoninit"; "required": false; }; "data": { "alias": "data"; "required": false; }; "searchmodel": { "alias": "searchmodel"; "required": false; }; "dynamiccols": { "alias": "dynamiccols"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "searchbuttons": { "alias": "searchbuttons"; "required": false; }; "showmessageerror": { "alias": "showmessageerror"; "required": false; }; "defaultnewobject": { "alias": "defaultnewobject"; "required": false; }; "parentIdUrl": { "alias": "parentIdUrl"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; }, { "onbeforesearch": "onbeforesearch"; "onloadcomplete": "onloadcomplete"; "onclosemodal": "onclosemodal"; "onnew": "onnew"; "onedit": "onedit"; "onview": "onview"; "ondelete": "ondelete"; "customdelete": "customdelete"; "parentIdUrlChange": "parentIdUrlChange"; }, ["formModel"], ["*"], false, never>;
|
|
158
|
+
}
|
|
159
|
+
export declare class InfoGridModalComponent {
|
|
160
|
+
_prop: InfoFormPropModel;
|
|
161
|
+
private _ref;
|
|
162
|
+
private _modal;
|
|
163
|
+
identificador: string;
|
|
164
|
+
chaveStorage: string;
|
|
165
|
+
colunas: any;
|
|
166
|
+
dadosStorage: any;
|
|
167
|
+
constructor(_prop: InfoFormPropModel, _ref: MatDialogRef<InfoGridModalComponent>, _modal: MatDialog);
|
|
168
|
+
ngOnInit(): void;
|
|
169
|
+
save(): void;
|
|
170
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoGridModalComponent, never>;
|
|
171
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoGridModalComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
172
|
+
}
|
|
@@ -1,37 +1,47 @@
|
|
|
1
|
-
import { OnInit, EventEmitter } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InfoInputComponent implements OnInit, ControlValueAccessor {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { OnInit, EventEmitter, Injector } from "@angular/core";
|
|
2
|
+
import { ControlValueAccessor, AbstractControl } from "@angular/forms";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoInputComponent implements OnInit, ControlValueAccessor {
|
|
5
|
+
private injector;
|
|
6
|
+
private control;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
required: boolean;
|
|
11
|
+
maxlength: any;
|
|
12
|
+
type: string;
|
|
13
|
+
rows: number;
|
|
14
|
+
tabindex: number;
|
|
15
|
+
iconPrefix: string;
|
|
16
|
+
iconSuffix: string;
|
|
17
|
+
min: number;
|
|
18
|
+
max: number;
|
|
19
|
+
step: number;
|
|
20
|
+
validate: boolean;
|
|
21
|
+
bluronlychange: boolean;
|
|
22
|
+
onblur: EventEmitter<any>;
|
|
23
|
+
maskOptions: any;
|
|
24
|
+
value: string;
|
|
25
|
+
valueOnEnter: any;
|
|
26
|
+
customMask: string;
|
|
27
|
+
onChange: any;
|
|
28
|
+
onTouched: any;
|
|
29
|
+
passwordMode: boolean;
|
|
30
|
+
errorMessage: string;
|
|
31
|
+
formControl: AbstractControl;
|
|
32
|
+
constructor(injector: Injector);
|
|
33
|
+
ngAfterViewInit(): void;
|
|
34
|
+
ngOnInit(): void;
|
|
35
|
+
private methodIsmask;
|
|
36
|
+
get ismask(): string;
|
|
37
|
+
set ismask(value: string);
|
|
38
|
+
validarCampo(): void;
|
|
39
|
+
onBlur(): void;
|
|
40
|
+
onChangeValue(): void;
|
|
41
|
+
writeValue(modelValue: any): void;
|
|
42
|
+
registerOnChange(fn: any): void;
|
|
43
|
+
registerOnTouched(fn: any): void;
|
|
44
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoInputComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoInputComponent, "info-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "type": { "alias": "type"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "iconPrefix": { "alias": "iconPrefix"; "required": false; }; "iconSuffix": { "alias": "iconSuffix"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "validate": { "alias": "validate"; "required": false; }; "bluronlychange": { "alias": "bluronlychange"; "required": false; }; "ismask": { "alias": "ismask"; "required": false; }; }, { "onblur": "onblur"; }, never, never, false, never>;
|
|
47
|
+
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { OnChanges } from "@angular/core";
|
|
2
|
-
import { InfoDialogModal } from "../../layouts/dialog/dialog.component";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InfoInputListComponent implements OnChanges {
|
|
5
|
-
private _dialog;
|
|
6
|
-
model: any;
|
|
7
|
-
readonly: boolean;
|
|
8
|
-
percent: boolean;
|
|
9
|
-
hiddenDe: boolean;
|
|
10
|
-
disabled: boolean;
|
|
11
|
-
mask: string;
|
|
12
|
-
get ismask(): string;
|
|
13
|
-
set ismask(value: string);
|
|
14
|
-
messages: string[];
|
|
15
|
-
novoValor: {
|
|
16
|
-
De: any;
|
|
17
|
-
Ate: any;
|
|
18
|
-
Valor: any;
|
|
19
|
-
Excluir: boolean;
|
|
20
|
-
};
|
|
21
|
-
constructor(_dialog: InfoDialogModal);
|
|
22
|
-
ngOnChanges(): void;
|
|
23
|
-
getModel(): any[];
|
|
24
|
-
add(): void;
|
|
25
|
-
remover(item: any): void;
|
|
26
|
-
ordernar(): void;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoInputListComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoInputListComponent, "info-input-list", never, { "model": "model"; "readonly": "readonly"; "percent": "percent"; "hiddenDe": "hiddenDe"; "disabled": "disabled"; "ismask": "ismask"; }, {}, never, never, false, never>;
|
|
29
|
-
}
|
|
1
|
+
import { OnChanges } from "@angular/core";
|
|
2
|
+
import { InfoDialogModal } from "../../layouts/dialog/dialog.component";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoInputListComponent implements OnChanges {
|
|
5
|
+
private _dialog;
|
|
6
|
+
model: any;
|
|
7
|
+
readonly: boolean;
|
|
8
|
+
percent: boolean;
|
|
9
|
+
hiddenDe: boolean;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
mask: string;
|
|
12
|
+
get ismask(): string;
|
|
13
|
+
set ismask(value: string);
|
|
14
|
+
messages: string[];
|
|
15
|
+
novoValor: {
|
|
16
|
+
De: any;
|
|
17
|
+
Ate: any;
|
|
18
|
+
Valor: any;
|
|
19
|
+
Excluir: boolean;
|
|
20
|
+
};
|
|
21
|
+
constructor(_dialog: InfoDialogModal);
|
|
22
|
+
ngOnChanges(): void;
|
|
23
|
+
getModel(): any[];
|
|
24
|
+
add(): void;
|
|
25
|
+
remover(item: any): void;
|
|
26
|
+
ordernar(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoInputListComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoInputListComponent, "info-input-list", never, { "model": { "alias": "model"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "percent": { "alias": "percent"; "required": false; }; "hiddenDe": { "alias": "hiddenDe"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ismask": { "alias": "ismask"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { InfoTranslateService } from "../../service/translate.service";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InfoListCheckboxComponent implements OnInit {
|
|
5
|
-
private _translate;
|
|
6
|
-
filterlabel: string;
|
|
7
|
-
filterdescription: string;
|
|
8
|
-
selectedlabel: string;
|
|
9
|
-
selecteddescription: string;
|
|
10
|
-
model: any[];
|
|
11
|
-
max: number;
|
|
12
|
-
onelist: boolean;
|
|
13
|
-
private disabledValue;
|
|
14
|
-
get disabled(): any;
|
|
15
|
-
set disabled(value: any);
|
|
16
|
-
filterList: string;
|
|
17
|
-
filterSelected: string;
|
|
18
|
-
message: string;
|
|
19
|
-
constructor(_translate: InfoTranslateService);
|
|
20
|
-
ngOnInit(): void;
|
|
21
|
-
getModel(valor: string, selecionados?: boolean, todos?: boolean): any[];
|
|
22
|
-
marcarFiltrados(valor: string, marcar: boolean, selecionados?: boolean): void;
|
|
23
|
-
marcarTodos(marcar: boolean): void;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoListCheckboxComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoListCheckboxComponent, "info-list-checkbox", never, { "filterlabel": "filterlabel"; "filterdescription": "filterdescription"; "selectedlabel": "selectedlabel"; "selecteddescription": "selecteddescription"; "model": "model"; "max": "max"; "onelist": "onelist"; "disabled": "disabled"; }, {}, never, never, false, never>;
|
|
26
|
-
}
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { InfoTranslateService } from "../../service/translate.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoListCheckboxComponent implements OnInit {
|
|
5
|
+
private _translate;
|
|
6
|
+
filterlabel: string;
|
|
7
|
+
filterdescription: string;
|
|
8
|
+
selectedlabel: string;
|
|
9
|
+
selecteddescription: string;
|
|
10
|
+
model: any[];
|
|
11
|
+
max: number;
|
|
12
|
+
onelist: boolean;
|
|
13
|
+
private disabledValue;
|
|
14
|
+
get disabled(): any;
|
|
15
|
+
set disabled(value: any);
|
|
16
|
+
filterList: string;
|
|
17
|
+
filterSelected: string;
|
|
18
|
+
message: string;
|
|
19
|
+
constructor(_translate: InfoTranslateService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
getModel(valor: string, selecionados?: boolean, todos?: boolean): any[];
|
|
22
|
+
marcarFiltrados(valor: string, marcar: boolean, selecionados?: boolean): void;
|
|
23
|
+
marcarTodos(marcar: boolean): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoListCheckboxComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoListCheckboxComponent, "info-list-checkbox", never, { "filterlabel": { "alias": "filterlabel"; "required": false; }; "filterdescription": { "alias": "filterdescription"; "required": false; }; "selectedlabel": { "alias": "selectedlabel"; "required": false; }; "selecteddescription": { "alias": "selecteddescription"; "required": false; }; "model": { "alias": "model"; "required": false; }; "max": { "alias": "max"; "required": false; }; "onelist": { "alias": "onelist"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class InfoMessageComponent {
|
|
3
|
-
color: string;
|
|
4
|
-
outline: boolean;
|
|
5
|
-
close: boolean;
|
|
6
|
-
min: boolean;
|
|
7
|
-
delete(event: any, message: any): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoMessageComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoMessageComponent, "info-message", never, { "color": "color"; "outline": "outline"; "close": "close"; "min": "min"; }, {}, never, ["*"], false, never>;
|
|
10
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class InfoMessageComponent {
|
|
3
|
+
color: string;
|
|
4
|
+
outline: boolean;
|
|
5
|
+
close: boolean;
|
|
6
|
+
min: boolean;
|
|
7
|
+
delete(event: any, message: any): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoMessageComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoMessageComponent, "info-message", never, { "color": { "alias": "color"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "close": { "alias": "close"; "required": false; }; "min": { "alias": "min"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
10
|
+
}
|