Added support for File descriptions, Folder capacity and image sizes. Added image resizing capability using ImageSharp - implemented in user profile. Added parameter to disable image preview in FileManager component. Overhauled Pager component and added Columns parameter for Grid mode. Populated PageState.User.IsAuthenticated in SiteRouter. Added support for zero price commercial extentions.
This commit is contained in:
@ -59,7 +59,7 @@
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
@if (_image != string.Empty)
|
||||
@if (_image != string.Empty && ShowImage)
|
||||
{
|
||||
<div class="col-auto">
|
||||
@((MarkupString) _image)
|
||||
@ -110,6 +110,9 @@
|
||||
[Parameter]
|
||||
public bool ShowFolders { get; set; } = true; // optional - for indicating whether a list of folders should be displayed - default is true
|
||||
|
||||
[Parameter]
|
||||
public bool ShowImage { get; set; } = true; // optional - for indicating whether an image thumbnail should be displayed - default is true
|
||||
|
||||
[Parameter]
|
||||
public int FileId { get; set; } = -1; // optional - for setting a specific file by default
|
||||
|
||||
|
Reference in New Issue
Block a user