Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/big-bushes-visit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect-app/vue-components": patch
---

fix typo
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export type InputProps<From extends Record<PropertyKey, any>, TName extends Deep
error: boolean
label: string
type: string
inputClass: string | undefined
inputClass: string | undefined | null
}
field: OmegaFieldInternalApi<From, TName>
/** be sure to use this state and not `field.state` as it is not reactive */
Expand Down
4 changes: 2 additions & 2 deletions packages/vue-components/stories/OmegaForm.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import AutoGenerationComponent from "./OmegaForm/AutoGeneration.vue"
import BooleansComponent from "./OmegaForm/Booleans.vue"
import ClearableComponent from "./OmegaForm/Clearable.vue"
import ComplexFormComponent from "./OmegaForm/ComplexForm.vue"
import CreateUseFormWithCustomInputComponent from "./OmegaForm/CreateUseFormWithCustomInput.vue"
import CreateUseFormWithCustomInputComponent from "./OmegaForm/createUseFormWIthCustomInput.vue"
import CustomInputClassNameComponent from "./OmegaForm/CustomInputClassName.vue"
import DateComponent from "./OmegaForm/Date.vue"
import DialogBlockingExamplesComponent from "./OmegaForm/DialogBlockingExamples.vue"
Expand Down Expand Up @@ -37,7 +37,7 @@ const mockIntl = {

const meta: StoryMeta<typeof OmegaForm> = {
title: "Components/OmegaForm",
component: OmegaForm,
component: OmegaForm as any,
argTypes: {
schema: { control: "object" },
onSubmit: { action: "submitted" },
Expand Down