@webref/idl 3.75.3 → 3.76.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/SVG.idl CHANGED
@@ -13,7 +13,6 @@ interface SVGElement : Element {
13
13
  };
14
14
 
15
15
  SVGElement includes GlobalEventHandlers;
16
- SVGElement includes SVGElementInstance;
17
16
  SVGElement includes HTMLOrSVGElement;
18
17
 
19
18
  dictionary SVGBoundingBoxOptions {
@@ -309,11 +308,6 @@ SVGUseElement includes SVGURIReference;
309
308
  interface SVGUseElementShadowRoot : ShadowRoot {
310
309
  };
311
310
 
312
- interface mixin SVGElementInstance {
313
- [SameObject] readonly attribute SVGElement? correspondingElement;
314
- [SameObject] readonly attribute SVGUseElement? correspondingUseElement;
315
- };
316
-
317
311
  [Exposed=Window]
318
312
  interface ShadowAnimation : Animation {
319
313
  constructor(Animation source, (Element or CSSPseudoElement) newTarget);
@@ -3,6 +3,15 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: CSS Animations Module Level 2 (https://drafts.csswg.org/css-animations-2/)
5
5
 
6
+ [Exposed=Window]
7
+ partial interface AnimationEvent {
8
+ readonly attribute CSSAnimation? animation;
9
+ };
10
+
11
+ partial dictionary AnimationEventInit {
12
+ CSSAnimation? animation = null;
13
+ };
14
+
6
15
  [Exposed=Window]
7
16
  interface CSSAnimation : Animation {
8
17
  readonly attribute CSSOMString animationName;
@@ -0,0 +1,8 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: CSS Box Sizing Module Level 4 (https://drafts.csswg.org/css-sizing-4/)
5
+
6
+ partial interface Window {
7
+ undefined requestResize();
8
+ };
@@ -7,6 +7,15 @@
7
7
  interface CSSStartingStyleRule : CSSGroupingRule {
8
8
  };
9
9
 
10
+ [Exposed=Window]
11
+ partial interface TransitionEvent {
12
+ readonly attribute CSSTransition? animation;
13
+ };
14
+
15
+ partial dictionary TransitionEventInit {
16
+ CSSTransition? animation = null;
17
+ };
18
+
10
19
  [Exposed=Window]
11
20
  interface CSSTransition : Animation {
12
21
  readonly attribute CSSOMString transitionProperty;
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.75.3",
4
+ "version": "3.76.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/streams.idl CHANGED
@@ -114,7 +114,7 @@ interface ReadableByteStreamController {
114
114
 
115
115
  [Exposed=*]
116
116
  interface ReadableStreamBYOBRequest {
117
- readonly attribute ArrayBufferView? view;
117
+ readonly attribute Uint8Array? view;
118
118
 
119
119
  undefined respond([EnforceRange] unsigned long long bytesWritten);
120
120
  undefined respondWithNewView(ArrayBufferView view);
package/webmcp.idl CHANGED
@@ -25,6 +25,7 @@ dictionary ModelContextTool {
25
25
 
26
26
  dictionary ToolAnnotations {
27
27
  boolean readOnlyHint = false;
28
+ boolean untrustedContentHint = false;
28
29
  };
29
30
 
30
31
  callback ToolExecuteCallback = Promise<any> (object input, ModelContextClient client);