@abtnode/ux 1.16.51 → 1.16.52-beta-20250908-085420-224a58fa

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.
@@ -256,12 +256,12 @@ export default function MemberList({
256
256
  return true;
257
257
  }
258
258
  const role = session?.user?.role;
259
- const passports = (session?.user?.passports || []).filter(x => x.status === 'valid');
259
+ const passports = session?.user?.passports || [];
260
260
  const roleMatchedPassports = passports.filter(x => x.role === role);
261
261
  if (roleMatchedPassports.length === 0) {
262
262
  return true;
263
263
  }
264
- return roleMatchedPassports.some(x => !x.expirationDate);
264
+ return roleMatchedPassports.every(x => x.expirationDate);
265
265
  }, [session?.user, inService]);
266
266
  const getAccessibleUrl = useCallback(async () => {
267
267
  if (teamDid === nodeInfo.did) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/ux",
3
- "version": "1.16.51",
3
+ "version": "1.16.52-beta-20250908-085420-224a58fa",
4
4
  "description": "UX components shared across abtnode packages",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -25,33 +25,33 @@
25
25
  "author": "linchen <linchen1987@foxmail.com> (http://github.com/linchen1987)",
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@abtnode/auth": "1.16.51",
29
- "@abtnode/constant": "1.16.51",
30
- "@abtnode/docker-utils": "1.16.51",
31
- "@abtnode/util": "1.16.51",
28
+ "@abtnode/auth": "1.16.52-beta-20250908-085420-224a58fa",
29
+ "@abtnode/constant": "1.16.52-beta-20250908-085420-224a58fa",
30
+ "@abtnode/docker-utils": "1.16.52-beta-20250908-085420-224a58fa",
31
+ "@abtnode/util": "1.16.52-beta-20250908-085420-224a58fa",
32
32
  "@ahooksjs/use-url-state": "^3.5.1",
33
33
  "@arcblock/did": "1.24.0",
34
- "@arcblock/did-connect-react": "^3.1.34",
34
+ "@arcblock/did-connect-react": "^3.1.36",
35
35
  "@arcblock/did-ext": "^1.24.8",
36
36
  "@arcblock/did-motif": "^1.1.14",
37
- "@arcblock/icons": "^3.1.34",
38
- "@arcblock/nft-display": "^3.1.34",
39
- "@arcblock/react-hooks": "^3.1.34",
40
- "@arcblock/terminal": "^3.1.34",
41
- "@arcblock/ux": "^3.1.34",
37
+ "@arcblock/icons": "^3.1.36",
38
+ "@arcblock/nft-display": "^3.1.36",
39
+ "@arcblock/react-hooks": "^3.1.36",
40
+ "@arcblock/terminal": "^3.1.36",
41
+ "@arcblock/ux": "^3.1.36",
42
42
  "@arcblock/validator": "1.24.0",
43
43
  "@blocklet/aigne-hub": "^0.3.29",
44
- "@blocklet/constant": "1.16.51",
45
- "@blocklet/did-domain-react": "^0.5.34",
46
- "@blocklet/did-space-react": "^1.1.22",
44
+ "@blocklet/constant": "1.16.52-beta-20250908-085420-224a58fa",
45
+ "@blocklet/did-domain-react": "^0.5.38",
46
+ "@blocklet/did-space-react": "^1.1.23",
47
47
  "@blocklet/error": "^0.2.5",
48
- "@blocklet/js-sdk": "1.16.51",
49
- "@blocklet/launcher-layout": "^3.1.34",
50
- "@blocklet/list": "^0.17.21",
51
- "@blocklet/meta": "1.16.51",
52
- "@blocklet/theme": "^3.1.34",
53
- "@blocklet/ui-react": "^3.1.34",
54
- "@blocklet/uploader": "^0.2.9",
48
+ "@blocklet/js-sdk": "1.16.52-beta-20250908-085420-224a58fa",
49
+ "@blocklet/launcher-layout": "^3.1.36",
50
+ "@blocklet/list": "^0.17.22",
51
+ "@blocklet/meta": "1.16.52-beta-20250908-085420-224a58fa",
52
+ "@blocklet/theme": "^3.1.36",
53
+ "@blocklet/ui-react": "^3.1.36",
54
+ "@blocklet/uploader": "^0.2.10",
55
55
  "@emotion/react": "^11.14.0",
56
56
  "@emotion/styled": "^11.14.1",
57
57
  "@iconify-icons/material-symbols": "^1.2.58",
@@ -128,5 +128,5 @@
128
128
  "jest": "^29.7.0",
129
129
  "jest-environment-jsdom": "^29.7.0"
130
130
  },
131
- "gitHead": "32897dd6a5e92368f1870bba34cbbb38da95da89"
131
+ "gitHead": "400eda55fc1058c961fd622907237a649b5c4f86"
132
132
  }