@transcend-io/consent-manager-ui
Advanced tools
Comparing version 1.0.12 to 1.0.13
@@ -10,3 +10,3 @@ { | ||
"homepage": "https://github.com/transcend-io/consent-manager-ui", | ||
"version": "1.0.12", | ||
"version": "1.0.13", | ||
"license": "MIT", | ||
@@ -28,3 +28,3 @@ "main": "src/index", | ||
"@emotion/css": "^11.1.3", | ||
"@transcend-io/airgap.js-types": "^6.8.14", | ||
"@transcend-io/airgap.js-types": "^6.8.16", | ||
"@transcend-io/internationalization": "^1.0.0", | ||
@@ -70,2 +70,2 @@ "@transcend-io/logger": "^1.0.10", | ||
"packageManager": "yarn@3.1.1" | ||
} | ||
} |
@@ -22,4 +22,4 @@ /** | ||
// eslint-disable-next-line no-restricted-globals | ||
const view = self; | ||
// eslint-disable-next-line no-restricted-globals, @typescript-eslint/no-explicit-any | ||
const view = self as any; | ||
@@ -46,4 +46,4 @@ /** Pre-setup reference to window.transcend */ | ||
// Stub self.airgap.ready() queue if it doesn't exist | ||
// eslint-disable-next-line no-restricted-globals | ||
(self.airgap ??= { | ||
// eslint-disable-next-line no-restricted-globals, @typescript-eslint/no-explicit-any | ||
((self as any).airgap ??= { | ||
readyQueue: [], | ||
@@ -121,9 +121,12 @@ /** | ||
if (readyQueue) { | ||
readyQueue.forEach((callback) => { | ||
try { | ||
callback(transcend); | ||
} catch (ex) { | ||
throwOutside(ex); | ||
} | ||
}); | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
(readyQueue as any).forEach( | ||
(callback: (transcend: TranscendAPI) => void) => { | ||
try { | ||
callback(transcend); | ||
} catch (ex) { | ||
throwOutside(ex); | ||
} | ||
}, | ||
); | ||
readyQueue.length = 0; | ||
@@ -130,0 +133,0 @@ } |
@@ -18,3 +18,3 @@ // eslint-disable-next-line no-restricted-globals | ||
}, | ||
// eslint-disable-next-line no-restricted-globals | ||
} = self; | ||
// eslint-disable-next-line no-restricted-globals, @typescript-eslint/no-explicit-any | ||
} = self as any; |
1169386
11109
107
+ Added@babel/generator@7.26.8(transitive)
+ Added@babel/parser@7.26.8(transitive)
+ Added@babel/runtime@7.26.7(transitive)
+ Added@babel/template@7.26.8(transitive)
+ Added@babel/traverse@7.26.8(transitive)
+ Added@babel/types@7.26.8(transitive)
- Removed@babel/generator@7.26.9(transitive)
- Removed@babel/parser@7.26.9(transitive)
- Removed@babel/runtime@7.26.9(transitive)
- Removed@babel/template@7.26.9(transitive)
- Removed@babel/traverse@7.26.9(transitive)
- Removed@babel/types@7.26.9(transitive)