Legacy components
Removed in v1
These are no longer in the library. The migration guide has a before/after for each.
Input— useTextInputfor text-like inputs (text,number,email,password,date),Textarea,Select, andCheckboxfor the other type modes the originalInputaccepted.TextInputand friends share a labeling contract (label,description,error,required) and a sized/variant API thatInputnever had.Autocomplete— useComboboxfor single-select andMultiSelectfor multi-select. Both use the shared input primitives, render the same label/description/error contract as the rest of the v1 input family, and have a smaller, more predictable API surface.FormControl type="autocomplete"— usetype="combobox", or a standaloneCombobox, which exposes the full set of slots and props without the wrapper layer. Removing this one is silent: the type falls through to a plain text input rather than failing.TextEditor,TextEditorBubbleMenu,TextEditorFixedMenu,TextEditorFloatingMenu,TextEditorContent,createEditorButton— useEditorand its building blocks from thefrappe-ui/editorsubpath. See the Editor migration section for the full before/after.