@descope-int/react-dynamic-sdk
Advanced tools
Comparing version 1.0.105 to 1.0.106
@@ -56,2 +56,3 @@ 'use strict'; | ||
const origDefine = customElements.define; | ||
const origGet = customElements.get; | ||
customElements.define = (...args) => { | ||
@@ -61,2 +62,3 @@ if (args[0] === WC_NAME) { | ||
customElements.define = origDefine; | ||
customElements.get = origGet; | ||
} | ||
@@ -67,2 +69,9 @@ else { | ||
}; | ||
customElements.get = (...args) => { | ||
if (args[0] === WC_NAME) { | ||
customElements.get = origGet; | ||
return null; | ||
} | ||
return origGet.apply(customElements, args); | ||
}; | ||
}); | ||
@@ -69,0 +78,0 @@ |
@@ -31,2 +31,3 @@ import { AuthProvider as AuthProvider$1, Descope as Descope$1 } from '@descope/react-sdk'; | ||
const origDefine = customElements.define; | ||
const origGet = customElements.get; | ||
customElements.define = (...args) => { | ||
@@ -36,2 +37,3 @@ if (args[0] === WC_NAME) { | ||
customElements.define = origDefine; | ||
customElements.get = origGet; | ||
} | ||
@@ -42,2 +44,9 @@ else { | ||
}; | ||
customElements.get = (...args) => { | ||
if (args[0] === WC_NAME) { | ||
customElements.get = origGet; | ||
return null; | ||
} | ||
return origGet.apply(customElements, args); | ||
}; | ||
}); | ||
@@ -44,0 +53,0 @@ |
{ | ||
"name": "@descope-int/react-dynamic-sdk", | ||
"version": "1.0.105", | ||
"version": "1.0.106", | ||
"description": "Descope Dynamic React SDK", | ||
@@ -5,0 +5,0 @@ "author": "Descope Team <info@descope.com>", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
432605
728