@imtbl/auth 2.14.3-alpha.0 → 2.14.3-alpha.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/browser/index.js +1 -0
- package/dist/node/index.cjs +1 -0
- package/dist/node/index.js +1 -0
- package/package.json +3 -3
- package/src/login/standalone.ts +1 -0
package/dist/browser/index.js
CHANGED
|
@@ -432,6 +432,7 @@ function Ae(a){throw new Error("Node.js process "+a+" is not supported by JSPM c
|
|
|
432
432
|
background: rgba(247, 247, 247, 0.24);
|
|
433
433
|
animation-name: passportEmbeddedLoginPromptOverlayFadeIn;
|
|
434
434
|
animation-duration: 0.8s;
|
|
435
|
+
pointer-events: auto;
|
|
435
436
|
`;let n=document.createElement("div");return n.id=q,n.style.cssText=`
|
|
436
437
|
display: flex;
|
|
437
438
|
flex-direction: column;
|
package/dist/node/index.cjs
CHANGED
|
@@ -438,6 +438,7 @@ var b=(p=>(p.AUTHENTICATION_ERROR="AUTHENTICATION_ERROR",p.INVALID_CONFIGURATION
|
|
|
438
438
|
background: rgba(247, 247, 247, 0.24);
|
|
439
439
|
animation-name: passportEmbeddedLoginPromptOverlayFadeIn;
|
|
440
440
|
animation-duration: 0.8s;
|
|
441
|
+
pointer-events: auto;
|
|
441
442
|
`;let e=document.createElement("div");return e.id=y,e.style.cssText=`
|
|
442
443
|
display: flex;
|
|
443
444
|
flex-direction: column;
|
package/dist/node/index.js
CHANGED
|
@@ -432,6 +432,7 @@ var b=(p=>(p.AUTHENTICATION_ERROR="AUTHENTICATION_ERROR",p.INVALID_CONFIGURATION
|
|
|
432
432
|
background: rgba(247, 247, 247, 0.24);
|
|
433
433
|
animation-name: passportEmbeddedLoginPromptOverlayFadeIn;
|
|
434
434
|
animation-duration: 0.8s;
|
|
435
|
+
pointer-events: auto;
|
|
435
436
|
`;let e=document.createElement("div");return e.id=y,e.style.cssText=`
|
|
436
437
|
display: flex;
|
|
437
438
|
flex-direction: column;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imtbl/auth",
|
|
3
|
-
"version": "2.14.3-alpha.
|
|
3
|
+
"version": "2.14.3-alpha.2",
|
|
4
4
|
"description": "Authentication SDK for Immutable",
|
|
5
5
|
"author": "Immutable",
|
|
6
6
|
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@imtbl/generated-clients": "2.14.3-alpha.
|
|
29
|
-
"@imtbl/metrics": "2.14.3-alpha.
|
|
28
|
+
"@imtbl/generated-clients": "2.14.3-alpha.2",
|
|
29
|
+
"@imtbl/metrics": "2.14.3-alpha.2",
|
|
30
30
|
"localforage": "^1.10.0",
|
|
31
31
|
"oidc-client-ts": "3.4.1"
|
|
32
32
|
},
|
package/src/login/standalone.ts
CHANGED
|
@@ -293,6 +293,7 @@ function createOverlayElement(): HTMLDivElement {
|
|
|
293
293
|
background: rgba(247, 247, 247, 0.24);
|
|
294
294
|
animation-name: passportEmbeddedLoginPromptOverlayFadeIn;
|
|
295
295
|
animation-duration: 0.8s;
|
|
296
|
+
pointer-events: auto;
|
|
296
297
|
`;
|
|
297
298
|
|
|
298
299
|
const contents = document.createElement('div');
|