@hotosm/hanko-auth 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hanko-auth.esm.js +125 -128
- package/dist/hanko-auth.iife.js +6 -6
- package/dist/hanko-auth.umd.js +5 -5
- package/package.json +1 -1
- package/src/hanko-auth.ts +0 -2
package/package.json
CHANGED
package/src/hanko-auth.ts
CHANGED
|
@@ -70,8 +70,6 @@ export class HankoAuth extends LitElement {
|
|
|
70
70
|
@property({ type: String, attribute: "app-id" }) appId = "";
|
|
71
71
|
// Custom login page URL (for standalone mode - overrides ${hankoUrl}/app)
|
|
72
72
|
@property({ type: String, attribute: "login-url" }) loginUrl = "";
|
|
73
|
-
// Custom login page URL (for standalone mode - overrides ${hankoUrl}/app)
|
|
74
|
-
@property({ type: String, attribute: "login-url" }) loginUrl = "";
|
|
75
73
|
|
|
76
74
|
// Internal state
|
|
77
75
|
@state() private user: UserState | null = null;
|