Class Responsive<T>

Type Parameters

Constructors

Properties

_destructors: () => void[] = []

Destroyable actions

_initProps: TResponsiveProps<T>

Initial props

_isDestroyed: boolean = false

Tracks whether the instance has been destroyed

_onChange?: (props: TResponsiveProps<T>) => void
_prevBreakpoints: string = '[]'

Previously active breakpoints

Current props

_rules: TResponsiveRule<T>[]
_source: T

Accessors

Methods

  • Destroy the instance and clean up resources.

    The instance is destroyed automatically when it is used to mutate Module's props.

    Returns void