carriera-intern-components 0.0.96 → 0.0.98
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/{directives → components/input/directives}/number-format.directive.d.ts +5 -1
- package/app/components/input/input.component.d.ts +36 -35
- 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 +10 -89
- package/app/components/input/pipes/filter-by-search.pipe.d.ts +2 -2
- package/fesm2022/carriera-intern-components.mjs +339 -252
- package/fesm2022/carriera-intern-components.mjs.map +1 -1
- package/package.json +1 -1
- package/public/assets/icons/load/cai-weight.svg +3 -0
- package/public/assets/json/icons.json +4 -0
- package/app/components/input/models/dispatch.model.d.ts +0 -86
- /package/app/{directives → components/input/directives}/password.directive.d.ts +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.9349 16.3066L16.3697 6.60754C16.3104 6.36609 16.1715 6.15093 15.9749 5.9959C15.7784 5.84086 15.5352 5.75472 15.2836 5.75103H13.166C13.3025 5.41296 13.3726 5.05231 13.3725 4.68834C13.3573 3.82871 12.9972 3.01019 12.3713 2.41261C11.7454 1.81504 10.9049 1.48728 10.0344 1.50137H10C9.56534 1.48895 9.13245 1.56123 8.72607 1.71408C8.31969 1.86693 7.94779 2.09736 7.63162 2.3922C7.31544 2.68703 7.06118 3.0405 6.88336 3.43241C6.70555 3.82432 6.60767 4.24699 6.5953 4.67627V4.68834C6.59857 5.05198 6.66855 5.41203 6.80185 5.75103H4.71527C4.46386 5.75415 4.22068 5.83996 4.02418 5.99488C3.82769 6.14981 3.6891 6.36501 3.63034 6.60644L1.06515 16.3066C0.993458 16.5587 0.98074 16.8236 1.02796 17.0813C1.07517 17.3389 1.18109 17.5826 1.3377 17.7939C1.49431 18.0052 1.69751 18.1786 1.93194 18.3009C2.16637 18.4232 2.42589 18.4913 2.69088 18.5H17.3069C17.5721 18.4916 17.8319 18.4238 18.0666 18.3016C18.3013 18.1794 18.5048 18.0061 18.6616 17.7948C18.8185 17.5834 18.9246 17.3396 18.9719 17.0818C19.0193 16.824 19.0066 16.5589 18.9349 16.3066ZM10 3.62565C10.2923 3.61888 10.5753 3.72702 10.7869 3.9263C10.9985 4.12558 11.1213 4.39968 11.1282 4.68834C11.121 4.9769 10.9981 5.25083 10.7866 5.45005C10.5751 5.64926 10.2922 5.7575 10 5.75103C9.70508 5.75766 9.41918 5.65029 9.20325 5.45178C8.98731 5.25328 8.85841 4.97934 8.84401 4.68834C8.85841 4.39734 8.98731 4.1234 9.20325 3.92489C9.41918 3.72639 9.70508 3.61901 10 3.62565Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -284,6 +284,10 @@
|
|
|
284
284
|
"iconName": "cai-driver",
|
|
285
285
|
"iconPath": "/assets/icons/load/cai-driver.svg"
|
|
286
286
|
},
|
|
287
|
+
{
|
|
288
|
+
"iconName": "cai-weight",
|
|
289
|
+
"iconPath": "/assets/icons/load/cai-weight.svg"
|
|
290
|
+
},
|
|
287
291
|
{
|
|
288
292
|
"iconName": "cai-people",
|
|
289
293
|
"iconPath": "/assets/icons/fuel-contact/cai-people.svg"
|
|
@@ -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
|
-
};
|
|
File without changes
|