@asdp/ferryui 0.1.22-dev.10508 → 0.1.22-dev.10532

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 CHANGED
@@ -2953,7 +2953,8 @@ interface CargoItem {
2953
2953
  id: number;
2954
2954
  commodity: string;
2955
2955
  loadType: string;
2956
- quantity: number | string;
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
- quantity: number | string;
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
@@ -2552,7 +2552,7 @@ var CardServiceMenu = ({
2552
2552
  ]
2553
2553
  }
2554
2554
  ) }, `skeleton-${index}`)) : displayItems.map((item, index) => {
2555
- return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsxs(
2555
+ return /* @__PURE__ */ jsxRuntime.jsx(React__default.default.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsxs(
2556
2556
  reactComponents.Button,
2557
2557
  {
2558
2558
  className: getMenuItemClass(item.id),
@@ -2578,9 +2578,8 @@ var CardServiceMenu = ({
2578
2578
  )
2579
2579
  ] })
2580
2580
  ]
2581
- },
2582
- index
2583
- ) });
2581
+ }
2582
+ ) }, item.id ?? index);
2584
2583
  }),
2585
2584
  !isLoading && isOverflow && /* @__PURE__ */ jsxRuntime.jsxs(
2586
2585
  reactComponents.Button,
@@ -13325,7 +13324,9 @@ var CardVehicleOwnerForm = ({
13325
13324
  }
13326
13325
  const isLoadTypeOther = _loadTypeOptions.find(
13327
13326
  (lt) => lt.value.toString() === String(watchLoadType)
13328
- )?.label.startsWith(HARDCODED_NAME.LOAD_TYPE__LAINNYA);
13327
+ )?.label.startsWith(
13328
+ HARDCODED_NAME.LOAD_TYPE__LAINNYA
13329
+ );
13329
13330
  const isIndustryTypeOther = industryOptions?.find(
13330
13331
  (it) => it.value.toString() === String(watchIndustryType)
13331
13332
  )?.label === HARDCODED_NAME.INDUSTRY_TYPE__LAINNYA;