@csmart/ngc-smart-victim 0.1.3 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- package/bundles/csmart-ngc-smart-victim.umd.js +146 -93
- package/bundles/csmart-ngc-smart-victim.umd.js.map +1 -1
- package/bundles/csmart-ngc-smart-victim.umd.min.js +2 -2
- package/bundles/csmart-ngc-smart-victim.umd.min.js.map +1 -1
- package/csmart-ngc-smart-victim.metadata.json +1 -1
- package/esm2015/lib/contact/contact.component.js +8 -4
- package/esm2015/lib/smart-victim-detail/smart-victim-detail.component.js +53 -53
- package/esm2015/lib/smart-victim.component.js +85 -37
- package/esm2015/lib/smart-victim.module.js +3 -2
- package/esm5/lib/contact/contact.component.js +8 -4
- package/esm5/lib/smart-victim-detail/smart-victim-detail.component.js +53 -53
- package/esm5/lib/smart-victim.component.js +86 -35
- package/esm5/lib/smart-victim.module.js +3 -2
- package/fesm2015/csmart-ngc-smart-victim.js +142 -92
- package/fesm2015/csmart-ngc-smart-victim.js.map +1 -1
- package/fesm5/csmart-ngc-smart-victim.js +143 -90
- package/fesm5/csmart-ngc-smart-victim.js.map +1 -1
- package/lib/smart-victim.component.d.ts +9 -2
- package/package.json +1 -1
@@ -1,12 +1,13 @@
|
|
1
|
-
import { OnInit, AfterViewInit } from '@angular/core';
|
1
|
+
import { OnInit, OnChanges, AfterViewInit } from '@angular/core';
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
3
3
|
import { MatTableDataSource } from '@angular/material/table';
|
4
4
|
import { MatPaginator, MatSort, MatSnackBar } from '@angular/material';
|
5
5
|
import { MatDialog } from '@angular/material';
|
6
|
+
import { SmartAccessControlConfig } from "@csmart/ngc-smart-core";
|
6
7
|
import { NgcSmartVictimService } from './smart-victim.service';
|
7
8
|
import { VictimListFilter, Victim } from './smart-victim.model';
|
8
9
|
import { IntakeServicesComponent } from './intake.service';
|
9
|
-
export declare class NgcSmartVictimComponent implements OnInit, AfterViewInit {
|
10
|
+
export declare class NgcSmartVictimComponent implements OnInit, OnChanges, AfterViewInit {
|
10
11
|
private dialog;
|
11
12
|
private victimService;
|
12
13
|
private router;
|
@@ -28,6 +29,8 @@ export declare class NgcSmartVictimComponent implements OnInit, AfterViewInit {
|
|
28
29
|
showSearchForm: boolean;
|
29
30
|
accessByModule: string;
|
30
31
|
intakeFlag: string;
|
32
|
+
appModuleId: string;
|
33
|
+
activatedRoute: ActivatedRoute;
|
31
34
|
paginator: MatPaginator;
|
32
35
|
sort: MatSort;
|
33
36
|
displayedColumns: string[];
|
@@ -40,6 +43,9 @@ export declare class NgcSmartVictimComponent implements OnInit, AfterViewInit {
|
|
40
43
|
showListFlag: boolean;
|
41
44
|
msg: string;
|
42
45
|
isIntake: boolean;
|
46
|
+
updateAccessControlConfig: SmartAccessControlConfig;
|
47
|
+
createAccessControlConfig: SmartAccessControlConfig;
|
48
|
+
deleteAccessControlConfig: SmartAccessControlConfig;
|
43
49
|
constructor(dialog: MatDialog, victimService: NgcSmartVictimService, router: Router, route: ActivatedRoute, snackBar: MatSnackBar, intakeService: IntakeServicesComponent, smartWarrantUrl: string, document: any);
|
44
50
|
applyFilter(filterValue: string): void;
|
45
51
|
addRecord(): void;
|
@@ -47,6 +53,7 @@ export declare class NgcSmartVictimComponent implements OnInit, AfterViewInit {
|
|
47
53
|
save(detail: Victim): void;
|
48
54
|
cancel(): void;
|
49
55
|
ngAfterViewInit(): void;
|
56
|
+
ngOnChanges(): void;
|
50
57
|
ngOnInit(): void;
|
51
58
|
formatPhoneNumber(phoneNumberString: any): string;
|
52
59
|
saveIntake(): void;
|