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,39 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class AttachComponent implements OnInit {
|
|
3
|
-
constructor();
|
|
4
|
-
ngOnInit(): void;
|
|
5
|
-
message: string;
|
|
6
|
-
files: any[];
|
|
7
|
-
filesChange: EventEmitter<any>;
|
|
8
|
-
upload: EventEmitter<any>;
|
|
9
|
-
enableUpload: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* on file drop handler
|
|
12
|
-
*/
|
|
13
|
-
onFileDropped($event: any): void;
|
|
14
|
-
/**
|
|
15
|
-
* handle file from browsing
|
|
16
|
-
*/
|
|
17
|
-
fileBrowseHandler(files: any): void;
|
|
18
|
-
/**
|
|
19
|
-
* Delete file from files list
|
|
20
|
-
* @param index (File index)
|
|
21
|
-
*/
|
|
22
|
-
deleteFile(index: number): void;
|
|
23
|
-
/**
|
|
24
|
-
* Simulate the upload process
|
|
25
|
-
*/
|
|
26
|
-
/**
|
|
27
|
-
* Convert Files list to normal array list
|
|
28
|
-
* @param files (Files List)
|
|
29
|
-
*/
|
|
30
|
-
prepareFilesList(files: Array<any>): void;
|
|
31
|
-
/**
|
|
32
|
-
* format bytes
|
|
33
|
-
* @param bytes (File size in bytes)
|
|
34
|
-
* @param decimals (Decimals point)
|
|
35
|
-
*/
|
|
36
|
-
formatBytes(bytes: any, decimals: any): string;
|
|
37
|
-
uploaded(): void;
|
|
38
|
-
filesChanged(): void;
|
|
39
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ChangeUserPassword } from './../../classes/Classes';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
3
|
-
import { MessageService } from '../../services/message.service';
|
|
4
|
-
import { DataService } from '../../services/data.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
import { HttpService } from 'tin-core';
|
|
7
|
-
import { Location } from '@angular/common';
|
|
8
|
-
export declare class ChangePasswordComponent implements OnInit {
|
|
9
|
-
private location;
|
|
10
|
-
private httpService;
|
|
11
|
-
private messageService;
|
|
12
|
-
dataService: DataService;
|
|
13
|
-
private authService;
|
|
14
|
-
constructor(location: Location, httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
myRole: any;
|
|
17
|
-
isProcessing: boolean;
|
|
18
|
-
changePassword: ChangeUserPassword;
|
|
19
|
-
change(): void;
|
|
20
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class CheckComponent implements OnInit {
|
|
3
|
-
constructor();
|
|
4
|
-
ngOnInit(): void;
|
|
5
|
-
readonly: boolean;
|
|
6
|
-
display: string;
|
|
7
|
-
value: boolean;
|
|
8
|
-
valueChange: EventEmitter<any>;
|
|
9
|
-
click: EventEmitter<any>;
|
|
10
|
-
check: EventEmitter<any>;
|
|
11
|
-
uncheck: EventEmitter<any>;
|
|
12
|
-
changed(): void;
|
|
13
|
-
clicked(): void;
|
|
14
|
-
checked(): void;
|
|
15
|
-
unchecked(): void;
|
|
16
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MessageService } from '../../services/message.service';
|
|
3
|
-
export declare class ChipsComponent implements OnInit {
|
|
4
|
-
private messageService;
|
|
5
|
-
constructor(messageService: MessageService);
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
icon: string;
|
|
8
|
-
removable: boolean;
|
|
9
|
-
addable: boolean;
|
|
10
|
-
chips: string[];
|
|
11
|
-
click: EventEmitter<any>;
|
|
12
|
-
remove: EventEmitter<any>;
|
|
13
|
-
clicked(chip: string): void;
|
|
14
|
-
removed(chip: any): void;
|
|
15
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { DataService } from './../../services/data.service';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
3
|
-
import { HttpService } from 'tin-core';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
import { User, Profile, Account, AppConfig } from '../../classes/Classes';
|
|
7
|
-
import { Router } from '@angular/router';
|
|
8
|
-
export declare class CreateAccountComponent implements OnInit {
|
|
9
|
-
private httpService;
|
|
10
|
-
private messageService;
|
|
11
|
-
private dataService;
|
|
12
|
-
private authService;
|
|
13
|
-
router: Router;
|
|
14
|
-
constructor(httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService, router: Router);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
appConfig: AppConfig;
|
|
17
|
-
isProcessing: boolean;
|
|
18
|
-
user: User;
|
|
19
|
-
profile: Profile;
|
|
20
|
-
account: Account;
|
|
21
|
-
confirmPassword: string;
|
|
22
|
-
openProfile: boolean;
|
|
23
|
-
create(): void;
|
|
24
|
-
viewProfile(user: User): void;
|
|
25
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
export declare class DateComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
date: FormControl;
|
|
7
|
-
display: string;
|
|
8
|
-
readonly: boolean;
|
|
9
|
-
currentYear: number;
|
|
10
|
-
min: FormControl;
|
|
11
|
-
max: FormControl;
|
|
12
|
-
onChangeEvent(d: any): void;
|
|
13
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class DatetimeComponent implements OnInit {
|
|
3
|
-
constructor();
|
|
4
|
-
ngOnInit(): void;
|
|
5
|
-
display: string;
|
|
6
|
-
value: string;
|
|
7
|
-
valueChange: EventEmitter<any>;
|
|
8
|
-
readonly: boolean;
|
|
9
|
-
min: string;
|
|
10
|
-
max: string;
|
|
11
|
-
changed(): void;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { AngularEditorConfig } from '@kolkov/angular-editor';
|
|
3
|
-
export declare class HtmlComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
value: string;
|
|
7
|
-
valueChange: EventEmitter<any>;
|
|
8
|
-
readonly: boolean;
|
|
9
|
-
changed(): void;
|
|
10
|
-
ngOnChanges(): void;
|
|
11
|
-
config: AngularEditorConfig;
|
|
12
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { LoaderService } from '../../services/loader.service';
|
|
3
|
-
export declare class LoaderComponent implements OnInit {
|
|
4
|
-
private loaderService;
|
|
5
|
-
constructor(loaderService: LoaderService);
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
logo: string;
|
|
8
|
-
loading: boolean;
|
|
9
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { HttpService } from "tin-core";
|
|
2
|
-
import { MessageService } from "../../services/message.service";
|
|
3
|
-
import { StorageService } from "../../services/storage.service";
|
|
4
|
-
import { AuthService } from "../../services/auth.service";
|
|
5
|
-
import { OnInit } from "@angular/core";
|
|
6
|
-
import { Router } from "@angular/router";
|
|
7
|
-
import { DataService } from "../../services/data.service";
|
|
8
|
-
import { LogService } from "./../../services/log.service";
|
|
9
|
-
import { User, loginConfig, AppConfig } from "../../classes/Classes";
|
|
10
|
-
export declare class LoginComponent implements OnInit {
|
|
11
|
-
private httpService;
|
|
12
|
-
private storageService;
|
|
13
|
-
router: Router;
|
|
14
|
-
private messageService;
|
|
15
|
-
private dataService;
|
|
16
|
-
authService: AuthService;
|
|
17
|
-
private logService;
|
|
18
|
-
constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataService, authService: AuthService, logService: LogService);
|
|
19
|
-
user: User;
|
|
20
|
-
hide: boolean;
|
|
21
|
-
isProcessing: boolean;
|
|
22
|
-
config: loginConfig;
|
|
23
|
-
ngOnInit(): void;
|
|
24
|
-
appConfig: AppConfig;
|
|
25
|
-
signup(): void;
|
|
26
|
-
recoverAccount(): void;
|
|
27
|
-
login(): void;
|
|
28
|
-
setRole(roleID: string): void;
|
|
29
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataService } from "../../services/data.service";
|
|
3
|
-
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
-
import { AuthService } from '../../services/auth.service';
|
|
5
|
-
export declare class LogsComponent implements OnInit {
|
|
6
|
-
private authService;
|
|
7
|
-
private dataService;
|
|
8
|
-
constructor(authService: AuthService, dataService: DataService);
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
isProcessing: boolean;
|
|
11
|
-
logsPaginator: MatPaginator;
|
|
12
|
-
_filterText: string;
|
|
13
|
-
logs: any;
|
|
14
|
-
displayedColumns: string[];
|
|
15
|
-
loadLogs(): void;
|
|
16
|
-
applyFilter(filterValue: string): void;
|
|
17
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
export declare class messageDialog implements OnInit {
|
|
4
|
-
private dialogRef;
|
|
5
|
-
data: any;
|
|
6
|
-
constructor(dialogRef: MatDialogRef<messageDialog>, data: any);
|
|
7
|
-
ngOnInit(): void;
|
|
8
|
-
messageType: any;
|
|
9
|
-
_messageSubject: any;
|
|
10
|
-
_messageDetails: any;
|
|
11
|
-
response(resp: string): void;
|
|
12
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class MoneyComponent implements OnInit {
|
|
3
|
-
constructor();
|
|
4
|
-
ngOnInit(): void;
|
|
5
|
-
ngOnChanges(): void;
|
|
6
|
-
readonly: boolean;
|
|
7
|
-
display: string;
|
|
8
|
-
value: string;
|
|
9
|
-
valueChange: EventEmitter<any>;
|
|
10
|
-
width: string;
|
|
11
|
-
hint: string;
|
|
12
|
-
currency: string;
|
|
13
|
-
changed(): void;
|
|
14
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { AppConfig } from './../../classes/Classes';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
export declare class NavMenuComponent {
|
|
5
|
-
router: Router;
|
|
6
|
-
authService: AuthService;
|
|
7
|
-
constructor(router: Router, authService: AuthService);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
myRole: any;
|
|
10
|
-
loggedUserFullName: string;
|
|
11
|
-
loggedin: boolean;
|
|
12
|
-
isExpanded: boolean;
|
|
13
|
-
appConfig: AppConfig;
|
|
14
|
-
collapse(): void;
|
|
15
|
-
toggle(): void;
|
|
16
|
-
redirectTo(link: string): void;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class OptionComponent implements OnInit {
|
|
3
|
-
constructor();
|
|
4
|
-
ngOnInit(): void;
|
|
5
|
-
options: any;
|
|
6
|
-
optionValue: string;
|
|
7
|
-
optionDisplay: string;
|
|
8
|
-
readonly: boolean;
|
|
9
|
-
value: string;
|
|
10
|
-
display: string;
|
|
11
|
-
show: boolean;
|
|
12
|
-
valueChange: EventEmitter<any>;
|
|
13
|
-
enterPress: EventEmitter<any>;
|
|
14
|
-
changed(): void;
|
|
15
|
-
enterPressed(): void;
|
|
16
|
-
resetValue(): void;
|
|
17
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { AuthService } from './../../services/auth.service';
|
|
2
|
-
import { HttpService } from 'tin-core';
|
|
3
|
-
import { MessageService } from './../../services/message.service';
|
|
4
|
-
import { DataService } from './../../services/data.service';
|
|
5
|
-
import { OnInit } from '@angular/core';
|
|
6
|
-
import { AppConfig, Profile } from '../../classes/Classes';
|
|
7
|
-
import { Router } from '@angular/router';
|
|
8
|
-
export declare class ProfileComponent implements OnInit {
|
|
9
|
-
dataService: DataService;
|
|
10
|
-
private messageService;
|
|
11
|
-
private httpService;
|
|
12
|
-
private router;
|
|
13
|
-
private authService;
|
|
14
|
-
isProcessing: boolean;
|
|
15
|
-
constructor(dataService: DataService, messageService: MessageService, httpService: HttpService, router: Router, authService: AuthService);
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
myRole: any;
|
|
18
|
-
appConfig: AppConfig;
|
|
19
|
-
selfProfile: boolean;
|
|
20
|
-
profile: Profile;
|
|
21
|
-
roles: any;
|
|
22
|
-
approvalRoles: any;
|
|
23
|
-
employees: any;
|
|
24
|
-
loadProfile(userID: string): void;
|
|
25
|
-
loadRoles(): void;
|
|
26
|
-
changePassword(): void;
|
|
27
|
-
gotoUsers(): void;
|
|
28
|
-
update(): void;
|
|
29
|
-
updateProfile(): void;
|
|
30
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as ɵngcc0 from '@angular/core';
|
|
3
|
-
export declare class ProfilesComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: ɵngcc0.ɵɵFactoryDef<ProfilesComponent, never>;
|
|
7
|
-
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ProfilesComponent, "spa-profiles", never, {}, {}, never, never>;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZXMuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbInByb2ZpbGVzLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztBQUNBO0FBQ0E7QUFDQTs7O0FBQ0EiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuZXhwb3J0IGRlY2xhcmUgY2xhc3MgUHJvZmlsZXNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IoKTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbn1cclxuIl19
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataService } from '../../services/data.service';
|
|
3
|
-
import { AuthService } from '../../services/auth.service';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { Location } from '@angular/common';
|
|
6
|
-
export declare class RecoverAccountComponent implements OnInit {
|
|
7
|
-
private location;
|
|
8
|
-
private dataService;
|
|
9
|
-
authService: AuthService;
|
|
10
|
-
private messageService;
|
|
11
|
-
constructor(location: Location, dataService: DataService, authService: AuthService, messageService: MessageService);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
userID: string;
|
|
14
|
-
recover(): void;
|
|
15
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { MessageService } from '../../services/message.service';
|
|
2
|
-
import { AuthService } from '../../services/auth.service';
|
|
3
|
-
import { OnInit } from '@angular/core';
|
|
4
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
5
|
-
import { DataService } from '../../services/data.service';
|
|
6
|
-
import { Role } from '../../classes/Classes';
|
|
7
|
-
export declare class addRoleDialog implements OnInit {
|
|
8
|
-
private messageService;
|
|
9
|
-
private dataService;
|
|
10
|
-
private authService;
|
|
11
|
-
private dialogRef;
|
|
12
|
-
data: any;
|
|
13
|
-
constructor(messageService: MessageService, dataService: DataService, authService: AuthService, dialogRef: MatDialogRef<addRoleDialog>, data: any);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
capItems: any;
|
|
16
|
-
isProcessing: boolean;
|
|
17
|
-
role: Role;
|
|
18
|
-
submit(): void;
|
|
19
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { MessageService } from '../../services/message.service';
|
|
2
|
-
import { AuthService } from '../../services/auth.service';
|
|
3
|
-
import { OnInit } from '@angular/core';
|
|
4
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
5
|
-
import { DataService } from '../../services/data.service';
|
|
6
|
-
import { Role } from '../../classes/Classes';
|
|
7
|
-
import * as ɵngcc0 from '@angular/core';
|
|
8
|
-
export declare class editRoleDialog implements OnInit {
|
|
9
|
-
private messageService;
|
|
10
|
-
private dataserv;
|
|
11
|
-
private authserv;
|
|
12
|
-
private dialogRef;
|
|
13
|
-
data: any;
|
|
14
|
-
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<editRoleDialog>, data: any);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
role: Role;
|
|
17
|
-
isLoadComplete: boolean;
|
|
18
|
-
isProcessing: boolean;
|
|
19
|
-
submit(): void;
|
|
20
|
-
static ɵfac: ɵngcc0.ɵɵFactoryDef<editRoleDialog, never>;
|
|
21
|
-
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<editRoleDialog, "app-editRole", never, {}, {}, never, never>;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdFJvbGVEaWFsb2cuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbImVkaXRSb2xlRGlhbG9nLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7OztBQUNBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9tZXNzYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2F1dGguc2VydmljZSc7XHJcbmltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5pbXBvcnQgeyBEYXRhU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZSc7XHJcbmltcG9ydCB7IFJvbGUgfSBmcm9tICcuLi8uLi9jbGFzc2VzL0NsYXNzZXMnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyBlZGl0Um9sZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBkYXRhc2VydjtcclxuICAgIHByaXZhdGUgYXV0aHNlcnY7XHJcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjtcclxuICAgIGRhdGE6IGFueTtcclxuICAgIGNvbnN0cnVjdG9yKG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSwgZGF0YXNlcnY6IERhdGFTZXJ2aWNlLCBhdXRoc2VydjogQXV0aFNlcnZpY2UsIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPGVkaXRSb2xlRGlhbG9nPiwgZGF0YTogYW55KTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICByb2xlOiBSb2xlO1xyXG4gICAgaXNMb2FkQ29tcGxldGU6IGJvb2xlYW47XHJcbiAgICBpc1Byb2Nlc3Npbmc6IGJvb2xlYW47XHJcbiAgICBzdWJtaXQoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { MessageService } from '../../services/message.service';
|
|
2
|
-
import { AuthService } from '../../services/auth.service';
|
|
3
|
-
import { OnInit } from '@angular/core';
|
|
4
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
5
|
-
import { DataService } from '../../services/data.service';
|
|
6
|
-
import { Role } from '../../classes/Classes';
|
|
7
|
-
export declare class editRoleDialog implements OnInit {
|
|
8
|
-
private messageService;
|
|
9
|
-
private dataserv;
|
|
10
|
-
private authserv;
|
|
11
|
-
private dialogRef;
|
|
12
|
-
data: any;
|
|
13
|
-
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<editRoleDialog>, data: any);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
role: Role;
|
|
16
|
-
isLoadComplete: boolean;
|
|
17
|
-
isProcessing: boolean;
|
|
18
|
-
submit(): void;
|
|
19
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { AppConfig } from './../../classes/Classes';
|
|
2
|
-
import { OnInit } from "@angular/core";
|
|
3
|
-
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
-
import { DataService } from "../../services/data.service";
|
|
5
|
-
import { HttpService } from "tin-core";
|
|
6
|
-
import { Role } from "../../classes/Classes";
|
|
7
|
-
import { Router } from "@angular/router";
|
|
8
|
-
import { MessageService } from '../../services/message.service';
|
|
9
|
-
import { AuthService } from '../../services/auth.service';
|
|
10
|
-
export declare class RolesComponent implements OnInit {
|
|
11
|
-
private httpService;
|
|
12
|
-
private 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
|
-
roles: Role[];
|
|
21
|
-
appConfig: AppConfig;
|
|
22
|
-
loadRoles(): void;
|
|
23
|
-
refresh(): void;
|
|
24
|
-
addRole(): void;
|
|
25
|
-
viewRole(role: Role): void;
|
|
26
|
-
editRole(role: Role): void;
|
|
27
|
-
updateRole(role: Role): void;
|
|
28
|
-
deleteRole(role: Role): void;
|
|
29
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import { DataService } from '../../services/data.service';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
import * as ɵngcc0 from '@angular/core';
|
|
7
|
-
export declare class viewRoleDialog implements OnInit {
|
|
8
|
-
private messageService;
|
|
9
|
-
private dataserv;
|
|
10
|
-
private authserv;
|
|
11
|
-
private dialogRef;
|
|
12
|
-
data: any;
|
|
13
|
-
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<viewRoleDialog>, data: any);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
submit(): void;
|
|
16
|
-
static ɵfac: ɵngcc0.ɵɵFactoryDef<viewRoleDialog, never>;
|
|
17
|
-
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<viewRoleDialog, "app-viewRole", never, {}, {}, never, never>;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlld1JvbGVEaWFsb2cuY29tcG9uZW50LmQudHMiLCJzb3VyY2VzIjpbInZpZXdSb2xlRGlhbG9nLmNvbXBvbmVudC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5pbXBvcnQgeyBEYXRhU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2RhdGEuc2VydmljZSc7XHJcbmltcG9ydCB7IE1lc3NhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbWVzc2FnZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgQXV0aFNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9hdXRoLnNlcnZpY2UnO1xyXG5leHBvcnQgZGVjbGFyZSBjbGFzcyB2aWV3Um9sZURpYWxvZyBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBwcml2YXRlIG1lc3NhZ2VTZXJ2aWNlO1xyXG4gICAgcHJpdmF0ZSBkYXRhc2VydjtcclxuICAgIHByaXZhdGUgYXV0aHNlcnY7XHJcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjtcclxuICAgIGRhdGE6IGFueTtcclxuICAgIGNvbnN0cnVjdG9yKG1lc3NhZ2VTZXJ2aWNlOiBNZXNzYWdlU2VydmljZSwgZGF0YXNlcnY6IERhdGFTZXJ2aWNlLCBhdXRoc2VydjogQXV0aFNlcnZpY2UsIGRpYWxvZ1JlZjogTWF0RGlhbG9nUmVmPHZpZXdSb2xlRGlhbG9nPiwgZGF0YTogYW55KTtcclxuICAgIG5nT25Jbml0KCk6IHZvaWQ7XHJcbiAgICBzdWJtaXQoKTogdm9pZDtcclxufVxyXG4iXX0=
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import { DataService } from '../../services/data.service';
|
|
4
|
-
import { MessageService } from '../../services/message.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
export declare class viewRoleDialog implements OnInit {
|
|
7
|
-
private messageService;
|
|
8
|
-
private dataserv;
|
|
9
|
-
private authserv;
|
|
10
|
-
private dialogRef;
|
|
11
|
-
data: any;
|
|
12
|
-
constructor(messageService: MessageService, dataserv: DataService, authserv: AuthService, dialogRef: MatDialogRef<viewRoleDialog>, data: any);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
submit(): void;
|
|
15
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class SelectComponent implements OnInit {
|
|
3
|
-
constructor();
|
|
4
|
-
ngOnInit(): void;
|
|
5
|
-
ngOnChanges(): void;
|
|
6
|
-
displayValue: any;
|
|
7
|
-
width: string;
|
|
8
|
-
readonly: boolean;
|
|
9
|
-
readonlyMode: string;
|
|
10
|
-
hint: string;
|
|
11
|
-
display: string;
|
|
12
|
-
value: string;
|
|
13
|
-
options: any;
|
|
14
|
-
optionValue: string;
|
|
15
|
-
optionDisplay: string;
|
|
16
|
-
optionDisplayExtra: string;
|
|
17
|
-
valueChange: EventEmitter<any>;
|
|
18
|
-
changed(): void;
|
|
19
|
-
selectChanged(): void;
|
|
20
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DataService } from '../../services/data.service';
|
|
3
|
-
import { MessageService } from '../../services/message.service';
|
|
4
|
-
export declare class SettingsComponent implements OnInit {
|
|
5
|
-
private dataService;
|
|
6
|
-
private messageService;
|
|
7
|
-
constructor(dataService: DataService, messageService: MessageService);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
_filterText: string;
|
|
10
|
-
settings: any;
|
|
11
|
-
isProcessing: boolean;
|
|
12
|
-
applyFilter(filterValue: string): void;
|
|
13
|
-
loadSettings(): void;
|
|
14
|
-
updateSetting(setting: any): void;
|
|
15
|
-
addSetting(): void;
|
|
16
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { HttpService } from 'tin-core';
|
|
3
|
-
import { MessageService } from '../../services/message.service';
|
|
4
|
-
import { DataService } from '../../services/data.service';
|
|
5
|
-
import { AuthService } from '../../services/auth.service';
|
|
6
|
-
import { User, Profile, Account } from '../../classes/Classes';
|
|
7
|
-
export declare class SignupComponent implements OnInit {
|
|
8
|
-
private httpService;
|
|
9
|
-
private messageService;
|
|
10
|
-
private dataService;
|
|
11
|
-
private authService;
|
|
12
|
-
constructor(httpService: HttpService, messageService: MessageService, dataService: DataService, authService: AuthService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
isProcessing: boolean;
|
|
15
|
-
user: User;
|
|
16
|
-
profile: Profile;
|
|
17
|
-
account: Account;
|
|
18
|
-
confirmPassword: string;
|
|
19
|
-
create(): void;
|
|
20
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
|
-
import { MatStepper } from '@angular/material/stepper';
|
|
3
|
-
import { Step } from '../../classes/Classes';
|
|
4
|
-
export declare class StepsComponent implements OnInit, AfterViewInit {
|
|
5
|
-
constructor();
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
ngAfterViewInit(): void;
|
|
8
|
-
ngOnChanges(): void;
|
|
9
|
-
stepper: MatStepper;
|
|
10
|
-
value: string;
|
|
11
|
-
steps: Step[];
|
|
12
|
-
setStepper(): void;
|
|
13
|
-
pushStepper(count: number): void;
|
|
14
|
-
pushSteps(): void;
|
|
15
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MatPaginator } from '@angular/material/paginator';
|
|
3
|
-
import { Operator, TableColumnType, TableConfig } from '../../classes/Classes';
|
|
4
|
-
export declare class TableComponent implements OnInit {
|
|
5
|
-
constructor();
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
ngOnChanges(): void;
|
|
8
|
-
config: TableConfig;
|
|
9
|
-
data: any;
|
|
10
|
-
dataChange: EventEmitter<any>;
|
|
11
|
-
buttonClick: EventEmitter<any>;
|
|
12
|
-
loadClick: EventEmitter<any>;
|
|
13
|
-
createClick: EventEmitter<any>;
|
|
14
|
-
tablePaginator: MatPaginator;
|
|
15
|
-
colType: typeof TableColumnType;
|
|
16
|
-
op: typeof Operator;
|
|
17
|
-
displayedColumns: string[];
|
|
18
|
-
styleString: string;
|
|
19
|
-
_filterText: string;
|
|
20
|
-
applyFilter(filterValue: string): void;
|
|
21
|
-
do(name: any, item: any): void;
|
|
22
|
-
create(): void;
|
|
23
|
-
load(): void;
|
|
24
|
-
test(a: any, op: Operator, b: any): boolean;
|
|
25
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
export declare class TextComponent implements OnInit {
|
|
5
|
-
constructor();
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
ngAfterViewInit(): void;
|
|
8
|
-
hideRequiredControl: FormControl;
|
|
9
|
-
readonly: boolean;
|
|
10
|
-
hint: string;
|
|
11
|
-
display: string;
|
|
12
|
-
placeholder: string;
|
|
13
|
-
value: string;
|
|
14
|
-
valueChange: EventEmitter<any>;
|
|
15
|
-
format: string;
|
|
16
|
-
leave: EventEmitter<any>;
|
|
17
|
-
enterPress: EventEmitter<any>;
|
|
18
|
-
rows: string;
|
|
19
|
-
width: string;
|
|
20
|
-
options: any;
|
|
21
|
-
optionValue: string;
|
|
22
|
-
optionDisplay: string;
|
|
23
|
-
myControl: FormControl;
|
|
24
|
-
filteredOptions: Observable<string[]>;
|
|
25
|
-
private initFilter;
|
|
26
|
-
private _filter;
|
|
27
|
-
required: boolean;
|
|
28
|
-
min: number;
|
|
29
|
-
max: number;
|
|
30
|
-
regex: string;
|
|
31
|
-
changed(): void;
|
|
32
|
-
changed2(): void;
|
|
33
|
-
leaved(): void;
|
|
34
|
-
enterPressed(): void;
|
|
35
|
-
control: FormControl;
|
|
36
|
-
validate(): string;
|
|
37
|
-
}
|