Skip to content

Commit 00a4ac1

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent fad434b commit 00a4ac1

14 files changed

+139
-46
lines changed

baselines/dom.generated.d.ts

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6851,6 +6851,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
68516851
textAlignLast: string;
68526852
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
68536853
textAnchor: string;
6854+
textAutospace: string;
68546855
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
68556856
textBox: string;
68566857
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box-edge) */
@@ -10692,7 +10693,7 @@ declare var Document: {
1069210693
prototype: Document;
1069310694
new(): Document;
1069410695
/**
10695-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
10696+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
1069610697
*
1069710698
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
1069810699
*/
@@ -11366,7 +11367,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1136611367
*/
1136711368
setAttributeNodeNS(attr: Attr): Attr | null;
1136811369
/**
11369-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML 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.
11370+
* 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.
1137011371
*
1137111372
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
1137211373
*/
@@ -12405,6 +12406,12 @@ interface FontFace {
1240512406
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
1240612407
*/
1240712408
unicodeRange: string;
12409+
/**
12410+
* The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
12411+
*
12412+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
12413+
*/
12414+
variationSettings: string;
1240812415
/**
1240912416
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
1241012417
*
@@ -13575,7 +13582,7 @@ declare var HTMLBodyElement: {
1357513582
*
1357613583
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1357713584
*/
13578-
interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
13585+
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
1357913586
/**
1358013587
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1358113588
*
@@ -15026,7 +15033,7 @@ declare var HTMLImageElement: {
1502615033
*
1502715034
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
1502815035
*/
15029-
interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
15036+
interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1503015037
/**
1503115038
* The **`accept`** property of the HTMLInputElement interface reflects the input element's `accept` attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an `<input>` of type `file`.
1503215039
*
@@ -15290,7 +15297,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1529015297
*/
1529115298
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
1529215299
/**
15293-
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements should let the user select directories instead of files.
15300+
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements can only select directories instead of files.
1529415301
*
1529515302
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)
1529615303
*/
@@ -18152,7 +18159,7 @@ declare var Headers: {
1815218159
*/
1815318160
interface Highlight {
1815418161
/**
18155-
* It is possible to create Range objects that overlap in a document.
18162+
* The `priority` property of the Highlight interface is a number used to determine which highlight's styles should be used to resolve style conflicts in overlapping parts.
1815618163
*
1815718164
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)
1815818165
*/
@@ -19598,7 +19605,11 @@ interface LargestContentfulPaint extends PerformanceEntry {
1959819605
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime)
1959919606
*/
1960019607
readonly loadTime: DOMHighResTimeStamp;
19601-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
19608+
/**
19609+
* The **`renderTime`** read-only property of the LargestContentfulPaint interface represents the time that the element was rendered to the screen.
19610+
*
19611+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime)
19612+
*/
1960219613
readonly renderTime: DOMHighResTimeStamp;
1960319614
/**
1960419615
* The **`size`** read-only property of the LargestContentfulPaint interface returns the intrinsic size of the element that is the largest contentful paint.
@@ -24499,7 +24510,7 @@ declare var PopStateEvent: {
2449924510
new(type: string, eventInitDict?: PopStateEventInit): PopStateEvent;
2450024511
};
2450124512

24502-
interface PopoverInvokerElement {
24513+
interface PopoverTargetAttributes {
2450324514
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetAction) */
2450424515
popoverTargetAction: string;
2450524516
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetElement) */
@@ -25616,7 +25627,7 @@ declare var RTCPeerConnectionIceEvent: {
2561625627
*/
2561725628
interface RTCRtpReceiver {
2561825629
/**
25619-
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter buffer should hold media before playing it out.
25630+
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter should hold media before playing it out.
2562025631
*
2562125632
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)
2562225633
*/
@@ -31166,7 +31177,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
3116631177
*/
3116731178
getHTML(options?: GetHTMLOptions): string;
3116831179
/**
31169-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
31180+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
3117031181
*
3117131182
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
3117231183
*/

baselines/serviceworker.generated.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,8 @@ interface PromiseRejectionEventInit extends EventInit {
495495
}
496496

497497
interface PushEventInit extends ExtendableEventInit {
498-
data?: PushMessageDataInit;
498+
data?: PushMessageDataInit | null;
499+
notification?: Notification | null;
499500
}
500501

501502
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
@@ -3966,6 +3967,12 @@ interface FontFace {
39663967
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
39673968
*/
39683969
unicodeRange: string;
3970+
/**
3971+
* The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
3972+
*
3973+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
3974+
*/
3975+
variationSettings: string;
39693976
/**
39703977
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
39713978
*

baselines/sharedworker.generated.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3649,6 +3649,12 @@ interface FontFace {
36493649
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
36503650
*/
36513651
unicodeRange: string;
3652+
/**
3653+
* The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
3654+
*
3655+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
3656+
*/
3657+
variationSettings: string;
36523658
/**
36533659
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
36543660
*

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

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6844,6 +6844,7 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
68446844
textAlignLast: string;
68456845
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
68466846
textAnchor: string;
6847+
textAutospace: string;
68476848
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */
68486849
textBox: string;
68496850
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box-edge) */
@@ -10684,7 +10685,7 @@ declare var Document: {
1068410685
prototype: Document;
1068510686
new(): Document;
1068610687
/**
10687-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
10688+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
1068810689
*
1068910690
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
1069010691
*/
@@ -11356,7 +11357,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1135611357
*/
1135711358
setAttributeNodeNS(attr: Attr): Attr | null;
1135811359
/**
11359-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML 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.
11360+
* 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.
1136011361
*
1136111362
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
1136211363
*/
@@ -12394,6 +12395,12 @@ interface FontFace {
1239412395
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
1239512396
*/
1239612397
unicodeRange: string;
12398+
/**
12399+
* The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
12400+
*
12401+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
12402+
*/
12403+
variationSettings: string;
1239712404
/**
1239812405
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
1239912406
*
@@ -13562,7 +13569,7 @@ declare var HTMLBodyElement: {
1356213569
*
1356313570
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1356413571
*/
13565-
interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
13572+
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
1356613573
/**
1356713574
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1356813575
*
@@ -15011,7 +15018,7 @@ declare var HTMLImageElement: {
1501115018
*
1501215019
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
1501315020
*/
15014-
interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
15021+
interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1501515022
/**
1501615023
* The **`accept`** property of the HTMLInputElement interface reflects the input element's `accept` attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an `<input>` of type `file`.
1501715024
*
@@ -15275,7 +15282,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1527515282
*/
1527615283
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
1527715284
/**
15278-
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements should let the user select directories instead of files.
15285+
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements can only select directories instead of files.
1527915286
*
1528015287
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)
1528115288
*/
@@ -18131,7 +18138,7 @@ declare var Headers: {
1813118138
*/
1813218139
interface Highlight {
1813318140
/**
18134-
* It is possible to create Range objects that overlap in a document.
18141+
* The `priority` property of the Highlight interface is a number used to determine which highlight's styles should be used to resolve style conflicts in overlapping parts.
1813518142
*
1813618143
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)
1813718144
*/
@@ -19577,7 +19584,11 @@ interface LargestContentfulPaint extends PerformanceEntry {
1957719584
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime)
1957819585
*/
1957919586
readonly loadTime: DOMHighResTimeStamp;
19580-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */
19587+
/**
19588+
* The **`renderTime`** read-only property of the LargestContentfulPaint interface represents the time that the element was rendered to the screen.
19589+
*
19590+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime)
19591+
*/
1958119592
readonly renderTime: DOMHighResTimeStamp;
1958219593
/**
1958319594
* The **`size`** read-only property of the LargestContentfulPaint interface returns the intrinsic size of the element that is the largest contentful paint.
@@ -24478,7 +24489,7 @@ declare var PopStateEvent: {
2447824489
new(type: string, eventInitDict?: PopStateEventInit): PopStateEvent;
2447924490
};
2448024491

24481-
interface PopoverInvokerElement {
24492+
interface PopoverTargetAttributes {
2448224493
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetAction) */
2448324494
popoverTargetAction: string;
2448424495
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetElement) */
@@ -25595,7 +25606,7 @@ declare var RTCPeerConnectionIceEvent: {
2559525606
*/
2559625607
interface RTCRtpReceiver {
2559725608
/**
25598-
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter buffer should hold media before playing it out.
25609+
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter should hold media before playing it out.
2559925610
*
2560025611
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)
2560125612
*/
@@ -31144,7 +31155,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
3114431155
*/
3114531156
getHTML(options?: GetHTMLOptions): string;
3114631157
/**
31147-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
31158+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
3114831159
*
3114931160
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
3115031161
*/

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,8 @@ interface PromiseRejectionEventInit extends EventInit {
495495
}
496496

497497
interface PushEventInit extends ExtendableEventInit {
498-
data?: PushMessageDataInit;
498+
data?: PushMessageDataInit | null;
499+
notification?: Notification | null;
499500
}
500501

501502
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
@@ -3966,6 +3967,12 @@ interface FontFace {
39663967
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
39673968
*/
39683969
unicodeRange: string;
3970+
/**
3971+
* The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
3972+
*
3973+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
3974+
*/
3975+
variationSettings: string;
39693976
/**
39703977
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
39713978
*

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3649,6 +3649,12 @@ interface FontFace {
36493649
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
36503650
*/
36513651
unicodeRange: string;
3652+
/**
3653+
* The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
3654+
*
3655+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
3656+
*/
3657+
variationSettings: string;
36523658
/**
36533659
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
36543660
*

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,8 @@ interface PromiseRejectionEventInit extends EventInit {
617617
}
618618

619619
interface PushEventInit extends ExtendableEventInit {
620-
data?: PushMessageDataInit;
620+
data?: PushMessageDataInit | null;
621+
notification?: Notification | null;
621622
}
622623

623624
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
@@ -4658,6 +4659,12 @@ interface FontFace {
46584659
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)
46594660
*/
46604661
unicodeRange: string;
4662+
/**
4663+
* The **`variationSettings`** property of the FontFace interface retrieves or sets low-level OpenType or TrueType font variations.
4664+
*
4665+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variationSettings)
4666+
*/
4667+
variationSettings: string;
46614668
/**
46624669
* The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.
46634670
*

0 commit comments

Comments
 (0)