@steedos/webapp 3.0.0-beta.14 → 3.0.0-beta.140
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/README.md +1 -1
- package/dist/assets/{index-Bse_vkjs.js → index-BVOzCmRV.js} +40086 -11450
- package/dist/customize.css +0 -10
- package/dist/index.html +21 -18
- package/dist/steedos-init.js +0 -7
- package/package.json +22 -15
package/dist/customize.css
CHANGED
|
@@ -43,16 +43,6 @@ body {
|
|
|
43
43
|
background: var(--body-bg);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
.creator-content-wrapper {
|
|
47
|
-
overflow: auto !important;
|
|
48
|
-
position: absolute;
|
|
49
|
-
top: 0;
|
|
50
|
-
right: 0;
|
|
51
|
-
bottom: 0;
|
|
52
|
-
left: 0;
|
|
53
|
-
margin-top: 90px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
46
|
@media only screen and (max-width: 768px) {
|
|
57
47
|
.creator-content-wrapper {
|
|
58
48
|
margin-top: 50px;
|
package/dist/index.html
CHANGED
|
@@ -2,29 +2,31 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon"
|
|
5
|
+
<link rel="shortcut icon" href="/favicon.ico" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Steedos</title>
|
|
8
8
|
|
|
9
|
-
<script src="https://unpkg.
|
|
9
|
+
<script src="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/sdk/sdk.js"></script>
|
|
10
10
|
|
|
11
|
-
<link rel="stylesheet" href="https://unpkg.
|
|
12
|
-
<link rel="stylesheet" href="https://unpkg.
|
|
11
|
+
<link rel="stylesheet" href="https://unpkg.com/@fortawesome/fontawesome-free@6.2.0/css/all.min.css" />
|
|
12
|
+
<link rel="stylesheet" href="https://unpkg.com/@salesforce-ux/design-system@2.22.2/assets/styles/salesforce-lightning-design-system.min.css">
|
|
13
13
|
|
|
14
|
-
<link rel="stylesheet" href="https://unpkg.
|
|
15
|
-
<link rel="stylesheet" href="https://unpkg.
|
|
16
|
-
<link rel="stylesheet" href="https://unpkg.
|
|
14
|
+
<link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/lib/themes/antd.css">
|
|
15
|
+
<link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/lib/helper.css">
|
|
16
|
+
<link rel="stylesheet" href="https://unpkg.com/@steedos-widgets/amis@6.3.0-patch.8/sdk/iconfont.css">
|
|
17
17
|
|
|
18
|
-
<script src="https://unpkg.
|
|
19
|
-
<script src="https://unpkg.
|
|
20
|
-
<script src="https://unpkg.
|
|
18
|
+
<script src="https://unpkg.com/lodash@4.17.21/lodash.js"></script>
|
|
19
|
+
<script src="https://unpkg.com/jquery@3.7.1/dist/jquery.min.js"></script>
|
|
20
|
+
<script src="https://unpkg.com/crypto-js@4.1.1/crypto-js.js"></script>
|
|
21
21
|
<script async="">
|
|
22
|
-
window['React'] =
|
|
23
|
-
window['ReactDOM'] =
|
|
24
|
-
window['moment'] =
|
|
25
|
-
window['Amis'] =
|
|
26
|
-
window['AmisCore'] =
|
|
27
|
-
|
|
22
|
+
window['React'] = amis.require('react');
|
|
23
|
+
window['ReactDOM'] = amis.require('react-dom');
|
|
24
|
+
window['moment'] = amis.require('moment');
|
|
25
|
+
window['Amis'] = amis.require('amis');
|
|
26
|
+
window['AmisCore'] = amis.require('amis-core');
|
|
27
|
+
amis.require.ensure('amis-ui', () => {
|
|
28
|
+
window['AmisUI'] = amis.require('amis-ui');
|
|
29
|
+
});
|
|
28
30
|
|
|
29
31
|
window['Amis'].registerFilter('t', function (key,param) {
|
|
30
32
|
return typeof key === 'string' ? window.t(key,param) : key;
|
|
@@ -60,9 +62,10 @@
|
|
|
60
62
|
window.loadCss = loadCss;
|
|
61
63
|
|
|
62
64
|
</script>
|
|
63
|
-
<
|
|
65
|
+
<link rel="stylesheet" type="text/css" href="/tailwind/tailwind-steedos.css">
|
|
66
|
+
<script type="module" crossorigin src="/assets/index-BVOzCmRV.js"></script>
|
|
64
67
|
</head>
|
|
65
68
|
<body class="skin-blue-light fixed steedos sidebar-mini three-columns" >
|
|
66
|
-
<div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden"></div>
|
|
69
|
+
<div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden bg-slate-50"></div>
|
|
67
70
|
</body>
|
|
68
71
|
</html>
|
package/dist/steedos-init.js
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: baozhoutao@steedos.com
|
|
3
|
-
* @Date: 2023-02-26 15:22:12
|
|
4
|
-
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
-
* @LastEditTime: 2025-02-21 17:43:07
|
|
6
|
-
* @Description:
|
|
7
|
-
*/
|
|
8
1
|
try {
|
|
9
2
|
Steedos.authRequest = function (url, options) {
|
|
10
3
|
var userSession = Steedos.User.get();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/webapp",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.140",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -12,22 +12,16 @@
|
|
|
12
12
|
"preview": "vite preview",
|
|
13
13
|
"i18n:extract": "i18next --config i18next-parser.config.js && jq 'to_entries | map({(.key): .key}) | add' public/locales/en/translation.json > public/locales/en/translation.tmp.json && mv public/locales/en/translation.tmp.json public/locales/en/translation.json"
|
|
14
14
|
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"crypto-js": "^4.1.1",
|
|
17
|
-
"i18next": "24.2.2",
|
|
18
|
-
"i18next-browser-languagedetector": "8.0.2",
|
|
19
|
-
"i18next-http-backend": "3.0.2",
|
|
20
|
-
"i18next-icu": "2.3.0",
|
|
21
|
-
"react-i18next": "15.4.0"
|
|
22
|
-
},
|
|
23
15
|
"devDependencies": {
|
|
24
16
|
"@accounts/client": "^0.19.0",
|
|
25
17
|
"@accounts/client-password": "^0.19.0",
|
|
26
18
|
"@accounts/rest-client": "^0.19.0",
|
|
27
|
-
"@
|
|
19
|
+
"@ai-sdk/react": "^2.0.76",
|
|
20
|
+
"@builder6/react": "8.0.40",
|
|
28
21
|
"@material-ui/core": "^4.4.1",
|
|
29
22
|
"@material-ui/icons": "^4.4.1",
|
|
30
23
|
"@material-ui/styles": "^4.4.1",
|
|
24
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
31
25
|
"@tailwindui/react": "^0.1.1",
|
|
32
26
|
"@types/node": "^14.14.19",
|
|
33
27
|
"@types/qrcode.react": "0.8.2",
|
|
@@ -37,36 +31,49 @@
|
|
|
37
31
|
"@types/react-router": "5.0.3",
|
|
38
32
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
39
33
|
"@typescript-eslint/parser": "^7.2.0",
|
|
40
|
-
"@vitejs/plugin-react": "^
|
|
34
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
41
35
|
"add": "^2.0.6",
|
|
36
|
+
"ai": "^5.0.76",
|
|
42
37
|
"babel-jest": "^26.6.0",
|
|
43
38
|
"babel-preset-react-app": "^10.0.1",
|
|
44
39
|
"core-js": "^3.2.1",
|
|
45
40
|
"cross-env": "7.0.3",
|
|
41
|
+
"crypto-js": "^4.1.1",
|
|
46
42
|
"eslint": "^8.57.0",
|
|
47
43
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
48
44
|
"eslint-plugin-react-refresh": "^0.4.6",
|
|
49
|
-
"
|
|
45
|
+
"history": "^5.3.0",
|
|
46
|
+
"i18next": "24.2.2",
|
|
47
|
+
"i18next-browser-languagedetector": "8.0.2",
|
|
48
|
+
"i18next-http-backend": "3.0.2",
|
|
49
|
+
"i18next-icu": "2.3.0",
|
|
50
|
+
"i18next-parser": "^9.3.0",
|
|
50
51
|
"mkdirp": "^1.0.4",
|
|
51
52
|
"qrcode.react": "^1.0.1",
|
|
52
53
|
"react": "^18.2.0",
|
|
53
54
|
"react-app-polyfill": "^2.0.0",
|
|
54
55
|
"react-dom": "^18.2.0",
|
|
56
|
+
"react-i18next": "15.4.0",
|
|
55
57
|
"react-intl": "^3.1.13",
|
|
58
|
+
"react-markdown": "^10.1.0",
|
|
56
59
|
"react-redux": "^7.1.1",
|
|
57
60
|
"react-router-dom": "^7.1.3",
|
|
58
61
|
"react-scripts": "^5.0.1",
|
|
59
62
|
"redux": "^4.0.4",
|
|
60
63
|
"redux-devtools-extension": "^2.13.8",
|
|
61
64
|
"redux-thunk": "^2.4.1",
|
|
65
|
+
"remark-gfm": "^4.0.1",
|
|
62
66
|
"serialize-error": "^7.0.1",
|
|
67
|
+
"socket.io-client": "^4.8.1",
|
|
68
|
+
"tailwindcss": "^3.4.17",
|
|
63
69
|
"tslib": "^2.3.1",
|
|
64
|
-
"typescript": "5.7.3"
|
|
70
|
+
"typescript": "5.7.3",
|
|
71
|
+
"vite": "^7.2.2",
|
|
72
|
+
"vite-plugin-external": "^4.3.1"
|
|
65
73
|
},
|
|
66
|
-
"private": false,
|
|
67
74
|
"publishConfig": {
|
|
68
75
|
"access": "public"
|
|
69
76
|
},
|
|
70
77
|
"repository": "https://github.com/steedos/app-builder/tree/master/apps/accounts",
|
|
71
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "332d116671c9b7be64eaa1f73febe61b37191567"
|
|
72
79
|
}
|