@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 +5 -0
- package/package.json +1 -1
- package/webrtc.idl +1 -1
- package/webtransport.idl +2 -2
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
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
|
|
22
|
-
attribute
|
|
21
|
+
attribute unsigned long incomingMaxBufferedDatagrams;
|
|
22
|
+
attribute unsigned long outgoingMaxBufferedDatagrams;
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
[Exposed=(Window,Worker), SecureContext]
|