How to use @react-spring/shared - 4 common examples

To help you get started, we’ve selected a few @react-spring/shared examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github react-spring / react-spring / packages / animated / src / AnimatedString.ts View on Github external
reset(isActive?: boolean, goal?: string) {
    if (goal) {
      this._toString = createInterpolator({
        output: [this.getValue(), goal],
      })
    }
    this._value = 0
    super.reset(isActive)
  }
}
github react-spring / react-spring / packages / animated / src / AnimatedString.ts View on Github external
constructor(from: string, to: string) {
    super(0)
    this._toString = createInterpolator({ output: [from, to] })
  }
github react-spring / react-spring / packages / animated / src / AnimatedString.ts View on Github external
static create(from: T, to: T | null = from): AnimatedValue {
    if (is.str(from) && is.str(to)) {
      return new AnimatedString(from, to) as any
    }
    throw TypeError('Expected "from" and "to" to be strings')
  }
github react-spring / react-spring / packages / animated / src / AnimatedString.ts View on Github external
setValue(value: Value) {
    if (!is.num(value)) {
      this._string = value
      this._value = 1
    } else if (super.setValue(value)) {
      this._string = null
    } else {
      return false
    }
    return true
  }

@react-spring/shared

Globals and shared modules

MIT
Latest version published 10 months ago

Package Health Score

85 / 100
Full package analysis