Skip to content

Commit

Permalink
docs(Grid): Fix missing sassdocs @param
Browse files Browse the repository at this point in the history
Closes #5432
  • Loading branch information
MPopov committed Jul 29, 2019
1 parent 592011f commit dc74ec8
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@
/// @param {Color} $body-summaries-text-color [null] - The text color of the summary results located the body.
/// @param {Color} $root-summaries-background [null] - The background color of the summary groups located the footer.
/// @param {Color} $root-summaries-text-color [null] - The text color of the summary results located the footer.
/// @param {Color} sortable-header-icon-hover-color [null] - The icon color on hover in grid header when the column is sortable.

/// @param {box-shadow} $grid-shadow [null] - The shadow of the grid.
/// @param {box-shadow} $drag-shadow [null] - The shadow used for movable elements (ex. column headers).
/// @param {color} $row-drag-color [null] - The row drag handle color.
Expand Down Expand Up @@ -175,6 +177,7 @@
$row-ghost-background: null,
$row-drag-color: null,
$drop-area-border-radius: null,
$sortable-header-icon-hover-color: null
) {
$name: 'igx-grid';
$grid-schema: map-get($schema, $name);
Expand Down Expand Up @@ -453,7 +456,8 @@
drag-shadow: $drag-shadow,
row-ghost-background: $row-ghost-background,
row-drag-color: $row-drag-color,
drop-area-border-radius: $drop-area-border-radius
drop-area-border-radius: $drop-area-border-radius,
sortable-header-icon-hover-color: $sortable-header-icon-hover-color
));
}

Expand Down

0 comments on commit dc74ec8

Please sign in to comment.