Skip to content

Commit 2e7567f

Browse files
Merge pull request #108 from Community-Toolkit-for-Fluent-UI-Blazor/fix-ghpages
[Chore] Fix javascript import
2 parents f1120be + 7130a61 commit 2e7567f

2 files changed

Lines changed: 56 additions & 1 deletion

File tree

examples/demo/FluentUI.Demo.Shared/FluentUI.Blazor.Community.Components.xml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4838,6 +4838,61 @@
48384838
content.</param>
48394839
<returns>An <see cref="T:FluentUI.Blazor.Community.Components.VideoMetadata"/> object containing the extracted metadata, such as duration, format, and bitrate.</returns>
48404840
</member>
4841+
<member name="T:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata">
4842+
<summary>
4843+
Represents descriptive metadata information for a video, including title, series, directors, cast, genres, and
4844+
</summary>
4845+
</member>
4846+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Title">
4847+
<summary>
4848+
Gets or sets the title associated with the video.
4849+
</summary>
4850+
</member>
4851+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Series">
4852+
<summary>
4853+
Gets or sets the series identifier or name associated with the video.
4854+
</summary>
4855+
</member>
4856+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Directors">
4857+
<summary>
4858+
Gets or sets the names of the directors associated with the video.
4859+
</summary>
4860+
</member>
4861+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Writers">
4862+
<summary>
4863+
Gets or sets the collection of writer names associated with the video.
4864+
</summary>
4865+
</member>
4866+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Cast">
4867+
<summary>
4868+
Gets or sets the list of cast members associated with the video.
4869+
</summary>
4870+
</member>
4871+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Producers">
4872+
<summary>
4873+
Gets or sets the list of producers associated with the video.
4874+
</summary>
4875+
</member>
4876+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Genres">
4877+
<summary>
4878+
Gets or sets the genres associated with the video.
4879+
</summary>
4880+
</member>
4881+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Year">
4882+
<summary>
4883+
Gets or sets the year associated with the video.
4884+
</summary>
4885+
</member>
4886+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Description">
4887+
<summary>
4888+
Gets or sets the description associated with the video.
4889+
</summary>
4890+
</member>
4891+
<member name="P:FluentUI.Blazor.Community.Components.VideoDescriptiveMetadata.Comment">
4892+
<summary>
4893+
Gets or sets the optional comment associated with this video.
4894+
</summary>
4895+
</member>
48414896
<member name="T:FluentUI.Blazor.Community.Components.VideoMetadata">
48424897
<summary>
48434898
Represents a collection of metadata describing various aspects of a video, including descriptive, technical, legal,

src/Community.Components/Components/Observers/FluentCxObserverProvider.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public sealed partial class FluentCxObserverProvider
5555
/// <remarks>This path is used to locate the JavaScript file that contains the implementation for the
5656
/// FluentCxObserverProvider. Ensure that the file exists at the specified location and is correctly deployed as
5757
/// part of the application.</remarks>
58-
private const string JsModulePath = "./_content/FluentUI.Blazor.Community.Components/components/observers/FluentCxObserverProvider.razor.js";
58+
private const string JsModulePath = "./_content/FluentUI.Blazor.Community.Components/Components/Observers/FluentCxObserverProvider.razor.js";
5959

6060
/// <summary>
6161
/// Initializes a new instance of the <see cref="FluentCxObserverProvider"/> class.

0 commit comments

Comments
 (0)