Skip to content

Commit 1f39d0b

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent c059d14 commit 1f39d0b

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;
@@ -13600,6 +13631,18 @@ declare var HTMLBodyElement: {
1360013631
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1360113632
*/
1360213633
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13634+
/**
13635+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13636+
*
13637+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13638+
*/
13639+
command: string;
13640+
/**
13641+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13642+
*
13643+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13644+
*/
13645+
commandForElement: Element | null;
1360313646
/**
1360413647
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1360513648
*
@@ -18387,6 +18430,7 @@ interface IDBDatabase extends EventTarget {
1838718430
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1838818431
*/
1838918432
readonly objectStoreNames: DOMStringList;
18433+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1839018434
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1839118435
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1839218436
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23027,6 +23071,8 @@ interface ParentNode extends Node {
2302723071
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2302823072
*/
2302923073
append(...nodes: (Node | string)[]): void;
23074+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23075+
moveBefore(node: Node, child: Node | null): void;
2303023076
/**
2303123077
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2303223078
*
@@ -23554,6 +23600,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2355423600
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2355523601
*/
2355623602
readonly cancelable: boolean;
23603+
/**
23604+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23605+
*
23606+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23607+
*/
23608+
readonly interactionId: number;
2355723609
/**
2355823610
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2355923611
*

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;
@@ -13587,6 +13618,18 @@ declare var HTMLBodyElement: {
1358713618
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1358813619
*/
1358913620
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13621+
/**
13622+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13623+
*
13624+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13625+
*/
13626+
command: string;
13627+
/**
13628+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13629+
*
13630+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13631+
*/
13632+
commandForElement: Element | null;
1359013633
/**
1359113634
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1359213635
*
@@ -18366,6 +18409,7 @@ interface IDBDatabase extends EventTarget {
1836618409
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1836718410
*/
1836818411
readonly objectStoreNames: DOMStringList;
18412+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1836918413
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1837018414
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1837118415
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23006,6 +23050,8 @@ interface ParentNode extends Node {
2300623050
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2300723051
*/
2300823052
append(...nodes: (Node | string)[]): void;
23053+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23054+
moveBefore(node: Node, child: Node | null): void;
2300923055
/**
2301023056
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2301123057
*
@@ -23533,6 +23579,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2353323579
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2353423580
*/
2353523581
readonly cancelable: boolean;
23582+
/**
23583+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23584+
*
23585+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23586+
*/
23587+
readonly interactionId: number;
2353623588
/**
2353723589
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2353823590
*

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;
@@ -13600,6 +13631,18 @@ declare var HTMLBodyElement: {
1360013631
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)
1360113632
*/
1360213633
interface HTMLButtonElement extends HTMLElement, PopoverTargetAttributes {
13634+
/**
13635+
* The **`command`** property of the HTMLButtonElement interface gets and sets the action to be performed on an element being controlled by this button.
13636+
*
13637+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/command)
13638+
*/
13639+
command: string;
13640+
/**
13641+
* The **`commandForElement`** property of the HTMLButtonElement interface gets and sets the element to control via a button.
13642+
*
13643+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/commandForElement)
13644+
*/
13645+
commandForElement: Element | null;
1360313646
/**
1360413647
* The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.
1360513648
*
@@ -18387,6 +18430,7 @@ interface IDBDatabase extends EventTarget {
1838718430
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
1838818431
*/
1838918432
readonly objectStoreNames: DOMStringList;
18433+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
1839018434
onabort: ((this: IDBDatabase, ev: Event) => any) | null;
1839118435
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */
1839218436
onclose: ((this: IDBDatabase, ev: Event) => any) | null;
@@ -23027,6 +23071,8 @@ interface ParentNode extends Node {
2302723071
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
2302823072
*/
2302923073
append(...nodes: (Node | string)[]): void;
23074+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) */
23075+
moveBefore(node: Node, child: Node | null): void;
2303023076
/**
2303123077
* Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
2303223078
*
@@ -23554,6 +23600,12 @@ interface PerformanceEventTiming extends PerformanceEntry {
2355423600
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)
2355523601
*/
2355623602
readonly cancelable: boolean;
23603+
/**
23604+
* The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23605+
*
23606+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23607+
*/
23608+
readonly interactionId: number;
2355723609
/**
2355823610
* The read-only **`processingEnd`** property returns the time the last event handler finished executing.
2355923611
*

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)