@aggdirect/coolmap 2.0.5 → 2.0.7
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 +1 -34
- package/esm2020/aggdirect-coolmap.mjs +4 -4
- package/esm2020/coolmap.mjs +5 -0
- package/esm2020/lib/component/add-route/add-route.component.mjs +318 -315
- package/esm2020/lib/component/job-code/job-code.component.mjs +119 -118
- package/esm2020/lib/component/map/map.component.mjs +38 -37
- package/esm2020/lib/component/nav/layout/add-route-nav/add-route-nav.component.mjs +87 -87
- package/esm2020/lib/component/nav/layout/job-code-nav/job-code-nav.component.mjs +89 -89
- package/esm2020/lib/component/nav/nav.component.mjs +53 -52
- package/esm2020/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.mjs +68 -68
- package/esm2020/lib/component/route-jobcode-list/route-jobcode-list.component.mjs +314 -314
- package/esm2020/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.mjs +19 -19
- package/esm2020/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.mjs +29 -29
- package/esm2020/lib/component/shared/dialog/dialog.component.mjs +29 -29
- package/esm2020/lib/component/shared/job-route-list/job-route-list.component.mjs +71 -71
- package/esm2020/lib/component/shared/jobcode-overview/jobcode-overview.component.mjs +19 -19
- package/esm2020/lib/component/shared/jobcode-status/jobcode-status.component.mjs +14 -14
- package/esm2020/lib/coolmap.component.mjs +15 -15
- package/esm2020/lib/coolmap.module.mjs +178 -178
- package/esm2020/public-api.mjs +20 -20
- package/fesm2015/aggdirect-coolmap.mjs +1285 -1283
- package/fesm2015/aggdirect-coolmap.mjs.map +1 -1
- package/fesm2015/coolmap.mjs +1374 -0
- package/fesm2015/coolmap.mjs.map +1 -0
- package/fesm2020/aggdirect-coolmap.mjs +1261 -1259
- package/fesm2020/aggdirect-coolmap.mjs.map +1 -1
- package/fesm2020/coolmap.mjs +1350 -0
- package/fesm2020/coolmap.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/component/add-route/add-route.component.d.ts +63 -62
- package/lib/component/job-code/job-code.component.d.ts +32 -32
- package/lib/component/map/map.component.d.ts +15 -15
- package/lib/component/nav/layout/add-route-nav/add-route-nav.component.d.ts +41 -41
- package/lib/component/nav/layout/job-code-nav/job-code-nav.component.d.ts +39 -39
- package/lib/component/nav/nav.component.d.ts +31 -31
- package/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.d.ts +19 -19
- package/lib/component/route-jobcode-list/route-jobcode-list.component.d.ts +42 -42
- package/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.d.ts +9 -9
- package/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.d.ts +11 -11
- package/lib/component/shared/dialog/dialog.component.d.ts +13 -13
- package/lib/component/shared/job-route-list/job-route-list.component.d.ts +26 -26
- package/lib/component/shared/jobcode-overview/jobcode-overview.component.d.ts +9 -9
- package/lib/component/shared/jobcode-status/jobcode-status.component.d.ts +8 -8
- package/lib/coolmap.component.d.ts +8 -8
- package/lib/coolmap.module.d.ts +40 -40
- package/package.json +19 -31
- package/public-api.d.ts +16 -16
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
-
import { CoolmapService } from '@aggdirect/coolmap-services';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MapComponent implements OnDestroy {
|
|
6
|
-
coolmapService: CoolmapService;
|
|
7
|
-
mapDiv: ElementRef;
|
|
8
|
-
enableProgress: boolean;
|
|
9
|
-
destroyer$: Subject<boolean>;
|
|
10
|
-
constructor(coolmapService: CoolmapService);
|
|
11
|
-
ngAfterViewInit(): void;
|
|
12
|
-
ngOnDestroy(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "app-map", never, {}, {}, never, never, false>;
|
|
15
|
-
}
|
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { CoolmapService } from '@aggdirect/coolmap-services';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MapComponent implements OnDestroy {
|
|
6
|
+
coolmapService: CoolmapService;
|
|
7
|
+
mapDiv: ElementRef;
|
|
8
|
+
enableProgress: boolean;
|
|
9
|
+
destroyer$: Subject<boolean>;
|
|
10
|
+
constructor(coolmapService: CoolmapService);
|
|
11
|
+
ngAfterViewInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "app-map", never, {}, {}, never, never, false>;
|
|
15
|
+
}
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
import { EventEmitter, SimpleChanges, OnDestroy } from '@angular/core';
|
|
2
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { Subject } from 'rxjs';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
interface Filter {
|
|
8
|
-
name?: string;
|
|
9
|
-
type: string;
|
|
10
|
-
value: any;
|
|
11
|
-
label?: string;
|
|
12
|
-
}
|
|
13
|
-
export declare class AddRouteNavComponent implements OnDestroy {
|
|
14
|
-
utils: UtilsService;
|
|
15
|
-
filterForm: FormGroup<{
|
|
16
|
-
search: FormControl<any>;
|
|
17
|
-
}>;
|
|
18
|
-
filteredOptions: Observable<any[]> | undefined;
|
|
19
|
-
filters: Filter[];
|
|
20
|
-
loaderVal: boolean;
|
|
21
|
-
routes: Route[];
|
|
22
|
-
changeNav: EventEmitter<any>;
|
|
23
|
-
navValue: string;
|
|
24
|
-
addemit: EventEmitter<any>;
|
|
25
|
-
updateRouteList: boolean;
|
|
26
|
-
destroyer$: Subject<boolean>;
|
|
27
|
-
preventListUpdate: boolean;
|
|
28
|
-
constructor(utils: UtilsService);
|
|
29
|
-
showAddForm(): void;
|
|
30
|
-
filterSearch(e: any): void;
|
|
31
|
-
removeFromFilter(filter: any): void;
|
|
32
|
-
ngAfterViewInit(): void;
|
|
33
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
-
getRoute(event: Route): void;
|
|
35
|
-
getRouteList(): void;
|
|
36
|
-
resetSearch(): void;
|
|
37
|
-
ngOnDestroy(): void;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AddRouteNavComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddRouteNavComponent, "app-add-route-nav", never, { "navValue": "navValue"; "updateRouteList": "updateRouteList"; }, { "changeNav": "changeNav"; "addemit": "addemit"; }, never, never, false>;
|
|
40
|
-
}
|
|
41
|
-
export {};
|
|
1
|
+
import { EventEmitter, SimpleChanges, OnDestroy } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface Filter {
|
|
8
|
+
name?: string;
|
|
9
|
+
type: string;
|
|
10
|
+
value: any;
|
|
11
|
+
label?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare class AddRouteNavComponent implements OnDestroy {
|
|
14
|
+
utils: UtilsService;
|
|
15
|
+
filterForm: FormGroup<{
|
|
16
|
+
search: FormControl<any>;
|
|
17
|
+
}>;
|
|
18
|
+
filteredOptions: Observable<any[]> | undefined;
|
|
19
|
+
filters: Filter[];
|
|
20
|
+
loaderVal: boolean;
|
|
21
|
+
routes: Route[];
|
|
22
|
+
changeNav: EventEmitter<any>;
|
|
23
|
+
navValue: string;
|
|
24
|
+
addemit: EventEmitter<any>;
|
|
25
|
+
updateRouteList: boolean;
|
|
26
|
+
destroyer$: Subject<boolean>;
|
|
27
|
+
preventListUpdate: boolean;
|
|
28
|
+
constructor(utils: UtilsService);
|
|
29
|
+
showAddForm(): void;
|
|
30
|
+
filterSearch(e: any): void;
|
|
31
|
+
removeFromFilter(filter: any): void;
|
|
32
|
+
ngAfterViewInit(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
getRoute(event: Route): void;
|
|
35
|
+
getRouteList(): void;
|
|
36
|
+
resetSearch(): void;
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AddRouteNavComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddRouteNavComponent, "app-add-route-nav", never, { "navValue": "navValue"; "updateRouteList": "updateRouteList"; }, { "changeNav": "changeNav"; "addemit": "addemit"; }, never, never, false>;
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { MatDatepickerInputEvent } from '@angular/material/datepicker';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
5
|
-
import { Subject } from 'rxjs';
|
|
6
|
-
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
interface Filter {
|
|
9
|
-
name?: string;
|
|
10
|
-
type: string;
|
|
11
|
-
value: any;
|
|
12
|
-
label?: string;
|
|
13
|
-
}
|
|
14
|
-
export declare class JobCodeNavComponent implements OnInit, OnDestroy {
|
|
15
|
-
utils: UtilsService;
|
|
16
|
-
filterForm: FormGroup<{
|
|
17
|
-
search: FormControl<any>;
|
|
18
|
-
}>;
|
|
19
|
-
listData: Route[];
|
|
20
|
-
loaderVal: boolean;
|
|
21
|
-
dateValue: Date;
|
|
22
|
-
jobemit: EventEmitter<any>;
|
|
23
|
-
value: string;
|
|
24
|
-
filteredOptions: Observable<any[]> | undefined;
|
|
25
|
-
filters: Filter[];
|
|
26
|
-
clearJobDetails: EventEmitter<any>;
|
|
27
|
-
destroyer$: Subject<boolean>;
|
|
28
|
-
constructor(utils: UtilsService);
|
|
29
|
-
ngOnInit(): void;
|
|
30
|
-
loadData(value: string): void;
|
|
31
|
-
getRoute(job: Route): void;
|
|
32
|
-
getDate(ev: MatDatepickerInputEvent<Date>): void;
|
|
33
|
-
filterSearch(e: any): void;
|
|
34
|
-
removeFromFilter(filter: any): void;
|
|
35
|
-
ngOnDestroy(): void;
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobCodeNavComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobCodeNavComponent, "app-job-code-nav", never, {}, { "jobemit": "jobemit"; "clearJobDetails": "clearJobDetails"; }, never, never, false>;
|
|
38
|
-
}
|
|
39
|
-
export {};
|
|
1
|
+
import { OnInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import { MatDatepickerInputEvent } from '@angular/material/datepicker';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
6
|
+
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
interface Filter {
|
|
9
|
+
name?: string;
|
|
10
|
+
type: string;
|
|
11
|
+
value: any;
|
|
12
|
+
label?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare class JobCodeNavComponent implements OnInit, OnDestroy {
|
|
15
|
+
utils: UtilsService;
|
|
16
|
+
filterForm: FormGroup<{
|
|
17
|
+
search: FormControl<any>;
|
|
18
|
+
}>;
|
|
19
|
+
listData: Route[];
|
|
20
|
+
loaderVal: boolean;
|
|
21
|
+
dateValue: Date;
|
|
22
|
+
jobemit: EventEmitter<any>;
|
|
23
|
+
value: string;
|
|
24
|
+
filteredOptions: Observable<any[]> | undefined;
|
|
25
|
+
filters: Filter[];
|
|
26
|
+
clearJobDetails: EventEmitter<any>;
|
|
27
|
+
destroyer$: Subject<boolean>;
|
|
28
|
+
constructor(utils: UtilsService);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
loadData(value: string): void;
|
|
31
|
+
getRoute(job: Route): void;
|
|
32
|
+
getDate(ev: MatDatepickerInputEvent<Date>): void;
|
|
33
|
+
filterSearch(e: any): void;
|
|
34
|
+
removeFromFilter(filter: any): void;
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobCodeNavComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobCodeNavComponent, "app-job-code-nav", never, {}, { "jobemit": "jobemit"; "clearJobDetails": "clearJobDetails"; }, never, never, false>;
|
|
38
|
+
}
|
|
39
|
+
export {};
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { CoolmapService, UtilsService } from '@aggdirect/coolmap-services';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class NavComponent implements OnDestroy {
|
|
6
|
-
utils: UtilsService;
|
|
7
|
-
coolMap: CoolmapService;
|
|
8
|
-
drawer: EventEmitter<boolean>;
|
|
9
|
-
changeNav: EventEmitter<string>;
|
|
10
|
-
navValue: string;
|
|
11
|
-
isnavChange: boolean;
|
|
12
|
-
paddinForJobCode: {
|
|
13
|
-
top: number;
|
|
14
|
-
bottom: number;
|
|
15
|
-
left: number;
|
|
16
|
-
right: number;
|
|
17
|
-
};
|
|
18
|
-
paddinForViewRoute: {
|
|
19
|
-
top: number;
|
|
20
|
-
bottom: number;
|
|
21
|
-
left: number;
|
|
22
|
-
right: number;
|
|
23
|
-
};
|
|
24
|
-
destroyer$: Subject<boolean>;
|
|
25
|
-
constructor(utils: UtilsService, coolMap: CoolmapService);
|
|
26
|
-
openDrawer(): void;
|
|
27
|
-
chnageNav(name: string): void;
|
|
28
|
-
ngOnDestroy(): void;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavComponent, "app-nav", never, {}, { "drawer": "drawer"; "changeNav": "changeNav"; }, never, never, false>;
|
|
31
|
-
}
|
|
1
|
+
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import { CoolmapService, UtilsService } from '@aggdirect/coolmap-services';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NavComponent implements OnDestroy {
|
|
6
|
+
utils: UtilsService;
|
|
7
|
+
coolMap: CoolmapService;
|
|
8
|
+
drawer: EventEmitter<boolean>;
|
|
9
|
+
changeNav: EventEmitter<string>;
|
|
10
|
+
navValue: string;
|
|
11
|
+
isnavChange: boolean;
|
|
12
|
+
paddinForJobCode: {
|
|
13
|
+
top: number;
|
|
14
|
+
bottom: number;
|
|
15
|
+
left: number;
|
|
16
|
+
right: number;
|
|
17
|
+
};
|
|
18
|
+
paddinForViewRoute: {
|
|
19
|
+
top: number;
|
|
20
|
+
bottom: number;
|
|
21
|
+
left: number;
|
|
22
|
+
right: number;
|
|
23
|
+
};
|
|
24
|
+
destroyer$: Subject<boolean>;
|
|
25
|
+
constructor(utils: UtilsService, coolMap: CoolmapService);
|
|
26
|
+
openDrawer(): void;
|
|
27
|
+
chnageNav(name: string): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavComponent, "app-nav", never, {}, { "drawer": "drawer"; "changeNav": "changeNav"; }, never, never, false>;
|
|
31
|
+
}
|
package/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class JobCodeListCardComponent {
|
|
5
|
-
utils: UtilsService;
|
|
6
|
-
route: Route;
|
|
7
|
-
routeSeletion: EventEmitter<any>;
|
|
8
|
-
toggleDrivermenu: EventEmitter<any>;
|
|
9
|
-
emitJobdetails: any;
|
|
10
|
-
preventCloseDetails: boolean;
|
|
11
|
-
constructor(utils: UtilsService);
|
|
12
|
-
selectRoute(route: Route): void;
|
|
13
|
-
toggleDriverlist(mouseevntType: boolean | string, route: Route, isHoverOut?: boolean): void;
|
|
14
|
-
toggleJobCodeDetails(mouseEventType: boolean, route: Route): void;
|
|
15
|
-
calculateStatusPercentage(type: string, route: any): number;
|
|
16
|
-
setRouteItem(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobCodeListCardComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobCodeListCardComponent, "app-job-code-list-card", never, { "route": "route"; "emitJobdetails": "emitJobdetails"; "preventCloseDetails": "preventCloseDetails"; }, { "routeSeletion": "routeSeletion"; "toggleDrivermenu": "toggleDrivermenu"; }, never, never, false>;
|
|
19
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class JobCodeListCardComponent {
|
|
5
|
+
utils: UtilsService;
|
|
6
|
+
route: Route;
|
|
7
|
+
routeSeletion: EventEmitter<any>;
|
|
8
|
+
toggleDrivermenu: EventEmitter<any>;
|
|
9
|
+
emitJobdetails: any;
|
|
10
|
+
preventCloseDetails: boolean;
|
|
11
|
+
constructor(utils: UtilsService);
|
|
12
|
+
selectRoute(route: Route): void;
|
|
13
|
+
toggleDriverlist(mouseevntType: boolean | string, route: Route, isHoverOut?: boolean): void;
|
|
14
|
+
toggleJobCodeDetails(mouseEventType: boolean, route: Route): void;
|
|
15
|
+
calculateStatusPercentage(type: string, route: any): number;
|
|
16
|
+
setRouteItem(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobCodeListCardComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobCodeListCardComponent, "app-job-code-list-card", never, { "route": "route"; "emitJobdetails": "emitJobdetails"; "preventCloseDetails": "preventCloseDetails"; }, { "routeSeletion": "routeSeletion"; "toggleDrivermenu": "toggleDrivermenu"; }, never, never, false>;
|
|
19
|
+
}
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { SelectionModel } from '@angular/cdk/collections';
|
|
3
|
-
import { FormControl } from '@angular/forms';
|
|
4
|
-
import { CoolmapService, Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class RouteJobCodeListComponent implements OnInit, OnChanges {
|
|
7
|
-
coolMap: CoolmapService;
|
|
8
|
-
utils: UtilsService;
|
|
9
|
-
loader: boolean;
|
|
10
|
-
type: string;
|
|
11
|
-
data: Route[];
|
|
12
|
-
currentNav: string;
|
|
13
|
-
emitroute: EventEmitter<any>;
|
|
14
|
-
showAllRoute: EventEmitter<any>;
|
|
15
|
-
preventMouseout: boolean;
|
|
16
|
-
filterList: Route[];
|
|
17
|
-
searchTerm: any;
|
|
18
|
-
isDriverList: boolean;
|
|
19
|
-
selectedRoute: SelectionModel<any>;
|
|
20
|
-
driverList: any;
|
|
21
|
-
preventListSelect: boolean;
|
|
22
|
-
clearJobDetailsFromList: EventEmitter<any>;
|
|
23
|
-
preventDetailsClose: boolean;
|
|
24
|
-
messageLoader: boolean;
|
|
25
|
-
driverMessage: FormControl<string>;
|
|
26
|
-
clearListSeletion: boolean;
|
|
27
|
-
isSmsList: boolean;
|
|
28
|
-
constructor(coolMap: CoolmapService, utils: UtilsService);
|
|
29
|
-
ngOnInit(): void;
|
|
30
|
-
passRoute(job: Route): void;
|
|
31
|
-
selectRoute(route: any): void;
|
|
32
|
-
checkroutes(route: Route): Route;
|
|
33
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
-
showRoute(): void;
|
|
35
|
-
toggleDrivermenu(event: any): void;
|
|
36
|
-
visiblesection(value: string): boolean;
|
|
37
|
-
toggleFilterRoute(filterList: Route[]): void;
|
|
38
|
-
clearList(): void;
|
|
39
|
-
sendMessage(): void;
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RouteJobCodeListComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RouteJobCodeListComponent, "app-route-jobcode-list", never, { "loader": "loader"; "type": "type"; "data": "data"; "currentNav": "currentNav"; "searchTerm": "searchTerm"; "clearListSeletion": "clearListSeletion"; }, { "emitroute": "emitroute"; "showAllRoute": "showAllRoute"; "clearJobDetailsFromList": "clearJobDetailsFromList"; }, never, never, false>;
|
|
42
|
-
}
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
3
|
+
import { FormControl } from '@angular/forms';
|
|
4
|
+
import { CoolmapService, Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class RouteJobCodeListComponent implements OnInit, OnChanges {
|
|
7
|
+
coolMap: CoolmapService;
|
|
8
|
+
utils: UtilsService;
|
|
9
|
+
loader: boolean;
|
|
10
|
+
type: string;
|
|
11
|
+
data: Route[];
|
|
12
|
+
currentNav: string;
|
|
13
|
+
emitroute: EventEmitter<any>;
|
|
14
|
+
showAllRoute: EventEmitter<any>;
|
|
15
|
+
preventMouseout: boolean;
|
|
16
|
+
filterList: Route[];
|
|
17
|
+
searchTerm: any;
|
|
18
|
+
isDriverList: boolean;
|
|
19
|
+
selectedRoute: SelectionModel<any>;
|
|
20
|
+
driverList: any;
|
|
21
|
+
preventListSelect: boolean;
|
|
22
|
+
clearJobDetailsFromList: EventEmitter<any>;
|
|
23
|
+
preventDetailsClose: boolean;
|
|
24
|
+
messageLoader: boolean;
|
|
25
|
+
driverMessage: FormControl<string>;
|
|
26
|
+
clearListSeletion: boolean;
|
|
27
|
+
isSmsList: boolean;
|
|
28
|
+
constructor(coolMap: CoolmapService, utils: UtilsService);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
passRoute(job: Route): void;
|
|
31
|
+
selectRoute(route: any): void;
|
|
32
|
+
checkroutes(route: Route): Route;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
showRoute(): void;
|
|
35
|
+
toggleDrivermenu(event: any): void;
|
|
36
|
+
visiblesection(value: string): boolean;
|
|
37
|
+
toggleFilterRoute(filterList: Route[]): void;
|
|
38
|
+
clearList(): void;
|
|
39
|
+
sendMessage(): void;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RouteJobCodeListComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RouteJobCodeListComponent, "app-route-jobcode-list", never, { "loader": "loader"; "type": "type"; "data": "data"; "currentNav": "currentNav"; "searchTerm": "searchTerm"; "clearListSeletion": "clearListSeletion"; }, { "emitroute": "emitroute"; "showAllRoute": "showAllRoute"; "clearJobDetailsFromList": "clearJobDetailsFromList"; }, never, never, false>;
|
|
42
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class SmsCardDetailsOverviewComponent {
|
|
3
|
-
jobValue: any;
|
|
4
|
-
label: string[];
|
|
5
|
-
overViewEnum: any;
|
|
6
|
-
constructor();
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmsCardDetailsOverviewComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmsCardDetailsOverviewComponent, "app-sms-card-details-overview", never, { "jobValue": "jobValue"; }, {}, never, never, false>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SmsCardDetailsOverviewComponent {
|
|
3
|
+
jobValue: any;
|
|
4
|
+
label: string[];
|
|
5
|
+
overViewEnum: any;
|
|
6
|
+
constructor();
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmsCardDetailsOverviewComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmsCardDetailsOverviewComponent, "app-sms-card-details-overview", never, { "jobValue": "jobValue"; }, {}, never, never, false>;
|
|
9
|
+
}
|
package/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ViewRouteListCardComponent {
|
|
4
|
-
utils: UtilsService;
|
|
5
|
-
route: Route;
|
|
6
|
-
emitrouteevent: any;
|
|
7
|
-
constructor(utils: UtilsService);
|
|
8
|
-
detailsDict(event: boolean | string, route: Route): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ViewRouteListCardComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewRouteListCardComponent, "app-view-route-list-card", never, { "route": "route"; "emitrouteevent": "emitrouteevent"; }, {}, never, never, false>;
|
|
11
|
-
}
|
|
1
|
+
import { Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ViewRouteListCardComponent {
|
|
4
|
+
utils: UtilsService;
|
|
5
|
+
route: Route;
|
|
6
|
+
emitrouteevent: any;
|
|
7
|
+
constructor(utils: UtilsService);
|
|
8
|
+
detailsDict(event: boolean | string, route: Route): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewRouteListCardComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewRouteListCardComponent, "app-view-route-list-card", never, { "route": "route"; "emitrouteevent": "emitrouteevent"; }, {}, never, never, false>;
|
|
11
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DialogComponent {
|
|
4
|
-
dialogRef: MatDialogRef<DialogComponent>;
|
|
5
|
-
data: any;
|
|
6
|
-
body: string;
|
|
7
|
-
positive: string;
|
|
8
|
-
negative: string;
|
|
9
|
-
constructor(dialogRef: MatDialogRef<DialogComponent>, data: any);
|
|
10
|
-
onClose(result: boolean): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "app-dialog", never, {}, {}, never, never, false>;
|
|
13
|
-
}
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DialogComponent {
|
|
4
|
+
dialogRef: MatDialogRef<DialogComponent>;
|
|
5
|
+
data: any;
|
|
6
|
+
body: string;
|
|
7
|
+
positive: string;
|
|
8
|
+
negative: string;
|
|
9
|
+
constructor(dialogRef: MatDialogRef<DialogComponent>, data: any);
|
|
10
|
+
onClose(result: boolean): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "app-dialog", never, {}, {}, never, never, false>;
|
|
13
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import { CoolmapService, Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class JobRouteListComponent {
|
|
7
|
-
utils: UtilsService;
|
|
8
|
-
coolMap: CoolmapService;
|
|
9
|
-
changeNav: EventEmitter<any>;
|
|
10
|
-
filteredOptions: Observable<any[]> | undefined;
|
|
11
|
-
preventListUpdate: boolean;
|
|
12
|
-
filterForm: FormGroup<{
|
|
13
|
-
search: FormControl<any>;
|
|
14
|
-
}>;
|
|
15
|
-
filters: any[];
|
|
16
|
-
routes: Route[];
|
|
17
|
-
selectedRoute: any;
|
|
18
|
-
changeRoutes: EventEmitter<any>;
|
|
19
|
-
changeSelectedRoute: EventEmitter<any>;
|
|
20
|
-
masterRoutes: Route[];
|
|
21
|
-
constructor(utils: UtilsService, coolMap: CoolmapService);
|
|
22
|
-
filterSearch(e: any): void;
|
|
23
|
-
removeFromFilter(filter: any): void;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobRouteListComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobRouteListComponent, "app-job-route-list", never, { "routes": "routes"; "selectedRoute": "selectedRoute"; "masterRoutes": "masterRoutes"; }, { "changeNav": "changeNav"; "changeRoutes": "changeRoutes"; "changeSelectedRoute": "changeSelectedRoute"; }, never, never, false>;
|
|
26
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CoolmapService, Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class JobRouteListComponent {
|
|
7
|
+
utils: UtilsService;
|
|
8
|
+
coolMap: CoolmapService;
|
|
9
|
+
changeNav: EventEmitter<any>;
|
|
10
|
+
filteredOptions: Observable<any[]> | undefined;
|
|
11
|
+
preventListUpdate: boolean;
|
|
12
|
+
filterForm: FormGroup<{
|
|
13
|
+
search: FormControl<any>;
|
|
14
|
+
}>;
|
|
15
|
+
filters: any[];
|
|
16
|
+
routes: Route[];
|
|
17
|
+
selectedRoute: any;
|
|
18
|
+
changeRoutes: EventEmitter<any>;
|
|
19
|
+
changeSelectedRoute: EventEmitter<any>;
|
|
20
|
+
masterRoutes: Route[];
|
|
21
|
+
constructor(utils: UtilsService, coolMap: CoolmapService);
|
|
22
|
+
filterSearch(e: any): void;
|
|
23
|
+
removeFromFilter(filter: any): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobRouteListComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobRouteListComponent, "app-job-route-list", never, { "routes": "routes"; "selectedRoute": "selectedRoute"; "masterRoutes": "masterRoutes"; }, { "changeNav": "changeNav"; "changeRoutes": "changeRoutes"; "changeSelectedRoute": "changeSelectedRoute"; }, never, never, false>;
|
|
26
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class JobcodeOverviewComponent {
|
|
3
|
-
jobValue: any;
|
|
4
|
-
label: string[];
|
|
5
|
-
overViewEnum: any;
|
|
6
|
-
constructor();
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobcodeOverviewComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobcodeOverviewComponent, "app-jobcode-overview", never, { "jobValue": "jobValue"; }, {}, never, never, false>;
|
|
9
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class JobcodeOverviewComponent {
|
|
3
|
+
jobValue: any;
|
|
4
|
+
label: string[];
|
|
5
|
+
overViewEnum: any;
|
|
6
|
+
constructor();
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobcodeOverviewComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobcodeOverviewComponent, "app-jobcode-overview", never, { "jobValue": "jobValue"; }, {}, never, never, false>;
|
|
9
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Route } from '@aggdirect/coolmap-services';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class JobcodeStatusComponent {
|
|
4
|
-
jobValue: Route;
|
|
5
|
-
constructor();
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobcodeStatusComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobcodeStatusComponent, "app-jobcode-status", never, { "jobValue": "jobValue"; }, {}, never, never, false>;
|
|
8
|
-
}
|
|
1
|
+
import { Route } from '@aggdirect/coolmap-services';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class JobcodeStatusComponent {
|
|
4
|
+
jobValue: Route;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobcodeStatusComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobcodeStatusComponent, "app-jobcode-status", never, { "jobValue": "jobValue"; }, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CoolmapComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoolmapComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoolmapComponent, "lib-coolmap", never, {}, {}, never, never, false>;
|
|
8
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CoolmapComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoolmapComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CoolmapComponent, "lib-coolmap", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|