@authing/ng-ui-components 4.4.0 → 4.5.0-alpha.1
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 +27 -33
- package/dist/guard/README.md +24 -0
- package/dist/guard/esm2020/authing-ng-ui-components.mjs +5 -0
- package/dist/guard/esm2020/lib/guard.component.mjs +99 -0
- package/dist/guard/esm2020/lib/guard.module.mjs +18 -0
- package/dist/guard/esm2020/lib/guard.service.mjs +14 -0
- package/dist/guard/esm2020/public-api.mjs +7 -0
- package/dist/guard/fesm2015/authing-ng-ui-components.mjs +138 -0
- package/dist/guard/fesm2015/authing-ng-ui-components.mjs.map +1 -0
- package/dist/guard/fesm2020/authing-ng-ui-components.mjs +137 -0
- package/dist/guard/fesm2020/authing-ng-ui-components.mjs.map +1 -0
- package/{authing-ng-ui-components.d.ts → dist/guard/index.d.ts} +1 -0
- package/{lib/Guard → dist/guard/lib}/guard.component.d.ts +8 -5
- package/dist/guard/lib/guard.module.d.ts +8 -0
- package/dist/guard/lib/guard.service.d.ts +6 -0
- package/dist/guard/package.json +31 -0
- package/dist/guard/public-api.d.ts +3 -0
- package/dist/guard.min.css +2 -0
- package/package.json +44 -20
- package/LICENSE +0 -21
- package/authing-ng-ui-components.metadata.json +0 -1
- package/bundles/authing-ng-ui-components.umd.js +0 -205
- package/bundles/authing-ng-ui-components.umd.js.map +0 -1
- package/bundles/authing-ng-ui-components.umd.min.js +0 -2
- package/bundles/authing-ng-ui-components.umd.min.js.map +0 -1
- package/esm2015/authing-ng-ui-components.js +0 -5
- package/esm2015/lib/Guard/guard.component.js +0 -84
- package/esm2015/lib/Guard/guard.module.js +0 -14
- package/esm2015/lib/Guard/guard.service.js +0 -13
- package/esm2015/public-api.js +0 -9
- package/fesm2015/authing-ng-ui-components.js +0 -119
- package/fesm2015/authing-ng-ui-components.js.map +0 -1
- package/lib/Guard/guard.module.d.ts +0 -3
- package/lib/Guard/guard.service.d.ts +0 -3
- package/public-api.d.ts +0 -6
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@authing/ng-ui-components",
|
|
3
|
+
"version": "4.4.0-alpha.37",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^14.2.0",
|
|
6
|
+
"@angular/core": "^14.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2015/authing-ng-ui-components.mjs",
|
|
12
|
+
"es2020": "fesm2020/authing-ng-ui-components.mjs",
|
|
13
|
+
"esm2020": "esm2020/authing-ng-ui-components.mjs",
|
|
14
|
+
"fesm2020": "fesm2020/authing-ng-ui-components.mjs",
|
|
15
|
+
"fesm2015": "fesm2015/authing-ng-ui-components.mjs",
|
|
16
|
+
"typings": "index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": {
|
|
19
|
+
"default": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./index.d.ts",
|
|
23
|
+
"esm2020": "./esm2020/authing-ng-ui-components.mjs",
|
|
24
|
+
"es2020": "./fesm2020/authing-ng-ui-components.mjs",
|
|
25
|
+
"es2015": "./fesm2015/authing-ng-ui-components.mjs",
|
|
26
|
+
"node": "./fesm2015/authing-ng-ui-components.mjs",
|
|
27
|
+
"default": "./fesm2020/authing-ng-ui-components.mjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"sideEffects": false
|
|
31
|
+
}
|