@mpen/jsxhtml 0.1.23 → 0.1.24
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/index.cjs +3 -1
- package/index.d.ts +1 -1
- package/index.mjs +2 -2
- package/jsx-dev-runtime.cjs +1 -1
- package/jsx-dev-runtime.mjs +2 -2
- package/{jsx-runtime-zSLyeHpr.js → jsx-runtime-NV9DYnG5.js} +2 -0
- package/{jsx-runtime-6Dbtz0G4.js → jsx-runtime-o0fVnahW.js} +1 -1
- package/jsx-runtime.cjs +1 -1
- package/jsx-runtime.mjs +1 -1
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
-
var jsxRuntime = require("./jsx-runtime-
|
|
7
|
+
var jsxRuntime = require("./jsx-runtime-NV9DYnG5.js");
|
|
8
8
|
|
|
9
9
|
function RawHtml({children}) {
|
|
10
10
|
return new jsxRuntime.JsxRawHtml(jsxRuntime.flattenString(children));
|
|
@@ -75,6 +75,8 @@ exports.JsxEmpty = jsxRuntime.JsxEmpty;
|
|
|
75
75
|
|
|
76
76
|
exports.JsxFragment = jsxRuntime.JsxFragment;
|
|
77
77
|
|
|
78
|
+
exports.JsxNode = jsxRuntime.JsxNode;
|
|
79
|
+
|
|
78
80
|
exports.JsxRawHtml = jsxRuntime.JsxRawHtml;
|
|
79
81
|
|
|
80
82
|
exports.isJsxNode = jsxRuntime.isJsxNode;
|
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from './jsx-elements';
|
|
2
2
|
export * from './custom-components';
|
|
3
3
|
export * from './elysia-plugin';
|
|
4
|
-
export
|
|
4
|
+
export * from './jsx-node';
|
|
5
5
|
import type { AnyAttributes, JsxComponent, JsxRenderable } from './jsx-types';
|
|
6
6
|
import { Fragment as _Fragment } from './jsx-runtime';
|
|
7
7
|
declare namespace React {
|
package/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { b as JsxRawHtml, f as flattenString, E as EMPTY, c as JsxDocType, d as jsxs, j as jsx, F as Fragment, e as isJsxNode } from "./jsx-runtime-
|
|
1
|
+
import { b as JsxRawHtml, f as flattenString, E as EMPTY, c as JsxDocType, d as jsxs, j as jsx, F as Fragment, e as isJsxNode } from "./jsx-runtime-o0fVnahW.js";
|
|
2
2
|
|
|
3
|
-
export { J as JsxComment, g as JsxElement, h as JsxEmpty, a as JsxFragment } from "./jsx-runtime-
|
|
3
|
+
export { J as JsxComment, g as JsxElement, h as JsxEmpty, a as JsxFragment, k as JsxNode } from "./jsx-runtime-o0fVnahW.js";
|
|
4
4
|
|
|
5
5
|
function RawHtml({children}) {
|
|
6
6
|
return new JsxRawHtml(flattenString(children));
|
package/jsx-dev-runtime.cjs
CHANGED
package/jsx-dev-runtime.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { j as jsx, i as isJsxComponent, J as JsxComment, a as JsxFragment } from "./jsx-runtime-
|
|
1
|
+
import { j as jsx, i as isJsxComponent, J as JsxComment, a as JsxFragment } from "./jsx-runtime-o0fVnahW.js";
|
|
2
2
|
|
|
3
|
-
export { F as Fragment } from "./jsx-runtime-
|
|
3
|
+
export { F as Fragment } from "./jsx-runtime-o0fVnahW.js";
|
|
4
4
|
|
|
5
5
|
function jsxDEV(tag, props, key, isStaticChildren, source, self) {
|
|
6
6
|
let node = jsx(...arguments);
|
|
@@ -1686,4 +1686,4 @@ function Fragment({children}) {
|
|
|
1686
1686
|
return new JsxFragment(children);
|
|
1687
1687
|
}
|
|
1688
1688
|
|
|
1689
|
-
export { EMPTY as E, Fragment as F, JsxComment as J, JsxFragment as a, JsxRawHtml as b, JsxDocType as c, jsxs as d, isJsxNode as e, flattenString as f, JsxElement as g, JsxEmpty as h, isJsxComponent as i, jsx as j };
|
|
1689
|
+
export { EMPTY as E, Fragment as F, JsxComment as J, JsxFragment as a, JsxRawHtml as b, JsxDocType as c, jsxs as d, isJsxNode as e, flattenString as f, JsxElement as g, JsxEmpty as h, isJsxComponent as i, jsx as j, JsxNode as k };
|
package/jsx-runtime.cjs
CHANGED
package/jsx-runtime.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { F as Fragment, j as jsx, d as jsxs } from "./jsx-runtime-
|
|
1
|
+
export { F as Fragment, j as jsx, d as jsxs } from "./jsx-runtime-o0fVnahW.js";
|