carriera-intern-components 0.0.96 → 0.0.97
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/app/components/input/input.component.d.ts +24 -30
- package/app/components/input/models/dropdown.model.d.ts +194 -0
- package/app/components/input/models/index.d.ts +1 -1
- package/app/components/input/models/input.model.d.ts +7 -89
- package/app/components/input/pipes/filter-by-search.pipe.d.ts +2 -2
- package/fesm2022/carriera-intern-components.mjs +252 -234
- package/fesm2022/carriera-intern-components.mjs.map +1 -1
- package/package.json +1 -1
- package/app/components/input/models/dispatch.model.d.ts +0 -86
package/package.json
CHANGED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { AvatarColor, AvatarFile } from '../../avatar/models';
|
|
2
|
-
export type Dispatch = {
|
|
3
|
-
id: number;
|
|
4
|
-
dispatchBoardId: number;
|
|
5
|
-
dispatcherId: number;
|
|
6
|
-
truck: Truck;
|
|
7
|
-
trailer?: Trailer | null;
|
|
8
|
-
driver: Driver;
|
|
9
|
-
coDriver?: Driver | null;
|
|
10
|
-
payType: string;
|
|
11
|
-
status?: Status | null;
|
|
12
|
-
currentLocationCoordinates?: {
|
|
13
|
-
latitude: number;
|
|
14
|
-
longitude: number;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
export type DispatchBoard = {
|
|
18
|
-
teamBoard: boolean;
|
|
19
|
-
id: number;
|
|
20
|
-
dispatcher: string | null;
|
|
21
|
-
count: number;
|
|
22
|
-
dispatches: Dispatch[];
|
|
23
|
-
};
|
|
24
|
-
export type Driver = {
|
|
25
|
-
id: number;
|
|
26
|
-
firstName: string;
|
|
27
|
-
lastName: string;
|
|
28
|
-
owner?: boolean | null;
|
|
29
|
-
avatarFile?: AvatarFile | null;
|
|
30
|
-
colorFlag?: AvatarColor | null;
|
|
31
|
-
status?: number;
|
|
32
|
-
address: string | null;
|
|
33
|
-
payType: {
|
|
34
|
-
name: string;
|
|
35
|
-
id: number;
|
|
36
|
-
};
|
|
37
|
-
[key: string]: any;
|
|
38
|
-
};
|
|
39
|
-
export type Truck = {
|
|
40
|
-
id: number;
|
|
41
|
-
truckNumber: string;
|
|
42
|
-
status: number;
|
|
43
|
-
owner: string;
|
|
44
|
-
color: TruckColor;
|
|
45
|
-
truckType: TruckType;
|
|
46
|
-
truckMakeName?: string | null;
|
|
47
|
-
model?: string | null;
|
|
48
|
-
year: number;
|
|
49
|
-
};
|
|
50
|
-
export type TruckColor = {
|
|
51
|
-
id: number;
|
|
52
|
-
companyId?: number | null;
|
|
53
|
-
name: string;
|
|
54
|
-
code: string;
|
|
55
|
-
};
|
|
56
|
-
export type TruckType = {
|
|
57
|
-
id: number;
|
|
58
|
-
companyId?: number | null;
|
|
59
|
-
name: string;
|
|
60
|
-
logoName: string;
|
|
61
|
-
};
|
|
62
|
-
export type Trailer = {
|
|
63
|
-
id: number;
|
|
64
|
-
trailerNumber: string;
|
|
65
|
-
status: number;
|
|
66
|
-
owner: string | null;
|
|
67
|
-
trailerType: TrailerType;
|
|
68
|
-
trailerMakeName?: string | null;
|
|
69
|
-
model?: string | null;
|
|
70
|
-
year: number;
|
|
71
|
-
};
|
|
72
|
-
export type TrailerType = {
|
|
73
|
-
id: number;
|
|
74
|
-
companyId?: number | null;
|
|
75
|
-
name: string;
|
|
76
|
-
logoName: string;
|
|
77
|
-
hasVolume?: boolean | null;
|
|
78
|
-
};
|
|
79
|
-
export type Status = {
|
|
80
|
-
statusValue: {
|
|
81
|
-
name: string;
|
|
82
|
-
id: number;
|
|
83
|
-
};
|
|
84
|
-
statusString: string;
|
|
85
|
-
statusCheckInNumber: string;
|
|
86
|
-
};
|