@abtnode/ux 1.8.39 → 1.8.40
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/access/config-access.js +5 -1
- package/lib/blocklet/access/index.js +1 -0
- package/lib/blocklet/avatar.js +6 -15
- package/lib/blocklet/component/add.js +1 -2
- package/lib/blocklet/component/navigation/locale-tabs.js +218 -0
- package/lib/blocklet/component/navigation/navigation-actions.js +103 -0
- package/lib/blocklet/component/navigation/navigation-dialog.js +613 -0
- package/lib/blocklet/component/navigation/navigation-preview.js +101 -0
- package/lib/blocklet/component/navigation/simple-select.js +129 -0
- package/lib/blocklet/component/sortable-tree.js +124 -0
- package/lib/blocklet/config-navigation.js +320 -0
- package/lib/blocklet/configuration.js +1 -2
- package/lib/blocklet/preferences/index.js +3 -0
- package/lib/hooks/blocklet.js +13 -1
- package/lib/hooks/use-avatar.js +36 -0
- package/lib/hooks/use-navigation.js +373 -0
- package/lib/locales/en.js +24 -1
- package/lib/locales/zh.js +24 -1
- package/lib/team/members/passports.js +3 -3
- package/lib/team/passports/color.js +1 -2
- package/lib/team/passports/index.js +5 -4
- package/lib/util/locales.js +28 -0
- package/package.json +21 -13
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.40",
|
|
7
7
|
"description": "UX components shared across abtnode packages",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -21,20 +21,22 @@
|
|
|
21
21
|
"author": "linchen <linchen1987@foxmail.com> (http://github.com/linchen1987)",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@abtnode/auth": "1.8.
|
|
25
|
-
"@abtnode/constant": "1.8.
|
|
26
|
-
"@abtnode/util": "1.8.
|
|
27
|
-
"@arcblock/did-connect": "^2.4.
|
|
24
|
+
"@abtnode/auth": "1.8.40",
|
|
25
|
+
"@abtnode/constant": "1.8.40",
|
|
26
|
+
"@abtnode/util": "1.8.40",
|
|
27
|
+
"@arcblock/did-connect": "^2.4.55",
|
|
28
28
|
"@arcblock/did-motif": "^1.1.10",
|
|
29
|
-
"@arcblock/icons": "^2.4.
|
|
30
|
-
"@arcblock/terminal": "^2.4.
|
|
31
|
-
"@arcblock/ux": "^2.4.
|
|
32
|
-
"@blocklet/constant": "1.8.
|
|
33
|
-
"@blocklet/launcher-layout": "^1.9.
|
|
34
|
-
"@blocklet/list": "^0.10.
|
|
35
|
-
"@blocklet/meta": "1.8.
|
|
29
|
+
"@arcblock/icons": "^2.4.55",
|
|
30
|
+
"@arcblock/terminal": "^2.4.55",
|
|
31
|
+
"@arcblock/ux": "^2.4.55",
|
|
32
|
+
"@blocklet/constant": "1.8.40",
|
|
33
|
+
"@blocklet/launcher-layout": "^1.9.15",
|
|
34
|
+
"@blocklet/list": "^0.10.38",
|
|
35
|
+
"@blocklet/meta": "1.8.40",
|
|
36
|
+
"@blocklet/ui-react": "^2.4.55",
|
|
36
37
|
"@emotion/react": "^11.10.4",
|
|
37
38
|
"@emotion/styled": "^11.10.4",
|
|
39
|
+
"@iconify/react": "^4.0.0",
|
|
38
40
|
"@material-table/core": "^0.2.48",
|
|
39
41
|
"@mui/icons-material": "^5.10.6",
|
|
40
42
|
"@mui/lab": "^5.0.0-alpha.102",
|
|
@@ -49,12 +51,14 @@
|
|
|
49
51
|
"filesize": "^6.4.0",
|
|
50
52
|
"flat": "^5.0.2",
|
|
51
53
|
"humanize-url": "^2.1.1",
|
|
54
|
+
"is-absolute-url": "3",
|
|
52
55
|
"is-url": "^1.2.4",
|
|
53
56
|
"js-yaml": "^4.1.0",
|
|
54
57
|
"jszip": "^3.10.1",
|
|
55
58
|
"lodash": "^4.17.21",
|
|
56
59
|
"md5": "^2.3.0",
|
|
57
60
|
"moment": "^2.29.4",
|
|
61
|
+
"nanoid": "^4.0.0",
|
|
58
62
|
"notistack": "2.0.5",
|
|
59
63
|
"p-wait-for": "^4.1.0",
|
|
60
64
|
"pretty-ms-i18n": "^1.0.3",
|
|
@@ -62,10 +66,14 @@
|
|
|
62
66
|
"react": "^18.2.0",
|
|
63
67
|
"react-color": "^2.19.3",
|
|
64
68
|
"react-error-boundary": "^3.1.4",
|
|
69
|
+
"react-hook-form": "^7.39.3",
|
|
65
70
|
"react-iframe": "^1.8.5",
|
|
66
71
|
"react-router-dom": "^6.4.2",
|
|
72
|
+
"react-sortable-tree": "^2.8.0",
|
|
73
|
+
"react-sortable-tree-theme-material-ui": "^1.0.16",
|
|
67
74
|
"react-use": "^17.4.0",
|
|
68
75
|
"semver": "^7.3.8",
|
|
76
|
+
"ufo": "^1.0.1",
|
|
69
77
|
"url-join": "^4.0.1"
|
|
70
78
|
},
|
|
71
79
|
"devDependencies": {
|
|
@@ -76,5 +84,5 @@
|
|
|
76
84
|
"@babel/preset-react": "^7.18.6",
|
|
77
85
|
"babel-plugin-inline-react-svg": "^1.1.2"
|
|
78
86
|
},
|
|
79
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "336dbe0ad2cf512a322358899e56aab3668b1715"
|
|
80
88
|
}
|