@ctx-core/auth0-ui 12.2.18 → 12.2.22

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 CHANGED
@@ -1,5 +1,35 @@
1
1
  # @ctx-core/auth0-ui
2
2
 
3
+ ## 12.2.22
4
+
5
+ ### Patch Changes
6
+
7
+ - update dependencies
8
+ - Updated dependencies
9
+ - @ctx-core/auth0-management@9.0.12
10
+
11
+ ## 12.2.21
12
+
13
+ ### Patch Changes
14
+
15
+ - fix: Auth0_Signup_Form: error_password_confirmation
16
+
17
+ ## 12.2.20
18
+
19
+ ### Patch Changes
20
+
21
+ - update dependencies
22
+ - Updated dependencies
23
+ - @ctx-core/auth0-management@9.0.11
24
+
25
+ ## 12.2.19
26
+
27
+ ### Patch Changes
28
+
29
+ - update dependencies
30
+ - Updated dependencies
31
+ - @ctx-core/auth0-management@9.0.10
32
+
3
33
  ## 12.2.18
4
34
 
5
35
  ### Patch Changes
@@ -15,8 +15,8 @@ let error_username:string|undefined //region
15
15
  $: error_username = $auth0_token_error$?.username //endregion
16
16
  let error_password:string|undefined //region
17
17
  $: error_password = $auth0_token_error$?.password //endregion
18
- let error_password_confirmation:string|undefined //region
19
- $: error_password_confirmation = $auth0_token_error$ && error_password_confirmation //endregion
18
+ let error_password_confirmation:boolean //region
19
+ $: error_password_confirmation = !!$auth0_token_error$ //endregion
20
20
  let error_text:string
21
21
  $: {
22
22
  let error_text_a = []
@@ -30,7 +30,7 @@ $: {
30
30
  </script>
31
31
 
32
32
  <div bind:this={root} class="form signup">
33
- <Auth0_Dialog_Close></Auth0_Dialog_Close>
33
+ <Auth0_Dialog_Close/>
34
34
  <h1><slot name="signup_text">Sign Up</slot></h1>
35
35
  <form
36
36
  action="https://{$AUTH0_DOMAIN$}/dbconnections/signup"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/auth0-ui",
3
- "version": "12.2.18",
3
+ "version": "12.2.22",
4
4
  "description": "ctx-core auth0 ui component & express endpoints",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -26,9 +26,9 @@
26
26
  "./package.json": "./package.json"
27
27
  },
28
28
  "dependencies": {
29
- "@ctx-core/auth0": "^32.0.0",
30
- "@ctx-core/auth0-management": "^9.0.9",
31
- "@ctx-core/dialog": "^20.0.0",
29
+ "@ctx-core/auth0": "^32.0.3",
30
+ "@ctx-core/auth0-management": "^9.0.12",
31
+ "@ctx-core/dialog": "^20.0.1",
32
32
  "@ctx-core/dialog-ui-svelte": "^1.0.14",
33
33
  "@ctx-core/dom": "^11.1.5",
34
34
  "@ctx-core/error": "^11.3.0",
@@ -15,8 +15,8 @@ let error_username:string|undefined //region
15
15
  $: error_username = $auth0_token_error$?.username //endregion
16
16
  let error_password:string|undefined //region
17
17
  $: error_password = $auth0_token_error$?.password //endregion
18
- let error_password_confirmation:string|undefined //region
19
- $: error_password_confirmation = $auth0_token_error$ && error_password_confirmation //endregion
18
+ let error_password_confirmation:boolean //region
19
+ $: error_password_confirmation = !!$auth0_token_error$ //endregion
20
20
  let error_text:string
21
21
  $: {
22
22
  let error_text_a = []
@@ -30,7 +30,7 @@ $: {
30
30
  </script>
31
31
 
32
32
  <div bind:this={root} class="form signup">
33
- <Auth0_Dialog_Close></Auth0_Dialog_Close>
33
+ <Auth0_Dialog_Close/>
34
34
  <h1><slot name="signup_text">Sign Up</slot></h1>
35
35
  <form
36
36
  action="https://{$AUTH0_DOMAIN$}/dbconnections/signup"