@epicdm/flowstate-auth-ui 1.0.0 → 1.0.2

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 +25 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @epicdm/flowstate-auth-ui
2
+
3
+ Shared HTML templates and styles for FlowState authentication flows.
4
+
5
+ Provides consistent, themeable markup for sign-in, sign-up, password reset, and account verification pages used by FlowState identity services.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ yarn add @epicdm/flowstate-auth-ui
11
+ # or
12
+ npm install @epicdm/flowstate-auth-ui
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```ts
18
+ import {} from /* templates and styles */ '@epicdm/flowstate-auth-ui'
19
+ ```
20
+
21
+ Import the templates you need and render them from your auth server or front-end. See the package's TypeScript declarations for the full list of exports.
22
+
23
+ ## License
24
+
25
+ Apache-2.0 © Epic Digital Interactive Media LLC
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epicdm/flowstate-auth-ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Shared HTML templates and styles for FlowState auth flows",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",