Skip to content

Commit be0714f

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

9 files changed

+67
-15
lines changed

baselines/dom.generated.d.ts

+17-3
Original file line numberDiff line numberDiff line change
@@ -4803,6 +4803,8 @@ interface CSSStyleDeclaration {
48034803
pointerEvents: string;
48044804
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
48054805
position: string;
4806+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
4807+
positionArea: string;
48064808
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
48074809
printColorAdjust: string;
48084810
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
@@ -10145,7 +10147,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
1014510147
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
1014610148
*/
1014710149
readonly form: HTMLFormElement | null;
10148-
/** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
10150+
/**
10151+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
10152+
*
10153+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
10154+
*/
1014910155
formAction: string;
1015010156
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1015110157
formEnctype: string;
@@ -11411,7 +11417,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1141111417
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)
1141211418
*/
1141311419
readonly form: HTMLFormElement | null;
11414-
/** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
11420+
/**
11421+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
11422+
*
11423+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11424+
*/
1141511425
formAction: string;
1141611426
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1141711427
formEnctype: string;
@@ -19307,7 +19317,11 @@ interface Request extends Body {
1930719317
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
1930819318
*/
1930919319
readonly integrity: string;
19310-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
19320+
/**
19321+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
19322+
*
19323+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
19324+
*/
1931119325
readonly keepalive: boolean;
1931219326
/**
1931319327
* Returns request's HTTP method, which is "GET" by default.

baselines/serviceworker.generated.d.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -4682,7 +4682,11 @@ interface Request extends Body {
46824682
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
46834683
*/
46844684
readonly integrity: string;
4685-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
4685+
/**
4686+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
4687+
*
4688+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
4689+
*/
46864690
readonly keepalive: boolean;
46874691
/**
46884692
* Returns request's HTTP method, which is "GET" by default.

baselines/sharedworker.generated.d.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -4514,7 +4514,11 @@ interface Request extends Body {
45144514
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
45154515
*/
45164516
readonly integrity: string;
4517-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
4517+
/**
4518+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
4519+
*
4520+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
4521+
*/
45184522
readonly keepalive: boolean;
45194523
/**
45204524
* Returns request's HTTP method, which is "GET" by default.

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

+17-3
Original file line numberDiff line numberDiff line change
@@ -4803,6 +4803,8 @@ interface CSSStyleDeclaration {
48034803
pointerEvents: string;
48044804
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
48054805
position: string;
4806+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
4807+
positionArea: string;
48064808
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
48074809
printColorAdjust: string;
48084810
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
@@ -10145,7 +10147,11 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
1014510147
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
1014610148
*/
1014710149
readonly form: HTMLFormElement | null;
10148-
/** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
10150+
/**
10151+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
10152+
*
10153+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
10154+
*/
1014910155
formAction: string;
1015010156
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1015110157
formEnctype: string;
@@ -11411,7 +11417,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
1141111417
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)
1141211418
*/
1141311419
readonly form: HTMLFormElement | null;
11414-
/** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
11420+
/**
11421+
* Overrides the action attribute (where the data on a form is sent) on the parent form element.
11422+
*
11423+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11424+
*/
1141511425
formAction: string;
1141611426
/** Used to override the encoding (formEnctype attribute) specified on the form element. */
1141711427
formEnctype: string;
@@ -19307,7 +19317,11 @@ interface Request extends Body {
1930719317
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
1930819318
*/
1930919319
readonly integrity: string;
19310-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
19320+
/**
19321+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
19322+
*
19323+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
19324+
*/
1931119325
readonly keepalive: boolean;
1931219326
/**
1931319327
* Returns request's HTTP method, which is "GET" by default.

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -4682,7 +4682,11 @@ interface Request extends Body {
46824682
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
46834683
*/
46844684
readonly integrity: string;
4685-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
4685+
/**
4686+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
4687+
*
4688+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
4689+
*/
46864690
readonly keepalive: boolean;
46874691
/**
46884692
* Returns request's HTTP method, which is "GET" by default.

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -4514,7 +4514,11 @@ interface Request extends Body {
45144514
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
45154515
*/
45164516
readonly integrity: string;
4517-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
4517+
/**
4518+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
4519+
*
4520+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
4521+
*/
45184522
readonly keepalive: boolean;
45194523
/**
45204524
* Returns request's HTTP method, which is "GET" by default.

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -5301,7 +5301,11 @@ interface Request extends Body {
53015301
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
53025302
*/
53035303
readonly integrity: string;
5304-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
5304+
/**
5305+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
5306+
*
5307+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
5308+
*/
53055309
readonly keepalive: boolean;
53065310
/**
53075311
* Returns request's HTTP method, which is "GET" by default.

baselines/webworker.generated.d.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -5301,7 +5301,11 @@ interface Request extends Body {
53015301
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
53025302
*/
53035303
readonly integrity: string;
5304-
/** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
5304+
/**
5305+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
5306+
*
5307+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
5308+
*/
53055309
readonly keepalive: boolean;
53065310
/**
53075311
* Returns request's HTTP method, which is "GET" by default.

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)