igniteui-theming 1.4.7 → 1.4.9

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 (31) hide show
  1. package/package.json +1 -1
  2. package/sass/themes/_functions.scss +5 -2
  3. package/sass/themes/schemas/components/light/_action-strip.scss +24 -8
  4. package/sass/themes/schemas/components/light/_avatar.scss +2 -2
  5. package/sass/themes/schemas/components/light/_badge.scss +2 -2
  6. package/sass/themes/schemas/components/light/_button-group.scss +18 -7
  7. package/sass/themes/schemas/components/light/_button.scss +90 -34
  8. package/sass/themes/schemas/components/light/_calendar.scss +60 -22
  9. package/sass/themes/schemas/components/light/_card.scss +18 -7
  10. package/sass/themes/schemas/components/light/_carousel.scss +12 -6
  11. package/sass/themes/schemas/components/light/_checkbox.scss +48 -16
  12. package/sass/themes/schemas/components/light/_chip.scss +12 -6
  13. package/sass/themes/schemas/components/light/_combo.scss +13 -18
  14. package/sass/themes/schemas/components/light/_dialog.scss +18 -7
  15. package/sass/themes/schemas/components/light/_drop-down.scss +30 -13
  16. package/sass/themes/schemas/components/light/_expansion-panel.scss +12 -5
  17. package/sass/themes/schemas/components/light/_grid.scss +20 -9
  18. package/sass/themes/schemas/components/light/_input-group.scss +54 -21
  19. package/sass/themes/schemas/components/light/_list.scss +24 -10
  20. package/sass/themes/schemas/components/light/_navdrawer.scss +18 -7
  21. package/sass/themes/schemas/components/light/_progress.scss +13 -7
  22. package/sass/themes/schemas/components/light/_select.scss +12 -24
  23. package/sass/themes/schemas/components/light/_snackbar.scss +18 -6
  24. package/sass/themes/schemas/components/light/_splitter.scss +6 -2
  25. package/sass/themes/schemas/components/light/_stepper.scss +28 -14
  26. package/sass/themes/schemas/components/light/_switch.scss +42 -15
  27. package/sass/themes/schemas/components/light/_tabs.scss +12 -4
  28. package/sass/themes/schemas/components/light/_time-picker.scss +42 -15
  29. package/sass/themes/schemas/components/light/_toast.scss +24 -8
  30. package/sass/themes/schemas/components/light/_tooltip.scss +18 -7
  31. package/sass/themes/schemas/components/light/_watermark.scss +24 -8
@@ -30,8 +30,8 @@
30
30
  /// @prop {Number} elevation [8] - The elevation level, between 0-24, to be used for the drop-down shadow.
31
31
  /// @prop {Number} border-width [0] - The border width used for drop-down component.
32
32
  /// @prop {Map} border-color [color: ('gray', 300)] - The border color used for drop-down component.
33
- /// @prop {Number} border-radius [4px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
34
- /// @prop {Number} item-border-radius [0] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
33
+ /// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for drop-down component.
34
+ /// @prop {List} item-border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for the drop-down items.
35
35
  /// @requires {Map} $default-elevation-drop-down
36
36
  $light-drop-down: extend(
37
37
  $default-elevation-drop-down,
@@ -133,8 +133,16 @@ $light-drop-down: extend(
133
133
  ),
134
134
  ),
135
135
  border-width: 0,
136
- border-radius: rem(4px),
137
- item-border-radius: rem(0),
136
+ border-radius: (
137
+ rem(4px),
138
+ rem(0),
139
+ rem(20px),
140
+ ),
141
+ item-border-radius: (
142
+ rem(0),
143
+ rem(0),
144
+ rem(20px),
145
+ ),
138
146
  )
139
147
  );
140
148
 
@@ -147,8 +155,7 @@ $light-drop-down: extend(
147
155
  /// @prop {Map} selected-focus-item-background [color: ('gray', 200)] - The drop-down selected item focus background color.
148
156
  /// @prop {Map} selected-focus-item-text-color [contrast-color: ('gray', 200)] - The drop-down selected item focus text color.
149
157
  /// @prop {Number} elevation [4] - The elevation level, between 0-24, to be used for the drop-down shadow.
150
- /// @prop {Number} border-radius [2px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
151
- /// @prop {Number} item-border-radius [0] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
158
+ /// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for drop-down component.
152
159
  /// @requires {Map} $light-drop-down
153
160
  /// @requires {Map} $fluent-elevation-drop-down
154
161
  $fluent-drop-down: extend(
@@ -191,7 +198,11 @@ $fluent-drop-down: extend(
191
198
  200,
192
199
  ),
193
200
  ),
194
- border-radius: rem(2px),
201
+ border-radius: (
202
+ rem(2px),
203
+ rem(0),
204
+ rem(20px),
205
+ ),
195
206
  )
196
207
  );
197
208
 
@@ -208,8 +219,6 @@ $fluent-drop-down: extend(
208
219
  /// @prop {Map} selected-focus-item-background [color: ('primary', 600)] - The drop-down selected item focus background color.
209
220
  /// @prop {Map} selected-focus-item-text-color [contrast-color('primary', 600)] - The drop-down selected item focus text color.
210
221
  /// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the drop-down shadow.
211
- /// @prop {Number} border-radius [4px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
212
- /// @prop {Number} item-border-radius [0] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
213
222
  /// @prop {Number} border-width [1px] - The border width used for drop-down component.
214
223
  /// @requires {Map} $light-drop-down
215
224
  /// @requires {Map} $bootstrap-elevation-drop-down
@@ -300,8 +309,8 @@ $bootstrap-drop-down: extend(
300
309
  /// @prop {Map} selected-focus-item-background [color: ('primary', 400)] - The drop-down selected item focus background color.
301
310
  /// @prop {Color} selected-focus-item-text-color [#fff] - The drop-down selected item focus text color.
302
311
  /// @prop {Number} elevation [3] - The elevation level, between 0-24, to be used for the badge shadow.
303
- /// @prop {Number} border-radius [2px] - The border radius used for drop-down component. Can be a fraction between 0 and 1, pixels, or percent.
304
- /// @prop {Number} item-border-radius [2px] - The border radius used for the drop-down items. Can be a fraction between 0 and 1, pixels, or percent.
312
+ /// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for drop-down component.
313
+ /// @prop {List} item-border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for the drop-down items.
305
314
  /// @requires {Map} $light-drop-down
306
315
  /// @requires {Map} $indigo-elevation-drop-down
307
316
  $indigo-drop-down: extend(
@@ -370,7 +379,15 @@ $indigo-drop-down: extend(
370
379
  400,
371
380
  ),
372
381
  ),
373
- border-radius: rem(2px),
374
- item-border-radius: rem(2px),
382
+ border-radius: (
383
+ rem(2px),
384
+ rem(0),
385
+ rem(20px),
386
+ ),
387
+ item-border-radius: (
388
+ rem(2px),
389
+ rem(0),
390
+ rem(20px),
391
+ ),
375
392
  )
376
393
  );
@@ -17,7 +17,7 @@
17
17
  /// @prop {Map} header-icon-color [color: ('gray', 800)] - The panel header icon color.
18
18
  /// @prop {Map} body-color [color: ('gray', 900)] - The panel body text color.
19
19
  /// @prop {Map} disabled-color [color: ('gray', 500)] - The panel disabled text color.
20
- /// @prop {Number} border-radius [0] - The border radius used for expansion-panel. Can be a fraction between 0 and 1, pixels, or percent.
20
+ /// @prop {List} border-radius [(rem(0), rem(0), rem(16px))] - The border radius used for expansion-panel.
21
21
  /// @prop {Number} expanded-margin [8px] - The expansion panel margin in expanded state when positioned inside accordion.
22
22
  $light-expansion-panel: (
23
23
  header-background: (
@@ -75,7 +75,11 @@ $light-expansion-panel: (
75
75
  ),
76
76
 
77
77
  expanded-margin: rem(8px),
78
- border-radius: rem(0),
78
+ border-radius: (
79
+ rem(0),
80
+ rem(0),
81
+ rem(16px),
82
+ ),
79
83
  );
80
84
 
81
85
  /// Generates a fluent expansion panel schema.
@@ -106,7 +110,6 @@ $fluent-expansion-panel: extend(
106
110
  /// @type {Map}
107
111
  /// @prop {Map} header-title-color [color: ('gray', 800)] - The panel header title text color.
108
112
  /// @prop {Map} header-description-color [color: ('gray', 600)] - The panel header description text color.
109
- /// @prop {Number} border-radius [0] - The border radius used for expansion-panel. Can be a fraction between 0 and 1, pixels, or percent.
110
113
  /// @requires {Map} $light-expansion-panel
111
114
  $bootstrap-expansion-panel: extend(
112
115
  $light-expansion-panel,
@@ -133,7 +136,7 @@ $bootstrap-expansion-panel: extend(
133
136
  /// @prop {Map} header-description-color [color: ('gray', 500)] - The panel header description text color.
134
137
  /// @prop {Map} header-icon-color [color: ('gray', 600)] - The panel header icon color.
135
138
  /// @prop {Map} disabled-color [color: ('gray', 400)] - The panel disabled text color.
136
- /// @prop {Number} border-radius [3px] - The border radius used for expansion-panel. Can be a fraction between 0 and 1, pixels, or percent.
139
+ /// @prop {List} border-radius [(rem(3px), rem(0), rem(16px))] - The border radius used for expansion-panel.
137
140
  /// @requires {Map} $light-expansion-panel
138
141
  $indigo-expansion-panel: extend(
139
142
  $light-expansion-panel,
@@ -167,6 +170,10 @@ $indigo-expansion-panel: extend(
167
170
  ),
168
171
  ),
169
172
 
170
- border-radius: rem(3px),
173
+ border-radius: (
174
+ rem(3px),
175
+ rem(0),
176
+ rem(16px),
177
+ ),
171
178
  )
172
179
  );
@@ -89,9 +89,9 @@
89
89
  /// @prop {Map} root-summaries-text-color [contrast-color: ('gray', 300)] - The text color of the summary groups located the footer.
90
90
  /// @prop {Map} row-drag-color [color: ('gray', 200))] - The color of the drag handle.
91
91
  /// @prop {Map} row-ghost-background [color: ('primary', 50))] - The background color of the dragged row.
92
- /// @prop {number} grid-elevation [2] - The elevation level, between 0-24, to be used for the grid.
93
- /// @prop {number} drag-elevation [5] - The elevation level, between 0-24, to be used for movable elements (ex. column header).
94
- /// @prop {Number} drop-area-border-radius [16px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
92
+ /// @prop {Number} grid-elevation [2] - The elevation level, between 0-24, to be used for the grid.
93
+ /// @prop {Number} drag-elevation [5] - The elevation level, between 0-24, to be used for movable elements (ex. column header).
94
+ /// @prop {List} drop-area-border-radius [(rem(16px), rem(0), rem(16px))] - The border radius used for drop-area.
95
95
  /// @requires {Map} $default-elevation-grid
96
96
  $light-grid: extend(
97
97
  $default-elevation-grid,
@@ -626,7 +626,11 @@ $light-grid: extend(
626
626
  ),
627
627
  ),
628
628
 
629
- drop-area-border-radius: rem(16px),
629
+ drop-area-border-radius: (
630
+ rem(16px),
631
+ rem(0),
632
+ rem(16px),
633
+ ),
630
634
  )
631
635
  );
632
636
 
@@ -653,7 +657,7 @@ $light-grid: extend(
653
657
  /// @prop {Map} row-ghost-background [color: 'surface'] - The background color of the dragged row.
654
658
  /// @prop {number} grid-elevation [0] - The elevation level, between 0-24, to be used for the grid.
655
659
  /// @prop {number} drag-elevation [1] - The elevation level, between 0-24, to be used for movable elements (ex. column header).
656
- /// @prop {Number} drop-area-border-radius [2px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
660
+ /// @prop {List} drop-area-border-radius [(rem(2px), rem(0), rem(16px))] - The border radius used for drop-area.
657
661
  /// @prop {Map} filtering-background-or [color: ('error', .5)] - The background color of advanced filtering "OR" condition.
658
662
  /// @prop {Map} filtering-background-or--focus [color: ('error')] - The background color on focus/selected of advanced filtering "OR" condition.
659
663
  /// @prop {Map} cell-selected-within-background [color: ('gray', 300)] - The background of the selected cell inside a selected row/column.
@@ -828,7 +832,11 @@ $fluent-grid: extend(
828
832
  color: 'surface',
829
833
  ),
830
834
 
831
- drop-area-border-radius: rem(2px),
835
+ drop-area-border-radius: (
836
+ rem(2px),
837
+ rem(0),
838
+ rem(16px),
839
+ ),
832
840
  )
833
841
  );
834
842
 
@@ -845,7 +853,7 @@ $fluent-grid: extend(
845
853
  /// @prop {Map} row-selected-hover-background [color: ('primary', 100)] - The selected row hover background.
846
854
  /// @prop {Map} pinned-border-color [color: ('gray', 400)] - The color of the pinned border.
847
855
  /// @prop {Map} resize-line-color [color: ('primary', 500)] - The table header resize line color.
848
- /// @prop {Number} drop-area-border-radius [4px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
856
+ /// @prop {List} drop-area-border-radius [(rem(4px), rem(0), rem(16px))] - The border radius used for drop-area.
849
857
  /// @prop {Map} cell-selected-within-background [color: ('primary', 100)] - The background of the selected cell inside a selected row/column.
850
858
  /// @prop {Map} cell-selected-within-text-color [contrast-color: ('primary', 100)] - The color of the selected cell inside a selected row/column.
851
859
  /// @prop {Map} row-selected-hover-text-color [contrast-color: ('primary', 100)] - The selected row hover text color.
@@ -984,7 +992,11 @@ $bootstrap-grid: extend(
984
992
  ),
985
993
  ),
986
994
 
987
- drop-area-border-radius: rem(4px),
995
+ drop-area-border-radius: (
996
+ rem(4px),
997
+ rem(0),
998
+ rem(16px),
999
+ ),
988
1000
  )
989
1001
  );
990
1002
 
@@ -1021,7 +1033,6 @@ $bootstrap-grid: extend(
1021
1033
  /// @prop {Map} drop-area-background [color: ('gray', 200)] - The drop area background color.
1022
1034
  /// @prop {Map} drop-area-text-color [contrast-color: ('gray', 200)] - The drop area text color.
1023
1035
  /// @prop {Map} drop-area-icon-color [contrast-color: ('gray', 200)] - The drop area icon color.
1024
- /// @prop {Number} drop-area-border-radius [16px] - The border radius used for drop-area. Can be a fraction between 0 and 1, pixels, or percent.
1025
1036
  /// @prop {Map} root-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the footer.
1026
1037
  /// @prop {Map} body-summaries-background [color: ('gray', 100)] - The background color of the summary groups located the body.
1027
1038
  /// @prop {Map} group-row-background [color: ('gray', 100)] - The grid group row background color.
@@ -51,9 +51,9 @@
51
51
  /// @prop {Map} error-shadow-color [color: ('error', 500, .38)] - The shadow/border color for error state for bootstrap input group.
52
52
  /// @prop {Map} placeholder-color [color: ('gray', 700)] - The placeholder color of an input group.
53
53
  /// @prop {Map} disabled-placeholder-color [color: ('gray', 500)] - The disabled placeholder color of an input group.
54
- /// @prop {Number} box-border-radius [4px 4px 0 0] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
55
- /// @prop {Number} border-border-radius [4px] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
56
- /// @prop {Number} search-border-radius [4px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
54
+ /// @prop {List} box-border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for box input.
55
+ /// @prop {List} border-border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for border input.
56
+ /// @prop {List} search-border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for search input.
57
57
  /// @prop {Map} input-prefix-color--filled [color: ('gray', 900)] - The input prefix color in the filled state.
58
58
  /// @prop {Color} input-prefix-background--filled [inherit] - The background color of an input prefix in the filled state.
59
59
  /// @prop {Map} input-prefix-color--focused [color: ('gray', 900)] - The input prefix color in the focused state.
@@ -280,9 +280,21 @@ $light-input-group: extend(
280
280
  100,
281
281
  ),
282
282
  ),
283
- box-border-radius: rem(4px),
284
- border-border-radius: rem(4px),
285
- search-border-radius: rem(4px),
283
+ box-border-radius: (
284
+ rem(4px),
285
+ rem(0),
286
+ rem(20px),
287
+ ),
288
+ border-border-radius: (
289
+ rem(4px),
290
+ rem(0),
291
+ rem(20px),
292
+ ),
293
+ search-border-radius: (
294
+ rem(4px),
295
+ rem(0),
296
+ rem(20px),
297
+ ),
286
298
  success-shadow-color: (
287
299
  color: (
288
300
  'success',
@@ -314,9 +326,9 @@ $light-input-group: extend(
314
326
  /// @prop {Number} search-resting-elevation [0] - The elevation level, between 0-24, to be used for the resting state of the search input.
315
327
  /// @prop {Number} search-hover-elevation [0] - The elevation level, between 0-24, to be used for the hover state of the search input.
316
328
  /// @prop {Number} search-disabled-elevation [0] - The elevation level, between 0-24, to be used for the disabled state of the search input.
317
- /// @prop {Number} box-border-radius [2px] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
318
- /// @prop {Number} border-border-radius [2px] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
319
- /// @prop {Number} search-border-radius [2px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
329
+ /// @prop {List} box-border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for box input.
330
+ /// @prop {List} border-border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for border input.
331
+ /// @prop {List} search-border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for search input.
320
332
  /// @prop {Map} input-prefix-color [color: ('gray', 700)] - The text color of an input prefix of type line, box and border.
321
333
  /// @prop {Map} input-prefix-color--filled [color: ('gray', 700)] - The input prefix color in the filled state.
322
334
  /// @prop {Map} input-prefix-color--focused [color: ('gray', 700)] - The input prefix color in the focused state.
@@ -461,9 +473,21 @@ $fluent-input-group: extend(
461
473
  100,
462
474
  ),
463
475
  ),
464
- box-border-radius: rem(2px),
465
- border-border-radius: rem(2px),
466
- search-border-radius: rem(2px),
476
+ box-border-radius: (
477
+ rem(2px),
478
+ rem(0),
479
+ rem(20px),
480
+ ),
481
+ border-border-radius: (
482
+ rem(2px),
483
+ rem(0),
484
+ rem(20px),
485
+ ),
486
+ search-border-radius: (
487
+ rem(2px),
488
+ rem(0),
489
+ rem(20px),
490
+ ),
467
491
  )
468
492
  );
469
493
 
@@ -478,9 +502,6 @@ $fluent-input-group: extend(
478
502
  /// @prop {Map} warning-secondary-color [color: ('warn', 500)] - The warning color used in the warning state.
479
503
  /// @prop {Map} error-secondary-color [color: ('error')] - The error color used in the error state.
480
504
  /// @prop {Map} disabled-text-color [color: ('gray', 400)] - The input text color in the disabled state.
481
- /// @prop {Number} box-border-radius [4px] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
482
- /// @prop {Number} border-border-radius [4px] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
483
- /// @prop {Number} search-border-radius [4px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
484
505
  /// @prop {Map} interim-bottom-line-color [color: ('primary', 500)] - The bottom line and border colors during the to-focused transition.
485
506
  /// @prop {Map} disabled-placeholder-color [color: ('gray', 400)] - The disabled placeholder color of an input group.
486
507
  /// @prop {Map} input-prefix-color [color: ('gray', 800)] - The input prefix color in the idle state.
@@ -644,9 +665,9 @@ $bootstrap-input-group: extend(
644
665
  /// @prop {Number} search-resting-elevation [1] - The elevation level, between 0-24, to be used for the resting state of the search input.
645
666
  /// @prop {Number} search-hover-elevation [1] - The elevation level, between 0-24, to be used for the hover state of the search input.
646
667
  /// @prop {Number} search-disabled-elevation [1] - The elevation level, between 0-24, to be used for the disabled state of the search input.
647
- /// @prop {Number} box-border-radius [0] - The border radius used for box input. Can be a fraction between 0 and 1, pixels, or percent.
648
- /// @prop {Number} border-border-radius [0] - The border radius used for border input. Can be a fraction between 0 and 1, pixels, or percent.
649
- /// @prop {Number} search-border-radius [2px] - The border radius used for search input. Can be a fraction between 0 and 1, pixels, or percent.
668
+ /// @prop {List} box-border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for box input.
669
+ /// @prop {List} border-border-radius [(rem(0), rem(0), rem(20px))] - The border radius used for border input.
670
+ /// @prop {List} search-border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for search input.
650
671
  /// @prop {Map} placeholder-color [color: ('gray', 300)] - The placeholder color of an input group.
651
672
  /// @prop {Map} disabled-placeholder-color [color: ('gray', 300)] - The disabled placeholder color of an input group.
652
673
  /// @prop {Map} input-prefix-color--filled [color: ('gray', 600)] - The input prefix color in the filled state.
@@ -781,9 +802,21 @@ $indigo-input-group: extend(
781
802
  300,
782
803
  ),
783
804
  ),
784
- box-border-radius: rem(0),
785
- border-border-radius: rem(0),
786
- search-border-radius: rem(2px),
805
+ box-border-radius: (
806
+ rem(0),
807
+ rem(0),
808
+ rem(20px),
809
+ ),
810
+ border-border-radius: (
811
+ rem(0),
812
+ rem(0),
813
+ rem(20px),
814
+ ),
815
+ search-border-radius: (
816
+ rem(2px),
817
+ rem(0),
818
+ rem(20px),
819
+ ),
787
820
  idle-secondary-color: (
788
821
  color: (
789
822
  'gray',
@@ -30,8 +30,8 @@
30
30
  /// @prop {Color} item-thumbnail-color ["'currentColor'"] - The list item thumbnail color.
31
31
  /// @prop {Color} item-thumbnail-color-hover ["'currentColor'"] - The list item thumbnail hover color.
32
32
  /// @prop {Color} item-thumbnail-color-active ["'currentColor'"] - The list item thumbnail active color.
33
- /// @prop {Number} border-radius [0] - The border radius used for list component. Can be a fraction between 0 and 1, pixels, or percent.
34
- /// @prop {Number} item-border-radius [0] - The border radius used for list item. Can be a fraction between 0 and 1, pixels, or percent.
33
+ /// @prop {List} border-radius [()] - The border radius used for list component.
34
+ /// @prop {List} item-border-radius [()] - The border radius used for list item.
35
35
  /// @prop {Number} border-color [transparent] - The list border color.
36
36
  /// @prop {Color} border-width [0] - The list border width.
37
37
  $light-list: (
@@ -117,8 +117,16 @@ $light-list: (
117
117
 
118
118
  border-width: 0,
119
119
 
120
- border-radius: rem(0),
121
- item-border-radius: rem(0),
120
+ border-radius: (
121
+ rem(0),
122
+ rem(0),
123
+ rem(24px),
124
+ ),
125
+ item-border-radius: (
126
+ rem(0),
127
+ rem(0),
128
+ rem(24px),
129
+ ),
122
130
  );
123
131
 
124
132
  /// Generates a fluent list schema.
@@ -133,8 +141,7 @@ $fluent-list: $light-list;
133
141
  /// @prop {Map} item-text-color [color: ('gray', 900)] - The list item text color.
134
142
  /// @prop {Map} item-text-color-hover [color: ('gray', 900)] - The list item text color.
135
143
  /// @prop {Map} item-text-color-active [color: ('gray', 900)] - The active list item text color.
136
- /// @prop {Number} border-radius [4px] - The border radius used for list component. Can be a fraction between 0 and 1, pixels, or percent.
137
- /// @prop {Number} item-border-radius [0] - The border radius used for list item. Can be a fraction between 0 and 1, pixels, or percent.
144
+ /// @prop {List} border-radius [(rem(4px), rem(0), rem(24px))] - The border radius used for list component.
138
145
  /// @prop {Number} border-color [color: ('gray', 300)] - The list border color.
139
146
  /// @prop {Color} border-width [rem(1px)] - The list border width.
140
147
  /// @requires {Map} $light-list
@@ -184,7 +191,11 @@ $bootstrap-list: extend(
184
191
  ),
185
192
  ),
186
193
 
187
- border-radius: rem(4px),
194
+ border-radius: (
195
+ rem(4px),
196
+ rem(0),
197
+ rem(24px),
198
+ ),
188
199
  )
189
200
  );
190
201
 
@@ -205,8 +216,7 @@ $bootstrap-list: extend(
205
216
  /// @prop {Color} item-thumbnail-color [color: ('gray', 600)] - The list item thumbnail color.
206
217
  /// @prop {Color} item-thumbnail-color-hover [color: ('gray', 600)] - The list item thumbnail hover color.
207
218
  /// @prop {Color} item-thumbnail-color-active [color: ('gray', 600)] - The list item thumbnail active color.
208
- /// @prop {Number} border-radius [0] - The border radius used for list component. Can be a fraction between 0 and 1, pixels, or percent.
209
- /// @prop {Number} item-border-radius [2px] - The border radius used for list item. Can be a fraction between 0 and 1, pixels, or percent.
219
+ /// @prop {List} item-border-radius [(rem(2px), rem(0), rem(24px))] - The border radius used for list item.
210
220
  /// @requires {Map} $light-list
211
221
  $indigo-list: extend(
212
222
  $light-list,
@@ -316,6 +326,10 @@ $indigo-list: extend(
316
326
  ),
317
327
  ),
318
328
 
319
- item-border-radius: rem(2px),
329
+ item-border-radius: (
330
+ rem(2px),
331
+ rem(0),
332
+ rem(24px),
333
+ ),
320
334
  )
321
335
  );
@@ -22,8 +22,8 @@
22
22
  /// @prop {Map} item-hover-text-color [color: ('gray', 900)] - The item's hover text color.
23
23
  /// @prop {Map} item-hover-icon-color [color: ('gray', 900)] - The item's hover icon color.
24
24
  /// @prop {Map} elevation [16] - The elevation level, between 0-24, to be used for the drawer.
25
- /// @prop {Number} border-radius [0] - The border radius used for the navdrawer component. Can be a fraction between 0 and 1, pixels, or percent.
26
- /// @prop {Number} item-border-radius [4px] - The border radius used for the navdrawer items. Can be a fraction between 0 and 1, pixels, or percent.
25
+ /// @prop {List} border-radius [(rem(0), rem(0), rem(36px))] - The border radius used for the navdrawer component.
26
+ /// @prop {List} item-border-radius [(rem(4px), rem(0), rem(24px))] - The border radius used for the navdrawer items.
27
27
  /// @requires {Map} $default-elevation-navdrawer
28
28
  $light-navdrawer: extend(
29
29
  $default-elevation-navdrawer,
@@ -105,8 +105,16 @@ $light-navdrawer: extend(
105
105
  ),
106
106
  ),
107
107
 
108
- border-radius: rem(0),
109
- item-border-radius: rem(4px),
108
+ border-radius: (
109
+ rem(0),
110
+ rem(0),
111
+ rem(36px),
112
+ ),
113
+ item-border-radius: (
114
+ rem(4px),
115
+ rem(0),
116
+ rem(24px),
117
+ ),
110
118
  )
111
119
  );
112
120
 
@@ -133,8 +141,7 @@ $bootstrap-navdrawer: $light-navdrawer;
133
141
  /// @prop {Map} item-hover-text-color [contrast-color: ('gray', 700)] - The item's hover text color.
134
142
  /// @prop {Map} item-hover-icon-color [contrast-color: ('gray', 700)] - The item's hover icon color.
135
143
  /// @prop {Map} elevation [0] - The elevation level, between 0-24, to be used for the drawer.
136
- /// @prop {Number} border-radius [0] - The border radius used for the navdrawer component. Can be a fraction between 0 and 1, pixels, or percent.
137
- /// @prop {Number} item-border-radius [24px] - The border radius used for the navdrawer items. Can be a fraction between 0 and 1, pixels, or percent.
144
+ /// @prop {List} item-border-radius [(rem(24px), rem(0), rem(24px))] - The border radius used for the navdrawer items.
138
145
  /// @requires {Map} $light-navdrawer
139
146
  /// @requires {Map} $indigo-elevation-navdrawer
140
147
  $indigo-navdrawer: extend(
@@ -209,6 +216,10 @@ $indigo-navdrawer: extend(
209
216
  ),
210
217
  ),
211
218
 
212
- item-border-radius: rem(24px),
219
+ item-border-radius: (
220
+ rem(24px),
221
+ rem(0),
222
+ rem(24px),
223
+ ),
213
224
  )
214
225
  );
@@ -17,7 +17,7 @@
17
17
  /// @prop {Map} fill-color-success [color: ('success')] - The track success fill color.
18
18
  /// @prop {Map} stripes-color [color: ('gray', 50, .7)] - The track stripes color.
19
19
  /// @prop {Map} text-color [color: ('gray', 700)] - The track value text color.
20
- /// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
20
+ /// @prop {List} track-border-radius [(rem(0), rem(0), rem(8px))] - The border radius used for the progress bar track.
21
21
  $light-progress-linear: extend(
22
22
  (
23
23
  track-color: (
@@ -73,13 +73,16 @@ $light-progress-linear: extend(
73
73
  ),
74
74
  ),
75
75
 
76
- track-border-radius: rem(0),
76
+ track-border-radius: (
77
+ rem(0),
78
+ rem(0),
79
+ rem(8px),
80
+ ),
77
81
  )
78
82
  );
79
83
 
80
84
  /// Generates a fluent progress-linear schema.
81
85
  /// @type {Map}
82
- /// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
83
86
  /// @requires $light-progress-linear
84
87
  $fluent-progress-linear: $light-progress-linear;
85
88
 
@@ -87,7 +90,7 @@ $fluent-progress-linear: $light-progress-linear;
87
90
  /// @type {Map}
88
91
  /// @prop {Map} track-color [color: ('gray', 200)] - The main track color.
89
92
  /// @prop {Map} stripes-color [color: ('gray', 50, .15)] - The track stripes color.
90
- /// @prop {Number} track-border-radius [4px] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
93
+ /// @prop {List} track-border-radius [(rem(4px), rem(0), rem(8px))] - The border radius used for the progress bar track.
91
94
  /// @requires $light-progress-linear
92
95
  $bootstrap-progress-linear: extend(
93
96
  $light-progress-linear,
@@ -107,7 +110,11 @@ $bootstrap-progress-linear: extend(
107
110
  ),
108
111
  ),
109
112
 
110
- track-border-radius: rem(4px),
113
+ track-border-radius: (
114
+ rem(4px),
115
+ rem(0),
116
+ rem(8px),
117
+ ),
111
118
  )
112
119
  );
113
120
 
@@ -115,7 +122,6 @@ $bootstrap-progress-linear: extend(
115
122
  /// @type {Map}
116
123
  /// @prop {Map} track-color [color: ('gray', 300)] - The main track color.
117
124
  /// @prop {Map} stripes-color [color: ('gray', 50, .45)] - The track stripes color.
118
- /// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
119
125
  /// @requires $light-progress-linear
120
126
  $indigo-progress-linear: extend(
121
127
  $light-progress-linear,
@@ -142,7 +148,7 @@ $indigo-progress-linear: extend(
142
148
  /// @prop {Map} base-circle-color [color: ('gray', 300)] - The base circle fill color.
143
149
  /// @prop {Map} progress-circle-color [color: ('primary', 500)] - The progress circle fill color.
144
150
  /// @prop {Map} text-color [color: ('gray', 700)] - The value text color.
145
- /// @prop {Number} track-border-radius [0] - The border radius used for the progress bar track. Can be a fraction between 0 and 1, pixels, or percent.
151
+ /// @prop {List} track-border-radius [rem(0)] - The border radius used for the progress bar track.
146
152
  $light-progress-circular: extend(
147
153
  (
148
154
  base-circle-color: (
@@ -15,10 +15,17 @@
15
15
  /// @prop {Map} toggle-button-background-focus [color: ('gray', 400, .3)] - The select toggle button background color when the select is focused.
16
16
  /// @prop {Map} toggle-button-foreground [color: ('gray', 700)] - The select toggle button foreground color.
17
17
  /// @prop {Map} toggle-button-foreground-focus [color: ('gray', 700)] - The select toggle button foreground color when the select is focused.
18
- /// @prop {Map} toggle-button-foreground-filled [color: ('gray', 900)] - The select toggle button foreground color when the select is focused.
19
- /// @prop {Map} toggle-button-background-disabled [color: ('gray', 300] - The select toggle button background color when the select is disabled.
18
+ /// @prop {Map} toggle-button-foreground-filled [color: ('gray', 900)] - The select toggle button foreground color when the select is filled.
19
+ /// @prop {Map} toggle-button-background-disabled [color: ('gray', 100] - The select toggle button background color when the select is disabled.
20
20
  /// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 500)] - The select toggle button foreground color when the select is disabled.
21
+ /// @prop {Map} toggle-button-background-focus--border [color: ('gray', 300)] The select toggle button background color when the select is focused in material border variant.
21
22
  $light-select: (
23
+ toggle-button-background-focus--border: (
24
+ color: (
25
+ 'gray',
26
+ 300,
27
+ ),
28
+ ),
22
29
  toggle-button-background: (
23
30
  color: (
24
31
  'gray',
@@ -53,7 +60,7 @@ $light-select: (
53
60
  toggle-button-background-disabled: (
54
61
  color: (
55
62
  'gray',
56
- 300,
63
+ 100,
57
64
  ),
58
65
  ),
59
66
  toggle-button-foreground-disabled: (
@@ -69,7 +76,6 @@ $light-select: (
69
76
  /// @prop {Map} toggle-button-background [color: ('gray', 100)] - The select toggle button background color.
70
77
  /// @prop {Map} toggle-button-background-focus [color: ('gray', 100)] - The select toggle button background color when the select is focused.
71
78
  /// @prop {Map} toggle-button-foreground-filled [color: ('gray', 700)] - The select toggle button foreground color when the select is focused.
72
- /// @prop {Map} toggle-button-background-disabled [color: ('gray', 100] - The select toggle button background color when the select is disabled.
73
79
  /// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 400)] - The select toggle button foreground color when the select is disabled.
74
80
  /// @requires {Map} $light-select
75
81
  $fluent-select: extend(
@@ -93,12 +99,6 @@ $fluent-select: extend(
93
99
  700,
94
100
  ),
95
101
  ),
96
- toggle-button-background-disabled: (
97
- color: (
98
- 'gray',
99
- 100,
100
- ),
101
- ),
102
102
  toggle-button-foreground-disabled: (
103
103
  color: (
104
104
  'gray',
@@ -110,7 +110,6 @@ $fluent-select: extend(
110
110
 
111
111
  /// Generates a bootstrap select schema.
112
112
  /// @type {Map}
113
- /// @prop {Map} toggle-button-background-disabled [color: ('gray', 300] - The select toggle button background color when the select is disabled.
114
113
  /// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 400)] - The select toggle button foreground color when the select is disabled.
115
114
  /// @prop {Map} toggle-button-foreground [color: ('gray', 800)] - The select toggle button foreground color.
116
115
  /// @prop {Map} toggle-button-foreground-focus [color: ('gray', 800)] - The select toggle button foreground color when the select is focused.
@@ -119,12 +118,6 @@ $fluent-select: extend(
119
118
  $bootstrap-select: extend(
120
119
  $light-select,
121
120
  (
122
- toggle-button-background-disabled: (
123
- color: (
124
- 'gray',
125
- 300,
126
- ),
127
- ),
128
121
  toggle-button-foreground-disabled: (
129
122
  color: (
130
123
  'gray',
@@ -154,18 +147,13 @@ $bootstrap-select: extend(
154
147
 
155
148
  /// Generates an indigo select schema.
156
149
  /// @type {Map}
157
- /// @prop {Map} toggle-button-background-disabled [color: ('gray', 100] - The select toggle button background color when the select is disabled.
150
+ /// @prop {Color} toggle-button-background-disabled [transparent] - The select toggle button background color when the select is disabled.
158
151
  /// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 300)] - The select toggle button foreground color when the select is disabled.
159
152
  /// @requires {Map} $light-select
160
153
  $indigo-select: extend(
161
154
  $light-select,
162
155
  (
163
- toggle-button-background-disabled: (
164
- color: (
165
- 'gray',
166
- 100,
167
- ),
168
- ),
156
+ toggle-button-background-disabled: transparent,
169
157
  toggle-button-foreground-disabled: (
170
158
  color: (
171
159
  'gray',