@webref/idl 3.74.0 → 3.74.1

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/model-element.idl CHANGED
@@ -9,6 +9,11 @@ interface HTMLModelElement : HTMLElement {
9
9
  readonly attribute Promise<HTMLModelElement> ready;
10
10
  readonly attribute DOMPointReadOnly boundingBoxCenter;
11
11
  readonly attribute DOMPointReadOnly boundingBoxExtents;
12
+
12
13
  attribute DOMMatrixReadOnly entityTransform;
13
14
 
15
+ attribute USVString environmentMap;
16
+ readonly attribute Promise<undefined> environmentMapReady;
17
+
18
+ [Reflect=stagemode] attribute DOMString stageMode;
14
19
  };
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.74.0",
4
+ "version": "3.74.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/webrtc.idl CHANGED
@@ -497,7 +497,7 @@ partial interface RTCPeerConnection {
497
497
  interface RTCSctpTransport : EventTarget {
498
498
  readonly attribute RTCDtlsTransport transport;
499
499
  readonly attribute RTCSctpTransportState state;
500
- readonly attribute unrestricted double maxMessageSize;
500
+ readonly attribute unrestricted double? maxMessageSize;
501
501
  readonly attribute unsigned short? maxChannels;
502
502
  attribute EventHandler onstatechange;
503
503
  };
package/webtransport.idl CHANGED
@@ -18,8 +18,8 @@ interface WebTransportDatagramDuplexStream {
18
18
  readonly attribute unsigned long maxDatagramSize;
19
19
  attribute unrestricted double? incomingMaxAge;
20
20
  attribute unrestricted double? outgoingMaxAge;
21
- attribute unrestricted double incomingHighWaterMark;
22
- attribute unrestricted double outgoingHighWaterMark;
21
+ attribute unsigned long incomingMaxBufferedDatagrams;
22
+ attribute unsigned long outgoingMaxBufferedDatagrams;
23
23
  };
24
24
 
25
25
  [Exposed=(Window,Worker), SecureContext]