mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 04:58:32 +08:00
110 lines
2.8 KiB
TypeScript
110 lines
2.8 KiB
TypeScript
import type { ComponentProps } from 'react'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
|
|
type DetailTableProps = ComponentProps<'table'> & {
|
|
containerClassName?: string
|
|
}
|
|
|
|
export function DetailTable({ className, containerClassName, ...props }: DetailTableProps) {
|
|
return (
|
|
<div
|
|
data-slot="deployment-detail-table-container"
|
|
className={cn('relative w-full min-w-0 pc:overflow-x-auto', containerClassName)}
|
|
>
|
|
<table
|
|
data-slot="deployment-detail-table"
|
|
className={cn(
|
|
'w-full max-w-full min-w-[700px] border-collapse border-0 text-sm',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export function DetailTableHeader({ className, ...props }: ComponentProps<'thead'>) {
|
|
return (
|
|
<thead
|
|
data-slot="deployment-detail-table-header"
|
|
className={cn(
|
|
'h-8 border-b border-divider-subtle system-xs-medium-uppercase text-text-tertiary [&_tr]:border-b-0 [&_tr]:hover:bg-transparent',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export function DetailTableBody({ className, ...props }: ComponentProps<'tbody'>) {
|
|
return (
|
|
<tbody
|
|
data-slot="deployment-detail-table-body"
|
|
className={cn('system-sm-regular text-text-secondary', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export function DetailTableRow({ className, ...props }: ComponentProps<'tr'>) {
|
|
return (
|
|
<tr
|
|
data-slot="deployment-detail-table-row"
|
|
className={cn(
|
|
'h-8 border-b border-divider-subtle transition-colors hover:bg-background-default-hover',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export function DetailTableHead({ className, ...props }: ComponentProps<'th'>) {
|
|
return (
|
|
<th
|
|
data-slot="deployment-detail-table-head"
|
|
className={cn(
|
|
className,
|
|
'box-border max-w-[200px] px-2.5 py-0 text-left align-middle font-medium whitespace-nowrap first:pl-3',
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export function DetailTableCell({ className, ...props }: ComponentProps<'td'>) {
|
|
return (
|
|
<td
|
|
data-slot="deployment-detail-table-cell"
|
|
className={cn(className, 'box-border max-w-[200px] px-2.5 py-[5px] align-middle first:pl-3')}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export function DetailTableCardList({ className, ...props }: ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-slot="deployment-detail-table-card-list"
|
|
className={cn(
|
|
'overflow-hidden rounded-lg border border-divider-subtle bg-background-default',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export function DetailTableCard({ className, ...props }: ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-slot="deployment-detail-table-card"
|
|
className={cn(
|
|
'border-b border-divider-subtle last:border-b-0 hover:bg-background-default-hover',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|