@abtnode/ux 1.17.12 → 1.17.13-beta-20260512-004004-69bacba8
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/lib/blocklet/authentication/providers/github.js +1 -1
- package/lib/blocklet/component/add-component/add-component-core.js +2 -2
- package/lib/blocklet/component/navigation/icon-input.js +1 -1
- package/lib/blocklet/config-navigation.js +1 -1
- package/lib/util/spaces.js +3 -3
- package/package.json +23 -10
|
@@ -564,7 +564,7 @@ export default function AddComponentCore({
|
|
|
564
564
|
});
|
|
565
565
|
component.current = {
|
|
566
566
|
...chooseParams,
|
|
567
|
-
// FIXME:
|
|
567
|
+
// FIXME: 此处不应该修改 meta 的结构,会导致在不同地方看到的 meta 结果不一样,然后产生误解
|
|
568
568
|
meta: {
|
|
569
569
|
...meta,
|
|
570
570
|
// init configs from environments
|
|
@@ -908,7 +908,7 @@ export default function AddComponentCore({
|
|
|
908
908
|
name: t('launchBlocklet.introduction'),
|
|
909
909
|
body:
|
|
910
910
|
/*#__PURE__*/
|
|
911
|
-
// TODO:
|
|
911
|
+
// TODO: 添加要展示的信息,暂时无法添加,需要修改 launch-layout 里的组件
|
|
912
912
|
_jsxs(TypographyWrapper, {
|
|
913
913
|
component: "div",
|
|
914
914
|
className: "agreement-wrapper",
|
|
@@ -28,7 +28,7 @@ import { useTeamContext } from '../contexts/team';
|
|
|
28
28
|
import { formatError } from '../util';
|
|
29
29
|
import TabbarBuilder from './component/navigation/tabbar-builder';
|
|
30
30
|
|
|
31
|
-
// FIXME:
|
|
31
|
+
// FIXME: 这里还有几处文案没有 i18n
|
|
32
32
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
33
33
|
const mockSession = {
|
|
34
34
|
login: noop,
|
package/lib/util/spaces.js
CHANGED
|
@@ -12,7 +12,7 @@ import { api } from './api';
|
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* FIXME: move this into the SDK later
|
|
16
16
|
* @description
|
|
17
17
|
* @param {string} endpoint
|
|
18
18
|
* @returns {string}
|
|
@@ -26,7 +26,7 @@ export function getBackupFilesUrlFromEndpoint(endpoint) {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* FIXME: move this into the SDK later
|
|
30
30
|
* @description
|
|
31
31
|
* @param {string} endpoint
|
|
32
32
|
* @returns {string}
|
|
@@ -39,7 +39,7 @@ export function getDIDSpaceUrlFromEndpoint(endpoint) {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* FIXME: move this into the SDK later
|
|
43
43
|
* @description
|
|
44
44
|
* @param {string} endpoint
|
|
45
45
|
* @returns {string}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/ux",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.13-beta-20260512-004004-69bacba8",
|
|
4
4
|
"description": "UX components shared across abtnode packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -20,13 +20,26 @@
|
|
|
20
20
|
"watch": "npm run build -- -w"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [],
|
|
23
|
-
"author":
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "ArcBlock",
|
|
25
|
+
"email": "blocklet@arcblock.io",
|
|
26
|
+
"url": "https://github.com/ArcBlock"
|
|
27
|
+
},
|
|
24
28
|
"license": "Apache-2.0",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/ArcBlock/blocklet-server.git",
|
|
32
|
+
"directory": "core/ux"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/ArcBlock/blocklet-server/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/ArcBlock/blocklet-server/tree/main/core/ux#readme",
|
|
25
38
|
"dependencies": {
|
|
26
|
-
"@abtnode/auth": "1.17.
|
|
27
|
-
"@abtnode/constant": "1.17.
|
|
28
|
-
"@abtnode/docker-utils": "1.17.
|
|
29
|
-
"@abtnode/util": "1.17.
|
|
39
|
+
"@abtnode/auth": "1.17.13-beta-20260512-004004-69bacba8",
|
|
40
|
+
"@abtnode/constant": "1.17.13-beta-20260512-004004-69bacba8",
|
|
41
|
+
"@abtnode/docker-utils": "1.17.13-beta-20260512-004004-69bacba8",
|
|
42
|
+
"@abtnode/util": "1.17.13-beta-20260512-004004-69bacba8",
|
|
30
43
|
"@ahooksjs/use-url-state": "^3.5.1",
|
|
31
44
|
"@arcblock/did": "1.29.27",
|
|
32
45
|
"@arcblock/did-connect-react": "^3.5.2",
|
|
@@ -39,14 +52,14 @@
|
|
|
39
52
|
"@arcblock/ux": "^3.5.2",
|
|
40
53
|
"@arcblock/validator": "1.29.27",
|
|
41
54
|
"@blocklet/aigne-hub": "^0.8.5",
|
|
42
|
-
"@blocklet/constant": "1.17.
|
|
55
|
+
"@blocklet/constant": "1.17.13-beta-20260512-004004-69bacba8",
|
|
43
56
|
"@blocklet/did-domain-react": "^0.6.21",
|
|
44
57
|
"@blocklet/did-space-react": "1.2.23",
|
|
45
58
|
"@blocklet/error": "^0.3.5",
|
|
46
|
-
"@blocklet/js-sdk": "1.17.
|
|
59
|
+
"@blocklet/js-sdk": "1.17.13-beta-20260512-004004-69bacba8",
|
|
47
60
|
"@blocklet/launcher-layout": "^3.5.2",
|
|
48
61
|
"@blocklet/list": "^0.18.12",
|
|
49
|
-
"@blocklet/meta": "1.17.
|
|
62
|
+
"@blocklet/meta": "1.17.13-beta-20260512-004004-69bacba8",
|
|
50
63
|
"@blocklet/theme": "^3.5.2",
|
|
51
64
|
"@blocklet/ui-react": "^3.5.2",
|
|
52
65
|
"@blocklet/uploader": "^0.3.19",
|
|
@@ -127,5 +140,5 @@
|
|
|
127
140
|
"babel-plugin-inline-react-svg": "^2.0.2",
|
|
128
141
|
"glob": "^10.4.1"
|
|
129
142
|
},
|
|
130
|
-
"gitHead": "
|
|
143
|
+
"gitHead": "289f06c2f5a9390aa03cb942b29da0fc5bfdc745"
|
|
131
144
|
}
|