igniteui-theming 16.1.0 → 17.0.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "16.1.0",
3
+ "version": "17.0.0",
4
4
  "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -9,10 +9,26 @@
9
9
 
10
10
  /// Generates a dark material grid-summary schema.
11
11
  /// @type {Map}
12
- /// @requires $material-grid-summary
12
+ /// @prop {Map} background-color [color: ('gray', 50)] - The summaries background color.
13
+ /// @prop {Map} result-color [contrast-color: ('gray', 50)] - The summaries value/result color.
14
+ /// @requires {Map} $material-grid-summary
13
15
  $dark-material-grid-summary: extend(
14
16
  $material-grid-summary,
15
17
  (
18
+ background-color: (
19
+ color: (
20
+ 'gray',
21
+ 50,
22
+ ),
23
+ ),
24
+
25
+ result-color: (
26
+ contrast-color: (
27
+ 'gray',
28
+ 50,
29
+ ),
30
+ ),
31
+
16
32
  _meta: (
17
33
  theme: 'material',
18
34
  variant: 'dark',
@@ -22,7 +38,7 @@ $dark-material-grid-summary: extend(
22
38
 
23
39
  /// Generates a dark fluent grid-summary schema.
24
40
  /// @type {Map}
25
- /// @requires $fluent-grid-summary
41
+ /// @requires {Map} $fluent-grid-summary
26
42
  $dark-fluent-grid-summary: extend(
27
43
  $fluent-grid-summary,
28
44
  (
@@ -35,7 +51,9 @@ $dark-fluent-grid-summary: extend(
35
51
 
36
52
  /// Generates a dark bootstrap grid-summary schema.
37
53
  /// @type {Map}
38
- /// @requires $bootstrap-grid-summary
54
+ /// @prop {Map} background-color [color: ('gray', 100)] - The summaries background color.
55
+ /// @prop {Map} result-color [contrast-color: ('gray', 100)] - The summaries value/result color.
56
+ /// @requires {Map} $bootstrap-grid-summary
39
57
  $dark-bootstrap-grid-summary: extend(
40
58
  $bootstrap-grid-summary,
41
59
  (
@@ -45,6 +63,14 @@ $dark-bootstrap-grid-summary: extend(
45
63
  100,
46
64
  ),
47
65
  ),
66
+
67
+ result-color: (
68
+ contrast-color: (
69
+ 'gray',
70
+ 100,
71
+ ),
72
+ ),
73
+
48
74
  _meta: (
49
75
  theme: 'bootstrap',
50
76
  variant: 'dark',
@@ -54,16 +80,23 @@ $dark-bootstrap-grid-summary: extend(
54
80
 
55
81
  /// Generates a dark indigo grid-summary schema.
56
82
  /// @type {Map}
83
+ /// @prop {Map} background-color [color: ('surface')] - The summaries background color.
57
84
  /// @prop {Map} focus-background-color [color: ('gray', 100)] - The background color when a summary item is on focus.
58
85
  /// @prop {Map} label-color [color: ('primary', 200)] - The summaries label color.
59
86
  /// @prop {Map} label-hover-color [color: ('primary', 200)] - The summaries hover label color.
60
87
  /// @prop {Map} result-color [contrast-color: 'surface'] - The summaries value/result color.
61
88
  /// @prop {Map} border-color [color: ('gray', 200)] - The summaries border color.
62
89
  /// @prop {Map} pinned-border-color [color: ('gray', 200)] - The border color of the summary panel.
63
- /// @requires $indigo-grid-summary
90
+ /// @requires {Map} $indigo-grid-summary
64
91
  $dark-indigo-grid-summary: extend(
65
92
  $indigo-grid-summary,
66
93
  (
94
+ background-color: (
95
+ color: (
96
+ 'surface',
97
+ ),
98
+ ),
99
+
67
100
  focus-background-color: (
68
101
  color: (
69
102
  'gray',
@@ -31,10 +31,6 @@
31
31
  /// @prop {Map} grouparea-background [color: ('gray', 50)] - The grid group area background color.
32
32
  /// @prop {Map} group-row-background [color: ('gray', 50)] - The grid group row background color.
33
33
  /// @prop {Map} group-row-selected-background [color: ('gray', 100)] - The drop area background on drop color.
34
- /// @prop {Map} body-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the body.
35
- /// @prop {Map} body-summaries-text-color [contrast-color: ('gray', 100)] - The text color of the summary groups located the body.
36
- /// @prop {Map} root-summaries-background [color: ('gray', 50)] - The background color of the summary groups located the footer.
37
- /// @prop {Map} root-summaries-text-color [contrast-color: ('gray', 200)] - The text color of the summary groups located the footer.
38
34
  $base-dark-grid: (
39
35
  content-background: (
40
36
  color: 'surface',
@@ -189,44 +185,24 @@ $base-dark-grid: (
189
185
  100,
190
186
  ),
191
187
  ),
192
-
193
- body-summaries-background: (
194
- color: (
195
- 'gray',
196
- 50,
197
- ),
198
- ),
199
-
200
- body-summaries-text-color: (
201
- contrast-color: (
202
- 'gray',
203
- 50,
204
- ),
205
- ),
206
-
207
- root-summaries-background: (
208
- color: (
209
- 'gray',
210
- 50,
211
- ),
212
- ),
213
-
214
- root-summaries-text-color: (
215
- contrast-color: (
216
- 'gray',
217
- 50,
218
- ),
219
- ),
220
188
  );
221
189
 
222
190
  /// Generates a dark material grid schema based on a mix of $material-grid and $base-dark-grid.
223
191
  /// @type {Map}
192
+ /// @prop {Map} summaries-patch-background [color: ('gray', 50)] - The leading summaries patch backround. Used in hierarchical grids.
224
193
  /// @requires $material-grid
225
194
  /// @requires $base-dark-grid
226
195
  $dark-material-grid: extend(
227
196
  $material-grid,
228
197
  $base-dark-grid,
229
198
  (
199
+ summaries-patch-background: (
200
+ color: (
201
+ 'gray',
202
+ 50,
203
+ ),
204
+ ),
205
+
230
206
  _meta: (
231
207
  theme: 'material',
232
208
  variant: 'dark',
@@ -330,20 +306,13 @@ $dark-fluent-grid: extend(
330
306
  /// @prop {Map} drop-area-background [color: ('gray', 100, .5)] - The drop area background color.
331
307
  /// @prop {Map} grouparea-background [color: 'surface'] - The grid group area background color.
332
308
  /// @prop {Map} grouparea-color [contrast-color: 'surface'] - The grid group area color.
333
- /// @prop {Map} root-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the footer.
309
+ /// @prop {Map} summaries-patch-background [color: ('gray', 100)] - The leading summaries patch backround. Used in hierarchical grids.
334
310
  /// @requires $bootstrap-grid
335
311
  /// @requires $base-dark-grid
336
312
  $dark-bootstrap-grid: extend(
337
313
  $bootstrap-grid,
338
314
  $base-dark-grid,
339
315
  (
340
- root-summaries-background: (
341
- color: (
342
- 'gray',
343
- 100,
344
- ),
345
- ),
346
-
347
316
  group-row-background: (
348
317
  color: 'surface',
349
318
  ),
@@ -373,6 +342,14 @@ $dark-bootstrap-grid: extend(
373
342
  0.5,
374
343
  ),
375
344
  ),
345
+
346
+ summaries-patch-background: (
347
+ color: (
348
+ 'gray',
349
+ 100,
350
+ ),
351
+ ),
352
+
376
353
  _meta: (
377
354
  theme: 'bootstrap',
378
355
  variant: 'dark',
@@ -408,10 +385,6 @@ $dark-bootstrap-grid: extend(
408
385
  /// @prop {Map} cell-selected-within-text-color [contrast-color: ('primary', 900)] - The color of the selected cell inside a selected row/column.
409
386
  /// @prop {Map} cell-selected-background [color: ('primary', 900)] - The selected cell background color.
410
387
  /// @prop {Map} cell-selected-text-color [contrast-color: ('primary', 900)] - The selected cell text color.
411
- /// @prop {Map} root-summaries-background [color: 'surface'] - The background color of the summary groups located the footer.
412
- /// @prop {Map} root-summaries-text-color [contrast-color: 'surface'] - The text color of the summary groups located the footer.
413
- /// @prop {Map} body-summaries-background [color: 'surface'] - The background color of the summary groups located the body.
414
- /// @prop {Map} body-summaries-text-color [contrast-color: 'surface'] - The text color of the summary groups located the body.
415
388
  /// @prop {Map} expand-icon-color [contrast-color: ('gray', 50, .8)] - The grid row expand icon color.
416
389
  /// @prop {Map} expand-icon-hover-color [contrast-color: ('gray', 50)] - The grid row expand icon hover color.
417
390
  /// @prop {Map} active-expand-icon-color [contrast-color: ('gray', 50, .8)] - The drop area background on drop color.
@@ -633,22 +606,6 @@ $dark-indigo-grid: extend(
633
606
  ),
634
607
  ),
635
608
 
636
- root-summaries-background: (
637
- color: 'surface',
638
- ),
639
-
640
- root-summaries-text-color: (
641
- contrast-color: 'surface',
642
- ),
643
-
644
- body-summaries-background: (
645
- color: 'surface',
646
- ),
647
-
648
- body-summaries-text-color: (
649
- contrast-color: 'surface',
650
- ),
651
-
652
609
  expand-icon-color: (
653
610
  contrast-color: (
654
611
  'gray',
@@ -114,6 +114,7 @@ $light-checkbox: (
114
114
  /// @prop {Map} fill-color [color: ('secondary', 500)] - The checked border and fill colors.
115
115
  /// @prop {Map} fill-color-hover [color: ('secondary', 500)] - The checked border and fill colors on hover.
116
116
  /// @prop {Color} focus-outline-color [transparent] - The focus outlined color.
117
+ /// @prop {Map} focus-border-color [color: ('gray', 600)] - The focus border color.
117
118
  /// @prop {Map} error-color-hover [color: ('error', 500)] - The border and fill colors in invalid state on hover.
118
119
  /// @prop {Map} typography [label: (value: 'subtitle-1')] - The typography styles used for the component.
119
120
  /// @requires {Map} $light-checkbox
@@ -157,6 +158,13 @@ $material-checkbox: extend(
157
158
 
158
159
  focus-outline-color: transparent,
159
160
 
161
+ focus-border-color: (
162
+ color: (
163
+ 'gray',
164
+ 600,
165
+ ),
166
+ ),
167
+
160
168
  error-color-hover: (
161
169
  color: (
162
170
  'error',
@@ -184,6 +192,7 @@ $material-checkbox: extend(
184
192
  /// @prop {Map} empty-color-hover [color: ('gray', 900)] - The unchecked border color on hover.
185
193
  /// @prop {Map} fill-color-hover [color: ('primary', 800)] - The checked border and fill colors on hover.
186
194
  /// @prop {Map} focus-outline-color [color: ('gray', 700)] - The focus outlined color.
195
+ /// @prop {Map} focus-border-color [color: ('gray', 900)] - The focus border color.
187
196
  /// @prop {Map} error-color-hover [color: ('error', 700)] - The border and fill colors in invalid state on hover.
188
197
  /// @prop {List} border-radius-ripple [(rem(2px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
189
198
  /// @requires {Map} $light-checkbox
@@ -202,6 +211,12 @@ $fluent-checkbox: extend(
202
211
  700,
203
212
  ),
204
213
  ),
214
+ focus-border-color: (
215
+ color: (
216
+ 'gray',
217
+ 900,
218
+ ),
219
+ ),
205
220
  empty-color: (
206
221
  color: (
207
222
  'gray',
@@ -251,6 +266,7 @@ $fluent-checkbox: extend(
251
266
  /// @prop {Map} disabled-color [color: ('gray', 300)] - The disabled border color.
252
267
  /// @prop {Map} disabled-tick-color [contrast-color: ('primary', 900)] - The checked mark color in disabled state.
253
268
  /// @prop {Map} disabled-indeterminate-color [color: ('primary', 200)] - The disabled border and fill colors.
269
+ /// @prop {Map} focus-border-color [color: ('primary', 200)] - The focus border color.
254
270
  /// @prop {Map} focus-outline-color [color: ('primary', 200, 0.5)] - The focus outlined color.
255
271
  /// @prop {Map} focus-outline-color-error [color: ('error', 200, 0.5)] - The focus outlined color for focused invalid state.
256
272
  /// @prop {Map} error-color-hover [color: ('error', 600)] - The focus outlined color in invalid state.
@@ -291,6 +307,12 @@ $bootstrap-checkbox: extend(
291
307
  900,
292
308
  ),
293
309
  ),
310
+ focus-border-color: (
311
+ color: (
312
+ 'primary',
313
+ 200,
314
+ ),
315
+ ),
294
316
  focus-outline-color: (
295
317
  color: (
296
318
  'primary',
@@ -375,6 +397,7 @@ $bootstrap-checkbox: extend(
375
397
  /// @prop {Map} disabled-color-label [color: ('gray', 900, .2)] - The disabled label color.
376
398
  /// @prop {Map} focus-outline-color [color: ('gray', 900, .15)] - The focus outlined color.
377
399
  /// @prop {Map} focus-outline-color-focused [color: ('primary', 400, .5)] - The focus outlined color for focused state.
400
+ /// @prop {Map} focus-border-color [color: ('gray', 500)] - The focus border color.
378
401
  /// @prop {Map} focus-outline-color-error [color: ('error', 400, 0.5)] - The focus outlined color for focused invalid state.
379
402
  /// @prop {Map} error-color-hover [color: ('error', 400)] - The focus outlined color in invalid state.
380
403
  /// @prop {List} border-radius [(rem(3px), rem(0), rem(10px))] - The border radius used for checkbox.
@@ -403,6 +426,12 @@ $indigo-checkbox: extend(
403
426
  0.5,
404
427
  ),
405
428
  ),
429
+ focus-border-color: (
430
+ color: (
431
+ 'gray',
432
+ 500,
433
+ ),
434
+ ),
406
435
  focus-outline-color-error: (
407
436
  color: (
408
437
  'error',
@@ -9,17 +9,22 @@
9
9
 
10
10
  /// Generates a light grid-summary schema.
11
11
  /// @type {Map}
12
- /// @prop {Color} background-color [inherit] - The summaries background color is inherited from the grid footer.
12
+ /// @prop {Map} background-color [color: ('gray', 300)] - The summaries background color.
13
13
  /// @prop {Map} focus-background-color [color: ('gray', 100)] - The background color when a summary item is on focus.
14
14
  /// @prop {Map} label-color [color: ('primary', 500)] - The summaries label color.
15
15
  /// @prop {Map} label-hover-color [color: ('primary', 700)] - The summaries hover label color.
16
- /// @prop {Color} result-color ["'currentColor'"] - The summaries value/result color.
16
+ /// @prop {Map} result-color [contrast-color: ('gray', 300)] - The summaries value/result color.
17
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
20
  /// @prop {Map} pinned-border-color [color: ('gray', 400)] - The border color of the summary panel.
21
21
  $light-grid-summary: (
22
- background-color: inherit,
22
+ background-color: (
23
+ color: (
24
+ 'gray',
25
+ 300,
26
+ ),
27
+ ),
23
28
 
24
29
  focus-background-color: (
25
30
  color: (
@@ -42,7 +47,12 @@ $light-grid-summary: (
42
47
  ),
43
48
  ),
44
49
 
45
- result-color: "'currentColor'",
50
+ result-color: (
51
+ contrast-color: (
52
+ 'gray',
53
+ 300,
54
+ ),
55
+ ),
46
56
 
47
57
  border-color: (
48
58
  color: (
@@ -76,8 +86,9 @@ $material-grid-summary: extend(
76
86
 
77
87
  /// Generates a fluent grid-summary schema.
78
88
  /// @type {Map}
79
- /// @prop {Map} background-color [color: ('surface')] - The summaries background color is inherited from the grid footer.
89
+ /// @prop {Map} background-color [color: ('surface')] - The summaries background color.
80
90
  /// @prop {Map} border-color [color: ('gray', 100)] - The summaries border color.
91
+ /// @prop {Map} result-color [contrast-color: ('surface')] - The summaries value/result color.
81
92
  /// @prop {Map} pinned-border-color [color: ('gray', 300)] - The border color of the summary panel.
82
93
  /// @requires {Map} $light-grid-summary
83
94
  $fluent-grid-summary: extend(
@@ -96,6 +107,12 @@ $fluent-grid-summary: extend(
96
107
  ),
97
108
  ),
98
109
 
110
+ result-color: (
111
+ contrast-color: (
112
+ 'surface',
113
+ ),
114
+ ),
115
+
99
116
  pinned-border-color: (
100
117
  color: (
101
118
  'gray',
@@ -125,8 +142,9 @@ $bootstrap-grid-summary: extend(
125
142
 
126
143
  /// Generates an indigo grid-summary schema.
127
144
  /// @type {Map}
128
- /// @prop {Map} background-color [color: ('surface')] - The summaries background color is inherited from the grid footer.
145
+ /// @prop {Map} background-color [color: ('surface')] - The summaries background color.
129
146
  /// @prop {Map} label-hover-color [color: ('primary', 500)] - The summaries hover label color.
147
+ /// @prop {Map} result-color [color: ('gray', 800)] - The summaries value/result color.
130
148
  /// @prop {Map} pinned-border-color [color: ('gray', 400)] - The border color of the summary panel.
131
149
  /// @requires {Map} $light-grid-summary
132
150
  $indigo-grid-summary: extend(
@@ -145,6 +163,13 @@ $indigo-grid-summary: extend(
145
163
  ),
146
164
  ),
147
165
 
166
+ result-color: (
167
+ color: (
168
+ 'gray',
169
+ 800,
170
+ ),
171
+ ),
172
+
148
173
  pinned-border-color: (
149
174
  color: (
150
175
  'gray',
@@ -81,10 +81,6 @@
81
81
  /// @prop {Map} excel-filtering-actions-foreground [color: ('gray', 700)] - The text color of the excel style filtering options.
82
82
  /// @prop {Map} excel-filtering-actions-hover-foreground [color: ('gray', 700)] - The text color of the excel style filtering options in hover/focus state.
83
83
  /// @prop {Map} excel-filtering-actions-disabled-foreground [color: ('gray', 400)] - The text color of the excel style filtering options in disabled state.
84
- /// @prop {Map} body-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the body.
85
- /// @prop {Map} body-summaries-text-color [contrast-color: ('gray', 100)] - The text color of the summary groups located the body.
86
- /// @prop {Map} root-summaries-background [color: ('gray', 300)] - The background color of the summary groups located the footer.
87
- /// @prop {Map} root-summaries-text-color [contrast-color: ('gray', 300)] - The text color of the summary groups located the footer.
88
84
  /// @prop {Map} row-drag-color [color: ('gray', 200))] - The color of the drag handle.
89
85
  /// @prop {Number} grid-elevation [2] - The elevation level, between 0-24, to be used for the grid.
90
86
  /// @prop {Number} drag-elevation [5] - The elevation level, between 0-24, to be used for movable elements (ex. column header).
@@ -93,6 +89,7 @@
93
89
  /// @prop {List} drop-area-size [(rem(24px), rem(24px), rem(32px))] - The size used for the grid drop area.
94
90
  /// @prop {List} group-area-size [(rem(41), rem(49px), rem(57px))] - The size used for the grid group area.
95
91
  /// @prop {Map} row-ghost-background [color: 'primary', 50] - The background color of the dragged row.
92
+ /// @prop {Map} summaries-patch-background [color: ('gray', 300)] - The leading summaries patch backround. Used in hierarchical grids.
96
93
  /// @prop {Map} typography [
97
94
  /// header: (comfortable: (value: 'overline'),
98
95
  /// compact: (value: 'subtitle-1'))
@@ -567,34 +564,6 @@ $light-grid: extend(
567
564
  ),
568
565
  ),
569
566
 
570
- body-summaries-background: (
571
- color: (
572
- 'gray',
573
- 100,
574
- ),
575
- ),
576
-
577
- body-summaries-text-color: (
578
- contrast-color: (
579
- 'gray',
580
- 100,
581
- ),
582
- ),
583
-
584
- root-summaries-background: (
585
- color: (
586
- 'gray',
587
- 300,
588
- ),
589
- ),
590
-
591
- root-summaries-text-color: (
592
- contrast-color: (
593
- 'gray',
594
- 300,
595
- ),
596
- ),
597
-
598
567
  row-highlight: (
599
568
  color: (
600
569
  'secondary',
@@ -641,6 +610,13 @@ $light-grid: extend(
641
610
  ),
642
611
  ),
643
612
 
613
+ summaries-patch-background: (
614
+ color: (
615
+ 'gray',
616
+ 300,
617
+ ),
618
+ ),
619
+
644
620
  typography: (
645
621
  header: (
646
622
  comfortable: (
@@ -767,7 +743,6 @@ $material-grid: extend(
767
743
  /// @prop {Map} group-row-background [color: ('gray', 50)] - The grid group row background color.
768
744
  /// @prop {Map} group-row-selected-background [color: ('gray', 100)] - The drop area background on drop color.
769
745
  /// @prop {Map} filtering-header-text-color [color: ('gray', 900)] - The text color of the filtered column header.
770
- /// @prop {Map} root-summaries-background [color: 'surface'] - The background color of the summary groups located the footer.
771
746
  /// @prop {Map} row-ghost-background [color: 'surface'] - The background color of the dragged row.
772
747
  /// @prop {number} grid-elevation [0] - The elevation level, between 0-24, to be used for the grid.
773
748
  /// @prop {number} drag-elevation [1] - The elevation level, between 0-24, to be used for movable elements (ex. column header).
@@ -778,6 +753,7 @@ $material-grid: extend(
778
753
  /// @prop {Map} cell-selected-within-background [color: ('gray', 300)] - The background of the selected cell inside a selected row/column.
779
754
  /// @prop {Map} cell-selected-within-text-color [contrast-color: ('gray', 300)] - The color of the selected cell inside a selected row/column.
780
755
  /// @prop {Map} row-selected-hover-text-color [contrast-color: ('gray', 300)] - The selected row hover text color.
756
+ /// @prop {Map} summaries-patch-background [color: ('surface')] - The leading summaries patch backround. Used in hierarchical grids.
781
757
  /// @requires {Map} $light-grid
782
758
  /// @requires {Map} $fluent-elevation-grid
783
759
  $fluent-grid: extend(
@@ -925,10 +901,6 @@ $fluent-grid: extend(
925
901
  ),
926
902
  ),
927
903
 
928
- root-summaries-background: (
929
- color: 'surface',
930
- ),
931
-
932
904
  row-ghost-background: (
933
905
  color: 'surface',
934
906
  ),
@@ -940,6 +912,13 @@ $fluent-grid: extend(
940
912
  rem(16px),
941
913
  ),
942
914
  ),
915
+
916
+ summaries-patch-background: (
917
+ color: (
918
+ 'surface',
919
+ ),
920
+ ),
921
+
943
922
  _meta: (
944
923
  theme: 'fluent',
945
924
  variant: 'light',
@@ -1077,6 +1056,7 @@ $bootstrap-grid: extend(
1077
1056
  rem(16px),
1078
1057
  ),
1079
1058
  ),
1059
+
1080
1060
  _meta: (
1081
1061
  theme: 'bootstrap',
1082
1062
  variant: 'light',
@@ -1116,8 +1096,6 @@ $bootstrap-grid: extend(
1116
1096
  /// @prop {Map} edit-mode-color [color: ('primary', 400)] - The text color in edit mode.
1117
1097
  /// @prop {Map} drop-area-text-color [color: ('gray', 600)] - The drop area text color.
1118
1098
  /// @prop {Map} drop-area-icon-color [color: ('gray', 600)] - The drop area icon color.
1119
- /// @prop {Map} root-summaries-background [color: ('surface')] - The background color of the summary groups located the footer.
1120
- /// @prop {Map} root-summaries-text-color [color: ('gray', 800)] - The text color of the summary groups located the footer.
1121
1099
  /// @prop {Map} group-row-background [color: ('surface', 500)] - The grid group row background color.
1122
1100
  /// @prop {Map} group-row-selected-background [color: ('gray', 100)] - The drop area background on drop color.
1123
1101
  /// @prop {Map} group-count-background [color: ('primary', 400)] - The grid group row cont badge background color.
@@ -1146,6 +1124,7 @@ $bootstrap-grid: extend(
1146
1124
  /// @prop {Map} excel-filtering-actions-hover-foreground [color: ('gray', 900)] - The text color of the excel style filtering options in hover/focus state.
1147
1125
  /// @prop {Map} excel-filtering-actions-disabled-foreground [color: ('gray', 900, .2)] - The text color of the excel style filtering options in disabled state.
1148
1126
  /// @prop {Map} row-drag-color [color: ('gray', 800, .75))] - The color of the drag handle.
1127
+ /// @prop {Map} summaries-patch-background [color: ('surface')] - The leading summaries patch backround. Used in hierarchical grids.
1149
1128
  /// @requires {Map} $light-grid
1150
1129
  $indigo-grid: extend(
1151
1130
  $light-grid,
@@ -1401,19 +1380,6 @@ $indigo-grid: extend(
1401
1380
  ),
1402
1381
  ),
1403
1382
 
1404
- root-summaries-background: (
1405
- color: (
1406
- 'surface',
1407
- ),
1408
- ),
1409
-
1410
- root-summaries-text-color: (
1411
- color: (
1412
- 'gray',
1413
- 800,
1414
- ),
1415
- ),
1416
-
1417
1383
  group-row-background: (
1418
1384
  color: (
1419
1385
  'surface',
@@ -1572,6 +1538,13 @@ $indigo-grid: extend(
1572
1538
  200,
1573
1539
  ),
1574
1540
  ),
1541
+
1542
+ summaries-patch-background: (
1543
+ color: (
1544
+ 'surface',
1545
+ ),
1546
+ ),
1547
+
1575
1548
  _meta: (
1576
1549
  theme: 'indigo',
1577
1550
  variant: 'light',