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,7 +1,7 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class InfoAlertComponent {
|
|
3
|
-
messages: string[];
|
|
4
|
-
onClose(): void;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoAlertComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoAlertComponent, "info-alert", never, { "messages": "messages"; }, {}, never, ["*"], false, never>;
|
|
7
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class InfoAlertComponent {
|
|
3
|
+
messages: string[];
|
|
4
|
+
onClose(): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoAlertComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoAlertComponent, "info-alert", never, { "messages": { "alias": "messages"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
|
+
}
|
|
@@ -1,51 +1,52 @@
|
|
|
1
|
-
import { OnInit, EventEmitter } from "@angular/core";
|
|
2
|
-
import { UntypedFormControl, ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { InfoDataService } from "../../service/data.service";
|
|
4
|
-
import { Observable } from "rxjs";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InfoAutoCompleteComponent implements OnInit, ControlValueAccessor {
|
|
7
|
-
private _dataAcess;
|
|
8
|
-
control: UntypedFormControl;
|
|
9
|
-
placeholder: string;
|
|
10
|
-
name: string;
|
|
11
|
-
required: boolean;
|
|
12
|
-
selectfirst: boolean;
|
|
13
|
-
disablednoregisters: boolean;
|
|
14
|
-
getdataonchange: boolean;
|
|
15
|
-
getdataonchangetime: number;
|
|
16
|
-
api: any;
|
|
17
|
-
method: string;
|
|
18
|
-
maxlist: number;
|
|
19
|
-
startwith: boolean;
|
|
20
|
-
minchar: number;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
static
|
|
51
|
-
}
|
|
1
|
+
import { OnInit, EventEmitter } from "@angular/core";
|
|
2
|
+
import { UntypedFormControl, ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import { InfoDataService } from "../../service/data.service";
|
|
4
|
+
import { Observable } from "rxjs";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class InfoAutoCompleteComponent implements OnInit, ControlValueAccessor {
|
|
7
|
+
private _dataAcess;
|
|
8
|
+
control: UntypedFormControl;
|
|
9
|
+
placeholder: string;
|
|
10
|
+
name: string;
|
|
11
|
+
required: boolean;
|
|
12
|
+
selectfirst: boolean;
|
|
13
|
+
disablednoregisters: boolean;
|
|
14
|
+
getdataonchange: boolean;
|
|
15
|
+
getdataonchangetime: number;
|
|
16
|
+
api: any;
|
|
17
|
+
method: string;
|
|
18
|
+
maxlist: number;
|
|
19
|
+
startwith: boolean;
|
|
20
|
+
minchar: number;
|
|
21
|
+
notoken: boolean;
|
|
22
|
+
onselecteditem: EventEmitter<any>;
|
|
23
|
+
options: any[];
|
|
24
|
+
selectedValue: any;
|
|
25
|
+
onChange: any;
|
|
26
|
+
onTouched: any;
|
|
27
|
+
initialized: boolean;
|
|
28
|
+
_loading: boolean;
|
|
29
|
+
get loading(): boolean;
|
|
30
|
+
set loading(value: boolean);
|
|
31
|
+
_params: string;
|
|
32
|
+
get params(): string;
|
|
33
|
+
set params(value: string);
|
|
34
|
+
_disabled: boolean;
|
|
35
|
+
set disabled(value: boolean);
|
|
36
|
+
_data: any;
|
|
37
|
+
get data(): any;
|
|
38
|
+
set data(value: any);
|
|
39
|
+
constructor(_dataAcess: InfoDataService);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
filter(value: any): any[];
|
|
42
|
+
getData(value?: any): Observable<any>;
|
|
43
|
+
onBlur(value: any): void;
|
|
44
|
+
onFocus(value: any): void;
|
|
45
|
+
displayFn(model: any): string;
|
|
46
|
+
writeValue(value: any): void;
|
|
47
|
+
registerOnChange(fn: any): void;
|
|
48
|
+
registerOnTouched(fn: any): void;
|
|
49
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoAutoCompleteComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoAutoCompleteComponent, "info-autocomplete", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "selectfirst": { "alias": "selectfirst"; "required": false; }; "disablednoregisters": { "alias": "disablednoregisters"; "required": false; }; "getdataonchange": { "alias": "getdataonchange"; "required": false; }; "getdataonchangetime": { "alias": "getdataonchangetime"; "required": false; }; "api": { "alias": "api"; "required": false; }; "method": { "alias": "method"; "required": false; }; "maxlist": { "alias": "maxlist"; "required": false; }; "startwith": { "alias": "startwith"; "required": false; }; "minchar": { "alias": "minchar"; "required": false; }; "notoken": { "alias": "notoken"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "params": { "alias": "params"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onselecteditem": "onselecteditem"; }, never, never, false, never>;
|
|
52
|
+
}
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { InfoDataService } from "../../service/data.service";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InfoBigCheckboxComponent implements OnInit {
|
|
5
|
-
private _dataService;
|
|
6
|
-
readonly: boolean;
|
|
7
|
-
preload: boolean;
|
|
8
|
-
enabledcheckall: boolean;
|
|
9
|
-
labelselectall: string;
|
|
10
|
-
labelsearch: string;
|
|
11
|
-
minchar: number;
|
|
12
|
-
max: number;
|
|
13
|
-
message: string;
|
|
14
|
-
submessage: string;
|
|
15
|
-
value: string;
|
|
16
|
-
api: any;
|
|
17
|
-
method: string;
|
|
18
|
-
model: any;
|
|
19
|
-
data: any[];
|
|
20
|
-
aux: string;
|
|
21
|
-
private _params;
|
|
22
|
-
get params(): any;
|
|
23
|
-
set params(value: any);
|
|
24
|
-
private _paramsmodel;
|
|
25
|
-
get paramsmodel(): any;
|
|
26
|
-
set paramsmodel(value: any);
|
|
27
|
-
loading: boolean;
|
|
28
|
-
name: string;
|
|
29
|
-
constructor(_dataService: InfoDataService);
|
|
30
|
-
ngOnInit(): void;
|
|
31
|
-
getData(): void;
|
|
32
|
-
load(param?: any): void;
|
|
33
|
-
loadByParamModel(paramModel?: any): void;
|
|
34
|
-
getModel(): any[];
|
|
35
|
-
getFilteredData(): any[];
|
|
36
|
-
existData(): boolean;
|
|
37
|
-
add(item: any): void;
|
|
38
|
-
selectAll(): void;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoBigCheckboxComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoBigCheckboxComponent, "info-big-checkbox", never, { "readonly": "readonly"; "preload": "preload"; "enabledcheckall": "enabledcheckall"; "labelselectall": "labelselectall"; "labelsearch": "labelsearch"; "minchar": "minchar"; "max": "max"; "message": "message"; "submessage": "submessage"; "value": "value"; "api": "api"; "method": "method"; "model": "model"; "data": "data"; "aux": "aux"; "params": "params"; "paramsmodel": "paramsmodel"; }, {}, never, never, false, never>;
|
|
41
|
-
}
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { InfoDataService } from "../../service/data.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoBigCheckboxComponent implements OnInit {
|
|
5
|
+
private _dataService;
|
|
6
|
+
readonly: boolean;
|
|
7
|
+
preload: boolean;
|
|
8
|
+
enabledcheckall: boolean;
|
|
9
|
+
labelselectall: string;
|
|
10
|
+
labelsearch: string;
|
|
11
|
+
minchar: number;
|
|
12
|
+
max: number;
|
|
13
|
+
message: string;
|
|
14
|
+
submessage: string;
|
|
15
|
+
value: string;
|
|
16
|
+
api: any;
|
|
17
|
+
method: string;
|
|
18
|
+
model: any;
|
|
19
|
+
data: any[];
|
|
20
|
+
aux: string;
|
|
21
|
+
private _params;
|
|
22
|
+
get params(): any;
|
|
23
|
+
set params(value: any);
|
|
24
|
+
private _paramsmodel;
|
|
25
|
+
get paramsmodel(): any;
|
|
26
|
+
set paramsmodel(value: any);
|
|
27
|
+
loading: boolean;
|
|
28
|
+
name: string;
|
|
29
|
+
constructor(_dataService: InfoDataService);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
getData(): void;
|
|
32
|
+
load(param?: any): void;
|
|
33
|
+
loadByParamModel(paramModel?: any): void;
|
|
34
|
+
getModel(): any[];
|
|
35
|
+
getFilteredData(): any[];
|
|
36
|
+
existData(): boolean;
|
|
37
|
+
add(item: any): void;
|
|
38
|
+
selectAll(): void;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoBigCheckboxComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoBigCheckboxComponent, "info-big-checkbox", never, { "readonly": { "alias": "readonly"; "required": false; }; "preload": { "alias": "preload"; "required": false; }; "enabledcheckall": { "alias": "enabledcheckall"; "required": false; }; "labelselectall": { "alias": "labelselectall"; "required": false; }; "labelsearch": { "alias": "labelsearch"; "required": false; }; "minchar": { "alias": "minchar"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "submessage": { "alias": "submessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; "api": { "alias": "api"; "required": false; }; "method": { "alias": "method"; "required": false; }; "model": { "alias": "model"; "required": false; }; "data": { "alias": "data"; "required": false; }; "aux": { "alias": "aux"; "required": false; }; "params": { "alias": "params"; "required": false; }; "paramsmodel": { "alias": "paramsmodel"; "required": false; }; }, {}, never, never, false, never>;
|
|
41
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InfoCardComponent {
|
|
5
|
-
private _router;
|
|
6
|
-
label: string;
|
|
7
|
-
description: string;
|
|
8
|
-
mark: string;
|
|
9
|
-
url: string;
|
|
10
|
-
icon: string;
|
|
11
|
-
onclick: EventEmitter<any>;
|
|
12
|
-
constructor(_router: Router);
|
|
13
|
-
onCardClick(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoCardComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoCardComponent, "info-card", never, { "label": "label"; "description": "description"; "mark": "mark"; "url": "url"; "icon": "icon"; }, { "onclick": "onclick"; }, never, never, false, never>;
|
|
16
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoCardComponent {
|
|
5
|
+
private _router;
|
|
6
|
+
label: string;
|
|
7
|
+
description: string;
|
|
8
|
+
mark: string;
|
|
9
|
+
url: string;
|
|
10
|
+
icon: string;
|
|
11
|
+
onclick: EventEmitter<any>;
|
|
12
|
+
constructor(_router: Router);
|
|
13
|
+
onCardClick(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoCardComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoCardComponent, "info-card", never, { "label": { "alias": "label"; "required": false; }; "description": { "alias": "description"; "required": false; }; "mark": { "alias": "mark"; "required": false; }; "url": { "alias": "url"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, { "onclick": "onclick"; }, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
/**
|
|
4
|
-
* O atributo `menu` recebe uma lista responsável pela criação do menu:
|
|
5
|
-
* ```
|
|
6
|
-
* [{ title: string, url: string, permission: boolean }]
|
|
7
|
-
* ```
|
|
8
|
-
*/
|
|
9
|
-
export declare class InfoMenuCardComponent implements OnInit {
|
|
10
|
-
label: string;
|
|
11
|
-
description: string;
|
|
12
|
-
icon: string;
|
|
13
|
-
menu: any[];
|
|
14
|
-
cols: number;
|
|
15
|
-
loadinit: boolean;
|
|
16
|
-
menuRows: any[];
|
|
17
|
-
col: number;
|
|
18
|
-
colClass: string;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
load(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoMenuCardComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoMenuCardComponent, "info-card-menu", never, { "label": "label"; "description": "description"; "icon": "icon"; "menu": "menu"; "cols": "cols"; "loadinit": "loadinit"; }, {}, never, never, false, never>;
|
|
23
|
-
}
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* O atributo `menu` recebe uma lista responsável pela criação do menu:
|
|
5
|
+
* ```
|
|
6
|
+
* [{ title: string, url: string, permission: boolean }]
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
export declare class InfoMenuCardComponent implements OnInit {
|
|
10
|
+
label: string;
|
|
11
|
+
description: string;
|
|
12
|
+
icon: string;
|
|
13
|
+
menu: any[];
|
|
14
|
+
cols: number;
|
|
15
|
+
loadinit: boolean;
|
|
16
|
+
menuRows: any[];
|
|
17
|
+
col: number;
|
|
18
|
+
colClass: string;
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
load(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoMenuCardComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoMenuCardComponent, "info-card-menu", never, { "label": { "alias": "label"; "required": false; }; "description": { "alias": "description"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "loadinit": { "alias": "loadinit"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InfoCheckboxComponent implements OnInit, ControlValueAccessor {
|
|
5
|
-
placeholder: string;
|
|
6
|
-
type: string;
|
|
7
|
-
min: boolean;
|
|
8
|
-
value: boolean;
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
checkboxValue: {
|
|
11
|
-
true: any;
|
|
12
|
-
false: any;
|
|
13
|
-
};
|
|
14
|
-
initialized: boolean;
|
|
15
|
-
onChange: any;
|
|
16
|
-
onTouched: any;
|
|
17
|
-
get checked(): boolean;
|
|
18
|
-
set checked(value: boolean);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
writeValue(modelValue: any): void;
|
|
21
|
-
registerOnChange(fn: any): void;
|
|
22
|
-
registerOnTouched(fn: any): void;
|
|
23
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
24
|
-
onChangeValue(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoCheckboxComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoCheckboxComponent, "info-checkbox", never, { "placeholder": "placeholder"; "type": "type"; "min": "min"; "checked": "checked"; }, {}, never, never, false, never>;
|
|
27
|
-
}
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoCheckboxComponent implements OnInit, ControlValueAccessor {
|
|
5
|
+
placeholder: string;
|
|
6
|
+
type: string;
|
|
7
|
+
min: boolean;
|
|
8
|
+
value: boolean;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
checkboxValue: {
|
|
11
|
+
true: any;
|
|
12
|
+
false: any;
|
|
13
|
+
};
|
|
14
|
+
initialized: boolean;
|
|
15
|
+
onChange: any;
|
|
16
|
+
onTouched: any;
|
|
17
|
+
get checked(): boolean;
|
|
18
|
+
set checked(value: boolean);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
writeValue(modelValue: any): void;
|
|
21
|
+
registerOnChange(fn: any): void;
|
|
22
|
+
registerOnTouched(fn: any): void;
|
|
23
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
24
|
+
onChangeValue(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoCheckboxComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoCheckboxComponent, "info-checkbox", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "min": { "alias": "min"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InfoChipsComponent implements ControlValueAccessor {
|
|
5
|
-
placeholder: string;
|
|
6
|
-
disabled: boolean;
|
|
7
|
-
readonly: boolean;
|
|
8
|
-
readonly separatorKeysCodes: number[];
|
|
9
|
-
onblur: EventEmitter<any>;
|
|
10
|
-
values: string[];
|
|
11
|
-
onChange: any;
|
|
12
|
-
onTouched: any;
|
|
13
|
-
add(event: any): void;
|
|
14
|
-
remove(index: any): void;
|
|
15
|
-
onBlur(): void;
|
|
16
|
-
onChangeValue(): void;
|
|
17
|
-
writeValue(modelValues: any): void;
|
|
18
|
-
registerOnChange(fn: any): void;
|
|
19
|
-
registerOnTouched(fn: any): void;
|
|
20
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoChipsComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoChipsComponent, "info-chips", never, { "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; }, { "onblur": "onblur"; }, never, never, false, never>;
|
|
23
|
-
}
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoChipsComponent implements ControlValueAccessor {
|
|
5
|
+
placeholder: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
readonly: boolean;
|
|
8
|
+
readonly separatorKeysCodes: number[];
|
|
9
|
+
onblur: EventEmitter<any>;
|
|
10
|
+
values: string[];
|
|
11
|
+
onChange: any;
|
|
12
|
+
onTouched: any;
|
|
13
|
+
add(event: any): void;
|
|
14
|
+
remove(index: any): void;
|
|
15
|
+
onBlur(): void;
|
|
16
|
+
onChangeValue(): void;
|
|
17
|
+
writeValue(modelValues: any): void;
|
|
18
|
+
registerOnChange(fn: any): void;
|
|
19
|
+
registerOnTouched(fn: any): void;
|
|
20
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoChipsComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoChipsComponent, "info-chips", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, { "onblur": "onblur"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -1,37 +1,38 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare const PT_BR_DATE_FORMATS: {
|
|
4
|
-
parse: {
|
|
5
|
-
dateInput: string;
|
|
6
|
-
};
|
|
7
|
-
display: {
|
|
8
|
-
dateInput: string;
|
|
9
|
-
monthYearLabel: string;
|
|
10
|
-
dateA11yLabel: string;
|
|
11
|
-
monthYearA11yLabel: string;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
export declare class InfoDateComponent implements ControlValueAccessor {
|
|
15
|
-
placeholder: string;
|
|
16
|
-
disabled: boolean;
|
|
17
|
-
required: boolean;
|
|
18
|
-
minDate: Date;
|
|
19
|
-
maxDate: Date;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
static
|
|
37
|
-
}
|
|
1
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const PT_BR_DATE_FORMATS: {
|
|
4
|
+
parse: {
|
|
5
|
+
dateInput: string;
|
|
6
|
+
};
|
|
7
|
+
display: {
|
|
8
|
+
dateInput: string;
|
|
9
|
+
monthYearLabel: string;
|
|
10
|
+
dateA11yLabel: string;
|
|
11
|
+
monthYearA11yLabel: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export declare class InfoDateComponent implements ControlValueAccessor {
|
|
15
|
+
placeholder: string;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
required: boolean;
|
|
18
|
+
minDate: Date;
|
|
19
|
+
maxDate: Date;
|
|
20
|
+
button: boolean;
|
|
21
|
+
datefilter: any;
|
|
22
|
+
dateclass: any;
|
|
23
|
+
input: any;
|
|
24
|
+
dateValue: any;
|
|
25
|
+
dateMask: any;
|
|
26
|
+
onChange: any;
|
|
27
|
+
onTouched: any;
|
|
28
|
+
ngAfterViewInit(): void;
|
|
29
|
+
onInputDate(value: any): void;
|
|
30
|
+
onChangeValue(): void;
|
|
31
|
+
writeValue(value: any): void;
|
|
32
|
+
registerOnChange(fn: any): void;
|
|
33
|
+
registerOnTouched(fn: any): void;
|
|
34
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
35
|
+
onKeyPress(e: any): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDateComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoDateComponent, "info-date", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "button": { "alias": "button"; "required": false; }; "datefilter": { "alias": "datefilter"; "required": false; }; "dateclass": { "alias": "dateclass"; "required": false; }; }, {}, never, never, false, never>;
|
|
38
|
+
}
|
|
@@ -1,39 +1,40 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { MatDatepicker } from '@angular/material/datepicker';
|
|
3
|
-
import { Moment } from "moment";
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare const PT_BR_DATE_MONTH_FORMATS: {
|
|
6
|
-
parse: {
|
|
7
|
-
dateInput: string;
|
|
8
|
-
};
|
|
9
|
-
display: {
|
|
10
|
-
dateInput: string;
|
|
11
|
-
monthYearLabel: string;
|
|
12
|
-
dateA11yLabel: string;
|
|
13
|
-
monthYearA11yLabel: string;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
export declare class InfoDateMonthComponent implements ControlValueAccessor {
|
|
17
|
-
placeholder: string;
|
|
18
|
-
disabled: boolean;
|
|
19
|
-
required: boolean;
|
|
20
|
-
changeonlyonmonth: boolean;
|
|
21
|
-
minDate: Date;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
static
|
|
39
|
-
}
|
|
1
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
+
import { MatDatepicker } from '@angular/material/datepicker';
|
|
3
|
+
import { Moment } from "moment";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const PT_BR_DATE_MONTH_FORMATS: {
|
|
6
|
+
parse: {
|
|
7
|
+
dateInput: string;
|
|
8
|
+
};
|
|
9
|
+
display: {
|
|
10
|
+
dateInput: string;
|
|
11
|
+
monthYearLabel: string;
|
|
12
|
+
dateA11yLabel: string;
|
|
13
|
+
monthYearA11yLabel: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export declare class InfoDateMonthComponent implements ControlValueAccessor {
|
|
17
|
+
placeholder: string;
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
required: boolean;
|
|
20
|
+
changeonlyonmonth: boolean;
|
|
21
|
+
minDate: Date;
|
|
22
|
+
button: boolean;
|
|
23
|
+
input: any;
|
|
24
|
+
dateValue: any;
|
|
25
|
+
dateMask: any;
|
|
26
|
+
onChange: any;
|
|
27
|
+
onTouched: any;
|
|
28
|
+
ngAfterViewInit(): void;
|
|
29
|
+
onInputDate(value: any): void;
|
|
30
|
+
onChangeValue(): void;
|
|
31
|
+
writeValue(value: any): void;
|
|
32
|
+
registerOnChange(fn: any): void;
|
|
33
|
+
registerOnTouched(fn: any): void;
|
|
34
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
35
|
+
chosenYearHandler(value: Moment): void;
|
|
36
|
+
chosenMonthHandler(value: Moment, datepicker: MatDatepicker<Moment>): void;
|
|
37
|
+
onKeyPress(e: any): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDateMonthComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoDateMonthComponent, "info-date-month", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "changeonlyonmonth": { "alias": "changeonlyonmonth"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "button": { "alias": "button"; "required": false; }; }, {}, never, never, false, never>;
|
|
40
|
+
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
-
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
-
import { AngularEditorComponent, AngularEditorConfig } from '@kolkov/angular-editor';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InfoEditorComponent implements ControlValueAccessor {
|
|
6
|
-
private _sanitizer;
|
|
7
|
-
editor: AngularEditorComponent;
|
|
8
|
-
required: boolean;
|
|
9
|
-
enabledhtmlmode: boolean;
|
|
10
|
-
sanitize: boolean;
|
|
11
|
-
get disabled(): boolean;
|
|
12
|
-
set disabled(value: boolean);
|
|
13
|
-
get height(): string;
|
|
14
|
-
set height(value: string);
|
|
15
|
-
get minheight(): string;
|
|
16
|
-
set minheight(value: string);
|
|
17
|
-
get maxheight(): string;
|
|
18
|
-
set maxheight(value: string);
|
|
19
|
-
get width(): string;
|
|
20
|
-
set width(value: string);
|
|
21
|
-
get minwidth(): string;
|
|
22
|
-
set minwidth(value: string);
|
|
23
|
-
value: any;
|
|
24
|
-
onChange: any;
|
|
25
|
-
onTouched: any;
|
|
26
|
-
focused: boolean;
|
|
27
|
-
id: any;
|
|
28
|
-
editorConfig: AngularEditorConfig;
|
|
29
|
-
constructor(_sanitizer: DomSanitizer);
|
|
30
|
-
ngOnInit(): void;
|
|
31
|
-
ngAfterViewInit(): void;
|
|
32
|
-
private getGuid;
|
|
33
|
-
onChangeValue(): void;
|
|
34
|
-
writeValue(modelValue: any): void;
|
|
35
|
-
registerOnChange(fn: any): void;
|
|
36
|
-
registerOnTouched(fn: any): void;
|
|
37
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoEditorComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoEditorComponent, "info-editor", never, { "required": "required"; "enabledhtmlmode": "enabledhtmlmode"; "sanitize": "sanitize"; "disabled": "disabled"; "height": "height"; "minheight": "minheight"; "maxheight": "maxheight"; "width": "width"; "minwidth": "minwidth"; }, {}, never, never, false, never>;
|
|
40
|
-
}
|
|
1
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import { AngularEditorComponent, AngularEditorConfig } from '@kolkov/angular-editor';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InfoEditorComponent implements ControlValueAccessor {
|
|
6
|
+
private _sanitizer;
|
|
7
|
+
editor: AngularEditorComponent;
|
|
8
|
+
required: boolean;
|
|
9
|
+
enabledhtmlmode: boolean;
|
|
10
|
+
sanitize: boolean;
|
|
11
|
+
get disabled(): boolean;
|
|
12
|
+
set disabled(value: boolean);
|
|
13
|
+
get height(): string;
|
|
14
|
+
set height(value: string);
|
|
15
|
+
get minheight(): string;
|
|
16
|
+
set minheight(value: string);
|
|
17
|
+
get maxheight(): string;
|
|
18
|
+
set maxheight(value: string);
|
|
19
|
+
get width(): string;
|
|
20
|
+
set width(value: string);
|
|
21
|
+
get minwidth(): string;
|
|
22
|
+
set minwidth(value: string);
|
|
23
|
+
value: any;
|
|
24
|
+
onChange: any;
|
|
25
|
+
onTouched: any;
|
|
26
|
+
focused: boolean;
|
|
27
|
+
id: any;
|
|
28
|
+
editorConfig: AngularEditorConfig;
|
|
29
|
+
constructor(_sanitizer: DomSanitizer);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
ngAfterViewInit(): void;
|
|
32
|
+
private getGuid;
|
|
33
|
+
onChangeValue(): void;
|
|
34
|
+
writeValue(modelValue: any): void;
|
|
35
|
+
registerOnChange(fn: any): void;
|
|
36
|
+
registerOnTouched(fn: any): void;
|
|
37
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoEditorComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoEditorComponent, "info-editor", never, { "required": { "alias": "required"; "required": false; }; "enabledhtmlmode": { "alias": "enabledhtmlmode"; "required": false; }; "sanitize": { "alias": "sanitize"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "height": { "alias": "height"; "required": false; }; "minheight": { "alias": "minheight"; "required": false; }; "maxheight": { "alias": "maxheight"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minwidth": { "alias": "minwidth"; "required": false; }; }, {}, never, never, false, never>;
|
|
40
|
+
}
|