mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-24 18:23:07 +08:00
Chore: frontend infrastructure upgrade (#16420)
Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
import type { ReactElement } from 'react'
|
||||
import type { ReactNode } from 'react'
|
||||
import RadioGroupContext from '../../context'
|
||||
import s from '../../style.module.css'
|
||||
import cn from '@/utils/classnames'
|
||||
|
||||
export type TRadioGroupProps = {
|
||||
children?: ReactElement | ReactElement[]
|
||||
children?: ReactNode | ReactNode[]
|
||||
value?: string | number
|
||||
className?: string
|
||||
onChange?: (value: any) => void
|
||||
}
|
||||
|
||||
export default function Group({ children, value, onChange, className = '' }: TRadioGroupProps): JSX.Element {
|
||||
export default function Group({ children, value, onChange, className = '' }: TRadioGroupProps): React.JSX.Element {
|
||||
const onRadioChange = (value: any) => {
|
||||
onChange?.(value)
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { ReactElement } from 'react'
|
||||
import type { ReactNode } from 'react'
|
||||
import { useId } from 'react'
|
||||
import { useContext } from 'use-context-selector'
|
||||
import RadioGroupContext from '../../context'
|
||||
@@ -8,7 +8,7 @@ import cn from '@/utils/classnames'
|
||||
export type IRadioProps = {
|
||||
className?: string
|
||||
labelClassName?: string
|
||||
children?: string | ReactElement
|
||||
children?: string | ReactNode
|
||||
checked?: boolean
|
||||
value?: string | number
|
||||
disabled?: boolean
|
||||
@@ -23,7 +23,7 @@ export default function Radio({
|
||||
value,
|
||||
disabled,
|
||||
onChange,
|
||||
}: IRadioProps): JSX.Element {
|
||||
}: IRadioProps): React.JSX.Element {
|
||||
const groupContext = useContext(RadioGroupContext)
|
||||
const labelId = useId()
|
||||
const handleChange = (e: IRadioProps['value']) => {
|
||||
@@ -51,7 +51,7 @@ export default function Radio({
|
||||
>
|
||||
{children && (
|
||||
<label className={
|
||||
cn(labelClassName, 'text-sm cursor-pointer')
|
||||
cn(labelClassName, 'cursor-pointer text-sm')
|
||||
}
|
||||
id={labelId}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user