object Form

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Form
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Default[A](form: Form[A], defaultValue: A) extends Form[A] with Product with Serializable
  2. final case class FlatZip[A, B](form: Form[A], f: (A) => Form[B]) extends Form[(A, B)] with Product with Serializable
  3. final case class FormValidation[A](predicate: (A) => Boolean, error: String) extends Product with Serializable
  4. type FormVar[A] = ZVar[A, Validation[String, A]]
  5. final case class Input[A](label: String, placeholder: String, className: String, helpText: String, validations: List[FormValidation[A]], formValue: (InputConfig[A]) => FormValue[A]) extends Form[A] with Product with Serializable
  6. case class InputConfig[A](label: String, placeholder: String, className: String, helpText: String, validations: List[FormValidation[A]], inputType: String = "text") extends Product with Serializable
  7. final case class Labeled[A](form: Form[A], label: String) extends Form[A] with Product with Serializable
  8. final case class Many[A](form: Form[A]) extends Form[List[A]] with Product with Serializable
  9. final case class Succeed[A](value: A) extends Form[A] with Product with Serializable
  10. final case class ValidatedForm[A](form: Form[A], validations: ::[FormValidation[A]]) extends Form[A] with Product with Serializable
  11. final case class XFlatMap[A, B](form: Form[A], f: (A) => Form[B], g: (B) => A) extends Form[B] with Product with Serializable
  12. final case class XMap[A, B](form: Form[A], f: (A) => B, g: (B) => A) extends Form[B] with Product with Serializable
  13. final case class Zip[A, B](left: Form[A], right: Form[B]) extends Form[(A, B)] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. implicit val boolean: Form[Boolean]
  6. def build[A](form: Form[A]): FormValue[A]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. val dollars: Form[Double]
  9. implicit val double: Form[Double]
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. implicit val int: Form[Int]
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def select[A](source: com.raquo.laminar.api.Laminar.Source[List[A]])(renderOption: (A) => String): Form[Option[A]]
  21. def select[A](options: Seq[A])(renderOption: (A) => String): Form[A]
  22. implicit val string: Form[String]
  23. def succeed[A](value: A): Form[A]
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. object FormVar
  30. object Input extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped