what-framework 0.13.4 → 0.13.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.
@@ -1 +1 @@
1
- import{template as s,_$template as a,insert as r,mapArray as l,spread as m,setProp as o,setClass as p,setStyle as n,setAttr as c,setValue as d,setChecked as f,memo as C,delegateEvents as i,on as k,classList as u,effect as y,untrack as A,_$createComponent as _}from"what-core/render";export{_ as _$createComponent,a as _$template,u as classList,i as delegateEvents,y as effect,r as insert,l as mapArray,C as memo,k as on,c as setAttr,f as setChecked,p as setClass,o as setProp,n as setStyle,d as setValue,m as spread,s as template,A as untrack};
1
+ import{template as s,_$template as a,insert as o,mapArray as r,spread as m,setProp as n,setClass as p,setStyle as l,setAttr as c,setValue as d,setChecked as f,memo as C,delegateEvents as _,on as $,classList as i,effect as k,untrack as u,_$createComponent as y,_$componentVNode as A}from"what-core/render";export{A as _$componentVNode,y as _$createComponent,a as _$template,i as classList,_ as delegateEvents,k as effect,o as insert,r as mapArray,C as memo,$ as on,c as setAttr,f as setChecked,p as setClass,n as setProp,l as setStyle,d as setValue,m as spread,s as template,u as untrack};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "what-framework",
3
- "version": "0.13.4",
3
+ "version": "0.13.6",
4
4
  "description": "The web framework built for AI agents — signals, components, islands, SSR",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -84,9 +84,9 @@
84
84
  },
85
85
  "homepage": "https://whatfw.com",
86
86
  "dependencies": {
87
- "what-core": "^0.13.4",
88
- "what-router": "^0.13.4",
89
- "what-server": "^0.13.4",
90
- "what-compiler": "^0.13.4"
87
+ "what-core": "^0.13.6",
88
+ "what-router": "^0.13.6",
89
+ "what-server": "^0.13.6",
90
+ "what-compiler": "^0.13.6"
91
91
  }
92
92
  }
package/src/render.js CHANGED
@@ -27,4 +27,7 @@ export {
27
27
  effect,
28
28
  untrack,
29
29
  _$createComponent,
30
+ // The unbuilt sibling of _$createComponent. Emitted for the JSX handed
31
+ // straight to hydrate(), which needs a VNode rather than finished DOM.
32
+ _$componentVNode,
30
33
  } from 'what-core/render';