feat(form stuff): added in a searchable dropdown and added to new forklifts

This commit is contained in:
2025-11-20 20:21:43 -06:00
parent 8c0f67ca35
commit b23bb0db31
6 changed files with 304 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ import { DateField } from "./components/CalenderSelect";
import { CheckboxField } from "./components/CheckBox";
import { InputField } from "./components/InputField";
import { InputPasswordField } from "./components/InputPasswordField";
import { Searchable } from "./components/Searchable";
import { SelectField } from "./components/SelectField";
import { SubmitButton } from "./components/SubmitButton";
import { TextArea } from "./components/TextArea";
@@ -18,6 +19,7 @@ export const { useAppForm } = createFormHook({
CheckboxField,
DateField,
TextArea,
Searchable,
},
formComponents: { SubmitButton },
fieldContext,