Skip to content

Commit 27be555

Browse files
authored
Merge pull request #5381 from IgniteUI/fix-sass-docs
docs(theme): fix documentation errors
2 parents 9d39cb5 + ad55e82 commit 27be555

File tree

2 files changed

+26
-9
lines changed

2 files changed

+26
-9
lines changed

projects/igniteui-angular/src/lib/core/styles/components/card/_card-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/// $content-text-color: rgba(0, 0, 0, .8)
3636
/// );
3737
/// // Pass the theme to the igx-card component mixin
38-
/// @include igx-calendar($my-card-theme);
38+
/// @include igx-card($my-card-theme);
3939
@function igx-card-theme(
4040
$palette: $default-palette,
4141
$schema: $light-schema,

projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@
1919
///
2020
/// @param {Color} $sorted-header-icon-color [null] - The sort icon color when sorted.
2121
///
22+
/// @param {Color} $content-background [null] - The table body background color.
23+
/// @param {Color} $content-text-color [null] - The table body text color.
24+
///
2225
/// @param {Color} $ghost-header-text-color [null] - The dragged header text color.
2326
/// @param {Color} $ghost-header-icon-color [null] - The dragged header icon color.
2427
/// @param {Color} $ghost-header-background [null] - The dragged header background color.
25-
/// @param {Color} $content-background [null] - The table body background color.
26-
/// @param {Color} $content-text-color [null] - The table body text color.
28+
///
2729
/// @param {Color} $row-odd-background [null] - The background color of odd rows.
2830
/// @param {Color} $row-even-background [null] - The background color of even rows.
2931
/// @param {Color} $row-odd-text-color [null] - The text color of odd rows.
@@ -33,50 +35,64 @@
3335
/// @param {Color} $row-hover-background [null] - The hover row background color.
3436
/// @param {Color} $row-hover-text-color [null] - The hover row text color.
3537
/// @param {Color} $row-border-color [null] - The row bottom border color.
36-
/// @param {Color} $row-highlight [null] - The grid row highlight indication color.
38+
///
3739
/// @param {String} $pinned-border-width [null] - The border width of the pinned border.
3840
/// @param {String} $pinned-border-style [null] - The CSS border style of the pinned border.
3941
/// @param {Color} $pinned-border-color [null] - The color of the pinned border.
42+
///
4043
/// @param {Color} $cell-active-border-color [null] - The border color for the currently active(focused) cell.
4144
/// @param {Color} $cell-selected-background [null] - The selected cell background color.
4245
/// @param {Color} $cell-selected-text-color [null] - The selected cell text color.
46+
/// @param {Color} $cell-editing-background [null] - The background color of the cell being edited.
47+
/// @param {Color} $cell-edited-value-color [null] - The text color of a sell that has been edited.
48+
///
49+
/// @param {Color} $edit-mode-color [null] - The color applied around the row when in editing mode.
50+
/// @param {Color} $edited-row-indicator [null] - The color applied to the edited row indicator line.
51+
///
4352
/// @param {Color} $resize-line-color [null] - The table header resize line color.
53+
/// @param {Color} $drop-indicator-color [null] - The color applied to the line between the columns when dragging a column.
4454
///
4555
/// @param {Color} $grouparea-background [null] - The grid group area background color.
4656
///
4757
/// @param {Color} $group-row-background [null] - The grid group row background color.
4858
/// @param {Color} $group-row-selected-background [null] - The drop area background on drop color.
49-
/// @param {Color} $active-expand-icon-color [null] - The drop area background on drop color.
50-
/// @param {Color} $active-expand-icon-hover-color [null] - The drop area background on drop color.
5159
/// @param {Color} $group-label-column-name-text [null] - The grid group row column name text color.
5260
/// @param {Color} $group-label-icon [null] - The grid group row icon color.
5361
/// @param {Color} $group-label-text [null] - The grid group row text color.
5462
///
5563
/// @param {Color} $expand-all-icon-color [null] - The grid header expand all group rows icon color.
5664
/// @param {Color} $expand-all-icon-hover-color [null] - The grid header expand all group rows icon hover color.
65+
///
5766
/// @param {Color} $expand-icon-color [null] - The grid row expand icon color.
5867
/// @param {Color} $expand-icon-hover-color [null] - The grid row expand icon hover color.
68+
///
69+
/// @param {Color} $active-expand-icon-color [null] - The drop area background on drop color.
70+
/// @param {Color} $active-expand-icon-hover-color [null] - The drop area background on drop color.
71+
///
5972
/// @param {Color} $group-count-background [null] - The grid group row cont badge background color.
6073
/// @param {Color} $group-count-text-color [null] - The grid group row cont badge text color.
74+
///
6175
/// @param {Color} $drop-area-text-color [null] - The drop area text color.
6276
/// @param {Color} $drop-area-icon-color [null] - The drop area icon color.
6377
/// @param {Color} $drop-area-background [null] - The drop area background color.
6478
/// @param {Color} $drop-area-on-drop-background [null] - The drop area background on drop color.
65-
/// @param {Color} $tree-filtered-text-color [null] - grouping row background color on focus.
6679
///
6780
/// @param {Color} $filtering-header-background [null] - The background color of the filtered column header.
6881
/// @param {Color} $filtering-header-text-color [null] - The text color color of the filtered column header.
6982
/// @param {Color} $filtering-row-background [null] - The background color of the filtering row.
7083
/// @param {Color} $filtering-row-text-color [null] - The text-color color of the filtering row.
84+
/// @param {Color} $tree-filtered-text-color [null] - grouping row background color on focus.
7185
///
7286
/// @param {Color} $body-summaries-background [null] - The background color of the summary groups located the body.
7387
/// @param {Color} $body-summaries-text-color [null] - The text color of the summary results located the body.
7488
/// @param {Color} $root-summaries-background [null] - The background color of the summary groups located the footer.
7589
/// @param {Color} $root-summaries-text-color [null] - The text color of the summary results located the footer.
90+
///
91+
/// @param {Color} $row-highlight [null] - The grid row highlight indication color.
7692
/// @param {box-shadow} $grid-shadow [null] - The shadow of the grid.
7793
/// @param {box-shadow} $drag-shadow [null] - The shadow used for movable elements (ex. column headers).
78-
/// @param {color} $row-drag-color [null] - The row drag handle color.
7994
/// @param {color} $row-ghost-background [null] - The dragged row background color.
95+
/// @param {color} $row-drag-color [null] - The row drag handle color.
8096
/// @param {border-radius} $drop-area-border-radius [null] - The border radius used for column drop area.
8197
///
8298
/// @requires $default-palette
@@ -91,6 +107,7 @@
91107
@function igx-grid-theme(
92108
$palette: $default-palette,
93109
$schema: $light-schema,
110+
$elevations: $elevations,
94111
95112
$header-background: null,
96113
$header-text-color: null,
@@ -125,10 +142,10 @@
125142
$cell-selected-background: null,
126143
$cell-selected-text-color: null,
127144
$cell-editing-background: null,
145+
$cell-edited-value-color: null,
128146
129147
$edit-mode-color: null,
130148
$edited-row-indicator: null,
131-
$cell-edited-value-color: null,
132149
133150
$resize-line-color: null,
134151
$drop-indicator-color: null,

0 commit comments

Comments
 (0)