Releases: authsignal/authsignal-browser
Releases · authsignal/authsignal-browser
v0.1.0
Breaking changes:
publishableKey
has been replaced with tenantId
.
// Before
new Authsignal({ publishableKey: 'YOUR_PUBLISHABLE_KEY' })
// Now
new Authsignal({ tenantId: 'YOUR_TENANT_ID' })
v0.0.21
Remove the animation applied to the popup that was introduced in v0.0.20
as it was performing inconsistently.
v0.0.20
When launching the Challenge UI in popup
mode, the popup will now auto resize its height based on the content inside it. As a result, we have now deprecated the height
property in the launchOptions
object as it no longer has any effect.
v0.0.19
Fixes a bug where the 'Copy' button was not working when in popup
mode.
v0.0.17
Changes
launch
now accepts a popupOptions
property when mode
is set to 'popup'. popupOptions
accepts a width
and height
that can be used to override the dimensions of the popup.
Usage
authsignal.launch(url, { mode: 'popup', { popupOptions: { width: '1200px', height: '80vh' } } })
v0.0.16 (October 4, 2022)
v0.0.15
Add attribute for allowing credentials to iframe (#19)
v0.0.14 (August 11, 2022)