|
|
|
@ -29,7 +29,7 @@ const FileManager = ({ buttons }) => { |
|
|
|
|
<div className="self-end"> |
|
|
|
|
<SearchBox |
|
|
|
|
className={ |
|
|
|
|
"border-[#EEEEEE] focus:border-gray-200 focus:ring-gray-200 placeholder-gray-300" |
|
|
|
|
"border-surfaceBorder focus:border-gray-200 focus:ring-gray-200 placeholder-gray-300" |
|
|
|
|
} |
|
|
|
|
searchIcon="images/FileManagergray-search-icon.svg" |
|
|
|
|
/> |
|
|
|
@ -38,13 +38,15 @@ const FileManager = ({ buttons }) => { |
|
|
|
|
{/* cardHolder */} |
|
|
|
|
<Playlist /> |
|
|
|
|
</div> |
|
|
|
|
<div className="bg-white"> |
|
|
|
|
<div className=""> |
|
|
|
|
<div className="flex flex-col px-7 py-5"> |
|
|
|
|
{/* pageTitleSubTitle & Buttons */} |
|
|
|
|
<div className="flex flex-row item-center justify-between"> |
|
|
|
|
{/* ? pageTitle */} |
|
|
|
|
<div className="flex-1"> |
|
|
|
|
<TitleSubtitle titleBorderClassName={""} /> |
|
|
|
|
<TitleSubtitle |
|
|
|
|
titleBorderClassName={"w-1 h-5 ml-1 bg-primaryText"} |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
{/* buttons */} |
|
|
|
|
<div className="flex flex-row item-center justify-between self-center gap-2"> |
|
|
|
@ -62,7 +64,7 @@ const FileManager = ({ buttons }) => { |
|
|
|
|
{/* folderLists */} |
|
|
|
|
<Folderlists /> |
|
|
|
|
{/* ? pageTitle */} |
|
|
|
|
<div className="mt-5 rounded-lg shadow-md w-full bg-[#FBFBFB]"> |
|
|
|
|
<div className="mt-5 rounded shadow w-full bg-background"> |
|
|
|
|
{/* <TitleSubtitle /> */} |
|
|
|
|
<BasicTable /> |
|
|
|
|
</div> |
|
|
|
@ -93,12 +95,12 @@ FileManager.defaultProps = { |
|
|
|
|
buttons: [ |
|
|
|
|
{ |
|
|
|
|
name: "رابط کاربری", |
|
|
|
|
className: "bg-[#4E85E5] text-white", |
|
|
|
|
className: "bg-primary hover:bg-primaryDark text-white", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
name: "فرانت اند", |
|
|
|
|
className: |
|
|
|
|
"bg-transparent border border-[#4E85E5] text-[#4E85E5] font-sansbold", |
|
|
|
|
"bg-transparent border border-primary text-primary hover:bg-primary hover:text-white font-bold", |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}; |
|
|
|
|