@raclettejs/core 0.1.41 → 0.1.42
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": "@raclettejs/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.42",
|
|
4
4
|
"description": "racletteJS core package",
|
|
5
5
|
"repository": "https://gitlab.com/raclettejs/core",
|
|
6
6
|
"author": "Pacifico Digital Explorations GmbH <info@raclettejs.com>",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"@emnapi/core": "1.9.2",
|
|
84
84
|
"@emnapi/runtime": "1.9.2",
|
|
85
85
|
"@eslint/js": "9.35.0",
|
|
86
|
-
"@raclettejs/types": "0.1.
|
|
86
|
+
"@raclettejs/types": "0.1.42",
|
|
87
87
|
"@types/fs-extra": "11.0.4",
|
|
88
88
|
"@types/js-yaml": "4.0.9",
|
|
89
89
|
"@types/node": "25.5.0",
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
import { scheduleAfterPaint } from "@racletteCore/lib/scheduleTask"
|
|
2
1
|
import type { RouteLocationNormalized } from "vue-router"
|
|
3
|
-
import { handleRouteChange } from "../routeStore"
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
scheduleAfterPaint(() => {
|
|
10
|
-
handleRouteChange(to, from)
|
|
11
|
-
})
|
|
12
|
-
}
|
|
3
|
+
export default (
|
|
4
|
+
_to: RouteLocationNormalized,
|
|
5
|
+
_from: RouteLocationNormalized,
|
|
6
|
+
) => {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { $store } from "@racletteCore"
|
|
2
2
|
import type { RouteLocationNormalized } from "vue-router"
|
|
3
|
-
import { checkForDefaultSlotChange } from "../routeStore"
|
|
3
|
+
import { checkForDefaultSlotChange, handleRouteChange } from "../routeStore"
|
|
4
4
|
|
|
5
5
|
export default async (
|
|
6
6
|
to: RouteLocationNormalized,
|
|
@@ -16,6 +16,9 @@ export default async (
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
// Apply target composition slots before the loading gate remounts page widgets.
|
|
20
|
+
handleRouteChange(to, from)
|
|
21
|
+
|
|
19
22
|
// show loading animation only, if the default slot's value changes
|
|
20
23
|
if (checkForDefaultSlotChange(to, from)) {
|
|
21
24
|
$store.dispatch({
|