FormControl

io.github.nafg.scalajs.facades.mui.base.FormControl
object FormControl extends Simple[VdomNode | Any => Any]

View original docs online: https://mui.com/api/form-control/

Provides context such as filled/focused/error/required for form inputs. Relying on the context provides high flexibility and ensures that the state always stays consistent across the children of the FormControl. This context is used by the following components:

  • FormLabel
  • FormHelperText
  • Input
  • InputLabel

You can find one composition example below and more going to the demos.

<FormControl>
 <InputLabel htmlFor="my-input">Email address</InputLabel>
 <Input id="my-input" aria-describedby="my-helper-text" />
 <FormHelperText id="my-helper-text">We'll never share your email.</FormHelperText>
</FormControl>

⚠️ Only one Input can be used within a FormControl because it create visual inconsistencies. For instance, only one input can be focused at the same time, the state shouldn't be shared.

Demos:

API:

Attributes

Graph
Supertypes
trait Simple[VdomNode | Any => Any]
trait ChildrenOf[VdomNode | Any => Any]
trait FacadeModule
trait FacadeModuleBase
class Object
trait Matchable
class Any
Show all
Self type

Members list

Type members

Classlikes

class Props extends WithChildren[VdomNode | Any => Any]

Attributes

Supertypes
trait WithChildren[VdomNode | Any => Any]
trait PropTypes
class Object
trait Matchable
class Any
object raw extends Object

Attributes

Supertypes
class Object
trait Any
class Object
trait Matchable
class Any
Self type
raw.type

Inherited classlikes

class ApplyChildren(settings: Setting*)

Attributes

Inherited from:
ChildrenOf
Supertypes
class Object
trait Matchable
class Any

Inherited types

type Setting = () => Props

Attributes

Inherited from:
FacadeModule

Value members

Concrete methods

def asElementType: ElementType
override def mkProps: Props

Attributes

Definition Classes
FacadeModule

Inherited methods

def Settings(settings: Setting*): Seq[Setting]

Attributes

Inherited from:
FacadeModule
def apply(settings: Setting*): ApplyChildren

Attributes

Inherited from:
Simple
def factory: Factory[Props]

Attributes

Inherited from:
FacadeModule

Inherited fields

lazy val facade: Facade

Attributes

Inherited from:
FacadeModuleBase