@ctx-core/auth0-ui 12.2.17 → 12.2.21

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,34 @@
1
1
  # @ctx-core/auth0-ui
2
2
 
3
+ ## 12.2.21
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: Auth0_Signup_Form: error_password_confirmation
8
+
9
+ ## 12.2.20
10
+
11
+ ### Patch Changes
12
+
13
+ - update dependencies
14
+ - Updated dependencies
15
+ - @ctx-core/auth0-management@9.0.11
16
+
17
+ ## 12.2.19
18
+
19
+ ### Patch Changes
20
+
21
+ - update dependencies
22
+ - Updated dependencies
23
+ - @ctx-core/auth0-management@9.0.10
24
+
25
+ ## 12.2.18
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies
30
+ - @ctx-core/dialog@20.0.0
31
+
3
32
  ## 12.2.17
4
33
 
5
34
  ### 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.17",
3
+ "version": "12.2.21",
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": "^19.0.2",
29
+ "@ctx-core/auth0": "^32.0.2",
30
+ "@ctx-core/auth0-management": "^9.0.11",
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"