Skip to content

Commit 6612db9

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 9483cb8 commit 6612db9

File tree

3 files changed

+27
-11
lines changed

3 files changed

+27
-11
lines changed

Diff for: baselines/dom.generated.d.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,7 @@ interface EffectTiming {
565565
}
566566

567567
interface ElementCreationOptions {
568+
customElementRegistry?: CustomElementRegistry;
568569
is?: string;
569570
}
570571

@@ -826,6 +827,11 @@ interface ImageEncodeOptions {
826827
type?: string;
827828
}
828829

830+
interface ImportNodeOptions {
831+
customElementRegistry?: CustomElementRegistry;
832+
selfOnly?: boolean;
833+
}
834+
829835
interface InputEventInit extends UIEventInit {
830836
data?: string | null;
831837
dataTransfer?: DataTransfer | null;
@@ -2070,6 +2076,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
20702076

20712077
interface ShadowRootInit {
20722078
clonable?: boolean;
2079+
customElementRegistry?: CustomElementRegistry;
20732080
delegatesFocus?: boolean;
20742081
mode: ShadowRootMode;
20752082
serializable?: boolean;
@@ -8059,7 +8066,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
80598066
*
80608067
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
80618068
*/
8062-
importNode<T extends Node>(node: T, subtree?: boolean): T;
8069+
importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
80638070
/**
80648071
* 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.
80658072
* @param url Specifies a MIME type for the document.
@@ -12150,6 +12157,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
1215012157
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
1215112158
*/
1215212159
hreflang: string;
12160+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
1215312161
imageSizes: string;
1215412162
imageSrcset: string;
1215512163
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */

Diff for: baselines/ts5.5/dom.generated.d.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,7 @@ interface EffectTiming {
565565
}
566566

567567
interface ElementCreationOptions {
568+
customElementRegistry?: CustomElementRegistry;
568569
is?: string;
569570
}
570571

@@ -826,6 +827,11 @@ interface ImageEncodeOptions {
826827
type?: string;
827828
}
828829

830+
interface ImportNodeOptions {
831+
customElementRegistry?: CustomElementRegistry;
832+
selfOnly?: boolean;
833+
}
834+
829835
interface InputEventInit extends UIEventInit {
830836
data?: string | null;
831837
dataTransfer?: DataTransfer | null;
@@ -2070,6 +2076,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
20702076

20712077
interface ShadowRootInit {
20722078
clonable?: boolean;
2079+
customElementRegistry?: CustomElementRegistry;
20732080
delegatesFocus?: boolean;
20742081
mode: ShadowRootMode;
20752082
serializable?: boolean;
@@ -8052,7 +8059,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
80528059
*
80538060
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
80548061
*/
8055-
importNode<T extends Node>(node: T, subtree?: boolean): T;
8062+
importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
80568063
/**
80578064
* 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.
80588065
* @param url Specifies a MIME type for the document.
@@ -12135,6 +12142,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
1213512142
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
1213612143
*/
1213712144
hreflang: string;
12145+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
1213812146
imageSizes: string;
1213912147
imageSrcset: string;
1214012148
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */

Diff for: package-lock.json

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

0 commit comments

Comments
 (0)