Skip to content

Commit 732e5e0

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 0a73b57 commit 732e5e0

File tree

6 files changed

+54
-34
lines changed

6 files changed

+54
-34
lines changed

baselines/dom.generated.d.ts

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2309,6 +2309,7 @@ interface TextEncoderEncodeIntoResult {
23092309
interface ToggleEventInit extends EventInit {
23102310
newState?: string;
23112311
oldState?: string;
2312+
source?: Element | null;
23122313
}
23132314

23142315
interface TouchEventInit extends EventModifierInit {
@@ -3277,7 +3278,11 @@ interface AnimationTimeline {
32773278
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32783279
*/
32793280
readonly currentTime: CSSNumberish | null;
3280-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3281+
/**
3282+
* The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3283+
*
3284+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3285+
*/
32813286
readonly duration: CSSNumberish | null;
32823287
}
32833288

@@ -14137,7 +14142,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
1413714142
*/
1413814143
innerText: string;
1413914144
/**
14140-
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14145+
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
1414114146
*
1414214147
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
1414314148
*/
@@ -15486,7 +15491,7 @@ interface HTMLLabelElement extends HTMLElement {
1548615491
*/
1548715492
readonly control: HTMLElement | null;
1548815493
/**
15489-
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15494+
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
1549015495
*
1549115496
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
1549215497
*/
@@ -16797,7 +16802,7 @@ interface HTMLScriptElement extends HTMLElement {
1679716802
*/
1679816803
src: string;
1679916804
/**
16800-
* The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16805+
* The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
1680116806
*
1680216807
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
1680316808
*/
@@ -30640,7 +30645,7 @@ interface ScreenOrientation extends EventTarget {
3064030645
*/
3064130646
lock(orientation: OrientationLockType): Promise<void>;
3064230647
/**
30643-
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30648+
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
3064430649
*
3064530650
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
3064630651
*/
@@ -40144,7 +40149,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
4014440149
type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
4014540150
type MediaSessionPlaybackState = "none" | "paused" | "playing";
4014640151
type MediaStreamTrackState = "ended" | "live";
40147-
type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40152+
type NavigationTimingType = "back_forward" | "navigate" | "reload";
4014840153
type NavigationType = "push" | "reload" | "replace" | "traverse";
4014940154
type NotificationDirection = "auto" | "ltr" | "rtl";
4015040155
type NotificationPermission = "default" | "denied" | "granted";

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

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2306,6 +2306,7 @@ interface TextEncoderEncodeIntoResult {
23062306
interface ToggleEventInit extends EventInit {
23072307
newState?: string;
23082308
oldState?: string;
2309+
source?: Element | null;
23092310
}
23102311

23112312
interface TouchEventInit extends EventModifierInit {
@@ -3274,7 +3275,11 @@ interface AnimationTimeline {
32743275
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32753276
*/
32763277
readonly currentTime: CSSNumberish | null;
3277-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3278+
/**
3279+
* The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3280+
*
3281+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3282+
*/
32783283
readonly duration: CSSNumberish | null;
32793284
}
32803285

@@ -14121,7 +14126,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
1412114126
*/
1412214127
innerText: string;
1412314128
/**
14124-
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14129+
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
1412514130
*
1412614131
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
1412714132
*/
@@ -15468,7 +15473,7 @@ interface HTMLLabelElement extends HTMLElement {
1546815473
*/
1546915474
readonly control: HTMLElement | null;
1547015475
/**
15471-
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15476+
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
1547215477
*
1547315478
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
1547415479
*/
@@ -16774,7 +16779,7 @@ interface HTMLScriptElement extends HTMLElement {
1677416779
*/
1677516780
src: string;
1677616781
/**
16777-
* The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16782+
* The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
1677816783
*
1677916784
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
1678016785
*/
@@ -30615,7 +30620,7 @@ interface ScreenOrientation extends EventTarget {
3061530620
*/
3061630621
lock(orientation: OrientationLockType): Promise<void>;
3061730622
/**
30618-
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30623+
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
3061930624
*
3062030625
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
3062130626
*/
@@ -40118,7 +40123,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
4011840123
type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
4011940124
type MediaSessionPlaybackState = "none" | "paused" | "playing";
4012040125
type MediaStreamTrackState = "ended" | "live";
40121-
type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40126+
type NavigationTimingType = "back_forward" | "navigate" | "reload";
4012240127
type NavigationType = "push" | "reload" | "replace" | "traverse";
4012340128
type NotificationDirection = "auto" | "ltr" | "rtl";
4012440129
type NotificationPermission = "default" | "denied" | "granted";

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

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2306,6 +2306,7 @@ interface TextEncoderEncodeIntoResult {
23062306
interface ToggleEventInit extends EventInit {
23072307
newState?: string;
23082308
oldState?: string;
2309+
source?: Element | null;
23092310
}
23102311

23112312
interface TouchEventInit extends EventModifierInit {
@@ -3274,7 +3275,11 @@ interface AnimationTimeline {
32743275
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32753276
*/
32763277
readonly currentTime: CSSNumberish | null;
3277-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3278+
/**
3279+
* The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3280+
*
3281+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3282+
*/
32783283
readonly duration: CSSNumberish | null;
32793284
}
32803285

@@ -14134,7 +14139,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
1413414139
*/
1413514140
innerText: string;
1413614141
/**
14137-
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14142+
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
1413814143
*
1413914144
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
1414014145
*/
@@ -15483,7 +15488,7 @@ interface HTMLLabelElement extends HTMLElement {
1548315488
*/
1548415489
readonly control: HTMLElement | null;
1548515490
/**
15486-
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15491+
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
1548715492
*
1548815493
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
1548915494
*/
@@ -16794,7 +16799,7 @@ interface HTMLScriptElement extends HTMLElement {
1679416799
*/
1679516800
src: string;
1679616801
/**
16797-
* The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16802+
* The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
1679816803
*
1679916804
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
1680016805
*/
@@ -30637,7 +30642,7 @@ interface ScreenOrientation extends EventTarget {
3063730642
*/
3063830643
lock(orientation: OrientationLockType): Promise<void>;
3063930644
/**
30640-
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30645+
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
3064130646
*
3064230647
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
3064330648
*/
@@ -40141,7 +40146,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
4014140146
type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
4014240147
type MediaSessionPlaybackState = "none" | "paused" | "playing";
4014340148
type MediaStreamTrackState = "ended" | "live";
40144-
type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40149+
type NavigationTimingType = "back_forward" | "navigate" | "reload";
4014540150
type NavigationType = "push" | "reload" | "replace" | "traverse";
4014640151
type NotificationDirection = "auto" | "ltr" | "rtl";
4014740152
type NotificationPermission = "default" | "denied" | "granted";

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

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2306,6 +2306,7 @@ interface TextEncoderEncodeIntoResult {
23062306
interface ToggleEventInit extends EventInit {
23072307
newState?: string;
23082308
oldState?: string;
2309+
source?: Element | null;
23092310
}
23102311

23112312
interface TouchEventInit extends EventModifierInit {
@@ -3274,7 +3275,11 @@ interface AnimationTimeline {
32743275
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32753276
*/
32763277
readonly currentTime: CSSNumberish | null;
3277-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3278+
/**
3279+
* The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3280+
*
3281+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3282+
*/
32783283
readonly duration: CSSNumberish | null;
32793284
}
32803285

@@ -14134,7 +14139,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
1413414139
*/
1413514140
innerText: string;
1413614141
/**
14137-
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14142+
* The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
1413814143
*
1413914144
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
1414014145
*/
@@ -15483,7 +15488,7 @@ interface HTMLLabelElement extends HTMLElement {
1548315488
*/
1548415489
readonly control: HTMLElement | null;
1548515490
/**
15486-
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15491+
* The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
1548715492
*
1548815493
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
1548915494
*/
@@ -16794,7 +16799,7 @@ interface HTMLScriptElement extends HTMLElement {
1679416799
*/
1679516800
src: string;
1679616801
/**
16797-
* The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16802+
* The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
1679816803
*
1679916804
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
1680016805
*/
@@ -30637,7 +30642,7 @@ interface ScreenOrientation extends EventTarget {
3063730642
*/
3063830643
lock(orientation: OrientationLockType): Promise<void>;
3063930644
/**
30640-
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30645+
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
3064130646
*
3064230647
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
3064330648
*/
@@ -40141,7 +40146,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
4014140146
type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
4014240147
type MediaSessionPlaybackState = "none" | "paused" | "playing";
4014340148
type MediaStreamTrackState = "ended" | "live";
40144-
type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40149+
type NavigationTimingType = "back_forward" | "navigate" | "reload";
4014540150
type NavigationType = "push" | "reload" | "replace" | "traverse";
4014640151
type NotificationDirection = "auto" | "ltr" | "rtl";
4014740152
type NotificationPermission = "default" | "denied" | "granted";

inputfiles/mdn

Submodule mdn updated 995 files

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)