This repository has been archived by the owner on Mar 27, 2021. It is now read-only.
v2.0.0
New Features
- Support for the
IbanElement
andIdealBankElement
.
Breaking Changes
-
stripe.createSource
now requires the Source type be passed in.For example, if you previously called
stripe.createSource({ name: 'Jenny Rosen' })
, you now must usestripe.createSource({ type: 'card', name: 'Jenny Rosen' })
. -
elementRef
is no longer a valid prop you can pass to an<Element />
. UseonReady
instead to get a reference to the underlying Element instance.