@uniweb/runtime 0.12.1 → 0.12.2
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniweb/runtime",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"description": "Minimal runtime for loading Uniweb foundations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"esbuild": "^0.21.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^0.27.0",
|
|
45
45
|
"vite": "^7.3.1",
|
|
46
46
|
"vitest": "^4.1.7",
|
|
47
|
-
"@uniweb/build": "0.24.
|
|
47
|
+
"@uniweb/build": "0.24.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "^19.0.0",
|
|
@@ -19,8 +19,6 @@
|
|
|
19
19
|
* `usePageView`. Effects do not run under `renderToString`, a Worker isolate has
|
|
20
20
|
* no `IntersectionObserver`, and the SSR path renders one page per call with
|
|
21
21
|
* stub routing. Nothing to remember to switch off.
|
|
22
|
-
*
|
|
23
|
-
* Design: `kb/framework/plans/tracking.md`.
|
|
24
22
|
*/
|
|
25
23
|
|
|
26
24
|
import { useEffect } from 'react'
|
package/src/section-views.js
CHANGED
|
@@ -32,8 +32,6 @@
|
|
|
32
32
|
* namespace and carry no prefix, so a selector-based lookup would also have to
|
|
33
33
|
* exclude them; deriving from the graph cannot pick them up at all.
|
|
34
34
|
*
|
|
35
|
-
* Design: `kb/framework/plans/tracking.md`.
|
|
36
|
-
*
|
|
37
35
|
* @module @uniweb/runtime/section-views
|
|
38
36
|
*/
|
|
39
37
|
|