tin-spa 9.0.0 → 9.1.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/bundles/tin-spa.umd.js +4416 -1589
- package/bundles/tin-spa.umd.js.map +1 -1
- package/bundles/tin-spa.umd.min.js +2 -2
- package/bundles/tin-spa.umd.min.js.map +1 -1
- package/esm2015/lib/classes/Classes.js +58 -45
- package/esm2015/lib/classes/TinCore.js +137 -0
- package/esm2015/lib/components/activity/activity.component.js +84 -18
- package/esm2015/lib/components/attach/attach.component.js +101 -27
- package/esm2015/lib/components/change-password/change-password.component.js +122 -34
- package/esm2015/lib/components/check/check.component.js +39 -33
- package/esm2015/lib/components/chips/chips.component.js +75 -35
- package/esm2015/lib/components/create-account/create-account.component.js +124 -42
- package/esm2015/lib/components/date/date.component.js +54 -33
- package/esm2015/lib/components/datetime/datetime.component.js +43 -30
- package/esm2015/lib/components/filter/filter.component.js +64 -0
- package/esm2015/lib/components/html/html.component.js +30 -25
- package/esm2015/lib/components/label/label.component.js +109 -21
- package/esm2015/lib/components/loader/loader.component.js +43 -20
- package/esm2015/lib/components/login/login.component.js +194 -76
- package/esm2015/lib/components/logs/logs.component.js +180 -28
- package/esm2015/lib/components/message/messageDialog.component.js +128 -17
- package/esm2015/lib/components/money/currency-input-mask.directive.js +187 -0
- package/esm2015/lib/components/money/currency-input-mask.module.js +30 -0
- package/esm2015/lib/components/money/money.component.js +141 -39
- package/esm2015/lib/components/nav-menu/nav-menu.component.js +174 -21
- package/esm2015/lib/components/option/option.component.js +107 -40
- package/esm2015/lib/components/profile/profile.component.js +143 -53
- package/esm2015/lib/components/recover-account/recover-account.component.js +48 -26
- package/esm2015/lib/components/roles/addRoleDialog.component.js +99 -26
- package/esm2015/lib/components/roles/roles.component.js +153 -73
- package/esm2015/lib/components/select/select.component.js +108 -48
- package/esm2015/lib/components/settings/settings.component.js +76 -21
- package/esm2015/lib/components/signup/signup.component.js +107 -24
- package/esm2015/lib/components/steps/steps.component.js +47 -31
- package/esm2015/lib/components/table/table.component.js +301 -35
- package/esm2015/lib/components/text/text.component.js +146 -71
- package/esm2015/lib/components/tiles/tiles.component.js +75 -21
- package/esm2015/lib/components/timeout/timeout.component.js +65 -22
- package/esm2015/lib/components/tin-spa.component.js +19 -12
- package/esm2015/lib/components/users/users.component.js +308 -65
- package/esm2015/lib/components/viewer/viewer.component.js +64 -39
- package/esm2015/lib/components/viewer/viewerDialog.component.js +73 -18
- package/esm2015/lib/dnd.directive.js +30 -25
- package/esm2015/lib/modules/spa-admin.module.js +65 -51
- package/esm2015/lib/modules/spa-index.module.js +45 -20
- package/esm2015/lib/modules/spa-mat.module.js +40 -25
- package/esm2015/lib/modules/spa-user.module.js +43 -19
- package/esm2015/lib/services/auth.service.js +39 -50
- package/esm2015/lib/services/data.service.js +82 -49
- package/esm2015/lib/services/export.service.js +11 -11
- package/esm2015/lib/services/http.service.js +79 -0
- package/esm2015/lib/services/loader-interceptor.service.js +30 -30
- package/esm2015/lib/services/loader.service.js +11 -11
- package/esm2015/lib/services/log.service.js +12 -12
- package/esm2015/lib/services/message.service.js +11 -17
- package/esm2015/lib/services/storage.service.js +12 -11
- package/esm2015/lib/services/tin-spa.service.js +11 -11
- package/esm2015/lib/tin-spa.module.js +113 -48
- package/esm2015/public-api.js +4 -6
- package/esm2015/tin-spa.js +1 -5
- package/esm5/lib/classes/Classes.js +70 -55
- package/esm5/lib/classes/TinCore.js +164 -0
- package/esm5/lib/components/activity/activity.component.js +82 -15
- package/esm5/lib/components/attach/attach.component.js +100 -24
- package/esm5/lib/components/change-password/change-password.component.js +120 -31
- package/esm5/lib/components/check/check.component.js +37 -30
- package/esm5/lib/components/chips/chips.component.js +73 -32
- package/esm5/lib/components/create-account/create-account.component.js +122 -39
- package/esm5/lib/components/date/date.component.js +52 -30
- package/esm5/lib/components/datetime/datetime.component.js +41 -27
- package/esm5/lib/components/filter/filter.component.js +66 -0
- package/esm5/lib/components/html/html.component.js +28 -22
- package/esm5/lib/components/label/label.component.js +107 -18
- package/esm5/lib/components/loader/loader.component.js +41 -17
- package/esm5/lib/components/login/login.component.js +193 -74
- package/esm5/lib/components/logs/logs.component.js +178 -25
- package/esm5/lib/components/message/messageDialog.component.js +126 -14
- package/esm5/lib/components/money/currency-input-mask.directive.js +193 -0
- package/esm5/lib/components/money/currency-input-mask.module.js +34 -0
- package/esm5/lib/components/money/money.component.js +139 -36
- package/esm5/lib/components/nav-menu/nav-menu.component.js +172 -18
- package/esm5/lib/components/option/option.component.js +105 -37
- package/esm5/lib/components/profile/profile.component.js +141 -50
- package/esm5/lib/components/recover-account/recover-account.component.js +46 -23
- package/esm5/lib/components/roles/addRoleDialog.component.js +97 -23
- package/esm5/lib/components/roles/roles.component.js +152 -72
- package/esm5/lib/components/select/select.component.js +106 -45
- package/esm5/lib/components/settings/settings.component.js +74 -18
- package/esm5/lib/components/signup/signup.component.js +105 -21
- package/esm5/lib/components/steps/steps.component.js +46 -28
- package/esm5/lib/components/table/table.component.js +299 -32
- package/esm5/lib/components/text/text.component.js +144 -68
- package/esm5/lib/components/tiles/tiles.component.js +73 -18
- package/esm5/lib/components/timeout/timeout.component.js +63 -19
- package/esm5/lib/components/tin-spa.component.js +16 -8
- package/esm5/lib/components/users/users.component.js +307 -62
- package/esm5/lib/components/viewer/viewer.component.js +62 -36
- package/esm5/lib/components/viewer/viewerDialog.component.js +71 -15
- package/esm5/lib/dnd.directive.js +28 -22
- package/esm5/lib/modules/spa-admin.module.js +63 -48
- package/esm5/lib/modules/spa-index.module.js +43 -17
- package/esm5/lib/modules/spa-mat.module.js +38 -22
- package/esm5/lib/modules/spa-user.module.js +41 -16
- package/esm5/lib/services/auth.service.js +37 -47
- package/esm5/lib/services/data.service.js +89 -55
- package/esm5/lib/services/export.service.js +9 -8
- package/esm5/lib/services/http.service.js +81 -0
- package/esm5/lib/services/loader-interceptor.service.js +28 -27
- package/esm5/lib/services/loader.service.js +9 -8
- package/esm5/lib/services/log.service.js +11 -9
- package/esm5/lib/services/message.service.js +9 -14
- package/esm5/lib/services/storage.service.js +10 -8
- package/esm5/lib/services/tin-spa.service.js +9 -8
- package/esm5/lib/tin-spa.module.js +111 -45
- package/esm5/public-api.js +4 -6
- package/esm5/tin-spa.js +1 -5
- package/fesm2015/tin-spa.js +4418 -1612
- package/fesm2015/tin-spa.js.map +1 -1
- package/fesm5/tin-spa.js +4442 -1612
- package/fesm5/tin-spa.js.map +1 -1
- package/lib/classes/Classes.d.ts +55 -43
- package/lib/classes/TinCore.d.ts +27 -0
- package/lib/components/activity/activity.component.d.ts +3 -5
- package/lib/components/attach/attach.component.d.ts +3 -5
- package/lib/components/change-password/change-password.component.d.ts +11 -9
- package/lib/components/check/check.component.d.ts +3 -5
- package/lib/components/chips/chips.component.d.ts +3 -5
- package/lib/components/create-account/create-account.component.d.ts +13 -13
- package/lib/components/date/date.component.d.ts +6 -7
- package/lib/components/datetime/datetime.component.d.ts +3 -5
- package/lib/components/filter/filter.component.d.ts +15 -0
- package/lib/components/html/html.component.d.ts +3 -5
- package/lib/components/label/label.component.d.ts +3 -5
- package/lib/components/loader/loader.component.d.ts +3 -5
- package/lib/components/login/login.component.d.ts +12 -14
- package/lib/components/logs/logs.component.d.ts +5 -9
- package/lib/components/message/messageDialog.component.d.ts +3 -5
- package/lib/components/money/currency-input-mask.directive.d.ts +41 -0
- package/lib/components/money/currency-input-mask.module.d.ts +8 -0
- package/lib/components/money/money.component.d.ts +19 -8
- package/lib/components/nav-menu/nav-menu.component.d.ts +3 -5
- package/lib/components/option/option.component.d.ts +4 -5
- package/lib/components/profile/profile.component.d.ts +9 -11
- package/lib/components/recover-account/recover-account.component.d.ts +6 -8
- package/lib/components/roles/addRoleDialog.component.d.ts +5 -7
- package/lib/components/roles/roles.component.d.ts +6 -10
- package/lib/components/select/select.component.d.ts +4 -6
- package/lib/components/settings/settings.component.d.ts +5 -7
- package/lib/components/signup/signup.component.d.ts +6 -8
- package/lib/components/steps/steps.component.d.ts +3 -5
- package/lib/components/table/table.component.d.ts +3 -5
- package/lib/components/text/text.component.d.ts +4 -5
- package/lib/components/tiles/tiles.component.d.ts +3 -5
- package/lib/components/timeout/timeout.component.d.ts +3 -5
- package/lib/components/tin-spa.component.d.ts +3 -5
- package/lib/components/users/users.component.d.ts +8 -13
- package/lib/components/viewer/viewer.component.d.ts +3 -5
- package/lib/components/viewer/viewerDialog.component.d.ts +4 -6
- package/lib/dnd.directive.d.ts +3 -5
- package/lib/modules/spa-admin.module.d.ts +13 -19
- package/lib/modules/spa-index.module.d.ts +10 -11
- package/lib/modules/spa-mat.module.d.ts +30 -32
- package/lib/modules/spa-user.module.d.ts +9 -10
- package/lib/services/auth.service.d.ts +14 -14
- package/lib/services/data.service.d.ts +28 -17
- package/lib/services/export.service.d.ts +3 -4
- package/lib/services/http.service.d.ts +22 -0
- package/lib/services/loader-interceptor.service.d.ts +3 -5
- package/lib/services/loader.service.d.ts +3 -4
- package/lib/services/log.service.d.ts +3 -4
- package/lib/services/message.service.d.ts +3 -4
- package/lib/services/storage.service.d.ts +3 -4
- package/lib/services/tin-spa.service.d.ts +3 -4
- package/lib/tin-spa.module.d.ts +35 -35
- package/package.json +2 -10
- package/public-api.d.ts +3 -5
- package/tin-spa.d.ts +1 -6
- package/__ivy_ngcc__/fesm2015/tin-spa.js +0 -6813
- package/__ivy_ngcc__/fesm2015/tin-spa.js.map +0 -1
- package/esm2015/lib/components/profiles/profiles.component.js +0 -16
- package/esm2015/lib/components/roles/editRoleDialog.component.js +0 -57
- package/esm2015/lib/components/roles/viewRoleDialog.component.js +0 -38
- package/esm2015/lib/components/users/addUserDialog.component.js +0 -53
- package/esm2015/lib/components/users/editUserDialog.component.js +0 -96
- package/esm5/lib/components/profiles/profiles.component.js +0 -18
- package/esm5/lib/components/roles/editRoleDialog.component.js +0 -59
- package/esm5/lib/components/roles/viewRoleDialog.component.js +0 -39
- package/esm5/lib/components/users/addUserDialog.component.js +0 -55
- package/esm5/lib/components/users/editUserDialog.component.js +0 -99
- package/lib/components/activity/activity.component.d.ts.__ivy_ngcc_bak +0 -8
- package/lib/components/attach/attach.component.d.ts.__ivy_ngcc_bak +0 -39
- package/lib/components/change-password/change-password.component.d.ts.__ivy_ngcc_bak +0 -20
- package/lib/components/check/check.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/chips/chips.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/create-account/create-account.component.d.ts.__ivy_ngcc_bak +0 -25
- package/lib/components/date/date.component.d.ts.__ivy_ngcc_bak +0 -13
- package/lib/components/datetime/datetime.component.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/components/html/html.component.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/components/label/label.component.d.ts.__ivy_ngcc_bak +0 -8
- package/lib/components/loader/loader.component.d.ts.__ivy_ngcc_bak +0 -9
- package/lib/components/login/login.component.d.ts.__ivy_ngcc_bak +0 -29
- package/lib/components/logs/logs.component.d.ts.__ivy_ngcc_bak +0 -17
- package/lib/components/message/messageDialog.component.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/components/money/money.component.d.ts.__ivy_ngcc_bak +0 -14
- package/lib/components/nav-menu/nav-menu.component.d.ts.__ivy_ngcc_bak +0 -17
- package/lib/components/option/option.component.d.ts.__ivy_ngcc_bak +0 -17
- package/lib/components/profile/profile.component.d.ts.__ivy_ngcc_bak +0 -30
- package/lib/components/profiles/profiles.component.d.ts +0 -10
- package/lib/components/profiles/profiles.component.d.ts.__ivy_ngcc_bak +0 -5
- package/lib/components/recover-account/recover-account.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/roles/addRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
- package/lib/components/roles/editRoleDialog.component.d.ts +0 -24
- package/lib/components/roles/editRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -19
- package/lib/components/roles/roles.component.d.ts.__ivy_ngcc_bak +0 -29
- package/lib/components/roles/viewRoleDialog.component.d.ts +0 -20
- package/lib/components/roles/viewRoleDialog.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/select/select.component.d.ts.__ivy_ngcc_bak +0 -20
- package/lib/components/settings/settings.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/signup/signup.component.d.ts.__ivy_ngcc_bak +0 -20
- package/lib/components/steps/steps.component.d.ts.__ivy_ngcc_bak +0 -15
- package/lib/components/table/table.component.d.ts.__ivy_ngcc_bak +0 -25
- package/lib/components/text/text.component.d.ts.__ivy_ngcc_bak +0 -37
- package/lib/components/tiles/tiles.component.d.ts.__ivy_ngcc_bak +0 -11
- package/lib/components/timeout/timeout.component.d.ts.__ivy_ngcc_bak +0 -21
- package/lib/components/tin-spa.component.d.ts.__ivy_ngcc_bak +0 -5
- package/lib/components/users/addUserDialog.component.d.ts +0 -21
- package/lib/components/users/addUserDialog.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/users/editUserDialog.component.d.ts +0 -32
- package/lib/components/users/editUserDialog.component.d.ts.__ivy_ngcc_bak +0 -27
- package/lib/components/users/users.component.d.ts.__ivy_ngcc_bak +0 -35
- package/lib/components/viewer/viewer.component.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/components/viewer/viewerDialog.component.d.ts.__ivy_ngcc_bak +0 -19
- package/lib/dnd.directive.d.ts.__ivy_ngcc_bak +0 -8
- package/lib/modules/spa-admin.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/modules/spa-index.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/modules/spa-mat.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/modules/spa-user.module.d.ts.__ivy_ngcc_bak +0 -2
- package/lib/services/auth.service.d.ts.__ivy_ngcc_bak +0 -45
- package/lib/services/data.service.d.ts.__ivy_ngcc_bak +0 -23
- package/lib/services/export.service.d.ts.__ivy_ngcc_bak +0 -7
- package/lib/services/loader-interceptor.service.d.ts.__ivy_ngcc_bak +0 -18
- package/lib/services/loader.service.d.ts.__ivy_ngcc_bak +0 -5
- package/lib/services/log.service.d.ts.__ivy_ngcc_bak +0 -16
- package/lib/services/message.service.d.ts.__ivy_ngcc_bak +0 -12
- package/lib/services/storage.service.d.ts.__ivy_ngcc_bak +0 -7
- package/lib/services/tin-spa.service.d.ts.__ivy_ngcc_bak +0 -3
- package/lib/tin-spa.module.d.ts.__ivy_ngcc_bak +0 -2
- package/tin-spa.d.ts.__ivy_ngcc_bak +0 -8
- package/tin-spa.metadata.json +0 -1
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { Tile } from '../../classes/Classes';
|
|
3
|
-
export declare class TilesComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
tiles: Tile[];
|
|
7
|
-
clickable: boolean;
|
|
8
|
-
tileClick: EventEmitter<any>;
|
|
9
|
-
selected: string;
|
|
10
|
-
clicked(v: Tile): void;
|
|
11
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Router } from '@angular/router';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
3
|
-
import { Idle } from '@ng-idle/core';
|
|
4
|
-
import { Keepalive } from '@ng-idle/keepalive';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
export declare class TimeoutComponent implements OnInit {
|
|
7
|
-
private idle;
|
|
8
|
-
private keepalive;
|
|
9
|
-
authService: AuthService;
|
|
10
|
-
private router;
|
|
11
|
-
constructor(idle: Idle, keepalive: Keepalive, authService: AuthService, router: Router);
|
|
12
|
-
loggedin: boolean;
|
|
13
|
-
idleState: string;
|
|
14
|
-
timedOut: boolean;
|
|
15
|
-
lastPing?: Date;
|
|
16
|
-
isWarning: boolean;
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
startWatch(): void;
|
|
19
|
-
stopWatch(): void;
|
|
20
|
-
using(): void;
|
|
21
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { MatDialogRef } from "@angular/material/dialog";
|
|
3
|
-
import { DataService } from "../../services/data.service";
|
|
4
|
-
import { User } from "../../classes/Classes";
|
|
5
|
-
import { MessageService } from "../../services/message.service";
|
|
6
|
-
import * as ɵngcc0 from '@angular/core';
|
|
7
|
-
export declare class AddUserDialog implements OnInit {
|
|
8
|
-
private dataserv;
|
|
9
|
-
private messageService;
|
|
10
|
-
private dialogRef;
|
|
11
|
-
currentCount: number;
|
|
12
|
-
user: User;
|
|
13
|
-
isProcessing: boolean;
|
|
14
|
-
constructor(dataserv: DataService, messageService: MessageService, dialogRef: MatDialogRef<AddUserDialog>);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
Signup(): void;
|
|
17
|
-
static ɵfac: ɵngcc0.ɵɵFactoryDef<AddUserDialog, never>;
|
|
18
|
-
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<AddUserDialog, "spa-add-user", never, {}, {}, never, never>;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRkVXNlckRpYWxvZy5jb21wb25lbnQuZC50cyIsInNvdXJjZXMiOlsiYWRkVXNlckRpYWxvZy5jb21wb25lbnQuZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uSW5pdCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IE1hdERpYWxvZ1JlZiB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2dcIjtcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvZGF0YS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFVzZXIgfSBmcm9tIFwiLi4vLi4vY2xhc3Nlcy9DbGFzc2VzXCI7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL21lc3NhZ2Uuc2VydmljZVwiO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBBZGRVc2VyRGlhbG9nIGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIHByaXZhdGUgZGF0YXNlcnY7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBkaWFsb2dSZWY7XHJcbiAgICBjdXJyZW50Q291bnQ6IG51bWJlcjtcclxuICAgIHVzZXI6IFVzZXI7XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICBjb25zdHJ1Y3RvcihkYXRhc2VydjogRGF0YVNlcnZpY2UsIG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSwgZGlhbG9nUmVmOiBNYXREaWFsb2dSZWY8QWRkVXNlckRpYWxvZz4pO1xyXG4gICAgbmdPbkluaXQoKTogdm9pZDtcclxuICAgIFNpZ251cCgpOiB2b2lkO1xyXG59XHJcbiJdfQ==
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { MatDialogRef } from "@angular/material/dialog";
|
|
3
|
-
import { DataService } from "../../services/data.service";
|
|
4
|
-
import { User } from "../../classes/Classes";
|
|
5
|
-
import { MessageService } from "../../services/message.service";
|
|
6
|
-
export declare class AddUserDialog implements OnInit {
|
|
7
|
-
private dataserv;
|
|
8
|
-
private messageService;
|
|
9
|
-
private dialogRef;
|
|
10
|
-
currentCount: number;
|
|
11
|
-
user: User;
|
|
12
|
-
isProcessing: boolean;
|
|
13
|
-
constructor(dataserv: DataService, messageService: MessageService, dialogRef: MatDialogRef<AddUserDialog>);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
Signup(): void;
|
|
16
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { MatDialogRef } from "@angular/material/dialog";
|
|
3
|
-
import { DataService } from "../../services/data.service";
|
|
4
|
-
import { User } from "../../classes/Classes";
|
|
5
|
-
import { MessageService } from "../../services/message.service";
|
|
6
|
-
import * as ɵngcc0 from '@angular/core';
|
|
7
|
-
export declare class EditUserDialog implements OnInit {
|
|
8
|
-
private dataserv;
|
|
9
|
-
private messageService;
|
|
10
|
-
private dialogRef;
|
|
11
|
-
data: any;
|
|
12
|
-
constructor(dataserv: DataService, messageService: MessageService, dialogRef: MatDialogRef<EditUserDialog>, data: any);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
user: User;
|
|
15
|
-
myData: any;
|
|
16
|
-
myResponse: any;
|
|
17
|
-
departments: any;
|
|
18
|
-
lineManagers: any;
|
|
19
|
-
roles: any;
|
|
20
|
-
isProcessing: boolean;
|
|
21
|
-
myUser: User;
|
|
22
|
-
unlock(): void;
|
|
23
|
-
lock(): void;
|
|
24
|
-
enable(): void;
|
|
25
|
-
disable(): void;
|
|
26
|
-
Update(): void;
|
|
27
|
-
DeleteUser(): void;
|
|
28
|
-
static ɵfac: ɵngcc0.ɵɵFactoryDef<EditUserDialog, never>;
|
|
29
|
-
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<EditUserDialog, "spa-edit-user", never, {}, {}, never, never>;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdFVzZXJEaWFsb2cuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImVkaXRVc2VyRGlhbG9nLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uSW5pdCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IE1hdERpYWxvZ1JlZiB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2dcIjtcclxuaW1wb3J0IHsgRGF0YVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vc2VydmljZXMvZGF0YS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFVzZXIgfSBmcm9tIFwiLi4vLi4vY2xhc3Nlcy9DbGFzc2VzXCI7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL21lc3NhZ2Uuc2VydmljZVwiO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBFZGl0VXNlckRpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIGRhdGFzZXJ2O1xyXG4gICAgcHJpdmF0ZSBtZXNzYWdlU2VydmljZTtcclxuICAgIHByaXZhdGUgZGlhbG9nUmVmO1xyXG4gICAgZGF0YTogYW55O1xyXG4gICAgY29uc3RydWN0b3IoZGF0YXNlcnY6IERhdGFTZXJ2aWNlLCBtZXNzYWdlU2VydmljZTogTWVzc2FnZVNlcnZpY2UsIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPEVkaXRVc2VyRGlhbG9nPiwgZGF0YTogYW55KTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICB1c2VyOiBVc2VyO1xyXG4gICAgbXlEYXRhOiBhbnk7XHJcbiAgICBteVJlc3BvbnNlOiBhbnk7XHJcbiAgICBkZXBhcnRtZW50czogYW55O1xyXG4gICAgbGluZU1hbmFnZXJzOiBhbnk7XHJcbiAgICByb2xlczogYW55O1xyXG4gICAgaXNQcm9jZXNzaW5nOiBib29sZWFuO1xyXG4gICAgbXlVc2VyOiBVc2VyO1xyXG4gICAgdW5sb2NrKCk6IHZvaWQ7XHJcbiAgICBsb2NrKCk6IHZvaWQ7XHJcbiAgICBlbmFibGUoKTogdm9pZDtcclxuICAgIGRpc2FibGUoKTogdm9pZDtcclxuICAgIFVwZGF0ZSgpOiB2b2lkO1xyXG4gICAgRGVsZXRlVXNlcigpOiB2b2lkO1xyXG59XHJcbiJdfQ==
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { MatDialogRef } from "@angular/material/dialog";
|
|
3
|
-
import { DataService } from "../../services/data.service";
|
|
4
|
-
import { User } from "../../classes/Classes";
|
|
5
|
-
import { MessageService } from "../../services/message.service";
|
|
6
|
-
export declare class EditUserDialog implements OnInit {
|
|
7
|
-
private dataserv;
|
|
8
|
-
private messageService;
|
|
9
|
-
private dialogRef;
|
|
10
|
-
data: any;
|
|
11
|
-
constructor(dataserv: DataService, messageService: MessageService, dialogRef: MatDialogRef<EditUserDialog>, data: any);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
user: User;
|
|
14
|
-
myData: any;
|
|
15
|
-
myResponse: any;
|
|
16
|
-
departments: any;
|
|
17
|
-
lineManagers: any;
|
|
18
|
-
roles: any;
|
|
19
|
-
isProcessing: boolean;
|
|
20
|
-
myUser: User;
|
|
21
|
-
unlock(): void;
|
|
22
|
-
lock(): void;
|
|
23
|
-
enable(): void;
|
|
24
|
-
disable(): void;
|
|
25
|
-
Update(): void;
|
|
26
|
-
DeleteUser(): void;
|
|
27
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
import { MatPaginator } from "@angular/material/paginator";
|
|
3
|
-
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
-
import { DataService } from "../../services/data.service";
|
|
5
|
-
import { HttpService } from "tin-core";
|
|
6
|
-
import { Router } from "@angular/router";
|
|
7
|
-
import { MessageService } from "../../services/message.service";
|
|
8
|
-
import { AuthService } from "../../services/auth.service";
|
|
9
|
-
import { User } from '../../classes/Classes';
|
|
10
|
-
export declare class UsersComponent implements OnInit {
|
|
11
|
-
private httpService;
|
|
12
|
-
router: Router;
|
|
13
|
-
private authService;
|
|
14
|
-
private dataService;
|
|
15
|
-
dialog: MatDialog;
|
|
16
|
-
private messageService;
|
|
17
|
-
constructor(httpService: HttpService, router: Router, authService: AuthService, dataService: DataService, dialog: MatDialog, messageService: MessageService);
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
isProcessing: boolean;
|
|
20
|
-
usersPaginator: MatPaginator;
|
|
21
|
-
_filterText: string;
|
|
22
|
-
users: any;
|
|
23
|
-
displayedColumns: string[];
|
|
24
|
-
UpdateData(): void;
|
|
25
|
-
applyFilter(filterValue: string): void;
|
|
26
|
-
createAccount(): void;
|
|
27
|
-
viewProfile(user: User): void;
|
|
28
|
-
lock(u: User): void;
|
|
29
|
-
unlock(u: User): void;
|
|
30
|
-
enable(u: User): void;
|
|
31
|
-
disable(u: User): void;
|
|
32
|
-
recover(u: User): void;
|
|
33
|
-
updateUser(user: any): void;
|
|
34
|
-
deleteUser(user: User): void;
|
|
35
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
export declare class ViewerComponent implements OnInit {
|
|
4
|
-
dialog: MatDialog;
|
|
5
|
-
constructor(dialog: MatDialog);
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
dir: string;
|
|
8
|
-
folderName: string;
|
|
9
|
-
fileNames: any[];
|
|
10
|
-
removable: boolean;
|
|
11
|
-
remove: EventEmitter<any>;
|
|
12
|
-
display: string;
|
|
13
|
-
title: string;
|
|
14
|
-
viewDocs(fileName: string): void;
|
|
15
|
-
removed(i: any): void;
|
|
16
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { HttpService } from 'tin-core';
|
|
3
|
-
export declare class viewerDialog implements OnInit {
|
|
4
|
-
private httpService;
|
|
5
|
-
data: any;
|
|
6
|
-
constructor(httpService: HttpService, data: any);
|
|
7
|
-
ngOnInit(): void;
|
|
8
|
-
isProcessing: boolean;
|
|
9
|
-
path: string;
|
|
10
|
-
fileNames: any[];
|
|
11
|
-
fileName: string;
|
|
12
|
-
currIndex: number;
|
|
13
|
-
currentFileUrl: string;
|
|
14
|
-
previous(): void;
|
|
15
|
-
next(): void;
|
|
16
|
-
imageDoc: boolean;
|
|
17
|
-
setURL(): void;
|
|
18
|
-
change(fileName: any): void;
|
|
19
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { MessageService } from './message.service';
|
|
2
|
-
import { HttpService } from 'tin-core';
|
|
3
|
-
import { Router, CanActivate } from '@angular/router';
|
|
4
|
-
import { BehaviorSubject } from 'rxjs';
|
|
5
|
-
import { StorageService } from './storage.service';
|
|
6
|
-
import { LogService } from './log.service';
|
|
7
|
-
import { Role } from '../classes/Classes';
|
|
8
|
-
export declare class AuthService implements CanActivate {
|
|
9
|
-
private storage;
|
|
10
|
-
router: Router;
|
|
11
|
-
private httpService;
|
|
12
|
-
private messageService;
|
|
13
|
-
private logService;
|
|
14
|
-
constructor(storage: StorageService, router: Router, httpService: HttpService, messageService: MessageService, logService: LogService);
|
|
15
|
-
private loggedin;
|
|
16
|
-
private loggedinSource;
|
|
17
|
-
loggedinObserv: import("rxjs").Observable<boolean>;
|
|
18
|
-
updateloggedin(loggedin: boolean): void;
|
|
19
|
-
private token;
|
|
20
|
-
tokenSource: BehaviorSubject<string>;
|
|
21
|
-
tokenObserv: import("rxjs").Observable<string>;
|
|
22
|
-
updateToken(newToken: string): void;
|
|
23
|
-
private tokenExpire;
|
|
24
|
-
tokenExpireSource: BehaviorSubject<string>;
|
|
25
|
-
tokenExpireObserv: import("rxjs").Observable<string>;
|
|
26
|
-
updateTokenExpire(newTokenExpire: string): void;
|
|
27
|
-
currentUser: string;
|
|
28
|
-
private currentUserSource;
|
|
29
|
-
currentUserObserv: import("rxjs").Observable<string>;
|
|
30
|
-
updateCurrentUser(newUser: string): void;
|
|
31
|
-
private islineManager;
|
|
32
|
-
private isLineManagerSource;
|
|
33
|
-
isLineManagerObserv: import("rxjs").Observable<boolean>;
|
|
34
|
-
updateIsLineManager(manager: boolean): void;
|
|
35
|
-
private currentRole;
|
|
36
|
-
currentRoleSource: BehaviorSubject<Role>;
|
|
37
|
-
myRoleObserv: import("rxjs").Observable<Role>;
|
|
38
|
-
updateRole(role: any): void;
|
|
39
|
-
private loggedUserSource;
|
|
40
|
-
loggedUserFullName: import("rxjs").Observable<string>;
|
|
41
|
-
updateLoggedUserFullName(username: string): void;
|
|
42
|
-
isAuthorised(capName: string): boolean;
|
|
43
|
-
isValidToken(): boolean;
|
|
44
|
-
canActivate(): boolean;
|
|
45
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { HttpService } from 'tin-core';
|
|
2
|
-
import { CapItem, User } from '../classes/Classes';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
export declare class DataService {
|
|
5
|
-
private httpService;
|
|
6
|
-
constructor(httpService: HttpService);
|
|
7
|
-
capUsers: CapItem;
|
|
8
|
-
tmpProfileUserID: string;
|
|
9
|
-
GetUser(by: string, val: string): Observable<any>;
|
|
10
|
-
UpdateUser(user: any, action: string): Observable<any>;
|
|
11
|
-
login(u: User): Observable<any>;
|
|
12
|
-
changePassword(u: any): Observable<any>;
|
|
13
|
-
changePasswordAdmin(u: any): Observable<any>;
|
|
14
|
-
SelfReset(u: User): Observable<any>;
|
|
15
|
-
UpdateRole(role: any, action: string): Observable<any>;
|
|
16
|
-
GetRole(by: string, val: string): Observable<any>;
|
|
17
|
-
UpdateAccount(account: any, action: string): Observable<any>;
|
|
18
|
-
GetProfile(by: string, val: string): Observable<any>;
|
|
19
|
-
UpdateProfile(profile: any, action: string): Observable<any>;
|
|
20
|
-
GetLog(by: string, val: string): Observable<any>;
|
|
21
|
-
GetSetting(by: string, val: string): Observable<any>;
|
|
22
|
-
UpdateSetting(setting: any, action: string): Observable<any>;
|
|
23
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Router } from '@angular/router';
|
|
2
|
-
import { AuthService } from './auth.service';
|
|
3
|
-
import { MessageService } from './message.service';
|
|
4
|
-
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
5
|
-
import { Observable } from 'rxjs';
|
|
6
|
-
import { LoaderService } from './loader.service';
|
|
7
|
-
import { LogService } from './log.service';
|
|
8
|
-
export declare class LoaderInterceptor implements HttpInterceptor {
|
|
9
|
-
private loaderService;
|
|
10
|
-
private messageService;
|
|
11
|
-
private authService;
|
|
12
|
-
private router;
|
|
13
|
-
private logService;
|
|
14
|
-
private requests;
|
|
15
|
-
constructor(loaderService: LoaderService, messageService: MessageService, authService: AuthService, router: Router, logService: LogService);
|
|
16
|
-
removeRequest(req: HttpRequest<any>): void;
|
|
17
|
-
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
18
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { LogLevel } from '../classes/Classes';
|
|
2
|
-
export declare class LogService {
|
|
3
|
-
constructor();
|
|
4
|
-
level: LogLevel;
|
|
5
|
-
logToConsole: boolean;
|
|
6
|
-
logToApi: boolean;
|
|
7
|
-
debug(msg: string, ...optionalParams: any[]): void;
|
|
8
|
-
info(msg: string, ...optionalParams: any[]): void;
|
|
9
|
-
warn(msg: string, ...optionalParams: any[]): void;
|
|
10
|
-
error(msg: string, ...optionalParams: any[]): void;
|
|
11
|
-
fatal(msg: string, ...optionalParams: any[]): void;
|
|
12
|
-
log(msg: string, ...optionalParams: any[]): void;
|
|
13
|
-
private writeToLog;
|
|
14
|
-
private formatParams;
|
|
15
|
-
private shouldLog;
|
|
16
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { MatSnackBar } from "@angular/material/snack-bar";
|
|
2
|
-
import { MatDialog } from "@angular/material/dialog";
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
export declare class MessageService {
|
|
5
|
-
private snackBar;
|
|
6
|
-
dialog: MatDialog;
|
|
7
|
-
constructor(snackBar: MatSnackBar, dialog: MatDialog);
|
|
8
|
-
toast(msg: string): void;
|
|
9
|
-
info(subject: string, details: string): void;
|
|
10
|
-
error(details: string): void;
|
|
11
|
-
confirm(msg: string): Observable<any>;
|
|
12
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
5
|
-
export { viewerDialog as ɵc } from './lib/components/viewer/viewerDialog.component';
|
|
6
|
-
export { DndDirective as ɵa } from './lib/dnd.directive';
|
|
7
|
-
export { LoaderInterceptor as ɵd } from './lib/services/loader-interceptor.service';
|
|
8
|
-
export { LoaderService as ɵb } from './lib/services/loader.service';
|