Skip to content

Commit 4c35bd5

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent af33889 commit 4c35bd5

14 files changed

+199
-10
lines changed

baselines/dom.generated.d.ts

Lines changed: 62 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,11 @@ interface CloseEventInit extends EventInit {
357357
wasClean?: boolean;
358358
}
359359

360+
interface CommandEventInit extends EventInit {
361+
command?: string;
362+
source?: Element | null;
363+
}
364+
360365
interface CompositionEventInit extends UIEventInit {
361366
data?: string;
362367
}
@@ -3268,6 +3273,7 @@ interface AnimationTimeline {
32683273
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32693274
*/
32703275
readonly currentTime: CSSNumberish | null;
3276+
/** The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`. */
32713277
readonly duration: CSSNumberish | null;
32723278
}
32733279

@@ -8394,6 +8400,31 @@ declare var CloseEvent: {
83948400
new(type: string, eventInitDict?: CloseEventInit): CloseEvent;
83958401
};
83968402

8403+
/**
8404+
* The **`CommandEvent`** interface represents an event notifying the user when a HTMLButtonElement element with valid HTMLButtonElement.commandForElement and HTMLButtonElement.command attributes is about to invoke an interactive element.
8405+
*
8406+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent)
8407+
*/
8408+
interface CommandEvent extends Event {
8409+
/**
8410+
* The **`command`** read-only property of the CommandEvent interface returns a string containing the value of the HTMLButtonElement.command property at the time the event was dispatched.
8411+
*
8412+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/command)
8413+
*/
8414+
readonly command: string;
8415+
/**
8416+
* The **`source`** read-only property of the CommandEvent interface returns an EventTarget representing the control that invoked the given command.
8417+
*
8418+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/source)
8419+
*/
8420+
readonly source: Element | null;
8421+
}
8422+
8423+
declare var CommandEvent: {
8424+
prototype: CommandEvent;
8425+
new(type: string, eventInitDict?: CommandEventInit): CommandEvent;
8426+
};
8427+
83978428
/**
83988429
* The **`Comment`** interface represents textual notations within markup; although it is generally not visually shown, such comments are available to be read in the source view.
83998430
*
@@ -10461,6 +10492,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1046110492
createEvent(eventInterface: "BlobEvent"): BlobEvent;
1046210493
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
1046310494
createEvent(eventInterface: "CloseEvent"): CloseEvent;
10495+
createEvent(eventInterface: "CommandEvent"): CommandEvent;
1046410496
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
1046510497
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
1046610498
createEvent(eventInterface: "CookieChangeEvent"): CookieChangeEvent;
@@ -13600,6 +13632,18 @@ declare var HTMLBodyElement: {
1360013632
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1360113633
*/
1360213634
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13635+
/**
13636+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13637+
*
13638+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13639+
*/
13640+
command: string;
13641+
/**
13642+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13643+
*
13644+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13645+
*/
13646+
commandForElement: Element | null;
1360313647
/**
1360413648
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1360513649
*
@@ -16746,7 +16790,7 @@ interface HTMLScriptElement extends HTMLElement {
1674616790
*/
1674716791
src: string;
1674816792
/**
16749-
* The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16793+
* The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
1675016794
*
1675116795
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
1675216796
*/
@@ -18387,6 +18431,7 @@ interface IDBDatabase extends EventTarget {
1838718431
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1838818432
*/
1838918433
readonly objectStoreNames: DOMStringList;
18434+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1839018435
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1839118436
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1839218437
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23027,6 +23072,8 @@ interface ParentNode extends Node {
2302723072
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2302823073
*/
2302923074
append(...nodes: (Node | string)[]): void;
23075+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23076+
moveBefore(node: Node, child: Node | null): void;
2303023077
/**
2303123078
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2303223079
*
@@ -23554,6 +23601,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2355423601
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2355523602
*/
2355623603
readonly cancelable: boolean;
23604+
/**
23605+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23606+
*
23607+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23608+
*/
23609+
readonly interactionId: number;
2355723610
/**
2355823611
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2355923612
*
@@ -30566,7 +30619,13 @@ interface ScreenOrientation extends EventTarget {
3056630619
*/
3056730620
readonly type: OrientationType;
3056830621
/**
30569-
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30622+
* The **`lock()`** method of the ScreenOrientation interface locks the orientation of the containing document to the specified orientation.
30623+
*
30624+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/lock)
30625+
*/
30626+
lock(orientation: OrientationLockType): Promise<void>;
30627+
/**
30628+
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
3057030629
*
3057130630
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
3057230631
*/
@@ -40015,6 +40074,7 @@ type NotificationDirection = "auto" | "ltr" | "rtl";
4001540074
type NotificationPermission = "default" | "denied" | "granted";
4001640075
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2" | "webgpu";
4001740076
type OpusBitstreamFormat = "ogg" | "opus";
40077+
type OrientationLockType = "any" | "landscape" | "landscape-primary" | "landscape-secondary" | "natural" | "portrait" | "portrait-primary" | "portrait-secondary";
4001840078
type OrientationType = "landscape-primary" | "landscape-secondary" | "portrait-primary" | "portrait-secondary";
4001940079
type OscillatorType = "custom" | "sawtooth" | "sine" | "square" | "triangle";
4002040080
type OverSampleType = "2x" | "4x" | "none";

baselines/serviceworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4337,6 +4337,7 @@ interface IDBDatabase extends EventTarget {
43374337
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
43384338
*/
43394339
readonly objectStoreNames: DOMStringList;
4340+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
43404341
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
43414342
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
43424343
onclose: ((this: IDBDatabase, ev: Event) => any) | null;

baselines/sharedworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4020,6 +4020,7 @@ interface IDBDatabase extends EventTarget {
40204020
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
40214021
*/
40224022
readonly objectStoreNames: DOMStringList;
4023+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
40234024
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
40244025
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
40254026
onclose: ((this: IDBDatabase, ev: Event) => any) | null;

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

Lines changed: 62 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,11 @@ interface CloseEventInit extends EventInit {
357357
wasClean?: boolean;
358358
}
359359

360+
interface CommandEventInit extends EventInit {
361+
command?: string;
362+
source?: Element | null;
363+
}
364+
360365
interface CompositionEventInit extends UIEventInit {
361366
data?: string;
362367
}
@@ -3268,6 +3273,7 @@ interface AnimationTimeline {
32683273
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32693274
*/
32703275
readonly currentTime: CSSNumberish | null;
3276+
/** The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`. */
32713277
readonly duration: CSSNumberish | null;
32723278
}
32733279

@@ -8386,6 +8392,31 @@ declare var CloseEvent: {
83868392
new(type: string, eventInitDict?: CloseEventInit): CloseEvent;
83878393
};
83888394

8395+
/**
8396+
* The **`CommandEvent`** interface represents an event notifying the user when a HTMLButtonElement element with valid HTMLButtonElement.commandForElement and HTMLButtonElement.command attributes is about to invoke an interactive element.
8397+
*
8398+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent)
8399+
*/
8400+
interface CommandEvent extends Event {
8401+
/**
8402+
* The **`command`** read-only property of the CommandEvent interface returns a string containing the value of the HTMLButtonElement.command property at the time the event was dispatched.
8403+
*
8404+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/command)
8405+
*/
8406+
readonly command: string;
8407+
/**
8408+
* The **`source`** read-only property of the CommandEvent interface returns an EventTarget representing the control that invoked the given command.
8409+
*
8410+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/source)
8411+
*/
8412+
readonly source: Element | null;
8413+
}
8414+
8415+
declare var CommandEvent: {
8416+
prototype: CommandEvent;
8417+
new(type: string, eventInitDict?: CommandEventInit): CommandEvent;
8418+
};
8419+
83898420
/**
83908421
* The **`Comment`** interface represents textual notations within markup; although it is generally not visually shown, such comments are available to be read in the source view.
83918422
*
@@ -10453,6 +10484,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1045310484
createEvent(eventInterface: "BlobEvent"): BlobEvent;
1045410485
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
1045510486
createEvent(eventInterface: "CloseEvent"): CloseEvent;
10487+
createEvent(eventInterface: "CommandEvent"): CommandEvent;
1045610488
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
1045710489
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
1045810490
createEvent(eventInterface: "CookieChangeEvent"): CookieChangeEvent;
@@ -13587,6 +13619,18 @@ declare var HTMLBodyElement: {
1358713619
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1358813620
*/
1358913621
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13622+
/**
13623+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13624+
*
13625+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13626+
*/
13627+
command: string;
13628+
/**
13629+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13630+
*
13631+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13632+
*/
13633+
commandForElement: Element | null;
1359013634
/**
1359113635
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1359213636
*
@@ -16726,7 +16770,7 @@ interface HTMLScriptElement extends HTMLElement {
1672616770
*/
1672716771
src: string;
1672816772
/**
16729-
* The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16773+
* The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
1673016774
*
1673116775
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
1673216776
*/
@@ -18366,6 +18410,7 @@ interface IDBDatabase extends EventTarget {
1836618410
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1836718411
*/
1836818412
readonly objectStoreNames: DOMStringList;
18413+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1836918414
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1837018415
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1837118416
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23006,6 +23051,8 @@ interface ParentNode extends Node {
2300623051
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2300723052
*/
2300823053
append(...nodes: (Node | string)[]): void;
23054+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23055+
moveBefore(node: Node, child: Node | null): void;
2300923056
/**
2301023057
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2301123058
*
@@ -23533,6 +23580,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2353323580
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2353423581
*/
2353523582
readonly cancelable: boolean;
23583+
/**
23584+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23585+
*
23586+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23587+
*/
23588+
readonly interactionId: number;
2353623589
/**
2353723590
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2353823591
*
@@ -30544,7 +30597,13 @@ interface ScreenOrientation extends EventTarget {
3054430597
*/
3054530598
readonly type: OrientationType;
3054630599
/**
30547-
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30600+
* The **`lock()`** method of the ScreenOrientation interface locks the orientation of the containing document to the specified orientation.
30601+
*
30602+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/lock)
30603+
*/
30604+
lock(orientation: OrientationLockType): Promise<void>;
30605+
/**
30606+
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
3054830607
*
3054930608
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
3055030609
*/
@@ -39992,6 +40051,7 @@ type NotificationDirection = "auto" | "ltr" | "rtl";
3999240051
type NotificationPermission = "default" | "denied" | "granted";
3999340052
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2" | "webgpu";
3999440053
type OpusBitstreamFormat = "ogg" | "opus";
40054+
type OrientationLockType = "any" | "landscape" | "landscape-primary" | "landscape-secondary" | "natural" | "portrait" | "portrait-primary" | "portrait-secondary";
3999540055
type OrientationType = "landscape-primary" | "landscape-secondary" | "portrait-primary" | "portrait-secondary";
3999640056
type OscillatorType = "custom" | "sawtooth" | "sine" | "square" | "triangle";
3999740057
type OverSampleType = "2x" | "4x" | "none";

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4337,6 +4337,7 @@ interface IDBDatabase extends EventTarget {
43374337
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
43384338
*/
43394339
readonly objectStoreNames: DOMStringList;
4340+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
43404341
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
43414342
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
43424343
onclose: ((this: IDBDatabase, ev: Event) => any) | null;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4020,6 +4020,7 @@ interface IDBDatabase extends EventTarget {
40204020
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
40214021
*/
40224022
readonly objectStoreNames: DOMStringList;
4023+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
40234024
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
40244025
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
40254026
onclose: ((this: IDBDatabase, ev: Event) => any) | null;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5029,6 +5029,7 @@ interface IDBDatabase extends EventTarget {
50295029
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
50305030
*/
50315031
readonly objectStoreNames: DOMStringList;
5032+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
50325033
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
50335034
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
50345035
onclose: ((this: IDBDatabase, ev: Event) => any) | null;

0 commit comments

Comments
 (0)