igniteui-theming 10.1.0 → 10.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,13 +11,13 @@
11
11
  /// @type {Map}
12
12
  /// @prop {Color} background-color [inherit] - The summaries background color is inherited from the grid footer.
13
13
  /// @prop {Map} focus-background-color [color: ('gray', 100)] - The background color when a summary item is on focus.
14
- /// @prop {map} label-color [color: ('primary', 500)] - The summaries label color.
15
- /// @prop {map} label-hover-color [color: ('primary', 700)] - The summaries hover label color.
14
+ /// @prop {Map} label-color [color: ('primary', 500)] - The summaries label color.
15
+ /// @prop {Map} label-hover-color [color: ('primary', 700)] - The summaries hover label color.
16
16
  /// @prop {Color} result-color ["'currentColor'"] - The summaries value/result color.
17
- /// @prop {map} border-color [color: ('gray', 400)] - The summaries border color.
17
+ /// @prop {Map} border-color [color: ('gray', 400)] - The summaries border color.
18
18
  /// @prop {String} pinned-border-width [2px] - The border width of the summary panel.
19
19
  /// @prop {String} pinned-border-style [solid] - The border style of the summary panel.
20
- /// @prop {map} pinned-border-color [color: ('gray', 400)] - The border color of the summary panel.
20
+ /// @prop {Map} pinned-border-color [color: ('gray', 400)] - The border color of the summary panel.
21
21
  $light-grid-summary: (
22
22
  background-color: inherit,
23
23
 
@@ -69,8 +69,8 @@ $material-grid-summary: $light-grid-summary;
69
69
  /// Generates a fluent grid-summary schema.
70
70
  /// @type {Map}
71
71
  /// @prop {Map} background-color [color: ('surface')] - The summaries background color is inherited from the grid footer.
72
- /// @prop {map} border-color [color: ('gray', 100)] - The summaries border color.
73
- /// @prop {map} pinned-border-color [color: ('gray', 300)] - The border color of the summary panel.
72
+ /// @prop {Map} border-color [color: ('gray', 100)] - The summaries border color.
73
+ /// @prop {Map} pinned-border-color [color: ('gray', 300)] - The border color of the summary panel.
74
74
  /// @requires {Map} $light-grid-summary
75
75
  $fluent-grid-summary: extend(
76
76
  $light-grid-summary,
@@ -104,39 +104,30 @@ $bootstrap-grid-summary: $light-grid-summary;
104
104
 
105
105
  /// Generates an indigo grid-summary schema.
106
106
  /// @type {Map}
107
- /// @prop {Map} background-color [color: ('gray', 100)] - The summaries background color is inherited from the grid footer.
108
- /// @prop {map} label-hover-color [color: ('primary', 900)] - The summaries hover label color.
109
- /// @prop {map} border-color [color: ('primary', 50)] - The summaries border color.
110
- /// @prop {map} pinned-border-color [color: ('primary', 200)] - The border color of the summary panel.
107
+ /// @prop {Map} background-color [color: ('surface')] - The summaries background color is inherited from the grid footer.
108
+ /// @prop {Map} label-hover-color [color: ('primary', 500)] - The summaries hover label color.
109
+ /// @prop {Map} pinned-border-color [color: ('primary', 400)] - The border color of the summary panel.
111
110
  /// @requires {Map} $light-grid-summary
112
111
  $indigo-grid-summary: extend(
113
112
  $light-grid-summary,
114
113
  (
115
114
  background-color: (
116
115
  color: (
117
- 'gray',
118
- 100,
116
+ 'surface',
119
117
  ),
120
118
  ),
121
119
 
122
120
  label-hover-color: (
123
121
  color: (
124
122
  'primary',
125
- 900,
126
- ),
127
- ),
128
-
129
- border-color: (
130
- color: (
131
- 'primary',
132
- 50,
123
+ 500,
133
124
  ),
134
125
  ),
135
126
 
136
127
  pinned-border-color: (
137
128
  color: (
138
129
  'primary',
139
- 200,
130
+ 400,
140
131
  ),
141
132
  ),
142
133
  )
@@ -18,6 +18,7 @@
18
18
  /// @prop {Map} item-focus-background [color: ('gray', 100)] - The toolbar drop-down item focus background color.
19
19
  /// @prop {Map} item-focus-text-color [color: ('gray', 600)] - The toolbar drop-down item focus text color.
20
20
  /// @prop {List} size [(rem(44px), rem(52px), rem(58px))] - The size used for the grid toolbar min-height.
21
+ /// @prop {Map} border-color [color: ('gray', 300)] - The toolbar border-bottom color.
21
22
  $light-grid-toolbar: (
22
23
  background-color: (
23
24
  color: (
@@ -81,6 +82,13 @@ $light-grid-toolbar: (
81
82
  rem(58px),
82
83
  ),
83
84
  ),
85
+
86
+ border-color: (
87
+ color: (
88
+ 'gray',
89
+ 300,
90
+ ),
91
+ ),
84
92
  );
85
93
 
86
94
  /// Generates a material grid-toolbar schema.
@@ -102,29 +110,43 @@ $fluent-grid-toolbar: extend(
102
110
  );
103
111
 
104
112
  /// Generates a bootstrap grid-toolbar schema.
113
+ /// @prop {Map} border-color [color: ('gray', 100)] - The toolbar border-bottom color.
105
114
  /// @type {Map}
106
115
  /// @requires {Map} $light-grid-toolbar
107
- $bootstrap-grid-toolbar: $light-grid-toolbar;
116
+ $bootstrap-grid-toolbar: extend(
117
+ $light-grid-toolbar,
118
+ (
119
+ border-color: (
120
+ color: (
121
+ 'gray',
122
+ 100,
123
+ ),
124
+ ),
125
+ )
126
+ );
108
127
 
109
128
  /// Generates an indigo grid-toolbar schema.
110
129
  /// @type {Map}
111
- /// @prop {Map} background-color [color: ('gray', 100)] - The toolbar background color.
112
- /// @prop {Map} title-text-color [color: ('primary', 500)] - The toolbar title text color.
130
+ /// @prop {Color} background-color [transparent] - The toolbar background color.
131
+ /// @prop {Map} title-text-color [color: ('gray', 700)] - The toolbar title text color.
132
+ /// @prop {Map} border-color [color: ('gray', 900, .3)] - The toolbar border-bottom color.
113
133
  /// @requires {Map} $light-grid-toolbar
114
134
  $indigo-grid-toolbar: extend(
115
135
  $light-grid-toolbar,
116
136
  (
117
- background-color: (
137
+ background-color: transparent,
138
+
139
+ title-text-color: (
118
140
  color: (
119
141
  'gray',
120
- 100,
142
+ 700,
121
143
  ),
122
144
  ),
123
-
124
- title-text-color: (
145
+ border-color: (
125
146
  color: (
126
- 'primary',
127
- 500,
147
+ 'gray',
148
+ 900,
149
+ 0.3,
128
150
  ),
129
151
  ),
130
152
  )
@@ -19,14 +19,14 @@
19
19
  /// @prop {Map} header-border-color [color: ('gray', 400, .38)] - The color used for header borders.
20
20
  /// @prop {Map} ghost-header-text-color [color: ('gray', 700)] - The dragged header text color.
21
21
  /// @prop {Map} ghost-header-icon-color [color: ('gray', 600)] - The dragged header icon color.
22
- /// @prop {Color} ghost-header-background [color: ('gray', 50)] - The dragged header background color.
23
- /// @prop {Color} content-background [color: ('gray', 50)] - The table body background color.
22
+ /// @prop {Map} ghost-header-background [color: ('gray', 50)] - The dragged header background color.
23
+ /// @prop {Map} content-background [color: ('gray', 50)] - The table body background color.
24
24
  /// @prop {Map} content-text-color [color: ('gray', 800)] - The table body text color.
25
- /// @prop {Color} row-odd-background [color: ('gray', 50)] - The background color of odd rows.
26
- /// @prop {Color} row-even-background [color: ('gray', 50)] - The background color of even rows.
25
+ /// @prop {Map} row-odd-background [color: ('gray', 50)] - The background color of odd rows.
26
+ /// @prop {Map} row-even-background [color: ('gray', 50)] - The background color of even rows.
27
27
  /// @prop {Color} row-odd-text-color [inherit] - The text color of odd rows.
28
28
  /// @prop {Color} row-even-text-color [inherit] - The text color of even rows.
29
- /// @prop {Color} tree-selected-filtered-row-text-color [color: ('primary', 400)] - The selected filtered row text color of the tree.
29
+ /// @prop {Map} tree-selected-filtered-row-text-color [color: ('primary', 400)] - The selected filtered row text color of the tree.
30
30
  /// @prop {Map} row-selected-text-color [contrast-color: ('secondary', 50)] - The selected row text color.
31
31
  /// @prop {Map} row-hover-background [color: ('gray', 200)] - The hover row background color.
32
32
  /// @prop {Map} row-hover-text-color [contrast-color: ('gray', 200)] - The hover row text color.
@@ -38,7 +38,7 @@
38
38
  /// @prop {Map} cell-active-border-color [color: ('primary', 500)] - The active(focused) cell border color.
39
39
  /// @prop {Map} cell-selected-background [color: ('gray', 200)] - The selected cell background color.
40
40
  /// @prop {Map} cell-selected-text-color [contrast-color: ('gray', 200)] - The selected cell text color.
41
- /// @prop {Color} cell-editing-background [color: ('gray', 50)] - The editing background color of a cell.
41
+ /// @prop {Map} cell-editing-background [color: ('gray', 50)] - The editing background color of a cell.
42
42
  /// @prop {Map} cell-editing-foreground [color: ('gray', 900)] - The cell text color in edit mode
43
43
  /// @prop {Map} cell-editing-focus-foreground [color: ('gray', 900)] - The cell text color in edit mode on focus.
44
44
  /// @prop {Map} edit-mode-color [color: ('secondary', 500)] - The color applied around the row/cell when in editing mode.
@@ -68,13 +68,13 @@
68
68
  /// @prop {Map} drop-area-background [color: ('gray', 200)] - The drop area background color.
69
69
  /// @prop {Map} drop-area-on-drop-background [color: ('gray', 200)] - The drop area background on drop color.
70
70
  /// @prop {Map} tree-filtered-text-color [color: ('gray', 500)] - grouping row background color on focus.
71
- /// @prop {Color} filtering-header-background [color: ('gray', 50)] - The background color of the filtered column header.
71
+ /// @prop {Map} filtering-header-background [color: ('gray', 50)] - The background color of the filtered column header.
72
72
  /// @prop {Map} filtering-header-text-color [color: ('gray', 800)] - The text color of the filtered column header.
73
73
  /// @prop {Map} filtering-background-and [color: ('primary', 300)] - The background color of advanced filtering "AND" condition.
74
74
  /// @prop {Map} filtering-background-and--focus [color: ('primary', 700)] - The background color on focus/selected of advanced filtering "AND" condition.
75
75
  /// @prop {Map} filtering-background-or [color: ('secondary', 300)] - The background color of advanced filtering "OR" condition.
76
76
  /// @prop {Map} filtering-background-or--focus [color: ('secondary', 700)] - The background color on focus/selected of advanced filtering "OR" condition.
77
- /// @prop {Color} filtering-row-background [color: 'gray', 50)] - The background color of the filtering row.
77
+ /// @prop {Map} filtering-row-background [color: 'gray', 50)] - The background color of the filtering row.
78
78
  /// @prop {Map} filtering-row-text-color [color: ('gray', 800)] - The text color of the filtering row.
79
79
  /// @prop {Map} excel-filtering-header-foreground [color: ('gray', 700)] - The text color of the header in the excel style filtering.
80
80
  /// @prop {Map} excel-filtering-subheader-foreground [color: ('gray', 700)] - The text color of the sorting and moving headers in the excel style filtering.
@@ -643,7 +643,7 @@ $light-grid: extend(
643
643
  /// @prop {Map} header-selected-background [color: ('secondary', 100)] - The table header background color when selected (ex. column selection).
644
644
  /// @prop {Map} header-selected-text-color [contrast-color: ('secondary', 100)] - The table header text color when selected (ex. column selection).
645
645
  /// @prop {Map} row-selected-background [color: ('secondary', 50)] - The selected row background color.
646
- /// @prop {Color} tree-selected-filtered-row-text-color [color: ('secondary', 300)] - The selected filtered row text color of the tree.
646
+ /// @prop {Map} tree-selected-filtered-row-text-color [color: ('secondary', 300)] - The selected filtered row text color of the tree.
647
647
  /// @prop {Map} cell-selected-within-background [color: ('secondary', 200)] - The background of the selected cell inside a selected row/column.
648
648
  /// @prop {Map} cell-selected-within-text-color [contrast-color: ('secondary', 200)] - The color of the selected cell inside a selected row/column.
649
649
  /// @prop {Map} row-selected-hover-background [color: ('secondary', 100)] - The selected row hover background.
@@ -752,7 +752,7 @@ $material-grid: extend(
752
752
  /// @prop {List} drop-area-border-radius [(rem(2px), rem(0), rem(16px))] - The border radius used for drop-area.
753
753
  /// @prop {Map} filtering-background-or [color: ('error', .5)] - The background color of advanced filtering "OR" condition.
754
754
  /// @prop {Map} filtering-background-or--focus [color: ('error')] - The background color on focus/selected of advanced filtering "OR" condition.
755
- /// @prop {Color} tree-selected-filtered-row-text-color [color: ('primary', 400)] - The selected filtered row text color of the tree.
755
+ /// @prop {Map} tree-selected-filtered-row-text-color [color: ('primary', 400)] - The selected filtered row text color of the tree.
756
756
  /// @prop {Map} cell-selected-within-background [color: ('gray', 300)] - The background of the selected cell inside a selected row/column.
757
757
  /// @prop {Map} cell-selected-within-text-color [contrast-color: ('gray', 300)] - The color of the selected cell inside a selected row/column.
758
758
  /// @prop {Map} row-selected-hover-text-color [contrast-color: ('gray', 300)] - The selected row hover text color.
@@ -924,8 +924,8 @@ $fluent-grid: extend(
924
924
  /// Generates a bootstrap grid schema.
925
925
  /// @type {Map}
926
926
  /// @prop {Map} grouparea-background [color: 'surface'] - The grid group area background color.
927
- /// @prop {Color} header-background [color: 'surface'] - The table header background color.
928
- /// @prop {Color} header-text-color [contrast-color: 'surface'] - The table header text color.
927
+ /// @prop {Map} header-background [color: 'surface'] - The table header background color.
928
+ /// @prop {Map} header-text-color [contrast-color: 'surface'] - The table header text color.
929
929
  /// @prop {Map} header-selected-background [color: ('primary', 50)] - The table header background color when selected (ex. column selection).
930
930
  /// @prop {Map} header-selected-text-color [contrast-color: ('primary', 50)] - The table header text color when selected (ex. column selection).
931
931
  /// @prop {Map} row-highlight [color: ('primary', 500)] - The grid row highlight color.
@@ -1056,49 +1056,75 @@ $bootstrap-grid: extend(
1056
1056
 
1057
1057
  /// Generates an indigo grid schema.
1058
1058
  /// @type {Map}
1059
- /// @prop {Color} header-text-color [color: 'primary'] - The table header text color.
1059
+ /// @prop {Map} content-background [color: ('surface')] - The table body background color.
1060
+ /// @prop {Map} header-background [color: ('surface')] - The table header background color.
1061
+ /// @prop {Map} header-text-color [color: ('gray', 800)] - The table header text color.
1060
1062
  /// @prop {Map} header-selected-background [color: ('primary', 100)] - The table header background color when selected (ex. column selection).
1061
1063
  /// @prop {Map} header-selected-text-color [color: 'primary'] - The table header text color when selected (ex. column selection).
1062
- /// @prop {Map} header-border-color [color: ('primary', 500, .24)] - The color used for header borders.
1064
+ /// @prop {Map} header-border-color [color: ('gray', 400)] - The color used for header borders.
1063
1065
  /// @prop {Map} filtering-header-text-color [color: ('primary', 900)] - The text color of the filtered column header.
1064
- /// @prop {Map} filtering-background-or [color: ('warn', 500, .72)] - The background color of advanced filtering "OR" condition.
1065
- /// @prop {Map} filtering-background-or--focus [color: 'warn'] - The background color on focus/selected of advanced filtering "OR" condition.
1066
- /// @prop {Map} edited-row-indicator [color: 'primary'] - The indicator's color of edited row.
1067
- /// @prop {Map} cell-selected-background [color: ('primary', 100)] - The selected cell background color.
1068
- /// @prop {Color} ghost-header-background [color: 'primary'] - The dragged header background color.
1066
+ /// @prop {Map} filtering-row-background [contrast-color: ('gray', 900)] - The background color of the filtering row.
1067
+ /// @prop {Map} filtering-background-and [color: ('primary', 400)] - The background color of advanced filtering "AND" condition.
1068
+ /// @prop {Map} filtering-background-and--focus [color: ('primary', 300)] - The background color on focus/selected of advanced filtering "AND" condition.
1069
+ /// @prop {Map} filtering-background-or [color: ('success', 500)] - The background color of advanced filtering "OR" condition.
1070
+ /// @prop {Map} filtering-background-or--focus [color: ('success', 400)] - The background color on focus/selected of advanced filtering "OR" condition.
1071
+ /// @prop {Map} edited-row-indicator [color: ('primary', 400)] - The indicator's color of edited row.
1072
+ /// @prop {Map} cell-selected-background [color: ('gray', 200)] - The selected cell background color.
1073
+ /// @prop {Map} ghost-header-background [color: 'primary'] - The dragged header background color.
1069
1074
  /// @prop {Map} ghost-header-text-color [contrast-color: 'primary'] - The dragged header text color.
1070
1075
  /// @prop {Map} ghost-header-icon-color [contrast-color: 'primary'] - The dragged header icon color.
1071
- /// @prop {Map} row-border-color [color: ('primary', 50)] - The row bottom border color.
1076
+ /// @prop {Map} row-odd-background [color: ('surface')] - The background color of odd rows.
1077
+ /// @prop {Map} row-even-background [color: ('surface')] - The background color of even rows.
1078
+ /// @prop {Map} row-odd-text-color [color: ('gray', 800)] - The text color of odd rows.
1079
+ /// @prop {Map} row-even-text-color [color: ('gray', 800)] - The text color of even rows.
1080
+ /// @prop {Map} row-border-color [color: ('gray', 300)] - The row bottom border color.
1072
1081
  /// @prop {Map} row-highlight [color: 'primary'] - The grid row highlight color.
1073
1082
  /// @prop {Map} row-hover-background [color: ('primary', 50)] - The hover row background color.
1074
- /// @prop {Map} sorted-header-icon-color [color: 'primary'] - The sorted table header icon color.
1083
+ /// @prop {Map} sorted-header-icon-color [color: ('primary', 400)] - The sorted table header icon color.
1075
1084
  /// @prop {Map} sortable-header-icon-hover-color [color: 'primary'] - The icon color on hover in grid header when the column is sortable.
1076
- /// @prop {Map} row-selected-background [color: ('primary', 100)] - The selected row background color.
1085
+ /// @prop {Map} row-selected-background [color: ('primary', 50)] - The selected row background color.
1077
1086
  /// @prop {Map} row-selected-hover-background [color: ('primary', 100)] - The selected row hover background.
1078
- /// @prop {Map} pinned-border-color [color: ('primary', 200)] - The color of the pinned border.
1079
- /// @prop {Map} resize-line-color [color: 'primary'] - The table header resize line color.
1080
- /// @prop {Map} drop-indicator-color [color: 'primary'] - The color of the drop indicator.
1087
+ /// @prop {Map} pinned-border-color [color: ('gray', 400)] - The color of the pinned border.
1088
+ /// @prop {Map} resize-line-color [color: ('primary', 400)] - The table header resize line color.
1089
+ /// @prop {Map} drop-indicator-color [color: ('primary', 400)] - The color of the drop indicator.
1081
1090
  /// @prop {Map} edit-mode-color [color: 'primary'] - The text color in edit mode.
1082
1091
  /// @prop {Map} grouparea-color [color: 'primary'] - The grid group area color.
1083
- /// @prop {Map} drop-area-text-color [contrast-color: ('gray', 200)] - The drop area text color.
1092
+ /// @prop {Map} drop-area-text-color [color: ('gray', 600)] - The drop area text color.
1084
1093
  /// @prop {Map} drop-area-icon-color [contrast-color: ('gray', 200)] - The drop area icon color.
1085
- /// @prop {Map} root-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the footer.
1094
+ /// @prop {Map} root-summaries-background [color: ('surface')] - The background color of the summary groups located the footer.
1095
+ /// @prop {Map} root-summaries-text-color [color: ('gray', 800)] - The text color of the summary groups located the footer.
1086
1096
  /// @prop {Map} group-row-background [color: ('gray', 100)] - The grid group row background color.
1087
1097
  /// @prop {Map} group-row-selected-background [color: ('gray', 100)] - The drop area background on drop color.
1088
1098
  /// @prop {Map} group-count-background [color: ('primary', 300)] - The grid group row cont badge background color.
1089
1099
  /// @prop {Map} group-count-text-color [contrast-color: ('primary', 500)] - The grid group row cont badge text color.
1090
- /// @prop {Map} expand-icon-color [color: ('primary', 200)] - The grid row expand icon color.
1100
+ /// @prop {Map} expand-icon-color [color: ('gray', 600)] - The grid row expand icon color.
1101
+ /// @prop {Map} cell-selected-text-color [color: ('gray', 800)] - The selected cell text color.
1091
1102
  /// @prop {Map} cell-selected-within-background [color: ('primary', 200)] - The background of the selected cell inside a selected row/column.
1092
1103
  /// @prop {Map} cell-selected-within-text-color [contrast-color: ('primary', 200)] - The color of the selected cell inside a selected row/column.
1104
+ /// @prop {Map} cell-active-border-color [color: ('primary', 400)] - The active(focused) cell border color.
1105
+ /// @prop {Map} cell-editing-background [color: 'surface'] - The background for the cell in editing mode.
1093
1106
  /// @prop {Map} row-selected-hover-text-color [contrast-color: ('primary', 50)] - The selected row hover text color.
1107
+ /// @prop {Map} active-expand-icon-color [color: ('gray', 600)] - The drop area background on drop color.
1094
1108
  /// @requires {Map} $light-grid
1095
1109
  $indigo-grid: extend(
1096
1110
  $light-grid,
1097
1111
  (
1112
+ content-background: (
1113
+ color: (
1114
+ 'surface',
1115
+ ),
1116
+ ),
1117
+
1118
+ header-background: (
1119
+ color: (
1120
+ 'surface',
1121
+ ),
1122
+ ),
1123
+
1098
1124
  header-text-color: (
1099
1125
  color: (
1100
- 'primary',
1101
- 500,
1126
+ 'gray',
1127
+ 800,
1102
1128
  ),
1103
1129
  ),
1104
1130
 
@@ -1118,9 +1144,8 @@ $indigo-grid: extend(
1118
1144
 
1119
1145
  header-border-color: (
1120
1146
  color: (
1121
- 'primary',
1122
- 500,
1123
- 0.24,
1147
+ 'gray',
1148
+ 400,
1124
1149
  ),
1125
1150
  ),
1126
1151
 
@@ -1131,29 +1156,52 @@ $indigo-grid: extend(
1131
1156
  ),
1132
1157
  ),
1133
1158
 
1159
+ filtering-row-background: (
1160
+ contrast-color: (
1161
+ 'gray',
1162
+ 900,
1163
+ ),
1164
+ ),
1165
+
1166
+ filtering-background-and: (
1167
+ color: (
1168
+ 'primary',
1169
+ 400,
1170
+ ),
1171
+ ),
1172
+
1173
+ filtering-background-and--focus: (
1174
+ color: (
1175
+ 'primary',
1176
+ 300,
1177
+ ),
1178
+ ),
1179
+
1134
1180
  filtering-background-or: (
1135
1181
  color: (
1136
- 'warn',
1182
+ 'success',
1137
1183
  500,
1138
- 0.72,
1139
1184
  ),
1140
1185
  ),
1141
1186
 
1142
1187
  filtering-background-or--focus: (
1143
- color: 'warn',
1188
+ color: (
1189
+ 'success',
1190
+ 400,
1191
+ ),
1144
1192
  ),
1145
1193
 
1146
1194
  edited-row-indicator: (
1147
1195
  color: (
1148
1196
  'primary',
1149
- 500,
1197
+ 400,
1150
1198
  ),
1151
1199
  ),
1152
1200
 
1153
1201
  cell-selected-background: (
1154
1202
  color: (
1155
- 'primary',
1156
- 100,
1203
+ 'gray',
1204
+ 200,
1157
1205
  ),
1158
1206
  ),
1159
1207
 
@@ -1165,9 +1213,9 @@ $indigo-grid: extend(
1165
1213
  ),
1166
1214
 
1167
1215
  cell-selected-text-color: (
1168
- contrast-color: (
1169
- 'primary',
1170
- 100,
1216
+ color: (
1217
+ 'gray',
1218
+ 800,
1171
1219
  ),
1172
1220
  ),
1173
1221
 
@@ -1194,8 +1242,8 @@ $indigo-grid: extend(
1194
1242
 
1195
1243
  row-border-color: (
1196
1244
  color: (
1197
- 'primary',
1198
- 50,
1245
+ 'gray',
1246
+ 300,
1199
1247
  ),
1200
1248
  ),
1201
1249
 
@@ -1216,7 +1264,7 @@ $indigo-grid: extend(
1216
1264
  sorted-header-icon-color: (
1217
1265
  color: (
1218
1266
  'primary',
1219
- 500,
1267
+ 400,
1220
1268
  ),
1221
1269
  ),
1222
1270
 
@@ -1230,24 +1278,28 @@ $indigo-grid: extend(
1230
1278
  row-selected-background: (
1231
1279
  color: (
1232
1280
  'primary',
1233
- 100,
1281
+ 50,
1234
1282
  ),
1235
1283
  ),
1236
1284
 
1237
1285
  cell-selected-within-background: (
1238
1286
  color: (
1239
1287
  'primary',
1240
- 200,
1288
+ 100,
1241
1289
  ),
1242
1290
  ),
1243
1291
 
1244
1292
  cell-selected-within-text-color: (
1245
1293
  contrast-color: (
1246
1294
  'primary',
1247
- 200,
1295
+ 100,
1248
1296
  ),
1249
1297
  ),
1250
1298
 
1299
+ cell-editing-background: (
1300
+ color: 'surface',
1301
+ ),
1302
+
1251
1303
  row-selected-hover-background: (
1252
1304
  color: (
1253
1305
  'primary',
@@ -1264,22 +1316,22 @@ $indigo-grid: extend(
1264
1316
 
1265
1317
  pinned-border-color: (
1266
1318
  color: (
1267
- 'primary',
1268
- 300,
1319
+ 'gray',
1320
+ 400,
1269
1321
  ),
1270
1322
  ),
1271
1323
 
1272
1324
  resize-line-color: (
1273
1325
  color: (
1274
1326
  'primary',
1275
- 500,
1327
+ 400,
1276
1328
  ),
1277
1329
  ),
1278
1330
 
1279
1331
  drop-indicator-color: (
1280
1332
  color: (
1281
1333
  'primary',
1282
- 500,
1334
+ 400,
1283
1335
  ),
1284
1336
  ),
1285
1337
 
@@ -1298,9 +1350,9 @@ $indigo-grid: extend(
1298
1350
  ),
1299
1351
 
1300
1352
  drop-area-text-color: (
1301
- contrast-color: (
1353
+ color: (
1302
1354
  'gray',
1303
- 200,
1355
+ 600,
1304
1356
  ),
1305
1357
  ),
1306
1358
 
@@ -1312,9 +1364,15 @@ $indigo-grid: extend(
1312
1364
  ),
1313
1365
 
1314
1366
  root-summaries-background: (
1367
+ color: (
1368
+ 'surface',
1369
+ ),
1370
+ ),
1371
+
1372
+ root-summaries-text-color: (
1315
1373
  color: (
1316
1374
  'gray',
1317
- 100,
1375
+ 800,
1318
1376
  ),
1319
1377
  ),
1320
1378
 
@@ -1349,7 +1407,47 @@ $indigo-grid: extend(
1349
1407
  expand-icon-color: (
1350
1408
  color: (
1351
1409
  'primary',
1352
- 200,
1410
+ 600,
1411
+ ),
1412
+ ),
1413
+
1414
+ cell-active-border-color: (
1415
+ color: (
1416
+ 'primary',
1417
+ 400,
1418
+ ),
1419
+ ),
1420
+
1421
+ row-odd-background: (
1422
+ color: (
1423
+ 'surface',
1424
+ ),
1425
+ ),
1426
+
1427
+ row-even-background: (
1428
+ color: (
1429
+ 'surface',
1430
+ ),
1431
+ ),
1432
+
1433
+ row-odd-text-color: (
1434
+ color: (
1435
+ 'gray',
1436
+ 800,
1437
+ ),
1438
+ ),
1439
+
1440
+ row-even-text-color: (
1441
+ color: (
1442
+ 'gray',
1443
+ 800,
1444
+ ),
1445
+ ),
1446
+
1447
+ active-expand-icon-color: (
1448
+ color: (
1449
+ 'gray',
1450
+ 600,
1353
1451
  ),
1354
1452
  ),
1355
1453
  )
@@ -12,7 +12,7 @@
12
12
  /// @prop {Map} text-color [color: ('gray', 800)] - The text color.
13
13
  /// @prop {Map} background-color [color: ('gray', 100)] - The background color of the paging panel.
14
14
  /// @prop {Map} border-color [color: ('gray', 200)] - The border color of the paging panel.
15
- /// @prop {List} size [(rem(40px), rem(48px), rem(56px))] - The size used for the paginator.
15
+ /// @prop {List} size [(rem(44px), rem(48px), rem(56px))] - The size used for the paginator.
16
16
  $light-pagination: (
17
17
  text-color: (
18
18
  color: (
@@ -34,6 +34,7 @@ $light-pagination: (
34
34
  200,
35
35
  ),
36
36
  ),
37
+
37
38
  size: (
38
39
  sizable: (
39
40
  rem(44px),
@@ -87,23 +88,24 @@ $bootstrap-pagination: extend(
87
88
 
88
89
  /// Generates an indigo pagination schema.
89
90
  /// @type {Map}
90
- /// @prop {Map} text-color [color: ('gray', 700)] - The text color.
91
- /// @prop {Map} border-color [color: ('gray', 100)] - The border color of the paging panel.
91
+ /// @prop {Map} background-color [contrast-color: ('gray', 900)] - The background color of the paging panel.
92
+ /// @prop {Map} border-color [color: ('gray', 900, .3)] - The border color of the paging panel.
92
93
  /// @requires {Map} $light-pagination
93
94
  $indigo-pagination: extend(
94
95
  $light-pagination,
95
96
  (
96
- text-color: (
97
- color: (
97
+ background-color: (
98
+ contrast-color: (
98
99
  'gray',
99
- 700,
100
+ 900,
100
101
  ),
101
102
  ),
102
103
 
103
104
  border-color: (
104
105
  color: (
105
106
  'gray',
106
- 100,
107
+ 900,
108
+ 0.3,
107
109
  ),
108
110
  ),
109
111
  )