@ctx-core/auth0-ui 10.0.119 → 10.0.123
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/.swcrc +10 -0
- package/CHANGELOG.md +40 -0
- package/dist/auth0_ui_Ctx.js +2 -1
- package/dist/auth0_ui_Ctx.js.map +1 -1
- package/dist/auth0_ui_ctx_I.generated.js +4 -1
- package/dist/auth0_ui_ctx_I.generated.js.map +1 -1
- package/dist/auth0_ui_ctx_key.js +1 -0
- package/dist/auth0_ui_ctx_key.js.map +1 -1
- package/dist/auth_script_html_.js +2 -1
- package/dist/auth_script_html_.js.map +1 -1
- package/dist/getContext_auth0_ui_ctx.js +1 -0
- package/dist/getContext_auth0_ui_ctx.js.map +1 -1
- package/dist/{index.d.ts → index.browser.js} +2 -1
- package/dist/index.browser.js.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/node/index.js +1 -0
- package/dist/node/index.js.map +1 -1
- package/dist/node/jwks_cert__b.js +4 -2
- package/dist/node/jwks_cert__b.js.map +1 -1
- package/dist/node/jwks_x5c__b.js +5 -4
- package/dist/node/jwks_x5c__b.js.map +1 -1
- package/dist/node/jwt_token_decoded__b.js +2 -1
- package/dist/node/jwt_token_decoded__b.js.map +1 -1
- package/dist/node/koa_jwt_token_decoded__b.js +4 -2
- package/dist/node/koa_jwt_token_decoded__b.js.map +1 -1
- package/dist/node/verify_jwt_email__b.js +2 -1
- package/dist/node/verify_jwt_email__b.js.map +1 -1
- package/dist/node/verify_jwt_user_id__b.js +2 -1
- package/dist/node/verify_jwt_user_id__b.js.map +1 -1
- package/dist/ui/Auth0.svelte +169 -0
- package/dist/ui/Auth0_Change_Password_Form.svelte +99 -0
- package/dist/ui/Auth0_Dialog_Close.svelte +10 -0
- package/dist/ui/Auth0_Forgot_Password_Check_Email_Form.svelte +10 -0
- package/dist/ui/Auth0_Forgot_Password_Form.svelte +68 -0
- package/dist/ui/Auth0_Loggedin_If.svelte +14 -0
- package/dist/ui/Auth0_Login_Form.svelte +89 -0
- package/dist/ui/Auth0_Signup_Form.svelte +121 -0
- package/dist/ui/Auth0_c.js +53 -37
- package/dist/ui/Auth0_c.js.map +1 -1
- package/dist/ui/index.js +17 -9
- package/dist/ui/index.js.map +1 -1
- package/package.json +20 -21
- package/src/index.ts +1 -0
- package/src/ui/index.ts +8 -12
- package/COMMIT_EDITMSG +0 -1
- package/dist/auth0_ui_Ctx.d.ts +0 -9
- package/dist/auth0_ui_ctx_I.generated.d.ts +0 -14
- package/dist/auth0_ui_ctx_key.d.ts +0 -1
- package/dist/auth_script_html_.d.ts +0 -2
- package/dist/browser/auth0_ui_ctx_key.d.ts +0 -1
- package/dist/browser/auth0_ui_ctx_key.js +0 -2
- package/dist/browser/auth0_ui_ctx_key.js.map +0 -1
- package/dist/browser/auth_script_html_.d.ts +0 -2
- package/dist/browser/auth_script_html_.js +0 -34
- package/dist/browser/auth_script_html_.js.map +0 -1
- package/dist/browser/getContext_auth0_ui_ctx.d.ts +0 -1
- package/dist/browser/getContext_auth0_ui_ctx.js +0 -6
- package/dist/browser/getContext_auth0_ui_ctx.js.map +0 -1
- package/dist/browser/index.d.ts +0 -3
- package/dist/browser/index.js +0 -4
- package/dist/browser/index.js.map +0 -1
- package/dist/getContext_auth0_ui_ctx.d.ts +0 -1
- package/dist/index.cjs +0 -1
- package/dist/node/index.d.ts +0 -6
- package/dist/node/jwks_cert__b.d.ts +0 -6
- package/dist/node/jwks_x5c__b.d.ts +0 -6
- package/dist/node/jwt_token_decoded__b.d.ts +0 -6
- package/dist/node/koa_jwt_token_decoded__b.d.ts +0 -7
- package/dist/node/verify_jwt_email__b.d.ts +0 -6
- package/dist/node/verify_jwt_user_id__b.d.ts +0 -6
- package/dist/ui/Auth0_c.d.ts +0 -55
- package/dist/ui/index.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/auth0-ui",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.123",
|
|
4
4
|
"description": "ctx-core auth0 ui component & express endpoints",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"license": "Apache-2.0",
|
|
18
18
|
"author": "Brian Takita",
|
|
19
19
|
"type": "module",
|
|
20
|
-
"main": "./dist/index.
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
21
|
"module": "./dist/index.js",
|
|
22
|
-
"types": "./
|
|
22
|
+
"types": "./src/index.ts",
|
|
23
23
|
"exports": {
|
|
24
24
|
".": {
|
|
25
25
|
"require": "./dist/index.cjs",
|
|
@@ -29,23 +29,24 @@
|
|
|
29
29
|
},
|
|
30
30
|
"browser": "./dist/index.browser.js",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@ctx-core/auth0": "^25.0.
|
|
33
|
-
"@ctx-core/auth0-management": "^6.0.
|
|
34
|
-
"@ctx-core/dialog": "^15.0.
|
|
35
|
-
"@ctx-core/dom": "^11.0.
|
|
36
|
-
"@ctx-core/error": "^11.0.
|
|
37
|
-
"@ctx-core/fetch": "^11.0.
|
|
38
|
-
"@ctx-core/jwt": "^10.0.
|
|
39
|
-
"@ctx-core/object": "^21.0.
|
|
40
|
-
"@ctx-core/store": "^27.0.
|
|
41
|
-
"esm": "^3.2.25",
|
|
32
|
+
"@ctx-core/auth0": "^25.0.103",
|
|
33
|
+
"@ctx-core/auth0-management": "^6.0.101",
|
|
34
|
+
"@ctx-core/dialog": "^15.0.78",
|
|
35
|
+
"@ctx-core/dom": "^11.0.30",
|
|
36
|
+
"@ctx-core/error": "^11.0.18",
|
|
37
|
+
"@ctx-core/fetch": "^11.0.80",
|
|
38
|
+
"@ctx-core/jwt": "^10.0.27",
|
|
39
|
+
"@ctx-core/object": "^21.0.22",
|
|
40
|
+
"@ctx-core/store": "^27.0.36",
|
|
42
41
|
"jsonwebtoken": "^8.5.1",
|
|
43
42
|
"svelte": "3.44.1"
|
|
44
43
|
},
|
|
45
44
|
"devDependencies": {
|
|
46
45
|
"@ctx-core/ctx-core-package-tools": "^8.0.77",
|
|
47
|
-
"@ctx-core/dev-tools": "^7.
|
|
48
|
-
"@ctx-core/function": "^20.2.
|
|
46
|
+
"@ctx-core/dev-tools": "^7.2.0",
|
|
47
|
+
"@ctx-core/function": "^20.2.3",
|
|
48
|
+
"@swc/cli": "^0.1.51",
|
|
49
|
+
"@swc/core": "^1.2.107",
|
|
49
50
|
"@types/jsonwebtoken": "^8.5.5",
|
|
50
51
|
"typescript": "^4.4.4"
|
|
51
52
|
},
|
|
@@ -54,12 +55,10 @@
|
|
|
54
55
|
"cache": "~/.npm"
|
|
55
56
|
},
|
|
56
57
|
"scripts": {
|
|
57
|
-
"build": "npm run
|
|
58
|
-
"clean": "rm -
|
|
59
|
-
"compile": "
|
|
60
|
-
"copy-mjs": "cd dist && echo \"module.exports = (async () => import('./index.js'))()\" > index.cjs",
|
|
61
|
-
"copy-components": "cd src && find . | grep \\.svelte$ | awk '{print \"mkdir -p dirname \"$1\" && cp -f \"$1\" ../dist/\"$1}'",
|
|
58
|
+
"build": "npm run generate_ctx_I_file && npm run compile",
|
|
59
|
+
"clean": "rm -rf dist",
|
|
60
|
+
"compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
|
|
62
61
|
"exec": "$@",
|
|
63
|
-
"generate_ctx_I_file": "./node_modules/.bin/generate_ctx_I_file"
|
|
62
|
+
"generate_ctx_I_file": "swc $(./node_modules/.bin/generate_ctx_I_file | tail -n1) --out-dir dist --source-maps --config-file .swcrc"
|
|
64
63
|
}
|
|
65
64
|
}
|
package/src/index.ts
CHANGED
package/src/ui/index.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import 'svelte'
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export {
|
|
11
|
-
Auth0, Auth0_Dialog_Close, Auth0_Change_Password_Form, Auth0_Forgot_Password_Check_Email_Form,
|
|
12
|
-
Auth0_Forgot_Password_Form, Auth0_Login_Form, Auth0_Signup_Form, Auth0_Loggedin_If
|
|
13
|
-
}
|
|
2
|
+
export * as Auth0 from './Auth0.svelte'
|
|
3
|
+
export * as Auth0_Dialog_Close from './Auth0_Dialog_Close.svelte'
|
|
4
|
+
export * as Auth0_Change_Password_Form from './Auth0_Change_Password_Form.svelte'
|
|
5
|
+
export * as Auth0_Forgot_Password_Check_Email_Form from './Auth0_Forgot_Password_Check_Email_Form.svelte'
|
|
6
|
+
export * as Auth0_Forgot_Password_Form from './Auth0_Forgot_Password_Form.svelte'
|
|
7
|
+
export * as Auth0_Login_Form from './Auth0_Login_Form.svelte'
|
|
8
|
+
export * as Auth0_Signup_Form from './Auth0_Signup_Form.svelte'
|
|
9
|
+
export * as Auth0_Loggedin_If from './Auth0_Loggedin_If.svelte'
|
package/COMMIT_EDITMSG
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
package/dist/auth0_ui_Ctx.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { auth0_body__T, auth0_Ctx, password_realm_body__T } from '@ctx-core/auth0';
|
|
2
|
-
import type { auth0_ui_ctx_I } from './auth0_ui_ctx_I.generated.js';
|
|
3
|
-
import type { login_data_password_realm_body_I, signup_data_password_realm_body_I } from './ui/Auth0_c.js';
|
|
4
|
-
export interface auth0_ui_Ctx extends auth0_ui_ctx_I, auth0_Ctx {
|
|
5
|
-
login_auth0_body_: auth0_body__T<login_data_password_realm_body_I>;
|
|
6
|
-
login_password_realm_body_: password_realm_body__T<login_data_password_realm_body_I>;
|
|
7
|
-
signup_auth0_body_: auth0_body__T<signup_data_password_realm_body_I>;
|
|
8
|
-
signup_password_realm_body_fn: password_realm_body__T<signup_data_password_realm_body_I>;
|
|
9
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { jwks_cert__T } from './node/jwks_cert__b.js';
|
|
2
|
-
import type { jwks_x5c__T } from './node/jwks_x5c__b.js';
|
|
3
|
-
import type { jwt_token_decoded__T } from './node/jwt_token_decoded__b.js';
|
|
4
|
-
import type { koa_jwt_token_decoded__T } from './node/koa_jwt_token_decoded__b.js';
|
|
5
|
-
import type { verify_jwt_email__T } from './node/verify_jwt_email__b.js';
|
|
6
|
-
import type { verify_jwt_user_id__T } from './node/verify_jwt_user_id__b.js';
|
|
7
|
-
export interface auth0_ui_ctx_I {
|
|
8
|
-
jwks_cert_?: jwks_cert__T;
|
|
9
|
-
jwks_x5c_?: jwks_x5c__T;
|
|
10
|
-
jwt_token_decoded_?: jwt_token_decoded__T;
|
|
11
|
-
koa_jwt_token_decoded_?: koa_jwt_token_decoded__T;
|
|
12
|
-
verify_jwt_email_?: verify_jwt_email__T;
|
|
13
|
-
verify_jwt_user_id_?: verify_jwt_user_id__T;
|
|
14
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const auth0_ui_ctx_key: unique symbol;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const auth0_ui_ctx_key: unique symbol;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"auth0_ui_ctx_key.js","sourceRoot":"","sources":["../../browser/auth0_ui_ctx_key.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,MAAM,CAAC,cAAc,CAAC,CAAA"}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export function auth_script_html_() {
|
|
2
|
-
return `
|
|
3
|
-
<script>
|
|
4
|
-
(function() {
|
|
5
|
-
var location = window.location
|
|
6
|
-
var search = location.search
|
|
7
|
-
var search_values = _values(search.substr(1))
|
|
8
|
-
var hash = location.hash
|
|
9
|
-
var auth0_token = _values(hash.substr(1))
|
|
10
|
-
var auth0_token_json = JSON.stringify(auth0_token)
|
|
11
|
-
var redirect_url =
|
|
12
|
-
search_values
|
|
13
|
-
&& search_values.redirect_url
|
|
14
|
-
localStorage.setItem('auth0_token_json', auth0_token_json)
|
|
15
|
-
if (redirect_url) {
|
|
16
|
-
location.href = redirect_url
|
|
17
|
-
}
|
|
18
|
-
function _values(string) {
|
|
19
|
-
var segments = string.split('&')
|
|
20
|
-
var values = {}
|
|
21
|
-
for (var i=0; i < segments.length; i++) {
|
|
22
|
-
var pair = segments[i].split('=')
|
|
23
|
-
var key = decodeURIComponent(pair[0])
|
|
24
|
-
var value = decodeURIComponent(pair[1])
|
|
25
|
-
values[key] = value
|
|
26
|
-
}
|
|
27
|
-
return values
|
|
28
|
-
}
|
|
29
|
-
})()
|
|
30
|
-
</script>
|
|
31
|
-
`.trim();
|
|
32
|
-
}
|
|
33
|
-
export { auth_script_html_ as _auth_script_html, auth_script_html_ as _html__script__auth, };
|
|
34
|
-
//# sourceMappingURL=../../src/dist/browser/auth_script_html_.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"auth_script_html_.js","sourceRoot":"","sources":["../../browser/auth_script_html_.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,iBAAiB;IAChC,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BN,CAAC,IAAI,EAAE,CAAA;AACT,CAAC;AACD,OAAO,EACN,iBAAiB,IAAI,iBAAiB,EACtC,iBAAiB,IAAI,mBAAmB,GACxC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function getContext_auth0_ui_ctx(): unknown;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getContext_auth0_ui_ctx.js","sourceRoot":"","sources":["../../browser/getContext_auth0_ui_ctx.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAA;AACnC,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AACxD,MAAM,UAAU,uBAAuB;IACrC,OAAO,UAAU,CAAC,gBAAgB,CAAC,CAAA;AACrC,CAAC"}
|
package/dist/browser/index.d.ts
DELETED
package/dist/browser/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../browser/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA;AACtC,cAAc,uBAAuB,CAAA;AACrC,cAAc,8BAA8B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function getContext_auth0_ui_ctx(): unknown;
|
package/dist/index.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = (async () => import('./index.js'))()
|
package/dist/node/index.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { B } from '@ctx-core/object';
|
|
2
|
-
import type { auth0_ui_Ctx } from '../auth0_ui_Ctx.js';
|
|
3
|
-
declare const key = "jwks_cert_";
|
|
4
|
-
export declare const jwks_cert__b: B<auth0_ui_Ctx, typeof key>;
|
|
5
|
-
export declare type jwks_cert__T = () => Promise<string>;
|
|
6
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { B } from '@ctx-core/object';
|
|
2
|
-
import type { auth0_ui_Ctx } from '../auth0_ui_Ctx.js';
|
|
3
|
-
declare const key = "jwt_token_decoded_";
|
|
4
|
-
export declare const jwt_token_decoded__b: B<auth0_ui_Ctx, typeof key>;
|
|
5
|
-
export declare type jwt_token_decoded__T = (jwt_token: string) => Promise<object | string>;
|
|
6
|
-
export {};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { B } from '@ctx-core/object';
|
|
2
|
-
import type { jwt_token_decoded_I } from '@ctx-core/auth0';
|
|
3
|
-
import type { auth0_ui_Ctx } from '../auth0_ui_Ctx.js';
|
|
4
|
-
declare const key = "koa_jwt_token_decoded_";
|
|
5
|
-
export declare const koa_jwt_token_decoded__b: B<auth0_ui_Ctx, typeof key>;
|
|
6
|
-
export declare type koa_jwt_token_decoded__T = (authorization: string | undefined) => Promise<jwt_token_decoded_I>;
|
|
7
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { B } from '@ctx-core/object';
|
|
2
|
-
import type { auth0_ui_Ctx } from '../auth0_ui_Ctx.js';
|
|
3
|
-
declare const key = "verify_jwt_email_";
|
|
4
|
-
export declare const verify_jwt_email__b: B<auth0_ui_Ctx, typeof key>;
|
|
5
|
-
export declare type verify_jwt_email__T = (authorization: string) => Promise<string>;
|
|
6
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { B } from '@ctx-core/object';
|
|
2
|
-
import type { auth0_ui_Ctx } from '../auth0_ui_Ctx.js';
|
|
3
|
-
declare const key = "verify_jwt_user_id_";
|
|
4
|
-
export declare const verify_jwt_user_id__b: B<auth0_ui_Ctx, typeof key>;
|
|
5
|
-
export declare type verify_jwt_user_id__T = (authorization: string) => Promise<string>;
|
|
6
|
-
export {};
|
package/dist/ui/Auth0_c.d.ts
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import type { auth0_body__T, auth0_client_id_body_I, auth0_grant_type_body_I, login_data_I, logout_auth0_token_error_T, open_auth0_forgot_password_check_email_T, open_auth0_login_T, password_realm_body__T, password_realm_body_T, post_auth0_auth_change_password_T, post_auth0_dbconnections_signup_T, post_auth0_oauth_token_body_I, post_auth0_oauth_token_T, post_auth0_passwordless_start_body_T, post_auth0_passwordless_start_T, signup_data_I } from '@ctx-core/auth0';
|
|
2
|
-
import type { auth0_ui_Ctx } from '../auth0_ui_Ctx.js';
|
|
3
|
-
export declare class Auth0_c {
|
|
4
|
-
protected ctx: auth0_ui_Ctx;
|
|
5
|
-
constructor(ctx: auth0_ui_Ctx);
|
|
6
|
-
readonly login_auth0_body_: auth0_body__T<login_data_password_realm_body_I>;
|
|
7
|
-
readonly login_password_realm_body_: password_realm_body__T<login_data_password_realm_body_I>;
|
|
8
|
-
readonly signup_auth0_body_: auth0_body__T<signup_data_password_realm_body_I>;
|
|
9
|
-
readonly signup_password_realm_body_: password_realm_body__T<signup_data_password_realm_body_I>;
|
|
10
|
-
readonly auth0_opened_class: import("@ctx-core/auth0").auth0_opened_class$_T;
|
|
11
|
-
readonly auth0_token_json$: import("@ctx-core/auth0").auth0_token_json$_T;
|
|
12
|
-
readonly auth0_token_error: import("@ctx-core/auth0").auth0_token_error$_T;
|
|
13
|
-
readonly clear_auth0_token_error: import("@ctx-core/auth0").clear_auth0_token_error_T;
|
|
14
|
-
readonly close_auth0: import("@ctx-core/auth0").close_auth0_T;
|
|
15
|
-
readonly logout_auth0_token_error: logout_auth0_token_error_T;
|
|
16
|
-
readonly open_auth0_login: open_auth0_login_T;
|
|
17
|
-
readonly open_auth0_forgot_password_check_email: open_auth0_forgot_password_check_email_T;
|
|
18
|
-
readonly post_auth0_dbconnections_signup: post_auth0_dbconnections_signup_T;
|
|
19
|
-
readonly post_auth0_oauth_token: post_auth0_oauth_token_T;
|
|
20
|
-
readonly post_auth0_auth_change_password: post_auth0_auth_change_password_T;
|
|
21
|
-
readonly post_auth0_passwordless_start: post_auth0_passwordless_start_T;
|
|
22
|
-
readonly onMount: (root: HTMLElement) => Promise<void>;
|
|
23
|
-
readonly login: (data: login_data_I, schedule_forms_clear?: () => void) => Promise<void>;
|
|
24
|
-
readonly signup: (data: signup_data_I, schedule_forms_clear?: () => void) => Promise<void>;
|
|
25
|
-
readonly change_password: (form: {
|
|
26
|
-
password: string;
|
|
27
|
-
}, schedule_forms_clear?: () => void) => Promise<void>;
|
|
28
|
-
readonly schedule_forms_clear_: (root: HTMLElement) => void;
|
|
29
|
-
readonly schedule_forms_clear: (root: HTMLElement) => void;
|
|
30
|
-
readonly onsubmit_signup: (event: Event, ctx: onsubmit_signup_Ctx, schedule_forms_clear?: () => void) => Promise<false | undefined>;
|
|
31
|
-
readonly onsubmit_login: (event: Event, ctx: onsubmit_login_Ctx, schedule_forms_clear?: () => void) => Promise<void>;
|
|
32
|
-
readonly onsubmit_forgot_password: (event: Event, ctx: onsubmit_forgot_password_Ctx) => Promise<void>;
|
|
33
|
-
readonly onsubmit_change_password: (event: Event, ctx: onsubmit_change_password_Ctx, schedule_forms_clear?: () => void) => Promise<void>;
|
|
34
|
-
readonly onclose: (event: MouseEvent) => Promise<void>;
|
|
35
|
-
}
|
|
36
|
-
export interface signup_data_password_realm_body_I extends signup_data_I, auth0_client_id_body_I, post_auth0_passwordless_start_body_T, password_realm_body_T, auth0_grant_type_body_I, post_auth0_oauth_token_body_I {
|
|
37
|
-
}
|
|
38
|
-
export interface login_data_password_realm_body_I extends login_data_I, auth0_client_id_body_I, post_auth0_passwordless_start_body_T, password_realm_body_T, auth0_grant_type_body_I, post_auth0_oauth_token_body_I {
|
|
39
|
-
}
|
|
40
|
-
export interface onsubmit_change_password_Ctx {
|
|
41
|
-
password_input: HTMLInputElement;
|
|
42
|
-
password_confirmation_input: HTMLInputElement;
|
|
43
|
-
}
|
|
44
|
-
export interface onsubmit_forgot_password_Ctx {
|
|
45
|
-
email_input: HTMLInputElement;
|
|
46
|
-
}
|
|
47
|
-
export interface onsubmit_login_Ctx {
|
|
48
|
-
username_login_input: HTMLInputElement;
|
|
49
|
-
password_login_input: HTMLInputElement;
|
|
50
|
-
}
|
|
51
|
-
export interface onsubmit_signup_Ctx {
|
|
52
|
-
email_input: HTMLInputElement;
|
|
53
|
-
password_input: HTMLInputElement;
|
|
54
|
-
password_confirmation_input: HTMLInputElement;
|
|
55
|
-
}
|
package/dist/ui/index.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import 'svelte';
|
|
2
|
-
import Auth0 from './Auth0.svelte';
|
|
3
|
-
import Auth0_Dialog_Close from './Auth0_Dialog_Close.svelte';
|
|
4
|
-
import Auth0_Change_Password_Form from './Auth0_Change_Password_Form.svelte';
|
|
5
|
-
import Auth0_Forgot_Password_Check_Email_Form from './Auth0_Forgot_Password_Check_Email_Form.svelte';
|
|
6
|
-
import Auth0_Forgot_Password_Form from './Auth0_Forgot_Password_Form.svelte';
|
|
7
|
-
import Auth0_Login_Form from './Auth0_Login_Form.svelte';
|
|
8
|
-
import Auth0_Signup_Form from './Auth0_Signup_Form.svelte';
|
|
9
|
-
import Auth0_Loggedin_If from './Auth0_Loggedin_If.svelte';
|
|
10
|
-
export { Auth0, Auth0_Dialog_Close, Auth0_Change_Password_Form, Auth0_Forgot_Password_Check_Email_Form, Auth0_Forgot_Password_Form, Auth0_Login_Form, Auth0_Signup_Form, Auth0_Loggedin_If };
|