@steedos/webapp 3.0.2-beta.7 → 3.0.2-beta.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.
|
@@ -23862,7 +23862,7 @@
|
|
|
23862
23862
|
"accounts.copyright": "© 2025 Steedos.com, Inc.",
|
|
23863
23863
|
"accounts.privacy": "Privacy",
|
|
23864
23864
|
"accounts.privacyURL": "https://docs.steedos.com/company/privacy/",
|
|
23865
|
-
"accounts.logoURL": "/images/
|
|
23865
|
+
"accounts.logoURL": "/images/logo.svg",
|
|
23866
23866
|
"accounts.invalidVerifyParam": "Invalid validation parameter",
|
|
23867
23867
|
"accounts.passwordLogin": "Login with password",
|
|
23868
23868
|
"accounts.codeLogin": "Login with Verify code",
|
|
@@ -24002,7 +24002,7 @@
|
|
|
24002
24002
|
"accounts.copyright": "© 2025 华炎软件",
|
|
24003
24003
|
"accounts.privacy": "隐私",
|
|
24004
24004
|
"accounts.privacyURL": "https://docs.steedos.cn/company/privacy/",
|
|
24005
|
-
"accounts.logoURL": "/images/
|
|
24005
|
+
"accounts.logoURL": "/images/logo.svg",
|
|
24006
24006
|
"accounts.passwordLogin": "密码登录",
|
|
24007
24007
|
"accounts.codeLogin": "验证码登录",
|
|
24008
24008
|
"accounts.accept_invitation": "接受邀请",
|
|
@@ -48807,7 +48807,12 @@ Try polyfilling it using "@formatjs/intl-displaynames"
|
|
|
48807
48807
|
navigate("/verify/email");
|
|
48808
48808
|
return;
|
|
48809
48809
|
}
|
|
48810
|
-
|
|
48810
|
+
let redirect_uri = new URLSearchParams(location2 ? location2.search : "").get("redirect_uri");
|
|
48811
|
+
if (redirect_uri) {
|
|
48812
|
+
navigate("/home?redirect_uri=" + redirect_uri);
|
|
48813
|
+
} else {
|
|
48814
|
+
navigate("/home");
|
|
48815
|
+
}
|
|
48811
48816
|
}
|
|
48812
48817
|
const useCountDown = (timerKey, options) => {
|
|
48813
48818
|
const [addData, getData2] = reactExports.useMemo(() => {
|
|
@@ -54607,12 +54612,12 @@ Try polyfilling it using "@formatjs/intl-displaynames"
|
|
|
54607
54612
|
document.body.classList.remove("sidebar-open");
|
|
54608
54613
|
}
|
|
54609
54614
|
const isMobile = window.innerWidth < 1024;
|
|
54610
|
-
let logoSrc = `/images/logo.
|
|
54615
|
+
let logoSrc = `/images/logo.svg`;
|
|
54611
54616
|
if (Builder$1.settings?.context?.user?.space?.avatar) {
|
|
54612
54617
|
logoSrc = "/api/v6/files/cfs.avatars.filerecord/" + Builder$1.settings.context.user.space.avatar;
|
|
54613
54618
|
}
|
|
54614
54619
|
const faviconLink = document.querySelector('link[rel*="icon"], link[rel*="shortcut"]');
|
|
54615
|
-
let favicon = "/
|
|
54620
|
+
let favicon = "/images/logo.svg";
|
|
54616
54621
|
if (Builder$1.settings?.context?.user?.space?.favicon) {
|
|
54617
54622
|
favicon = "/api/v6/files/cfs.avatars.filerecord/" + Builder$1.settings.context.user.space.favicon;
|
|
54618
54623
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<svg width="340" height="340" viewBox="0 0 340 340" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g fill="#8bc34a">
|
|
3
|
+
<rect x="10" y="10" width="100" height="100" rx="10"/>
|
|
4
|
+
<rect x="120" y="10" width="100" height="100" rx="10"/>
|
|
5
|
+
</g>
|
|
6
|
+
|
|
7
|
+
<g fill="#ffc107">
|
|
8
|
+
<rect x="230" y="10" width="100" height="100" rx="10"/>
|
|
9
|
+
<rect x="230" y="120" width="100" height="100" rx="10"/>
|
|
10
|
+
</g>
|
|
11
|
+
|
|
12
|
+
<g fill="#ff5722">
|
|
13
|
+
<rect x="10" y="120" width="100" height="100" rx="10"/>
|
|
14
|
+
<rect x="10" y="230" width="100" height="100" rx="10"/>
|
|
15
|
+
</g>
|
|
16
|
+
|
|
17
|
+
<rect x="120" y="120" width="100" height="100" rx="10" fill="#EFEFEF"/>
|
|
18
|
+
|
|
19
|
+
<g fill="#03a9f4">
|
|
20
|
+
<rect x="120" y="230" width="100" height="100" rx="10"/>
|
|
21
|
+
<rect x="230" y="230" width="100" height="100" rx="10"/>
|
|
22
|
+
</g>
|
|
23
|
+
|
|
24
|
+
</svg>
|
package/dist/index.html
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="shortcut icon" href="/
|
|
5
|
+
<link rel="shortcut icon" href="/images/logo.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Steedos</title>
|
|
8
8
|
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
</script>
|
|
65
65
|
<script src="https://unpkg.com/i18next@24.2.2/dist/umd/i18next.min.js"></script>
|
|
66
66
|
<link rel="stylesheet" type="text/css" href="/tailwind/tailwind-steedos.css">
|
|
67
|
-
<script type="module" crossorigin src="/assets/index-
|
|
67
|
+
<script type="module" crossorigin src="/assets/index-CJty8bMw.js"></script>
|
|
68
68
|
</head>
|
|
69
69
|
<body class="skin-blue-light fixed steedos sidebar-mini three-columns" >
|
|
70
70
|
<div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden bg-slate-50"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/webapp",
|
|
3
|
-
"version": "3.0.2-beta.
|
|
3
|
+
"version": "3.0.2-beta.9",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"access": "public"
|
|
76
76
|
},
|
|
77
77
|
"repository": "https://github.com/steedos/app-builder/tree/master/apps/accounts",
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "a5e81c96b611a087822e32334546f8247b541131"
|
|
79
79
|
}
|