@effect-app/vue 4.0.0-beta.42 → 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 +14 -0
- package/dist/experimental/commander.d.ts +3 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
11
|
+
## 4.0.0-beta.43
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- effect-app@4.0.0-beta.43
|
|
16
|
+
|
|
3
17
|
## 4.0.0-beta.42
|
|
4
18
|
|
|
5
19
|
### 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,
|
|
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,
|
|
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,
|
|
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.
|
|
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.
|
|
14
|
+
"effect-app": "4.0.0-beta.44"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@effect/atom-vue": "^4.0.0-beta.
|
|
18
|
-
"@effect/platform-browser": "^4.0.0-beta.
|
|
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.
|
|
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.
|
|
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",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"typescript": "~6.0.2",
|
|
31
31
|
"vite": "^7.3.1",
|
|
32
32
|
"vitest": "^4.0.18",
|
|
33
|
-
"@effect-app/eslint-shared-config": "0.5.7-beta.
|
|
33
|
+
"@effect-app/eslint-shared-config": "0.5.7-beta.3"
|
|
34
34
|
},
|
|
35
35
|
"typesVersions": {
|
|
36
36
|
"*": {
|