sigx 0.4.9 → 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/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Lightweight reactive component framework with signals and TSX support. This is the main entry point that re-exports the public API from `@sigx/reactivity`, `@sigx/runtime-core`, and `@sigx/runtime-dom`.
4
4
 
5
+ 📚 **Full guides, API reference and live examples → <https://sigx.dev/core/>**
6
+
5
7
  ## Install
6
8
 
7
9
  ```bash
@@ -27,18 +29,9 @@ const Counter = component(() => {
27
29
  render(<Counter />, document.getElementById('app')!);
28
30
  ```
29
31
 
30
- ## Key Exports
31
-
32
- - **Reactivity** — `signal`, `computed`, `effect`, `batch`, `watch`, `untrack`
33
- - **Components** — `component`, `lazy`, `defineApp`
34
- - **Lifecycle** — `onMounted`, `onUnmounted`, `onCreated`, `onUpdated`
35
- - **Rendering** — `render`, `Portal`, `Suspense`, `Fragment`
36
- - **Control Flow** — `Show`, `Switch`, `Match`
37
- - **JSX** — `jsx`, `jsxs`, `jsxDEV`
38
-
39
- ## Documentation
32
+ ## 📚 Documentation
40
33
 
41
- Full documentation and guides are available at the [SignalX repository](https://github.com/signalxjs/core).
34
+ Full guides, the complete API reference and live examples → **<https://sigx.dev/core/>**
42
35
 
43
36
  ## License
44
37
 
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.4.9",
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",
@@ -40,7 +40,7 @@
40
40
  "url": "git+https://github.com/signalxjs/core.git",
41
41
  "directory": "packages/sigx"
42
42
  },
43
- "homepage": "https://github.com/signalxjs/core/tree/main/packages/sigx",
43
+ "homepage": "https://sigx.dev/core/",
44
44
  "bugs": {
45
45
  "url": "https://github.com/signalxjs/core/issues"
46
46
  },
@@ -54,14 +54,15 @@
54
54
  "node": "^20.19.0 || >=22.12.0"
55
55
  },
56
56
  "dependencies": {
57
- "@sigx/reactivity": "^0.4.9",
58
- "@sigx/runtime-dom": "^0.4.9",
59
- "@sigx/runtime-core": "^0.4.9"
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.4.9"
64
+ "esbuild": "^0.25.0",
65
+ "@sigx/vite": "^0.6.0"
65
66
  },
66
67
  "scripts": {
67
68
  "build": "vite build && tsgo --emitDeclarationOnly",