sendung-lib 0.0.1 → 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 +109 -0
- package/esm2022/lib/components/colli-ereignisse/colli-info-cell/colli-info-cell.component.mjs +54 -0
- package/esm2022/lib/components/colli-uebersicht/colli-uebersicht.component.mjs +92 -0
- package/esm2022/lib/components/dispo-detail/dispo-detail.component.mjs +77 -0
- package/esm2022/lib/components/gefahrgut/gefahrgut.component.mjs +77 -0
- package/esm2022/lib/components/sendung-ereignisse/sendung-ereignisse-info-cell/sendung-ereignisse-info-cell.component.mjs +40 -0
- package/esm2022/lib/components/sendung-ereignisse/sendung-ereignisse.component.mjs +90 -0
- package/esm2022/lib/components/sendung-information/info-cell/info-cell.component.mjs +78 -0
- package/esm2022/lib/components/sendung-information/radioaktiv-cell/radioaktiv-cell.component.mjs +41 -0
- package/esm2022/lib/components/sendung-information/sendung-information.component.mjs +198 -0
- package/esm2022/lib/components/sendungskette/empfaenger-details/empfaenger-details.component.mjs +41 -0
- package/esm2022/lib/components/sendungskette/sendungskette.component.mjs +128 -0
- package/esm2022/lib/models/colliEventsModel.mjs +2 -0
- package/esm2022/lib/models/colliubersichtModel.mjs +2 -0
- package/esm2022/lib/models/dienstModel.mjs +2 -0
- package/esm2022/lib/models/dispoDetailsModel.mjs +2 -0
- package/esm2022/lib/models/gefahrgutModel.mjs +2 -0
- package/esm2022/lib/models/index.mjs +9 -0
- package/esm2022/lib/models/packstueckeModel.mjs +2 -0
- package/esm2022/lib/models/scannungenModel.mjs +2 -0
- package/esm2022/lib/models/sendungsereignisse.model.mjs +2 -0
- package/esm2022/lib/models/shipment-info.model.mjs +2 -0
- package/esm2022/lib/services/form.service.mjs +63 -0
- package/esm2022/lib/services/locale.de.mjs +219 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/sendung-lib.mjs +1242 -2
- package/fesm2022/sendung-lib.mjs.map +1 -1
- package/lib/components/colli-ereignisse/colli-ereignisse.component.d.ts +219 -0
- package/lib/components/colli-ereignisse/colli-info-cell/colli-info-cell.component.d.ts +21 -0
- package/lib/components/colli-uebersicht/colli-uebersicht.component.d.ts +217 -0
- package/lib/components/dispo-detail/dispo-detail.component.d.ts +217 -0
- package/lib/components/gefahrgut/gefahrgut.component.d.ts +219 -0
- package/lib/components/sendung-ereignisse/sendung-ereignisse-info-cell/sendung-ereignisse-info-cell.component.d.ts +20 -0
- package/lib/components/sendung-ereignisse/sendung-ereignisse.component.d.ts +220 -0
- package/lib/components/sendung-information/info-cell/info-cell.component.d.ts +29 -0
- package/lib/components/sendung-information/radioaktiv-cell/radioaktiv-cell.component.d.ts +18 -0
- package/lib/components/sendung-information/sendung-information.component.d.ts +237 -0
- package/lib/components/sendungskette/empfaenger-details/empfaenger-details.component.d.ts +18 -0
- package/lib/components/sendungskette/sendungskette.component.d.ts +223 -0
- package/lib/models/colliEventsModel.d.ts +33 -0
- package/lib/models/colliubersichtModel.d.ts +16 -0
- package/lib/models/dienstModel.d.ts +10 -0
- package/lib/models/dispoDetailsModel.d.ts +11 -0
- package/lib/models/gefahrgutModel.d.ts +24 -0
- package/lib/models/index.d.ts +8 -0
- package/lib/models/packstueckeModel.d.ts +7 -0
- package/lib/models/scannungenModel.d.ts +31 -0
- package/lib/models/sendungsereignisse.model.d.ts +18 -0
- package/lib/models/shipment-info.model.d.ts +42 -0
- package/lib/services/form.service.d.ts +17 -0
- package/lib/services/locale.de.d.ts +201 -0
- package/package.json +21 -3
- package/public-api.d.ts +1 -0
- package/sendung-lib-0.0.3.tgz +0 -0
- package/sendung-lib-0.0.1.tgz +0 -0
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
import { ColDef, GridApi, GridReadyEvent } from "ag-grid-community";
|
|
2
|
+
import { Observable } from "rxjs";
|
|
3
|
+
import { Sendungsereignisse } from "../../models";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SendungEreignisseComponent {
|
|
6
|
+
gridApi: GridApi;
|
|
7
|
+
columnDef: ColDef[];
|
|
8
|
+
defaultColDef: ColDef;
|
|
9
|
+
carretUp: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
10
|
+
carretDown: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
11
|
+
show: boolean;
|
|
12
|
+
locale: {
|
|
13
|
+
selectAll: string;
|
|
14
|
+
selectAllSearchResults: string;
|
|
15
|
+
searchOoo: string;
|
|
16
|
+
blanks: string;
|
|
17
|
+
noMatches: string;
|
|
18
|
+
filterOoo: string;
|
|
19
|
+
equals: string;
|
|
20
|
+
notEqual: string;
|
|
21
|
+
empty: string;
|
|
22
|
+
lessThan: string;
|
|
23
|
+
greaterThan: string;
|
|
24
|
+
lessThanOrEqual: string;
|
|
25
|
+
greaterThanOrEqual: string;
|
|
26
|
+
inRange: string;
|
|
27
|
+
inRangeStart: string;
|
|
28
|
+
inRangeEnd: string;
|
|
29
|
+
contains: string;
|
|
30
|
+
notContains: string;
|
|
31
|
+
startsWith: string;
|
|
32
|
+
endsWith: string;
|
|
33
|
+
dateFormatOoo: string;
|
|
34
|
+
andCondition: string;
|
|
35
|
+
orCondition: string;
|
|
36
|
+
applyFilter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
clearFilter: string;
|
|
39
|
+
cancelFilter: string;
|
|
40
|
+
textFilter: string;
|
|
41
|
+
numberFilter: string;
|
|
42
|
+
dateFilter: string;
|
|
43
|
+
setFilter: string;
|
|
44
|
+
columns: string;
|
|
45
|
+
filters: string;
|
|
46
|
+
pivotMode: string;
|
|
47
|
+
groups: string;
|
|
48
|
+
rowGroupColumnsEmptyMessage: string;
|
|
49
|
+
values: string;
|
|
50
|
+
valueColumnsEmptyMessage: string;
|
|
51
|
+
pivots: string;
|
|
52
|
+
pivotColumnsEmptyMessage: string;
|
|
53
|
+
group: string;
|
|
54
|
+
loadingOoo: string;
|
|
55
|
+
noRowsToShow: string;
|
|
56
|
+
enabled: string;
|
|
57
|
+
pinColumn: string;
|
|
58
|
+
pinLeft: string;
|
|
59
|
+
pinRight: string;
|
|
60
|
+
noPin: string;
|
|
61
|
+
valueAggregation: string;
|
|
62
|
+
autosizeThiscolumn: string;
|
|
63
|
+
autosizeAllColumns: string;
|
|
64
|
+
groupBy: string;
|
|
65
|
+
ungroupBy: string;
|
|
66
|
+
resetColumns: string;
|
|
67
|
+
expandAll: string;
|
|
68
|
+
collapseAll: string;
|
|
69
|
+
copy: string;
|
|
70
|
+
ctrlC: string;
|
|
71
|
+
copyWithHeaders: string;
|
|
72
|
+
paste: string;
|
|
73
|
+
ctrlV: string;
|
|
74
|
+
export: string;
|
|
75
|
+
csvExport: string;
|
|
76
|
+
excelExport: string;
|
|
77
|
+
excelXmlExport: string;
|
|
78
|
+
sum: string;
|
|
79
|
+
min: string;
|
|
80
|
+
max: string;
|
|
81
|
+
none: string;
|
|
82
|
+
count: string;
|
|
83
|
+
avg: string;
|
|
84
|
+
filteredRows: string;
|
|
85
|
+
selectedRows: string;
|
|
86
|
+
totalRows: string;
|
|
87
|
+
totalAndFilteredRows: string;
|
|
88
|
+
more: string;
|
|
89
|
+
to: string;
|
|
90
|
+
of: string;
|
|
91
|
+
page: string;
|
|
92
|
+
nextPage: string;
|
|
93
|
+
lastPage: string;
|
|
94
|
+
firstPage: string;
|
|
95
|
+
previousPage: string;
|
|
96
|
+
pivotChartAndPivotMode: string;
|
|
97
|
+
pivotChart: string;
|
|
98
|
+
chartRange: string;
|
|
99
|
+
columnChart: string;
|
|
100
|
+
groupedColumn: string;
|
|
101
|
+
stackedColumn: string;
|
|
102
|
+
normalizedColumn: string;
|
|
103
|
+
barChart: string;
|
|
104
|
+
groupedBar: string;
|
|
105
|
+
stackedBar: string;
|
|
106
|
+
normalizedBar: string;
|
|
107
|
+
pieChart: string;
|
|
108
|
+
pie: string;
|
|
109
|
+
doughnut: string;
|
|
110
|
+
line: string;
|
|
111
|
+
xyChart: string;
|
|
112
|
+
scatter: string;
|
|
113
|
+
bubble: string;
|
|
114
|
+
areaChart: string;
|
|
115
|
+
area: string;
|
|
116
|
+
stackedArea: string;
|
|
117
|
+
normalizedArea: string;
|
|
118
|
+
histogramChart: string;
|
|
119
|
+
pivotChartTitle: string;
|
|
120
|
+
rangeChartTitle: string;
|
|
121
|
+
settings: string;
|
|
122
|
+
data: string;
|
|
123
|
+
format: string;
|
|
124
|
+
categories: string;
|
|
125
|
+
defaultCategory: string;
|
|
126
|
+
series: string;
|
|
127
|
+
xyValues: string;
|
|
128
|
+
paired: string;
|
|
129
|
+
axis: string;
|
|
130
|
+
navigator: string;
|
|
131
|
+
color: string;
|
|
132
|
+
thickness: string;
|
|
133
|
+
xType: string;
|
|
134
|
+
automatic: string;
|
|
135
|
+
category: string;
|
|
136
|
+
number: string;
|
|
137
|
+
time: string;
|
|
138
|
+
xRotation: string;
|
|
139
|
+
yRotation: string;
|
|
140
|
+
ticks: string;
|
|
141
|
+
width: string;
|
|
142
|
+
height: string;
|
|
143
|
+
length: string;
|
|
144
|
+
padding: string;
|
|
145
|
+
spacing: string;
|
|
146
|
+
chart: string;
|
|
147
|
+
title: string;
|
|
148
|
+
titlePlaceholder: string;
|
|
149
|
+
background: string;
|
|
150
|
+
font: string;
|
|
151
|
+
top: string;
|
|
152
|
+
right: string;
|
|
153
|
+
bottom: string;
|
|
154
|
+
left: string;
|
|
155
|
+
labels: string;
|
|
156
|
+
size: string;
|
|
157
|
+
minSize: string;
|
|
158
|
+
maxSize: string;
|
|
159
|
+
legend: string;
|
|
160
|
+
position: string;
|
|
161
|
+
markerSize: string;
|
|
162
|
+
markerStroke: string;
|
|
163
|
+
markerPadding: string;
|
|
164
|
+
itemSpacing: string;
|
|
165
|
+
itemPaddingX: string;
|
|
166
|
+
itemPaddingY: string;
|
|
167
|
+
layoutHorizontalSpacing: string;
|
|
168
|
+
layoutVerticalSpacing: string;
|
|
169
|
+
strokeWidth: string;
|
|
170
|
+
offset: string;
|
|
171
|
+
offsets: string;
|
|
172
|
+
tooltips: string;
|
|
173
|
+
callout: string;
|
|
174
|
+
markers: string;
|
|
175
|
+
shadow: string;
|
|
176
|
+
blur: string;
|
|
177
|
+
xOffset: string;
|
|
178
|
+
yOffset: string;
|
|
179
|
+
lineWidth: string;
|
|
180
|
+
normal: string;
|
|
181
|
+
bold: string;
|
|
182
|
+
italic: string;
|
|
183
|
+
boldItalic: string;
|
|
184
|
+
predefined: string;
|
|
185
|
+
fillOpacity: string;
|
|
186
|
+
strokeOpacity: string;
|
|
187
|
+
histogramBinCount: string;
|
|
188
|
+
columnGroup: string;
|
|
189
|
+
barGroup: string;
|
|
190
|
+
pieGroup: string;
|
|
191
|
+
lineGroup: string;
|
|
192
|
+
scatterGroup: string;
|
|
193
|
+
areaGroup: string;
|
|
194
|
+
histogramGroup: string;
|
|
195
|
+
groupedColumnTooltip: string;
|
|
196
|
+
stackedColumnTooltip: string;
|
|
197
|
+
normalizedColumnTooltip: string;
|
|
198
|
+
groupedBarTooltip: string;
|
|
199
|
+
stackedBarTooltip: string;
|
|
200
|
+
normalizedBarTooltip: string;
|
|
201
|
+
pieTooltip: string;
|
|
202
|
+
doughnutTooltip: string;
|
|
203
|
+
lineTooltip: string;
|
|
204
|
+
groupedAreaTooltip: string;
|
|
205
|
+
stackedAreaTooltip: string;
|
|
206
|
+
normalizedAreaTooltip: string;
|
|
207
|
+
scatterTooltip: string;
|
|
208
|
+
bubbleTooltip: string;
|
|
209
|
+
histogramTooltip: string;
|
|
210
|
+
noDataToChart: string;
|
|
211
|
+
pivotChartRequiresPivotMode: string;
|
|
212
|
+
};
|
|
213
|
+
isCollapsed: boolean;
|
|
214
|
+
sendungsereignisse: Observable<Sendungsereignisse[]>;
|
|
215
|
+
constructor();
|
|
216
|
+
gridReady(params: GridReadyEvent): void;
|
|
217
|
+
slicedTime(params: any): any;
|
|
218
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SendungEreignisseComponent, never>;
|
|
219
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SendungEreignisseComponent, "lib-sendung-ereignisse", never, { "sendungsereignisse": { "alias": "sendungsereignisse"; "required": false; }; }, {}, never, never, true, never>;
|
|
220
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { BsModalRef, BsModalService } from "ngx-bootstrap/modal";
|
|
3
|
+
import { IAfterGuiAttachedParams, ICellRendererParams } from "ag-grid-community";
|
|
4
|
+
import { Lightbox } from "ngx-lightbox";
|
|
5
|
+
import { ICellRendererAngularComp } from "ag-grid-angular";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class InfoCellComponent implements ICellRendererAngularComp, OnInit {
|
|
8
|
+
private modalService;
|
|
9
|
+
private lightbox;
|
|
10
|
+
modalRef: BsModalRef;
|
|
11
|
+
faInfoCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
12
|
+
faImage: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
13
|
+
params: any;
|
|
14
|
+
highlight: boolean;
|
|
15
|
+
alvImage: string[];
|
|
16
|
+
alvText: string;
|
|
17
|
+
private _albums;
|
|
18
|
+
constructor(modalService: BsModalService, lightbox: Lightbox);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
afterGuiAttached?(params?: IAfterGuiAttachedParams): void;
|
|
21
|
+
refresh(params: ICellRendererParams): boolean;
|
|
22
|
+
agInit(params: ICellRendererParams): void;
|
|
23
|
+
displayInfos(template: TemplateRef<void>): void;
|
|
24
|
+
checkValues(values: any): any;
|
|
25
|
+
showEmpfaengerName(param: any): string;
|
|
26
|
+
zoomImg(imgsrcArray: string[]): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoCellComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoCellComponent, "lib-info-cell", never, {}, {}, never, never, true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { GridApi, IAfterGuiAttachedParams } from "ag-grid-community";
|
|
3
|
+
import { FormService } from "../../../services/form.service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RadioaktivCellComponent implements OnInit {
|
|
6
|
+
private formService;
|
|
7
|
+
params: any;
|
|
8
|
+
gridApi: GridApi;
|
|
9
|
+
isRadioActive: boolean;
|
|
10
|
+
constructor(formService: FormService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
agInit(params: any): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
refresh(): boolean;
|
|
15
|
+
afterGuiAttached?(params?: IAfterGuiAttachedParams): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioaktivCellComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioaktivCellComponent, "lib-radioaktiv-cell", never, {}, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ColliEvent, DispoDetails, Gefahrgut, Sendungsereignisse, ShipmentInfo } from "../../models";
|
|
3
|
+
import { ColDef, GridApi, GridOptions, GridReadyEvent } from "ag-grid-community";
|
|
4
|
+
import { Observable } from "rxjs";
|
|
5
|
+
import { ColliUbersicht } from "../../models/colliubersichtModel";
|
|
6
|
+
import { FormService } from "../../services/form.service";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SendungInformationComponent implements OnInit {
|
|
9
|
+
private formService;
|
|
10
|
+
gridApi: GridApi;
|
|
11
|
+
columnDef: ColDef[];
|
|
12
|
+
defaultColDef: ColDef;
|
|
13
|
+
gridOptions: GridOptions;
|
|
14
|
+
isCollapsed: boolean;
|
|
15
|
+
locale: {
|
|
16
|
+
selectAll: string;
|
|
17
|
+
selectAllSearchResults: string;
|
|
18
|
+
searchOoo: string;
|
|
19
|
+
blanks: string;
|
|
20
|
+
noMatches: string;
|
|
21
|
+
filterOoo: string;
|
|
22
|
+
equals: string;
|
|
23
|
+
notEqual: string;
|
|
24
|
+
empty: string;
|
|
25
|
+
lessThan: string;
|
|
26
|
+
greaterThan: string;
|
|
27
|
+
lessThanOrEqual: string;
|
|
28
|
+
greaterThanOrEqual: string;
|
|
29
|
+
inRange: string;
|
|
30
|
+
inRangeStart: string;
|
|
31
|
+
inRangeEnd: string;
|
|
32
|
+
contains: string;
|
|
33
|
+
notContains: string;
|
|
34
|
+
startsWith: string;
|
|
35
|
+
endsWith: string;
|
|
36
|
+
dateFormatOoo: string;
|
|
37
|
+
andCondition: string;
|
|
38
|
+
orCondition: string;
|
|
39
|
+
applyFilter: string;
|
|
40
|
+
resetFilter: string;
|
|
41
|
+
clearFilter: string;
|
|
42
|
+
cancelFilter: string;
|
|
43
|
+
textFilter: string;
|
|
44
|
+
numberFilter: string;
|
|
45
|
+
dateFilter: string;
|
|
46
|
+
setFilter: string;
|
|
47
|
+
columns: string;
|
|
48
|
+
filters: string;
|
|
49
|
+
pivotMode: string;
|
|
50
|
+
groups: string;
|
|
51
|
+
rowGroupColumnsEmptyMessage: string;
|
|
52
|
+
values: string;
|
|
53
|
+
valueColumnsEmptyMessage: string;
|
|
54
|
+
pivots: string;
|
|
55
|
+
pivotColumnsEmptyMessage: string;
|
|
56
|
+
group: string;
|
|
57
|
+
loadingOoo: string;
|
|
58
|
+
noRowsToShow: string;
|
|
59
|
+
enabled: string;
|
|
60
|
+
pinColumn: string;
|
|
61
|
+
pinLeft: string;
|
|
62
|
+
pinRight: string;
|
|
63
|
+
noPin: string;
|
|
64
|
+
valueAggregation: string;
|
|
65
|
+
autosizeThiscolumn: string;
|
|
66
|
+
autosizeAllColumns: string;
|
|
67
|
+
groupBy: string;
|
|
68
|
+
ungroupBy: string;
|
|
69
|
+
resetColumns: string;
|
|
70
|
+
expandAll: string;
|
|
71
|
+
collapseAll: string;
|
|
72
|
+
copy: string;
|
|
73
|
+
ctrlC: string;
|
|
74
|
+
copyWithHeaders: string;
|
|
75
|
+
paste: string;
|
|
76
|
+
ctrlV: string;
|
|
77
|
+
export: string;
|
|
78
|
+
csvExport: string;
|
|
79
|
+
excelExport: string;
|
|
80
|
+
excelXmlExport: string;
|
|
81
|
+
sum: string;
|
|
82
|
+
min: string;
|
|
83
|
+
max: string;
|
|
84
|
+
none: string;
|
|
85
|
+
count: string;
|
|
86
|
+
avg: string;
|
|
87
|
+
filteredRows: string;
|
|
88
|
+
selectedRows: string;
|
|
89
|
+
totalRows: string;
|
|
90
|
+
totalAndFilteredRows: string;
|
|
91
|
+
more: string;
|
|
92
|
+
to: string;
|
|
93
|
+
of: string;
|
|
94
|
+
page: string;
|
|
95
|
+
nextPage: string;
|
|
96
|
+
lastPage: string;
|
|
97
|
+
firstPage: string;
|
|
98
|
+
previousPage: string;
|
|
99
|
+
pivotChartAndPivotMode: string;
|
|
100
|
+
pivotChart: string;
|
|
101
|
+
chartRange: string;
|
|
102
|
+
columnChart: string;
|
|
103
|
+
groupedColumn: string;
|
|
104
|
+
stackedColumn: string;
|
|
105
|
+
normalizedColumn: string;
|
|
106
|
+
barChart: string;
|
|
107
|
+
groupedBar: string;
|
|
108
|
+
stackedBar: string;
|
|
109
|
+
normalizedBar: string;
|
|
110
|
+
pieChart: string;
|
|
111
|
+
pie: string;
|
|
112
|
+
doughnut: string;
|
|
113
|
+
line: string;
|
|
114
|
+
xyChart: string;
|
|
115
|
+
scatter: string;
|
|
116
|
+
bubble: string;
|
|
117
|
+
areaChart: string;
|
|
118
|
+
area: string;
|
|
119
|
+
stackedArea: string;
|
|
120
|
+
normalizedArea: string;
|
|
121
|
+
histogramChart: string;
|
|
122
|
+
pivotChartTitle: string;
|
|
123
|
+
rangeChartTitle: string;
|
|
124
|
+
settings: string;
|
|
125
|
+
data: string;
|
|
126
|
+
format: string;
|
|
127
|
+
categories: string;
|
|
128
|
+
defaultCategory: string;
|
|
129
|
+
series: string;
|
|
130
|
+
xyValues: string;
|
|
131
|
+
paired: string;
|
|
132
|
+
axis: string;
|
|
133
|
+
navigator: string;
|
|
134
|
+
color: string;
|
|
135
|
+
thickness: string;
|
|
136
|
+
xType: string;
|
|
137
|
+
automatic: string;
|
|
138
|
+
category: string;
|
|
139
|
+
number: string;
|
|
140
|
+
time: string;
|
|
141
|
+
xRotation: string;
|
|
142
|
+
yRotation: string;
|
|
143
|
+
ticks: string;
|
|
144
|
+
width: string;
|
|
145
|
+
height: string;
|
|
146
|
+
length: string;
|
|
147
|
+
padding: string;
|
|
148
|
+
spacing: string;
|
|
149
|
+
chart: string;
|
|
150
|
+
title: string;
|
|
151
|
+
titlePlaceholder: string;
|
|
152
|
+
background: string;
|
|
153
|
+
font: string;
|
|
154
|
+
top: string;
|
|
155
|
+
right: string;
|
|
156
|
+
bottom: string;
|
|
157
|
+
left: string;
|
|
158
|
+
labels: string;
|
|
159
|
+
size: string;
|
|
160
|
+
minSize: string;
|
|
161
|
+
maxSize: string;
|
|
162
|
+
legend: string;
|
|
163
|
+
position: string;
|
|
164
|
+
markerSize: string;
|
|
165
|
+
markerStroke: string;
|
|
166
|
+
markerPadding: string;
|
|
167
|
+
itemSpacing: string;
|
|
168
|
+
itemPaddingX: string;
|
|
169
|
+
itemPaddingY: string;
|
|
170
|
+
layoutHorizontalSpacing: string;
|
|
171
|
+
layoutVerticalSpacing: string;
|
|
172
|
+
strokeWidth: string;
|
|
173
|
+
offset: string;
|
|
174
|
+
offsets: string;
|
|
175
|
+
tooltips: string;
|
|
176
|
+
callout: string;
|
|
177
|
+
markers: string;
|
|
178
|
+
shadow: string;
|
|
179
|
+
blur: string;
|
|
180
|
+
xOffset: string;
|
|
181
|
+
yOffset: string;
|
|
182
|
+
lineWidth: string;
|
|
183
|
+
normal: string;
|
|
184
|
+
bold: string;
|
|
185
|
+
italic: string;
|
|
186
|
+
boldItalic: string;
|
|
187
|
+
predefined: string;
|
|
188
|
+
fillOpacity: string;
|
|
189
|
+
strokeOpacity: string;
|
|
190
|
+
histogramBinCount: string;
|
|
191
|
+
columnGroup: string;
|
|
192
|
+
barGroup: string;
|
|
193
|
+
pieGroup: string;
|
|
194
|
+
lineGroup: string;
|
|
195
|
+
scatterGroup: string;
|
|
196
|
+
areaGroup: string;
|
|
197
|
+
histogramGroup: string;
|
|
198
|
+
groupedColumnTooltip: string;
|
|
199
|
+
stackedColumnTooltip: string;
|
|
200
|
+
normalizedColumnTooltip: string;
|
|
201
|
+
groupedBarTooltip: string;
|
|
202
|
+
stackedBarTooltip: string;
|
|
203
|
+
normalizedBarTooltip: string;
|
|
204
|
+
pieTooltip: string;
|
|
205
|
+
doughnutTooltip: string;
|
|
206
|
+
lineTooltip: string;
|
|
207
|
+
groupedAreaTooltip: string;
|
|
208
|
+
stackedAreaTooltip: string;
|
|
209
|
+
normalizedAreaTooltip: string;
|
|
210
|
+
scatterTooltip: string;
|
|
211
|
+
bubbleTooltip: string;
|
|
212
|
+
histogramTooltip: string;
|
|
213
|
+
noDataToChart: string;
|
|
214
|
+
pivotChartRequiresPivotMode: string;
|
|
215
|
+
};
|
|
216
|
+
overlayLoadingTemplate: any;
|
|
217
|
+
carretUp: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
218
|
+
carretDown: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
219
|
+
show: boolean;
|
|
220
|
+
sendCorrectedValues: EventEmitter<any>;
|
|
221
|
+
colliEvent$: Observable<ColliEvent[]>;
|
|
222
|
+
sendungsereignisse$: Observable<Sendungsereignisse[]>;
|
|
223
|
+
dangerousGoods$: Observable<Gefahrgut[]>;
|
|
224
|
+
sendungskette$: Observable<ShipmentInfo[]>;
|
|
225
|
+
dispoDetails$: Observable<DispoDetails[]>;
|
|
226
|
+
colliUbersicht$: Observable<ColliUbersicht[]>;
|
|
227
|
+
shipmentInfoDetails: Observable<any[]>;
|
|
228
|
+
dienste: Observable<any>;
|
|
229
|
+
constructor(formService: FormService);
|
|
230
|
+
ngOnInit(): void;
|
|
231
|
+
gridReady(params: GridReadyEvent): void;
|
|
232
|
+
getColAndPal(params: any): string;
|
|
233
|
+
showDienste(param: any): string;
|
|
234
|
+
toggleCollapse(): void;
|
|
235
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SendungInformationComponent, never>;
|
|
236
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SendungInformationComponent, "lib-sendung-information", never, { "colliEvent$": { "alias": "colliEvent$"; "required": false; }; "sendungsereignisse$": { "alias": "sendungsereignisse$"; "required": false; }; "dangerousGoods$": { "alias": "dangerousGoods$"; "required": false; }; "sendungskette$": { "alias": "sendungskette$"; "required": false; }; "dispoDetails$": { "alias": "dispoDetails$"; "required": false; }; "colliUbersicht$": { "alias": "colliUbersicht$"; "required": false; }; "shipmentInfoDetails": { "alias": "shipmentInfoDetails"; "required": false; }; "dienste": { "alias": "dienste"; "required": false; }; }, { "sendCorrectedValues": "sendCorrectedValues"; }, never, never, true, never>;
|
|
237
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { BsModalRef, BsModalService } from "ngx-bootstrap/modal";
|
|
3
|
+
import { ICellRendererParams } from "ag-grid-community";
|
|
4
|
+
import { ICellRendererAngularComp } from "ag-grid-angular";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class EmpfaengerDetailsComponent implements ICellRendererAngularComp {
|
|
7
|
+
private modalService;
|
|
8
|
+
modalRef: BsModalRef;
|
|
9
|
+
faInfoCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
10
|
+
params: ICellRendererParams;
|
|
11
|
+
constructor(modalService: BsModalService);
|
|
12
|
+
agInit(params: ICellRendererParams): void;
|
|
13
|
+
refresh(params: ICellRendererParams): boolean;
|
|
14
|
+
displayInfos(template: TemplateRef<any>): void;
|
|
15
|
+
showEmpfaengerName(param: any): string;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmpfaengerDetailsComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmpfaengerDetailsComponent, "lib-empfaenger-details", never, {}, {}, never, never, true, never>;
|
|
18
|
+
}
|