@ozsarman/clarityjs 0.6.2 → 0.6.3
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/package.json +1 -1
- package/src/index.js +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ozsarman/clarityjs",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "An AI-native, permission-aware frontend framework and DSL — components declare what AI agents may read, act on, and never touch.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
package/src/index.js
CHANGED
|
@@ -34,6 +34,10 @@ export {
|
|
|
34
34
|
buildRouteTable, createPagesRouter,
|
|
35
35
|
} from './pages-router.js';
|
|
36
36
|
|
|
37
|
+
// Core reactive primitives + DOM mount — the essentials every app needs from
|
|
38
|
+
// the package entry (also importable from '@ozsarman/clarityjs/runtime').
|
|
39
|
+
export { signal, computed, effect, batch, mount, h } from './runtime.js';
|
|
40
|
+
|
|
37
41
|
// Reactivity extras
|
|
38
42
|
export { reactive, createContext, useContext, _pushContext, _popContext,
|
|
39
43
|
_withComponent, beforeMount, onMount, onCleanup, onUpdate,
|