diff --git a/Source/Blazorise/Base/BaseColumnComponent.cs b/Source/Blazorise/Base/BaseColumnComponent.cs index b1f25a87c5..ea20b1a00e 100644 --- a/Source/Blazorise/Base/BaseColumnComponent.cs +++ b/Source/Blazorise/Base/BaseColumnComponent.cs @@ -43,17 +43,17 @@ protected override void BuildClasses( ClassBuilder builder ) protected bool InsideGrid => ParentGrid is not null; /// - /// Cascaded component in which this is placed. + /// The cascaded component that contains this . /// [CascadingParameter] public Row ParentRow { get; set; } /// - /// Cascaded component in which this is placed. + /// The cascaded component that contains this . /// [CascadingParameter] public Grid ParentGrid { get; set; } /// - /// Defines the column sizes. + /// Defines the sizing configuration for the column, supporting responsive layouts and custom size definitions. /// [Parameter] public IFluentColumn ColumnSize @@ -68,8 +68,11 @@ public IFluentColumn ColumnSize } /// - /// Specifies the content to be rendered inside this . + /// Specifies the content to render inside this . /// + /// + /// Use this property to define custom child elements or components to be displayed within the column. + /// [Parameter] public RenderFragment ChildContent { get; set; } #endregion diff --git a/Source/Blazorise/Components/Field/Field.razor.cs b/Source/Blazorise/Components/Field/Field.razor.cs index 3e3362004c..517b04369d 100644 --- a/Source/Blazorise/Components/Field/Field.razor.cs +++ b/Source/Blazorise/Components/Field/Field.razor.cs @@ -129,7 +129,7 @@ internal void UnHook( BaseComponent component ) protected bool IsFields => ParentFields is not null; /// - /// Aligns the controls for horizontal form. + /// Determines whether the form controls should be aligned horizontally, as in a horizontal form layout. /// [Parameter] public bool Horizontal @@ -146,7 +146,7 @@ public bool Horizontal } /// - /// Aligns the flexible container's items when the items do not use all available space on the main-axis (horizontally). + /// Defines how the container's items are aligned along the main axis when there is extra space available. /// [Parameter] public JustifyContent JustifyContent @@ -161,12 +161,12 @@ public JustifyContent JustifyContent } /// - /// Gets or sets the reference to the parent component. + /// A reference to the parent component in which this component is nested. /// [CascadingParameter] protected Fields ParentFields { get; set; } /// - /// Gets or sets the reference to the parent component. + /// A reference to the parent component in which this component is nested. /// [CascadingParameter] protected Validation ParentValidation { get; set; }