igniteui-theming 1.4.11 → 1.4.13

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.
Files changed (32) hide show
  1. package/package.json +1 -1
  2. package/sass/themes/_functions.scss +2 -5
  3. package/sass/themes/_mixins.scss +1 -4
  4. package/sass/themes/schemas/components/light/_action-strip.scss +8 -24
  5. package/sass/themes/schemas/components/light/_avatar.scss +2 -2
  6. package/sass/themes/schemas/components/light/_badge.scss +2 -2
  7. package/sass/themes/schemas/components/light/_button-group.scss +7 -18
  8. package/sass/themes/schemas/components/light/_button.scss +34 -90
  9. package/sass/themes/schemas/components/light/_calendar.scss +22 -60
  10. package/sass/themes/schemas/components/light/_card.scss +7 -18
  11. package/sass/themes/schemas/components/light/_carousel.scss +6 -12
  12. package/sass/themes/schemas/components/light/_checkbox.scss +16 -48
  13. package/sass/themes/schemas/components/light/_chip.scss +6 -12
  14. package/sass/themes/schemas/components/light/_combo.scss +16 -10
  15. package/sass/themes/schemas/components/light/_dialog.scss +7 -18
  16. package/sass/themes/schemas/components/light/_drop-down.scss +13 -30
  17. package/sass/themes/schemas/components/light/_expansion-panel.scss +5 -12
  18. package/sass/themes/schemas/components/light/_grid.scss +9 -20
  19. package/sass/themes/schemas/components/light/_input-group.scss +21 -54
  20. package/sass/themes/schemas/components/light/_list.scss +10 -24
  21. package/sass/themes/schemas/components/light/_navdrawer.scss +7 -18
  22. package/sass/themes/schemas/components/light/_progress.scss +7 -13
  23. package/sass/themes/schemas/components/light/_select.scss +24 -11
  24. package/sass/themes/schemas/components/light/_snackbar.scss +6 -18
  25. package/sass/themes/schemas/components/light/_splitter.scss +2 -6
  26. package/sass/themes/schemas/components/light/_stepper.scss +14 -28
  27. package/sass/themes/schemas/components/light/_switch.scss +15 -42
  28. package/sass/themes/schemas/components/light/_tabs.scss +4 -12
  29. package/sass/themes/schemas/components/light/_time-picker.scss +15 -42
  30. package/sass/themes/schemas/components/light/_toast.scss +8 -24
  31. package/sass/themes/schemas/components/light/_tooltip.scss +7 -18
  32. package/sass/themes/schemas/components/light/_watermark.scss +8 -24
@@ -54,9 +54,9 @@
54
54
  /// @prop {Map} border-color [color: ('gray', 300)] - The calendar border color.
55
55
  /// @prop {Map} week-number-color [color: ('gray', 500)] - The text color of the week number column.
56
56
  /// @prop {Map} week-number-background [color: ('gray', 200)] - The background color of the week number column.
57
- /// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
58
- /// @prop {List} date-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for calendar date.
59
- /// @prop {List} month-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for calendar month.
57
+ /// @prop {Number} border-radius [4px] - The border radius used for calendar. Can be a fraction between 0 and 1, pixels, or percent.
58
+ /// @prop {Number} date-border-radius [20px] - The border radius used for calendar date. Can be a fraction between 0 and 1, pixels, or percent.
59
+ /// @prop {Number} month-border-radius [20px] - The border radius used for calendar month. Can be a fraction between 0 and 1, pixels, or percent.
60
60
  $light-calendar: (
61
61
  content-background: (
62
62
  color: 'surface',
@@ -360,21 +360,9 @@ $light-calendar: (
360
360
  ),
361
361
  ),
362
362
 
363
- border-radius: (
364
- rem(4px),
365
- rem(0),
366
- rem(20px),
367
- ),
368
- date-border-radius: (
369
- rem(20px),
370
- rem(0),
371
- rem(20px),
372
- ),
373
- month-border-radius: (
374
- rem(20px),
375
- rem(0),
376
- rem(20px),
377
- ),
363
+ border-radius: rem(4px),
364
+ date-border-radius: rem(20px),
365
+ month-border-radius: rem(20px),
378
366
  );
379
367
 
380
368
  /// Generates a fluent calendar schema.
@@ -392,9 +380,9 @@ $light-calendar: (
392
380
  /// @prop {Map} date-current-hover-foreground [color: ('primary', 600)] - The hover text color for the current date.
393
381
  /// @prop {Map} date-current-focus-foreground [color: ('primary', 600)] - The focus text color for the current date.
394
382
  /// @prop {Map} date-selected-current-foreground [contrast-color: ('primary', 600)] - The text color for the selected/current date.
395
- /// @prop {List} border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for calendar.
396
- /// @prop {List} date-border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for calendar date.
397
- /// @prop {List} month-border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for calendar month.
383
+ /// @prop {Number} border-radius [0] - The border radius used for calendar. Can be a fraction between 0 and 1, pixels, or percent.
384
+ /// @prop {Number} date-border-radius [0] - The border radius used for calendar date. Can be a fraction between 0 and 1, pixels, or percent.
385
+ /// @prop {Number} month-border-radius [0] - The border radius used for calendar month. Can be a fraction between 0 and 1, pixels, or percent.
398
386
  /// @requires {Map} $light-calendar
399
387
  $fluent-calendar: extend(
400
388
  $light-calendar,
@@ -503,21 +491,9 @@ $fluent-calendar: extend(
503
491
  ),
504
492
  ),
505
493
 
506
- border-radius: (
507
- rem(0),
508
- rem(0),
509
- rem(20px),
510
- ),
511
- date-border-radius: (
512
- rem(0),
513
- rem(0),
514
- rem(20px),
515
- ),
516
- month-border-radius: (
517
- rem(0),
518
- rem(0),
519
- rem(20px),
520
- ),
494
+ border-radius: rem(0),
495
+ date-border-radius: rem(0),
496
+ month-border-radius: rem(0),
521
497
  )
522
498
  );
523
499
 
@@ -554,9 +530,9 @@ $fluent-calendar: extend(
554
530
  /// @prop {Map} date-selected-current-focus-background [color: ('primary', 700)] - The focus background color for the selected/current date.
555
531
  /// @prop {Map} date-current-hover-foreground [color: ('surface')] - The hover text color for the current date.
556
532
  /// @prop {Map} date-current-focus-foreground [color: ('surface')] - The focus text color for the current date.
557
- /// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
558
- /// @prop {List} date-border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar date.
559
- /// @prop {List} month-border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar month.
533
+ /// @prop {Number} border-radius [4px] - The border radius used for calendar. Can be a fraction between 0 and 1, pixels, or percent.
534
+ /// @prop {Number} date-border-radius [4px] - The border radius used for calendar date. Can be a fraction between 0 and 1, pixels, or percent.
535
+ /// @prop {Number} month-border-radius [4px] - The border radius used for calendar month. Can be a fraction between 0 and 1, pixels, or percent.
560
536
  /// @requires {Map} $light-calendar
561
537
  $bootstrap-calendar: extend(
562
538
  $light-calendar,
@@ -789,21 +765,9 @@ $bootstrap-calendar: extend(
789
765
  ),
790
766
  ),
791
767
 
792
- border-radius: (
793
- rem(4px),
794
- rem(0),
795
- rem(20px),
796
- ),
797
- date-border-radius: (
798
- rem(4px),
799
- rem(0),
800
- rem(20px),
801
- ),
802
- month-border-radius: (
803
- rem(4px),
804
- rem(0),
805
- rem(20px),
806
- ),
768
+ border-radius: rem(4px),
769
+ date-border-radius: rem(4px),
770
+ month-border-radius: rem(4px),
807
771
  )
808
772
  );
809
773
 
@@ -825,7 +789,9 @@ $bootstrap-calendar: extend(
825
789
  /// @prop {Map} date-selected-current-focus-foreground [contrast-color: ('primary', 500)] - The focus text color for the selected/current date.
826
790
  /// @prop {Map} date-current-hover-foreground [color: ('primary', 600)] - The hover text color for the current date.
827
791
  /// @prop {Map} date-current-focus-foreground [color: ('primary', 600)] - The focus text color for the current date.
828
- /// @prop {List} border-radius [(rem(3px), rem(0), rem(20px))] - The border radius used for calendar.
792
+ /// @prop {Number} border-radius [3px] - The border radius used for calendar. Can be a fraction between 0 and 1, pixels, or percent.
793
+ /// @prop {Number} date-border-radius [20px] - The border radius used for calendar date. Can be a fraction between 0 and 1, pixels, or percent.
794
+ /// @prop {Number} month-border-radius [20px] - The border radius used for calendar month. Can be a fraction between 0 and 1, pixels, or percent.
829
795
  /// @requires {Map} $light-calendar
830
796
  $indigo-calendar: extend(
831
797
  $light-calendar,
@@ -937,10 +903,6 @@ $indigo-calendar: extend(
937
903
  ),
938
904
  ),
939
905
 
940
- border-radius: (
941
- rem(3px),
942
- rem(0),
943
- rem(20px),
944
- ),
906
+ border-radius: rem(3px),
945
907
  )
946
908
  );
@@ -18,7 +18,7 @@
18
18
  /// @prop {Map} outline-color [color: ('gray', 400, .54)] - The outline color of an outlined type card.
19
19
  /// @prop {Number} resting-elevation [2] - The elevation level, between 0-24, to be used for the resting state.
20
20
  /// @prop {Number} hover-elevation [8] - The elevation level, between 0-24, to be used for the hover state.
21
- /// @prop {List} border-radius [(rem(4px), rem(0), rem(24px))] - The border radius used for card.
21
+ /// @prop {Number} border-radius [4px] - The border radius used for card. Can be a fraction between 0 and 1, pixels, or percent.
22
22
  /// @requires {Map} $default-elevation-card
23
23
  $light-card: extend(
24
24
  $default-elevation-card,
@@ -63,11 +63,7 @@ $light-card: extend(
63
63
  ),
64
64
  ),
65
65
 
66
- border-radius: (
67
- rem(4px),
68
- rem(0),
69
- rem(24px),
70
- ),
66
+ border-radius: rem(4px),
71
67
  )
72
68
  );
73
69
 
@@ -76,7 +72,7 @@ $light-card: extend(
76
72
  /// @prop {Map} outline-color [color: ('gray', 200)] - The outline color of an outlined type card.
77
73
  /// @prop {Number} resting-elevation [0] - The elevation level, between 0-24, to be used for the resting state.
78
74
  /// @prop {Number} hover-elevation [0] - The elevation level, between 0-24, to be used for the hover state.
79
- /// @prop {List} border-radius [(rem(2px), rem(0), rem(24px))] - The border radius used for card.
75
+ /// @prop {Number} border-radius [2px] - The border radius used for card. Can be a fraction between 0 and 1, pixels, or percent.
80
76
  /// @requires {Map} $light-card
81
77
  /// @requires {Map} $fluent-elevation-card
82
78
  $fluent-card: extend(
@@ -90,11 +86,7 @@ $fluent-card: extend(
90
86
  ),
91
87
  ),
92
88
 
93
- border-radius: (
94
- rem(2px),
95
- rem(0),
96
- rem(24px),
97
- ),
89
+ border-radius: rem(2px),
98
90
  )
99
91
  );
100
92
 
@@ -108,6 +100,7 @@ $fluent-card: extend(
108
100
  /// @prop {Map} actions-text-color [color: ('gray', 900)] - The text color of the card buttons.
109
101
  /// @prop {Number} resting-elevation [0] - The elevation level, between 0-24, to be used for the resting state.
110
102
  /// @prop {Number} hover-elevation [0] - The elevation level, between 0-24, to be used for the hover state.
103
+ /// @prop {Number} border-radius [4px] - The border radius used for card. Can be a fraction between 0 and 1, pixels, or percent.
111
104
  /// @requires {Map} $light-card
112
105
  /// @requires {Map} $bootstrap-elevation-card
113
106
  $bootstrap-card: extend(
@@ -167,7 +160,7 @@ $bootstrap-card: extend(
167
160
  /// @prop {Map} actions-text-color [color: ('gray', 600)] - The text color of the card buttons.
168
161
  /// @prop {Number} resting-elevation [4] - The elevation level, between 0-24, to be used for the resting state.
169
162
  /// @prop {Number} hover-elevation [6] - The elevation level, between 0-24, to be used for the hover state.
170
- /// @prop {List} border-radius [(rem(3px), rem(0), rem(24px))] - The border radius used for card.
163
+ /// @prop {Number} border-radius [3px] - The border radius used for card. Can be a fraction between 0 and 1, pixels, or percent.
171
164
  /// @requires {Map} $light-card
172
165
  /// @requires {Map} $indigo-elevation-card
173
166
  $indigo-card: extend(
@@ -209,10 +202,6 @@ $indigo-card: extend(
209
202
  ),
210
203
  ),
211
204
 
212
- border-radius: (
213
- rem(3px),
214
- rem(0),
215
- rem(24px),
216
- ),
205
+ border-radius: rem(3px),
217
206
  )
218
207
  );
@@ -22,7 +22,7 @@
22
22
  /// @prop {Map} indicator-active-dot-color [color: ('gray', 50)] - The active indicator dot color.
23
23
  /// @prop {Map} indicator-active-border-color [color: ('gray', 50)] - The active indicator border color.
24
24
  /// @prop {Number} button-elevation [1] - The elevation level, between 0-24, to be used for the carousel buttons.
25
- /// @prop {List} border-radius [(rem(0), rem(0), rem(36px))] - The border radius used for carousel.
25
+ /// @prop {Number} border-radius [0] - The border radius used for carousel. Can be a fraction between 0 and 1, pixels, or percent.
26
26
  /// @requires {Map} $default-elevation-carousel
27
27
  $light-carousel: extend(
28
28
  $default-elevation-carousel,
@@ -98,16 +98,13 @@ $light-carousel: extend(
98
98
  ),
99
99
  ),
100
100
 
101
- border-radius: (
102
- rem(0),
103
- rem(0),
104
- rem(36px),
105
- ),
101
+ border-radius: rem(0),
106
102
  )
107
103
  );
108
104
 
109
105
  /// Generates a fluent carousel schema.
110
106
  /// @type {Map}
107
+ /// @prop {Number} border-radius [0] - The border radius used for carousel. Can be a fraction between 0 and 1, pixels, or percent.
111
108
  /// @prop {Number} button-elevation [0] - The elevation level, between 0-24, to be used for the carousel buttons.
112
109
  /// @requires {Map} $light-carousel
113
110
  /// @requires {Map} $fluent-elevation-carousel
@@ -115,7 +112,7 @@ $fluent-carousel: extend($light-carousel, $fluent-elevation-carousel);
115
112
 
116
113
  /// Generates a bootstrap carousel schema.
117
114
  /// @type {Map}
118
- /// @prop {List} border-radius [(rem(4px), rem(0), rem(36px))] - The border radius used for carousel.
115
+ /// @prop {Number} border-radius [4px] - The border radius used for carousel. Can be a fraction between 0 and 1, pixels, or percent.
119
116
  /// @prop {Number} button-elevation [0] - The elevation level, between 0-24, to be used for the carousel buttons.
120
117
  /// @requires {Map} $light-carousel
121
118
  /// @requires {Map} $bootstrap-elevation-carousel
@@ -123,11 +120,7 @@ $bootstrap-carousel: extend(
123
120
  $light-carousel,
124
121
  $bootstrap-elevation-carousel,
125
122
  (
126
- border-radius: (
127
- rem(4px),
128
- rem(0),
129
- rem(36px),
130
- ),
123
+ border-radius: rem(4px),
131
124
  )
132
125
  );
133
126
 
@@ -141,6 +134,7 @@ $bootstrap-carousel: extend(
141
134
  /// @prop {Map} button-disabled-arrow-color [color: ('gray' 400)] - The previous/next buttons disabled color.
142
135
  /// @prop {Map} indicator-dot-color [color: ('surface', 500, .6)] - The idle indicator dot color.
143
136
  /// @prop {Map} indicator-active-dot-color [color: 'surface'] - The active indicator dot color.
137
+ /// @prop {Number} border-radius [0] - The border radius used for carousel. Can be a fraction between 0 and 1, pixels, or percent.
144
138
  /// @prop {Number} button-elevation [0] - The elevation level, between 0-24, to be used for the carousel buttons.
145
139
  /// @requires {Map} $light-carousel
146
140
  /// @requires {Map} $indigo-elevation-carousel
@@ -22,8 +22,8 @@
22
22
  /// @prop {Map} disabled-color-label [color: ('gray', 500)] - The disabled color of the label.
23
23
  /// @prop {Map} error-color [color: ('error', 500)] - The border and fill colors in invalid state.
24
24
  /// @prop {Map} error-color-hover [color: ('error', 500)] - The border and fill colors in invalid state on hover.
25
- /// @prop {List} border-radius [(rem(2px), rem(0), rem(10px))] - The border radius used for checkbox.
26
- /// @prop {List} border-radius-ripple [(rem(24px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
25
+ /// @prop {Number} border-radius [2px] - The border radius used for checkbox. Can be a fraction between 0 and 1, pixels, or percent.
26
+ /// @prop {Number} border-radius-ripple [24px] - The border radius used for checkbox ripple. Can be a fraction between 0 and 1, pixels, or percent.
27
27
  $light-checkbox: (
28
28
  tick-color: (
29
29
  color: (
@@ -91,16 +91,8 @@ $light-checkbox: (
91
91
  500,
92
92
  ),
93
93
  ),
94
- border-radius: (
95
- rem(2px),
96
- rem(0),
97
- rem(10px),
98
- ),
99
- border-radius-ripple: (
100
- rem(24px),
101
- rem(0),
102
- rem(24px),
103
- ),
94
+ border-radius: rem(2px),
95
+ border-radius-ripple: rem(24px),
104
96
  );
105
97
 
106
98
  /// Generates a fluent checkbox schema.
@@ -112,8 +104,8 @@ $light-checkbox: (
112
104
  /// @prop {Map} disabled-color [color: ('gray', 400)] - The disabled border and fill colors.
113
105
  /// @prop {Map} focus-outline-color [color: ('gray', 800)] - The focus outlined color.
114
106
  /// @prop {Map} error-color-hover [color: ('error', 900)] - The border and fill colors in invalid state on hover.
115
- /// @prop {List} border-radius [(rem(2px), rem(0), rem(10px))] - The border radius used for checkbox.
116
- /// @prop {List} border-radius-ripple [(rem(2px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
107
+ /// @prop {Number} border-radius [2px] - The border radius used for checkbox. Can be a fraction between 0 and 1, pixels, or percent.
108
+ /// @prop {Number} border-radius-ripple [2px] - The border radius used for checkbox ripple. Can be a fraction between 0 and 1, pixels, or percent.
117
109
  /// @requires {Map} $light-checkbox
118
110
  $fluent-checkbox: extend(
119
111
  $light-checkbox,
@@ -160,16 +152,8 @@ $fluent-checkbox: extend(
160
152
  900,
161
153
  ),
162
154
  ),
163
- border-radius: (
164
- rem(2px),
165
- rem(0),
166
- rem(10px),
167
- ),
168
- border-radius-ripple: (
169
- rem(2px),
170
- rem(0),
171
- rem(24px),
172
- ),
155
+ border-radius: rem(2px),
156
+ border-radius-ripple: rem(2px),
173
157
  )
174
158
  );
175
159
 
@@ -181,8 +165,8 @@ $fluent-checkbox: extend(
181
165
  /// @prop {Map} disabled-color-label [color: ('gray', 400)] - The disabled color of the label.
182
166
  /// @prop {Map} focus-outline-color [color: ('primary', 200)] - The focus outlined color.
183
167
  /// @prop {Map} error-color-hover [color: ('error', 100)] - The focus outlined color in invalid state.
184
- /// @prop {List} border-radius [(rem(4px), rem(0), rem(10px))] - The border radius used for checkbox.
185
- /// @prop {List} border-radius-ripple [(rem(4px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
168
+ /// @prop {Number} border-radius [4px] - The border radius used for checkbox. Can be a fraction between 0 and 1, pixels, or percent.
169
+ /// @prop {Number} border-radius-ripple [4px] - The border radius used for checkbox ripple. Can be a fraction between 0 and 1, pixels, or percent.
186
170
  /// @requires {Map} $light-checkbox
187
171
  $bootstrap-checkbox: extend(
188
172
  $light-checkbox,
@@ -223,16 +207,8 @@ $bootstrap-checkbox: extend(
223
207
  100,
224
208
  ),
225
209
  ),
226
- border-radius: (
227
- rem(4px),
228
- rem(0),
229
- rem(10px),
230
- ),
231
- border-radius-ripple: (
232
- rem(4px),
233
- rem(0),
234
- rem(24px),
235
- ),
210
+ border-radius: rem(4px),
211
+ border-radius-ripple: rem(4px),
236
212
  )
237
213
  );
238
214
 
@@ -247,8 +223,8 @@ $bootstrap-checkbox: extend(
247
223
  /// @prop {Map} focus-outline-color [color: ('gray', 300)] - The focus outlined color.
248
224
  /// @prop {Map} focus-outline-color-focused [color: ('primary', 200)] - The focus outlined color for focused state.
249
225
  /// @prop {Map} error-color-hover [color: ('error', 200)] - The focus outlined color in invalid state.
250
- /// @prop {List} border-radius [(rem(3px), rem(0), rem(10px))] - The border radius used for checkbox.
251
- /// @prop {List} border-radius-ripple [(rem(3px), rem(0), rem(24px))] - The border radius used for checkbox ripple.
226
+ /// @prop {Number} border-radius [3px] - The border radius used for checkbox. Can be a fraction between 0 and 1, pixels, or percent.
227
+ /// @prop {Number} border-radius-ripple [3px] - The border radius used for checkbox ripple. Can be a fraction between 0 and 1, pixels, or percent.
252
228
  /// @requires {Map} $light-checkbox
253
229
  $indigo-checkbox: extend(
254
230
  $light-checkbox,
@@ -301,15 +277,7 @@ $indigo-checkbox: extend(
301
277
  200,
302
278
  ),
303
279
  ),
304
- border-radius: (
305
- rem(3px),
306
- rem(0),
307
- rem(10px),
308
- ),
309
- border-radius-ripple: (
310
- rem(3px),
311
- rem(0),
312
- rem(24px),
313
- ),
280
+ border-radius: rem(3px),
281
+ border-radius-ripple: rem(3px),
314
282
  )
315
283
  );
@@ -10,7 +10,7 @@
10
10
 
11
11
  /// Generates a light chip schema.
12
12
  /// @type {Map}
13
- /// @prop {List} border-radius [(rem(16px), rem(0), rem(16px))] - The border radius used for chip.
13
+ /// @prop {Number} border-radius [16px] - The border radius used for chip. Can be a fraction between 0 and 1, pixels, or percent.
14
14
  /// @prop {Map} text-color [contrast-color: ('gray', 300)] - The chip text color.
15
15
  /// @prop {Map} background [color: ('gray', 300)] - The chip background color.
16
16
  /// @prop {Color} border-color [transparent] - The chip border color.
@@ -151,11 +151,7 @@ $light-chip: extend(
151
151
 
152
152
  focus-selected-border-color: transparent,
153
153
 
154
- border-radius: (
155
- rem(16px),
156
- rem(0),
157
- rem(16px),
158
- ),
154
+ border-radius: rem(16px),
159
155
  disabled-text-color: (
160
156
  color: (
161
157
  'gray',
@@ -195,6 +191,7 @@ $light-chip: extend(
195
191
  /// @prop {Map} focus-selected-text-color [contrast-color: ('primary', 700)] - The selected chip text focus color.
196
192
  /// @prop {Map} focus-selected-background [color: ('primary', 500)] - The selected chip focus background color.
197
193
  /// @prop {Number} ghost-elevation [2] - The elevation level, between 0-24, to be used for the chip's ghost (dragging mode).
194
+ /// @prop {Number} border-radius [16px] - The border radius used for chip. Can be a fraction between 0 and 1, pixels, or percent.
198
195
  /// @requires {Map} $light-chip
199
196
  /// @requires {Map} $fluent-elevation-chip
200
197
  $fluent-chip: extend(
@@ -305,7 +302,7 @@ $fluent-chip: extend(
305
302
  /// @prop {Map} focus-selected-background [color: ('gray', 400)] - The selected chip focus background color.
306
303
  /// @prop {Map} focus-selected-text-color [contrast-color: ('gray', 400)] - The selected chip text focus color.
307
304
  /// @prop {Number} ghost-elevation [0] - The elevation level, between 0-24, to be used for the chip's ghost (dragging mode).
308
- /// @prop {List} border-radius [(rem(4px), rem(0), rem(16px))] - The border radius used for chip.
305
+ /// @prop {Number} border-radius [4px] - The border radius used for chip. Can be a fraction between 0 and 1, pixels, or percent.
309
306
  /// @prop {Map} focus-outline-color [color: ('gray', 200)] - The chip focus outline color.
310
307
  /// @prop {Map} focus-selected-outline-color [color: ('primary', 200)] - The selected chip focus outline color.
311
308
  /// @requires {Map} $light-chip
@@ -384,17 +381,14 @@ $bootstrap-chip: extend(
384
381
  ),
385
382
  ),
386
383
 
387
- border-radius: (
388
- rem(4px),
389
- rem(0),
390
- rem(16px),
391
- ),
384
+ border-radius: rem(4px),
392
385
  )
393
386
  );
394
387
 
395
388
  /// Generates an indigo chip schema.
396
389
  /// @type {Map}
397
390
  /// @prop {Number} ghost-elevation [1] - The elevation level, between 0-24, to be used for the chip's ghost (dragging mode).
391
+ /// @prop {Number} border-radius [16px] - The border radius used for chip. Can be a fraction between 0 and 1, pixels, or percent.
398
392
  /// @prop {Map} text-color [color: ('gray', 700)] - The chip text color.
399
393
  /// @prop {Map} background [color: ('surface')] - The chip background color.
400
394
  /// @prop {Map} ghost-background [color: ('surface')] - The chip ghost background color.
@@ -29,12 +29,6 @@
29
29
  /// @prop {Map} case-icon-color [color: ('gray', 400)] - The case sensitive icon color in inactive state for combo search input
30
30
  /// @prop {Map} case-icon-color--active [color: ('primary', 500)] - The case sensitive icon color in active state for combo search input
31
31
  $light-combo: (
32
- toggle-button-background-focus--border: (
33
- color: (
34
- 'gray',
35
- 300,
36
- ),
37
- ),
38
32
  case-icon-color: (
39
33
  color: (
40
34
  'gray',
@@ -110,7 +104,7 @@ $light-combo: (
110
104
  toggle-button-background-disabled: (
111
105
  color: (
112
106
  'gray',
113
- 100,
107
+ 300,
114
108
  ),
115
109
  ),
116
110
  toggle-button-foreground-disabled: (
@@ -190,6 +184,7 @@ $fluent-combo: extend(
190
184
  /// @prop {Map} clear-button-background-focus [color: ('gray', 300)] - The combo clear button background color when the combo is focused.
191
185
  /// @prop {Map} clear-button-foreground [color: ('gray', 800)] - The combo toggle clear foreground color.
192
186
  /// @prop {Map} clear-button-foreground-focus [color: ('gray', 800)] - The combo clear button foreground color when the combo is focused.
187
+ /// @prop {Map} toggle-button-background-disabled [color: ('gray', 300)] - The combo toggle button background color when the combo is disabled.
193
188
  /// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 400)] - The combo toggle button foreground color when the combo is disabled.
194
189
  /// @prop {Map} toggle-button-background-focus [color: ('gray', 300)] - The combo toggle button background color when the combo is focused.
195
190
  /// @requires {Map} $light-combo
@@ -261,6 +256,12 @@ $bootstrap-combo: extend(
261
256
  300,
262
257
  ),
263
258
  ),
259
+ toggle-button-background-disabled: (
260
+ color: (
261
+ 'gray',
262
+ 300,
263
+ ),
264
+ ),
264
265
  toggle-button-foreground-disabled: (
265
266
  color: (
266
267
  'gray',
@@ -275,9 +276,9 @@ $bootstrap-combo: extend(
275
276
  /// @prop {Color} clear-button-background-focus [transparent] - The combo clear button background color when the combo is focused.
276
277
  /// @prop {Map} clear-button-foreground [color: ('gray', 600)] - The combo toggle clear foreground color.
277
278
  /// @prop {Map} clear-button-foreground-focus [color: ('gray', 600)] - The combo clear button foreground color when the combo is focused.
279
+ /// @prop {Map} toggle-button-background-disabled [color: ('gray', 100)] - The combo toggle button background color when the combo is disabled.
278
280
  /// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 300)] - The combo toggle button foreground color when the combo is disabled.
279
- /// @prop {Color} toggle-button-background-disabled [transparent] - The combo toggle button background color when the combo is disabled.
280
- /// @prop {Color} toggle-button-background-focus [transparent] - The combo toggle button background color when the combo is focused.
281
+ /// @prop {Map} toggle-button-background-focus [color: ('gray', 300)] - The combo toggle button background color when the combo is focused.
281
282
  /// @requires {Map} $light-combo
282
283
  $indigo-combo: extend(
283
284
  $light-combo,
@@ -301,12 +302,17 @@ $indigo-combo: extend(
301
302
  600,
302
303
  ),
303
304
  ),
305
+ toggle-button-background-disabled: (
306
+ color: (
307
+ 'gray',
308
+ 100,
309
+ ),
310
+ ),
304
311
  toggle-button-foreground-disabled: (
305
312
  color: (
306
313
  'gray',
307
314
  300,
308
315
  ),
309
316
  ),
310
- toggle-button-background-disabled: transparent,
311
317
  )
312
318
  );
@@ -15,7 +15,7 @@
15
15
  /// @prop {Map} message-color [color: ('gray', 600)] - The dialog message text color.
16
16
  /// @prop {Color} border-color [transparent] - The border color for dialog component.
17
17
  /// @prop {Number} elevation [24] - The elevation level, between 0-24, to be used for the dialog.
18
- /// @prop {List} border-radius [(rem(4px), rem(0), rem(36px))] - The border radius used for dialog.
18
+ /// @prop {Number} border-radius [4px] - The border radius used for dialog. Can be a fraction between 0 and 1, pixels, or percent.
19
19
  /// @requires {Map} $default-elevation-dialog
20
20
  $light-dialog: extend(
21
21
  $default-elevation-dialog,
@@ -40,27 +40,19 @@ $light-dialog: extend(
40
40
 
41
41
  border-color: transparent,
42
42
 
43
- border-radius: (
44
- rem(4px),
45
- rem(0),
46
- rem(36px),
47
- ),
43
+ border-radius: rem(4px),
48
44
  )
49
45
  );
50
46
 
51
47
  /// Generates a fluent dialog schema.
52
48
  /// @type {Map}
53
- /// @prop {List} border-radius [(rem(2px), rem(0), rem(36px))] - The border radius used for dialog.
49
+ /// @prop {Number} border-radius [2px] - The border radius used for dialog. Can be a fraction between 0 and 1, pixels, or percent.
54
50
  /// @prop {Map} message-color [color: ('gray', 700)] - The dialog message text color.
55
51
  /// @requires {Map} $light-dialog
56
52
  $fluent-dialog: extend(
57
53
  $light-dialog,
58
54
  (
59
- border-radius: (
60
- rem(2px),
61
- rem(0),
62
- rem(36px),
63
- ),
55
+ border-radius: rem(2px),
64
56
  message-color: (
65
57
  color: (
66
58
  'gray',
@@ -74,6 +66,7 @@ $fluent-dialog: extend(
74
66
  /// @type {Map}
75
67
  /// @prop {Map} border-color [color: ('gray', 300)] - The border color for dialog component.
76
68
  /// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the dialog.
69
+ /// @prop {Number} border-radius [4px] - The border radius used for dialog. Can be a fraction between 0 and 1, pixels, or percent.
77
70
  /// @requires {Map} $light-dialog
78
71
  /// @requires {Map} $bootstrap-elevation-dialog
79
72
  $bootstrap-dialog: extend(
@@ -92,7 +85,7 @@ $bootstrap-dialog: extend(
92
85
  /// Generates an indigo dialog schema.
93
86
  /// @type {Map}
94
87
  /// @prop {Map} message-color [color: ('gray', 700)] - The dialog message text color.
95
- /// @prop {List} border-radius [(rem(2px), rem(0), rem(36px))] - The border radius used for dialog.
88
+ /// @prop {Number} border-radius [2px] - The border radius used for dialog. Can be a fraction between 0 and 1, pixels, or percent.
96
89
  /// @requires {Map} $light-dialog
97
90
  $indigo-dialog: extend(
98
91
  $light-dialog,
@@ -104,10 +97,6 @@ $indigo-dialog: extend(
104
97
  ),
105
98
  ),
106
99
 
107
- border-radius: (
108
- rem(2px),
109
- rem(0),
110
- rem(36px),
111
- ),
100
+ border-radius: rem(2px),
112
101
  )
113
102
  );