Skip to content

Commit f3e9f35

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 8273e37 commit f3e9f35

6 files changed

Lines changed: 105 additions & 35 deletions

File tree

baselines/dom.generated.d.ts

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,15 @@ interface AuthenticationExtensionsClientInputs {
204204
largeBlob?: AuthenticationExtensionsLargeBlobInputs;
205205
minPinLength?: boolean;
206206
prf?: AuthenticationExtensionsPRFInputs;
207+
remoteClientDataJSON?: string;
207208
}
208209

209210
interface AuthenticationExtensionsClientInputsJSON {
210211
appid?: string;
211212
credProps?: boolean;
212213
largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
213214
prf?: AuthenticationExtensionsPRFInputsJSON;
215+
remoteClientDataJSON?: string;
214216
}
215217

216218
interface AuthenticationExtensionsClientOutputs {
@@ -219,13 +221,15 @@ interface AuthenticationExtensionsClientOutputs {
219221
hmacCreateSecret?: boolean;
220222
largeBlob?: AuthenticationExtensionsLargeBlobOutputs;
221223
prf?: AuthenticationExtensionsPRFOutputs;
224+
remoteClientDataJson?: boolean;
222225
}
223226

224227
interface AuthenticationExtensionsClientOutputsJSON {
225228
appid?: boolean;
226229
credProps?: CredentialPropertiesOutput;
227230
largeBlob?: AuthenticationExtensionsLargeBlobOutputsJSON;
228231
prf?: AuthenticationExtensionsPRFOutputsJSON;
232+
remoteClientDataJson?: boolean;
229233
}
230234

231235
interface AuthenticationExtensionsLargeBlobInputs {
@@ -2751,6 +2755,10 @@ interface SerialPortRequestOptions {
27512755
filters?: SerialPortFilter[];
27522756
}
27532757

2758+
interface SetHTMLOptions {
2759+
sanitizer?: Sanitizer | SanitizerConfig | SanitizerPresets;
2760+
}
2761+
27542762
interface ShadowRootInit {
27552763
clonable?: boolean;
27562764
customElementRegistry?: CustomElementRegistry | null;
@@ -9407,7 +9415,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
94079415
*/
94089416
viewTimelineName: string;
94099417
/**
9410-
* The view-transition-class CSS property provides the selected elements with an identifying class (a <custom-ident>), providing an additional method of styling the view transitions for those elements.
9418+
* The view-transition-class CSS property provides the selected elements with one or more identifying classes (<custom-ident>s), providing an additional method of styling the view transitions for those elements.
94119419
*
94129420
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-class)
94139421
*/
@@ -14142,6 +14150,12 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1414214150
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS)
1414314151
*/
1414414152
setAttributeNodeNS(attr: Attr): Attr | null;
14153+
/**
14154+
* The **`setHTML()`** method of the Element interface provides an XSS-safe method to parse and sanitize a string of HTML and insert it into the DOM as a subtree of the element.
14155+
*
14156+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTML)
14157+
*/
14158+
setHTML(html: string, options?: SetHTMLOptions): void;
1414514159
/**
1414614160
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1414714161
*
@@ -17987,7 +18001,7 @@ interface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventM
1798718001
*
1798818002
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement)
1798918003
*/
17990-
interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEditable, GlobalEventHandlers, HTMLOrSVGElement {
18004+
interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEditable, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
1799118005
/**
1799218006
* The **`HTMLElement.accessKey`** property sets the keystroke which a user can press to jump to a given element.
1799318007
*
@@ -20312,7 +20326,7 @@ declare var HTMLOptionsCollection: {
2031220326
new(): HTMLOptionsCollection;
2031320327
};
2031420328

20315-
interface HTMLOrSVGElement {
20329+
interface HTMLOrSVGOrMathMLElement {
2031620330
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) */
2031720331
autofocus: boolean;
2031820332
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
@@ -24036,7 +24050,7 @@ interface MathMLElementEventMap extends ElementEventMap, GlobalEventHandlersEven
2403624050
*
2403724051
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MathMLElement)
2403824052
*/
24039-
interface MathMLElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
24053+
interface MathMLElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
2404024054
addEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2404124055
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2404224056
removeEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -26033,6 +26047,7 @@ declare var NavigationPreloadManager: {
2603326047
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationTransition)
2603426048
*/
2603526049
interface NavigationTransition {
26050+
/** The **`committed`** read-only property of the NavigationTransition interface returns a Promise that fulfills when Navigation.currentEntry is updated and the new URL is displayed in the browser, marking the navigation as committed. This happens after all precommit handlers for the navigation are fulfilled. */
2603626051
readonly committed: Promise<void>;
2603726052
/**
2603826053
* The **`finished`** read-only property of the NavigationTransition interface returns a Promise that fulfills at the same time the navigatesuccess event fires, or rejects at the same time the navigateerror event fires.
@@ -31828,7 +31843,7 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
3182831843
*
3182931844
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement)
3183031845
*/
31831-
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
31846+
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
3183231847
/** @deprecated */
3183331848
readonly className: any;
3183431849
/**

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

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,15 @@ interface AuthenticationExtensionsClientInputs {
201201
largeBlob?: AuthenticationExtensionsLargeBlobInputs;
202202
minPinLength?: boolean;
203203
prf?: AuthenticationExtensionsPRFInputs;
204+
remoteClientDataJSON?: string;
204205
}
205206

206207
interface AuthenticationExtensionsClientInputsJSON {
207208
appid?: string;
208209
credProps?: boolean;
209210
largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
210211
prf?: AuthenticationExtensionsPRFInputsJSON;
212+
remoteClientDataJSON?: string;
211213
}
212214

213215
interface AuthenticationExtensionsClientOutputs {
@@ -216,13 +218,15 @@ interface AuthenticationExtensionsClientOutputs {
216218
hmacCreateSecret?: boolean;
217219
largeBlob?: AuthenticationExtensionsLargeBlobOutputs;
218220
prf?: AuthenticationExtensionsPRFOutputs;
221+
remoteClientDataJson?: boolean;
219222
}
220223

221224
interface AuthenticationExtensionsClientOutputsJSON {
222225
appid?: boolean;
223226
credProps?: CredentialPropertiesOutput;
224227
largeBlob?: AuthenticationExtensionsLargeBlobOutputsJSON;
225228
prf?: AuthenticationExtensionsPRFOutputsJSON;
229+
remoteClientDataJson?: boolean;
226230
}
227231

228232
interface AuthenticationExtensionsLargeBlobInputs {
@@ -2748,6 +2752,10 @@ interface SerialPortRequestOptions {
27482752
filters?: SerialPortFilter[];
27492753
}
27502754

2755+
interface SetHTMLOptions {
2756+
sanitizer?: Sanitizer | SanitizerConfig | SanitizerPresets;
2757+
}
2758+
27512759
interface ShadowRootInit {
27522760
clonable?: boolean;
27532761
customElementRegistry?: CustomElementRegistry | null;
@@ -9397,7 +9405,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
93979405
*/
93989406
viewTimelineName: string;
93999407
/**
9400-
* The view-transition-class CSS property provides the selected elements with an identifying class (a <custom-ident>), providing an additional method of styling the view transitions for those elements.
9408+
* The view-transition-class CSS property provides the selected elements with one or more identifying classes (<custom-ident>s), providing an additional method of styling the view transitions for those elements.
94019409
*
94029410
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-class)
94039411
*/
@@ -14129,6 +14137,12 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1412914137
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS)
1413014138
*/
1413114139
setAttributeNodeNS(attr: Attr): Attr | null;
14140+
/**
14141+
* The **`setHTML()`** method of the Element interface provides an XSS-safe method to parse and sanitize a string of HTML and insert it into the DOM as a subtree of the element.
14142+
*
14143+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTML)
14144+
*/
14145+
setHTML(html: string, options?: SetHTMLOptions): void;
1413214146
/**
1413314147
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1413414148
*
@@ -17971,7 +17985,7 @@ interface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventM
1797117985
*
1797217986
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement)
1797317987
*/
17974-
interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEditable, GlobalEventHandlers, HTMLOrSVGElement {
17988+
interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEditable, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
1797517989
/**
1797617990
* The **`HTMLElement.accessKey`** property sets the keystroke which a user can press to jump to a given element.
1797717991
*
@@ -20291,7 +20305,7 @@ declare var HTMLOptionsCollection: {
2029120305
new(): HTMLOptionsCollection;
2029220306
};
2029320307

20294-
interface HTMLOrSVGElement {
20308+
interface HTMLOrSVGOrMathMLElement {
2029520309
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) */
2029620310
autofocus: boolean;
2029720311
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
@@ -24012,7 +24026,7 @@ interface MathMLElementEventMap extends ElementEventMap, GlobalEventHandlersEven
2401224026
*
2401324027
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MathMLElement)
2401424028
*/
24015-
interface MathMLElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
24029+
interface MathMLElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
2401624030
addEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2401724031
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2401824032
removeEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -26009,6 +26023,7 @@ declare var NavigationPreloadManager: {
2600926023
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationTransition)
2601026024
*/
2601126025
interface NavigationTransition {
26026+
/** The **`committed`** read-only property of the NavigationTransition interface returns a Promise that fulfills when Navigation.currentEntry is updated and the new URL is displayed in the browser, marking the navigation as committed. This happens after all precommit handlers for the navigation are fulfilled. */
2601226027
readonly committed: Promise<void>;
2601326028
/**
2601426029
* The **`finished`** read-only property of the NavigationTransition interface returns a Promise that fulfills at the same time the navigatesuccess event fires, or rejects at the same time the navigateerror event fires.
@@ -31803,7 +31818,7 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
3180331818
*
3180431819
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement)
3180531820
*/
31806-
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
31821+
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
3180731822
/** @deprecated */
3180831823
readonly className: any;
3180931824
/**

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

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,15 @@ interface AuthenticationExtensionsClientInputs {
201201
largeBlob?: AuthenticationExtensionsLargeBlobInputs;
202202
minPinLength?: boolean;
203203
prf?: AuthenticationExtensionsPRFInputs;
204+
remoteClientDataJSON?: string;
204205
}
205206

206207
interface AuthenticationExtensionsClientInputsJSON {
207208
appid?: string;
208209
credProps?: boolean;
209210
largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;
210211
prf?: AuthenticationExtensionsPRFInputsJSON;
212+
remoteClientDataJSON?: string;
211213
}
212214

213215
interface AuthenticationExtensionsClientOutputs {
@@ -216,13 +218,15 @@ interface AuthenticationExtensionsClientOutputs {
216218
hmacCreateSecret?: boolean;
217219
largeBlob?: AuthenticationExtensionsLargeBlobOutputs;
218220
prf?: AuthenticationExtensionsPRFOutputs;
221+
remoteClientDataJson?: boolean;
219222
}
220223

221224
interface AuthenticationExtensionsClientOutputsJSON {
222225
appid?: boolean;
223226
credProps?: CredentialPropertiesOutput;
224227
largeBlob?: AuthenticationExtensionsLargeBlobOutputsJSON;
225228
prf?: AuthenticationExtensionsPRFOutputsJSON;
229+
remoteClientDataJson?: boolean;
226230
}
227231

228232
interface AuthenticationExtensionsLargeBlobInputs {
@@ -2748,6 +2752,10 @@ interface SerialPortRequestOptions {
27482752
filters?: SerialPortFilter[];
27492753
}
27502754

2755+
interface SetHTMLOptions {
2756+
sanitizer?: Sanitizer | SanitizerConfig | SanitizerPresets;
2757+
}
2758+
27512759
interface ShadowRootInit {
27522760
clonable?: boolean;
27532761
customElementRegistry?: CustomElementRegistry | null;
@@ -9404,7 +9412,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
94049412
*/
94059413
viewTimelineName: string;
94069414
/**
9407-
* The view-transition-class CSS property provides the selected elements with an identifying class (a <custom-ident>), providing an additional method of styling the view transitions for those elements.
9415+
* The view-transition-class CSS property provides the selected elements with one or more identifying classes (<custom-ident>s), providing an additional method of styling the view transitions for those elements.
94089416
*
94099417
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-transition-class)
94109418
*/
@@ -14139,6 +14147,12 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1413914147
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS)
1414014148
*/
1414114149
setAttributeNodeNS(attr: Attr): Attr | null;
14150+
/**
14151+
* The **`setHTML()`** method of the Element interface provides an XSS-safe method to parse and sanitize a string of HTML and insert it into the DOM as a subtree of the element.
14152+
*
14153+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTML)
14154+
*/
14155+
setHTML(html: string, options?: SetHTMLOptions): void;
1414214156
/**
1414314157
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1414414158
*
@@ -17984,7 +17998,7 @@ interface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventM
1798417998
*
1798517999
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement)
1798618000
*/
17987-
interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEditable, GlobalEventHandlers, HTMLOrSVGElement {
18001+
interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEditable, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
1798818002
/**
1798918003
* The **`HTMLElement.accessKey`** property sets the keystroke which a user can press to jump to a given element.
1799018004
*
@@ -20309,7 +20323,7 @@ declare var HTMLOptionsCollection: {
2030920323
new(): HTMLOptionsCollection;
2031020324
};
2031120325

20312-
interface HTMLOrSVGElement {
20326+
interface HTMLOrSVGOrMathMLElement {
2031320327
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) */
2031420328
autofocus: boolean;
2031520329
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
@@ -24033,7 +24047,7 @@ interface MathMLElementEventMap extends ElementEventMap, GlobalEventHandlersEven
2403324047
*
2403424048
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MathMLElement)
2403524049
*/
24036-
interface MathMLElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
24050+
interface MathMLElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
2403724051
addEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2403824052
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
2403924053
removeEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -26030,6 +26044,7 @@ declare var NavigationPreloadManager: {
2603026044
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationTransition)
2603126045
*/
2603226046
interface NavigationTransition {
26047+
/** The **`committed`** read-only property of the NavigationTransition interface returns a Promise that fulfills when Navigation.currentEntry is updated and the new URL is displayed in the browser, marking the navigation as committed. This happens after all precommit handlers for the navigation are fulfilled. */
2603326048
readonly committed: Promise<void>;
2603426049
/**
2603526050
* The **`finished`** read-only property of the NavigationTransition interface returns a Promise that fulfills at the same time the navigatesuccess event fires, or rejects at the same time the navigateerror event fires.
@@ -31825,7 +31840,7 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
3182531840
*
3182631841
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement)
3182731842
*/
31828-
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
31843+
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGOrMathMLElement {
3182931844
/** @deprecated */
3183031845
readonly className: any;
3183131846
/**

0 commit comments

Comments
 (0)