@arcblock/ux 2.13.52 → 2.13.54
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.
@@ -4,9 +4,5 @@ declare const _default: import("react").MemoExoticComponent<import("react").Forw
|
|
4
4
|
locale?: Locale;
|
5
5
|
src: string;
|
6
6
|
storageAccessState: StorageAccessState;
|
7
|
-
onHandle: (data: {
|
8
|
-
value: boolean;
|
9
|
-
error?: Error;
|
10
|
-
}) => void;
|
11
7
|
} & import("react").RefAttributes<unknown>>>;
|
12
8
|
export default _default;
|
@@ -66,8 +66,7 @@ const translations = {
|
|
66
66
|
const RequestStorageAccessApiDialog = /*#__PURE__*/forwardRef(({
|
67
67
|
locale = 'en',
|
68
68
|
src,
|
69
|
-
storageAccessState
|
70
|
-
onHandle = noop
|
69
|
+
storageAccessState
|
71
70
|
}, ref) => {
|
72
71
|
const sharedBridgeRef = useRef(null);
|
73
72
|
const currentState = useReactive({
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@arcblock/ux",
|
3
|
-
"version": "2.13.
|
3
|
+
"version": "2.13.54",
|
4
4
|
"description": "Common used react components for arcblock products",
|
5
5
|
"keywords": [
|
6
6
|
"react",
|
@@ -71,14 +71,14 @@
|
|
71
71
|
"react": ">=18.2.0",
|
72
72
|
"react-router-dom": ">=6.22.3"
|
73
73
|
},
|
74
|
-
"gitHead": "
|
74
|
+
"gitHead": "6515646bea775127c4c85c737b6233823a0062ec",
|
75
75
|
"dependencies": {
|
76
76
|
"@arcblock/did-motif": "^1.1.13",
|
77
|
-
"@arcblock/icons": "^2.13.
|
78
|
-
"@arcblock/nft-display": "^2.13.
|
79
|
-
"@arcblock/react-hooks": "^2.13.
|
77
|
+
"@arcblock/icons": "^2.13.54",
|
78
|
+
"@arcblock/nft-display": "^2.13.54",
|
79
|
+
"@arcblock/react-hooks": "^2.13.54",
|
80
80
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
81
|
-
"@blocklet/theme": "^2.13.
|
81
|
+
"@blocklet/theme": "^2.13.54",
|
82
82
|
"@fontsource/roboto": "~5.1.1",
|
83
83
|
"@fontsource/ubuntu-mono": "^5.0.18",
|
84
84
|
"@iconify-icons/logos": "^1.2.36",
|
@@ -73,12 +73,10 @@ const RequestStorageAccessApiDialog = forwardRef(
|
|
73
73
|
locale = 'en',
|
74
74
|
src,
|
75
75
|
storageAccessState,
|
76
|
-
onHandle = noop,
|
77
76
|
}: {
|
78
77
|
locale?: Locale;
|
79
78
|
src: string;
|
80
79
|
storageAccessState: StorageAccessState;
|
81
|
-
onHandle: (data: { value: boolean; error?: Error }) => void;
|
82
80
|
},
|
83
81
|
ref
|
84
82
|
) => {
|