sigx 0.4.8 → 0.5.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 +4 -11
- package/package.json +9 -7
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
|
-
##
|
|
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
|
|
34
|
+
Full guides, the complete API reference and live examples → **<https://sigx.dev/core/>**
|
|
42
35
|
|
|
43
36
|
## License
|
|
44
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sigx",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.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,11 +40,13 @@
|
|
|
40
40
|
"url": "git+https://github.com/signalxjs/core.git",
|
|
41
41
|
"directory": "packages/sigx"
|
|
42
42
|
},
|
|
43
|
-
"homepage": "https://
|
|
43
|
+
"homepage": "https://sigx.dev/core/",
|
|
44
44
|
"bugs": {
|
|
45
45
|
"url": "https://github.com/signalxjs/core/issues"
|
|
46
46
|
},
|
|
47
47
|
"sideEffects": [
|
|
48
|
+
"./src/index.ts",
|
|
49
|
+
"./src/jsx-runtime.ts",
|
|
48
50
|
"./dist/sigx.js",
|
|
49
51
|
"./dist/jsx-runtime.js"
|
|
50
52
|
],
|
|
@@ -52,14 +54,14 @@
|
|
|
52
54
|
"node": "^20.19.0 || >=22.12.0"
|
|
53
55
|
},
|
|
54
56
|
"dependencies": {
|
|
55
|
-
"@sigx/reactivity": "^0.
|
|
56
|
-
"@sigx/runtime-dom": "^0.
|
|
57
|
-
"@sigx/runtime-core": "^0.
|
|
57
|
+
"@sigx/reactivity": "^0.5.0",
|
|
58
|
+
"@sigx/runtime-dom": "^0.5.0",
|
|
59
|
+
"@sigx/runtime-core": "^0.5.0"
|
|
58
60
|
},
|
|
59
61
|
"devDependencies": {
|
|
60
62
|
"typescript": "^6.0.3",
|
|
61
|
-
"vite": "^8.0.
|
|
62
|
-
"@sigx/vite": "^0.
|
|
63
|
+
"vite": "^8.0.14",
|
|
64
|
+
"@sigx/vite": "^0.5.0"
|
|
63
65
|
},
|
|
64
66
|
"scripts": {
|
|
65
67
|
"build": "vite build && tsgo --emitDeclarationOnly",
|