@webref/idl 3.41.2 → 3.41.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 CHANGED
@@ -2249,11 +2249,11 @@ enum DOMParserSupportedType {
2249
2249
  };
2250
2250
 
2251
2251
  partial interface Element {
2252
- undefined setHTMLUnsafe(DOMString html);
2252
+ [CEReactions] undefined setHTMLUnsafe(DOMString html);
2253
2253
  };
2254
2254
 
2255
2255
  partial interface ShadowRoot {
2256
- undefined setHTMLUnsafe(DOMString html);
2256
+ [CEReactions] undefined setHTMLUnsafe(DOMString html);
2257
2257
  };
2258
2258
 
2259
2259
  [Exposed=Window]
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.41.2",
4
+ "version": "3.41.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/urlpattern.idl CHANGED
@@ -22,6 +22,8 @@ interface URLPattern {
22
22
  readonly attribute USVString pathname;
23
23
  readonly attribute USVString search;
24
24
  readonly attribute USVString hash;
25
+
26
+ readonly attribute boolean hasRegExpGroups;
25
27
  };
26
28
 
27
29
  dictionary URLPatternInit {
@@ -57,3 +59,5 @@ dictionary URLPatternComponentResult {
57
59
  USVString input;
58
60
  record<USVString, (USVString or undefined)> groups;
59
61
  };
62
+
63
+ typedef (USVString or URLPatternInit or URLPattern) URLPatternCompatible;