Skip to content

Commit

Permalink
Update change logs
Browse files Browse the repository at this point in the history
  • Loading branch information
fgilde committed Jun 28, 2024
1 parent 9dc6ea8 commit f60047c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 21 deletions.
2 changes: 2 additions & 0 deletions MudBlazor.Extensions/Docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## Change Log
- 1.7.88 > Dialogs now supporting a can close event to allow canceling the close event [see sample](https://www.mudex.org/dialogs-closing-event)
- 1.7.88 > Add new Components [MudExTreeView](https://www.mudex.org/demos/TreeView).
- 1.7.88 > Update MudBlazor to 6.20.0
- 1.7.88 > New Component `MudExFileDisplayExcel` to support preview of Excel files in [MudExFileDisplay](https://www.mudex.org/file-display) and [MudExUploadEdit](https://www.mudex.org/upload-edit) .
- 1.7.88 > [MudExUploadEdit](https://www.mudex.org/upload-edit) now supports recording audio.
Expand Down
2 changes: 1 addition & 1 deletion MudBlazor.Extensions/Helper/JsImportHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static class JsImportHelper
{
private static string min => UseMinified ? ".min" : string.Empty;

internal static bool UseMinified = false;
internal static bool UseMinified = true;

internal static string BasePath = "./_content/";

Expand Down
1 change: 1 addition & 0 deletions MudBlazor.Extensions/wwwroot/docs/MudBlazor.Extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20198,6 +20198,7 @@
<member name="P:MudBlazor.Extensions.Options.DialogOptionsEx.CanCloseCallbackReference">
<summary>
the .NET object reference where the <see cref="P:MudBlazor.Extensions.Options.DialogOptionsEx.CanCloseCallbackName"/> is located.
if you don't specify reference the dialog itself will be the reference.Then you need to have the CanCloseCallback Method on your DialogClass
</summary>
</member>
<member name="P:MudBlazor.Extensions.Options.DialogOptionsEx.DragMode">
Expand Down
31 changes: 11 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ builder.Services.AddMudServicesWithExtensions(c => c.WithoutAutomaticCssLoading(
<summary>Expand videos</summary>

<!-- WIKI:START -->
<!-- Copied from https://raw.githubusercontent.com/wiki/fgilde/MudBlazor.Extensions/Showcase.md on 2024-03-22 10:26:05 -->
<!-- Copied from https://raw.githubusercontent.com/wiki/fgilde/MudBlazor.Extensions/Showcase.md on 2024-06-28 13:18:32 -->
## Showcase

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/39e06d88-a947-43cd-9151-a7cf96bcd849
Expand Down Expand Up @@ -164,7 +164,7 @@ This section introduces you to the various components provided by the MudBlazor.

### MudExObjectEdit
<!-- OBJECTEDIT:START -->
<!-- Copied from ObjectEdit.md on 2024-03-22 10:26:05 -->
<!-- Copied from ObjectEdit.md on 2024-06-28 13:18:32 -->
The `MudExObjectEdit` is a robust component that allows for object editing and automatically generates the corresponding UI. This component supports automatic validation for DataAnnotation Validations or fluent registered validations for your model.

To use `MudExObjectEdit`, you can simply use the `MudExObjectEditForm` and pass your model to it as shown below:
Expand Down Expand Up @@ -204,7 +204,7 @@ You can find a running [Sample here](https://www.mudex.org/structured-data-edit)

### MudExFileDisplay
<!-- FILEDISPLAY:START -->
<!-- Copied from MudExFileDisplay.md on 2024-03-22 10:26:05 -->
<!-- Copied from MudExFileDisplay.md on 2024-06-28 13:18:32 -->
The `MudExFileDisplay` component is designed to display file contents, such as a preview before uploading or for referenced files.
This component can automatically handle URLs or streams and deliver the best possible display.
Additionally, you can implement `IMudExFileDisplay` in your own component to register a custom file display.
Expand Down Expand Up @@ -263,7 +263,7 @@ await dialogService.ShowEx<MudExFileDisplayDialog>(title, parameters, optionsEx)

### MudExUploadEdit
<!-- UPLOADEDIT:START -->
<!-- Copied from MudExUploadEdit.md on 2024-03-22 10:26:05 -->
<!-- Copied from MudExUploadEdit.md on 2024-06-28 13:18:32 -->

`MudExUploadEdit` is a versatile file upload component with a wide range of features such as MIME and extension whitelisting/blacklisting, folder upload, drag and drop, copy and paste, renaming, and integration with Dropbox, Google Drive, and OneDrive.

Expand All @@ -275,7 +275,7 @@ await dialogService.ShowEx<MudExFileDisplayDialog>(title, parameters, optionsEx)

## Extensions
<!-- DIALOG_EXT:START -->
<!-- Copied from DialogExtensions.md on 2024-03-22 10:26:05 -->
<!-- Copied from DialogExtensions.md on 2024-06-28 13:18:32 -->
### Resizable or Draggable Dialogs

You can make your dialogs resizable or draggable using the following code snippet:
Expand Down Expand Up @@ -386,7 +386,12 @@ MudBlazor.Extensions is released under the MIT License. See the bundled LICENSE
## Change Log
Latest Changes:
<!-- CHANGELOG:START -->
<!-- Copied from CHANGELOG.md on 2024-03-22 10:26:05 -->
<!-- Copied from CHANGELOG.md on 2024-06-28 13:18:31 -->
- 1.7.88 > Dialogs now supporting a can close event to allow canceling the close event [see sample](https://www.mudex.org/dialogs-closing-event)
- 1.7.88 > Add new Components [MudExTreeView](https://www.mudex.org/demos/TreeView).
- 1.7.88 > Update MudBlazor to 6.20.0
- 1.7.88 > New Component `MudExFileDisplayExcel` to support preview of Excel files in [MudExFileDisplay](https://www.mudex.org/file-display) and [MudExUploadEdit](https://www.mudex.org/upload-edit) .
- 1.7.88 > [MudExUploadEdit](https://www.mudex.org/upload-edit) now supports recording audio.
- 1.7.88 > New Component [MudExGravatar](https://www.mudex.org/gravatar).
- 1.7.88 > Dialogs now supporting CustomSize and CustomPostion to allow more flexibility.
- 1.7.88 > New service [IDialogEventService](https://www.mudex.org/a/IDialogEventService) to allow handling of dialog events
Expand All @@ -397,20 +402,6 @@ Latest Changes:
- 1.7.87 > Improve key navigation in MudExSelect and MudExList
- 1.7.87 > Update MudBlazor to 6.19.1
- 1.7.86 > Update MudBlazor to 6.18.0
- 1.7.86 > Fix wrong js deploy for splitter.min.js
- 1.7.85 > Update MudBlazor to 6.17.0
- 1.7.85 > Splitter can now work with one element only
- 1.7.85 > Sample app to net 8
- 1.7.84 > Update MudBlazor to 6.15.0
- 1.7.84 > Fix hidden content sometimes in MudExFileDisplayDialog
- 1.7.84 > Fix Bug that no input can selected in draggable dialogs without header
- 1.7.84 > Register [MudExAudioPlayer](https://www.mudex.org/audio-player) as file viewer for audio files [see file sample](https://www.mudex.org/file-display?file=electro-psycho-ibiza-no-vocal-sample-edit-169343.mp3)
- 1.7.83 > Register [MudExStructuredDataEditor](https://www.mudex.org/structured-data-edit) as file viewer for json, yml and xml files [see file sample](https://www.mudex.org/file-display?file=weather.json)
- 1.7.83 > Add viewer for font files for MudExFileDisplay [see file sample](https://www.mudex.org/file-display?file=SweetieBubbleGum-Regular.ttf)
- 1.7.83 > Add support for tiff images in MudExFileDisplay [see file sample](https://www.mudex.org/file-display?file=Header.tiff)
- 1.7.83 > Add new Component for displaying images [MudExImageViewer](https://www.mudex.org/image-view) also registered as IMudExFileDisplay [see file sample](https://www.mudex.org/file-display?file=logo.png)
- 1.7.81 > Add support for style and class in MudExCardList
- 1.7.81 > Add Itemtemplate for MudExUploadEdit
<!-- CHANGELOG:END -->
Full change log can be found [here](https://github.com/fgilde/MudBlazor.Extensions/blob/main/MudBlazor.Extensions/Docs/CHANGELOG.md)

Expand Down

0 comments on commit f60047c

Please sign in to comment.