@abtnode/ux 1.8.36 → 1.8.38
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 +299 -0
- package/lib/blocklet/access/index.js +220 -0
- package/lib/blocklet/actions.js +1 -3
- package/lib/blocklet/agreement-app.js +28 -0
- package/lib/blocklet/agreement.js +72 -0
- package/lib/blocklet/avatar.js +9 -18
- package/lib/blocklet/component/add.js +1083 -0
- package/lib/blocklet/component/configuration.js +1 -1
- package/lib/blocklet/component/environment.js +1 -1
- package/lib/blocklet/component/index.js +7 -9
- package/lib/blocklet/component/select-store.js +151 -0
- package/lib/blocklet/component/store-blocklet-list.js +203 -0
- package/lib/blocklet/configuration.js +5 -87
- package/lib/blocklet/install-from-url.js +362 -0
- package/lib/blocklet/overview.js +21 -12
- package/lib/blocklet/preferences/index.js +233 -0
- package/lib/blocklet/purchase/common.js +103 -0
- package/lib/blocklet/purchase/component-purchase.js +251 -0
- package/lib/blocklet/purchase/index.js +13 -0
- package/lib/blocklet/runtime-info.js +1 -0
- package/lib/blocklet/util.js +4 -16
- package/lib/blocklet/version.js +1 -1
- package/lib/hooks/blocklet.js +26 -10
- package/lib/layout/feedback.js +8 -10
- package/lib/locales/en.js +9 -2
- package/lib/locales/zh.js +9 -2
- package/lib/schema-form/index.js +1 -1
- package/lib/store/add.js +185 -0
- package/lib/store/delete.js +102 -0
- package/lib/store/item.js +84 -0
- package/lib/team/passports/color.js +1 -1
- package/lib/team/passports/detail.js +39 -31
- package/lib/util/api.js +21 -0
- package/lib/util/constants.js +10 -0
- package/lib/util/index.js +24 -8
- package/lib/who-can-access/config.js +13 -13
- package/package.json +11 -8
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.38",
|
|
7
7
|
"description": "UX components shared across abtnode packages",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -21,17 +21,18 @@
|
|
|
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.
|
|
24
|
+
"@abtnode/auth": "1.8.38",
|
|
25
|
+
"@abtnode/constant": "1.8.38",
|
|
26
|
+
"@abtnode/util": "1.8.38",
|
|
27
27
|
"@arcblock/did-connect": "^2.4.52",
|
|
28
28
|
"@arcblock/did-motif": "^1.1.10",
|
|
29
29
|
"@arcblock/icons": "^2.4.52",
|
|
30
30
|
"@arcblock/terminal": "^2.4.52",
|
|
31
31
|
"@arcblock/ux": "^2.4.52",
|
|
32
|
-
"@blocklet/constant": "1.8.
|
|
33
|
-
"@blocklet/launcher-layout": "^1.9.
|
|
34
|
-
"@blocklet/
|
|
32
|
+
"@blocklet/constant": "1.8.38",
|
|
33
|
+
"@blocklet/launcher-layout": "^1.9.12",
|
|
34
|
+
"@blocklet/list": "^0.10.36",
|
|
35
|
+
"@blocklet/meta": "1.8.38",
|
|
35
36
|
"@emotion/react": "^11.10.4",
|
|
36
37
|
"@emotion/styled": "^11.10.4",
|
|
37
38
|
"@material-table/core": "^0.2.48",
|
|
@@ -60,6 +61,8 @@
|
|
|
60
61
|
"prop-types": "^15.8.1",
|
|
61
62
|
"react": "^18.2.0",
|
|
62
63
|
"react-color": "^2.19.3",
|
|
64
|
+
"react-error-boundary": "^3.1.4",
|
|
65
|
+
"react-iframe": "^1.8.5",
|
|
63
66
|
"react-router-dom": "^6.4.2",
|
|
64
67
|
"react-use": "^17.4.0",
|
|
65
68
|
"semver": "^7.3.8",
|
|
@@ -73,5 +76,5 @@
|
|
|
73
76
|
"@babel/preset-react": "^7.18.6",
|
|
74
77
|
"babel-plugin-inline-react-svg": "^1.1.2"
|
|
75
78
|
},
|
|
76
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "cbb88f107eb6b403c8cd47a765920575860c7bc7"
|
|
77
80
|
}
|