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

@@ -37,7 +37,7 @@ const ClassItem: FC<Props> = ({
title={<div>
<div className='w-[200px]'>
<div
className='leading-4 text-xs font-semibold text-gray-700'
className='text-xs font-semibold leading-4 text-gray-700'
>
{`${t(`${i18nPrefix}.class`)} ${index}`}
</div>
@@ -47,12 +47,12 @@ const ClassItem: FC<Props> = ({
onChange={handleNameChange}
placeholder={t(`${i18nPrefix}.topicPlaceholder`)!}
headerRight={(
<div className='flex items-center h-full'>
<div className='flex h-full items-center'>
<div className='text-xs font-medium text-gray-500'>{payload.name.length}</div>
<div className='mx-3 h-3 w-px bg-gray-200'></div>
{!readonly && (
<RiDeleteBinLine
className='mr-1 w-3.5 h-3.5 text-gray-500 cursor-pointer'
className='mr-1 h-3.5 w-3.5 cursor-pointer text-gray-500'
onClick={onRemove}
/>
)}

View File

@@ -100,7 +100,7 @@ const Panel: FC<NodePanelProps<QuestionClassifierNodeType>> = ({
return (
<div className='pt-2'>
<div className='px-4 space-y-4'>
<div className='space-y-4 px-4'>
<Field
title={t(`${i18nPrefix}.model`)}
>

View File

@@ -1,6 +1,6 @@
import type { CommonNodeType, Memory, ModelConfig, ValueSelector, VisionSetting } from '@/app/components/workflow/types'
export interface Topic {
export type Topic = {
id: string
name: string
}