@steedos/webapp 3.0.0-beta.99 → 3.0.1

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/index.html CHANGED
@@ -6,25 +6,27 @@
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.steedos.cn/@steedos-widgets/amis@6.3.0-patch.8/sdk/sdk.js"></script>
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.steedos.cn/@fortawesome/fontawesome-free@6.2.0/css/all.min.css" />
12
- <link rel="stylesheet" href="https://unpkg.steedos.cn/@salesforce-ux/design-system@2.22.2/assets/styles/salesforce-lightning-design-system.min.css">
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.steedos.cn/@steedos-widgets/amis@6.3.0-patch.3/lib/themes/antd.css">
15
- <link rel="stylesheet" href="https://unpkg.steedos.cn/@steedos-widgets/amis@6.3.0-patch.3/lib/helper.css">
16
- <link rel="stylesheet" href="https://unpkg.steedos.cn/@steedos-widgets/amis@6.3.0-patch.3/sdk/iconfont.css">
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.steedos.cn/lodash@4.17.21/lodash.js"></script>
19
- <script src="https://unpkg.steedos.cn/jquery@3.7.1/dist/jquery.min.js"></script>
20
- <script src="https://unpkg.steedos.cn/crypto-js@4.1.1/crypto-js.js"></script>
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'] = amisRequire('react');
23
- window['ReactDOM'] = amisRequire('react-dom');
24
- window['moment'] = amisRequire('moment');
25
- window['Amis'] = amisRequire('amis');
26
- window['AmisCore'] = amisRequire('amis-core');
27
- window['AmisUI'] = amisRequire('amis-ui');
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,10 +62,11 @@
60
62
  window.loadCss = loadCss;
61
63
 
62
64
  </script>
65
+ <script src="https://unpkg.com/i18next@24.2.2/dist/umd/i18next.min.js"></script>
63
66
  <link rel="stylesheet" type="text/css" href="/tailwind/tailwind-steedos.css">
64
- <script type="module" crossorigin src="/assets/index-i4egDH3y.js"></script>
67
+ <script type="module" crossorigin src="/assets/index-CTmKBB9g.js"></script>
65
68
  </head>
66
69
  <body class="skin-blue-light fixed steedos sidebar-mini three-columns" >
67
- <div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden bg-gray-50"></div>
70
+ <div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden bg-slate-50"></div>
68
71
  </body>
69
72
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/webapp",
3
- "version": "3.0.0-beta.99",
3
+ "version": "3.0.1",
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",
19
+ "@ai-sdk/react": "^2.0.76",
27
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,37 +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": "^4.2.1",
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",
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",
49
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",
63
67
  "socket.io-client": "^4.8.1",
68
+ "tailwindcss": "^3.4.17",
64
69
  "tslib": "^2.3.1",
65
- "typescript": "5.7.3"
70
+ "typescript": "5.7.3",
71
+ "vite": "^7.2.2",
72
+ "vite-plugin-external": "^4.3.1"
66
73
  },
67
- "private": false,
68
74
  "publishConfig": {
69
75
  "access": "public"
70
76
  },
71
77
  "repository": "https://github.com/steedos/app-builder/tree/master/apps/accounts",
72
- "gitHead": "a0e9d5ee78766e54048a385b7677f6916aa287c4"
78
+ "gitHead": "4bbcc1f1ba098d299f5c363e67679f001f715575"
73
79
  }