chore(deps): update @types/node to v18

This commit is contained in:
Tanner Reits
2024-08-30 14:35:04 -04:00
parent 526f2b4a63
commit 9f1a1942b9
3 changed files with 160 additions and 8475 deletions

8631
core/package-lock.json generated
View File

File diff suppressed because it is too large Load Diff

View File

@@ -53,7 +53,7 @@
"@stencil/sass": "^3.0.9",
"@stencil/vue-output-target": "^0.8.9",
"@types/jest": "^29.5.6",
"@types/node": "^14.6.0",
"@types/node": "^18.19.47",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"chalk": "^5.3.0",

View File

@@ -22,7 +22,7 @@ export const transitionEndAsync = (el: HTMLElement | null, expectedDuration = 0)
*/
const transitionEnd = (el: HTMLElement | null, expectedDuration = 0, callback: (ev?: TransitionEvent) => void) => {
let unRegTrans: (() => void) | undefined;
let animationTimeout: number | undefined;
let animationTimeout: NodeJS.Timeout | undefined;
const opts: AddEventListenerOptions = { passive: true };
const ANIMATION_FALLBACK_TIMEOUT = 500;