mono-jsx 0.6.4 → 0.6.6

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/jsx-runtime.mjs CHANGED
@@ -123,7 +123,7 @@ var $html = Symbol.for("jsx.html");
123
123
  var $signal = Symbol.for("mono.signal");
124
124
 
125
125
  // version.ts
126
- var VERSION = "0.6.4";
126
+ var VERSION = "0.6.6";
127
127
 
128
128
  // render.ts
129
129
  var RUNTIME_CX = 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mono-jsx",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "description": "`<html>` as a `Response`.",
5
5
  "type": "module",
6
6
  "module": "./index.mjs",
package/types/html.d.ts CHANGED
@@ -426,6 +426,7 @@ export namespace HTML {
426
426
  charSet?: string;
427
427
  httpEquiv?: string;
428
428
  name?: string;
429
+ content?: string;
429
430
  media?: string;
430
431
  }
431
432