Skip to content

Commit 8c6a455

Browse files
🤖 Update core dependencies (#1801)
Co-authored-by: saschanaz <[email protected]>
1 parent 739c7c6 commit 8c6a455

File tree

3 files changed

+17
-134
lines changed

3 files changed

+17
-134
lines changed

baselines/dom.generated.d.ts

-59
Original file line numberDiff line numberDiff line change
@@ -7409,8 +7409,6 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
74097409
createEvent(eventInterface: "MessageEvent"): MessageEvent;
74107410
createEvent(eventInterface: "MouseEvent"): MouseEvent;
74117411
createEvent(eventInterface: "MouseEvents"): MouseEvent;
7412-
createEvent(eventInterface: "MutationEvent"): MutationEvent;
7413-
createEvent(eventInterface: "MutationEvents"): MutationEvent;
74147412
createEvent(eventInterface: "OfflineAudioCompletionEvent"): OfflineAudioCompletionEvent;
74157413
createEvent(eventInterface: "PageTransitionEvent"): PageTransitionEvent;
74167414
createEvent(eventInterface: "PaymentMethodChangeEvent"): PaymentMethodChangeEvent;
@@ -15715,63 +15713,6 @@ declare var MouseEvent: {
1571515713
new(type: string, eventInitDict?: MouseEventInit): MouseEvent;
1571615714
};
1571715715

15718-
/**
15719-
* Provides event properties that are specific to modifications to the Document Object Model (DOM) hierarchy and nodes.
15720-
* @deprecated DOM4 [DOM] provides a new mechanism using a MutationObserver interface which addresses the use cases that mutation events solve, but in a more performant manner. Thus, this specification describes mutation events for reference and completeness of legacy behavior, but deprecates the use of the MutationEvent interface.
15721-
*
15722-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent)
15723-
*/
15724-
interface MutationEvent extends Event {
15725-
/**
15726-
* @deprecated
15727-
*
15728-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/attrChange)
15729-
*/
15730-
readonly attrChange: number;
15731-
/**
15732-
* @deprecated
15733-
*
15734-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/attrName)
15735-
*/
15736-
readonly attrName: string;
15737-
/**
15738-
* @deprecated
15739-
*
15740-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/newValue)
15741-
*/
15742-
readonly newValue: string;
15743-
/**
15744-
* @deprecated
15745-
*
15746-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/prevValue)
15747-
*/
15748-
readonly prevValue: string;
15749-
/**
15750-
* @deprecated
15751-
*
15752-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/relatedNode)
15753-
*/
15754-
readonly relatedNode: Node | null;
15755-
/**
15756-
* @deprecated
15757-
*
15758-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/initMutationEvent)
15759-
*/
15760-
initMutationEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, relatedNodeArg?: Node | null, prevValueArg?: string, newValueArg?: string, attrNameArg?: string, attrChangeArg?: number): void;
15761-
readonly MODIFICATION: 1;
15762-
readonly ADDITION: 2;
15763-
readonly REMOVAL: 3;
15764-
}
15765-
15766-
/** @deprecated */
15767-
declare var MutationEvent: {
15768-
prototype: MutationEvent;
15769-
new(): MutationEvent;
15770-
readonly MODIFICATION: 1;
15771-
readonly ADDITION: 2;
15772-
readonly REMOVAL: 3;
15773-
};
15774-
1577515716
/**
1577615717
* Provides the ability to watch for changes being made to the DOM tree. It is designed as a replacement for the older Mutation Events feature which was part of the DOM3 Events specification.
1577715718
*

baselines/ts5.5/dom.generated.d.ts

-59
Original file line numberDiff line numberDiff line change
@@ -7409,8 +7409,6 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
74097409
createEvent(eventInterface: "MessageEvent"): MessageEvent;
74107410
createEvent(eventInterface: "MouseEvent"): MouseEvent;
74117411
createEvent(eventInterface: "MouseEvents"): MouseEvent;
7412-
createEvent(eventInterface: "MutationEvent"): MutationEvent;
7413-
createEvent(eventInterface: "MutationEvents"): MutationEvent;
74147412
createEvent(eventInterface: "OfflineAudioCompletionEvent"): OfflineAudioCompletionEvent;
74157413
createEvent(eventInterface: "PageTransitionEvent"): PageTransitionEvent;
74167414
createEvent(eventInterface: "PaymentMethodChangeEvent"): PaymentMethodChangeEvent;
@@ -15715,63 +15713,6 @@ declare var MouseEvent: {
1571515713
new(type: string, eventInitDict?: MouseEventInit): MouseEvent;
1571615714
};
1571715715

15718-
/**
15719-
* Provides event properties that are specific to modifications to the Document Object Model (DOM) hierarchy and nodes.
15720-
* @deprecated DOM4 [DOM] provides a new mechanism using a MutationObserver interface which addresses the use cases that mutation events solve, but in a more performant manner. Thus, this specification describes mutation events for reference and completeness of legacy behavior, but deprecates the use of the MutationEvent interface.
15721-
*
15722-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent)
15723-
*/
15724-
interface MutationEvent extends Event {
15725-
/**
15726-
* @deprecated
15727-
*
15728-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/attrChange)
15729-
*/
15730-
readonly attrChange: number;
15731-
/**
15732-
* @deprecated
15733-
*
15734-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/attrName)
15735-
*/
15736-
readonly attrName: string;
15737-
/**
15738-
* @deprecated
15739-
*
15740-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/newValue)
15741-
*/
15742-
readonly newValue: string;
15743-
/**
15744-
* @deprecated
15745-
*
15746-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/prevValue)
15747-
*/
15748-
readonly prevValue: string;
15749-
/**
15750-
* @deprecated
15751-
*
15752-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/relatedNode)
15753-
*/
15754-
readonly relatedNode: Node | null;
15755-
/**
15756-
* @deprecated
15757-
*
15758-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationEvent/initMutationEvent)
15759-
*/
15760-
initMutationEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, relatedNodeArg?: Node | null, prevValueArg?: string, newValueArg?: string, attrNameArg?: string, attrChangeArg?: number): void;
15761-
readonly MODIFICATION: 1;
15762-
readonly ADDITION: 2;
15763-
readonly REMOVAL: 3;
15764-
}
15765-
15766-
/** @deprecated */
15767-
declare var MutationEvent: {
15768-
prototype: MutationEvent;
15769-
new(): MutationEvent;
15770-
readonly MODIFICATION: 1;
15771-
readonly ADDITION: 2;
15772-
readonly REMOVAL: 3;
15773-
};
15774-
1577515716
/**
1577615717
* Provides the ability to watch for changes being made to the DOM tree. It is designed as a replacement for the older Mutation Events feature which was part of the DOM3 Events specification.
1577715718
*

package-lock.json

+17-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)