@ctx-core/auth0-ui 12.1.9 → 12.1.13
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/CHANGELOG.md +50 -0
- package/dist/ui/Auth0.svelte +1 -1
- package/package.json +16 -16
- package/src/ui/Auth0.svelte +1 -1
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @ctx-core/auth0-ui
|
|
2
2
|
|
|
3
|
+
## 12.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: Auth0: import { ctx\_ } from '@ctx-core/object'
|
|
8
|
+
|
|
9
|
+
## 12.1.12
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fix: dependencies: + @ctx-core/dialog-ui-svelte
|
|
14
|
+
|
|
15
|
+
## 12.1.11
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- tsconfig.json: "target": "ES2021"
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @ctx-core/auth0@27.0.8
|
|
22
|
+
- @ctx-core/auth0-management@7.0.8
|
|
23
|
+
- @ctx-core/dialog@17.0.7
|
|
24
|
+
- @ctx-core/dom@11.0.47
|
|
25
|
+
- @ctx-core/error@11.1.16
|
|
26
|
+
- @ctx-core/fetch@11.0.100
|
|
27
|
+
- @ctx-core/function@20.2.19
|
|
28
|
+
- @ctx-core/http@9.0.17
|
|
29
|
+
- @ctx-core/jwt@10.0.45
|
|
30
|
+
- @ctx-core/logger@9.0.39
|
|
31
|
+
- @ctx-core/object@22.0.7
|
|
32
|
+
- @ctx-core/store@27.0.54
|
|
33
|
+
|
|
34
|
+
## 12.1.10
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- package.json: "types": "./src/index.ts": better editing experience
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @ctx-core/auth0@27.0.7
|
|
41
|
+
- @ctx-core/auth0-management@7.0.7
|
|
42
|
+
- @ctx-core/dialog@17.0.6
|
|
43
|
+
- @ctx-core/dom@11.0.46
|
|
44
|
+
- @ctx-core/error@11.1.15
|
|
45
|
+
- @ctx-core/fetch@11.0.99
|
|
46
|
+
- @ctx-core/function@20.2.18
|
|
47
|
+
- @ctx-core/http@9.0.16
|
|
48
|
+
- @ctx-core/jwt@10.0.44
|
|
49
|
+
- @ctx-core/logger@9.0.38
|
|
50
|
+
- @ctx-core/object@22.0.6
|
|
51
|
+
- @ctx-core/store@27.0.53
|
|
52
|
+
|
|
3
53
|
## 12.1.9
|
|
4
54
|
|
|
5
55
|
### Patch Changes
|
package/dist/ui/Auth0.svelte
CHANGED
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
auth0_forgot_password_opened$_b, auth0_opened_class$_b, auth0_login_opened$_b, auth0_signup_opened$_b,
|
|
5
5
|
auth0_forgot_password_check_email_opened$_b, auth0_change_password_opened$_b
|
|
6
6
|
} from '@ctx-core/auth0'
|
|
7
|
+
import { ctx_ } from '@ctx-core/object'
|
|
7
8
|
import { auth0_ui_ctx_key } from '../auth0_ui_ctx_key.js'
|
|
8
9
|
import { Auth0_c } from './Auth0_c.js'
|
|
9
10
|
import Auth0_Change_Password_Form from './Auth0_Change_Password_Form.svelte'
|
|
@@ -12,7 +13,6 @@ import Auth0_Forgot_Password_Check_Email_Form from './Auth0_Forgot_Password_Chec
|
|
|
12
13
|
import Auth0_Forgot_Password_Form from './Auth0_Forgot_Password_Form.svelte'
|
|
13
14
|
import Auth0_Login_Form from './Auth0_Login_Form.svelte'
|
|
14
15
|
import Auth0_Signup_Form from './Auth0_Signup_Form.svelte'
|
|
15
|
-
import { ctx_ } from '@ctx-core/object/dist'
|
|
16
16
|
export let ctx = ctx_(), dialog = false
|
|
17
17
|
setContext(auth0_ui_ctx_key, ctx)
|
|
18
18
|
const auth0_change_password_opened$ = auth0_change_password_opened$_b(ctx)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/auth0-ui",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.13",
|
|
4
4
|
"description": "ctx-core auth0 ui component & express endpoints",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "Brian Takita",
|
|
19
19
|
"type": "module",
|
|
20
20
|
"svelte": "./dist/index.js",
|
|
21
|
-
"types": "./
|
|
21
|
+
"types": "./src/index.ts",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
24
|
"import": "./dist/index.js"
|
|
@@ -26,18 +26,19 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ctx-core/auth0": "^27.0.
|
|
30
|
-
"@ctx-core/auth0-management": "^7.0.
|
|
31
|
-
"@ctx-core/dialog": "^17.0.
|
|
32
|
-
"@ctx-core/
|
|
33
|
-
"@ctx-core/
|
|
34
|
-
"@ctx-core/
|
|
35
|
-
"@ctx-core/
|
|
36
|
-
"@ctx-core/
|
|
37
|
-
"@ctx-core/
|
|
38
|
-
"@ctx-core/
|
|
39
|
-
"@ctx-core/
|
|
40
|
-
"@ctx-core/
|
|
29
|
+
"@ctx-core/auth0": "^27.0.8",
|
|
30
|
+
"@ctx-core/auth0-management": "^7.0.8",
|
|
31
|
+
"@ctx-core/dialog": "^17.0.7",
|
|
32
|
+
"@ctx-core/dialog-ui-svelte": "^1.0.8",
|
|
33
|
+
"@ctx-core/dom": "^11.0.47",
|
|
34
|
+
"@ctx-core/error": "^11.1.16",
|
|
35
|
+
"@ctx-core/fetch": "^11.0.100",
|
|
36
|
+
"@ctx-core/function": "^20.2.19",
|
|
37
|
+
"@ctx-core/http": "^9.0.17",
|
|
38
|
+
"@ctx-core/jwt": "^10.0.45",
|
|
39
|
+
"@ctx-core/logger": "^9.0.39",
|
|
40
|
+
"@ctx-core/object": "^22.0.7",
|
|
41
|
+
"@ctx-core/store": "^27.0.54",
|
|
41
42
|
"@swc/cli": "^0.1.55",
|
|
42
43
|
"@swc/core": "^1.2.120",
|
|
43
44
|
"auth0-js": "^9.18.0",
|
|
@@ -45,8 +46,7 @@
|
|
|
45
46
|
"polka": "next"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
|
-
"@ctx-core/ctx-core-package-tools": "^8.0.
|
|
49
|
-
"@ctx-core/dialog-ui-svelte": "^1.0.6",
|
|
49
|
+
"@ctx-core/ctx-core-package-tools": "^8.0.94",
|
|
50
50
|
"@sveltejs/adapter-auto": "next",
|
|
51
51
|
"@sveltejs/kit": "next",
|
|
52
52
|
"@types/jsonwebtoken": "^8.5.6",
|
package/src/ui/Auth0.svelte
CHANGED
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
auth0_forgot_password_opened$_b, auth0_opened_class$_b, auth0_login_opened$_b, auth0_signup_opened$_b,
|
|
5
5
|
auth0_forgot_password_check_email_opened$_b, auth0_change_password_opened$_b
|
|
6
6
|
} from '@ctx-core/auth0'
|
|
7
|
+
import { ctx_ } from '@ctx-core/object'
|
|
7
8
|
import { auth0_ui_ctx_key } from '../auth0_ui_ctx_key.js'
|
|
8
9
|
import { Auth0_c } from './Auth0_c.js'
|
|
9
10
|
import Auth0_Change_Password_Form from './Auth0_Change_Password_Form.svelte'
|
|
@@ -12,7 +13,6 @@ import Auth0_Forgot_Password_Check_Email_Form from './Auth0_Forgot_Password_Chec
|
|
|
12
13
|
import Auth0_Forgot_Password_Form from './Auth0_Forgot_Password_Form.svelte'
|
|
13
14
|
import Auth0_Login_Form from './Auth0_Login_Form.svelte'
|
|
14
15
|
import Auth0_Signup_Form from './Auth0_Signup_Form.svelte'
|
|
15
|
-
import { ctx_ } from '@ctx-core/object/dist'
|
|
16
16
|
export let ctx = ctx_(), dialog = false
|
|
17
17
|
setContext(auth0_ui_ctx_key, ctx)
|
|
18
18
|
const auth0_change_password_opened$ = auth0_change_password_opened$_b(ctx)
|