@webref/idl 3.59.1 → 3.59.2
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/css-highlight-api.idl +8 -0
- package/html.idl +1 -0
- package/mediacapture-surface-control.idl +4 -2
- package/observable.idl +1 -1
- package/package.json +1 -1
- package/shared-storage.idl +1 -0
- package/webcodecs.idl +2 -0
package/css-highlight-api.idl
CHANGED
|
@@ -25,3 +25,11 @@ partial namespace CSS {
|
|
|
25
25
|
interface HighlightRegistry {
|
|
26
26
|
maplike<DOMString, Highlight>;
|
|
27
27
|
};
|
|
28
|
+
|
|
29
|
+
partial interface HighlightRegistry {
|
|
30
|
+
sequence<Highlight> highlightsFromPoint(float x, float y, optional HighlightsFromPointOptions options = {});
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
dictionary HighlightsFromPointOptions {
|
|
34
|
+
sequence<ShadowRoot> shadowRoots = [];
|
|
35
|
+
};
|
package/html.idl
CHANGED
|
@@ -1992,6 +1992,7 @@ interface NavigateEvent : Event {
|
|
|
1992
1992
|
readonly attribute DOMString? downloadRequest;
|
|
1993
1993
|
readonly attribute any info;
|
|
1994
1994
|
readonly attribute boolean hasUAVisualTransition;
|
|
1995
|
+
readonly attribute Element? sourceElement;
|
|
1995
1996
|
|
|
1996
1997
|
undefined intercept(optional NavigationInterceptOptions options = {});
|
|
1997
1998
|
undefined scroll();
|
|
@@ -6,8 +6,10 @@
|
|
|
6
6
|
partial interface CaptureController {
|
|
7
7
|
sequence<long> getSupportedZoomLevels();
|
|
8
8
|
long getZoomLevel();
|
|
9
|
-
Promise<undefined>
|
|
10
|
-
|
|
9
|
+
Promise<undefined> increaseZoomLevel();
|
|
10
|
+
Promise<undefined> decreaseZoomLevel();
|
|
11
|
+
Promise<undefined> resetZoomLevel();
|
|
12
|
+
attribute EventHandler onzoomlevelchange;
|
|
11
13
|
};
|
|
12
14
|
|
|
13
15
|
partial interface CaptureController {
|
package/observable.idl
CHANGED
|
@@ -74,7 +74,7 @@ interface Observable {
|
|
|
74
74
|
//
|
|
75
75
|
// takeUntil() can consume promises, iterables, async iterables, and other
|
|
76
76
|
// observables.
|
|
77
|
-
Observable takeUntil(any
|
|
77
|
+
Observable takeUntil(any value);
|
|
78
78
|
Observable map(Mapper mapper);
|
|
79
79
|
Observable filter(Predicate predicate);
|
|
80
80
|
Observable take(unsigned long long amount);
|
package/package.json
CHANGED
package/shared-storage.idl
CHANGED
|
@@ -114,6 +114,7 @@ dictionary SharedStoragePrivateAggregationConfig {
|
|
|
114
114
|
USVString aggregationCoordinatorOrigin;
|
|
115
115
|
USVString contextId;
|
|
116
116
|
[EnforceRange] unsigned long long filteringIdMaxBytes;
|
|
117
|
+
[EnforceRange] unsigned long long maxContributions;
|
|
117
118
|
};
|
|
118
119
|
|
|
119
120
|
dictionary SharedStorageRunOperationMethodOptions {
|
package/webcodecs.idl
CHANGED
|
@@ -154,6 +154,8 @@ dictionary VideoDecoderConfig {
|
|
|
154
154
|
VideoColorSpaceInit colorSpace;
|
|
155
155
|
HardwareAcceleration hardwareAcceleration = "no-preference";
|
|
156
156
|
boolean optimizeForLatency;
|
|
157
|
+
double rotation = 0;
|
|
158
|
+
boolean flip = false;
|
|
157
159
|
};
|
|
158
160
|
|
|
159
161
|
dictionary AudioEncoderConfig {
|