@effect-app/vue 4.0.0-beta.106 → 4.0.0-beta.108

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 4.0.0-beta.108
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3e46e7b]
8
+ - effect-app@4.0.0-beta.108
9
+
10
+ ## 4.0.0-beta.107
11
+
12
+ ### Patch Changes
13
+
14
+ - effect-app@4.0.0-beta.107
15
+
3
16
  ## 4.0.0-beta.106
4
17
 
5
18
  ### Patch Changes
@@ -205,9 +205,9 @@ type ErrorRenderer<E, Args extends readonly any[]> = (e: E, action: string, ...a
205
205
  export declare const CommanderStatic: {
206
206
  accessArgs: <In, Out, Arg2, Arg = void>(cb: (a: NoInfer<Arg>, b: NoInfer<Arg2>) => (self: NoInfer<In>) => Out) => (self: In, arg: Arg, arg2: Arg2) => Out;
207
207
  /** Version of @see confirmOrInterrupt that automatically includes the action name in the default messages */
208
- confirmOrInterrupt: (message?: string | undefined) => Effect.Effect<void, never, Confirm | I18n | CommandContext>;
208
+ confirmOrInterrupt: (message?: string | undefined) => Effect.Effect<void, never, I18n | CommandContext | Confirm>;
209
209
  /** Version of @see confirm that automatically includes the action name in the default messages */
210
- confirm: (message?: string | undefined) => Effect.Effect<boolean, never, Confirm | I18n | CommandContext>;
210
+ confirm: (message?: string | undefined) => Effect.Effect<boolean, never, I18n | CommandContext | Confirm>;
211
211
  updateAction: <Args extends Array<unknown>>(update: (currentActionId: string, ...args: Args) => string) => <A, E, R>(_: Effect.Effect<A, E, R>, ...input: Args) => Effect.Effect<A, E, CommandContext | R>;
212
212
  defaultFailureMessageHandler: <E, Args extends Array<unknown>, AME, AMR>(actionMaker: string | ((o: Option.Option<E>, ...args: Args) => string) | ((o: Option.Option<E>, ...args: Args) => Effect.Effect<string, AME, AMR>), errorRenderer?: ErrorRenderer<E, Args>) => (o: Option.Option<E>, ...args: Args) => Effect.Effect<string | {
213
213
  level: "warn";
@@ -3,6 +3,6 @@ import { Commander, type CommanderImpl, CommanderStatic } from "./commander.js";
3
3
  type X<X> = X;
4
4
  export interface CommanderResolved<RT, RTHooks> extends X<typeof CommanderStatic>, Pick<CommanderImpl<RT, RTHooks>, "fn" | "wrap" | "alt" | "alt2"> {
5
5
  }
6
- export declare const makeUseCommand: <R = never, RTHooks = never>(rtHooks: Layer.Layer<RTHooks, never, R>) => Effect.Effect<CommanderResolved<R, RTHooks>, never, Commander | R>;
6
+ export declare const makeUseCommand: <R = never, RTHooks = never>(rtHooks: Layer.Layer<RTHooks, never, R>) => Effect.Effect<CommanderResolved<R, RTHooks>, never, R | Commander>;
7
7
  export {};
8
8
  //# sourceMappingURL=makeUseCommand.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/vue",
3
- "version": "4.0.0-beta.106",
3
+ "version": "4.0.0-beta.108",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
@@ -11,7 +11,7 @@
11
11
  "@vueuse/core": "^14.2.1",
12
12
  "change-case": "^5.4.4",
13
13
  "query-string": "^9.3.1",
14
- "effect-app": "4.0.0-beta.106"
14
+ "effect-app": "4.0.0-beta.108"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "@effect/atom-vue": "^4.0.0-beta.47",