Skip to content

Commit fb33ff6

Browse files
committed
feat: update status to beta in AppHeader and README.md
1 parent 27366fb commit fb33ff6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
Auto-generate Nuxt UI forms from Zod 4 schemas
88

99
> [!WARNING]
10-
> This module is in early development. Many features are missing and the API may change.
10+
> This module is in **beta**.
11+
> All ideas/suggestions/bug reports are welcome!
1112
1213
- [ Release Notes](/CHANGELOG.md)
1314
- [📖  Documentation](https://nuxt-auto-form.norbiros.dev)

docs/app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const { header } = useAppConfig()
4545
<img src="~/assets/logo.svg" alt="N" class="w-8 mb-2">
4646
Nuxt Auto Form
4747
<UBadge variant="subtle" color="warning" size="sm">
48-
WIP
48+
Beta
4949
</UBadge>
5050
</NuxtLink>
5151
</template>

playground/app/components/MyForm.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { AInputPasswordToggle, AInputWithClear } from '#components'
2+
import { AInputWithClear } from '#components'
33
import * as z from 'zod'
44
55
const ENUM_MULTIPLE = [
@@ -48,7 +48,6 @@ const schema = z.object({
4848
multiple_input: z
4949
.array(z.enum(ENUM_MULTIPLE))
5050
.meta({ title: 'Multiple Enum Input' }),
51-
password: z.string().nonempty().meta({ input: { component: AInputPasswordToggle } }),
5251
})
5352
5453
function onSubmit(data: Record<string, any>) {

0 commit comments

Comments
 (0)