@abtnode/ux 1.16.21-beta-46c675eb → 1.16.21-beta-e828f413
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/es/blocklet/configuration.js +9 -4
- package/es/blocklet/router/action/add-domain-alias.js +26 -6
- package/es/blocklet/router/add-domain.js +40 -12
- package/es/confirm.js +10 -4
- package/es/contexts/domain.js +75 -0
- package/es/form/form-autocomplete-input.js +282 -0
- package/es/hooks/use-snackbar.js +2 -0
- package/es/hooks/use-width.js +12 -0
- package/es/locales/en.js +8 -6
- package/es/locales/zh.js +8 -6
- package/es/notifications/addon.js +91 -0
- package/es/notifications/default-icon-variants.js +53 -0
- package/es/notifications/list.js +251 -0
- package/es/notifications/notification.js +148 -0
- package/es/notifications/page.js +316 -0
- package/es/notifications/tag.js +28 -0
- package/lib/blocklet/configuration.js +9 -4
- package/lib/blocklet/router/action/add-domain-alias.js +24 -6
- package/lib/blocklet/router/add-domain.js +39 -11
- package/lib/confirm.js +12 -6
- package/lib/contexts/domain.js +85 -0
- package/lib/form/form-autocomplete-input.js +295 -0
- package/lib/hooks/use-snackbar.js +8 -0
- package/lib/hooks/use-width.js +19 -0
- package/lib/locales/en.js +8 -6
- package/lib/locales/zh.js +8 -6
- package/lib/notifications/addon.js +99 -0
- package/lib/notifications/default-icon-variants.js +61 -0
- package/lib/notifications/list.js +216 -0
- package/lib/notifications/notification.js +139 -0
- package/lib/notifications/page.js +267 -0
- package/lib/notifications/tag.js +44 -0
- package/package.json +20 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/ux",
|
|
3
|
-
"version": "1.16.21-beta-
|
|
3
|
+
"version": "1.16.21-beta-e828f413",
|
|
4
4
|
"description": "UX components shared across abtnode packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,24 +27,24 @@
|
|
|
27
27
|
"author": "linchen <linchen1987@foxmail.com> (http://github.com/linchen1987)",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@abtnode/auth": "1.16.21-beta-
|
|
31
|
-
"@abtnode/constant": "1.16.21-beta-
|
|
32
|
-
"@abtnode/util": "1.16.21-beta-
|
|
30
|
+
"@abtnode/auth": "1.16.21-beta-e828f413",
|
|
31
|
+
"@abtnode/constant": "1.16.21-beta-e828f413",
|
|
32
|
+
"@abtnode/util": "1.16.21-beta-e828f413",
|
|
33
33
|
"@ahooksjs/use-url-state": "^3.5.1",
|
|
34
|
-
"@arcblock/did": "^1.18.
|
|
35
|
-
"@arcblock/did-connect": "^2.8.
|
|
34
|
+
"@arcblock/did": "^1.18.107",
|
|
35
|
+
"@arcblock/did-connect": "^2.8.23",
|
|
36
36
|
"@arcblock/did-motif": "^1.1.13",
|
|
37
|
-
"@arcblock/icons": "^2.8.
|
|
38
|
-
"@arcblock/nft-display": "2.8.
|
|
39
|
-
"@arcblock/react-hooks": "^2.8.
|
|
40
|
-
"@arcblock/terminal": "^2.8.
|
|
41
|
-
"@arcblock/ux": "^2.8.
|
|
42
|
-
"@blocklet/constant": "1.16.21-beta-
|
|
37
|
+
"@arcblock/icons": "^2.8.23",
|
|
38
|
+
"@arcblock/nft-display": "2.8.23",
|
|
39
|
+
"@arcblock/react-hooks": "^2.8.23",
|
|
40
|
+
"@arcblock/terminal": "^2.8.23",
|
|
41
|
+
"@arcblock/ux": "^2.8.23",
|
|
42
|
+
"@blocklet/constant": "1.16.21-beta-e828f413",
|
|
43
43
|
"@blocklet/launcher-layout": "2.2.48",
|
|
44
|
-
"@blocklet/list": "^0.12.
|
|
45
|
-
"@blocklet/meta": "1.16.21-beta-
|
|
46
|
-
"@blocklet/ui-react": "^2.8.
|
|
47
|
-
"@blocklet/uploader": "^0.0.
|
|
44
|
+
"@blocklet/list": "^0.12.60",
|
|
45
|
+
"@blocklet/meta": "1.16.21-beta-e828f413",
|
|
46
|
+
"@blocklet/ui-react": "^2.8.23",
|
|
47
|
+
"@blocklet/uploader": "^0.0.55",
|
|
48
48
|
"@emotion/react": "^11.10.4",
|
|
49
49
|
"@emotion/styled": "^11.10.4",
|
|
50
50
|
"@iconify/react": "^4.0.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@mui/material": "^5.14.10",
|
|
55
55
|
"@mui/styles": "^5.14.10",
|
|
56
56
|
"@mui/x-date-pickers": "^6.14.0",
|
|
57
|
-
"@ocap/client": "1.18.
|
|
57
|
+
"@ocap/client": "1.18.107",
|
|
58
58
|
"@uiw/react-markdown-preview": "4.0.6",
|
|
59
59
|
"ahooks": "^3.7.1",
|
|
60
60
|
"axios": "^0.27.2",
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"md5": "^2.3.0",
|
|
72
72
|
"ms": "^2.1.3",
|
|
73
73
|
"mui-daterange-picker": "^1.0.5",
|
|
74
|
+
"notistack": "^2.0.8",
|
|
74
75
|
"p-wait-for": "^4.1.0",
|
|
75
76
|
"pretty-ms-i18n": "^1.0.3",
|
|
76
77
|
"prop-types": "^15.8.1",
|
|
@@ -87,6 +88,7 @@
|
|
|
87
88
|
"react-sortable-tree-theme-material-ui": "^1.0.16",
|
|
88
89
|
"react-use": "^17.4.0",
|
|
89
90
|
"semver": "^7.3.8",
|
|
91
|
+
"timeago.js": "^4.0.2",
|
|
90
92
|
"ufo": "^1.0.1",
|
|
91
93
|
"url-join": "^4.0.1",
|
|
92
94
|
"validator": "^13.9.0"
|
|
@@ -100,7 +102,7 @@
|
|
|
100
102
|
"babel-plugin-inline-react-svg": "^1.1.2",
|
|
101
103
|
"glob": "^10.3.3"
|
|
102
104
|
},
|
|
103
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "936af9cb0549f341d3683ea63085b460bf6ddbf0",
|
|
104
106
|
"exports": {
|
|
105
107
|
".": {
|
|
106
108
|
"import": "./es/index.js",
|