@abtnode/ux 1.8.26 → 1.8.28
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/actions.js +109 -0
- package/lib/blocklet/actions.js +437 -0
- package/lib/blocklet/audit-logs.js +194 -0
- package/lib/blocklet/avatar.js +96 -0
- package/lib/blocklet/blocklet-source.js +56 -0
- package/lib/blocklet/component/configuration.js +124 -0
- package/lib/blocklet/component/delete.js +115 -0
- package/lib/blocklet/component/environment.js +277 -0
- package/lib/blocklet/component/index.js +742 -0
- package/lib/blocklet/component/setting.js +135 -0
- package/lib/blocklet/configuration.js +463 -0
- package/lib/blocklet/disk-info.js +89 -0
- package/lib/blocklet/icons.js +26 -0
- package/lib/blocklet/log.js +55 -0
- package/lib/blocklet/mode.js +33 -0
- package/lib/blocklet/overview.js +184 -0
- package/lib/blocklet/runtime-info.js +85 -0
- package/lib/blocklet/status.js +103 -0
- package/lib/blocklet/util.js +119 -0
- package/lib/blocklet/version.js +178 -0
- package/lib/card-selector.js +9 -22
- package/lib/click-to-copy.js +36 -0
- package/lib/confirm.js +149 -0
- package/lib/contexts/audit-log.js +141 -0
- package/lib/contexts/deleting-blocklets.js +78 -0
- package/lib/contexts/node.js +28 -0
- package/lib/contexts/session.js +20 -0
- package/lib/contexts/team.js +19 -0
- package/lib/did-address.js +75 -0
- package/lib/dot.js +18 -0
- package/lib/form/form-text-input.js +12 -38
- package/lib/form/form-wrapper.js +0 -7
- package/lib/form/required.js +0 -6
- package/lib/hooks/mobile-width.js +19 -0
- package/lib/hooks/use-passport-id.js +0 -5
- package/lib/icons/long-arrow.svg +5 -0
- package/lib/index.js +0 -3
- package/lib/invitation/invitation-app.js +3 -21
- package/lib/invitation/invitation-passport.js +2 -16
- package/lib/invitation/invitation-receive.js +2 -19
- package/lib/invitation/invitation-user.js +0 -16
- package/lib/invitation/invitation.js +0 -23
- package/lib/issue-passport.js +2 -31
- package/lib/launch-blocklet/content-layout.js +3 -19
- package/lib/launch-blocklet/page-header.js +0 -9
- package/lib/layout/addon.js +0 -24
- package/lib/locales/en.js +1046 -38
- package/lib/locales/index.js +0 -3
- package/lib/locales/zh.js +1049 -36
- package/lib/logs/clock.js +19 -0
- package/lib/logs/log-terminal.js +172 -0
- package/lib/lost-passport.js +6 -51
- package/lib/nav-logo.js +12 -33
- package/lib/passport-tag.js +41 -0
- package/lib/permission.js +68 -0
- package/lib/relative-time.js +61 -0
- package/lib/schema-form/color-input.js +2 -15
- package/lib/schema-form/common-prop-types.js +0 -3
- package/lib/schema-form/index.js +8 -45
- package/lib/schema-form/passport-input.js +6 -24
- package/lib/schema-form/text-input.js +9 -26
- package/lib/table-icons.js +42 -0
- package/lib/table.js +13 -0
- package/lib/tag.js +35 -0
- package/lib/team/members/actions.js +99 -0
- package/lib/team/members/index.js +476 -0
- package/lib/team/members/invitations.js +196 -0
- package/lib/team/members/invite-member.js +212 -0
- package/lib/team/members/issue-passport.js +155 -0
- package/lib/team/members/member.js +294 -0
- package/lib/team/members/passport-issuances.js +154 -0
- package/lib/team/members/passports.js +329 -0
- package/lib/team/members/toggle-user-approval.js +128 -0
- package/lib/team/members/transfer-node.js +262 -0
- package/lib/team/members/util.js +20 -0
- package/lib/team/passports/detail.js +261 -0
- package/lib/team/passports/index.js +220 -0
- package/lib/team/passports/mutate-role.js +204 -0
- package/lib/team/passports/trusted-issuer.js +295 -0
- package/lib/team/passports/trusted-issuers.js +238 -0
- package/lib/team/search-input.js +36 -0
- package/lib/team/styles/dialog.js +13 -0
- package/lib/team/styles/list-header.js +13 -0
- package/lib/toast.js +4 -19
- package/lib/util/index.js +504 -38
- package/lib/who-can-access/config.js +0 -6
- package/lib/wrap-locale.js +0 -7
- package/package.json +43 -20
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.28",
|
|
7
7
|
"description": "UX components shared across abtnode packages",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -21,34 +21,57 @@
|
|
|
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
|
-
"@
|
|
27
|
-
"@arcblock/
|
|
28
|
-
"@arcblock/
|
|
29
|
-
"@
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"
|
|
36
|
-
"
|
|
24
|
+
"@abtnode/auth": "1.8.28",
|
|
25
|
+
"@abtnode/constant": "1.8.28",
|
|
26
|
+
"@abtnode/util": "1.8.28",
|
|
27
|
+
"@arcblock/did-connect": "^2.4.39",
|
|
28
|
+
"@arcblock/did-motif": "^1.1.10",
|
|
29
|
+
"@arcblock/icons": "^2.4.39",
|
|
30
|
+
"@arcblock/terminal": "^2.4.39",
|
|
31
|
+
"@arcblock/ux": "^2.4.39",
|
|
32
|
+
"@blocklet/constant": "1.8.28",
|
|
33
|
+
"@blocklet/launcher-layout": "^1.9.4",
|
|
34
|
+
"@blocklet/meta": "1.8.28",
|
|
35
|
+
"@emotion/react": "^11.10.4",
|
|
36
|
+
"@emotion/styled": "^11.10.4",
|
|
37
|
+
"@material-table/core": "^0.2.48",
|
|
38
|
+
"@mui/icons-material": "^5.10.6",
|
|
39
|
+
"@mui/lab": "^5.0.0-alpha.102",
|
|
40
|
+
"@mui/material": "^5.10.8",
|
|
41
|
+
"@mui/styles": "^5.10.8",
|
|
42
|
+
"@uiw/react-markdown-preview": "4.0.6",
|
|
43
|
+
"ahooks": "^3.7.1",
|
|
44
|
+
"axios": "^0.27.2",
|
|
45
|
+
"classnames": "^2.3.2",
|
|
46
|
+
"dayjs": "^1.11.5",
|
|
47
|
+
"file-saver": "^2.0.5",
|
|
48
|
+
"filesize": "^6.4.0",
|
|
37
49
|
"flat": "^5.0.2",
|
|
50
|
+
"humanize-url": "^2.1.1",
|
|
51
|
+
"is-url": "^1.2.4",
|
|
52
|
+
"js-yaml": "^4.1.0",
|
|
53
|
+
"jszip": "^3.10.1",
|
|
54
|
+
"lodash": "^4.17.21",
|
|
55
|
+
"md5": "^2.3.0",
|
|
56
|
+
"moment": "^2.29.4",
|
|
38
57
|
"notistack": "2.0.5",
|
|
58
|
+
"p-wait-for": "^4.1.0",
|
|
59
|
+
"pretty-ms-i18n": "^1.0.3",
|
|
39
60
|
"prop-types": "^15.8.1",
|
|
40
61
|
"react": "^18.2.0",
|
|
41
62
|
"react-color": "^2.19.3",
|
|
42
|
-
"react-router-dom": "^6.
|
|
43
|
-
"react-use": "^17.4.0"
|
|
63
|
+
"react-router-dom": "^6.4.2",
|
|
64
|
+
"react-use": "^17.4.0",
|
|
65
|
+
"semver": "^7.3.8",
|
|
66
|
+
"url-join": "^4.0.1"
|
|
44
67
|
},
|
|
45
68
|
"devDependencies": {
|
|
46
|
-
"@babel/cli": "^7.
|
|
47
|
-
"@babel/core": "^7.
|
|
69
|
+
"@babel/cli": "^7.19.3",
|
|
70
|
+
"@babel/core": "^7.19.3",
|
|
48
71
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
49
|
-
"@babel/preset-env": "^7.
|
|
72
|
+
"@babel/preset-env": "^7.19.4",
|
|
50
73
|
"@babel/preset-react": "^7.18.6",
|
|
51
74
|
"babel-plugin-inline-react-svg": "^1.1.2"
|
|
52
75
|
},
|
|
53
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "af7aacf5507177600ae563ab597cb42d7223b113"
|
|
54
77
|
}
|