Skip to content

Update core dependencies #1983

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ interface EffectTiming {
}

interface ElementCreationOptions {
customElementRegistry?: CustomElementRegistry;
is?: string;
}

Expand Down Expand Up @@ -826,6 +827,11 @@ interface ImageEncodeOptions {
type?: string;
}

interface ImportNodeOptions {
customElementRegistry?: CustomElementRegistry;
selfOnly?: boolean;
}

interface InputEventInit extends UIEventInit {
data?: string | null;
dataTransfer?: DataTransfer | null;
Expand Down Expand Up @@ -2070,6 +2076,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {

interface ShadowRootInit {
clonable?: boolean;
customElementRegistry?: CustomElementRegistry;
delegatesFocus?: boolean;
mode: ShadowRootMode;
serializable?: boolean;
Expand Down Expand Up @@ -8059,7 +8066,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
*/
importNode<T extends Node>(node: T, subtree?: boolean): T;
importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
/**
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
* @param url Specifies a MIME type for the document.
Expand Down Expand Up @@ -12150,6 +12157,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
*/
hreflang: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
imageSizes: string;
imageSrcset: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
Expand Down
10 changes: 9 additions & 1 deletion baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ interface EffectTiming {
}

interface ElementCreationOptions {
customElementRegistry?: CustomElementRegistry;
is?: string;
}

Expand Down Expand Up @@ -826,6 +827,11 @@ interface ImageEncodeOptions {
type?: string;
}

interface ImportNodeOptions {
customElementRegistry?: CustomElementRegistry;
selfOnly?: boolean;
}

interface InputEventInit extends UIEventInit {
data?: string | null;
dataTransfer?: DataTransfer | null;
Expand Down Expand Up @@ -2070,6 +2076,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {

interface ShadowRootInit {
clonable?: boolean;
customElementRegistry?: CustomElementRegistry;
delegatesFocus?: boolean;
mode: ShadowRootMode;
serializable?: boolean;
Expand Down Expand Up @@ -8052,7 +8059,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
*/
importNode<T extends Node>(node: T, subtree?: boolean): T;
importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
/**
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
* @param url Specifies a MIME type for the document.
Expand Down Expand Up @@ -12135,6 +12142,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
*/
hreflang: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
imageSizes: string;
imageSrcset: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.