tin-spa 10.0.0 → 14.3.11
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/README.md +24 -24
- package/esm2020/lib/classes/Classes.mjs +265 -0
- package/esm2020/lib/classes/TinCore.mjs +401 -0
- package/esm2020/lib/components/accounts/accountDialog.component.mjs +56 -0
- package/esm2020/lib/components/accounts/accounts.component.mjs +70 -0
- package/esm2020/lib/components/activity/activity.component.mjs +24 -0
- package/esm2020/lib/components/alert/alert.component.mjs +29 -0
- package/esm2020/lib/components/attach/attach.component.mjs +86 -0
- package/esm2020/lib/components/bug/bug.component.mjs +14 -0
- package/esm2020/lib/components/change-password/change-password.component.mjs +92 -0
- package/esm2020/lib/components/check/check.component.mjs +67 -0
- package/esm2020/lib/components/chips/chips.component.mjs +58 -0
- package/esm2020/lib/components/create-account/create-account.component.mjs +109 -0
- package/esm2020/lib/components/customers/customers.component.mjs +60 -0
- package/esm2020/lib/components/date/date.component.mjs +101 -0
- package/esm2020/lib/components/datetime/datetime.component.mjs +52 -0
- package/esm2020/lib/components/departments/departments.component.mjs +24 -0
- package/esm2020/lib/components/employees/employees.component.mjs +21 -0
- package/esm2020/lib/components/filter/filter.component.mjs +54 -0
- package/esm2020/lib/components/form/form.component.mjs +191 -0
- package/esm2020/lib/components/grades/grades.component.mjs +14 -0
- package/esm2020/lib/components/inventory/inventory.component.mjs +99 -0
- package/esm2020/lib/components/inventory/quantityDialog.component.mjs +53 -0
- package/esm2020/lib/components/invitations/invitations.component.mjs +14 -0
- package/esm2020/lib/components/invitations-table/invitations-table.component.mjs +70 -0
- package/esm2020/lib/components/label/label.component.mjs +25 -0
- package/esm2020/lib/components/list-dialog/list-dialog.component.mjs +68 -0
- package/esm2020/lib/components/loader/loader.component.mjs +25 -0
- package/esm2020/lib/components/login/login.component.mjs +127 -0
- package/esm2020/lib/components/logs/logs.component.mjs +37 -0
- package/esm2020/lib/components/membership/membership.component.mjs +48 -0
- package/esm2020/lib/components/message/messageDialog.component.mjs +33 -0
- package/esm2020/lib/components/money/currency-input-mask.directive.mjs +185 -0
- package/esm2020/lib/components/money/currency-input-mask.module.mjs +28 -0
- package/esm2020/lib/components/money/money.component.mjs +120 -0
- package/esm2020/lib/components/nav-menu/nav-menu.component.mjs +84 -0
- package/esm2020/lib/components/notifications/notifications.component.mjs +14 -0
- package/esm2020/lib/components/number/number.component.mjs +116 -0
- package/esm2020/lib/components/option/option.component.mjs +67 -0
- package/esm2020/lib/components/plans/plans.component.mjs +47 -0
- package/esm2020/lib/components/positions/positions.component.mjs +21 -0
- package/esm2020/lib/components/profile/profile.component.mjs +92 -0
- package/esm2020/lib/components/recover-account/recover-account.component.mjs +46 -0
- package/esm2020/lib/components/roles/addRoleDialog.component.mjs +60 -0
- package/esm2020/lib/components/roles/roles.component.mjs +91 -0
- package/esm2020/lib/components/search/search.component.mjs +31 -0
- package/esm2020/lib/components/select/select.component.mjs +138 -0
- package/esm2020/lib/components/settings/settings.component.mjs +62 -0
- package/esm2020/lib/components/signup/signup.component.mjs +50 -0
- package/esm2020/lib/components/steps/steps.component.mjs +90 -0
- package/esm2020/lib/components/suppliers/suppliers.component.mjs +50 -0
- package/esm2020/lib/components/table/detailsDialog.component.mjs +232 -0
- package/esm2020/lib/components/table/table.component.mjs +406 -0
- package/esm2020/lib/components/table-action/table-action.component.mjs +46 -0
- package/esm2020/lib/components/table-header/table-header.component.mjs +76 -0
- package/esm2020/lib/components/table-internal/detailsDialog-internal.component.mjs +226 -0
- package/esm2020/lib/components/table-internal/table-internal.component.mjs +406 -0
- package/esm2020/lib/components/table-row/table-row.component.mjs +58 -0
- package/esm2020/lib/components/tasks/tasks.component.mjs +86 -0
- package/esm2020/lib/components/tenant-settings/inviteDialog.component.mjs +60 -0
- package/esm2020/lib/components/tenant-settings/tenant-settings.component.mjs +155 -0
- package/esm2020/lib/components/tenants/tenants.component.mjs +47 -0
- package/esm2020/lib/components/text/text.component.mjs +181 -0
- package/esm2020/lib/components/tiles/tiles.component.mjs +81 -0
- package/esm2020/lib/components/tin-spa.component.mjs +19 -0
- package/esm2020/lib/components/transactions/transactDialog.component.mjs +80 -0
- package/esm2020/lib/components/transactions/transactions.component.mjs +101 -0
- package/esm2020/lib/components/users/users.component.mjs +118 -0
- package/esm2020/lib/components/viewer/viewer.component.mjs +79 -0
- package/esm2020/lib/components/viewer/viewerDialog.component.mjs +88 -0
- package/esm2020/lib/components/welcome/welcome.component.mjs +86 -0
- package/esm2020/lib/modules/admin/admin-routing.module.mjs +61 -0
- package/esm2020/lib/modules/admin/admin.module.mjs +26 -0
- package/esm2020/lib/modules/index/index-routing.module.mjs +27 -0
- package/esm2020/lib/modules/index/index.module.mjs +26 -0
- package/esm2020/lib/modules/spa-admin.module.mjs +71 -0
- package/esm2020/lib/modules/spa-index.module.mjs +54 -0
- package/esm2020/lib/modules/spa-mat.module.mjs +84 -0
- package/esm2020/lib/modules/spa-user.module.mjs +47 -0
- package/esm2020/lib/modules/user/user-routing.module.mjs +23 -0
- package/esm2020/lib/modules/user/user.module.mjs +26 -0
- package/esm2020/lib/pipes/camelToWords.pipe.mjs +17 -0
- package/esm2020/lib/services/auth.service.mjs +174 -0
- package/esm2020/lib/services/button.service.mjs +102 -0
- package/esm2020/lib/services/condition.service.mjs +32 -0
- package/esm2020/lib/services/datalib.service.mjs +387 -0
- package/esm2020/lib/services/dialog.service.mjs +81 -0
- package/esm2020/lib/services/export.service.mjs +16 -0
- package/esm2020/lib/services/http.service.mjs +79 -0
- package/esm2020/lib/services/loader-interceptor.service.mjs +86 -0
- package/esm2020/lib/services/loader.service.mjs +17 -0
- package/esm2020/lib/services/log.service.mjs +77 -0
- package/esm2020/lib/services/message.service.mjs +59 -0
- package/esm2020/lib/services/storage.service.mjs +34 -0
- package/esm2020/lib/services/table-config.service.mjs +30 -0
- package/esm2020/lib/services/tin-spa.service.mjs +14 -0
- package/esm2020/lib/tin-spa.module.mjs +183 -0
- package/esm2020/public-api.mjs +80 -0
- package/esm2020/tin-spa.mjs +5 -0
- package/fesm2015/tin-spa.mjs +7454 -0
- package/fesm2015/tin-spa.mjs.map +1 -0
- package/fesm2020/tin-spa.mjs +7410 -0
- package/fesm2020/tin-spa.mjs.map +1 -0
- package/index.d.ts +5 -3408
- package/lib/classes/Classes.d.ts +431 -0
- package/lib/classes/TinCore.d.ts +48 -0
- package/lib/components/accounts/accountDialog.component.d.ts +27 -0
- package/lib/components/accounts/accounts.component.d.ts +25 -0
- package/lib/components/activity/activity.component.d.ts +11 -0
- package/lib/components/alert/alert.component.d.ts +14 -0
- package/lib/components/attach/attach.component.d.ts +23 -0
- package/lib/components/bug/bug.component.d.ts +8 -0
- package/lib/components/change-password/change-password.component.d.ts +27 -0
- package/lib/components/check/check.component.d.ts +24 -0
- package/lib/components/chips/chips.component.d.ts +18 -0
- package/lib/components/create-account/create-account.component.d.ts +33 -0
- package/lib/components/customers/customers.component.d.ts +18 -0
- package/lib/components/date/date.component.d.ts +29 -0
- package/lib/components/datetime/datetime.component.d.ts +18 -0
- package/lib/components/departments/departments.component.d.ts +14 -0
- package/lib/components/employees/employees.component.d.ts +12 -0
- package/lib/components/filter/filter.component.d.ts +19 -0
- package/lib/components/form/form.component.d.ts +36 -0
- package/lib/components/grades/grades.component.d.ts +8 -0
- package/lib/components/inventory/inventory.component.d.ts +25 -0
- package/lib/components/inventory/quantityDialog.component.d.ts +23 -0
- package/lib/components/invitations/invitations.component.d.ts +8 -0
- package/lib/components/invitations-table/invitations-table.component.d.ts +19 -0
- package/lib/components/label/label.component.d.ts +11 -0
- package/lib/components/list-dialog/list-dialog.component.d.ts +23 -0
- package/lib/components/loader/loader.component.d.ts +12 -0
- package/lib/components/login/login.component.d.ts +39 -0
- package/lib/components/logs/logs.component.d.ts +18 -0
- package/lib/components/membership/membership.component.d.ts +17 -0
- package/lib/components/message/messageDialog.component.d.ts +15 -0
- package/lib/components/money/currency-input-mask.directive.d.ts +41 -0
- package/lib/components/money/currency-input-mask.module.d.ts +9 -0
- package/lib/components/money/money.component.d.ts +33 -0
- package/lib/components/nav-menu/nav-menu.component.d.ts +34 -0
- package/lib/components/notifications/notifications.component.d.ts +8 -0
- package/lib/components/number/number.component.d.ts +35 -0
- package/lib/components/option/option.component.d.ts +23 -0
- package/lib/components/plans/plans.component.d.ts +17 -0
- package/lib/components/positions/positions.component.d.ts +12 -0
- package/lib/components/profile/profile.component.d.ts +34 -0
- package/lib/components/recover-account/recover-account.component.d.ts +18 -0
- package/lib/components/roles/addRoleDialog.component.d.ts +24 -0
- package/lib/components/roles/roles.component.d.ts +30 -0
- package/lib/components/search/search.component.d.ts +13 -0
- package/lib/components/select/select.component.d.ts +42 -0
- package/lib/components/settings/settings.component.d.ts +19 -0
- package/lib/components/signup/signup.component.d.ts +23 -0
- package/lib/components/steps/steps.component.d.ts +18 -0
- package/lib/components/suppliers/suppliers.component.d.ts +17 -0
- package/lib/components/table/detailsDialog.component.d.ts +64 -0
- package/lib/components/table/table.component.d.ts +82 -0
- package/lib/components/table-action/table-action.component.d.ts +22 -0
- package/lib/components/table-header/table-header.component.d.ts +31 -0
- package/lib/components/table-internal/detailsDialog-internal.component.d.ts +64 -0
- package/lib/components/table-internal/table-internal.component.d.ts +82 -0
- package/lib/components/table-row/table-row.component.d.ts +28 -0
- package/lib/components/tasks/tasks.component.d.ts +27 -0
- package/lib/components/tenant-settings/inviteDialog.component.d.ts +28 -0
- package/lib/components/tenant-settings/tenant-settings.component.d.ts +42 -0
- package/lib/components/tenants/tenants.component.d.ts +17 -0
- package/lib/components/text/text.component.d.ts +46 -0
- package/lib/components/tiles/tiles.component.d.ts +25 -0
- package/lib/components/tin-spa.component.d.ts +5 -0
- package/lib/components/transactions/transactDialog.component.d.ts +26 -0
- package/lib/components/transactions/transactions.component.d.ts +31 -0
- package/lib/components/users/users.component.d.ts +36 -0
- package/lib/components/viewer/viewer.component.d.ts +25 -0
- package/lib/components/viewer/viewerDialog.component.d.ts +22 -0
- package/lib/components/welcome/welcome.component.d.ts +25 -0
- package/lib/modules/admin/admin-routing.module.d.ts +7 -0
- package/lib/modules/admin/admin.module.d.ts +9 -0
- package/lib/modules/index/index-routing.module.d.ts +7 -0
- package/lib/modules/index/index.module.d.ts +9 -0
- package/lib/modules/spa-admin.module.d.ts +15 -0
- package/lib/modules/spa-index.module.d.ts +13 -0
- package/lib/modules/spa-mat.module.d.ts +38 -0
- package/lib/modules/spa-user.module.d.ts +11 -0
- package/lib/modules/user/user-routing.module.d.ts +7 -0
- package/lib/modules/user/user.module.d.ts +9 -0
- package/lib/pipes/camelToWords.pipe.d.ts +7 -0
- package/lib/services/auth.service.d.ts +61 -0
- package/lib/services/button.service.d.ts +27 -0
- package/lib/services/condition.service.d.ts +10 -0
- package/lib/services/datalib.service.d.ts +77 -0
- package/lib/services/dialog.service.d.ts +19 -0
- package/lib/services/export.service.d.ts +6 -0
- package/lib/services/http.service.d.ts +22 -0
- package/lib/services/loader-interceptor.service.d.ts +22 -0
- package/lib/services/loader.service.d.ts +8 -0
- package/lib/services/log.service.d.ts +19 -0
- package/lib/services/message.service.d.ts +16 -0
- package/lib/services/storage.service.d.ts +10 -0
- package/lib/services/table-config.service.d.ts +9 -0
- package/lib/services/tin-spa.service.d.ts +6 -0
- package/lib/tin-spa.module.d.ts +66 -0
- package/package.json +13 -8
- package/public-api.d.ts +69 -0
- package/fesm2022/tin-spa.mjs +0 -12474
- package/fesm2022/tin-spa.mjs.map +0 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { MessageService } from '../../services/message.service';
|
|
4
|
+
import { AuthService } from '../../services/auth.service';
|
|
5
|
+
import { AppConfig, Register } from '../../classes/Classes';
|
|
6
|
+
import { Router } from '@angular/router';
|
|
7
|
+
import { HttpService } from '../../services/http.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class CreateAccountComponent implements OnInit {
|
|
10
|
+
private httpService;
|
|
11
|
+
private messageService;
|
|
12
|
+
private dataService;
|
|
13
|
+
private authService;
|
|
14
|
+
router: Router;
|
|
15
|
+
constructor(httpService: HttpService, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, router: Router);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
appConfig: AppConfig;
|
|
18
|
+
isProcessing: boolean;
|
|
19
|
+
register: Register;
|
|
20
|
+
confirmPassword: string;
|
|
21
|
+
openProfile: boolean;
|
|
22
|
+
authTypes: {
|
|
23
|
+
name: string;
|
|
24
|
+
value: string;
|
|
25
|
+
}[];
|
|
26
|
+
roles: any;
|
|
27
|
+
check(): void;
|
|
28
|
+
loadRoles(): void;
|
|
29
|
+
create(): void;
|
|
30
|
+
viewProfile(userName: string): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateAccountComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "spa-create-account", never, { "appConfig": "appConfig"; }, {}, never, never, false>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
+
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CustomersComponent implements OnInit {
|
|
8
|
+
private dataService;
|
|
9
|
+
private messageService;
|
|
10
|
+
authService: AuthService;
|
|
11
|
+
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
loadTenants(): void;
|
|
14
|
+
formConfig: FormConfig;
|
|
15
|
+
config: TableConfig;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomersComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomersComponent, "spa-customers", never, {}, {}, never, never, false>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DateComponent implements OnInit, OnChanges {
|
|
5
|
+
required: boolean;
|
|
6
|
+
min: string;
|
|
7
|
+
max: string;
|
|
8
|
+
readonly: boolean;
|
|
9
|
+
hint: string;
|
|
10
|
+
value: string;
|
|
11
|
+
display: string;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
width: string;
|
|
14
|
+
valueChange: EventEmitter<string>;
|
|
15
|
+
infoMessage: string;
|
|
16
|
+
infoClick: EventEmitter<void>;
|
|
17
|
+
onInfoClick(event: MouseEvent): void;
|
|
18
|
+
minDate: FormControl;
|
|
19
|
+
maxDate: FormControl;
|
|
20
|
+
control: FormControl;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
private initializeDateControls;
|
|
24
|
+
private updateControlState;
|
|
25
|
+
onChangeEvent(): void;
|
|
26
|
+
validate(control: FormControl): string;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "spa-date", never, { "required": "required"; "min": "min"; "max": "max"; "readonly": "readonly"; "hint": "hint"; "value": "value"; "display": "display"; "placeholder": "placeholder"; "width": "width"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DatetimeComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
display: string;
|
|
7
|
+
value: string;
|
|
8
|
+
valueChange: EventEmitter<any>;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
min: string;
|
|
11
|
+
max: string;
|
|
12
|
+
changed(): void;
|
|
13
|
+
infoMessage: string;
|
|
14
|
+
infoClick: EventEmitter<void>;
|
|
15
|
+
onInfoClick(event: MouseEvent): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DatetimeComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeComponent, "spa-datetime", never, { "display": "display"; "value": "value"; "readonly": "readonly"; "min": "min"; "max": "max"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "infoClick": "infoClick"; }, never, never, false>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
+
import { MessageService } from '../../services/message.service';
|
|
4
|
+
import { AuthService } from '../../services/auth.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DepartmentsComponent implements OnInit {
|
|
7
|
+
dataService: DataServiceLib;
|
|
8
|
+
private messageService;
|
|
9
|
+
authService: AuthService;
|
|
10
|
+
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DepartmentsComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DepartmentsComponent, "spa-departments", never, {}, {}, never, never, false>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
+
import { AuthService } from '../../services/auth.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class EmployeesComponent implements OnInit {
|
|
6
|
+
dataService: DataServiceLib;
|
|
7
|
+
authService: AuthService;
|
|
8
|
+
constructor(dataService: DataServiceLib, authService: AuthService);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmployeesComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmployeesComponent, "spa-employees", never, {}, {}, never, never, false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FilterComponent implements OnInit {
|
|
5
|
+
constructor();
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
ngOnChanges(): void;
|
|
8
|
+
flatButtons: boolean;
|
|
9
|
+
showText: boolean;
|
|
10
|
+
showButton: boolean;
|
|
11
|
+
data: MatTableDataSource<unknown>;
|
|
12
|
+
refreshClick: EventEmitter<any>;
|
|
13
|
+
_filterText: string;
|
|
14
|
+
keyUp(event: KeyboardEvent): void;
|
|
15
|
+
applyFilter(filterValue: string): void;
|
|
16
|
+
refreshClicked(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent, "spa-filter", never, { "flatButtons": "flatButtons"; "showText": "showText"; "showButton": "showButton"; "data": "data"; }, { "refreshClick": "refreshClick"; }, never, never, false>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormConfig, Field, Button } from '../../classes/Classes';
|
|
3
|
+
import { MessageService } from '../../services/message.service';
|
|
4
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FormComponent implements OnInit {
|
|
7
|
+
private messageService;
|
|
8
|
+
private dataService;
|
|
9
|
+
constructor(messageService: MessageService, dataService: DataServiceLib);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
ngOnChanges(): void;
|
|
12
|
+
ngAfterViewInit(): void;
|
|
13
|
+
getVisibleFields(): Field[];
|
|
14
|
+
testReadOnly(f: Field): boolean;
|
|
15
|
+
fileNames: any;
|
|
16
|
+
fileField: Field;
|
|
17
|
+
fileViewField: Field;
|
|
18
|
+
files: any[];
|
|
19
|
+
fields: Field[];
|
|
20
|
+
buttonDisplay: string;
|
|
21
|
+
isProcessing: boolean;
|
|
22
|
+
multiColumn: boolean;
|
|
23
|
+
childFields: Field[];
|
|
24
|
+
data: any;
|
|
25
|
+
config: FormConfig;
|
|
26
|
+
buttonClick: EventEmitter<any>;
|
|
27
|
+
inputChange: EventEmitter<any>;
|
|
28
|
+
inputChanged(field: Field, value: any): void;
|
|
29
|
+
updateChildOptions(masterField: Field): void;
|
|
30
|
+
handleInfoClick(field: Field): void;
|
|
31
|
+
buttonClicked(): void;
|
|
32
|
+
processCall(button: Button): void;
|
|
33
|
+
processForm(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "spa-form", never, { "files": "files"; "data": "data"; "config": "config"; }, { "buttonClick": "buttonClick"; "inputChange": "inputChange"; }, never, never, false>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GradesComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GradesComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GradesComponent, "spa-grades", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
+
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
7
|
+
import { Subject } from 'rxjs';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class InventoryComponent implements OnInit {
|
|
10
|
+
private dataService;
|
|
11
|
+
private messageService;
|
|
12
|
+
authService: AuthService;
|
|
13
|
+
dialog: MatDialog;
|
|
14
|
+
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService, dialog: MatDialog);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
loadData(): void;
|
|
17
|
+
reload: Subject<boolean>;
|
|
18
|
+
clicked(x: any): void;
|
|
19
|
+
comment(x: any): void;
|
|
20
|
+
cats(): void;
|
|
21
|
+
formConfig: FormConfig;
|
|
22
|
+
config: TableConfig;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InventoryComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InventoryComponent, "spa-inventory", never, {}, {}, never, never, false>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { LoaderService } from '../../services/loader.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class quantityDialog implements OnInit {
|
|
8
|
+
private loaderService;
|
|
9
|
+
private messageService;
|
|
10
|
+
private dataService;
|
|
11
|
+
private dialogRef;
|
|
12
|
+
data: any;
|
|
13
|
+
constructor(loaderService: LoaderService, messageService: MessageService, dataService: DataServiceLib, dialogRef: MatDialogRef<quantityDialog>, data: any);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
quantity: number;
|
|
16
|
+
action: any;
|
|
17
|
+
inv: any;
|
|
18
|
+
isLoadComplete: boolean;
|
|
19
|
+
isProcessing: boolean;
|
|
20
|
+
submit(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<quantityDialog, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<quantityDialog, "app-quanityDiag", never, {}, {}, never, never, false>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InvitationsComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InvitationsComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InvitationsComponent, "spa-invitations", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TableConfig } from '../../classes/Classes';
|
|
3
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
import { Subject } from 'rxjs';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class InvitationsTableComponent implements OnInit {
|
|
9
|
+
dataService: DataServiceLib;
|
|
10
|
+
private messageService;
|
|
11
|
+
authService: AuthService;
|
|
12
|
+
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
invActionClicked(x: any): void;
|
|
15
|
+
tableReload: Subject<boolean>;
|
|
16
|
+
invTableConfig: TableConfig;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InvitationsTableComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InvitationsTableComponent, "spa-invitations-table", never, {}, {}, never, never, false>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LabelComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
display: string;
|
|
7
|
+
value: string;
|
|
8
|
+
format: string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "spa-label", never, { "display": "display"; "value": "value"; "format": "format"; }, {}, never, never, false>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormConfig, ListDialogConfig, TableConfig } from '../../classes/Classes';
|
|
3
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ListDialogComponent implements OnInit {
|
|
8
|
+
private dataService;
|
|
9
|
+
private dialogRef;
|
|
10
|
+
data: ListDialogConfig;
|
|
11
|
+
constructor(dataService: DataServiceLib, dialogRef: MatDialogRef<ListDialogComponent>, data: ListDialogConfig);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
clicked: boolean;
|
|
14
|
+
actionClicked(): void;
|
|
15
|
+
close(): void;
|
|
16
|
+
item: string;
|
|
17
|
+
tableReload: Subject<boolean>;
|
|
18
|
+
listConfig: ListDialogConfig;
|
|
19
|
+
formConfig: FormConfig;
|
|
20
|
+
config: TableConfig;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListDialogComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListDialogComponent, "spa-list-dialog", never, {}, {}, never, never, false>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { LoaderService } from '../../services/loader.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LoaderComponent implements OnInit {
|
|
5
|
+
private loaderService;
|
|
6
|
+
constructor(loaderService: LoaderService);
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
logo: string;
|
|
9
|
+
loading: boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "spa-loader", never, { "logo": "logo"; }, {}, never, never, false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MessageService } from "../../services/message.service";
|
|
2
|
+
import { StorageService } from "../../services/storage.service";
|
|
3
|
+
import { AuthService } from "../../services/auth.service";
|
|
4
|
+
import { OnInit } from "@angular/core";
|
|
5
|
+
import { ActivatedRoute, Router } from "@angular/router";
|
|
6
|
+
import { DataServiceLib } from "../../services/datalib.service";
|
|
7
|
+
import { LogService } from "./../../services/log.service";
|
|
8
|
+
import { User, AppConfig } from "../../classes/Classes";
|
|
9
|
+
import { HttpService } from "../../services/http.service";
|
|
10
|
+
import { SocialAuthService, SocialUser } from '@abacritt/angularx-social-login';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class LoginComponent implements OnInit {
|
|
13
|
+
private httpService;
|
|
14
|
+
private storageService;
|
|
15
|
+
router: Router;
|
|
16
|
+
private messageService;
|
|
17
|
+
dataService: DataServiceLib;
|
|
18
|
+
authService: AuthService;
|
|
19
|
+
private logService;
|
|
20
|
+
private route;
|
|
21
|
+
private socialService;
|
|
22
|
+
constructor(httpService: HttpService, storageService: StorageService, router: Router, messageService: MessageService, dataService: DataServiceLib, authService: AuthService, logService: LogService, route: ActivatedRoute, socialService: SocialAuthService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
autoLogin: boolean;
|
|
25
|
+
socialUser: SocialUser | null;
|
|
26
|
+
style: string;
|
|
27
|
+
email: string;
|
|
28
|
+
password: string;
|
|
29
|
+
redirectPath: any;
|
|
30
|
+
user: User;
|
|
31
|
+
hide: boolean;
|
|
32
|
+
isProcessing: boolean;
|
|
33
|
+
appConfig: AppConfig;
|
|
34
|
+
signup(): void;
|
|
35
|
+
recoverAccount(): void;
|
|
36
|
+
login(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "spa-login", never, {}, {}, never, never, false>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from "../../services/datalib.service";
|
|
3
|
+
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
+
import { AuthService } from '../../services/auth.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class LogsComponent implements OnInit {
|
|
7
|
+
private authService;
|
|
8
|
+
private dataService;
|
|
9
|
+
constructor(authService: AuthService, dataService: DataServiceLib);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
isProcessing: boolean;
|
|
12
|
+
logsPaginator: MatPaginator;
|
|
13
|
+
logs: any;
|
|
14
|
+
displayedColumns: string[];
|
|
15
|
+
loadLogs(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogsComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogsComponent, "spa-logs", never, {}, {}, never, never, false>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
+
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MembershipComponent implements OnInit {
|
|
8
|
+
private dataService;
|
|
9
|
+
private messageService;
|
|
10
|
+
authService: AuthService;
|
|
11
|
+
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
formConfig: FormConfig;
|
|
14
|
+
config: TableConfig;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MembershipComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MembershipComponent, "spa-membership", never, {}, {}, never, never, false>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class messageDialog implements OnInit {
|
|
5
|
+
private dialogRef;
|
|
6
|
+
data: any;
|
|
7
|
+
constructor(dialogRef: MatDialogRef<messageDialog>, data: any);
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
messageType: any;
|
|
10
|
+
_messageSubject: any;
|
|
11
|
+
_messageDetails: any;
|
|
12
|
+
response(resp: string): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<messageDialog, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<messageDialog, "lib-app-message", never, {}, {}, never, never, false>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { OnInit, ElementRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { DecimalPipe } from '@angular/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const CURRENCY_INPUT_MASK_DIRECTIVE_VALUE_ACCESSOR: any;
|
|
6
|
+
export declare class CurrencyInputMaskDirective implements ControlValueAccessor, OnInit {
|
|
7
|
+
private elementRef;
|
|
8
|
+
private decimalPipe;
|
|
9
|
+
private el;
|
|
10
|
+
private onModelChange;
|
|
11
|
+
private onModelTouched;
|
|
12
|
+
private lastNumVal;
|
|
13
|
+
private DECIMAL_MARK;
|
|
14
|
+
constructor(elementRef: ElementRef, decimalPipe: DecimalPipe);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
handleFocus(event: any): void;
|
|
17
|
+
handleCut(event: any): void;
|
|
18
|
+
handleKeypress(event: any): void;
|
|
19
|
+
handleInput(event: any): void;
|
|
20
|
+
handlePaste(event: any): void;
|
|
21
|
+
handleBlur(event: any): void;
|
|
22
|
+
registerOnChange(callbackFunction: Function): void;
|
|
23
|
+
registerOnTouched(callbackFunction: Function): void;
|
|
24
|
+
setDisabledState(value: boolean): void;
|
|
25
|
+
writeValue(numValue: number): void;
|
|
26
|
+
private maskInput;
|
|
27
|
+
private inputUpdated;
|
|
28
|
+
private restrictDecimalValue;
|
|
29
|
+
private transformWithPipe;
|
|
30
|
+
private getUnmaskedValue;
|
|
31
|
+
private updateInputValue;
|
|
32
|
+
private getInputValue;
|
|
33
|
+
private convertStrToDecimal;
|
|
34
|
+
private convertDecimalToStr;
|
|
35
|
+
private isNumeric;
|
|
36
|
+
private saveCursorPosition;
|
|
37
|
+
private setCursorPosition;
|
|
38
|
+
private isIdxBetweenSelection;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyInputMaskDirective, never>;
|
|
40
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CurrencyInputMaskDirective, "[appCurrencyInputMask]", never, {}, {}, never, never, false>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./currency-input-mask.directive";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class CurrencyInputModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyInputModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CurrencyInputModule, [typeof i1.CurrencyInputMaskDirective], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.CurrencyInputMaskDirective]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CurrencyInputModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MoneyComponent implements OnInit {
|
|
5
|
+
constructor();
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
ngOnChanges(): void;
|
|
8
|
+
ngAfterViewInit(): void;
|
|
9
|
+
initControl(control: FormControl): void;
|
|
10
|
+
readonly: boolean;
|
|
11
|
+
hint: string;
|
|
12
|
+
display: string;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
value: string;
|
|
15
|
+
width: string;
|
|
16
|
+
currency: string;
|
|
17
|
+
valueChange: EventEmitter<any>;
|
|
18
|
+
leave: EventEmitter<any>;
|
|
19
|
+
enterPress: EventEmitter<any>;
|
|
20
|
+
required: boolean;
|
|
21
|
+
min: number;
|
|
22
|
+
max: number;
|
|
23
|
+
infoMessage: string;
|
|
24
|
+
infoClick: EventEmitter<void>;
|
|
25
|
+
onInfoClick(event: MouseEvent): void;
|
|
26
|
+
changed(x: any): void;
|
|
27
|
+
leaved(): void;
|
|
28
|
+
enterPressed(): void;
|
|
29
|
+
control: FormControl<string>;
|
|
30
|
+
validate(control: FormControl): string;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoneyComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoneyComponent, "spa-money", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "width": "width"; "currency": "currency"; "required": "required"; "min": "min"; "max": "max"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; "infoClick": "infoClick"; }, never, never, false>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AppConfig } from './../../classes/Classes';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { AuthService } from '../../services/auth.service';
|
|
4
|
+
import { StorageService } from '../../services/storage.service';
|
|
5
|
+
import { SocialAuthService } from '@abacritt/angularx-social-login';
|
|
6
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
7
|
+
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class NavMenuComponent {
|
|
10
|
+
router: Router;
|
|
11
|
+
authService: AuthService;
|
|
12
|
+
private storageService;
|
|
13
|
+
private socialService;
|
|
14
|
+
private breakpointObserver;
|
|
15
|
+
dataService: DataServiceLib;
|
|
16
|
+
constructor(router: Router, authService: AuthService, storageService: StorageService, socialService: SocialAuthService, breakpointObserver: BreakpointObserver, dataService: DataServiceLib);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
smallScreen: any;
|
|
19
|
+
myRole: any;
|
|
20
|
+
loggedUserFullName: string;
|
|
21
|
+
tenantName: string;
|
|
22
|
+
loggedin: boolean;
|
|
23
|
+
isExpanded: boolean;
|
|
24
|
+
nowDate: Date;
|
|
25
|
+
appConfig: AppConfig;
|
|
26
|
+
footer: string;
|
|
27
|
+
collapse(): void;
|
|
28
|
+
toggle(): void;
|
|
29
|
+
closeSide(): void;
|
|
30
|
+
logoff(): void;
|
|
31
|
+
redirectTo(link: string): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavMenuComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavMenuComponent, "spa-nav-menu", never, { "appConfig": "appConfig"; "footer": "footer"; }, {}, never, never, false>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NotificationsComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "spa-notifications", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NumberComponent implements OnInit {
|
|
5
|
+
constructor();
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
ngAfterViewInit(): void;
|
|
8
|
+
initControl(control: FormControl): void;
|
|
9
|
+
hideRequiredControl: FormControl<boolean>;
|
|
10
|
+
hide: boolean;
|
|
11
|
+
readonly: boolean;
|
|
12
|
+
hint: string;
|
|
13
|
+
display: string;
|
|
14
|
+
placeholder: string;
|
|
15
|
+
value: number;
|
|
16
|
+
width: string;
|
|
17
|
+
valueChange: EventEmitter<any>;
|
|
18
|
+
leave: EventEmitter<any>;
|
|
19
|
+
enterPress: EventEmitter<any>;
|
|
20
|
+
required: boolean;
|
|
21
|
+
min: number;
|
|
22
|
+
max: number;
|
|
23
|
+
step: number;
|
|
24
|
+
suffix: string;
|
|
25
|
+
infoMessage: string;
|
|
26
|
+
infoClick: EventEmitter<void>;
|
|
27
|
+
onInfoClick(event: MouseEvent): void;
|
|
28
|
+
changed(): void;
|
|
29
|
+
leaved(): void;
|
|
30
|
+
enterPressed(): void;
|
|
31
|
+
control: FormControl<number>;
|
|
32
|
+
validate(control: FormControl): string;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumberComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumberComponent, "spa-number", never, { "readonly": "readonly"; "hint": "hint"; "display": "display"; "placeholder": "placeholder"; "value": "value"; "width": "width"; "required": "required"; "min": "min"; "max": "max"; "step": "step"; "suffix": "suffix"; "infoMessage": "infoMessage"; }, { "valueChange": "valueChange"; "leave": "leave"; "enterPress": "enterPress"; "infoClick": "infoClick"; }, never, never, false>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class OptionComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
OGValue: any;
|
|
7
|
+
options: any;
|
|
8
|
+
optionValue: string;
|
|
9
|
+
optionDisplay: string;
|
|
10
|
+
readonly: boolean;
|
|
11
|
+
type: string;
|
|
12
|
+
value: string;
|
|
13
|
+
display: string;
|
|
14
|
+
show: boolean;
|
|
15
|
+
valueChange: EventEmitter<any>;
|
|
16
|
+
enterPress: EventEmitter<any>;
|
|
17
|
+
changed(): void;
|
|
18
|
+
dateChanged(x: any): void;
|
|
19
|
+
enterPressed(): void;
|
|
20
|
+
resetValue(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "spa-option", never, { "options": "options"; "optionValue": "optionValue"; "optionDisplay": "optionDisplay"; "readonly": "readonly"; "type": "type"; "value": "value"; "display": "display"; "show": "show"; }, { "valueChange": "valueChange"; "enterPress": "enterPress"; }, never, never, false>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
|
+
import { FormConfig, TableConfig } from '../../classes/Classes';
|
|
4
|
+
import { MessageService } from '../../services/message.service';
|
|
5
|
+
import { AuthService } from '../../services/auth.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class PlansComponent implements OnInit {
|
|
8
|
+
private dataService;
|
|
9
|
+
private messageService;
|
|
10
|
+
authService: AuthService;
|
|
11
|
+
constructor(dataService: DataServiceLib, messageService: MessageService, authService: AuthService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
formConfig: FormConfig;
|
|
14
|
+
config: TableConfig;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlansComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PlansComponent, "spa-plans", never, {}, {}, never, never, false>;
|
|
17
|
+
}
|