@webref/idl 3.59.2 → 3.59.3
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/html.idl +1 -0
- package/package.json +1 -1
- package/turtledove.idl +18 -4
- package/web-animations-2.idl +16 -0
package/html.idl
CHANGED
package/package.json
CHANGED
package/turtledove.idl
CHANGED
|
@@ -151,17 +151,31 @@ partial interface Navigator {
|
|
|
151
151
|
|
|
152
152
|
[SecureContext]
|
|
153
153
|
partial interface Navigator {
|
|
154
|
-
Promise<AdAuctionData> getInterestGroupAdAuctionData(AdAuctionDataConfig config);
|
|
154
|
+
Promise<AdAuctionData> getInterestGroupAdAuctionData(optional AdAuctionDataConfig config = {});
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
dictionary AdAuctionPerSellerData {
|
|
158
|
+
required USVString seller;
|
|
159
|
+
Uint8Array request;
|
|
160
|
+
DOMString error;
|
|
155
161
|
};
|
|
156
162
|
|
|
157
163
|
dictionary AdAuctionData {
|
|
158
|
-
required Uint8Array request;
|
|
159
164
|
required USVString requestId;
|
|
165
|
+
Uint8Array request;
|
|
166
|
+
sequence<AdAuctionPerSellerData> requests;
|
|
160
167
|
};
|
|
161
168
|
|
|
162
|
-
dictionary
|
|
169
|
+
dictionary AdAuctionOneSeller {
|
|
163
170
|
required USVString seller;
|
|
164
|
-
|
|
171
|
+
USVString coordinatorOrigin;
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
dictionary AdAuctionDataConfig {
|
|
175
|
+
USVString seller;
|
|
176
|
+
USVString coordinatorOrigin;
|
|
177
|
+
sequence<AdAuctionOneSeller> sellers;
|
|
178
|
+
|
|
165
179
|
unsigned long requestSize;
|
|
166
180
|
record<USVString, AdAuctionDataBuyerConfig> perBuyerConfig;
|
|
167
181
|
};
|
package/web-animations-2.idl
CHANGED
|
@@ -14,6 +14,7 @@ partial interface AnimationTimeline {
|
|
|
14
14
|
partial interface Animation {
|
|
15
15
|
attribute CSSNumberish? startTime;
|
|
16
16
|
attribute CSSNumberish? currentTime;
|
|
17
|
+
attribute AnimationTrigger? trigger;
|
|
17
18
|
readonly attribute double? overallProgress;
|
|
18
19
|
};
|
|
19
20
|
|
|
@@ -98,6 +99,7 @@ dictionary TimelineRangeOffset {
|
|
|
98
99
|
partial dictionary KeyframeAnimationOptions {
|
|
99
100
|
(TimelineRangeOffset or CSSNumericValue or CSSKeywordValue or DOMString) rangeStart = "normal";
|
|
100
101
|
(TimelineRangeOffset or CSSNumericValue or CSSKeywordValue or DOMString) rangeEnd = "normal";
|
|
102
|
+
AnimationTrigger? trigger;
|
|
101
103
|
};
|
|
102
104
|
|
|
103
105
|
[Exposed=Window]
|
|
@@ -111,3 +113,17 @@ dictionary AnimationPlaybackEventInit : EventInit {
|
|
|
111
113
|
CSSNumberish? currentTime = null;
|
|
112
114
|
CSSNumberish? timelineTime = null;
|
|
113
115
|
};
|
|
116
|
+
|
|
117
|
+
[Exposed=Window]
|
|
118
|
+
interface AnimationTrigger {
|
|
119
|
+
constructor(optional AnimationTriggerOptions options = {});
|
|
120
|
+
attribute AnimationTimeline timeline;
|
|
121
|
+
attribute AnimationTriggerType type;
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
dictionary AnimationTriggerOptions {
|
|
125
|
+
AnimationTimeline? timeline;
|
|
126
|
+
AnimationTriggerType? type = "once";
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
enum AnimationTriggerType { "once", "repeat", "alternate", "state" };
|