@aggdirect/coolmap 2.9.6 → 2.9.8
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/karma.conf.js +44 -0
- package/ng-package.json +7 -0
- package/package.json +10 -19
- package/src/assets/mixin.scss +28 -0
- package/src/assets/palette.scss +24 -0
- package/src/assets/variable.scss +15 -0
- package/src/lib/component/add-route/add-route.component.html +172 -0
- package/src/lib/component/add-route/add-route.component.scss +243 -0
- package/src/lib/component/add-route/add-route.component.spec.ts +23 -0
- package/src/lib/component/add-route/add-route.component.ts +394 -0
- package/src/lib/component/job-code/job-code.component.html +79 -0
- package/src/lib/component/job-code/job-code.component.scss +396 -0
- package/src/lib/component/job-code/job-code.component.ts +146 -0
- package/src/lib/component/map/map.component.css +0 -0
- package/src/lib/component/map/map.component.html +4 -0
- package/src/lib/component/map/map.component.spec.ts +23 -0
- package/src/lib/component/map/map.component.ts +34 -0
- package/src/lib/component/nav/layout/add-route-nav/add-route-nav.component.html +46 -0
- package/src/lib/component/nav/layout/add-route-nav/add-route-nav.component.scss +18 -0
- package/src/lib/component/nav/layout/add-route-nav/add-route-nav.component.spec.ts +23 -0
- package/src/lib/component/nav/layout/add-route-nav/add-route-nav.component.ts +130 -0
- package/src/lib/component/nav/layout/job-code-nav/job-code-nav.component.html +48 -0
- package/src/lib/component/nav/layout/job-code-nav/job-code-nav.component.scss +24 -0
- package/src/lib/component/nav/layout/job-code-nav/job-code-nav.component.ts +143 -0
- package/src/lib/component/nav/nav.component.html +19 -0
- package/src/lib/component/nav/nav.component.scss +67 -0
- package/src/lib/component/nav/nav.component.ts +38 -0
- package/src/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.html +56 -0
- package/src/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.scss +168 -0
- package/src/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.spec.ts +23 -0
- package/src/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.ts +43 -0
- package/src/lib/component/route-jobcode-list/route-jobcode-list.component.html +73 -0
- package/src/lib/component/route-jobcode-list/route-jobcode-list.component.scss +227 -0
- package/src/lib/component/route-jobcode-list/route-jobcode-list.component.ts +233 -0
- package/src/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.html +7 -0
- package/src/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.scss +10 -0
- package/src/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.spec.ts +23 -0
- package/src/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.ts +15 -0
- package/src/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.html +28 -0
- package/src/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.scss +172 -0
- package/src/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.spec.ts +23 -0
- package/src/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.ts +20 -0
- package/src/lib/component/shared/dialog/dialog.component.html +7 -0
- package/src/lib/component/shared/dialog/dialog.component.scss +30 -0
- package/src/lib/component/shared/dialog/dialog.component.ts +18 -0
- package/src/lib/component/shared/estimation-display/estimation-display.component.html +7 -0
- package/src/lib/component/shared/estimation-display/estimation-display.component.scss +7 -0
- package/src/lib/component/shared/estimation-display/estimation-display.component.ts +13 -0
- package/src/lib/component/shared/job-route-list/job-route-list.component.html +46 -0
- package/src/lib/component/shared/job-route-list/job-route-list.component.scss +15 -0
- package/src/lib/component/shared/job-route-list/job-route-list.component.spec.ts +23 -0
- package/src/lib/component/shared/job-route-list/job-route-list.component.ts +54 -0
- package/src/lib/component/shared/jobcode-overview/jobcode-overview.component.html +11 -0
- package/src/lib/component/shared/jobcode-overview/jobcode-overview.component.scss +13 -0
- package/src/lib/component/shared/jobcode-overview/jobcode-overview.component.spec.ts +23 -0
- package/src/lib/component/shared/jobcode-overview/jobcode-overview.component.ts +19 -0
- package/src/lib/component/shared/jobcode-status/jobcode-status.component.html +5 -0
- package/src/lib/component/shared/jobcode-status/jobcode-status.component.scss +40 -0
- package/src/lib/component/shared/jobcode-status/jobcode-status.component.spec.ts +23 -0
- package/src/lib/component/shared/jobcode-status/jobcode-status.component.ts +11 -0
- package/src/lib/component/shared/route-info-card/route-info-card.component.html +19 -0
- package/src/lib/component/shared/route-info-card/route-info-card.component.scss +50 -0
- package/src/lib/component/shared/route-info-card/route-info-card.component.spec.ts +23 -0
- package/src/lib/component/shared/route-info-card/route-info-card.component.ts +74 -0
- package/src/lib/component/shared/searchoptiongroup/searchoptiongroup.component.css +3 -0
- package/src/lib/component/shared/searchoptiongroup/searchoptiongroup.component.html +6 -0
- package/src/lib/component/shared/searchoptiongroup/searchoptiongroup.component.spec.ts +23 -0
- package/src/lib/component/shared/searchoptiongroup/searchoptiongroup.component.ts +21 -0
- package/src/lib/coolmap.module.ts +120 -0
- package/{public-api.d.ts → src/public-api.ts} +8 -0
- package/src/test.ts +27 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2022/aggdirect-coolmap.mjs +0 -5
- package/esm2022/lib/component/add-route/add-route.component.mjs +0 -433
- package/esm2022/lib/component/job-code/job-code.component.mjs +0 -181
- package/esm2022/lib/component/map/map.component.mjs +0 -39
- package/esm2022/lib/component/nav/layout/add-route-nav/add-route-nav.component.mjs +0 -151
- package/esm2022/lib/component/nav/layout/job-code-nav/job-code-nav.component.mjs +0 -150
- package/esm2022/lib/component/nav/nav.component.mjs +0 -54
- package/esm2022/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.mjs +0 -77
- package/esm2022/lib/component/route-jobcode-list/route-jobcode-list.component.mjs +0 -319
- package/esm2022/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.mjs +0 -19
- package/esm2022/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.mjs +0 -37
- package/esm2022/lib/component/shared/dialog/dialog.component.mjs +0 -31
- package/esm2022/lib/component/shared/estimation-display/estimation-display.component.mjs +0 -18
- package/esm2022/lib/component/shared/job-route-list/job-route-list.component.mjs +0 -79
- package/esm2022/lib/component/shared/jobcode-overview/jobcode-overview.component.mjs +0 -24
- package/esm2022/lib/component/shared/jobcode-status/jobcode-status.component.mjs +0 -15
- package/esm2022/lib/component/shared/route-info-card/route-info-card.component.mjs +0 -62
- package/esm2022/lib/component/shared/searchoptiongroup/searchoptiongroup.component.mjs +0 -25
- package/esm2022/lib/coolmap.module.mjs +0 -193
- package/esm2022/public-api.mjs +0 -19
- package/fesm2022/aggdirect-coolmap.mjs +0 -1778
- package/fesm2022/aggdirect-coolmap.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/component/add-route/add-route.component.d.ts +0 -73
- package/lib/component/job-code/job-code.component.d.ts +0 -41
- package/lib/component/map/map.component.d.ts +0 -15
- package/lib/component/nav/layout/add-route-nav/add-route-nav.component.d.ts +0 -49
- package/lib/component/nav/layout/job-code-nav/job-code-nav.component.d.ts +0 -42
- package/lib/component/nav/nav.component.d.ts +0 -31
- package/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.d.ts +0 -20
- package/lib/component/route-jobcode-list/route-jobcode-list.component.d.ts +0 -42
- package/lib/component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component.d.ts +0 -9
- package/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.d.ts +0 -12
- package/lib/component/shared/dialog/dialog.component.d.ts +0 -13
- package/lib/component/shared/estimation-display/estimation-display.component.d.ts +0 -8
- package/lib/component/shared/job-route-list/job-route-list.component.d.ts +0 -26
- package/lib/component/shared/jobcode-overview/jobcode-overview.component.d.ts +0 -10
- package/lib/component/shared/jobcode-status/jobcode-status.component.d.ts +0 -7
- package/lib/component/shared/route-info-card/route-info-card.component.d.ts +0 -32
- package/lib/component/shared/searchoptiongroup/searchoptiongroup.component.d.ts +0 -14
- package/lib/coolmap.module.d.ts +0 -46
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, SimpleChanges, OnDestroy } from '@angular/core';
|
|
2
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import { CoolmapConfigModel, CustomerRepoDetailsModel, 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
|
-
private config;
|
|
16
|
-
filterForm: FormGroup<{
|
|
17
|
-
search: FormControl<any>;
|
|
18
|
-
}>;
|
|
19
|
-
filteredOptions: Observable<any[]> | undefined;
|
|
20
|
-
filters: Filter[];
|
|
21
|
-
loaderVal: boolean;
|
|
22
|
-
routes: Route[];
|
|
23
|
-
changeNav: EventEmitter<any>;
|
|
24
|
-
navValue: string;
|
|
25
|
-
addemit: EventEmitter<any>;
|
|
26
|
-
updateRouteList: boolean;
|
|
27
|
-
customerRepoDetails: CustomerRepoDetailsModel;
|
|
28
|
-
destroyer$: Subject<boolean>;
|
|
29
|
-
preventListUpdate: boolean;
|
|
30
|
-
unitList: any;
|
|
31
|
-
materialsList: any;
|
|
32
|
-
constructor(utils: UtilsService, config: CoolmapConfigModel);
|
|
33
|
-
showAddForm(): void;
|
|
34
|
-
filterSearch(e: any): void;
|
|
35
|
-
removeFromFilter(filter: any): void;
|
|
36
|
-
ngAfterViewInit(): void;
|
|
37
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
38
|
-
getRoute(event: Route): void;
|
|
39
|
-
checkAndCallRouteList(): void;
|
|
40
|
-
getUnitName(data: any): string;
|
|
41
|
-
getMaterialName(data: any): string;
|
|
42
|
-
getRouteListForCoolMap(): void;
|
|
43
|
-
getRouteListForCustomer(): void;
|
|
44
|
-
resetSearch(): void;
|
|
45
|
-
ngOnDestroy(): void;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AddRouteNavComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddRouteNavComponent, "app-add-route-nav", never, { "navValue": { "alias": "navValue"; "required": false; }; "updateRouteList": { "alias": "updateRouteList"; "required": false; }; "customerRepoDetails": { "alias": "customerRepoDetails"; "required": false; }; }, { "changeNav": "changeNav"; "addemit": "addemit"; }, never, never, false, never>;
|
|
48
|
-
}
|
|
49
|
-
export {};
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy, OnChanges, SimpleChanges } 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 { CoolmapConfigModel, CustomerRepoDetailsModel, 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 OnDestroy, OnChanges {
|
|
15
|
-
utils: UtilsService;
|
|
16
|
-
private config;
|
|
17
|
-
filterForm: FormGroup<{
|
|
18
|
-
search: FormControl<any>;
|
|
19
|
-
}>;
|
|
20
|
-
listData: Route[];
|
|
21
|
-
loaderVal: boolean;
|
|
22
|
-
dateValue: Date;
|
|
23
|
-
jobemit: EventEmitter<any>;
|
|
24
|
-
value: string;
|
|
25
|
-
filteredOptions: Observable<any[]> | undefined;
|
|
26
|
-
filters: Filter[];
|
|
27
|
-
clearJobDetails: EventEmitter<any>;
|
|
28
|
-
destroyer$: Subject<boolean>;
|
|
29
|
-
customerRepoDetails: CustomerRepoDetailsModel;
|
|
30
|
-
selectedDate: string;
|
|
31
|
-
constructor(utils: UtilsService, config: CoolmapConfigModel);
|
|
32
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
33
|
-
loadData(value: string): void;
|
|
34
|
-
getRoute(job: Route): void;
|
|
35
|
-
getDate(ev: MatDatepickerInputEvent<Date>): void;
|
|
36
|
-
filterSearch(e: any): void;
|
|
37
|
-
removeFromFilter(filter: any): void;
|
|
38
|
-
ngOnDestroy(): void;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobCodeNavComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobCodeNavComponent, "app-job-code-nav", never, { "customerRepoDetails": { "alias": "customerRepoDetails"; "required": false; }; }, { "jobemit": "jobemit"; "clearJobDetails": "clearJobDetails"; }, never, never, false, never>;
|
|
41
|
-
}
|
|
42
|
-
export {};
|
|
@@ -1,31 +0,0 @@
|
|
|
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, never>;
|
|
31
|
-
}
|
package/lib/component/route-jobcode-list/job-code-list-card/job-code-list-card.component.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { CoolmapConfigModel, Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class JobCodeListCardComponent {
|
|
5
|
-
utils: UtilsService;
|
|
6
|
-
config: CoolmapConfigModel;
|
|
7
|
-
route: Route;
|
|
8
|
-
routeSeletion: EventEmitter<any>;
|
|
9
|
-
toggleDrivermenu: EventEmitter<any>;
|
|
10
|
-
emitJobdetails: any;
|
|
11
|
-
preventCloseDetails: boolean;
|
|
12
|
-
constructor(utils: UtilsService, config: CoolmapConfigModel);
|
|
13
|
-
selectRoute(route: Route): void;
|
|
14
|
-
toggleDriverlist(mouseevntType: boolean | string, route: Route, isHoverOut?: boolean): void;
|
|
15
|
-
toggleJobCodeDetails(mouseEventType: boolean, route: Route): void;
|
|
16
|
-
calculateStatusPercentage(type: string, route: any): number;
|
|
17
|
-
setRouteItem(): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobCodeListCardComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobCodeListCardComponent, "app-job-code-list-card", never, { "route": { "alias": "route"; "required": false; }; "emitJobdetails": { "alias": "emitJobdetails"; "required": false; }; "preventCloseDetails": { "alias": "preventCloseDetails"; "required": false; }; }, { "routeSeletion": "routeSeletion"; "toggleDrivermenu": "toggleDrivermenu"; }, never, never, false, never>;
|
|
20
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
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": { "alias": "loader"; "required": false; }; "type": { "alias": "type"; "required": false; }; "data": { "alias": "data"; "required": false; }; "currentNav": { "alias": "currentNav"; "required": false; }; "searchTerm": { "alias": "searchTerm"; "required": false; }; "clearListSeletion": { "alias": "clearListSeletion"; "required": false; }; }, { "emitroute": "emitroute"; "showAllRoute": "showAllRoute"; "clearJobDetailsFromList": "clearJobDetailsFromList"; }, never, never, false, never>;
|
|
42
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
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": { "alias": "jobValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
-
}
|
package/lib/component/route-jobcode-list/view-route-list-card/view-route-list-card.component.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { CoolmapConfigModel, Route, UtilsService } from '@aggdirect/coolmap-services';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ViewRouteListCardComponent {
|
|
4
|
-
utils: UtilsService;
|
|
5
|
-
config: CoolmapConfigModel;
|
|
6
|
-
route: Route;
|
|
7
|
-
emitrouteevent: any;
|
|
8
|
-
constructor(utils: UtilsService, config: CoolmapConfigModel);
|
|
9
|
-
detailsDict(event: boolean | string, route: Route): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ViewRouteListCardComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewRouteListCardComponent, "app-view-route-list-card", never, { "route": { "alias": "route"; "required": false; }; "emitrouteevent": { "alias": "emitrouteevent"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
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, never>;
|
|
13
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class EstimationDisplayComponent {
|
|
3
|
-
value: any;
|
|
4
|
-
label: string[];
|
|
5
|
-
Estinationlabel: any;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EstimationDisplayComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EstimationDisplayComponent, "app-estimation-display", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
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": { "alias": "routes"; "required": false; }; "selectedRoute": { "alias": "selectedRoute"; "required": false; }; "masterRoutes": { "alias": "masterRoutes"; "required": false; }; }, { "changeNav": "changeNav"; "changeRoutes": "changeRoutes"; "changeSelectedRoute": "changeSelectedRoute"; }, never, never, false, never>;
|
|
26
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class JobcodeOverviewComponent {
|
|
3
|
-
jobValue: any;
|
|
4
|
-
label: string[];
|
|
5
|
-
overViewEnum: any;
|
|
6
|
-
constructor();
|
|
7
|
-
makeValueObject(item: string): any;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobcodeOverviewComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobcodeOverviewComponent, "app-jobcode-overview", never, { "jobValue": { "alias": "jobValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Route } from '@aggdirect/coolmap-services';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class JobcodeStatusComponent {
|
|
4
|
-
jobValue: Route;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<JobcodeStatusComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<JobcodeStatusComponent, "app-jobcode-status", never, { "jobValue": { "alias": "jobValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
interface CardEntity {
|
|
4
|
-
pickup_location: string;
|
|
5
|
-
delivery_location: string;
|
|
6
|
-
route_name: string;
|
|
7
|
-
customer_name: string;
|
|
8
|
-
material: string;
|
|
9
|
-
materialName: string;
|
|
10
|
-
unit: string;
|
|
11
|
-
estimated_distance: string;
|
|
12
|
-
estimated_time: string;
|
|
13
|
-
trucker_pay_estimate: string;
|
|
14
|
-
customer_price_estimate: string;
|
|
15
|
-
note: string;
|
|
16
|
-
}
|
|
17
|
-
interface CardPropEntity {
|
|
18
|
-
className: string;
|
|
19
|
-
repository: string;
|
|
20
|
-
}
|
|
21
|
-
export declare class RouteInfoCardComponent {
|
|
22
|
-
cdr: ChangeDetectorRef;
|
|
23
|
-
popupData: CardEntity;
|
|
24
|
-
propData: CardPropEntity;
|
|
25
|
-
cardKeysElement: string[];
|
|
26
|
-
constructor(cdr: ChangeDetectorRef);
|
|
27
|
-
ngAfterViewInit(): void;
|
|
28
|
-
createLabel(itemName: any): any;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RouteInfoCardComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RouteInfoCardComponent, "lib-route-info-card", never, { "popupData": { "alias": "popupData"; "required": false; }; "propData": { "alias": "propData"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
|
-
}
|
|
32
|
-
export {};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SearchoptiongroupComponent {
|
|
5
|
-
searchConfig: {
|
|
6
|
-
form: FormGroup;
|
|
7
|
-
controlname: string;
|
|
8
|
-
};
|
|
9
|
-
onUpdatePickUpSearchOption: EventEmitter<string>;
|
|
10
|
-
get searchOption(): FormControl<any>;
|
|
11
|
-
changeSearchOption(value: string): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SearchoptiongroupComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchoptiongroupComponent, "lib-searchoptiongroup", never, { "searchConfig": { "alias": "searchConfig"; "required": false; }; }, { "onUpdatePickUpSearchOption": "onUpdatePickUpSearchOption"; }, never, never, false, never>;
|
|
14
|
-
}
|
package/lib/coolmap.module.d.ts
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { CoolmapConfigModel } from '@aggdirect/coolmap-services';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./component/map/map.component";
|
|
5
|
-
import * as i2 from "./component/nav/nav.component";
|
|
6
|
-
import * as i3 from "./component/nav/layout/add-route-nav/add-route-nav.component";
|
|
7
|
-
import * as i4 from "./component/nav/layout/job-code-nav/job-code-nav.component";
|
|
8
|
-
import * as i5 from "./component/route-jobcode-list/route-jobcode-list.component";
|
|
9
|
-
import * as i6 from "./component/route-jobcode-list/view-route-list-card/view-route-list-card.component";
|
|
10
|
-
import * as i7 from "./component/route-jobcode-list/sms-card-details-overview/sms-card-details-overview.component";
|
|
11
|
-
import * as i8 from "./component/route-jobcode-list/job-code-list-card/job-code-list-card.component";
|
|
12
|
-
import * as i9 from "./component/job-code/job-code.component";
|
|
13
|
-
import * as i10 from "./component/shared/job-route-list/job-route-list.component";
|
|
14
|
-
import * as i11 from "./component/shared/jobcode-status/jobcode-status.component";
|
|
15
|
-
import * as i12 from "./component/shared/jobcode-overview/jobcode-overview.component";
|
|
16
|
-
import * as i13 from "./component/shared/dialog/dialog.component";
|
|
17
|
-
import * as i14 from "./component/add-route/add-route.component";
|
|
18
|
-
import * as i15 from "./component/shared/estimation-display/estimation-display.component";
|
|
19
|
-
import * as i16 from "./component/shared/route-info-card/route-info-card.component";
|
|
20
|
-
import * as i17 from "./component/shared/searchoptiongroup/searchoptiongroup.component";
|
|
21
|
-
import * as i18 from "@angular/common";
|
|
22
|
-
import * as i19 from "@angular/material/snack-bar";
|
|
23
|
-
import * as i20 from "@angular/material/sidenav";
|
|
24
|
-
import * as i21 from "@angular/cdk/drag-drop";
|
|
25
|
-
import * as i22 from "@angular/forms";
|
|
26
|
-
import * as i23 from "@angular/material/input";
|
|
27
|
-
import * as i24 from "@angular/material/select";
|
|
28
|
-
import * as i25 from "@angular/material/icon";
|
|
29
|
-
import * as i26 from "@angular/material/autocomplete";
|
|
30
|
-
import * as i27 from "@angular/material/form-field";
|
|
31
|
-
import * as i28 from "@angular/material/progress-spinner";
|
|
32
|
-
import * as i29 from "@angular/material/chips";
|
|
33
|
-
import * as i30 from "@angular/material/dialog";
|
|
34
|
-
import * as i31 from "@angular/material/tooltip";
|
|
35
|
-
import * as i32 from "@angular/material/datepicker";
|
|
36
|
-
import * as i33 from "@angular/material/core";
|
|
37
|
-
import * as i34 from "@angular/material/button";
|
|
38
|
-
import * as i35 from "@angular/material/progress-bar";
|
|
39
|
-
import * as i36 from "@angular/cdk/scrolling";
|
|
40
|
-
import * as i37 from "@angular/material/radio";
|
|
41
|
-
export declare class CoolmapModule {
|
|
42
|
-
static forRoot(memberData: CoolmapConfigModel): ModuleWithProviders<CoolmapModule>;
|
|
43
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoolmapModule, never>;
|
|
44
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CoolmapModule, [typeof i1.MapComponent, typeof i2.NavComponent, typeof i3.AddRouteNavComponent, typeof i4.JobCodeNavComponent, typeof i5.RouteJobCodeListComponent, typeof i6.ViewRouteListCardComponent, typeof i7.SmsCardDetailsOverviewComponent, typeof i8.JobCodeListCardComponent, typeof i9.JobCodeComponent, typeof i10.JobRouteListComponent, typeof i11.JobcodeStatusComponent, typeof i12.JobcodeOverviewComponent, typeof i13.DialogComponent, typeof i14.AddRouteComponent, typeof i15.EstimationDisplayComponent, typeof i16.RouteInfoCardComponent, typeof i17.SearchoptiongroupComponent], [typeof i18.CommonModule, typeof i19.MatSnackBarModule, typeof i20.MatSidenavModule, typeof i21.DragDropModule, typeof i22.FormsModule, typeof i23.MatInputModule, typeof i24.MatSelectModule, typeof i25.MatIconModule, typeof i22.ReactiveFormsModule, typeof i26.MatAutocompleteModule, typeof i27.MatFormFieldModule, typeof i28.MatProgressSpinnerModule, typeof i29.MatChipsModule, typeof i30.MatDialogModule, typeof i31.MatTooltipModule, typeof i32.MatDatepickerModule, typeof i33.MatNativeDateModule, typeof i33.MatPseudoCheckboxModule, typeof i34.MatButtonModule, typeof i35.MatProgressBarModule, typeof i36.ScrollingModule, typeof i37.MatRadioModule], [typeof i1.MapComponent, typeof i2.NavComponent, typeof i3.AddRouteNavComponent, typeof i4.JobCodeNavComponent, typeof i5.RouteJobCodeListComponent, typeof i6.ViewRouteListCardComponent, typeof i7.SmsCardDetailsOverviewComponent, typeof i8.JobCodeListCardComponent, typeof i9.JobCodeComponent, typeof i10.JobRouteListComponent, typeof i11.JobcodeStatusComponent, typeof i12.JobcodeOverviewComponent, typeof i13.DialogComponent, typeof i14.AddRouteComponent]>;
|
|
45
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CoolmapModule>;
|
|
46
|
-
}
|