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:
Joel
2025-03-21 17:41:03 +08:00
committed by GitHub
parent e61415223b
commit 7709d9df20
1435 changed files with 13372 additions and 11612 deletions

View File

@@ -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)
}

View File

@@ -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}
>