@asdp/ferryui 0.1.22-dev.10424 → 0.1.22-dev.10530
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/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1061,6 +1061,7 @@ interface HarborItem {
|
|
|
1061
1061
|
rowNum: number;
|
|
1062
1062
|
isFavorite: boolean;
|
|
1063
1063
|
routeId?: number;
|
|
1064
|
+
isRoundTripAvailable?: boolean;
|
|
1064
1065
|
}
|
|
1065
1066
|
/**
|
|
1066
1067
|
* Labels for ModalSearchHarbor component
|
|
@@ -2952,7 +2953,8 @@ interface CargoItem {
|
|
|
2952
2953
|
id: number;
|
|
2953
2954
|
commodity: string;
|
|
2954
2955
|
loadType: string;
|
|
2955
|
-
|
|
2956
|
+
cargoWeight: number;
|
|
2957
|
+
quantity: number;
|
|
2956
2958
|
industryType: string;
|
|
2957
2959
|
cargoCategory: string;
|
|
2958
2960
|
}
|
|
@@ -2967,7 +2969,6 @@ interface VehicleOwner {
|
|
|
2967
2969
|
cargoReceiverEntityType: MANIFEST_ENTITY_TYPE;
|
|
2968
2970
|
cargoReceiverEntity: string;
|
|
2969
2971
|
cargoReceiverEntityOther: string;
|
|
2970
|
-
cargoWeight: string;
|
|
2971
2972
|
estimatedWeight: string;
|
|
2972
2973
|
originCity: string;
|
|
2973
2974
|
destinationCity: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1061,6 +1061,7 @@ interface HarborItem {
|
|
|
1061
1061
|
rowNum: number;
|
|
1062
1062
|
isFavorite: boolean;
|
|
1063
1063
|
routeId?: number;
|
|
1064
|
+
isRoundTripAvailable?: boolean;
|
|
1064
1065
|
}
|
|
1065
1066
|
/**
|
|
1066
1067
|
* Labels for ModalSearchHarbor component
|
|
@@ -2952,7 +2953,8 @@ interface CargoItem {
|
|
|
2952
2953
|
id: number;
|
|
2953
2954
|
commodity: string;
|
|
2954
2955
|
loadType: string;
|
|
2955
|
-
|
|
2956
|
+
cargoWeight: number;
|
|
2957
|
+
quantity: number;
|
|
2956
2958
|
industryType: string;
|
|
2957
2959
|
cargoCategory: string;
|
|
2958
2960
|
}
|
|
@@ -2967,7 +2969,6 @@ interface VehicleOwner {
|
|
|
2967
2969
|
cargoReceiverEntityType: MANIFEST_ENTITY_TYPE;
|
|
2968
2970
|
cargoReceiverEntity: string;
|
|
2969
2971
|
cargoReceiverEntityOther: string;
|
|
2970
|
-
cargoWeight: string;
|
|
2971
2972
|
estimatedWeight: string;
|
|
2972
2973
|
originCity: string;
|
|
2973
2974
|
destinationCity: string;
|
package/dist/index.js
CHANGED
|
@@ -13325,7 +13325,9 @@ var CardVehicleOwnerForm = ({
|
|
|
13325
13325
|
}
|
|
13326
13326
|
const isLoadTypeOther = _loadTypeOptions.find(
|
|
13327
13327
|
(lt) => lt.value.toString() === String(watchLoadType)
|
|
13328
|
-
)?.label.startsWith(
|
|
13328
|
+
)?.label.startsWith(
|
|
13329
|
+
HARDCODED_NAME.LOAD_TYPE__LAINNYA
|
|
13330
|
+
);
|
|
13329
13331
|
const isIndustryTypeOther = industryOptions?.find(
|
|
13330
13332
|
(it) => it.value.toString() === String(watchIndustryType)
|
|
13331
13333
|
)?.label === HARDCODED_NAME.INDUSTRY_TYPE__LAINNYA;
|