Packages

sealed abstract class Scope[F[_], S, AccessType, M] extends AnyRef

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

Type Members

  1. type Access = Context.Access[F, AccessType, M]
  2. type Attr = levsha.Document.Attr[Binding]
  3. type Binding = Context.Binding[F, S, M]
  4. implicit final class ComponentDsl[CS, P, E] extends AnyRef
  5. type Document = levsha.Document[Binding]
  6. type ElementId = Context.ElementId
  7. type Event = Context.Event[F, S, M]
  8. type EventFactory[T] = (T) => Event
  9. type EventResult = F[Unit]
  10. implicit class JsCodeHelper extends AnyRef
  11. type Node = levsha.Document.Node[Binding]
  12. type Render = PartialFunction[S, levsha.Document.Node[Binding]]
  13. type Transition = (S) => S
  14. type UnscopedAccess = Context.Access[F, S, M]

Abstract Value Members

  1. abstract val accessScope: (Context.Access[F, S, M]) => Access
    Attributes
    protected

Concrete 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. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. def elementId(name: Option[String] = None): ElementId
  7. val emptyTransition: PartialFunction[S, S]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def event(name: String, stopPropagation: Boolean = false, phase: EventPhase = EventPhase.Bubbling)(effect: (Access) => F[Unit]): Event
  11. def eventUnscoped(name: String, stopPropagation: Boolean = false, phase: EventPhase = EventPhase.Bubbling)(effect: (UnscopedAccess) => F[Unit]): Event
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  18. def scope[S2](read: PartialFunction[S, S2], write: PartialFunction[(S, S2), S]): Scope[F, S, S2, M]
  19. def scope[S2](lens: Lens[S, S2]): Scope[F, S, S2, M]
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def delay(duration: FiniteDuration)(effect: (Access) => F[Unit]): Delay[F, S, M]

    Schedules the transition with delay.

    Schedules the transition with delay. For example it can be useful when you want to hide something after timeout.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.18.0) Delays often is using for hacks

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped