@uxf/router 11.107.0 → 11.110.0
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 +7 -8
- package/router.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uxf/router",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.110.0",
|
|
4
4
|
"description": "UXF Router",
|
|
5
5
|
"author": "UXFans <dev@uxf.cz>",
|
|
6
6
|
"homepage": "https://gitlab.com/uxf-npm/router#readme",
|
|
@@ -23,17 +23,16 @@
|
|
|
23
23
|
"url": "https://gitlab.com/uxf-npm/router/issues"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"qs": "6.14.1",
|
|
27
|
-
"superstruct": "2.0.2",
|
|
28
26
|
"true-case-path": "2.2.1"
|
|
29
27
|
},
|
|
30
28
|
"peerDependencies": {
|
|
31
|
-
"@uxf/core": "11.
|
|
32
|
-
"next": ">= 12"
|
|
29
|
+
"@uxf/core": "11.110.0",
|
|
30
|
+
"next": ">= 12",
|
|
31
|
+
"superstruct": "^2.0.2"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
|
-
"@
|
|
36
|
-
"
|
|
37
|
-
"
|
|
34
|
+
"@uxf/core": "11.110.0",
|
|
35
|
+
"next": "16.1.6",
|
|
36
|
+
"superstruct": "^2.0.2"
|
|
38
37
|
}
|
|
39
38
|
}
|
package/router.js
CHANGED
|
@@ -4,10 +4,10 @@ exports.createRouter = createRouter;
|
|
|
4
4
|
const empty_object_1 = require("@uxf/core/constants/empty-object");
|
|
5
5
|
const is_nil_1 = require("@uxf/core/utils/is-nil");
|
|
6
6
|
const is_not_nil_1 = require("@uxf/core/utils/is-not-nil");
|
|
7
|
+
const qs_1 = require("@uxf/core/utils/qs");
|
|
7
8
|
const throw_error_1 = require("@uxf/core/utils/throw-error");
|
|
8
9
|
const navigation_1 = require("next/navigation");
|
|
9
10
|
const router_1 = require("next/router");
|
|
10
|
-
const qs_1 = require("qs");
|
|
11
11
|
const superstruct_1 = require("superstruct");
|
|
12
12
|
const sitemap_generator_1 = require("./sitemap-generator");
|
|
13
13
|
const path_to_regex_1 = require("./utils/path-to-regex");
|