soseki 0.0.2 → 0.0.3
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/core.d.ts +1 -1
- package/dist/core.js +1 -1
- package/package.json +1 -1
- package/src/core.ts +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as Router } from "./components/
|
|
1
|
+
export { default as Router } from "./components/router.jsx";
|
|
2
2
|
export type * from "./components/router.jsx";
|
|
3
3
|
export type * from "./contexts/route-context.js";
|
|
4
4
|
export { default as RouteContext } from "./contexts/route-context.js";
|
package/dist/core.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as Router } from "./components/
|
|
1
|
+
export { default as Router } from "./components/router.jsx";
|
|
2
2
|
export { default as RouteContext } from "./contexts/route-context.js";
|
|
3
3
|
export { default as RouterContext } from "./contexts/router-context.js";
|
|
4
4
|
export { ACTION_ID_FORM_DATA_NAME } from "./core/constants.js";
|
package/package.json
CHANGED
package/src/core.ts
CHANGED