igniteui-theming 6.2.0-beta.1 → 6.2.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.
@@ -136,124 +136,77 @@ $dark-bootstrap-switch: extend(
136
136
 
137
137
  /// Generates a dark indigo switch schema.
138
138
  /// @type {Map}
139
- /// @prop {Map} label-color [contrast-color: ('gray', 50, .8)] - The color of the switch label.
140
- /// @prop {Map} label-invalid-color [contrast-color: ('gray', 50, .8)] - The color of the switch label in invalid state.
141
- /// @prop {Map} label-hover-color [contrast-color: ('gray', 50)] - The color of the switch label on hover.
142
- /// @prop {Map} label-disabled-color [contrast-color: ('gray', 50, .2)] - The color of the switch label when the switch is disabled.
143
- /// @prop {Map} thumb-off-color [contrast-color: ('gray', 50, .6)] - The color of the thumb when the switch is off.
144
- /// @prop {Map} thumb-on-color [contrast-color: ('gray', 50)] - The color of the thumb when the switch is on.
145
- /// @prop {Map} thumb-disabled-color [contrast-color: ('gray', 50, .2)] - The color of the thumb when the switch is disabled.
146
- /// @prop {Map} thumb-on-disabled-color [contrast-color: ('gray', 50, .2)] - The color of the thumb when the switch is on and disabled.
147
- /// @prop {Map} track-on-hover-color [color: ('primary', 300)] - The color of the track when the switch is on and hovered.
148
- /// @prop {Map} border-color [contrast-color: ('gray', 50, .6)] - The border color of the switch.
149
- /// @prop {Map} border-hover-color [contrast-color: ('gray', 50, .8)] - The border color of the switch on hover.
150
- /// @prop {Map} border-disabled-color [contrast-color: ('gray', 50, .2)] - The border color of the disabled switch.
151
- /// @prop {Map} border-on-hover-color [color: ('primary', 300)] - The border color of the on-switch.
152
- /// @prop {Map} error-color [contrast-color: ('gray', 50, .6)] - The border and thumb color in invalid state.
153
- /// @prop {Map} focus-outline-color [contrast-color: ('gray', 50, .2)] - The focus outlined color.
139
+ /// @prop {Color} thumb-on-color [color: 'surface'] - The color of the thumb when the switch is on.
140
+ /// @prop {Map} track-on-color [color: ('gray', 900)] - The color of the track when the switch is on.
141
+ /// @prop {Map} thumb-off-color [color: ('gray', 700)] - The color of the thumb when the switch is off.
142
+ /// @prop {Color} track-off-color [transparent] - The color of the track when the switch is off.
143
+ /// @prop {Map} border-color [color: ('gray', 700)] - The border color of the switch.
144
+ /// @prop {Map} border-hover-color [color: ('gray', 700)] - The border color of the switch on hover.
145
+ /// @prop {Map} border-disabled-color [color: ('gray', 400)] - The border color of the disabled switch.
146
+ /// @prop {Map} border-on-color [color: ('gray', 900)] - The border color of the on-switch.
147
+ /// @prop {Map} border-on-hover-color [color: ('gray', 900)] - The border color of the on-switch.
148
+ /// @prop {Map} label-disabled-color [color: ('gray', 400)] - The color of the switch label when the switch is disabled
149
+ /// @prop {Map} error-color [color: ('gray', 700)] - The border and thumb color in invalid state.
154
150
  /// @requires $indigo-switch
155
151
  $dark-indigo-switch: extend(
156
152
  $indigo-switch,
157
153
  (
158
- label-color: (
159
- contrast-color: (
154
+ border-color: (
155
+ color: (
160
156
  'gray',
161
- 50,
162
- 0.8,
157
+ 700,
163
158
  ),
164
159
  ),
165
- label-invalid-color: (
166
- contrast-color: (
160
+ border-hover-color: (
161
+ color: (
167
162
  'gray',
168
- 50,
169
- 0.8,
163
+ 700,
170
164
  ),
171
165
  ),
172
- label-hover-color: (
173
- contrast-color: (
166
+ border-disabled-color: (
167
+ color: (
174
168
  'gray',
175
- 50,
169
+ 400,
176
170
  ),
177
171
  ),
178
- label-disabled-color: (
179
- contrast-color: (
172
+ border-on-color: (
173
+ color: (
180
174
  'gray',
181
- 50,
182
- 0.2,
175
+ 900,
183
176
  ),
184
177
  ),
185
- thumb-off-color: (
186
- contrast-color: (
178
+ border-on-hover-color: (
179
+ color: (
187
180
  'gray',
188
- 50,
189
- 0.6,
181
+ 900,
190
182
  ),
191
183
  ),
192
184
  thumb-on-color: (
193
- contrast-color: (
194
- 'gray',
195
- 50,
196
- ),
197
- ),
198
- thumb-disabled-color: (
199
- contrast-color: (
200
- 'gray',
201
- 50,
202
- 0.2,
203
- ),
204
- ),
205
- thumb-on-disabled-color: (
206
- contrast-color: (
207
- 'gray',
208
- 50,
209
- 0.2,
210
- ),
185
+ color: 'surface',
211
186
  ),
212
- track-on-hover-color: (
187
+ thumb-off-color: (
213
188
  color: (
214
- 'primary',
215
- 300,
216
- ),
217
- ),
218
- border-color: (
219
- contrast-color: (
220
189
  'gray',
221
- 50,
222
- 0.6,
190
+ 700,
223
191
  ),
224
192
  ),
225
- border-hover-color: (
226
- contrast-color: (
227
- 'gray',
228
- 50,
229
- 0.8,
230
- ),
231
- ),
232
- border-disabled-color: (
233
- contrast-color: (
193
+ track-on-color: (
194
+ color: (
234
195
  'gray',
235
- 50,
236
- 0.2,
196
+ 900,
237
197
  ),
238
198
  ),
239
- border-on-hover-color: (
199
+ track-off-color: transparent,
200
+ label-disabled-color: (
240
201
  color: (
241
- 'primary',
242
- 300,
243
- ),
244
- ),
245
- error-color: (
246
- contrast-color: (
247
202
  'gray',
248
- 50,
249
- 0.6,
203
+ 400,
250
204
  ),
251
205
  ),
252
- focus-outline-color: (
253
- contrast-color: (
206
+ error-color: (
207
+ color: (
254
208
  'gray',
255
- 50,
256
- 0.2,
209
+ 700,
257
210
  ),
258
211
  ),
259
212
  )
@@ -10,11 +10,9 @@
10
10
 
11
11
  /// Generates a light bottom navigation scheme.
12
12
  /// @type {Map}
13
- /// @prop {Map} background [color: ('gray', 50)] - The background color used for the bottom nav.
14
- /// @prop {Map} icon-color [color: ('gray', 700)] - The icon color used in idle state.
15
- /// @prop {Map} icon-selected-color [color: ('primary', 500)] - The icon color used for the selected item.
16
- /// @prop {Map} label-color [color: ('gray', 700)] - The label color used in idle state.
17
- /// @prop {Map} label-selected-color [color: ('primary', 500)] - The label color used for the selected item.
13
+ /// @prop {Color} background [color: ('gray', 50))] - The background color used for the toast.
14
+ /// @prop {Map} idle-item-color [color: ('gray', 700)] - The text-color used for the idle color.
15
+ /// @prop {Map} active-item-color [color: ('primary', 500)] - The text-color used for the active color.
18
16
  /// @prop {Number} elevation [8] - The elevation level, between 0-24, to be used for the bottom nav.
19
17
  /// @requires {Map} $default-elevation-bottom-nav
20
18
  $light-bottom-nav: extend(
@@ -26,25 +24,15 @@ $light-bottom-nav: extend(
26
24
  50,
27
25
  ),
28
26
  ),
29
- icon-color: (
30
- color: (
31
- 'gray',
32
- 700,
33
- ),
34
- ),
35
- icon-selected-color: (
36
- color: (
37
- 'primary',
38
- 500,
39
- ),
40
- ),
41
- label-color: (
27
+
28
+ idle-item-color: (
42
29
  color: (
43
30
  'gray',
44
31
  700,
45
32
  ),
46
33
  ),
47
- label-selected-color: (
34
+
35
+ active-item-color: (
48
36
  color: (
49
37
  'primary',
50
38
  500,
@@ -72,30 +60,7 @@ $bootstrap-bottom-nav: $light-bottom-nav;
72
60
 
73
61
  /// Generates an indigo bottom navigation schema.
74
62
  /// @type {Map}
75
- /// @prop {Map} background [color: 'surface'] - The background color used for the bottom nav.
76
- /// @prop {Map} icon-color [color: ('gray', 600)] - The icon color used in idle state.
77
- /// @prop {Map} label-color [color: ('gray', 800)] - The label color used in idle state.
78
63
  /// @prop {Number} elevation [4] - The elevation level, between 0-24, to be used for the bottom nav.
79
64
  /// @requires {Map} $light-bottom-nav
80
65
  /// @requires {Map} $indigo-elevation-bottom-nav
81
- $indigo-bottom-nav: extend(
82
- $light-bottom-nav,
83
- $indigo-elevation-bottom-nav,
84
- (
85
- background: (
86
- color: 'surface',
87
- ),
88
- icon-color: (
89
- color: (
90
- 'gray',
91
- 600,
92
- ),
93
- ),
94
- label-color: (
95
- color: (
96
- 'gray',
97
- 800,
98
- ),
99
- ),
100
- )
101
- );
66
+ $indigo-bottom-nav: extend($light-bottom-nav, $indigo-elevation-bottom-nav);
@@ -19,9 +19,8 @@
19
19
  /// @prop {Map} item-hover-text-color [color: ('gray', 900)] - The hover text color for button group items.
20
20
  /// @prop {Map} item-focused-text-color [color: ('gray', 800)] - The focused text color for button group items.
21
21
  /// @prop {Map} item-focused-border-color [color: ('gray', 400)] - The focused border color for an item from the button group.
22
- /// @prop {Map} item-focused-background [color: ('gray', 300)] - The focused background color for button group items.
23
22
  /// @prop {Map} disabled-background-color [color: ('gray', 50)] - The background color for a disabled item in the button group.
24
- /// @prop {Map} disabled-selected-background [color: ('gray', 50)] - The disabled background color for a selected item in the button group.
23
+ /// @prop {Map} disabled-selected-background [color: ('gray', 500, .12)] - The disabled background color for a selected item in the button group.
25
24
  /// @prop {Number} elevation [2] - The elevation level, between 0-24, to be used for the button group shadow.
26
25
  /// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for button-group component.
27
26
  /// @prop {Number} default-size [2] - The default size used for the button-group component.
@@ -81,13 +80,6 @@ $light-button-group: extend(
81
80
  ),
82
81
  ),
83
82
 
84
- item-focused-background: (
85
- color: (
86
- 'gray',
87
- 300,
88
- ),
89
- ),
90
-
91
83
  disabled-background-color: (
92
84
  color: (
93
85
  'gray',
@@ -98,7 +90,8 @@ $light-button-group: extend(
98
90
  disabled-selected-background: (
99
91
  color: (
100
92
  'gray',
101
- 50,
93
+ 500,
94
+ 0.12,
102
95
  ),
103
96
  ),
104
97
 
@@ -120,12 +113,16 @@ $light-button-group: extend(
120
113
  /// @prop {Map} item-hover-text-color [color: ('gray', 800)] - The hover text color for button group items.
121
114
  /// @prop {Map} item-hover-icon-color [color: ('gray', 800)] - The hover icon color for button group items.
122
115
  /// @prop {Map} item-hover-border-color [color: ('gray', 400)] - The hover border color between button group items.
123
- /// @prop {Map} item-hover-background [color: ('gray', 300)] - The hover background color for button group items.
116
+ /// @prop {Map} item-hover-background [color: ('gray', 300, .8)] - The hover background color for button group items.
117
+ /// @prop {Map} item-focused-background [color: ('gray', 700, .4)] - The focused background color for button group items.
118
+ /// @prop {Map} item-focused-hover-background [color: ('gray', 500, .5)] - The focused & hover background color for button group items.
124
119
  /// @prop {Map} item-selected-background [color: ('gray', 400)] - The background color for a selected item in the button group.
125
120
  /// @prop {Map} item-selected-text-color [color: ('gray', 800)] - The text color for a selected item in the button group.
126
121
  /// @prop {Map} item-selected-icon-color [color: ('gray', 800)] - The icon color for a selected item in the button group.
127
122
  /// @prop {Map} item-selected-border-color [color: ('gray', 500)] - The border color for a selected item from the button group.
128
- /// @prop {Map} item-selected-hover-background [color: ('gray', 500, .8)] - The background color for a selected item in hover or focus state in the button group.
123
+ /// @prop {Map} item-selected-hover-background [color: ('gray', 500, .8)] - The background color for a selected item in hover state in the button group.
124
+ /// @prop {Map} item-selected-focus-background [color: ('gray', 700, .5)] - The background color for a selected item in focus state in the button group.
125
+ /// @prop {Map} item-selected-focus-hover-background [color: ('gray', 600, .7)] - The background color for a selected item in focused & hover state in the button group.
129
126
  /// @prop {Map} item-selected-hover-border-color [color: ('gray', 500)] - The border color for a selected item in hover state in the button group.
130
127
  /// @prop {Map} item-selected-hover-text-color [color: ('gray', 800)] - The text color for a selected item in hover state in the button group.
131
128
  /// @prop {Map} item-selected-hover-icon-color [color: ('gray', 800)] - The icon color for a selected item in hover state in the button group.
@@ -173,6 +170,23 @@ $material-button-group: extend(
173
170
  color: (
174
171
  'gray',
175
172
  300,
173
+ 0.8,
174
+ ),
175
+ ),
176
+
177
+ item-focused-background: (
178
+ color: (
179
+ 'gray',
180
+ 700,
181
+ 0.4,
182
+ ),
183
+ ),
184
+
185
+ item-focused-hover-background: (
186
+ color: (
187
+ 'gray',
188
+ 500,
189
+ 0.5,
176
190
  ),
177
191
  ),
178
192
 
@@ -233,6 +247,22 @@ $material-button-group: extend(
233
247
  ),
234
248
  ),
235
249
 
250
+ item-selected-focus-background: (
251
+ color: (
252
+ 'gray',
253
+ 700,
254
+ 0.5,
255
+ ),
256
+ ),
257
+
258
+ item-selected-focus-hover-background: (
259
+ color: (
260
+ 'gray',
261
+ 600,
262
+ 0.7,
263
+ ),
264
+ ),
265
+
236
266
  disabled-text-color: (
237
267
  color: (
238
268
  'gray',
@@ -280,14 +310,18 @@ $material-button-group: extend(
280
310
  /// @prop {Map} item-hover-border-color [color: ('gray', 600)] - The hover border color between button group items.
281
311
  /// @prop {Map} item-focused-text-color [color: ('gray', 900)] - The focused text color for button group items.
282
312
  /// @prop {Map} item-focused-border-color [color: ('gray', 700)] - The focused border color for an item from the button group.
313
+ /// @prop {Map} item-focused-background [color: ('gray', 300)] - The focused background color for button group items.
314
+ /// @prop {Map} item-focused-hover-background [color: ('gray', 200)] - The focused & hover background color for button group items.
283
315
  /// @prop {Map} item-selected-background [color: ('gray', 300)] - The background color for a selected item in the button group.
284
316
  /// @prop {Map} item-selected-text-color [color: ('gray', 900)] - The text color for a selected item in the button group.
285
317
  /// @prop {Map} item-selected-icon-color [color: ('gray', 900)] - The icon color for a selected item in the button group.
286
318
  /// @prop {Map} item-selected-border-color [color: ('gray', 600)] - The border color for a selected item from the button group.
287
- /// @prop {Map} item-selected-hover-background [color: ('gray', 400)] - The background color for a selected item in hover or focus state in the button group.
319
+ /// @prop {Map} item-selected-hover-background [color: ('gray', 400, .3)] - The background color for a selected item in hover state in the button group.
288
320
  /// @prop {Map} item-selected-hover-border-color [color: ('gray', 600)] - The border color for a selected item in hover state in the button group.
289
321
  /// @prop {Map} item-selected-hover-text-color [color: ('gray', 900)] - The text color for a selected item in hover state in the button group.
290
322
  /// @prop {Map} item-selected-hover-icon-color [color: ('gray', 900)] - The icon color for a selected item in hover state in the button group.
323
+ /// @prop {Map} item-selected-focus-background [color: ('gray', 400)] - The background color for a selected item in focus state in the button group.
324
+ /// @prop {Map} item-selected-focus-hover-background [color: ('gray', 400, .3)] - The background color for a selected item in focused & hover state in the button group.
291
325
  /// @prop {Map} disabled-text-color [color: ('gray', 500)] - The text/icon color for a disabled item in the button group.
292
326
  /// @prop {Map} item-disabled-border [color: ('gray', 600)] - The border color for a disabled item in the button group.
293
327
  /// @prop {Map} disabled-selected-text-color [color: ('gray', 500)] - The disabled text color for a selected item in the button group.
@@ -343,6 +377,20 @@ $fluent-button-group: extend(
343
377
  ),
344
378
  ),
345
379
 
380
+ item-focused-background: (
381
+ color: (
382
+ 'gray',
383
+ 300,
384
+ ),
385
+ ),
386
+
387
+ item-focused-hover-background: (
388
+ color: (
389
+ 'gray',
390
+ 200,
391
+ ),
392
+ ),
393
+
346
394
  item-hover-icon-color: (
347
395
  color: (
348
396
  'gray',
@@ -389,6 +437,7 @@ $fluent-button-group: extend(
389
437
  color: (
390
438
  'gray',
391
439
  400,
440
+ 0.3,
392
441
  ),
393
442
  ),
394
443
 
@@ -413,6 +462,21 @@ $fluent-button-group: extend(
413
462
  ),
414
463
  ),
415
464
 
465
+ item-selected-focus-background: (
466
+ color: (
467
+ 'gray',
468
+ 400,
469
+ ),
470
+ ),
471
+
472
+ item-selected-focus-hover-background: (
473
+ color: (
474
+ 'gray',
475
+ 400,
476
+ 0.3,
477
+ ),
478
+ ),
479
+
416
480
  disabled-text-color: (
417
481
  color: (
418
482
  'gray',
@@ -460,6 +524,8 @@ $fluent-button-group: extend(
460
524
 
461
525
  /// Generates a bootstrap button group schema.
462
526
  /// @type {Map}
527
+ /// @prop {Map} idle-shadow-color [color: ('primary', 600, .5)] - The outline color of button group items.
528
+ /// @prop {Map} selected-shadow-color [color: ('primary', 600, .5)] - The outline color of selected button group items.
463
529
  /// @prop {Map} item-background [color: ('primary', 500)] - The background color for button group items.
464
530
  /// @prop {Map} item-text-color [contrast-color: ('primary', 600)] - The text color for button group items.
465
531
  /// @prop {Map} item-icon-color [contrast-color: ('primary', 600)] - The icon color for button group items.
@@ -468,8 +534,9 @@ $fluent-button-group: extend(
468
534
  /// @prop {Map} item-hover-text-color [contrast-color: ('primary', 600)] - The hover text color for button group items.
469
535
  /// @prop {Map} item-hover-icon-color [contrast-color: ('primary', 600)] - The hover icon color for button group items.
470
536
  /// @prop {Map} item-hover-border-color [color: ('primary', 500)] - The hover border color between button group items.
471
- /// @prop {Map} item-focused-background [color: ('primary', 600)] - The focused background color for button group items.
472
537
  /// @prop {Map} item-focused-text-color [contrast-color: ('primary', 600)] - The focused text color for button group items.
538
+ /// @prop {Map} item-focused-background [color: ('primary', 900, .6)] - The focused background color for button group items.
539
+ /// @prop {Map} item-focused-hover-background [color: ('primary', 600, .5)] - The focused & hover background color for button group items.
473
540
  /// @prop {Map} item-selected-background [color: ('primary', 700)] - The background color for a selected item in the button group.
474
541
  /// @prop {Map} item-selected-text-color [contrast-color: ('primary', 700)] - The text color for a selected item in the button group.
475
542
  /// @prop {Map} item-selected-icon-color [contrast-color: ('primary', 700)] - The icon color for a selected item in the button group.
@@ -478,10 +545,11 @@ $fluent-button-group: extend(
478
545
  /// @prop {Map} item-selected-hover-border-color [color: ('primary', 700)] - The border color for a selected item in hover state in the button group.
479
546
  /// @prop {Map} item-selected-hover-text-color [contrast-color: ('primary', 700)] - The text color for a selected item in hover state in the button group.
480
547
  /// @prop {Map} item-selected-hover-icon-color [contrast-color: ('primary', 700)] - The icon color for a selected item in hover state in the button group.
548
+ /// @prop {Map} item-selected-focus-background [color: ('primary', 900, .9)] - The background color for a selected item in focus state in the button group.
549
+ /// @prop {Map} item-selected-focus-hover-background [color: ('primary', 600, .5)] - The background color for a selected item in focused & hover state in the button group.
481
550
  /// @prop {Map} disabled-background-color [color: ('primary', 100)] - The background color for a disabled item in the button group.
482
551
  /// @prop {Map} disabled-text-color [color: ('primary', 200)] - The text/icon color for a disabled item in the button group.
483
552
  /// @prop {Map} item-disabled-border [color: ('primary', 100)] - The border color for a disabled item in the button group.
484
- /// @prop {Map} disabled-selected-background [color: ('primary', 100)] - The disabled background color for a selected item in the button group.
485
553
  /// @prop {Map} disabled-selected-text-color [color: ('primary', 200)] - The disabled text color for a selected item in the button group.
486
554
  /// @prop {Map} disabled-selected-icon-color [color: ('primary', 200)] - The disabled icon color for a selected item in the button group.
487
555
  /// @prop {Map} disabled-selected-border-color [color: ('primary', 100)] - The disabled border color for a selected item from the button group.
@@ -492,6 +560,20 @@ $bootstrap-button-group: extend(
492
560
  $light-button-group,
493
561
  $bootstrap-elevation-button-group,
494
562
  (
563
+ idle-shadow-color: (
564
+ color: (
565
+ 'primary',
566
+ 600,
567
+ 0.5,
568
+ ),
569
+ ),
570
+ selected-shadow-color: (
571
+ color: (
572
+ 'primary',
573
+ 600,
574
+ 0.5,
575
+ ),
576
+ ),
495
577
  item-background: (
496
578
  color: (
497
579
  'primary',
@@ -556,9 +638,18 @@ $bootstrap-button-group: extend(
556
638
  ),
557
639
 
558
640
  item-focused-background: (
641
+ color: (
642
+ 'primary',
643
+ 900,
644
+ 0.6,
645
+ ),
646
+ ),
647
+
648
+ item-focused-hover-background: (
559
649
  color: (
560
650
  'primary',
561
651
  600,
652
+ 0.5,
562
653
  ),
563
654
  ),
564
655
 
@@ -618,6 +709,22 @@ $bootstrap-button-group: extend(
618
709
  ),
619
710
  ),
620
711
 
712
+ item-selected-focus-background: (
713
+ color: (
714
+ 'primary',
715
+ 900,
716
+ 0.9,
717
+ ),
718
+ ),
719
+
720
+ item-selected-focus-hover-background: (
721
+ color: (
722
+ 'primary',
723
+ 600,
724
+ 0.5,
725
+ ),
726
+ ),
727
+
621
728
  disabled-background-color: (
622
729
  color: (
623
730
  'primary',
@@ -653,13 +760,6 @@ $bootstrap-button-group: extend(
653
760
  ),
654
761
  ),
655
762
 
656
- disabled-selected-background: (
657
- color: (
658
- 'primary',
659
- 100,
660
- ),
661
- ),
662
-
663
763
  disabled-selected-border-color: (
664
764
  color: (
665
765
  'primary',
@@ -677,6 +777,7 @@ $bootstrap-button-group: extend(
677
777
  /// @prop {Map} item-hover-icon-color [color: ('gray', 700)] - The hover icon color for button group items.
678
778
  /// @prop {Map} item-hover-border-color [color: ('gray', 500)] - The hover border color between button group items.
679
779
  /// @prop {Map} item-focused-background [color: ('gray', 50)] - The focused background color for button group items.
780
+ /// @prop {Map} item-focused-hover-background [color: ('gray', 200)] - The focused & hover background color for button group items.
680
781
  /// @prop {Map} item-selected-background [color: ('primary', 500)] - The background color for a selected item in the button group.
681
782
  /// @prop {Map} item-selected-text-color [contrast-color: ('primary', 500)] - The text color for a selected item in the button group.
682
783
  /// @prop {Map} item-selected-icon-color [contrast-color: ('primary', 500, .8)] - The icon color for a selected item in the button group.
@@ -685,6 +786,8 @@ $bootstrap-button-group: extend(
685
786
  /// @prop {Map} item-selected-hover-border-color [color: ('primary', 400)] - The border color for a selected item in hover state in the button group.
686
787
  /// @prop {Map} item-selected-hover-text-color [contrast-color: ('primary', 500)] - The text color for a selected item in hover state in the button group.
687
788
  /// @prop {Map} item-selected-hover-icon-color [contrast-color: ('primary', 500)] - The icon color for a selected item in hover state in the button group.
789
+ /// @prop {Map} item-selected-focus-background [color: ('primary', 500)] - The background color for a selected item in focus state in the button group.
790
+ /// @prop {Map} item-selected-focus-hover-background [color: ('primary', 400)] - The background color for a selected item in focused & hover state in the button group.
688
791
  /// @prop {Map} disabled-background-color [contrast-color: ('gray', 900)] - The background color for a disabled item in the button group.
689
792
  /// @prop {Map} disabled-text-color [color: ('gray', 900, .2)] - The text/icon color for a disabled item in the button group.
690
793
  /// @prop {Map} item-disabled-border [color: ('gray', 300)] - The border color for a disabled item in the button group.
@@ -743,6 +846,13 @@ $indigo-button-group: extend(
743
846
  ),
744
847
  ),
745
848
 
849
+ item-focused-hover-background: (
850
+ color: (
851
+ 'gray',
852
+ 200,
853
+ ),
854
+ ),
855
+
746
856
  item-selected-background: (
747
857
  color: (
748
858
  'primary',
@@ -800,6 +910,20 @@ $indigo-button-group: extend(
800
910
  ),
801
911
  ),
802
912
 
913
+ item-selected-focus-background: (
914
+ color: (
915
+ 'primary',
916
+ 500,
917
+ ),
918
+ ),
919
+
920
+ item-selected-focus-hover-background: (
921
+ color: (
922
+ 'primary',
923
+ 400,
924
+ ),
925
+ ),
926
+
803
927
  disabled-background-color: (
804
928
  contrast-color: (
805
929
  'gray',