@lumiapassport/ui-kit 1.4.7 → 1.4.9
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 +9 -1
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +62 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +58 -11
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/iframe/index.html
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
|
|
15
15
|
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin" />
|
|
16
16
|
|
|
17
|
-
<title>Lumia Passport Secure Wallet</title>
|
|
17
|
+
<title>Lumia Passport Secure Wallet - iframe version 1.4.9</title>
|
|
18
18
|
|
|
19
19
|
<!-- Styles will be injected by build process -->
|
|
20
20
|
<style>
|
package/dist/iframe/main.js
CHANGED
|
@@ -3649,7 +3649,7 @@ var BackupManager = class {
|
|
|
3649
3649
|
};
|
|
3650
3650
|
|
|
3651
3651
|
// src/iframe/main.ts
|
|
3652
|
-
var IFRAME_VERSION = "1.4.
|
|
3652
|
+
var IFRAME_VERSION = "1.4.9";
|
|
3653
3653
|
var IframeWallet = class {
|
|
3654
3654
|
constructor() {
|
|
3655
3655
|
console.log("=".repeat(60));
|
|
@@ -4193,6 +4193,14 @@ var IframeWallet = class {
|
|
|
4193
4193
|
<strong>Status:</strong>
|
|
4194
4194
|
<span class="status-active">Active</span>
|
|
4195
4195
|
</div>
|
|
4196
|
+
<div class="info-row">
|
|
4197
|
+
<strong>Version:</strong>
|
|
4198
|
+
<span>${IFRAME_VERSION}</span>
|
|
4199
|
+
</div>
|
|
4200
|
+
<div class="info-row">
|
|
4201
|
+
<strong>Documentation:</strong>
|
|
4202
|
+
<a href="https://docs.lumiapassport.com/" target="_blank" rel="noopener noreferrer" style="color: #667eea; text-decoration: none;">docs.lumiapassport.com</a>
|
|
4203
|
+
</div>
|
|
4196
4204
|
</div>
|
|
4197
4205
|
</div>
|
|
4198
4206
|
`;
|