sigx 0.1.26 → 0.2.1

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/hydration.js CHANGED
@@ -1,3 +1,3 @@
1
- import { CLIENT_DIRECTIVES, CLIENT_DIRECTIVE_PREFIX } from "@sigx/runtime-core";
2
- import { createEmit, filterClientDirectives, getHydrationDirective, hasClientDirective, serializeProps } from "@sigx/runtime-core/internals";
3
- export { CLIENT_DIRECTIVES, CLIENT_DIRECTIVE_PREFIX, createEmit, filterClientDirectives, getHydrationDirective, hasClientDirective, serializeProps };
1
+ import { CLIENT_DIRECTIVES as e, CLIENT_DIRECTIVE_PREFIX as t } from "@sigx/runtime-core";
2
+ import { createEmit as n, filterClientDirectives as r, getHydrationDirective as i, hasClientDirective as a, serializeProps as o } from "@sigx/runtime-core/internals";
3
+ export { e as CLIENT_DIRECTIVES, t as CLIENT_DIRECTIVE_PREFIX, n as createEmit, r as filterClientDirectives, i as getHydrationDirective, a as hasClientDirective, o as serializeProps };
package/dist/sigx.js CHANGED
@@ -1,4 +1,4 @@
1
- import { Portal, moveNode, render, show, supportsMoveBefore } from "@sigx/runtime-dom";
1
+ import { Portal as e, moveNode as t, render as n, show as r, supportsMoveBefore as i } from "@sigx/runtime-dom";
2
2
  export * from "@sigx/reactivity";
3
3
  export * from "@sigx/runtime-core";
4
- export { Portal, moveNode, render, show, supportsMoveBefore };
4
+ export { e as Portal, t as moveNode, n as render, r as show, i as supportsMoveBefore };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigx",
3
- "version": "0.1.26",
3
+ "version": "0.2.1",
4
4
  "description": "SignalX - Lightweight reactive component framework with signals and TSX support",
5
5
  "type": "module",
6
6
  "main": "./dist/sigx.js",
@@ -46,17 +46,17 @@
46
46
  },
47
47
  "sideEffects": false,
48
48
  "engines": {
49
- "node": ">=18"
49
+ "node": "^20.19.0 || >=22.12.0"
50
50
  },
51
51
  "dependencies": {
52
- "@sigx/reactivity": "^0.1.26",
53
- "@sigx/runtime-dom": "^0.1.26",
54
- "@sigx/runtime-core": "^0.1.26"
52
+ "@sigx/reactivity": "^0.2.1",
53
+ "@sigx/runtime-core": "^0.2.1",
54
+ "@sigx/runtime-dom": "^0.2.1"
55
55
  },
56
56
  "devDependencies": {
57
57
  "typescript": "^5.9.3",
58
- "vite": "^8.0.0-beta.9",
59
- "@sigx/vite": "^0.1.26"
58
+ "vite": "^8.0.3",
59
+ "@sigx/vite": "^0.2.1"
60
60
  },
61
61
  "scripts": {
62
62
  "build": "vite build && tsgo --emitDeclarationOnly",