Skip to content

Commit 9949e57

Browse files
authored
Manually update to [email protected] (#1441)
Co-authored-by: saschanaz <[email protected]>
1 parent f9ddf68 commit 9949e57

File tree

4 files changed

+43
-22
lines changed

4 files changed

+43
-22
lines changed

baselines/dom.generated.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@ interface ChannelSplitterOptions extends AudioNodeOptions {
178178
numberOfOutputs?: number;
179179
}
180180

181+
interface CheckVisibilityOptions {
182+
checkOpacity?: boolean;
183+
checkVisibilityCSS?: boolean;
184+
}
185+
181186
interface ClientQueryOptions {
182187
includeUncontrolled?: boolean;
183188
type?: ClientTypes;
@@ -5044,6 +5049,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
50445049
readonly tagName: string;
50455050
/** Creates a shadow root for element and returns it. */
50465051
attachShadow(init: ShadowRootInit): ShadowRoot;
5052+
checkVisibility(options?: CheckVisibilityOptions): boolean;
50475053
/** Returns the first (starting at element) inclusive ancestor that matches selectors, and null otherwise. */
50485054
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
50495055
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
@@ -7111,7 +7117,7 @@ interface HTMLInputElement extends HTMLElement {
71117117
indeterminate: boolean;
71127118
readonly labels: NodeListOf<HTMLLabelElement> | null;
71137119
/** Specifies the ID of a pre-defined datalist of options for an input element. */
7114-
readonly list: HTMLElement | null;
7120+
readonly list: HTMLDataListElement | null;
71157121
/** Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */
71167122
max: string;
71177123
/** Sets or retrieves the maximum number of characters that the user can enter in a text control. */

inputfiles/overridingTypes.jsonc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1909,6 +1909,14 @@
19091909
]
19101910
}
19111911
},
1912+
"FileSystemDirectoryHandle": {
1913+
"iterator": {
1914+
// It's true that Blink is the only supported engine for Symbol.asyncIterator,
1915+
// WebKit does support the keys/values/entries method and Gecko will soon follow.
1916+
// Let's not go back and forth for this one.
1917+
"exposed": "Window Worker"
1918+
}
1919+
},
19121920
"MutationRecord": {
19131921
"properties": {
19141922
"property": {
@@ -2970,6 +2978,12 @@
29702978
}
29712979
}
29722980
},
2981+
"MIDIInputMap": {
2982+
"iterator": {
2983+
// https://github.com/mdn/browser-compat-data/pull/18352
2984+
"exposed": "Window"
2985+
}
2986+
},
29732987
"Clients": {
29742988
"methods": {
29752989
"method": {

inputfiles/removedTypes.jsonc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,7 @@
538538
"powerEfficientEncoder": null, // No implementation as of 2022-10
539539
"qualityLimitationReason": null, // Blink only as of 2022-09
540540
"qualityLimitationDurations": null, // Blink only as of 2022-09
541+
"scalabilityMode": null, // No implementation as of 2022-12
541542
"encoderImplementation": null // Blink only as of 2022-09
542543
}
543544
}

package-lock.json

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

0 commit comments

Comments
 (0)