@lumiapassport/ui-kit 1.17.0 → 1.17.1
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 -2
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +52 -32
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -4
- package/dist/index.d.ts +15 -4
- package/dist/index.js +49 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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.17.
|
|
18
|
+
<title>Lumia Passport Secure Wallet - iframe version 1.17.1</title>
|
|
19
19
|
|
|
20
20
|
<!-- Styles will be injected by build process -->
|
|
21
21
|
<style>
|
package/dist/iframe/main.js
CHANGED
|
@@ -3236,7 +3236,16 @@ var RampnowOnrampAPI = class {
|
|
|
3236
3236
|
};
|
|
3237
3237
|
|
|
3238
3238
|
// src/lib/errors.ts
|
|
3239
|
-
|
|
3239
|
+
var LumiaPassportError = class _LumiaPassportError extends Error {
|
|
3240
|
+
constructor(message, code) {
|
|
3241
|
+
super(message);
|
|
3242
|
+
this.code = code;
|
|
3243
|
+
this.name = "LumiaPassportError";
|
|
3244
|
+
if (Error.captureStackTrace) {
|
|
3245
|
+
Error.captureStackTrace(this, _LumiaPassportError);
|
|
3246
|
+
}
|
|
3247
|
+
}
|
|
3248
|
+
};
|
|
3240
3249
|
var _UserRejectedError = class _UserRejectedError extends LumiaPassportError {
|
|
3241
3250
|
constructor(message = "User rejected transaction") {
|
|
3242
3251
|
super(message, _UserRejectedError.CODE);
|
|
@@ -4402,7 +4411,7 @@ var SigningManager = class extends TokenRefreshApiClient {
|
|
|
4402
4411
|
};
|
|
4403
4412
|
|
|
4404
4413
|
// src/iframe/main.ts
|
|
4405
|
-
var IFRAME_VERSION = "1.17.
|
|
4414
|
+
var IFRAME_VERSION = "1.17.1";
|
|
4406
4415
|
var IframeWallet = class {
|
|
4407
4416
|
constructor() {
|
|
4408
4417
|
console.log("=".repeat(60));
|