@zenithbuild/core 1.3.7 → 1.3.13
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/core/index.ts +17 -17
- package/package.json +7 -8
package/core/index.ts
CHANGED
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
|
|
56
56
|
// Explicit zen* exports (internal naming)
|
|
57
57
|
export {
|
|
58
|
-
zenSignal,
|
|
59
|
-
zenState,
|
|
60
|
-
zenEffect,
|
|
61
|
-
zenMemo,
|
|
62
|
-
zenRef,
|
|
63
|
-
zenBatch,
|
|
64
|
-
zenUntrack
|
|
65
|
-
} from '
|
|
58
|
+
signal as zenSignal,
|
|
59
|
+
state as zenState,
|
|
60
|
+
effect as zenEffect,
|
|
61
|
+
memo as zenMemo,
|
|
62
|
+
ref as zenRef,
|
|
63
|
+
batch as zenBatch,
|
|
64
|
+
untrack as zenUntrack
|
|
65
|
+
} from '@zenithbuild/runtime'
|
|
66
66
|
|
|
67
67
|
// Types
|
|
68
68
|
export type {
|
|
@@ -73,7 +73,7 @@ export type {
|
|
|
73
73
|
DisposeFn,
|
|
74
74
|
Subscriber,
|
|
75
75
|
TrackingContext
|
|
76
|
-
} from '
|
|
76
|
+
} from '@zenithbuild/runtime'
|
|
77
77
|
|
|
78
78
|
// Clean name exports (public DX)
|
|
79
79
|
export {
|
|
@@ -84,7 +84,7 @@ export {
|
|
|
84
84
|
ref,
|
|
85
85
|
batch,
|
|
86
86
|
untrack
|
|
87
|
-
} from '
|
|
87
|
+
} from '@zenithbuild/runtime'
|
|
88
88
|
|
|
89
89
|
// Internal tracking utilities (advanced use)
|
|
90
90
|
export {
|
|
@@ -98,7 +98,7 @@ export {
|
|
|
98
98
|
startBatch,
|
|
99
99
|
endBatch,
|
|
100
100
|
isBatching
|
|
101
|
-
} from '
|
|
101
|
+
} from '@zenithbuild/runtime'
|
|
102
102
|
|
|
103
103
|
// ============================================
|
|
104
104
|
// Lifecycle Hooks
|
|
@@ -106,21 +106,21 @@ export {
|
|
|
106
106
|
|
|
107
107
|
// Explicit zen* exports (internal naming)
|
|
108
108
|
export {
|
|
109
|
-
zenOnMount,
|
|
110
|
-
zenOnUnmount
|
|
111
|
-
} from '
|
|
109
|
+
onMount as zenOnMount,
|
|
110
|
+
onUnmount as zenOnUnmount
|
|
111
|
+
} from '@zenithbuild/runtime'
|
|
112
112
|
|
|
113
113
|
// Clean name exports (public DX)
|
|
114
114
|
export {
|
|
115
115
|
onMount,
|
|
116
116
|
onUnmount
|
|
117
|
-
} from '
|
|
117
|
+
} from '@zenithbuild/runtime'
|
|
118
118
|
|
|
119
119
|
// Types
|
|
120
120
|
export type {
|
|
121
121
|
MountCallback,
|
|
122
122
|
UnmountCallback
|
|
123
|
-
} from '
|
|
123
|
+
} from '@zenithbuild/runtime'
|
|
124
124
|
|
|
125
125
|
// Internal lifecycle utilities (for component system)
|
|
126
126
|
export {
|
|
@@ -131,7 +131,7 @@ export {
|
|
|
131
131
|
getUnmountCallbackCount,
|
|
132
132
|
resetMountState,
|
|
133
133
|
resetUnmountState
|
|
134
|
-
} from '
|
|
134
|
+
} from '@zenithbuild/runtime'
|
|
135
135
|
|
|
136
136
|
// ============================================
|
|
137
137
|
// Build-time Modules (Proxied from @zenithbuild/compiler)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenithbuild/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.13",
|
|
4
4
|
"description": "Core library for the Zenith framework",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -59,10 +59,9 @@
|
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"typescript": "^5.9.3"
|
|
61
61
|
},
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
62
|
+
"@zenithbuild/bundler": "workspace:*",
|
|
63
|
+
"@zenithbuild/compiler": "workspace:*",
|
|
64
|
+
"@zenithbuild/runtime": "workspace:*",
|
|
65
|
+
"@zenithbuild/router": "workspace:*",
|
|
66
|
+
"picocolors": "^1.1.1"
|
|
67
|
+
}
|