dom-expressions 0.35.16 → 0.35.18

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dom-expressions",
3
3
  "description": "A Fine-Grained Runtime for Performant DOM Rendering",
4
- "version": "0.35.16",
4
+ "version": "0.35.18",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -23,8 +23,8 @@
23
23
  "csstype": "^3.0"
24
24
  },
25
25
  "devDependencies": {
26
- "babel-plugin-jsx-dom-expressions": "^0.35.16",
26
+ "babel-plugin-jsx-dom-expressions": "^0.35.18",
27
27
  "csstype": "^3.1"
28
28
  },
29
- "gitHead": "764c717918d199a630bb0c7f85c7b8f772ef9e07"
29
+ "gitHead": "5e21b8cb58fbccc1f635bfdfd8904094e46edfea"
30
30
  }
package/src/jsx-h.d.ts CHANGED
@@ -1291,6 +1291,7 @@ export namespace JSX {
1291
1291
  gradientUnits?: FunctionMaybe<SVGUnits>;
1292
1292
  gradientTransform?: FunctionMaybe<string>;
1293
1293
  spreadMethod?: FunctionMaybe<"pad" | "reflect" | "repeat">;
1294
+ href?: FunctionMaybe<string>
1294
1295
  }
1295
1296
  interface GraphicsElementSVGAttributes<T>
1296
1297
  extends CoreSVGAttributes<T>,
package/src/jsx.d.ts CHANGED
@@ -1301,6 +1301,7 @@ export namespace JSX {
1301
1301
  gradientUnits?: SVGUnits;
1302
1302
  gradientTransform?: string;
1303
1303
  spreadMethod?: "pad" | "reflect" | "repeat";
1304
+ href?: string
1304
1305
  }
1305
1306
  interface GraphicsElementSVGAttributes<T>
1306
1307
  extends CoreSVGAttributes<T>,