@abtnode/ux 1.8.25 → 1.8.27

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.
Files changed (62) hide show
  1. package/lib/actions.js +137 -0
  2. package/lib/blocklet/actions.js +501 -0
  3. package/lib/blocklet/audit-logs.js +226 -0
  4. package/lib/blocklet/avatar.js +123 -0
  5. package/lib/blocklet/blocklet-source.js +69 -0
  6. package/lib/blocklet/component/configuration.js +150 -0
  7. package/lib/blocklet/component/delete.js +138 -0
  8. package/lib/blocklet/component/environment.js +334 -0
  9. package/lib/blocklet/component/index.js +837 -0
  10. package/lib/blocklet/component/setting.js +174 -0
  11. package/lib/blocklet/configuration.js +531 -0
  12. package/lib/blocklet/disk-info.js +115 -0
  13. package/lib/blocklet/icons.js +36 -0
  14. package/lib/blocklet/log.js +70 -0
  15. package/lib/blocklet/mode.js +47 -0
  16. package/lib/blocklet/overview.js +218 -0
  17. package/lib/blocklet/runtime-info.js +111 -0
  18. package/lib/blocklet/status.js +125 -0
  19. package/lib/blocklet/util.js +141 -0
  20. package/lib/blocklet/version.js +216 -0
  21. package/lib/click-to-copy.js +51 -0
  22. package/lib/confirm.js +175 -0
  23. package/lib/contexts/audit-log.js +155 -0
  24. package/lib/contexts/deleting-blocklets.js +91 -0
  25. package/lib/contexts/node.js +34 -0
  26. package/lib/contexts/session.js +22 -0
  27. package/lib/contexts/team.js +22 -0
  28. package/lib/did-address.js +95 -0
  29. package/lib/dot.js +25 -0
  30. package/lib/hooks/mobile-width.js +24 -0
  31. package/lib/icons/long-arrow.svg +5 -0
  32. package/lib/locales/en.js +1046 -38
  33. package/lib/locales/zh.js +1049 -36
  34. package/lib/logs/clock.js +25 -0
  35. package/lib/logs/log-terminal.js +198 -0
  36. package/lib/passport-tag.js +58 -0
  37. package/lib/permission.js +84 -0
  38. package/lib/relative-time.js +74 -0
  39. package/lib/table-icons.js +59 -0
  40. package/lib/table.js +19 -0
  41. package/lib/tag.js +48 -0
  42. package/lib/team/members/actions.js +115 -0
  43. package/lib/team/members/index.js +544 -0
  44. package/lib/team/members/invitations.js +229 -0
  45. package/lib/team/members/invite-member.js +241 -0
  46. package/lib/team/members/issue-passport.js +178 -0
  47. package/lib/team/members/member.js +336 -0
  48. package/lib/team/members/passport-issuances.js +181 -0
  49. package/lib/team/members/passports.js +377 -0
  50. package/lib/team/members/toggle-user-approval.js +154 -0
  51. package/lib/team/members/transfer-node.js +295 -0
  52. package/lib/team/members/util.js +27 -0
  53. package/lib/team/passports/detail.js +304 -0
  54. package/lib/team/passports/index.js +256 -0
  55. package/lib/team/passports/mutate-role.js +230 -0
  56. package/lib/team/passports/trusted-issuer.js +339 -0
  57. package/lib/team/passports/trusted-issuers.js +284 -0
  58. package/lib/team/search-input.js +51 -0
  59. package/lib/team/styles/dialog.js +19 -0
  60. package/lib/team/styles/list-header.js +19 -0
  61. package/lib/util/index.js +642 -6
  62. package/package.json +32 -9
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.8.25",
6
+ "version": "1.8.27",
7
7
  "description": "UX components shared across abtnode packages",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -21,26 +21,49 @@
21
21
  "author": "linchen <linchen1987@foxmail.com> (http://github.com/linchen1987)",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@abtnode/auth": "1.8.25",
25
- "@abtnode/constant": "1.8.25",
26
- "@arcblock/did-connect": "^2.4.32",
27
- "@arcblock/icons": "^2.4.32",
28
- "@arcblock/ux": "^2.4.32",
29
- "@blocklet/meta": "1.8.25",
24
+ "@abtnode/auth": "1.8.27",
25
+ "@abtnode/constant": "1.8.27",
26
+ "@abtnode/util": "1.8.27",
27
+ "@arcblock/did-connect": "^2.4.35",
28
+ "@arcblock/did-motif": "^1.1.10",
29
+ "@arcblock/icons": "^2.4.35",
30
+ "@arcblock/terminal": "^2.4.35",
31
+ "@arcblock/ux": "^2.4.35",
32
+ "@blocklet/constant": "1.8.27",
33
+ "@blocklet/launcher-layout": "^1.9.0",
34
+ "@blocklet/meta": "1.8.27",
30
35
  "@emotion/react": "^11.10.0",
31
36
  "@emotion/styled": "^11.10.0",
37
+ "@material-table/core": "^0.2.35",
32
38
  "@mui/icons-material": "^5.8.4",
39
+ "@mui/lab": "^5.0.0-alpha.94",
33
40
  "@mui/material": "^5.10.0",
34
41
  "@mui/styles": "^5.9.3",
42
+ "@uiw/react-markdown-preview": "4.0.6",
35
43
  "ahooks": "^3.7.0",
44
+ "axios": "^0.27.2",
45
+ "classnames": "^2.3.1",
36
46
  "dayjs": "^1.11.4",
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
63
  "react-router-dom": "^6.3.0",
43
- "react-use": "^17.4.0"
64
+ "react-use": "^17.4.0",
65
+ "semver": "^7.3.7",
66
+ "url-join": "^4.0.1"
44
67
  },
45
68
  "devDependencies": {
46
69
  "@babel/cli": "^7.18.10",
@@ -50,5 +73,5 @@
50
73
  "@babel/preset-react": "^7.18.6",
51
74
  "babel-plugin-inline-react-svg": "^1.1.2"
52
75
  },
53
- "gitHead": "ea34dcd0037c63cb63b31744efcf169edf8aa776"
76
+ "gitHead": "84b2cb3ee703479f17e88c91650ecf3015cbf6af"
54
77
  }