@webref/idl 3.35.2 → 3.36.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/css-anchor-position.idl +14 -0
- package/html.idl +1 -0
- package/package.json +1 -1
- package/turtledove.idl +4 -4
- package/webcodecs.idl +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: CSS Anchor Positioning (https://drafts.csswg.org/css-anchor-position-1/)
|
|
5
|
+
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
interface CSSPositionFallbackRule : CSSGroupingRule {
|
|
8
|
+
readonly attribute CSSOMString name;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
[Exposed=Window]
|
|
12
|
+
interface CSSTryRule : CSSRule {
|
|
13
|
+
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
14
|
+
};
|
package/html.idl
CHANGED
|
@@ -1594,6 +1594,7 @@ OffscreenCanvasRenderingContext2D includes CanvasPath;
|
|
|
1594
1594
|
interface CustomElementRegistry {
|
|
1595
1595
|
[CEReactions] undefined define(DOMString name, CustomElementConstructor constructor, optional ElementDefinitionOptions options = {});
|
|
1596
1596
|
(CustomElementConstructor or undefined) get(DOMString name);
|
|
1597
|
+
DOMString? getName(CustomElementConstructor constructor);
|
|
1597
1598
|
Promise<CustomElementConstructor> whenDefined(DOMString name);
|
|
1598
1599
|
[CEReactions] undefined upgrade(Node root);
|
|
1599
1600
|
};
|
package/package.json
CHANGED
package/turtledove.idl
CHANGED
|
@@ -58,17 +58,17 @@ dictionary AuctionAdConfig {
|
|
|
58
58
|
USVString trustedScoringSignalsURL;
|
|
59
59
|
sequence<USVString> interestGroupBuyers;
|
|
60
60
|
Promise<any> auctionSignals;
|
|
61
|
-
any sellerSignals;
|
|
62
|
-
USVString directFromSellerSignals;
|
|
61
|
+
Promise<any> sellerSignals;
|
|
62
|
+
Promise<USVString> directFromSellerSignals;
|
|
63
63
|
unsigned long long sellerTimeout;
|
|
64
64
|
unsigned short sellerExperimentGroupId;
|
|
65
65
|
USVString sellerCurrency;
|
|
66
66
|
Promise<record<USVString, any>> perBuyerSignals;
|
|
67
|
-
record<USVString, unsigned long long
|
|
67
|
+
Promise<record<USVString, unsigned long long>> perBuyerTimeouts;
|
|
68
68
|
record<USVString, unsigned short> perBuyerGroupLimits;
|
|
69
69
|
record<USVString, unsigned short> perBuyerExperimentGroupIds;
|
|
70
70
|
record<USVString, record<USVString, double>> perBuyerPrioritySignals;
|
|
71
|
-
record<USVString, USVString
|
|
71
|
+
Promise<record<USVString, USVString>> perBuyerCurrencies;
|
|
72
72
|
sequence<AuctionAdConfig> componentAuctions = [];
|
|
73
73
|
AbortSignal? signal;
|
|
74
74
|
Promise<boolean> resolveToConfig;
|
package/webcodecs.idl
CHANGED
|
@@ -283,6 +283,7 @@ dictionary AudioDataInit {
|
|
|
283
283
|
[EnforceRange] required unsigned long numberOfChannels;
|
|
284
284
|
[EnforceRange] required long long timestamp; // microseconds
|
|
285
285
|
required BufferSource data;
|
|
286
|
+
sequence<ArrayBuffer> transfer = [];
|
|
286
287
|
};
|
|
287
288
|
|
|
288
289
|
dictionary AudioDataCopyToOptions {
|