@lumiapassport/ui-kit 1.9.0 → 1.9.2
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/iframe/index.html +1 -1
- package/dist/iframe/main.js +11 -19
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +66 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -9
- package/dist/index.d.ts +38 -9
- package/dist/index.js +63 -27
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/iframe/index.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
|
|
16
16
|
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin" />
|
|
17
17
|
|
|
18
|
-
<title>Lumia Passport Secure Wallet - iframe version 1.9.
|
|
18
|
+
<title>Lumia Passport Secure Wallet - iframe version 1.9.2</title>
|
|
19
19
|
|
|
20
20
|
<!-- Styles will be injected by build process -->
|
|
21
21
|
<style>
|
package/dist/iframe/main.js
CHANGED
|
@@ -3129,33 +3129,25 @@ var SigningManager = class extends TokenRefreshApiClient {
|
|
|
3129
3129
|
|
|
3130
3130
|
<!-- EIP712 Message Content -->
|
|
3131
3131
|
<div class="eip712-content">
|
|
3132
|
-
<div class="section-title">\u{1F4DD} Message</div>
|
|
3133
|
-
<div class="eip712-section">
|
|
3134
|
-
<div class="section-subtitle">${typedData.primaryType}</div>
|
|
3135
|
-
${messageFields}
|
|
3136
|
-
</div>
|
|
3137
|
-
|
|
3138
3132
|
<details class="eip712-details">
|
|
3139
|
-
<summary
|
|
3133
|
+
<summary>Advanced details</summary>
|
|
3134
|
+
|
|
3135
|
+
<div class="section-title">\u{1F4DD} Message</div>
|
|
3136
|
+
<div class="eip712-section">
|
|
3137
|
+
<div class="section-subtitle">${typedData.primaryType}</div>
|
|
3138
|
+
${messageFields}
|
|
3139
|
+
</div>
|
|
3140
|
+
|
|
3141
|
+
<div class="section-title" style="margin-top: 16px;">\u{1F50D} Domain</div>
|
|
3140
3142
|
<div class="eip712-section">
|
|
3141
3143
|
${domainFields}
|
|
3142
3144
|
</div>
|
|
3143
|
-
</details>
|
|
3144
3145
|
|
|
3145
|
-
|
|
3146
|
-
<summary>\u{1F4CB} Full Message</summary>
|
|
3146
|
+
<div class="section-title" style="margin-top: 16px;">\u{1F4CB} Full Message</div>
|
|
3147
3147
|
<pre class="eip712-raw"><code>${JSON.stringify(typedData.message, null, 2)}</code></pre>
|
|
3148
3148
|
</details>
|
|
3149
3149
|
</div>
|
|
3150
3150
|
|
|
3151
|
-
<!-- Security Info -->
|
|
3152
|
-
<div class="security-info">
|
|
3153
|
-
<div class="info-item">
|
|
3154
|
-
<span class="info-label">Signing with:</span>
|
|
3155
|
-
<span class="info-value">${this.storage.getOwnerAddress(userId) || userId.substring(0, 20) + "..."}</span>
|
|
3156
|
-
</div>
|
|
3157
|
-
</div>
|
|
3158
|
-
|
|
3159
3151
|
<!-- Trust App Option -->
|
|
3160
3152
|
<div class="trust-app-section">
|
|
3161
3153
|
<label class="trust-app-label">
|
|
@@ -3955,7 +3947,7 @@ var BackupManager = class {
|
|
|
3955
3947
|
};
|
|
3956
3948
|
|
|
3957
3949
|
// src/iframe/main.ts
|
|
3958
|
-
var IFRAME_VERSION = "1.9.
|
|
3950
|
+
var IFRAME_VERSION = "1.9.2";
|
|
3959
3951
|
var IframeWallet = class {
|
|
3960
3952
|
constructor() {
|
|
3961
3953
|
console.log("=".repeat(60));
|