0.2.5 #43

Merged
Thilawyn merged 94 commits from next into master 2026-03-31 21:01:13 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit ee1c0c45cd - Show all commits

View File

@@ -5,7 +5,7 @@ import { Component, Form, Subscribable } from "effect-fc"
export declare namespace TextFieldFormInputView {
export interface Props extends Omit<TextField.RootProps, "form">, Form.useInput.Options {
readonly form: Form.Form<readonly PropertyKey[], any, string>
readonly form: Form.Form<any, any, string>
}
}

View File

@@ -5,7 +5,7 @@ import { Component, Form, Subscribable } from "effect-fc"
export declare namespace TextFieldOptionalFormInputView {
export interface Props extends Omit<TextField.RootProps, "form" | "defaultValue">, Form.useOptionalInput.Options<string> {
readonly form: Form.Form<readonly PropertyKey[], any, Option.Option<string>>
readonly form: Form.Form<any, any, Option.Option<string>>
}
}