Packages

object input extends TagT[InputProps]

Can use either input(props)(children) or input.checkbox(props)(children).

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. input
  2. TagT
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(children: ReactNode*): ReactDOMElement

    Only children, no props.

    Only children, no props.

    Definition Classes
    TagT
  2. def apply(attrs: InputProps)(children: ReactNode*): ReactDOMElement

    Properties and and maybe children.

    Properties and and maybe children.

    Definition Classes
    TagT
  3. lazy val button: TagT[InputProps]

    Not supported?

  4. lazy val checkbox: TagT[InputProps]

    Not supported?

  5. lazy val color: TagT[InputProps]
  6. lazy val date: TagT[InputProps]
  7. lazy val datetime: TagT[InputProps]
  8. lazy val datetimeLocal: TagT[InputProps]
  9. lazy val email: TagT[InputProps]
  10. lazy val file: TagT[InputProps]
  11. lazy val hidden: TagT[InputProps]

    Not supported?

  12. lazy val image: TagT[InputProps]

    Not supported?

  13. def merge(objs: |[InputProps, Dynamic]*): TagT[InputProps]

    Merge attributes of type P or dynamic into this tag.

    Merge attributes of type P or dynamic into this tag. By adding dynamic literal, you are not type safe. Escape hatch! This is more convenient then calling react.merge or react.mergeJSObjects on the actual properties themselves.

    Definition Classes
    TagT
  14. lazy val month: TagT[InputProps]
  15. lazy val number: TagT[InputProps]
  16. lazy val password: TagT[InputProps]
  17. lazy val radio: TagT[InputProps]

    Not supported?

  18. lazy val range: TagT[InputProps]
  19. lazy val reset: TagT[InputProps]

    Not supported?

  20. lazy val search: TagT[InputProps]
  21. lazy val submit: TagT[InputProps]

    Not supported?

  22. lazy val tel: TagT[InputProps]
  23. lazy val text: TagT[InputProps]
  24. lazy val time: TagT[InputProps]
  25. lazy val url: TagT[InputProps]
  26. lazy val week: TagT[InputProps]
  27. def withProps(attrs: InputProps)(children: ReactNode*): ReactDOMElement

    Create an element by explicitly indicating the props.

    Create an element by explicitly indicating the props.

    Definition Classes
    TagT
  28. def withType(type: String): TagT[InputProps]