feat: add reusable AsyncSelect and ObjectSelect components with infinite scroll hook support

This commit is contained in:
Firman Ramdhani
2026-06-16 01:23:36 +07:00
parent 19066dde89
commit 195928d56a
14 changed files with 1706 additions and 80 deletions
+2
View File
@@ -683,6 +683,8 @@ export const FieldDatePicker = withRHF<DatePickerInputProps>(
| `FieldRating` | `Rating` | Range | Star rating |
| `FieldColorInput` | `ColorInput` | Color | Color picker with text input |
| `FieldColorPicker` | `ColorPicker` | Color | Color picker only (uses `Input.Wrapper`) |
| `FieldObjectSelect` | `Select / MultiSelect` | Selection | Stores full `T` or `T[]` object in RHF instead of string ID |
| `FieldAsyncSelect` | `Select / MultiSelect` | Selection | Paginated infinite scroll select mapping API responses to RHF objects |
| `FieldFileInput` | `FileInput` | File | File upload input |
---