@genesislcap/foundation-login 14.149.0 → 14.150.0

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -81,7 +81,7 @@ You may need to set up a `NavigationContributor` in your application's router co
81
81
  }
82
82
  ```
83
83
 
84
- :::warningWarning
84
+ :::warning
85
85
  By default, a route that isn't marked public is not. However, a non-public route isn't automatically going to block non-authenticated users from viewing them. This must be implemented in a `NavigationContributor`; see [example](./docs/api/foundation-login.login.md#example).
86
86
  :::
87
87
 
@@ -93,7 +93,7 @@ For authentication, most configuration is set in the back end. You should famili
93
93
 
94
94
  The standard authentication method is the user supplying their username and password. Even when SSO is enabled as an authentication method, the user will still have the option to sign in with their normal credentials.
95
95
 
96
- :::noteTip
96
+ :::note
97
97
  Setting the `DEFAULT_USER` and `DEFAULT_PASSWORD` environment variables automatically populates the credentials in the login form, which can be useful during development so developers don't need to write out their credentials continuously. However, the browser may also offer auto-filling if you have previously chosen to save your credentials, which can make setting these unnecessary.
98
98
  :::
99
99
 
@@ -103,7 +103,7 @@ SSO functionality allows the `Login` micro front-end to work with your company's
103
103
 
104
104
  Setting up SSO is primarily [a back-end task](docs/03_server/05_access-control/04_sso_jwt.md); however, there is a small amount of front-end [sso configuration](docs/api/foundation-login.loginconfig.sso.md) required.
105
105
 
106
- :::noteInfo
106
+ :::note
107
107
  The standard process of SSO is that the SSO authentication provider flow is opened via a redirect in the current page. However, many authentication providers block their system when running in an iframe to prevent [clickjacking attacks](https://owasp.org/www-community/attacks/Clickjacking). Because of this, if the `Login` micro front-end detects that it is running in an iframe, it opens up the authentication provider in a popup instead.
108
108
  :::
109
109
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-login",
3
3
  "description": "Genesis Foundation Login",
4
- "version": "14.149.0",
4
+ "version": "14.150.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/foundation-login.d.ts",
@@ -59,21 +59,21 @@
59
59
  "test:debug": "genx test --debug"
60
60
  },
61
61
  "devDependencies": {
62
- "@genesislcap/foundation-testing": "14.149.0",
63
- "@genesislcap/genx": "14.149.0",
64
- "@genesislcap/rollup-builder": "14.149.0",
65
- "@genesislcap/ts-builder": "14.149.0",
66
- "@genesislcap/uvu-playwright-builder": "14.149.0",
67
- "@genesislcap/vite-builder": "14.149.0",
68
- "@genesislcap/webpack-builder": "14.149.0",
62
+ "@genesislcap/foundation-testing": "14.150.0",
63
+ "@genesislcap/genx": "14.150.0",
64
+ "@genesislcap/rollup-builder": "14.150.0",
65
+ "@genesislcap/ts-builder": "14.150.0",
66
+ "@genesislcap/uvu-playwright-builder": "14.150.0",
67
+ "@genesislcap/vite-builder": "14.150.0",
68
+ "@genesislcap/webpack-builder": "14.150.0",
69
69
  "rimraf": "^3.0.2"
70
70
  },
71
71
  "dependencies": {
72
- "@genesislcap/foundation-comms": "14.149.0",
73
- "@genesislcap/foundation-logger": "14.149.0",
74
- "@genesislcap/foundation-ui": "14.149.0",
75
- "@genesislcap/foundation-utils": "14.149.0",
76
- "@genesislcap/foundation-zero": "14.149.0",
72
+ "@genesislcap/foundation-comms": "14.150.0",
73
+ "@genesislcap/foundation-logger": "14.150.0",
74
+ "@genesislcap/foundation-ui": "14.150.0",
75
+ "@genesislcap/foundation-utils": "14.150.0",
76
+ "@genesislcap/foundation-zero": "14.150.0",
77
77
  "@microsoft/fast-components": "^2.30.6",
78
78
  "@microsoft/fast-element": "^1.12.0",
79
79
  "@microsoft/fast-foundation": "^2.49.4",
@@ -90,5 +90,5 @@
90
90
  "access": "public"
91
91
  },
92
92
  "customElements": "dist/custom-elements.json",
93
- "gitHead": "047aa2b96699838f3d333dbaccf17eec5b373c32"
93
+ "gitHead": "b1e9c28c8b2cc001814e259a0b6d51ab30ed5381"
94
94
  }