@cedarjs/router 3.1.1-rc.4 → 3.1.1
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/dist/cjs/index.js +11 -11
- package/package.json +5 -5
package/dist/cjs/index.js
CHANGED
|
@@ -27,8 +27,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
27
27
|
mod
|
|
28
28
|
));
|
|
29
29
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
|
-
var
|
|
31
|
-
__export(
|
|
30
|
+
var src_exports = {};
|
|
31
|
+
__export(src_exports, {
|
|
32
32
|
Link: () => import_link.Link,
|
|
33
33
|
LocationProvider: () => import_location.LocationProvider,
|
|
34
34
|
NavLink: () => import_navLink.NavLink,
|
|
@@ -52,7 +52,7 @@ __export(index_exports, {
|
|
|
52
52
|
usePageLoadingContext: () => import_PageLoadingContext.usePageLoadingContext,
|
|
53
53
|
useParams: () => import_params.useParams
|
|
54
54
|
});
|
|
55
|
-
module.exports = __toCommonJS(
|
|
55
|
+
module.exports = __toCommonJS(src_exports);
|
|
56
56
|
var import_history = require("./history.js");
|
|
57
57
|
var import_navLink = require("./navLink.js");
|
|
58
58
|
var import_link = require("./link.js");
|
|
@@ -63,18 +63,18 @@ var import_params = require("./params.js");
|
|
|
63
63
|
var import_router = require("./router.js");
|
|
64
64
|
var import_Route = require("./Route.js");
|
|
65
65
|
var import_namedRoutes = require("./namedRoutes.js");
|
|
66
|
-
__reExport(
|
|
66
|
+
__reExport(src_exports, require("./Set.js"), module.exports);
|
|
67
67
|
var import_route_announcement = __toESM(require("./route-announcement.js"), 1);
|
|
68
|
-
__reExport(
|
|
68
|
+
__reExport(src_exports, require("./route-announcement.js"), module.exports);
|
|
69
69
|
var import_route_focus = __toESM(require("./route-focus.js"), 1);
|
|
70
|
-
__reExport(
|
|
71
|
-
__reExport(
|
|
72
|
-
__reExport(
|
|
73
|
-
__reExport(
|
|
74
|
-
__reExport(
|
|
70
|
+
__reExport(src_exports, require("./route-focus.js"), module.exports);
|
|
71
|
+
__reExport(src_exports, require("./useRouteName.js"), module.exports);
|
|
72
|
+
__reExport(src_exports, require("./useRoutePaths.js"), module.exports);
|
|
73
|
+
__reExport(src_exports, require("./useMatch.js"), module.exports);
|
|
74
|
+
__reExport(src_exports, require("./useBlocker.js"), module.exports);
|
|
75
75
|
var import_util = require("./util.js");
|
|
76
76
|
var import_skipNav = require("./skipNav.js");
|
|
77
|
-
__reExport(
|
|
77
|
+
__reExport(src_exports, require("./routeParamsTypes.js"), module.exports);
|
|
78
78
|
// Annotate the CommonJS export names for ESM import in node:
|
|
79
79
|
0 && (module.exports = {
|
|
80
80
|
Link,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/router",
|
|
3
|
-
"version": "3.1.1
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -94,8 +94,8 @@
|
|
|
94
94
|
"test:watch": "vitest watch"
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"@cedarjs/auth": "3.1.1
|
|
98
|
-
"@cedarjs/server-store": "3.1.1
|
|
97
|
+
"@cedarjs/auth": "3.1.1",
|
|
98
|
+
"@cedarjs/server-store": "3.1.1",
|
|
99
99
|
"react": "18.3.1",
|
|
100
100
|
"react-dom": "18.3.1"
|
|
101
101
|
},
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"@arethetypeswrong/cli": "0.18.2",
|
|
104
104
|
"@babel/cli": "7.28.6",
|
|
105
105
|
"@babel/core": "^7.26.10",
|
|
106
|
-
"@cedarjs/framework-tools": "
|
|
106
|
+
"@cedarjs/framework-tools": "0.0.0",
|
|
107
107
|
"@testing-library/jest-dom": "6.9.1",
|
|
108
108
|
"@types/react": "^18.2.55",
|
|
109
109
|
"@types/react-dom": "^18.2.19",
|
|
@@ -124,5 +124,5 @@
|
|
|
124
124
|
"publishConfig": {
|
|
125
125
|
"access": "public"
|
|
126
126
|
},
|
|
127
|
-
"gitHead": "
|
|
127
|
+
"gitHead": "daccdd356942396c8037bd53c8e945255e4c8fdb"
|
|
128
128
|
}
|