-
Notifications
You must be signed in to change notification settings - Fork 13.4k
MouseWheelEvent.wheelDelta is not defined #28495
Copy link
Copy link
Closed
Labels
Breaking ChangeWould introduce errors in existing codeWould introduce errors in existing codeDomain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScriptVS Code TrackedThere is a VS Code equivalent to this issueThere is a VS Code equivalent to this issueWon't FixThe severity and priority of this issue do not warrant the time or complexity needed to fix itThe severity and priority of this issue do not warrant the time or complexity needed to fix it
Milestone
Metadata
Metadata
Assignees
Labels
Breaking ChangeWould introduce errors in existing codeWould introduce errors in existing codeDomain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScriptVS Code TrackedThere is a VS Code equivalent to this issueThere is a VS Code equivalent to this issueWon't FixThe severity and priority of this issue do not warrant the time or complexity needed to fix itThe severity and priority of this issue do not warrant the time or complexity needed to fix it
TypeScript Version: 3.2.0-dev.20181110
Search Terms:
Problem
microsoft/TypeScript-DOM-lib-generator#579 removes the definition for
MouseWheelEvent,wheelDeltaAlthough this property is deprecated non-standard (https://developer.mozilla.org/en-US/docs/Web/API/MouseWheelEvent) it was being used in the VS Code code base and potentially elsewhere.
I'll see if VS Code can migrate to use the standard
WheelEventbut am not sure if the current breaking change onMouseWheelEventis correct.