Skip to content

Commit e0ab48f

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

14 files changed

+169
-4
lines changed

baselines/dom.generated.d.ts

Lines changed: 52 additions & 0 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
}
@@ -8394,6 +8399,31 @@ declare var CloseEvent: {
83948399
new(type: string, eventInitDict?: CloseEventInit): CloseEvent;
83958400
};
83968401

8402+
/**
8403+
* 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.
8404+
*
8405+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent)
8406+
*/
8407+
interface CommandEvent extends Event {
8408+
/**
8409+
* 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.
8410+
*
8411+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/command)
8412+
*/
8413+
readonly command: string;
8414+
/**
8415+
* The **`source`** read-only property of the CommandEvent interface returns an EventTarget representing the control that invoked the given command.
8416+
*
8417+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/source)
8418+
*/
8419+
readonly source: Element | null;
8420+
}
8421+
8422+
declare var CommandEvent: {
8423+
prototype: CommandEvent;
8424+
new(type: string, eventInitDict?: CommandEventInit): CommandEvent;
8425+
};
8426+
83978427
/**
83988428
* 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.
83998429
*
@@ -10461,6 +10491,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1046110491
createEvent(eventInterface: "BlobEvent"): BlobEvent;
1046210492
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
1046310493
createEvent(eventInterface: "CloseEvent"): CloseEvent;
10494+
createEvent(eventInterface: "CommandEvent"): CommandEvent;
1046410495
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
1046510496
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
1046610497
createEvent(eventInterface: "CookieChangeEvent"): CookieChangeEvent;
@@ -13597,6 +13628,18 @@ declare var HTMLBodyElement: {
1359713628
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1359813629
*/
1359913630
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13631+
/**
13632+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13633+
*
13634+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13635+
*/
13636+
command: string;
13637+
/**
13638+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13639+
*
13640+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13641+
*/
13642+
commandForElement: Element | null;
1360013643
/**
1360113644
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1360213645
*
@@ -18384,6 +18427,7 @@ interface IDBDatabase extends EventTarget {
1838418427
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1838518428
*/
1838618429
readonly objectStoreNames: DOMStringList;
18430+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1838718431
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1838818432
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1838918433
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23024,6 +23068,8 @@ interface ParentNode extends Node {
2302423068
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2302523069
*/
2302623070
append(...nodes: (Node | string)[]): void;
23071+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23072+
moveBefore(node: Node, child: Node | null): void;
2302723073
/**
2302823074
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2302923075
*
@@ -23551,6 +23597,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2355123597
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2355223598
*/
2355323599
readonly cancelable: boolean;
23600+
/**
23601+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23602+
*
23603+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23604+
*/
23605+
readonly interactionId: number;
2355423606
/**
2355523607
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2355623608
*

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: 52 additions & 0 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
}
@@ -8386,6 +8391,31 @@ declare var CloseEvent: {
83868391
new(type: string, eventInitDict?: CloseEventInit): CloseEvent;
83878392
};
83888393

8394+
/**
8395+
* 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.
8396+
*
8397+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent)
8398+
*/
8399+
interface CommandEvent extends Event {
8400+
/**
8401+
* 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.
8402+
*
8403+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/command)
8404+
*/
8405+
readonly command: string;
8406+
/**
8407+
* The **`source`** read-only property of the CommandEvent interface returns an EventTarget representing the control that invoked the given command.
8408+
*
8409+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/source)
8410+
*/
8411+
readonly source: Element | null;
8412+
}
8413+
8414+
declare var CommandEvent: {
8415+
prototype: CommandEvent;
8416+
new(type: string, eventInitDict?: CommandEventInit): CommandEvent;
8417+
};
8418+
83898419
/**
83908420
* 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.
83918421
*
@@ -10453,6 +10483,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1045310483
createEvent(eventInterface: "BlobEvent"): BlobEvent;
1045410484
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
1045510485
createEvent(eventInterface: "CloseEvent"): CloseEvent;
10486+
createEvent(eventInterface: "CommandEvent"): CommandEvent;
1045610487
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
1045710488
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
1045810489
createEvent(eventInterface: "CookieChangeEvent"): CookieChangeEvent;
@@ -13584,6 +13615,18 @@ declare var HTMLBodyElement: {
1358413615
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1358513616
*/
1358613617
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13618+
/**
13619+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13620+
*
13621+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13622+
*/
13623+
command: string;
13624+
/**
13625+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13626+
*
13627+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13628+
*/
13629+
commandForElement: Element | null;
1358713630
/**
1358813631
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1358913632
*
@@ -18363,6 +18406,7 @@ interface IDBDatabase extends EventTarget {
1836318406
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1836418407
*/
1836518408
readonly objectStoreNames: DOMStringList;
18409+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1836618410
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1836718411
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1836818412
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23003,6 +23047,8 @@ interface ParentNode extends Node {
2300323047
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2300423048
*/
2300523049
append(...nodes: (Node | string)[]): void;
23050+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23051+
moveBefore(node: Node, child: Node | null): void;
2300623052
/**
2300723053
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2300823054
*
@@ -23530,6 +23576,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2353023576
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2353123577
*/
2353223578
readonly cancelable: boolean;
23579+
/**
23580+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23581+
*
23582+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23583+
*/
23584+
readonly interactionId: number;
2353323585
/**
2353423586
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2353523587
*

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;

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

Lines changed: 52 additions & 0 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
}
@@ -8394,6 +8399,31 @@ declare var CloseEvent: {
83948399
new(type: string, eventInitDict?: CloseEventInit): CloseEvent;
83958400
};
83968401

8402+
/**
8403+
* 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.
8404+
*
8405+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent)
8406+
*/
8407+
interface CommandEvent extends Event {
8408+
/**
8409+
* 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.
8410+
*
8411+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/command)
8412+
*/
8413+
readonly command: string;
8414+
/**
8415+
* The **`source`** read-only property of the CommandEvent interface returns an EventTarget representing the control that invoked the given command.
8416+
*
8417+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CommandEvent/source)
8418+
*/
8419+
readonly source: Element | null;
8420+
}
8421+
8422+
declare var CommandEvent: {
8423+
prototype: CommandEvent;
8424+
new(type: string, eventInitDict?: CommandEventInit): CommandEvent;
8425+
};
8426+
83978427
/**
83988428
* 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.
83998429
*
@@ -10461,6 +10491,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
1046110491
createEvent(eventInterface: "BlobEvent"): BlobEvent;
1046210492
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
1046310493
createEvent(eventInterface: "CloseEvent"): CloseEvent;
10494+
createEvent(eventInterface: "CommandEvent"): CommandEvent;
1046410495
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
1046510496
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
1046610497
createEvent(eventInterface: "CookieChangeEvent"): CookieChangeEvent;
@@ -13597,6 +13628,18 @@ declare var HTMLBodyElement: {
1359713628
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1359813629
*/
1359913630
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13631+
/**
13632+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13633+
*
13634+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13635+
*/
13636+
command: string;
13637+
/**
13638+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13639+
*
13640+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13641+
*/
13642+
commandForElement: Element | null;
1360013643
/**
1360113644
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1360213645
*
@@ -18384,6 +18427,7 @@ interface IDBDatabase extends EventTarget {
1838418427
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1838518428
*/
1838618429
readonly objectStoreNames: DOMStringList;
18430+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1838718431
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1838818432
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1838918433
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23024,6 +23068,8 @@ interface ParentNode extends Node {
2302423068
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2302523069
*/
2302623070
append(...nodes: (Node | string)[]): void;
23071+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23072+
moveBefore(node: Node, child: Node | null): void;
2302723073
/**
2302823074
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2302923075
*
@@ -23551,6 +23597,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2355123597
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2355223598
*/
2355323599
readonly cancelable: boolean;
23600+
/**
23601+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23602+
*
23603+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23604+
*/
23605+
readonly interactionId: number;
2355423606
/**
2355523607
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2355623608
*

baselines/ts5.6/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.6/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;

0 commit comments

Comments
 (0)