@@ -97,7 +97,7 @@ protected internal void SetSearchString(T value)
9797 /// If true, all items are eligible regarding what user search in textfield. Default is false.
9898 /// </summary>
9999 [ Category ( CategoryTypes . FormComponent . Appearance ) ]
100- [ Parameter ] public bool DisableFilter { get ; set ; } = false ;
100+ [ Parameter ] public bool DisableFilter { get ; set ; }
101101
102102 /// <summary>
103103 /// If true, searched text has highlight.
@@ -223,48 +223,55 @@ protected internal void SetSearchString(T value)
223223 /// <summary>
224224 /// If true, compact vertical padding will be applied to all Select items.
225225 /// </summary>
226+ /// <remarks>The default is <see cref="Dense.Standard"/></remarks>
226227 [ Parameter ]
227228 [ Category ( CategoryTypes . FormComponent . ListAppearance ) ]
228229 public Dense Dense { get ; set ; } = Dense . Standard ;
229230
230231 /// <summary>
231232 /// The Open Select Icon
232233 /// </summary>
234+ /// <remarks>The default is <see cref="Icons.Material.Filled.ArrowDropDown"/></remarks>
233235 [ Parameter ]
234236 [ Category ( CategoryTypes . FormComponent . Appearance ) ]
235237 public string OpenIcon { get ; set ; } = Icons . Material . Filled . ArrowDropDown ;
236238
237239 /// <summary>
238240 /// The Close Select Icon
239241 /// </summary>
242+ /// <remarks>The default is <see cref="Icons.Material.Filled.ArrowDropUp"/></remarks>
240243 [ Parameter ]
241244 [ Category ( CategoryTypes . FormComponent . Appearance ) ]
242245 public string CloseIcon { get ; set ; } = Icons . Material . Filled . ArrowDropUp ;
243246
244247 /// <summary>
245248 /// Dropdown color of select. Supports theme colors.
246249 /// </summary>
250+ /// <remarks>The default is <see cref="Color.Primary"/></remarks>
247251 [ Parameter ]
248252 [ Category ( CategoryTypes . FormComponent . Appearance ) ]
249253 public Color Color { get ; set ; } = Color . Primary ;
250254
251255 /// <summary>
252256 /// The input's visual.
253257 /// </summary>
258+ /// <remarks>The default is <see cref="ValuePresenter.Text"/></remarks>
254259 [ Parameter ]
255260 [ Category ( CategoryTypes . FormComponent . Appearance ) ]
256261 public ValuePresenter InputPresenter { get ; set ; } = ValuePresenter . Text ;
257262
258263 /// <summary>
259264 /// The items' visual in popover.
260265 /// </summary>
266+ /// <remarks>The default is <see cref="ValuePresenter.Text"/></remarks>
261267 [ Parameter ]
262268 [ Category ( CategoryTypes . FormComponent . Appearance ) ]
263269 public ValuePresenter ItemPresenter { get ; set ; } = ValuePresenter . Text ;
264270
265271 /// <summary>
266- /// If true, shows checkbox when multiselection is true. Default is true.
272+ /// If true, shows checkbox when multiselection is true.
267273 /// </summary>
274+ /// <remarks>The default is <c>true</c></remarks>
268275 [ Parameter ]
269276 [ Category ( CategoryTypes . FormComponent . ListBehavior ) ]
270277 public bool ShowCheckbox { get ; set ; } = true ;
@@ -279,13 +286,15 @@ protected internal void SetSearchString(T value)
279286 /// <summary>
280287 /// Sets position of the Select All checkbox
281288 /// </summary>
289+ /// <remarks>The default is <see cref="SelectAllPosition.BeforeSearchBox"/></remarks>
282290 [ Parameter ]
283291 [ Category ( CategoryTypes . List . Appearance ) ]
284292 public SelectAllPosition SelectAllPosition { get ; set ; } = SelectAllPosition . BeforeSearchBox ;
285293
286294 /// <summary>
287295 /// Define the text of the Select All option.
288296 /// </summary>
297+ /// <remarks>The default is <c>Select All</c></remarks>
289298 [ Parameter ]
290299 [ Category ( CategoryTypes . FormComponent . ListAppearance ) ]
291300 public string SelectAllText { get ; set ; } = "Select All" ;
@@ -329,52 +338,60 @@ protected internal void SetSearchString(T value)
329338 [ Category ( CategoryTypes . List . Behavior ) ]
330339 public string ChipClass { get ; set ; }
331340
341+ /// <remarks>The default is <see cref="Variant.Filled"/></remarks>
332342 [ Parameter ]
333343 [ Category ( CategoryTypes . List . Behavior ) ]
334344 public Variant ChipVariant { get ; set ; } = Variant . Filled ;
335345
346+ /// <remarks>The default is <see cref="Size.Small"/></remarks>
336347 [ Parameter ]
337348 [ Category ( CategoryTypes . List . Behavior ) ]
338349 public Size ChipSize { get ; set ; } = Size . Small ;
339350
340351 /// <summary>
341352 /// Parameter to define the delimited string separator.
342353 /// </summary>
354+ /// <remarks>The default is <c>, </c></remarks>
343355 [ Parameter ]
344356 [ Category ( CategoryTypes . FormComponent . Behavior ) ]
345357 public string Delimiter { get ; set ; } = ", " ;
346358
347359 /// <summary>
348360 /// If true popover width will be the same as the combobox component.
349361 /// </summary>
362+ /// <remarks>The default is <c>true</c></remarks>
350363 [ Parameter ]
351364 [ Category ( CategoryTypes . FormComponent . Behavior ) ]
352365 public bool RelativeWidth { get ; set ; } = true ;
353366
354367 /// <summary>
355368 /// Sets the maxheight of the popover.
356369 /// </summary>
370+ /// <remarks>The default is <c>300</c></remarks>
357371 [ Parameter ]
358372 [ Category ( CategoryTypes . FormComponent . ListAppearance ) ]
359373 public int MaxHeight { get ; set ; } = 300 ;
360374
361375 /// <summary>
362376 /// Set the anchor origin point to determine where the popover will open from.
363377 /// </summary>
378+ /// <remarks>The default is <see cref="Origin.BottomCenter"/></remarks>
364379 [ Parameter ]
365380 [ Category ( CategoryTypes . FormComponent . ListAppearance ) ]
366381 public Origin AnchorOrigin { get ; set ; } = Origin . BottomCenter ;
367382
368383 /// <summary>
369384 /// Sets the transform origin point for the popover.
370385 /// </summary>
386+ /// <remarks>The default is <see cref="Origin.TopCenter"/></remarks>
371387 [ Parameter ]
372388 [ Category ( CategoryTypes . FormComponent . ListAppearance ) ]
373389 public Origin TransformOrigin { get ; set ; } = Origin . TopCenter ;
374390
375391 /// <summary>
376392 /// If false, combobox allows value from out of bound.
377393 /// </summary>
394+ /// <remarks>The default is <c>true</c></remarks>
378395 [ Parameter ]
379396 [ Category ( CategoryTypes . FormComponent . Behavior ) ]
380397 public bool Strict { get ; set ; } = true ;
@@ -396,6 +413,7 @@ protected internal void SetSearchString(T value)
396413 /// <summary>
397414 /// If true, the search-box will be focused when the dropdown is opened.
398415 /// </summary>
416+ /// <remarks>The default is <c>true</c></remarks>
399417 [ Parameter ]
400418 [ Category ( CategoryTypes . List . Behavior ) ]
401419 public bool SearchBoxAutoFocus { get ; set ; } = true ;
@@ -412,7 +430,7 @@ protected internal void SetSearchString(T value)
412430 /// </summary>
413431 [ Parameter ]
414432 [ Category ( CategoryTypes . FormComponent . ListBehavior ) ]
415- public bool LockScroll { get ; set ; } = false ;
433+ public bool LockScroll { get ; set ; }
416434
417435 /// <summary>
418436 /// Button click event for clear button. Called after text and value has been cleared.
@@ -422,6 +440,7 @@ protected internal void SetSearchString(T value)
422440 /// <summary>
423441 /// Custom indeterminate icon.
424442 /// </summary>
443+ /// <remarks>The default is <see cref="Icons.Material.Filled.IndeterminateCheckBox"/></remarks>
425444 [ Parameter ]
426445 [ Category ( CategoryTypes . FormComponent . ListAppearance ) ]
427446 public string IndeterminateIcon { get ; set ; } = Icons . Material . Filled . IndeterminateCheckBox ;
0 commit comments