sevago-sso-fe 1.0.2 → 1.0.4
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/dist/assets/index-Ck8Rqlmw.css +1 -0
- package/dist/assets/index-RCni0Nq0.js +1183 -0
- package/dist/index.html +21 -0
- package/package.json +2 -1
- package/dist/index.cjs.js +0 -32272
- package/dist/index.cjs.js.map +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.esm.js +0 -32256
- package/dist/index.esm.js.map +0 -1
- package/dist/sevago-sso-fe.css +0 -736
package/dist/index.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<link rel="icon" href="/images/logo-192x192.png?v=2" type="image/png" />
|
|
7
|
+
<link rel="apple-touch-icon" href="/images/logo-192x192.png?v=2" type="image/png" />
|
|
8
|
+
<title>Sevago ⚬ SSO</title>
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
10
|
+
|
|
11
|
+
<link rel="stylesheet"
|
|
12
|
+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
|
13
|
+
<script type="module" crossorigin src="/assets/index-RCni0Nq0.js"></script>
|
|
14
|
+
<link rel="stylesheet" crossorigin href="/assets/index-Ck8Rqlmw.css">
|
|
15
|
+
</head>
|
|
16
|
+
|
|
17
|
+
<body>
|
|
18
|
+
<div id="root" style="width: 100%"></div>
|
|
19
|
+
</body>
|
|
20
|
+
|
|
21
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sevago-sso-fe",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Sevago SSO Frontend Library - A comprehensive SSO solution with React components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"dev": "vite",
|
|
14
14
|
"build": "tsc && vite build",
|
|
15
|
+
"prepare": "npm run build",
|
|
15
16
|
"build:lib": "vite build --mode library",
|
|
16
17
|
"lint": "eslint .",
|
|
17
18
|
"preview": "vite preview",
|