You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {HTMLElement} [config.container] - The HTML element in which the Wonderwall should be rendered in. default = overlay
203
203
* @param {boolean} [config.inlineRender] - Renders Wonderwall directly in container instead of as overlay. default = false
204
+
* @param {boolean} [config.reloadOnNewAuth] - reload page if true after a new login or registration / no reload on already logged in user, default = false
205
+
204
206
* @param {Object} config.props - The props which will be passed to the Wonderwall web component.
205
207
* @param {String} config.props.template - valid choices are "register" and "login"
206
208
* @param {String} config.props.variant - variant of the brand that should be shown e.g bild or welt
207
209
* @param {boolean} [config.props.abortable] - user can leave auth screen if true (not yet implemented)
208
-
* @param {boolean} [config.props.reloadOnNewAuth] - reload page if true after a new login or registration / no reload on already logged in user, default = false
209
210
* @param {String} [config.props.loginHeadline]
210
211
* @param {String} [config.props.registerHeadline]
211
212
* @param {String} [config.props.loginCta]
@@ -249,7 +250,6 @@ export type WonderwallProps = {
249
250
template: "login"|"register";
250
251
variant: WonderwallVariant;
251
252
abortable?: boolean;
252
-
reloadOnNewAuth?: boolean;
253
253
loginHeadline?: string;
254
254
registerHeadline?: string;
255
255
loginCta?: string;
@@ -259,6 +259,7 @@ export type WonderwallProps = {
0 commit comments