@typed/navigation 0.6.4 → 0.7.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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/Blocking.js",
3
+ "module": "../dist/esm/Blocking.js",
4
+ "types": "../dist/dts/Blocking.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/Layer.js",
3
+ "module": "../dist/esm/Layer.js",
4
+ "types": "../dist/dts/Layer.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "../dist/cjs/Navigation.js",
3
+ "module": "../dist/esm/Navigation.js",
4
+ "types": "../dist/dts/Navigation.d.ts",
5
+ "sideEffects": []
6
+ }
@@ -247,7 +247,7 @@ export type BeforeNavigationHandler<R, R2> = (event: BeforeNavigationEvent) => E
247
247
  * @since 1.0.0
248
248
  */
249
249
  export type NavigationHandler<R, R2> = (event: NavigationEvent) => Effect.Effect<R, never, Option.Option<Effect.Effect<R2, never, unknown>>>;
250
- declare const NavigationError_base: new <A extends Record<string, any>>(args: import("effect/Types").Equals<Omit<A, keyof import("effect/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends keyof import("effect/Equal").Equal | "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & {
250
+ declare const NavigationError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").Equals<Omit<A, keyof import("effect/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends keyof import("effect/Equal").Equal | "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & {
251
251
  readonly _tag: "NavigationError";
252
252
  } & Readonly<A>;
253
253
  /**
@@ -257,7 +257,7 @@ export declare class NavigationError extends NavigationError_base<{
257
257
  readonly error: unknown;
258
258
  }> {
259
259
  }
260
- declare const RedirectError_base: new <A extends Record<string, any>>(args: import("effect/Types").Equals<Omit<A, keyof import("effect/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends keyof import("effect/Equal").Equal | "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & {
260
+ declare const RedirectError_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").Equals<Omit<A, keyof import("effect/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends keyof import("effect/Equal").Equal | "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & {
261
261
  readonly _tag: "RedirectError";
262
262
  } & Readonly<A>;
263
263
  /**
@@ -271,7 +271,7 @@ export declare class RedirectError extends RedirectError_base<{
271
271
  } | undefined;
272
272
  }> {
273
273
  }
274
- declare const CancelNavigation_base: new <A extends Record<string, any>>(args: import("effect/Types").Equals<Omit<A, keyof import("effect/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends keyof import("effect/Equal").Equal | "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & {
274
+ declare const CancelNavigation_base: new <A extends Record<string, any> = {}>(args: import("effect/Types").Equals<Omit<A, keyof import("effect/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends keyof import("effect/Equal").Equal | "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & {
275
275
  readonly _tag: "CancelNavigation";
276
276
  } & Readonly<A>;
277
277
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typed/navigation",
3
- "version": "0.6.4",
3
+ "version": "0.7.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -10,12 +10,12 @@
10
10
  "sideEffects": [],
11
11
  "author": "Typed contributors",
12
12
  "dependencies": {
13
- "@effect/schema": "0.49.4",
14
- "effect": "2.0.0-next.56",
15
- "@typed/context": "0.19.2",
16
- "@typed/dom": "8.19.2",
17
- "@typed/fx": "1.18.4",
18
- "@typed/id": "0.1.3"
13
+ "@effect/schema": "0.53.3",
14
+ "effect": "2.0.0-next.60",
15
+ "@typed/context": "0.20.0",
16
+ "@typed/dom": "8.20.0",
17
+ "@typed/fx": "1.19.0",
18
+ "@typed/id": "0.2.0"
19
19
  },
20
20
  "main": "./dist/cjs/index.js",
21
21
  "module": "./dist/esm/index.js",