Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
10 changes: 10 additions & 0 deletions .changeset/hot-pillows-jam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
'@example/ui-playground': patch
'@genseki/react': patch
'@example/erp': patch
---

- move `shadcn` components to `v2` folder and export the directory
- flatten `primary` button variant
- fix: `aria-menu` background
- rename back the deprecated react-aria components by removing the leading `Aria[component-name]` keyword
10 changes: 5 additions & 5 deletions examples/erp/genseki/auth/setup/setup.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import { useRouter } from 'next/navigation'
import z from 'zod'

import {
AriaTextField,
Form,
FormControl,
FormField,
FormItem,
FormMessage,
SubmitButton,
TextField,
toast,
} from '@genseki/react'

Expand Down Expand Up @@ -74,7 +74,7 @@ export function SetupClientForm() {
render={({ field }) => (
<FormItem>
<FormControl>
<AriaTextField
<TextField
{...field}
placeholder="full name..."
label="Full Name"
Expand All @@ -91,7 +91,7 @@ export function SetupClientForm() {
render={({ field }) => (
<FormItem>
<FormControl>
<AriaTextField
<TextField
{...field}
type="email"
placeholder="email..."
Expand All @@ -109,7 +109,7 @@ export function SetupClientForm() {
render={({ field }) => (
<FormItem>
<FormControl>
<AriaTextField
<TextField
{...field}
type="password"
placeholder="password..."
Expand All @@ -128,7 +128,7 @@ export function SetupClientForm() {
render={({ field }) => (
<FormItem>
<FormControl>
<AriaTextField
<TextField
{...field}
type="password"
placeholder="confirm password..."
Expand Down
2 changes: 1 addition & 1 deletion examples/erp/genseki/collections/posts.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import type { CollectionLayoutProps, InferCreateFields } from '@genseki/react'
import {
actionsColumn,
BackColorExtension,
Button,
CollectionListToolbar,
createDeleteActionItem,
createEditActionItem,
Expand All @@ -43,6 +42,7 @@ import {
useNavigation,
useTableStatesContext,
} from '@genseki/react'
import { Button } from '@genseki/react/v2'

import { type fields } from './posts'

Expand Down
Loading
Loading