FormWidget

oxygen.ui.web.component.FormWidget
See theFormWidget companion class
object FormWidget

Attributes

Companion
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
FormWidget.type

Members list

Type members

Classlikes

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
object Result

Attributes

Companion
trait
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Result.type
sealed trait Result[+Value]

Attributes

Companion
object
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Error
class Success[Value]

Types

type EitherError[+Value] = Either[ErrorType, Value]
type EitherMessage[+Value] = Either[String, Value]
type EitherMessages[+Value] = EitherNel[String, Value]
type EitherResult[+Value] = Either[FormValidationErrors, Value]
type Polymorphic[-Env, +Action, -StateGet, +StateSet <: StateGet, +Value] = FormWidget[Env, Action, StateGet, StateSet, Value]
type Stateful[-Env, +Action, State, +Value] = FormWidget[Env, Action, State, State, Value]
type Stateless[-Env, +Action, +Value] = FormWidget[Env, Action, Any, Nothing, Value]

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Extensions

Extensions

extension [Env, Action, State, Value](self: Stateful[Env, Action, State, Value])
def *>[Env2 <: Env, Action2 >: Action, Value2](that: Stateful[Env2, Action2, State, Value2]): Stateful[Env2, Action2, State, Value2]
def <*[Env2 <: Env, Action2 >: Action, Value2](that: Stateful[Env2, Action2, State, Value2]): Stateful[Env2, Action2, State, Value]
def <*>[Env2 <: Env, Action2 >: Action, Value2](that: Stateful[Env2, Action2, State, Value2])(using zip: Zip[Value, Value2]): Stateful[Env2, Action2, State, zip.Out]
def handleActionStateful: Stateful[Env, Action, State, Value]
inline def zoomOut[OuterState](inline f: OuterState => State): Stateful[Env, Action, OuterState, Value]
extension [Env, State, Value](self: Stateful[Env, Submit, State, Value])
def onSubmit: Stateful[Env, Submit, State, Value]
extension [Env, Action >: Submit, State, Value](self: Stateful[Env, Action, State, Value])
def onSubmitPartial(using ev: UnionRemoving[Action, Submit]): StatefulPS[Env, Action, State, Value, Submit, ev.Remaining]
extension [Env, Action, State, Value](self: Stateful[Env, Action, State, Option[Value]])
def required: Stateful[Env, Action, State, Value]
extension [Env, Action, State, Value](self: Stateful[Env, Action, State, Result[Value]])
def absolve: Stateful[Env, Action, State, Value]