hd-wallet-ui 1.1.2 → 1.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hd-wallet-ui",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "HD Wallet modal UI — login, keys, identity, trust map, and security bond. Attach to any button in your app.",
5
5
  "type": "module",
6
6
  "main": "src/app.js",
@@ -34,7 +34,7 @@
34
34
  "bip39": "^3.1.0",
35
35
  "buffer": "^6.0.3",
36
36
  "flatbuffers": "^25.9.23",
37
- "hd-wallet-wasm": "^1.1.2",
37
+ "hd-wallet-wasm": "^1.1.3",
38
38
  "qrcode": "^1.5.3",
39
39
  "vcard-cryptoperson": "^1.1.10"
40
40
  },
package/src/app.js CHANGED
@@ -2586,6 +2586,7 @@ function setupMainAppHandlers() {
2586
2586
  if (video) {
2587
2587
  video.srcObject = cameraStream;
2588
2588
  video.style.display = '';
2589
+ await video.play();
2589
2590
  }
2590
2591
  const preview = $('vcard-photo-preview');
2591
2592
  if (preview) {
package/styles/main.css CHANGED
@@ -142,6 +142,10 @@ body {
142
142
  border-bottom: 1px solid var(--glass-border);
143
143
  }
144
144
 
145
+ body:has(.modal.active) {
146
+ overflow: hidden;
147
+ }
148
+
145
149
  body:has(.modal.active) .nav-bar {
146
150
  z-index: 1;
147
151
  }