@asdp/ferryui 0.1.22-dev.9577 → 0.1.22-dev.9582

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.mjs CHANGED
@@ -12898,7 +12898,16 @@ var CardVehicleOwnerForm = ({
12898
12898
  fontSize: tokens.fontSizeBase400,
12899
12899
  fontFamily: tokens.fontFamilyBase
12900
12900
  },
12901
- onWheel: (e) => e.target.blur()
12901
+ onWheel: (e) => e.target.blur(),
12902
+ onChange: (e) => {
12903
+ const newVal = Number(e.target.value);
12904
+ field.onChange(e);
12905
+ onUpdateCargoQuantity(
12906
+ owner.id,
12907
+ cargo.id,
12908
+ newVal
12909
+ );
12910
+ }
12902
12911
  }
12903
12912
  )
12904
12913
  }