sigx 0.5.0 → 0.6.0

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/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import '@sigx/runtime-dom';
2
2
  export * from '@sigx/reactivity';
3
3
  export * from '@sigx/runtime-core';
4
- export { render, Portal, supportsMoveBefore, moveNode, show } from '@sigx/runtime-dom';
4
+ export { render, Portal, supportsMoveBefore, moveNode, show, useHead } from '@sigx/runtime-dom';
5
+ export type { HeadConfig, HeadMeta, HeadLink, HeadScript } from '@sigx/runtime-dom';
5
6
  export type { DOMDirective } from '@sigx/runtime-dom';
6
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,mBAAmB,CAAC;AAG3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AAGnC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACvF,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,mBAAmB,CAAC;AAG3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AAGnC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAChG,YAAY,EAAE,UAAU,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACpF,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC"}
package/dist/sigx.js CHANGED
@@ -1,4 +1,4 @@
1
- import { Portal as e, moveNode as t, render as n, show as r, supportsMoveBefore as i } from "@sigx/runtime-dom";
1
+ import { Portal as e, moveNode as t, render as n, show as r, supportsMoveBefore as i, useHead as a } from "@sigx/runtime-dom";
2
2
  export * from "@sigx/reactivity";
3
3
  export * from "@sigx/runtime-core";
4
- export { e as Portal, t as moveNode, n as render, r as show, i as supportsMoveBefore };
4
+ export { e as Portal, t as moveNode, n as render, r as show, i as supportsMoveBefore, a as useHead };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigx",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "SignalX - Lightweight reactive component framework with signals and TSX support",
5
5
  "type": "module",
6
6
  "main": "./dist/sigx.js",
@@ -54,14 +54,15 @@
54
54
  "node": "^20.19.0 || >=22.12.0"
55
55
  },
56
56
  "dependencies": {
57
- "@sigx/reactivity": "^0.5.0",
58
- "@sigx/runtime-dom": "^0.5.0",
59
- "@sigx/runtime-core": "^0.5.0"
57
+ "@sigx/reactivity": "^0.6.0",
58
+ "@sigx/runtime-core": "^0.6.0",
59
+ "@sigx/runtime-dom": "^0.6.0"
60
60
  },
61
61
  "devDependencies": {
62
62
  "typescript": "^6.0.3",
63
63
  "vite": "^8.0.14",
64
- "@sigx/vite": "^0.5.0"
64
+ "esbuild": "^0.25.0",
65
+ "@sigx/vite": "^0.6.0"
65
66
  },
66
67
  "scripts": {
67
68
  "build": "vite build && tsgo --emitDeclarationOnly",