@genesislcap/foundation-login 14.160.0 → 14.160.1-beta.88ffd67.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.
- package/README.md +20 -1
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -111,10 +111,29 @@ The standard process of SSO is that the SSO authentication provider flow is open
|
|
|
111
111
|
|
|
112
112
|
The `Login` micro front-end can be customised using an exported `configure` function. See [configure](docs/api/foundation-login.configure.md) in the API docs for more information.
|
|
113
113
|
|
|
114
|
+
## Installation
|
|
115
|
+
|
|
116
|
+
To enable this module in your application, follow the steps below.
|
|
117
|
+
|
|
118
|
+
1. Add `@genesislcap/foundation-login` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
|
|
119
|
+
|
|
120
|
+
```json
|
|
121
|
+
{
|
|
122
|
+
...
|
|
123
|
+
"dependencies": {
|
|
124
|
+
...
|
|
125
|
+
"@genesislcap/foundation-login": "latest"
|
|
126
|
+
...
|
|
127
|
+
},
|
|
128
|
+
...
|
|
129
|
+
}
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## [API Docs](./docs/api/index.md)
|
|
133
|
+
|
|
114
134
|
## License
|
|
115
135
|
|
|
116
136
|
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
|
117
137
|
|
|
118
138
|
### Licensed components
|
|
119
139
|
Genesis low-code platform
|
|
120
|
-
|
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.160.0",
|
|
4
|
+
"version": "14.160.1-beta.88ffd67.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.160.0",
|
|
63
|
-
"@genesislcap/genx": "14.160.0",
|
|
64
|
-
"@genesislcap/rollup-builder": "14.160.0",
|
|
65
|
-
"@genesislcap/ts-builder": "14.160.0",
|
|
66
|
-
"@genesislcap/uvu-playwright-builder": "14.160.0",
|
|
67
|
-
"@genesislcap/vite-builder": "14.160.0",
|
|
68
|
-
"@genesislcap/webpack-builder": "14.160.0",
|
|
62
|
+
"@genesislcap/foundation-testing": "14.160.1-beta.88ffd67.0",
|
|
63
|
+
"@genesislcap/genx": "14.160.1-beta.88ffd67.0",
|
|
64
|
+
"@genesislcap/rollup-builder": "14.160.1-beta.88ffd67.0",
|
|
65
|
+
"@genesislcap/ts-builder": "14.160.1-beta.88ffd67.0",
|
|
66
|
+
"@genesislcap/uvu-playwright-builder": "14.160.1-beta.88ffd67.0",
|
|
67
|
+
"@genesislcap/vite-builder": "14.160.1-beta.88ffd67.0",
|
|
68
|
+
"@genesislcap/webpack-builder": "14.160.1-beta.88ffd67.0",
|
|
69
69
|
"rimraf": "^3.0.2"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@genesislcap/foundation-comms": "14.160.0",
|
|
73
|
-
"@genesislcap/foundation-logger": "14.160.0",
|
|
74
|
-
"@genesislcap/foundation-ui": "14.160.0",
|
|
75
|
-
"@genesislcap/foundation-utils": "14.160.0",
|
|
76
|
-
"@genesislcap/foundation-zero": "14.160.0",
|
|
72
|
+
"@genesislcap/foundation-comms": "14.160.1-beta.88ffd67.0",
|
|
73
|
+
"@genesislcap/foundation-logger": "14.160.1-beta.88ffd67.0",
|
|
74
|
+
"@genesislcap/foundation-ui": "14.160.1-beta.88ffd67.0",
|
|
75
|
+
"@genesislcap/foundation-utils": "14.160.1-beta.88ffd67.0",
|
|
76
|
+
"@genesislcap/foundation-zero": "14.160.1-beta.88ffd67.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": "
|
|
93
|
+
"gitHead": "ac913c069762d50f7331a116cb1544cf9dbbbe87"
|
|
94
94
|
}
|