@webref/idl 3.36.0 → 3.37.0
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/captured-mouse-events.idl +20 -0
- package/credential-management.idl +1 -1
- package/element-capture.idl +9 -0
- package/event-timing.idl +1 -1
- package/package.json +2 -2
- package/webcodecs.idl +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Captured Mouse Events (https://screen-share.github.io/captured-mouse-events/)
|
|
5
|
+
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
interface CapturedMouseEvent : Event {
|
|
8
|
+
constructor(DOMString type, optional CapturedMouseEventInit eventInitDict = {});
|
|
9
|
+
readonly attribute long surfaceX;
|
|
10
|
+
readonly attribute long surfaceY;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
dictionary CapturedMouseEventInit : EventInit {
|
|
14
|
+
long surfaceX = -1;
|
|
15
|
+
long surfaceY = -1;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
partial interface CaptureController {
|
|
19
|
+
attribute EventHandler oncapturedmousechange;
|
|
20
|
+
};
|
|
@@ -23,7 +23,7 @@ partial interface Navigator {
|
|
|
23
23
|
[Exposed=Window, SecureContext]
|
|
24
24
|
interface CredentialsContainer {
|
|
25
25
|
Promise<Credential?> get(optional CredentialRequestOptions options = {});
|
|
26
|
-
Promise<
|
|
26
|
+
Promise<undefined> store(Credential credential);
|
|
27
27
|
Promise<Credential?> create(optional CredentialCreationOptions options = {});
|
|
28
28
|
Promise<undefined> preventSilentAccess();
|
|
29
29
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Element Capture (https://screen-share.github.io/element-capture/)
|
|
5
|
+
|
|
6
|
+
[Exposed = Window]
|
|
7
|
+
partial interface BrowserCaptureMediaStreamTrack {
|
|
8
|
+
Promise<undefined> restrictTo(CropTarget? cropTarget);
|
|
9
|
+
};
|
package/event-timing.idl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CONTENT - DO NOT EDIT
|
|
2
2
|
// Content was automatically extracted by Reffy into webref
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Event Timing API (https://w3c.github.io/event-timing)
|
|
4
|
+
// Source: Event Timing API (https://w3c.github.io/event-timing/)
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
interface PerformanceEventTiming : PerformanceEntry {
|
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.
|
|
4
|
+
"version": "3.37.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/w3c/webref.git"
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"main": "index.js",
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"webidl2": "^24.
|
|
15
|
+
"webidl2": "^24.4.0"
|
|
16
16
|
}
|
|
17
17
|
}
|
package/webcodecs.idl
CHANGED