info-library 2.10.87 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/controls/alert/alert.component.d.ts +3 -0
- package/controls/autocomplete/autocomplete.component.d.ts +5 -2
- package/controls/big-checkbox/big-checkbox.component.d.ts +3 -0
- package/controls/card/card.component.d.ts +3 -0
- package/controls/card-menu/card-menu.component.d.ts +3 -0
- package/controls/checkbox/checkbox.component.d.ts +3 -0
- package/controls/chips/chips.component.d.ts +3 -0
- package/controls/date/date.component.d.ts +3 -0
- package/controls/date-month/date-month.component.d.ts +3 -0
- package/controls/editor/editor.component.d.ts +3 -0
- package/controls/grid/grid.component.d.ts +5 -0
- package/controls/input/input.component.d.ts +3 -0
- package/controls/input-list/input-list.component.d.ts +3 -0
- package/controls/list-checkbox/list-checkbox.component.d.ts +3 -0
- package/controls/message/message.component.d.ts +3 -0
- package/controls/multi-select/multi-select.component.d.ts +3 -0
- package/controls/paginator/paginator.component.d.ts +3 -0
- package/controls/select/select.component.d.ts +3 -0
- package/controls/timeline/timeline.component.d.ts +3 -0
- package/directives/mask.directive.d.ts +3 -0
- package/directives/unmask.directive.d.ts +3 -0
- package/esm2020/controls/alert/alert.component.mjs +74 -0
- package/esm2020/controls/autocomplete/autocomplete.component.mjs +258 -0
- package/esm2020/controls/big-checkbox/big-checkbox.component.mjs +298 -0
- package/esm2020/controls/card/card.component.mjs +77 -0
- package/esm2020/controls/card-menu/card-menu.component.mjs +145 -0
- package/esm2020/controls/checkbox/checkbox.component.mjs +93 -0
- package/esm2020/controls/chips/chips.component.mjs +113 -0
- package/esm2020/controls/date/date.component.mjs +141 -0
- package/esm2020/controls/date-month/date-month.component.mjs +148 -0
- package/esm2020/controls/editor/editor.component.mjs +135 -0
- package/esm2020/controls/grid/grid.component.mjs +1800 -0
- package/esm2020/controls/input/input.component.mjs +314 -0
- package/esm2020/controls/input-list/input-list.component.mjs +258 -0
- package/esm2020/controls/list-checkbox/list-checkbox.component.mjs +238 -0
- package/esm2020/controls/message/message.component.mjs +50 -0
- package/esm2020/controls/multi-select/multi-select.component.mjs +161 -0
- package/esm2020/controls/paginator/paginator.component.mjs +178 -0
- package/esm2020/controls/select/select.component.mjs +180 -0
- package/esm2020/controls/timeline/timeline.component.mjs +117 -0
- package/esm2020/directives/mask.directive.mjs +125 -0
- package/esm2020/directives/unmask.directive.mjs +28 -0
- package/esm2020/enum/dialog-buttons.enum.mjs +9 -0
- package/esm2020/enum/index.mjs +4 -0
- package/esm2020/enum/modal-action.enum.mjs +12 -0
- package/esm2020/enum/page-action.enum.mjs +10 -0
- package/esm2020/global-config.mjs +4 -0
- package/esm2020/info-library.mjs +5 -0
- package/esm2020/info-library.module.mjs +278 -0
- package/esm2020/layouts/dialog/dialog.component.mjs +188 -0
- package/esm2020/layouts/loading/loading.component.mjs +42 -0
- package/esm2020/layouts/main/main.component.mjs +276 -0
- package/esm2020/layouts/modal/modal.component.mjs +258 -0
- package/esm2020/layouts/pagebar/pagebar.component.mjs +404 -0
- package/esm2020/layouts/sidebar/sidebar.component.mjs +395 -0
- package/esm2020/layouts/topbar/topbar.component.mjs +863 -0
- package/esm2020/layouts/topmenu/topmenu.component.mjs +165 -0
- package/esm2020/model/app-config.model.mjs +14 -0
- package/esm2020/model/data-access.model.mjs +35 -0
- package/esm2020/model/dialog-result.model.mjs +8 -0
- package/esm2020/model/dialog.model.mjs +16 -0
- package/esm2020/model/form-prop.model.mjs +35 -0
- package/esm2020/model/grid-button.model.mjs +21 -0
- package/esm2020/model/index.mjs +15 -0
- package/esm2020/model/last-search.model.mjs +9 -0
- package/esm2020/model/login.model.mjs +9 -0
- package/esm2020/model/method-grid-button.model.mjs +9 -0
- package/esm2020/model/notification.model.mjs +9 -0
- package/esm2020/model/pagebar-buttons.model.mjs +15 -0
- package/esm2020/model/permission.model.mjs +3 -0
- package/esm2020/model/platform.model.mjs +21 -0
- package/esm2020/model/session.model.mjs +8 -0
- package/esm2020/pipe/index.mjs +3 -0
- package/esm2020/pipe/mask.pipe.mjs +34 -0
- package/esm2020/pipe/translate.pipe.mjs +26 -0
- package/esm2020/public_api.mjs +36 -0
- package/esm2020/service/authentication.service.mjs +358 -0
- package/esm2020/service/configuration.service.mjs +59 -0
- package/esm2020/service/data.service.mjs +112 -0
- package/esm2020/service/index.mjs +6 -0
- package/esm2020/service/theme.service.mjs +79 -0
- package/esm2020/service/translate.service.mjs +53 -0
- package/esm2020/utils/utilities.mjs +142 -0
- package/fesm2015/info-library.mjs +9326 -0
- package/fesm2015/info-library.mjs.map +1 -0
- package/fesm2020/info-library.mjs +8474 -0
- package/fesm2020/info-library.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/info-library.module.d.ts +58 -0
- package/layouts/dialog/dialog.component.d.ts +5 -0
- package/layouts/loading/loading.component.d.ts +3 -0
- package/layouts/main/main.component.d.ts +6 -0
- package/layouts/modal/modal.component.d.ts +3 -0
- package/layouts/pagebar/pagebar.component.d.ts +5 -0
- package/layouts/sidebar/sidebar.component.d.ts +4 -1
- package/layouts/topbar/topbar.component.d.ts +4 -1
- package/layouts/topmenu/topmenu.component.d.ts +3 -0
- package/package.json +28 -13
- package/pipe/mask.pipe.d.ts +3 -0
- package/pipe/translate.pipe.d.ts +3 -0
- package/service/authentication.service.d.ts +5 -0
- package/service/configuration.service.d.ts +3 -0
- package/service/data.service.d.ts +3 -0
- package/service/theme.service.d.ts +3 -0
- package/service/translate.service.d.ts +3 -0
- package/utils/utilities.d.ts +3 -0
- package/bundles/info-library.umd.js +0 -9740
- package/bundles/info-library.umd.js.map +0 -1
- package/bundles/info-library.umd.min.js +0 -2
- package/bundles/info-library.umd.min.js.map +0 -1
- package/esm2015/controls/alert/alert.component.js +0 -43
- package/esm2015/controls/autocomplete/autocomplete.component.js +0 -386
- package/esm2015/controls/big-checkbox/big-checkbox.component.js +0 -282
- package/esm2015/controls/card/card.component.js +0 -64
- package/esm2015/controls/card-menu/card-menu.component.js +0 -90
- package/esm2015/controls/checkbox/checkbox.component.js +0 -130
- package/esm2015/controls/chips/chips.component.js +0 -124
- package/esm2015/controls/date/date.component.js +0 -167
- package/esm2015/controls/date-month/date-month.component.js +0 -181
- package/esm2015/controls/editor/editor.component.js +0 -237
- package/esm2015/controls/grid/grid.component.js +0 -1391
- package/esm2015/controls/input/input.component.js +0 -196
- package/esm2015/controls/input-list/input-list.component.js +0 -160
- package/esm2015/controls/list-checkbox/list-checkbox.component.js +0 -151
- package/esm2015/controls/message/message.component.js +0 -47
- package/esm2015/controls/multi-select/multi-select.component.js +0 -213
- package/esm2015/controls/paginator/paginator.component.js +0 -151
- package/esm2015/controls/select/select.component.js +0 -231
- package/esm2015/controls/timeline/timeline.component.js +0 -73
- package/esm2015/directives/mask.directive.js +0 -202
- package/esm2015/directives/unmask.directive.js +0 -51
- package/esm2015/enum/dialog-buttons.enum.js +0 -20
- package/esm2015/enum/index.js +0 -9
- package/esm2015/enum/modal-action.enum.js +0 -26
- package/esm2015/enum/page-action.enum.js +0 -22
- package/esm2015/global-config.js +0 -11
- package/esm2015/info-library.js +0 -27
- package/esm2015/info-library.module.js +0 -174
- package/esm2015/layouts/dialog/dialog.component.js +0 -173
- package/esm2015/layouts/loading/loading.component.js +0 -42
- package/esm2015/layouts/main/main.component.js +0 -312
- package/esm2015/layouts/modal/modal.component.js +0 -232
- package/esm2015/layouts/pagebar/pagebar.component.js +0 -286
- package/esm2015/layouts/sidebar/sidebar.component.js +0 -231
- package/esm2015/layouts/topbar/topbar.component.js +0 -413
- package/esm2015/layouts/topmenu/topmenu.component.js +0 -181
- package/esm2015/model/app-config.model.js +0 -39
- package/esm2015/model/data-access.model.js +0 -65
- package/esm2015/model/dialog-result.model.js +0 -23
- package/esm2015/model/dialog.model.js +0 -47
- package/esm2015/model/form-prop.model.js +0 -61
- package/esm2015/model/grid-button.model.js +0 -62
- package/esm2015/model/index.js +0 -20
- package/esm2015/model/last-search.model.js +0 -24
- package/esm2015/model/login.model.js +0 -27
- package/esm2015/model/method-grid-button.model.js +0 -27
- package/esm2015/model/notification.model.js +0 -34
- package/esm2015/model/pagebar-buttons.model.js +0 -39
- package/esm2015/model/permission.model.js +0 -16
- package/esm2015/model/platform.model.js +0 -56
- package/esm2015/model/session.model.js +0 -53
- package/esm2015/pipe/index.js +0 -8
- package/esm2015/pipe/mask.pipe.js +0 -47
- package/esm2015/pipe/translate.pipe.js +0 -45
- package/esm2015/public_api.js +0 -41
- package/esm2015/service/authentication.service.js +0 -732
- package/esm2015/service/configuration.service.js +0 -107
- package/esm2015/service/data.service.js +0 -292
- package/esm2015/service/index.js +0 -11
- package/esm2015/service/theme.service.js +0 -133
- package/esm2015/service/translate.service.js +0 -105
- package/esm2015/utils/utilities.js +0 -256
- package/fesm2015/info-library.js +0 -8792
- package/fesm2015/info-library.js.map +0 -1
- package/info-library.d.ts +0 -21
- package/info-library.metadata.json +0 -1
package/index.d.ts
ADDED
package/info-library.module.d.ts
CHANGED
|
@@ -1,2 +1,60 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./pipe/translate.pipe";
|
|
3
|
+
import * as i2 from "./pipe/mask.pipe";
|
|
4
|
+
import * as i3 from "./directives/mask.directive";
|
|
5
|
+
import * as i4 from "./directives/unmask.directive";
|
|
6
|
+
import * as i5 from "./controls/alert/alert.component";
|
|
7
|
+
import * as i6 from "./controls/autocomplete/autocomplete.component";
|
|
8
|
+
import * as i7 from "./controls/big-checkbox/big-checkbox.component";
|
|
9
|
+
import * as i8 from "./controls/card/card.component";
|
|
10
|
+
import * as i9 from "./controls/card-menu/card-menu.component";
|
|
11
|
+
import * as i10 from "./controls/checkbox/checkbox.component";
|
|
12
|
+
import * as i11 from "./controls/date/date.component";
|
|
13
|
+
import * as i12 from "./controls/date-month/date-month.component";
|
|
14
|
+
import * as i13 from "./controls/grid/grid.component";
|
|
15
|
+
import * as i14 from "./controls/input/input.component";
|
|
16
|
+
import * as i15 from "./controls/input-list/input-list.component";
|
|
17
|
+
import * as i16 from "./controls/list-checkbox/list-checkbox.component";
|
|
18
|
+
import * as i17 from "./controls/message/message.component";
|
|
19
|
+
import * as i18 from "./controls/paginator/paginator.component";
|
|
20
|
+
import * as i19 from "./controls/select/select.component";
|
|
21
|
+
import * as i20 from "./controls/timeline/timeline.component";
|
|
22
|
+
import * as i21 from "./controls/editor/editor.component";
|
|
23
|
+
import * as i22 from "./controls/multi-select/multi-select.component";
|
|
24
|
+
import * as i23 from "./controls/chips/chips.component";
|
|
25
|
+
import * as i24 from "./layouts/dialog/dialog.component";
|
|
26
|
+
import * as i25 from "./layouts/loading/loading.component";
|
|
27
|
+
import * as i26 from "./layouts/main/main.component";
|
|
28
|
+
import * as i27 from "./layouts/modal/modal.component";
|
|
29
|
+
import * as i28 from "./layouts/pagebar/pagebar.component";
|
|
30
|
+
import * as i29 from "./layouts/sidebar/sidebar.component";
|
|
31
|
+
import * as i30 from "./layouts/topbar/topbar.component";
|
|
32
|
+
import * as i31 from "./layouts/topmenu/topmenu.component";
|
|
33
|
+
import * as i32 from "./service/authentication.service";
|
|
34
|
+
import * as i33 from "@angular/common";
|
|
35
|
+
import * as i34 from "@angular/common/http";
|
|
36
|
+
import * as i35 from "@angular/forms";
|
|
37
|
+
import * as i36 from "@angular/material/card";
|
|
38
|
+
import * as i37 from "@angular/material/icon";
|
|
39
|
+
import * as i38 from "@angular/material/input";
|
|
40
|
+
import * as i39 from "@angular/material/form-field";
|
|
41
|
+
import * as i40 from "@angular/material/list";
|
|
42
|
+
import * as i41 from "@angular/material/select";
|
|
43
|
+
import * as i42 from "@angular/material/checkbox";
|
|
44
|
+
import * as i43 from "@angular/material/radio";
|
|
45
|
+
import * as i44 from "@angular/material/button";
|
|
46
|
+
import * as i45 from "@angular/material/datepicker";
|
|
47
|
+
import * as i46 from "@angular/material-moment-adapter";
|
|
48
|
+
import * as i47 from "@angular/material/dialog";
|
|
49
|
+
import * as i48 from "@angular/material/progress-bar";
|
|
50
|
+
import * as i49 from "@angular/material/autocomplete";
|
|
51
|
+
import * as i50 from "@angular/material/tooltip";
|
|
52
|
+
import * as i51 from "@angular/router";
|
|
53
|
+
import * as i52 from "ng2-currency-mask";
|
|
54
|
+
import * as i53 from "@kolkov/angular-editor";
|
|
55
|
+
import * as i54 from "@angular/material/chips";
|
|
1
56
|
export declare class InfoLibraryModule {
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoLibraryModule, never>;
|
|
58
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InfoLibraryModule, [typeof i1.InfoTranslatePipe, typeof i2.InfoMaskPipe, typeof i3.InfoMaskDirective, typeof i4.InfoUnmaskDirective, typeof i5.InfoAlertComponent, typeof i6.InfoAutoCompleteComponent, typeof i7.InfoBigCheckboxComponent, typeof i8.InfoCardComponent, typeof i9.InfoMenuCardComponent, typeof i10.InfoCheckboxComponent, typeof i11.InfoDateComponent, typeof i12.InfoDateMonthComponent, typeof i13.InfoGridComponent, typeof i13.InfoGridModalComponent, typeof i14.InfoInputComponent, typeof i15.InfoInputListComponent, typeof i16.InfoListCheckboxComponent, typeof i17.InfoMessageComponent, typeof i18.InfoPaginatorComponent, typeof i19.InfoSelectComponent, typeof i20.InfoTimelineComponent, typeof i21.InfoEditorComponent, typeof i22.InfoMultiSelectComponent, typeof i23.InfoChipsComponent, typeof i24.InfoDialogComponent, typeof i25.InfoLoadingComponent, typeof i26.InfoMainComponent, typeof i27.InfoModalComponent, typeof i28.InfoPagebarComponent, typeof i29.InfoSidebarComponent, typeof i30.InfoTopbarComponent, typeof i31.InfoTopMenuComponent, typeof i28.AtalhoModalComponent, typeof i32.RefreshSessionTimeModalComponent], [typeof i33.CommonModule, typeof i34.HttpClientModule, typeof i35.FormsModule, typeof i35.ReactiveFormsModule, typeof i36.MatCardModule, typeof i37.MatIconModule, typeof i38.MatInputModule, typeof i39.MatFormFieldModule, typeof i40.MatListModule, typeof i41.MatSelectModule, typeof i42.MatCheckboxModule, typeof i43.MatRadioModule, typeof i44.MatButtonModule, typeof i45.MatDatepickerModule, typeof i46.MatMomentDateModule, typeof i47.MatDialogModule, typeof i48.MatProgressBarModule, typeof i49.MatAutocompleteModule, typeof i50.MatTooltipModule, typeof i51.RouterModule, typeof i52.CurrencyMaskModule, typeof i53.AngularEditorModule, typeof i54.MatChipsModule], [typeof i1.InfoTranslatePipe, typeof i2.InfoMaskPipe, typeof i5.InfoAlertComponent, typeof i6.InfoAutoCompleteComponent, typeof i7.InfoBigCheckboxComponent, typeof i8.InfoCardComponent, typeof i9.InfoMenuCardComponent, typeof i10.InfoCheckboxComponent, typeof i11.InfoDateComponent, typeof i12.InfoDateMonthComponent, typeof i13.InfoGridComponent, typeof i13.InfoGridModalComponent, typeof i14.InfoInputComponent, typeof i15.InfoInputListComponent, typeof i16.InfoListCheckboxComponent, typeof i17.InfoMessageComponent, typeof i18.InfoPaginatorComponent, typeof i19.InfoSelectComponent, typeof i20.InfoTimelineComponent, typeof i21.InfoEditorComponent, typeof i22.InfoMultiSelectComponent, typeof i23.InfoChipsComponent, typeof i24.InfoDialogComponent, typeof i25.InfoLoadingComponent, typeof i26.InfoMainComponent, typeof i27.InfoModalComponent, typeof i28.InfoPagebarComponent, typeof i29.InfoSidebarComponent, typeof i30.InfoTopbarComponent, typeof i31.InfoTopMenuComponent]>;
|
|
59
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InfoLibraryModule>;
|
|
2
60
|
}
|
|
@@ -3,6 +3,7 @@ import { MatDialogRef, MatDialog } from "@angular/material/dialog";
|
|
|
3
3
|
import { InfoDialogModel } from "../../model/dialog.model";
|
|
4
4
|
import { InfoDialogResult } from "../../model/dialog-result.model";
|
|
5
5
|
import { Observable } from "rxjs";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class InfoDialogModal {
|
|
7
8
|
dialog: MatDialog;
|
|
8
9
|
refProcessing: MatDialogRef<InfoDialogComponent>;
|
|
@@ -12,6 +13,8 @@ export declare class InfoDialogModal {
|
|
|
12
13
|
Confirm(message: string): Observable<InfoDialogResult>;
|
|
13
14
|
Custom(model: InfoDialogModel): Observable<InfoDialogResult>;
|
|
14
15
|
Processing(): Observable<any>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDialogModal, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InfoDialogModal>;
|
|
15
18
|
}
|
|
16
19
|
export declare class InfoDialogComponent implements OnInit {
|
|
17
20
|
ref: MatDialogRef<InfoDialogComponent>;
|
|
@@ -21,4 +24,6 @@ export declare class InfoDialogComponent implements OnInit {
|
|
|
21
24
|
onclickCancel(): void;
|
|
22
25
|
onclickOk(): void;
|
|
23
26
|
onclickAux(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoDialogComponent, "info-dialog", never, {}, {}, never, never, false>;
|
|
24
29
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class InfoLoadingComponent {
|
|
2
3
|
enabled: boolean;
|
|
3
4
|
mode: string;
|
|
4
5
|
color: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoLoadingComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoLoadingComponent, "info-loading", never, { "enabled": "enabled"; "mode": "mode"; "color": "color"; }, {}, never, never, false>;
|
|
5
8
|
}
|
|
@@ -5,7 +5,9 @@ import { InfoPlatformModel } from "../../model/platform.model";
|
|
|
5
5
|
import { InfoSessionModel } from "../../model/session.model";
|
|
6
6
|
import { InfoThemeService } from '../../service/theme.service';
|
|
7
7
|
import { InfoTopbarComponent } from "../topbar/topbar.component";
|
|
8
|
+
import { InfoSidebarComponent } from "../sidebar/sidebar.component";
|
|
8
9
|
import { Utilities } from "../../utils/utilities";
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
9
11
|
export declare class InfoMainComponent implements OnInit {
|
|
10
12
|
_platform: InfoPlatformModel;
|
|
11
13
|
private _session;
|
|
@@ -43,11 +45,15 @@ export declare class InfoMainComponent implements OnInit {
|
|
|
43
45
|
ongetnotification: EventEmitter<any>;
|
|
44
46
|
onverifynotification: EventEmitter<any>;
|
|
45
47
|
topbar: InfoTopbarComponent;
|
|
48
|
+
sidebar: InfoSidebarComponent;
|
|
46
49
|
constructor(_platform: InfoPlatformModel, _session: InfoSessionModel, _router: Router, _dataAccessService: InfoDataService, _themeService: InfoThemeService, _renderer: Renderer2, _element: ElementRef, _utilities: Utilities);
|
|
47
50
|
ngOnInit(): void;
|
|
48
51
|
onChangeTopBarState(): void;
|
|
49
52
|
onChangeSideBarState(): void;
|
|
53
|
+
onClick(targetElement: any): void;
|
|
50
54
|
getLoggedUser(): void;
|
|
51
55
|
onGetNotificationsTopBar(event: any): void;
|
|
52
56
|
onVerifyNotificationsTopBar(event: any): void;
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoMainComponent, never>;
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoMainComponent, "info-main", never, { "opened": "opened"; "version": "version"; "messages": "messages"; "enabledia": "enabledia"; "themes": "themes"; "languages": "languages"; "profileurl": "profileurl"; "loginurl": "loginurl"; "menuapi": "menuapi"; "menumethod": "menumethod"; "activemenubyurl": "activemenubyurl"; "loggeduserapi": "loggeduserapi"; "loggedusermethod": "loggedusermethod"; "notificationapi": "notificationapi"; "notificationgetmethod": "notificationgetmethod"; "notificationpostmethod": "notificationpostmethod"; "notificationverifymethod": "notificationverifymethod"; "notificationverifyenabled": "notificationverifyenabled"; "fastsearchform": "fastsearchform"; "fastsearchformwidth": "fastsearchformwidth"; "fastsearchtitle": "fastsearchtitle"; "setthemeonchangecompany": "setthemeonchangecompany"; "shortcutapi": "shortcutapi"; }, { "ongetnotification": "ongetnotification"; "onverifynotification": "onverifynotification"; }, never, ["[infoia]", "[main]"], false>;
|
|
53
59
|
}
|
|
@@ -3,6 +3,7 @@ import { ControlValueAccessor } from '@angular/forms';
|
|
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
4
|
import { InfoDataService } from '../../service/data.service';
|
|
5
5
|
import { InfoFormPropModel } from '../../model/form-prop.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class InfoModalComponent implements ControlValueAccessor {
|
|
7
8
|
private _dataAccessService;
|
|
8
9
|
prop: InfoFormPropModel;
|
|
@@ -33,4 +34,6 @@ export declare class InfoModalComponent implements ControlValueAccessor {
|
|
|
33
34
|
registerOnChange(fn: any): void;
|
|
34
35
|
registerOnTouched(fn: any): void;
|
|
35
36
|
setDisabledState?(isDisabled: boolean): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoModalComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoModalComponent, "info-modal", never, { "modaltitle": "modaltitle"; "showcloseicon": "showcloseicon"; "api": "api"; "method": "method"; "readonly": "readonly"; "loading": "loading"; "loadingblock": "loadingblock"; "form": "form"; "labelclose": "labelclose"; "labelcancel": "labelcancel"; "labelsubmit": "labelsubmit"; "messages": "messages"; "width": "width"; }, { "onsave": "onsave"; "onsuccess": "onsuccess"; }, never, ["*", "[buttons]"], false>;
|
|
36
39
|
}
|
|
@@ -5,6 +5,7 @@ import { InfoDataService } from '../../service/data.service';
|
|
|
5
5
|
import { InfoTranslateService } from '../../service/translate.service';
|
|
6
6
|
import { MatDialog } from '@angular/material/dialog';
|
|
7
7
|
import { InfoFormPropModel } from '../../model/form-prop.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class InfoPagebarComponent {
|
|
9
10
|
private _router;
|
|
10
11
|
private _modal;
|
|
@@ -32,9 +33,13 @@ export declare class InfoPagebarComponent {
|
|
|
32
33
|
getAtalho(): void;
|
|
33
34
|
toggleAtalho(): void;
|
|
34
35
|
private openModalAtalho;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoPagebarComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoPagebarComponent, "info-pagebar", never, { "margintop": "margintop"; "icon": "icon"; "description": "description"; "backurl": "backurl"; "access": "access"; "transparent": "transparent"; "pagetitle": "pagetitle"; }, {}, never, ["*"], false>;
|
|
35
38
|
}
|
|
36
39
|
export declare class AtalhoModalComponent {
|
|
37
40
|
prop: InfoFormPropModel;
|
|
38
41
|
model: any;
|
|
39
42
|
constructor(prop: InfoFormPropModel);
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtalhoModalComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtalhoModalComponent, "ng-component", never, {}, {}, never, never, false>;
|
|
40
45
|
}
|
|
@@ -6,6 +6,7 @@ import { InfoLastSearchModel } from '../../model/last-search.model';
|
|
|
6
6
|
import { InfoSessionModel } from '../../model/session.model';
|
|
7
7
|
import { InfoPlatformModel } from '../../model/platform.model';
|
|
8
8
|
import { Router } from '@angular/router';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class InfoSidebarComponent implements OnInit {
|
|
10
11
|
private _dataAcessService;
|
|
11
12
|
private _authentication;
|
|
@@ -15,7 +16,7 @@ export declare class InfoSidebarComponent implements OnInit {
|
|
|
15
16
|
private _lastSearch;
|
|
16
17
|
private _router;
|
|
17
18
|
private _renderer;
|
|
18
|
-
|
|
19
|
+
_element: ElementRef;
|
|
19
20
|
api: any;
|
|
20
21
|
method: string;
|
|
21
22
|
activemenubyurl: boolean;
|
|
@@ -34,4 +35,6 @@ export declare class InfoSidebarComponent implements OnInit {
|
|
|
34
35
|
resetLastSearch(): void;
|
|
35
36
|
changeSidebar(): void;
|
|
36
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>;
|
|
37
40
|
}
|
|
@@ -10,6 +10,7 @@ import { InfoNotificationModel } from '../../model/notification.model';
|
|
|
10
10
|
import { InfoSessionModel } from '../../model/session.model';
|
|
11
11
|
import { InfoPlatformModel } from '../../model/platform.model';
|
|
12
12
|
import { Utilities } from '../../utils/utilities';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
13
14
|
export declare class InfoTopbarComponent implements OnInit {
|
|
14
15
|
private _translateService;
|
|
15
16
|
_authenticationService: InfoAuthenticationService;
|
|
@@ -21,7 +22,7 @@ export declare class InfoTopbarComponent implements OnInit {
|
|
|
21
22
|
_platform: InfoPlatformModel;
|
|
22
23
|
private _modal;
|
|
23
24
|
private _renderer;
|
|
24
|
-
|
|
25
|
+
_element: ElementRef;
|
|
25
26
|
private _utilities;
|
|
26
27
|
opened: boolean;
|
|
27
28
|
languages: any;
|
|
@@ -60,4 +61,6 @@ export declare class InfoTopbarComponent implements OnInit {
|
|
|
60
61
|
setNotificationStatus(read: any, access: any, remove: any): void;
|
|
61
62
|
navigate(url: string): void;
|
|
62
63
|
logout(): void;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoTopbarComponent, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoTopbarComponent, "info-topbar", never, { "opened": "opened"; "languages": "languages"; "themes": "themes"; "notificationapi": "notificationapi"; "notificationgetmethod": "notificationgetmethod"; "notificationpostmethod": "notificationpostmethod"; "notificationverifymethod": "notificationverifymethod"; "notificationverifyenabled": "notificationverifyenabled"; "fastsearchform": "fastsearchform"; "fastsearchformwidth": "fastsearchformwidth"; "fastsearchtitle": "fastsearchtitle"; "profileurl": "profileurl"; "setthemeonchangecompany": "setthemeonchangecompany"; "enabledia": "enabledia"; }, { "onchangestate": "onchangestate"; "ongetnotification": "ongetnotification"; "onverifynotification": "onverifynotification"; }, never, ["*"], false>;
|
|
63
66
|
}
|
|
@@ -5,6 +5,7 @@ import { InfoLastSearchModel } from '../../model/last-search.model';
|
|
|
5
5
|
import { InfoSessionModel } from '../../model/session.model';
|
|
6
6
|
import { InfoPlatformModel } from '../../model/platform.model';
|
|
7
7
|
import { Router } from '@angular/router';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class InfoTopMenuComponent implements OnInit {
|
|
9
10
|
private _dataAcessService;
|
|
10
11
|
private _authentication;
|
|
@@ -28,4 +29,6 @@ export declare class InfoTopMenuComponent implements OnInit {
|
|
|
28
29
|
toggleSubmenu(menu: any): void;
|
|
29
30
|
resetLastSearch(): void;
|
|
30
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>;
|
|
31
34
|
}
|
package/package.json
CHANGED
|
@@ -1,27 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "info-library",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^7.0.0",
|
|
6
6
|
"@angular/core": "^7.0.0",
|
|
7
7
|
"@angular/cdk": "^7.0.0",
|
|
8
8
|
"@angular/material": "^7.0.0",
|
|
9
|
-
"@angular/material-moment-adapter": "^
|
|
9
|
+
"@angular/material-moment-adapter": "^14.1.0",
|
|
10
10
|
"ng2-currency-mask": "^5.0.0",
|
|
11
11
|
"text-mask-addons": "^3.0.0",
|
|
12
12
|
"text-mask-core": "^5.0.0",
|
|
13
|
-
"moment": "^2.
|
|
14
|
-
"@kolkov/angular-editor": "^
|
|
13
|
+
"moment": "^2.28.2",
|
|
14
|
+
"@kolkov/angular-editor": "^2.1.0"
|
|
15
|
+
},
|
|
16
|
+
"module": "fesm2015/info-library.mjs",
|
|
17
|
+
"es2020": "fesm2020/info-library.mjs",
|
|
18
|
+
"esm2020": "esm2020/info-library.mjs",
|
|
19
|
+
"fesm2020": "fesm2020/info-library.mjs",
|
|
20
|
+
"fesm2015": "fesm2015/info-library.mjs",
|
|
21
|
+
"typings": "index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
"./package.json": {
|
|
24
|
+
"default": "./package.json"
|
|
25
|
+
},
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./index.d.ts",
|
|
28
|
+
"esm2020": "./esm2020/info-library.mjs",
|
|
29
|
+
"es2020": "./fesm2020/info-library.mjs",
|
|
30
|
+
"es2015": "./fesm2015/info-library.mjs",
|
|
31
|
+
"node": "./fesm2015/info-library.mjs",
|
|
32
|
+
"default": "./fesm2020/info-library.mjs"
|
|
33
|
+
}
|
|
15
34
|
},
|
|
16
|
-
"main": "bundles/info-library.umd.js",
|
|
17
|
-
"module": "fesm2015/info-library.js",
|
|
18
|
-
"es2015": "fesm2015/info-library.js",
|
|
19
|
-
"esm2015": "esm2015/info-library.js",
|
|
20
|
-
"fesm2015": "fesm2015/info-library.js",
|
|
21
|
-
"typings": "info-library.d.ts",
|
|
22
|
-
"metadata": "info-library.metadata.json",
|
|
23
35
|
"sideEffects": false,
|
|
24
36
|
"dependencies": {
|
|
25
|
-
"tslib": "^2.
|
|
37
|
+
"tslib": "^2.3.0"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
|
|
26
41
|
}
|
|
27
|
-
}
|
|
42
|
+
}
|
package/pipe/mask.pipe.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class InfoMaskPipe implements PipeTransform {
|
|
3
4
|
constructor();
|
|
4
5
|
transform(value: string, args?: any): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoMaskPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<InfoMaskPipe, "mask", false>;
|
|
5
8
|
}
|
package/pipe/translate.pipe.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import { InfoTranslateService } from '../service/translate.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class InfoTranslatePipe implements PipeTransform {
|
|
4
5
|
private _translate;
|
|
5
6
|
constructor(_translate: InfoTranslateService);
|
|
6
7
|
transform(value: string, args?: any): any;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoTranslatePipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<InfoTranslatePipe, "translate", false>;
|
|
7
10
|
}
|
|
@@ -8,6 +8,7 @@ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
|
8
8
|
import { Title } from '@angular/platform-browser';
|
|
9
9
|
import { InfoTranslateService } from '../service/translate.service';
|
|
10
10
|
import { Utilities } from '../utils/utilities';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class InfoAuthenticationService implements CanActivate {
|
|
12
13
|
private _router;
|
|
13
14
|
private _http;
|
|
@@ -45,6 +46,8 @@ export declare class InfoAuthenticationService implements CanActivate {
|
|
|
45
46
|
private errorHandling;
|
|
46
47
|
private isGuid;
|
|
47
48
|
private toPascalCase;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoAuthenticationService, never>;
|
|
50
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InfoAuthenticationService>;
|
|
48
51
|
}
|
|
49
52
|
export declare class RefreshSessionTimeModalComponent {
|
|
50
53
|
private _ref;
|
|
@@ -53,4 +56,6 @@ export declare class RefreshSessionTimeModalComponent {
|
|
|
53
56
|
constructor(_ref: MatDialogRef<RefreshSessionTimeModalComponent>);
|
|
54
57
|
ngOnInit(): void;
|
|
55
58
|
ativo(ativo: boolean): void;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RefreshSessionTimeModalComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RefreshSessionTimeModalComponent, "ng-component", never, {}, {}, never, never, false>;
|
|
56
61
|
}
|
|
@@ -2,10 +2,13 @@ import { HttpClient } from "@angular/common/http";
|
|
|
2
2
|
import { InfoPlatformModel } from "../model/platform.model";
|
|
3
3
|
import { InfoAppConfigModel } from "../model/app-config.model";
|
|
4
4
|
import { InfoThemeService } from "./theme.service";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class InfoConfigurationService {
|
|
6
7
|
private _http;
|
|
7
8
|
private _plataforma;
|
|
8
9
|
private _themeService;
|
|
9
10
|
constructor(_http: HttpClient, _plataforma: InfoPlatformModel, _themeService: InfoThemeService);
|
|
10
11
|
initialize(): Promise<InfoAppConfigModel>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoConfigurationService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InfoConfigurationService>;
|
|
11
14
|
}
|
|
@@ -4,6 +4,7 @@ import { InfoDataAccessModel } from '../model/data-access.model';
|
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { InfoPlatformModel } from '../model/platform.model';
|
|
6
6
|
import { Utilities } from '../utils/utilities';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class InfoDataService {
|
|
8
9
|
private _apiController;
|
|
9
10
|
private _http;
|
|
@@ -33,4 +34,6 @@ export declare class InfoDataService {
|
|
|
33
34
|
request(controller: any, model: any[], method?: string): Observable<InfoDataAccessModel>;
|
|
34
35
|
request(controller: any, model: any[], method?: string, param?: string): Observable<InfoDataAccessModel>;
|
|
35
36
|
private errorHandling;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDataService, never>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InfoDataService>;
|
|
36
39
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OverlayContainer } from "@angular/cdk/overlay";
|
|
2
2
|
import { InfoPlatformModel } from '../model/platform.model';
|
|
3
3
|
import { InfoSessionModel } from '../model/session.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class InfoThemeService {
|
|
5
6
|
_overlay: OverlayContainer;
|
|
6
7
|
_plataform: InfoPlatformModel;
|
|
@@ -10,4 +11,6 @@ export declare class InfoThemeService {
|
|
|
10
11
|
setThemeByLoggedCompany(): void;
|
|
11
12
|
setMenuMin(value?: boolean): void;
|
|
12
13
|
setModePrime(prime?: boolean): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoThemeService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InfoThemeService>;
|
|
13
16
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { InfoPlatformModel } from '../model/platform.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class InfoTranslateService {
|
|
3
4
|
private _translations;
|
|
4
5
|
private _plataforma;
|
|
@@ -10,4 +11,6 @@ export declare class InfoTranslateService {
|
|
|
10
11
|
translate(key: string): string;
|
|
11
12
|
getCalendar(): any;
|
|
12
13
|
instant(key: string): string;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoTranslateService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InfoTranslateService>;
|
|
13
16
|
}
|
package/utils/utilities.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class Utilities {
|
|
2
3
|
getGuid(): string;
|
|
3
4
|
getGuidEmpty(): string;
|
|
@@ -21,4 +22,6 @@ export declare class Utilities {
|
|
|
21
22
|
retornaTexto(texto: any): string;
|
|
22
23
|
criptografar(texto: any): any;
|
|
23
24
|
descriptografar(texto: any): any;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Utilities, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Utilities>;
|
|
24
27
|
}
|