feat: dark mode for knowledge (#15236)

This commit is contained in:
Wu Tianwei
2025-03-19 11:19:57 +08:00
committed by GitHub
parent 97eadb867c
commit 411e332f1b
72 changed files with 473 additions and 761 deletions

View File

@@ -17,7 +17,7 @@ import { BubbleX, Env } from '@/app/components/base/icons/src/vender/line/others
import { checkKeys } from '@/utils/var'
import { FILE_STRUCT } from '@/app/components/workflow/constants'
interface ObjectChildrenProps {
type ObjectChildrenProps = {
nodeId: string
title: string
data: Var[]
@@ -28,7 +28,7 @@ interface ObjectChildrenProps {
isSupportFileVar?: boolean
}
interface ItemProps {
type ItemProps = {
nodeId: string
title: string
objPath: string[]
@@ -227,7 +227,7 @@ const ObjectChildren: FC<ObjectChildrenProps> = ({
)
}
interface Props {
type Props = {
hideSearch?: boolean
searchBoxClassName?: string
vars: NodeOutPutVar[]