@webref/idl 3.22.1 → 3.22.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/event-timing.idl CHANGED
@@ -18,15 +18,10 @@ interface EventCounts {
18
18
  readonly maplike<DOMString, unsigned long long>;
19
19
  };
20
20
 
21
- [Exposed=Window]
22
- interface InteractionCounts {
23
- readonly maplike<DOMString, unsigned long long>;
24
- };
25
-
26
21
  [Exposed=Window]
27
22
  partial interface Performance {
28
23
  [SameObject] readonly attribute EventCounts eventCounts;
29
- [SameObject] readonly attribute InteractionCounts interactionCounts;
24
+ readonly attribute unsigned long long interactionCount;
30
25
  };
31
26
 
32
27
  partial dictionary PerformanceObserverInit {
package/html.idl CHANGED
@@ -886,7 +886,7 @@ interface HTMLInputElement : HTMLElement {
886
886
  [CEReactions] attribute DOMString formTarget;
887
887
  [CEReactions] attribute unsigned long height;
888
888
  attribute boolean indeterminate;
889
- readonly attribute HTMLElement? list;
889
+ readonly attribute HTMLDataListElement? list;
890
890
  [CEReactions] attribute DOMString max;
891
891
  [CEReactions] attribute long maxLength;
892
892
  [CEReactions] attribute DOMString min;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.22.1",
4
+ "version": "3.22.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -9,7 +9,6 @@ partial interface HTMLVideoElement {
9
9
  attribute EventHandler onenterpictureinpicture;
10
10
  attribute EventHandler onleavepictureinpicture;
11
11
 
12
- [CEReactions] attribute boolean autoPictureInPicture;
13
12
  [CEReactions] attribute boolean disablePictureInPicture;
14
13
  };
15
14
 
package/webnn.idl CHANGED
@@ -411,7 +411,7 @@ partial interface MLGraphBuilder {
411
411
  };
412
412
 
413
413
  partial interface MLGraphBuilder {
414
- MLOperand reshape(MLOperand input, sequence<long> newShape);
414
+ MLOperand reshape(MLOperand input, sequence<unsigned long?> newShape);
415
415
  };
416
416
 
417
417
  partial interface MLGraphBuilder {
package/webrtc-stats.idl CHANGED
@@ -137,6 +137,7 @@ dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
137
137
  DOMString encoderImplementation;
138
138
  boolean powerEfficientEncoder;
139
139
  boolean active;
140
+ DOMString scalabilityMode;
140
141
  };
141
142
 
142
143
  enum RTCQualityLimitationReason {
package/webtransport.idl CHANGED
@@ -88,7 +88,7 @@ dictionary WebTransportDatagramStats {
88
88
  unsigned long long lostOutgoing;
89
89
  };
90
90
 
91
- [Exposed=(Window,Worker), SecureContext]
91
+ [Exposed=(Window,Worker), SecureContext, Transferable]
92
92
  interface WebTransportSendStream : WritableStream {
93
93
  Promise<WebTransportSendStreamStats> getStats();
94
94
  };
@@ -100,7 +100,7 @@ dictionary WebTransportSendStreamStats {
100
100
  unsigned long long bytesAcknowledged;
101
101
  };
102
102
 
103
- [Exposed=(Window,Worker), SecureContext]
103
+ [Exposed=(Window,Worker), SecureContext, Transferable]
104
104
  interface WebTransportReceiveStream : ReadableStream {
105
105
  Promise<WebTransportReceiveStreamStats> getStats();
106
106
  };