@asdp/ferryui 0.1.22-dev.10508 → 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 +2 -2
- package/dist/index.d.ts +2 -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
|
@@ -2953,7 +2953,8 @@ interface CargoItem {
|
|
|
2953
2953
|
id: number;
|
|
2954
2954
|
commodity: string;
|
|
2955
2955
|
loadType: string;
|
|
2956
|
-
|
|
2956
|
+
cargoWeight: number;
|
|
2957
|
+
quantity: number;
|
|
2957
2958
|
industryType: string;
|
|
2958
2959
|
cargoCategory: string;
|
|
2959
2960
|
}
|
|
@@ -2968,7 +2969,6 @@ interface VehicleOwner {
|
|
|
2968
2969
|
cargoReceiverEntityType: MANIFEST_ENTITY_TYPE;
|
|
2969
2970
|
cargoReceiverEntity: string;
|
|
2970
2971
|
cargoReceiverEntityOther: string;
|
|
2971
|
-
cargoWeight: string;
|
|
2972
2972
|
estimatedWeight: string;
|
|
2973
2973
|
originCity: string;
|
|
2974
2974
|
destinationCity: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2953,7 +2953,8 @@ interface CargoItem {
|
|
|
2953
2953
|
id: number;
|
|
2954
2954
|
commodity: string;
|
|
2955
2955
|
loadType: string;
|
|
2956
|
-
|
|
2956
|
+
cargoWeight: number;
|
|
2957
|
+
quantity: number;
|
|
2957
2958
|
industryType: string;
|
|
2958
2959
|
cargoCategory: string;
|
|
2959
2960
|
}
|
|
@@ -2968,7 +2969,6 @@ interface VehicleOwner {
|
|
|
2968
2969
|
cargoReceiverEntityType: MANIFEST_ENTITY_TYPE;
|
|
2969
2970
|
cargoReceiverEntity: string;
|
|
2970
2971
|
cargoReceiverEntityOther: string;
|
|
2971
|
-
cargoWeight: string;
|
|
2972
2972
|
estimatedWeight: string;
|
|
2973
2973
|
originCity: string;
|
|
2974
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;
|