@miden-sdk/miden-wallet-adapter 0.13.5 → 0.14.0
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/styles.css +17 -4
- package/package.json +5 -5
package/dist/styles.css
CHANGED
|
@@ -154,6 +154,8 @@
|
|
|
154
154
|
justify-content: center;
|
|
155
155
|
cursor: pointer;
|
|
156
156
|
padding: 13px;
|
|
157
|
+
border: none;
|
|
158
|
+
background: none;
|
|
157
159
|
border-radius: 8px;
|
|
158
160
|
}
|
|
159
161
|
|
|
@@ -199,11 +201,12 @@
|
|
|
199
201
|
max-width: 360px;
|
|
200
202
|
border-radius: 16px;
|
|
201
203
|
background: white;
|
|
202
|
-
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.
|
|
204
|
+
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
|
|
203
205
|
font-family: 'Inter', 'Roboto', 'Helvetica Neue', Helvetica, Arial,
|
|
204
206
|
sans-serif;
|
|
205
207
|
flex: 1;
|
|
206
208
|
color: black;
|
|
209
|
+
overflow: hidden;
|
|
207
210
|
}
|
|
208
211
|
|
|
209
212
|
.wallet-adapter-modal-wrapper .wallet-adapter-button {
|
|
@@ -309,8 +312,8 @@
|
|
|
309
312
|
flex-direction: column;
|
|
310
313
|
align-items: center;
|
|
311
314
|
text-align: center;
|
|
312
|
-
padding: 40px 0
|
|
313
|
-
margin-bottom:
|
|
315
|
+
padding: 40px 0 24px;
|
|
316
|
+
margin-bottom: 0;
|
|
314
317
|
}
|
|
315
318
|
|
|
316
319
|
.wallet-adapter-modal-discover-miden-message h1 {
|
|
@@ -332,7 +335,7 @@
|
|
|
332
335
|
display: flex;
|
|
333
336
|
flex-direction: column;
|
|
334
337
|
align-items: center;
|
|
335
|
-
padding: 8px 16px
|
|
338
|
+
padding: 8px 16px 24px 16px;
|
|
336
339
|
box-sizing: border-box;
|
|
337
340
|
}
|
|
338
341
|
|
|
@@ -357,3 +360,13 @@
|
|
|
357
360
|
.wallet-adapter-modal-middle-button svg {
|
|
358
361
|
margin-left: 8px;
|
|
359
362
|
}
|
|
363
|
+
|
|
364
|
+
.wallet-adapter-modal-chrome-badge {
|
|
365
|
+
display: inline-block;
|
|
366
|
+
margin-top: 4px;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.wallet-adapter-modal-chrome-badge img {
|
|
370
|
+
height: 58px;
|
|
371
|
+
width: auto;
|
|
372
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miden-sdk/miden-wallet-adapter",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Modular TypeScript wallet adapters and React components for Miden applications.",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"doc": "echo \"(no docs)\""
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@miden-sdk/miden-wallet-adapter-base": "^0.
|
|
17
|
-
"@miden-sdk/miden-wallet-adapter-miden": "^0.
|
|
18
|
-
"@miden-sdk/miden-wallet-adapter-react": "^0.
|
|
19
|
-
"@miden-sdk/miden-wallet-adapter-reactui": "^0.
|
|
16
|
+
"@miden-sdk/miden-wallet-adapter-base": "^0.14.0",
|
|
17
|
+
"@miden-sdk/miden-wallet-adapter-miden": "^0.14.0",
|
|
18
|
+
"@miden-sdk/miden-wallet-adapter-react": "^0.14.0",
|
|
19
|
+
"@miden-sdk/miden-wallet-adapter-reactui": "^0.14.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/react-dom": "^19.0.4",
|