summerize + najva script

This commit is contained in:
hamid zarghami
2025-07-26 12:22:00 +03:30
parent cc744ebac9
commit 28911317cd
11 changed files with 33 additions and 18 deletions
+6 -6
View File
@@ -139,7 +139,7 @@ const Table = <T extends RowDataType>({
>
{selectable && (
<div
className="flex-shrink-0 relative z-[5]"
className="flex-shrink-0 "
onClick={(e) => e.stopPropagation()}
>
<Checkbox
@@ -149,7 +149,7 @@ const Table = <T extends RowDataType>({
{/* {inlineActions && (
<div
className="flex-shrink-0 flex items-center gap-2 relative z-[5]"
className="flex-shrink-0 flex items-center gap-2 "
onClick={(e) => e.stopPropagation()}
>
{inlineActions(item).map((action, actionIndex) => (
@@ -190,7 +190,7 @@ const Table = <T extends RowDataType>({
{rowActions && (
<div
className="flex-shrink-0 relative z-[5]"
className="flex-shrink-0 "
onClick={(e) => e.stopPropagation()}
>
<RowActionsDropdown actions={rowActions(item)} />
@@ -236,7 +236,7 @@ const Table = <T extends RowDataType>({
>
{selectable && (
<td
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 relative z-[5]"
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 "
onClick={(e) => e.stopPropagation()}
>
<div className='flex items-center gap-3'>
@@ -276,7 +276,7 @@ const Table = <T extends RowDataType>({
))}
{rowActions && (
<td
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 relative z-[5]"
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 "
onClick={(e) => e.stopPropagation()}
>
<RowActionsDropdown actions={rowActions(item)} />
@@ -295,7 +295,7 @@ const Table = <T extends RowDataType>({
<tr>
{selectable && (
<th
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 relative z-[5] first:rounded-tr-2xl md:first:rounded-tr-3xl"
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 first:rounded-tr-2xl md:first:rounded-tr-3xl"
onClick={(e) => e.stopPropagation()}
>
<Checkbox