sendung-lib 0.0.2 → 0.0.3
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/esm2022/lib/components/colli-ereignisse/colli-ereignisse.component.mjs +23 -23
- package/esm2022/lib/components/colli-uebersicht/colli-uebersicht.component.mjs +21 -13
- package/esm2022/lib/components/dispo-detail/dispo-detail.component.mjs +21 -13
- package/esm2022/lib/components/gefahrgut/gefahrgut.component.mjs +21 -13
- package/esm2022/lib/components/sendung-ereignisse/sendung-ereignisse.component.mjs +21 -13
- package/esm2022/lib/components/sendung-information/info-cell/info-cell.component.mjs +4 -2
- package/esm2022/lib/components/sendung-information/sendung-information.component.mjs +45 -28
- package/esm2022/lib/components/sendungskette/sendungskette.component.mjs +21 -13
- package/fesm2022/sendung-lib.mjs +170 -111
- package/fesm2022/sendung-lib.mjs.map +1 -1
- package/lib/components/colli-ereignisse/colli-ereignisse.component.d.ts +5 -2
- package/lib/components/colli-uebersicht/colli-uebersicht.component.d.ts +1 -1
- package/lib/components/dispo-detail/dispo-detail.component.d.ts +1 -1
- package/lib/components/gefahrgut/gefahrgut.component.d.ts +1 -1
- package/lib/components/sendung-ereignisse/sendung-ereignisse.component.d.ts +1 -1
- package/lib/components/sendung-information/info-cell/info-cell.component.d.ts +3 -2
- package/lib/components/sendung-information/sendung-information.component.d.ts +2 -2
- package/lib/components/sendungskette/sendungskette.component.d.ts +1 -1
- package/package.json +21 -3
- package/sendung-lib-0.0.3.tgz +0 -0
- package/sendung-lib-0.0.2.tgz +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { ColDef, GridApi, GridReadyEvent } from "ag-grid-community";
|
|
2
3
|
import { Observable } from "rxjs";
|
|
4
|
+
import { ColliEvent } from "../../models";
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ColliEreignisseComponent {
|
|
6
|
+
export declare class ColliEreignisseComponent implements OnInit {
|
|
5
7
|
gridApi: GridApi;
|
|
6
8
|
columnDef: ColDef[];
|
|
7
9
|
defaultColDef: ColDef;
|
|
@@ -207,10 +209,11 @@ export declare class ColliEreignisseComponent {
|
|
|
207
209
|
noDataToChart: string;
|
|
208
210
|
pivotChartRequiresPivotMode: string;
|
|
209
211
|
};
|
|
210
|
-
|
|
212
|
+
colliEvent: Observable<ColliEvent[]>;
|
|
211
213
|
constructor();
|
|
212
214
|
gridReady(params: GridReadyEvent): void;
|
|
213
215
|
sliceTime(params: any): any;
|
|
216
|
+
ngOnInit(): void;
|
|
214
217
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColliEreignisseComponent, never>;
|
|
215
218
|
static ɵcmp: i0.ɵɵComponentDeclaration<ColliEreignisseComponent, "lib-colli-ereignisse", never, { "colliEvent": { "alias": "colliEvent"; "required": false; }; }, {}, never, never, true, never>;
|
|
216
219
|
}
|
|
@@ -207,7 +207,7 @@ export declare class ColliUebersichtComponent {
|
|
|
207
207
|
noDataToChart: string;
|
|
208
208
|
pivotChartRequiresPivotMode: string;
|
|
209
209
|
};
|
|
210
|
-
|
|
210
|
+
colliUbersicht: Observable<ColliUbersicht[]>;
|
|
211
211
|
constructor();
|
|
212
212
|
gridReady(params: GridReadyEvent): void;
|
|
213
213
|
filterData(data: ColliUbersicht[]): ColliUbersicht[];
|
|
@@ -208,7 +208,7 @@ export declare class DispoDetailComponent {
|
|
|
208
208
|
noDataToChart: string;
|
|
209
209
|
pivotChartRequiresPivotMode: string;
|
|
210
210
|
};
|
|
211
|
-
|
|
211
|
+
dispoDetails: Observable<DispoDetails[]>;
|
|
212
212
|
constructor();
|
|
213
213
|
gridReady(params: GridReadyEvent): void;
|
|
214
214
|
editedTourNr(param: any): string;
|
|
@@ -211,7 +211,7 @@ export declare class GefahrgutComponent {
|
|
|
211
211
|
noDataToChart: string;
|
|
212
212
|
pivotChartRequiresPivotMode: string;
|
|
213
213
|
};
|
|
214
|
-
|
|
214
|
+
dangerous_goods: Observable<Gefahrgut[]>;
|
|
215
215
|
constructor();
|
|
216
216
|
gridReady(params: GridReadyEvent): void;
|
|
217
217
|
static ɵfac: i0.ɵɵFactoryDeclaration<GefahrgutComponent, never>;
|
|
@@ -211,7 +211,7 @@ export declare class SendungEreignisseComponent {
|
|
|
211
211
|
pivotChartRequiresPivotMode: string;
|
|
212
212
|
};
|
|
213
213
|
isCollapsed: boolean;
|
|
214
|
-
|
|
214
|
+
sendungsereignisse: Observable<Sendungsereignisse[]>;
|
|
215
215
|
constructor();
|
|
216
216
|
gridReady(params: GridReadyEvent): void;
|
|
217
217
|
slicedTime(params: any): any;
|
|
@@ -2,8 +2,9 @@ import { OnInit, TemplateRef } from '@angular/core';
|
|
|
2
2
|
import { BsModalRef, BsModalService } from "ngx-bootstrap/modal";
|
|
3
3
|
import { IAfterGuiAttachedParams, ICellRendererParams } from "ag-grid-community";
|
|
4
4
|
import { Lightbox } from "ngx-lightbox";
|
|
5
|
+
import { ICellRendererAngularComp } from "ag-grid-angular";
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InfoCellComponent implements OnInit {
|
|
7
|
+
export declare class InfoCellComponent implements ICellRendererAngularComp, OnInit {
|
|
7
8
|
private modalService;
|
|
8
9
|
private lightbox;
|
|
9
10
|
modalRef: BsModalRef;
|
|
@@ -19,7 +20,7 @@ export declare class InfoCellComponent implements OnInit {
|
|
|
19
20
|
afterGuiAttached?(params?: IAfterGuiAttachedParams): void;
|
|
20
21
|
refresh(params: ICellRendererParams): boolean;
|
|
21
22
|
agInit(params: ICellRendererParams): void;
|
|
22
|
-
displayInfos(template: TemplateRef<
|
|
23
|
+
displayInfos(template: TemplateRef<void>): void;
|
|
23
24
|
checkValues(values: any): any;
|
|
24
25
|
showEmpfaengerName(param: any): string;
|
|
25
26
|
zoomImg(imgsrcArray: string[]): void;
|
|
@@ -224,8 +224,8 @@ export declare class SendungInformationComponent implements OnInit {
|
|
|
224
224
|
sendungskette$: Observable<ShipmentInfo[]>;
|
|
225
225
|
dispoDetails$: Observable<DispoDetails[]>;
|
|
226
226
|
colliUbersicht$: Observable<ColliUbersicht[]>;
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
shipmentInfoDetails: Observable<any[]>;
|
|
228
|
+
dienste: Observable<any>;
|
|
229
229
|
constructor(formService: FormService);
|
|
230
230
|
ngOnInit(): void;
|
|
231
231
|
gridReady(params: GridReadyEvent): void;
|
|
@@ -211,7 +211,7 @@ export declare class SendungsketteComponent {
|
|
|
211
211
|
pivotChartRequiresPivotMode: string;
|
|
212
212
|
};
|
|
213
213
|
isCollapsed: boolean;
|
|
214
|
-
|
|
214
|
+
sendungskette: Observable<ShipmentInfo[]>;
|
|
215
215
|
constructor();
|
|
216
216
|
gridReady(params: GridReadyEvent): void;
|
|
217
217
|
getColAndPal(params: any): string;
|
package/package.json
CHANGED
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sendung-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^17.3.0",
|
|
6
|
-
"@angular/core": "^17.3.0"
|
|
6
|
+
"@angular/core": "^17.3.0",
|
|
7
|
+
"@fortawesome/angular-fontawesome": "^0.14.0",
|
|
8
|
+
"@fortawesome/fontawesome-common-types": "^6.5.2",
|
|
9
|
+
"@fortawesome/fontawesome-svg-core": "^6.5.2",
|
|
10
|
+
"@fortawesome/free-solid-svg-icons": "^6.5.2",
|
|
11
|
+
"ag-grid-angular": "^32.2.2",
|
|
12
|
+
"ag-grid-community": "^32.2.2",
|
|
13
|
+
"bootstrap": "^5.3.3",
|
|
14
|
+
"ngx-bootstrap": "^12.0.0",
|
|
15
|
+
"ngx-lightbox": "^3.0.0"
|
|
7
16
|
},
|
|
8
17
|
"dependencies": {
|
|
9
|
-
"tslib": "^2.3.0"
|
|
18
|
+
"tslib": "^2.3.0",
|
|
19
|
+
"@fortawesome/angular-fontawesome": "^0.14.0",
|
|
20
|
+
"@fortawesome/fontawesome-common-types": "^6.5.2",
|
|
21
|
+
"@fortawesome/fontawesome-svg-core": "^6.5.2",
|
|
22
|
+
"@fortawesome/free-solid-svg-icons": "^6.5.2",
|
|
23
|
+
"ag-grid-angular": "^32.2.2",
|
|
24
|
+
"ag-grid-community": "^32.2.2",
|
|
25
|
+
"bootstrap": "^5.3.3",
|
|
26
|
+
"ngx-bootstrap": "^12.0.0",
|
|
27
|
+
"ngx-lightbox": "^3.0.0"
|
|
10
28
|
},
|
|
11
29
|
"sideEffects": false,
|
|
12
30
|
"module": "fesm2022/sendung-lib.mjs",
|
|
Binary file
|
package/sendung-lib-0.0.2.tgz
DELETED
|
Binary file
|