@lumiapassport/ui-kit 1.13.7 → 1.13.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/kyc/sumsub.html +7 -2
- package/dist/iframe/main.js +1 -1
- package/dist/index.cjs +714 -609
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +602 -497
- package/dist/index.js.map +1 -1
- package/dist/styles.css +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.13.
|
|
18
|
+
<title>Lumia Passport Secure Wallet - iframe version 1.13.8</title>
|
|
19
19
|
|
|
20
20
|
<!-- Styles will be injected by build process -->
|
|
21
21
|
<style>
|
|
@@ -22,14 +22,19 @@
|
|
|
22
22
|
margin: 0;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
html,
|
|
25
|
+
html::-webkit-scrollbar,
|
|
26
26
|
body::-webkit-scrollbar {
|
|
27
27
|
display: none;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
#sumsub-websdk-container {
|
|
31
31
|
width: 100%;
|
|
32
|
-
|
|
32
|
+
font-size: 0;
|
|
33
|
+
line-height: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
#sumsub-websdk-container iframe {
|
|
37
|
+
display: block;
|
|
33
38
|
}
|
|
34
39
|
|
|
35
40
|
.loading-container {
|
package/dist/iframe/main.js
CHANGED
|
@@ -4010,7 +4010,7 @@ var SigningManager = class extends TokenRefreshApiClient {
|
|
|
4010
4010
|
};
|
|
4011
4011
|
|
|
4012
4012
|
// src/iframe/main.ts
|
|
4013
|
-
var IFRAME_VERSION = "1.13.
|
|
4013
|
+
var IFRAME_VERSION = "1.13.8";
|
|
4014
4014
|
var IframeWallet = class {
|
|
4015
4015
|
constructor() {
|
|
4016
4016
|
console.log("=".repeat(60));
|