Skip to content

Commit c2f12df

Browse files
authored
🤖 Update core dependencies
1 parent 27fa26c commit c2f12df

File tree

6 files changed

+160
-74
lines changed

6 files changed

+160
-74
lines changed

baselines/dom.generated.d.ts

Lines changed: 62 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,10 @@ interface ConstrainULongRange extends ULongRange {
270270
ideal?: number;
271271
}
272272

273+
interface ContentVisibilityAutoStateChangeEventInit extends EventInit {
274+
skipped?: boolean;
275+
}
276+
273277
interface ConvolverOptions extends AudioNodeOptions {
274278
buffer?: AudioBuffer | null;
275279
disableNormalization?: boolean;
@@ -285,6 +289,7 @@ interface CredentialPropertiesOutput {
285289
}
286290

287291
interface CredentialRequestOptions {
292+
digital?: DigitalCredentialRequestOptions;
288293
mediation?: CredentialMediationRequirement;
289294
publicKey?: PublicKeyCredentialRequestOptions;
290295
signal?: AbortSignal;
@@ -380,6 +385,10 @@ interface DeviceOrientationEventInit extends EventInit {
380385
gamma?: number | null;
381386
}
382387

388+
interface DigitalCredentialRequestOptions {
389+
providers?: IdentityRequestProvider[];
390+
}
391+
383392
interface DisplayMediaStreamOptions {
384393
audio?: boolean | MediaTrackConstraints;
385394
video?: boolean | MediaTrackConstraints;
@@ -635,6 +644,11 @@ interface IIRFilterOptions extends AudioNodeOptions {
635644
feedforward: number[];
636645
}
637646

647+
interface IdentityRequestProvider {
648+
protocol: string;
649+
request: string;
650+
}
651+
638652
interface IdleRequestOptions {
639653
timeout?: number;
640654
}
@@ -865,9 +879,6 @@ interface MediaRecorderOptions {
865879

866880
interface MediaSessionActionDetails {
867881
action: MediaSessionAction;
868-
fastSeek?: boolean;
869-
seekOffset?: number;
870-
seekTime?: number;
871882
}
872883

873884
interface MediaStreamAudioSourceOptions {
@@ -1753,16 +1764,16 @@ interface ScrollToOptions extends ScrollOptions {
17531764
interface SecurityPolicyViolationEventInit extends EventInit {
17541765
blockedURI?: string;
17551766
columnNumber?: number;
1756-
disposition: SecurityPolicyViolationEventDisposition;
1757-
documentURI: string;
1758-
effectiveDirective: string;
1767+
disposition?: SecurityPolicyViolationEventDisposition;
1768+
documentURI?: string;
1769+
effectiveDirective?: string;
17591770
lineNumber?: number;
1760-
originalPolicy: string;
1771+
originalPolicy?: string;
17611772
referrer?: string;
17621773
sample?: string;
17631774
sourceFile?: string;
1764-
statusCode: number;
1765-
violatedDirective: string;
1775+
statusCode?: number;
1776+
violatedDirective?: string;
17661777
}
17671778

17681779
interface ShadowRootInit {
@@ -2112,6 +2123,8 @@ interface WebTransportHash {
21122123

21132124
interface WebTransportOptions {
21142125
allowPooling?: boolean;
2126+
anticipatedConcurrentIncomingBidirectionalStreams?: number | null;
2127+
anticipatedConcurrentIncomingUnidirectionalStreams?: number | null;
21152128
congestionControl?: WebTransportCongestionControl;
21162129
requireUnreliable?: boolean;
21172130
serverCertificateHashes?: WebTransportHash[];
@@ -4090,6 +4103,8 @@ interface CSSStyleDeclaration {
40904103
containerType: string;
40914104
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
40924105
content: string;
4106+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content-visibility) */
4107+
contentVisibility: string;
40934108
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
40944109
counterIncrement: string;
40954110
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
@@ -4591,6 +4606,7 @@ interface CSSStyleDeclaration {
45914606
textUnderlinePosition: string;
45924607
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
45934608
textWrap: string;
4609+
textWrapMode: string;
45944610
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
45954611
top: string;
45964612
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
@@ -5813,6 +5829,17 @@ declare var ConstantSourceNode: {
58135829
new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode;
58145830
};
58155831

5832+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent) */
5833+
interface ContentVisibilityAutoStateChangeEvent extends Event {
5834+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent/skipped) */
5835+
readonly skipped: boolean;
5836+
}
5837+
5838+
declare var ContentVisibilityAutoStateChangeEvent: {
5839+
prototype: ContentVisibilityAutoStateChangeEvent;
5840+
new(type: string, eventInitDict?: ContentVisibilityAutoStateChangeEventInit): ContentVisibilityAutoStateChangeEvent;
5841+
};
5842+
58165843
/**
58175844
* An AudioNode that performs a Linear Convolution on a given AudioBuffer, often used to achieve a reverb effect. A ConvolverNode always has exactly one input and one output.
58185845
*
@@ -5974,6 +6001,16 @@ declare var CustomEvent: {
59746001
new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
59756002
};
59766003

6004+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomStateSet) */
6005+
interface CustomStateSet {
6006+
forEach(callbackfn: (value: string, key: string, parent: CustomStateSet) => void, thisArg?: any): void;
6007+
}
6008+
6009+
declare var CustomStateSet: {
6010+
prototype: CustomStateSet;
6011+
new(): CustomStateSet;
6012+
};
6013+
59776014
/**
59786015
* An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API.
59796016
*
@@ -7162,6 +7199,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
71627199
createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;
71637200
createEvent(eventInterface: "CloseEvent"): CloseEvent;
71647201
createEvent(eventInterface: "CompositionEvent"): CompositionEvent;
7202+
createEvent(eventInterface: "ContentVisibilityAutoStateChangeEvent"): ContentVisibilityAutoStateChangeEvent;
71657203
createEvent(eventInterface: "CustomEvent"): CustomEvent;
71667204
createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;
71677205
createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;
@@ -7939,6 +7977,8 @@ interface ElementInternals extends ARIAMixin {
79397977
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/shadowRoot)
79407978
*/
79417979
readonly shadowRoot: ShadowRoot | null;
7980+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/states) */
7981+
readonly states: CustomStateSet;
79427982
/**
79437983
* Returns the error message that would be shown to the user if internals's target element was to be checked for validity.
79447984
*
@@ -8717,7 +8757,6 @@ declare var GainNode: {
87178757

87188758
/**
87198759
* This Gamepad API interface defines an individual gamepad or other controller, allowing access to information such as button presses, axis positions, and id.
8720-
* Available only in secure contexts.
87218760
*
87228761
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad)
87238762
*/
@@ -8746,7 +8785,6 @@ declare var Gamepad: {
87468785

87478786
/**
87488787
* An individual button of a gamepad or other controller, allowing access to the current state of different types of buttons available on the control device.
8749-
* Available only in secure contexts.
87508788
*
87518789
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton)
87528790
*/
@@ -8766,7 +8804,6 @@ declare var GamepadButton: {
87668804

87678805
/**
87688806
* This Gamepad API interface contains references to gamepads connected to the system, which is what the gamepad events Window.gamepadconnected and Window.gamepaddisconnected are fired in response to.
8769-
* Available only in secure contexts.
87708807
*
87718808
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent)
87728809
*/
@@ -21488,6 +21525,8 @@ interface ShadowRootEventMap {
2148821525

2148921526
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot) */
2149021527
interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
21528+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/clonable) */
21529+
readonly clonable: boolean;
2149121530
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus) */
2149221531
readonly delegatesFocus: boolean;
2149321532
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host) */
@@ -26018,7 +26057,11 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
2601826057
readonly window: Window & typeof globalThis;
2601926058
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
2602026059
alert(message?: any): void;
26021-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
26060+
/**
26061+
* @deprecated
26062+
*
26063+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
26064+
*/
2602226065
blur(): void;
2602326066
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
2602426067
cancelIdleCallback(handle: number): void;
@@ -27643,7 +27686,11 @@ declare var visualViewport: VisualViewport | null;
2764327686
declare var window: Window & typeof globalThis;
2764427687
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert) */
2764527688
declare function alert(message?: any): void;
27646-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur) */
27689+
/**
27690+
* @deprecated
27691+
*
27692+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)
27693+
*/
2764727694
declare function blur(): void;
2764827695
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
2764927696
declare function cancelIdleCallback(handle: number): void;
@@ -28503,7 +28550,7 @@ type VideoColorPrimaries = "bt470bg" | "bt709" | "smpte170m";
2850328550
type VideoEncoderBitrateMode = "constant" | "quantizer" | "variable";
2850428551
type VideoFacingModeEnum = "environment" | "left" | "right" | "user";
2850528552
type VideoMatrixCoefficients = "bt470bg" | "bt709" | "rgb" | "smpte170m";
28506-
type VideoPixelFormat = "BGRA" | "BGRX" | "I420" | "I420A" | "I422" | "I444" | "NV12" | "RGBA" | "RGBX";
28553+
type VideoPixelFormat = "BGRA" | "BGRX" | "I420" | "I420A" | "I420AP10" | "I420AP12" | "I420P10" | "I420P12" | "I422" | "I422A" | "I422AP10" | "I422AP12" | "I422P10" | "I422P12" | "I444" | "I444A" | "I444AP10" | "I444AP12" | "I444P10" | "I444P12" | "NV12" | "RGBA" | "RGBX";
2850728554
type VideoTransferCharacteristics = "bt709" | "iec61966-2-1" | "smpte170m";
2850828555
type WakeLockType = "screen";
2850928556
type WebGLPowerPreference = "default" | "high-performance" | "low-power";

baselines/dom.iterable.generated.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ interface CanvasPathDrawingStyles {
7070
setLineDash(segments: Iterable<number>): void;
7171
}
7272

73+
interface CustomStateSet extends Set<string> {
74+
}
75+
7376
interface DOMRectList {
7477
[Symbol.iterator](): IterableIterator<DOMRect>;
7578
}

baselines/serviceworker.generated.d.ts

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -585,16 +585,16 @@ interface RsaPssParams extends Algorithm {
585585
interface SecurityPolicyViolationEventInit extends EventInit {
586586
blockedURI?: string;
587587
columnNumber?: number;
588-
disposition: SecurityPolicyViolationEventDisposition;
589-
documentURI: string;
590-
effectiveDirective: string;
588+
disposition?: SecurityPolicyViolationEventDisposition;
589+
documentURI?: string;
590+
effectiveDirective?: string;
591591
lineNumber?: number;
592-
originalPolicy: string;
592+
originalPolicy?: string;
593593
referrer?: string;
594594
sample?: string;
595595
sourceFile?: string;
596-
statusCode: number;
597-
violatedDirective: string;
596+
statusCode?: number;
597+
violatedDirective?: string;
598598
}
599599

600600
interface StorageEstimate {
@@ -728,6 +728,8 @@ interface WebTransportHash {
728728

729729
interface WebTransportOptions {
730730
allowPooling?: boolean;
731+
anticipatedConcurrentIncomingBidirectionalStreams?: number | null;
732+
anticipatedConcurrentIncomingUnidirectionalStreams?: number | null;
731733
congestionControl?: WebTransportCongestionControl;
732734
requireUnreliable?: boolean;
733735
serverCertificateHashes?: WebTransportHash[];
@@ -3575,6 +3577,20 @@ declare var ImageData: {
35753577
new(data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
35763578
};
35773579

3580+
/**
3581+
* @deprecated
3582+
*
3583+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
3584+
*/
3585+
interface InstallEvent extends ExtendableEvent {
3586+
}
3587+
3588+
/** @deprecated */
3589+
declare var InstallEvent: {
3590+
prototype: InstallEvent;
3591+
new(): InstallEvent;
3592+
};
3593+
35783594
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile) */
35793595
interface KHR_parallel_shader_compile {
35803596
readonly COMPLETION_STATUS_KHR: 0x91B1;
@@ -4881,6 +4897,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
48814897

48824898
/**
48834899
* This ServiceWorker API interface represents the global execution context of a service worker.
4900+
* Available only in secure contexts.
48844901
*
48854902
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope)
48864903
*/

baselines/sharedworker.generated.d.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -551,16 +551,16 @@ interface RsaPssParams extends Algorithm {
551551
interface SecurityPolicyViolationEventInit extends EventInit {
552552
blockedURI?: string;
553553
columnNumber?: number;
554-
disposition: SecurityPolicyViolationEventDisposition;
555-
documentURI: string;
556-
effectiveDirective: string;
554+
disposition?: SecurityPolicyViolationEventDisposition;
555+
documentURI?: string;
556+
effectiveDirective?: string;
557557
lineNumber?: number;
558-
originalPolicy: string;
558+
originalPolicy?: string;
559559
referrer?: string;
560560
sample?: string;
561561
sourceFile?: string;
562-
statusCode: number;
563-
violatedDirective: string;
562+
statusCode?: number;
563+
violatedDirective?: string;
564564
}
565565

566566
interface StorageEstimate {
@@ -694,6 +694,8 @@ interface WebTransportHash {
694694

695695
interface WebTransportOptions {
696696
allowPooling?: boolean;
697+
anticipatedConcurrentIncomingBidirectionalStreams?: number | null;
698+
anticipatedConcurrentIncomingUnidirectionalStreams?: number | null;
697699
congestionControl?: WebTransportCongestionControl;
698700
requireUnreliable?: boolean;
699701
serverCertificateHashes?: WebTransportHash[];

baselines/webworker.generated.d.ts

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -629,16 +629,16 @@ interface RsaPssParams extends Algorithm {
629629
interface SecurityPolicyViolationEventInit extends EventInit {
630630
blockedURI?: string;
631631
columnNumber?: number;
632-
disposition: SecurityPolicyViolationEventDisposition;
633-
documentURI: string;
634-
effectiveDirective: string;
632+
disposition?: SecurityPolicyViolationEventDisposition;
633+
documentURI?: string;
634+
effectiveDirective?: string;
635635
lineNumber?: number;
636-
originalPolicy: string;
636+
originalPolicy?: string;
637637
referrer?: string;
638638
sample?: string;
639639
sourceFile?: string;
640-
statusCode: number;
641-
violatedDirective: string;
640+
statusCode?: number;
641+
violatedDirective?: string;
642642
}
643643

644644
interface StorageEstimate {
@@ -858,6 +858,8 @@ interface WebTransportHash {
858858

859859
interface WebTransportOptions {
860860
allowPooling?: boolean;
861+
anticipatedConcurrentIncomingBidirectionalStreams?: number | null;
862+
anticipatedConcurrentIncomingUnidirectionalStreams?: number | null;
861863
congestionControl?: WebTransportCongestionControl;
862864
requireUnreliable?: boolean;
863865
serverCertificateHashes?: WebTransportHash[];
@@ -3837,6 +3839,20 @@ declare var ImageData: {
38373839
new(data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
38383840
};
38393841

3842+
/**
3843+
* @deprecated
3844+
*
3845+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
3846+
*/
3847+
interface InstallEvent extends ExtendableEvent {
3848+
}
3849+
3850+
/** @deprecated */
3851+
declare var InstallEvent: {
3852+
prototype: InstallEvent;
3853+
new(): InstallEvent;
3854+
};
3855+
38403856
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile) */
38413857
interface KHR_parallel_shader_compile {
38423858
readonly COMPLETION_STATUS_KHR: 0x91B1;
@@ -5205,6 +5221,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
52055221

52065222
/**
52075223
* This ServiceWorker API interface represents the global execution context of a service worker.
5224+
* Available only in secure contexts.
52085225
*
52095226
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope)
52105227
*/
@@ -9391,7 +9408,7 @@ type TransferFunction = "hlg" | "pq" | "srgb";
93919408
type VideoColorPrimaries = "bt470bg" | "bt709" | "smpte170m";
93929409
type VideoEncoderBitrateMode = "constant" | "quantizer" | "variable";
93939410
type VideoMatrixCoefficients = "bt470bg" | "bt709" | "rgb" | "smpte170m";
9394-
type VideoPixelFormat = "BGRA" | "BGRX" | "I420" | "I420A" | "I422" | "I444" | "NV12" | "RGBA" | "RGBX";
9411+
type VideoPixelFormat = "BGRA" | "BGRX" | "I420" | "I420A" | "I420AP10" | "I420AP12" | "I420P10" | "I420P12" | "I422" | "I422A" | "I422AP10" | "I422AP12" | "I422P10" | "I422P12" | "I444" | "I444A" | "I444AP10" | "I444AP12" | "I444P10" | "I444P12" | "NV12" | "RGBA" | "RGBX";
93959412
type VideoTransferCharacteristics = "bt709" | "iec61966-2-1" | "smpte170m";
93969413
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
93979414
type WebTransportCongestionControl = "default" | "low-latency" | "throughput";

0 commit comments

Comments
 (0)