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.
- package/dist/f-ui-kit.es.js +2 -0
- package/dist/f-ui-kit.es.js.map +1 -1
- package/dist/f-ui-kit.umd.js +1 -1
- package/dist/f-ui-kit.umd.js.map +1 -1
- package/dist/types/material/FSearchableSelect/FSearchableSelect.d.ts +5 -0
- package/dist/types/material/FTooltip2/FTooltip2.d.ts +8 -0
- package/package.json +1 -1
package/dist/f-ui-kit.es.js
CHANGED
|
@@ -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);
|