fui-material 2.6.5 → 2.6.6

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.
@@ -3432,6 +3432,7 @@ const FSearchableSelect = forwardRef(
3432
3432
  disabled: disabled2,
3433
3433
  onKeyDown: restOnKeyDown,
3434
3434
  onFocus: restOnFocus,
3435
+ onChangeTerm,
3435
3436
  ...restProps
3436
3437
  }, ref) => {
3437
3438
  const options = useMemo(() => {
@@ -3605,6 +3606,7 @@ const FSearchableSelect = forwardRef(
3605
3606
  onChange: (e) => {
3606
3607
  const val = e.target.value;
3607
3608
  setSearchQuery(val);
3609
+ if (onChangeTerm) onChangeTerm(e);
3608
3610
  if (!isOpen) setIsOpen(true);
3609
3611
  if (allowCreate) {
3610
3612
  triggerChange(val);