@@ -86,42 +86,47 @@ public class BootstrapBlazorOptions : IOptions<BootstrapBlazorOptions>
8686 public string ? JSModuleVersion { get ; set ; }
8787
8888 /// <summary>
89- /// Gets or sets the table settings instance
89+ /// Gets or sets the <see cref="TableSettings"/> configuration instance
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>
96101 public StepSettings StepSettings { get ; set ; } = new ( ) ;
97102
98103 /// <summary>
99- /// Gets or sets the <see cref="ConnectionHubOptions"/> configuration, default is not null
104+ /// Gets or sets the <see cref="ConnectionHubOptions"/> configuration
100105 /// </summary>
101106 public ConnectionHubOptions ConnectionHubOptions { get ; set ; } = new ( ) ;
102107
103108 /// <summary>
104- /// Gets or sets the <see cref="WebClientOptions"/> configuration, default is not null
109+ /// Gets or sets the <see cref="WebClientOptions"/> configuration
105110 /// </summary>
106111 public WebClientOptions WebClientOptions { get ; set ; } = new ( ) ;
107112
108113 /// <summary>
109- /// Gets or sets the <see cref="IpLocatorOptions"/> configuration, default is not null
114+ /// Gets or sets the <see cref="IpLocatorOptions"/> configuration
110115 /// </summary>
111116 public IpLocatorOptions IpLocatorOptions { get ; set ; } = new ( ) ;
112117
113118 /// <summary>
114- /// Gets or sets the <see cref="ScrollOptions"/> configuration, default is not null
119+ /// Gets or sets the <see cref="ScrollOptions"/> configuration
115120 /// </summary>
116121 public ScrollOptions ScrollOptions { get ; set ; } = new ( ) ;
117122
118123 /// <summary>
119- /// Gets or sets the <see cref="ContextMenuOptions"/> configuration, default is not null
124+ /// Gets or sets the <see cref="ContextMenuOptions"/> configuration
120125 /// </summary>
121126 public ContextMenuOptions ContextMenuOptions { get ; set ; } = new ( ) ;
122127
123128 /// <summary>
124- /// Gets or sets the CacheManagerOptions configuration, default is not null
129+ /// Gets or sets the CacheManagerOptions configuration
125130 /// </summary>
126131 public CacheManagerOptions CacheManagerOptions { get ; set ; } = new ( ) ;
127132
0 commit comments