@effect-app/vue 4.0.0-beta.43 → 4.0.0-beta.44

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,13 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 4.0.0-beta.44
4
+
5
+ ### Patch Changes
6
+
7
+ - a37aa38: Update to effect beta 43
8
+ - Updated dependencies [a37aa38]
9
+ - effect-app@4.0.0-beta.44
10
+
3
11
  ## 4.0.0-beta.43
4
12
 
5
13
  ### Patch Changes
@@ -204,9 +204,9 @@ type ErrorRenderer<E, Args extends readonly any[]> = (e: E, action: string, ...a
204
204
  export declare const CommanderStatic: {
205
205
  accessArgs: <In, Out, Arg2, Arg = void>(cb: (a: NoInfer<Arg>, b: NoInfer<Arg2>) => (self: NoInfer<In>) => Out) => (self: In, arg: Arg, arg2: Arg2) => Out;
206
206
  /** Version of @see confirmOrInterrupt that automatically includes the action name in the default messages */
207
- confirmOrInterrupt: (message?: string | undefined) => Effect.Effect<void, never, CommandContext | I18n | Confirm>;
207
+ confirmOrInterrupt: (message?: string | undefined) => Effect.Effect<void, never, I18n | Confirm | CommandContext>;
208
208
  /** Version of @see confirm that automatically includes the action name in the default messages */
209
- confirm: (message?: string | undefined) => Effect.Effect<boolean, never, CommandContext | I18n | Confirm>;
209
+ confirm: (message?: string | undefined) => Effect.Effect<boolean, never, I18n | Confirm | CommandContext>;
210
210
  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>;
211
211
  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 | {
212
212
  level: "warn";
@@ -232,7 +232,7 @@ export declare const CommanderStatic: {
232
232
  errorRenderer?: ErrorRenderer<E, Args>;
233
233
  onWaiting?: null | undefined | string | ((id: string, ...args: Args) => string | null | undefined);
234
234
  onSuccess?: null | undefined | string | ((a: A, action: string, ...args: Args) => string | null | undefined);
235
- }) => (self: Effect.Effect<A, E, R>, ...args: Args) => Effect.Effect<A, E, CommandContext | I18n | R | WithToast>;
235
+ }) => (self: Effect.Effect<A, E, R>, ...args: Args) => Effect.Effect<A, E, I18n | WithToast | CommandContext | R>;
236
236
  /** borrowing the idea from Families in Effect Atom */
237
237
  family: <T extends object, Arg, ArgIn = Arg>(maker: (arg: Arg) => T, keyMaker?: (arg: ArgIn) => Arg) => (arg: ArgIn) => T;
238
238
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/vue",
3
- "version": "4.0.0-beta.43",
3
+ "version": "4.0.0-beta.44",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
@@ -11,17 +11,17 @@
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.43"
14
+ "effect-app": "4.0.0-beta.44"
15
15
  },
16
16
  "peerDependencies": {
17
- "@effect/atom-vue": "^4.0.0-beta.40",
18
- "@effect/platform-browser": "^4.0.0-beta.40",
17
+ "@effect/atom-vue": "^4.0.0-beta.43",
18
+ "@effect/platform-browser": "^4.0.0-beta.43",
19
19
  "@sentry/browser": "^10.42.0",
20
- "effect": "^4.0.0-beta.40",
20
+ "effect": "^4.0.0-beta.43",
21
21
  "vue": "^3.5.29"
22
22
  },
23
23
  "devDependencies": {
24
- "@effect/vitest": "^4.0.0-beta.40",
24
+ "@effect/vitest": "^4.0.0-beta.43",
25
25
  "@formatjs/icu-messageformat-parser": "^3.5.1",
26
26
  "@types/node": "25.3.3",
27
27
  "@vitejs/plugin-vue": "^6.0.4",