File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
src/BootstrapBlazor/Options Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,11 @@ public class BootstrapBlazorOptions : IOptions<BootstrapBlazorOptions>
9090 /// </summary>
9191 public TableSettings TableSettings { get ; set ; } = new ( ) ;
9292
93+ /// <summary>
94+ /// Gets or sets the <see cref="ModalSettings"/> configuration instance
95+ /// </summary>
96+ public ModalSettings ModalSettings { get ; set ; } = new ( ) ;
97+
9398 /// <summary>
9499 /// Gets or sets the <see cref="StepSettings"/> configuration instance
95100 /// </summary>
Original file line number Diff line number Diff line change 1+ // Licensed to the .NET Foundation under one or more agreements.
2+ // The .NET Foundation licenses this file to you under the Apache 2.0 License
3+ // See the LICENSE file in the project root for more information.
4+ // Maintainer: Argo Zhang([email protected] ) Website: https://www.blazor.zone 5+
6+ namespace BootstrapBlazor . Components ;
7+
8+ /// <summary>
9+ /// Modal component settings
10+ /// </summary>
11+ public class ModalSettings
12+ {
13+ /// <summary>
14+ /// Gets or sets whether to enable fade animation, default is null
15+ /// </summary>
16+ public bool ? IsFade { get ; set ; }
17+ }
You can’t perform that action at this time.
0 commit comments