@authing/ng-ui-components 4.4.0-alpha.7 → 4.4.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/LICENSE +21 -0
- package/README.md +33 -0
- package/authing-ng-ui-components.d.ts +4 -0
- package/authing-ng-ui-components.metadata.json +1 -0
- package/bundles/authing-ng-ui-components.umd.js +205 -0
- package/bundles/authing-ng-ui-components.umd.js.map +1 -0
- package/bundles/authing-ng-ui-components.umd.min.js +2 -0
- package/bundles/authing-ng-ui-components.umd.min.js.map +1 -0
- package/esm2015/authing-ng-ui-components.js +5 -0
- package/esm2015/lib/Guard/guard.component.js +84 -0
- package/esm2015/lib/Guard/guard.module.js +14 -0
- package/esm2015/lib/Guard/guard.service.js +13 -0
- package/esm2015/public-api.js +9 -0
- package/fesm2015/authing-ng-ui-components.js +119 -0
- package/fesm2015/authing-ng-ui-components.js.map +1 -0
- package/{dist → lib/Guard}/guard.component.d.ts +5 -8
- package/lib/Guard/guard.module.d.ts +3 -0
- package/lib/Guard/guard.service.d.ts +3 -0
- package/package.json +21 -24
- package/public-api.d.ts +6 -0
- package/dist/esm2020/authing-ng-ui-components.mjs +0 -5
- package/dist/esm2020/guard.component.mjs +0 -101
- package/dist/esm2020/guard.module.mjs +0 -19
- package/dist/esm2020/guard.service.mjs +0 -14
- package/dist/esm2020/index.mjs +0 -6
- package/dist/fesm2015/authing-ng-ui-components.mjs +0 -146
- package/dist/fesm2015/authing-ng-ui-components.mjs.map +0 -1
- package/dist/fesm2020/authing-ng-ui-components.mjs +0 -137
- package/dist/fesm2020/authing-ng-ui-components.mjs.map +0 -1
- package/dist/guard.min.css +0 -2
- package/dist/guard.module.d.ts +0 -8
- package/dist/guard.service.d.ts +0 -6
- package/dist/index.d.ts +0 -5
- package/dist/package.json +0 -40
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019-present Authing
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Authing Angular UI Components
|
|
2
|
+
|
|
3
|
+
[Authing](https://authing.cn) 是一个企业级身份认证提供商,其集成了 OAuth、LDAP、OIDC 等多种身份认证和授权解决方案。此仓库包含了 Authing 提供的一些 Angular UI 组件。
|
|
4
|
+
|
|
5
|
+
## Guard
|
|
6
|
+
|
|
7
|
+
Guard 是一种可嵌入的登录表单,可根据你的需求进行配置,建议用于单页面应用程序。 它使你可以轻松添加各种社会化登录方式,以便你的用户可以无缝登录,并且在不同平台拥有一致的登录体验。
|
|
8
|
+
Guard 拥有以下基本功能:
|
|
9
|
+
|
|
10
|
+
- 登录:
|
|
11
|
+
- 账号密码登录(包括手机号 + 密码、邮箱 + 密码、用户名 + 密码);
|
|
12
|
+
- 手机验证码登录;
|
|
13
|
+
- 微信小程序扫码登录(需先在后台配置);
|
|
14
|
+
- APP 扫码登录(需要接入 APP 扫码登录);
|
|
15
|
+
- 小程序扫码登录(需先在后台配置);
|
|
16
|
+
- 社会化登录(需要配置社会化登录);
|
|
17
|
+
- 企业身份源登录(需要配置企业身份源);
|
|
18
|
+
- 注册:
|
|
19
|
+
- 账号密码注册;
|
|
20
|
+
- 手机验证码注册;
|
|
21
|
+
- 忘记密码以及重置密码;
|
|
22
|
+
- MFA 认证;
|
|
23
|
+
- 响应式特性(兼容移动端和 PC 端);
|
|
24
|
+
- 完整的 UI 自定义功能;
|
|
25
|
+
- 兼容主流前端 UI 库:
|
|
26
|
+
- 原生 JavaScript 调用;
|
|
27
|
+
- Vue 组件;
|
|
28
|
+
- React 组件;
|
|
29
|
+
- Angular 组件。
|
|
30
|
+
|
|
31
|
+

|
|
32
|
+
|
|
33
|
+
详细使用文档请查看 [Guard for Web](https://docs.authing.cn/sdk/guard/#guard-for-angular)
|