@ukeyfe/hardware-core 1.1.29 → 1.1.30
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/dist/index.js +3 -3
- package/package.json +4 -4
- package/src/utils/homescreen.ts +3 -3
package/dist/index.js
CHANGED
|
@@ -26274,15 +26274,15 @@ const getHomeScreenSize = ({ deviceType, homeScreenType, thumbnail, }) => {
|
|
|
26274
26274
|
const sizes = {
|
|
26275
26275
|
touch: {
|
|
26276
26276
|
thumbnail: {
|
|
26277
|
-
Nft: { width:
|
|
26277
|
+
Nft: { width: 204, height: 204 },
|
|
26278
26278
|
WallPaper: { width: 144, height: 240 },
|
|
26279
26279
|
},
|
|
26280
26280
|
full: { width: 480, height: 800 },
|
|
26281
26281
|
},
|
|
26282
26282
|
pro: {
|
|
26283
26283
|
thumbnail: {
|
|
26284
|
-
Nft: { width:
|
|
26285
|
-
WallPaper: { width: 144, height: 240, radius:
|
|
26284
|
+
Nft: { width: 204, height: 204, radius: 20 },
|
|
26285
|
+
WallPaper: { width: 144, height: 240, radius: 20 },
|
|
26286
26286
|
},
|
|
26287
26287
|
full: { width: 480, height: 800 },
|
|
26288
26288
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukeyfe/hardware-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
4
4
|
"description": "Core processes and APIs for communicating with UKey hardware devices.",
|
|
5
5
|
"author": "UKey",
|
|
6
6
|
"homepage": "https://github.com/UKeyHQ/hardware-js-sdk#readme",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"url": "https://github.com/UKeyHQ/hardware-js-sdk/issues"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ukeyfe/hardware-shared": "1.1.
|
|
29
|
-
"@ukeyfe/hardware-transport": "1.1.
|
|
28
|
+
"@ukeyfe/hardware-shared": "1.1.30",
|
|
29
|
+
"@ukeyfe/hardware-transport": "1.1.30",
|
|
30
30
|
"axios": "1.12.2",
|
|
31
31
|
"bignumber.js": "^9.0.2",
|
|
32
32
|
"bytebuffer": "^5.0.1",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"@types/w3c-web-usb": "^1.0.10",
|
|
45
45
|
"@types/web-bluetooth": "^0.0.21"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "24d6e9bb7930b647e91a23a02747e41979e2627a"
|
|
48
48
|
}
|
package/src/utils/homescreen.ts
CHANGED
|
@@ -324,15 +324,15 @@ export const getHomeScreenSize = ({
|
|
|
324
324
|
> = {
|
|
325
325
|
touch: {
|
|
326
326
|
thumbnail: {
|
|
327
|
-
Nft: { width:
|
|
327
|
+
Nft: { width: 204, height: 204 },
|
|
328
328
|
WallPaper: { width: 144, height: 240 },
|
|
329
329
|
},
|
|
330
330
|
full: { width: 480, height: 800 },
|
|
331
331
|
},
|
|
332
332
|
pro: {
|
|
333
333
|
thumbnail: {
|
|
334
|
-
Nft: { width:
|
|
335
|
-
WallPaper: { width: 144, height: 240, radius:
|
|
334
|
+
Nft: { width: 204, height: 204, radius: 20 },
|
|
335
|
+
WallPaper: { width: 144, height: 240, radius: 20 },
|
|
336
336
|
},
|
|
337
337
|
full: { width: 480, height: 800 },
|
|
338
338
|
},
|