igniteui-theming 27.2.1 → 27.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "27.2.1",
3
+ "version": "27.3.0",
4
4
  "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -52,6 +52,7 @@
52
52
  /// @param {String} $row-border-width [null] - The row bottom border width.
53
53
  /// @param {String} $row-border-style [null] - The row bottom border style.
54
54
  /// @param {Color} $row-border-color [null] - The row bottom border color. Auto-derived from content-background.
55
+ /// @param {Color} $action-border-color [null] - The color used for action borders.
55
56
  /// @param {String} $pinned-border-width [null] - The border width of the pinned border.
56
57
  /// @param {String} $pinned-border-style [null] - The CSS border style of the pinned border.
57
58
  /// @param {Color} $pinned-border-color [null] - The color of the pinned border. Auto-derived from content-background.
@@ -160,6 +161,8 @@
160
161
  $row-border-style: null,
161
162
  $row-border-color: null,
162
163
 
164
+ $action-border-color: null,
165
+
163
166
  $pinned-border-width: null,
164
167
  $pinned-border-style: null,
165
168
  $pinned-border-color: null,
@@ -396,6 +399,10 @@
396
399
  $row-border-color: hsl(from color-mix(in srgb, var(--foreground) 16%, var(--background)) h s l / 0.38);
397
400
  }
398
401
 
402
+ @if not($action-border-color) and $foreground and $background {
403
+ $action-border-color: color-mix(in srgb, var(--foreground) 20%, var(--background));
404
+ }
405
+
399
406
  @if not($pinned-border-color) and $foreground and $background {
400
407
  $pinned-border-color: color-mix(in srgb, var(--foreground) 20%, var(--background));
401
408
  }
@@ -682,6 +689,8 @@
682
689
  row-border-style: $row-border-style,
683
690
  row-border-color: $row-border-color,
684
691
 
692
+ action-border-color: $action-border-color,
693
+
685
694
  pinned-border-width: $pinned-border-width,
686
695
  pinned-border-style: $pinned-border-style,
687
696
  pinned-border-color: $pinned-border-color,
@@ -12,6 +12,7 @@
12
12
  /// @prop {Color} content-background [color: 'surface'] - The table body background color.
13
13
  /// @prop {Map} drop-area-background [color: ('gray', 100, .4)] - The drop area background color.
14
14
  /// @prop {Map} header-border-color [color: ('gray', 200)] - The color used for header borders.
15
+ /// @prop {Map} action-border-color [color: ('gray', 200)] - The color used for action borders.
15
16
  /// @prop {Map} header-background [color: ('gray', 100)] - The table header background color.
16
17
  /// @prop {Map} header-selected-background [color: ('secondary', 600)] - The table header background color when selected (ex. column selection).
17
18
  /// @prop {Map} header-selected-text-color [contrast-color: ('secondary', 600)] - The table header text color when selected (ex. column selection).
@@ -54,6 +55,13 @@ $base-dark-grid: (
54
55
  ),
55
56
  ),
56
57
 
58
+ action-border-color: (
59
+ color: (
60
+ 'gray',
61
+ 200,
62
+ ),
63
+ ),
64
+
57
65
  header-background: (
58
66
  color: (
59
67
  'gray',
@@ -456,6 +464,7 @@ $dark-bootstrap-grid: extend(
456
464
  /// @type Map
457
465
  /// @prop {Map} content-text-color [contrast-color: ('gray', 50, .8)] - The table body text color.
458
466
  /// @prop {Map} header-border-color [color: ('gray', 200)] - The color used for header borders.
467
+ /// @prop {Map} action-border-color [color: ('gray', 200)] - The color used for action borders.
459
468
  /// @prop {Map} header-text-color [contrast-color: ('gray', 50, .9)] - The table header text color.
460
469
  /// @prop {Map} header-selected-background [color: ('primary', 900)] - The table header background color when selected (ex. column selection).
461
470
  /// @prop {Map} header-selected-text-color [contrast-color: ('gray' 50)] - The table header text color when selected (ex. column selection).
@@ -528,6 +537,13 @@ $dark-indigo-grid: extend(
528
537
  ),
529
538
  ),
530
539
 
540
+ action-border-color: (
541
+ color: (
542
+ 'gray',
543
+ 200,
544
+ ),
545
+ ),
546
+
531
547
  header-text-color: (
532
548
  contrast-color: (
533
549
  'gray',
@@ -17,6 +17,7 @@
17
17
  /// @prop {Number} header-border-width [1px] - The border width used for header borders.
18
18
  /// @prop {String} header-border-style [solid] - The border style used for header borders.
19
19
  /// @prop {Map} header-border-color [color: ('gray', 400)] - The color used for header borders.
20
+ /// @prop {Map} action-border-color [color: ('gray', 400)] - The color used for action borders.
20
21
  /// @prop {Map} ghost-header-text-color [color: ('gray', 700)] - The dragged header text color.
21
22
  /// @prop {Map} ghost-header-icon-color [color: ('gray', 600)] - The dragged header icon color.
22
23
  /// @prop {Map} ghost-header-background [color: ('gray', 50)] - The dragged header background color.
@@ -179,6 +180,13 @@ $light-grid: extend(
179
180
  ),
180
181
  ),
181
182
 
183
+ action-border-color: (
184
+ color: (
185
+ 'gray',
186
+ 400,
187
+ ),
188
+ ),
189
+
182
190
  ghost-header-background: (
183
191
  color: (
184
192
  'gray',
@@ -839,6 +847,7 @@ $material-grid: extend(
839
847
  /// @prop {Map} header-selected-background [color: ('gray', 200)] - The table header background color when selected (ex. column selection).
840
848
  /// @prop {Map} header-selected-text-color [contrast-color: ('gray', 200)] - The table header text color when selected (ex. column selection).
841
849
  /// @prop {Map} header-border-color [color: ('gray', 300)] - The color used for header borders.
850
+ /// @prop {Map} action-border-color [color: ('gray', 300)] - The color used for action borders.
842
851
  /// @prop {Map} row-selected-background [color: ('gray', 200)] - The selected row background color.
843
852
  /// @prop {Map} row-selected-hover-background [color: ('gray', 300)] - The selected row hover background.
844
853
  /// @prop {Map} body-column-selected-border-color [color: ('gray', 200)] - The border color used for the body column when in group-row state.
@@ -904,6 +913,13 @@ $fluent-grid: extend(
904
913
  ),
905
914
  ),
906
915
 
916
+ action-border-color: (
917
+ color: (
918
+ 'gray',
919
+ 300,
920
+ ),
921
+ ),
922
+
907
923
  row-border-color: (
908
924
  color: (
909
925
  'gray',
@@ -1226,6 +1242,7 @@ $bootstrap-grid: extend(
1226
1242
  /// @prop {Map} header-selected-background [color: ('primary', 50)] - The table header background color when selected (ex. column selection).
1227
1243
  /// @prop {Map} header-selected-text-color [color: 'gray', 900] - The table header text color when selected (ex. column selection).
1228
1244
  /// @prop {Map} header-border-color [color: ('gray', 400)] - The color used for header borders.
1245
+ /// @prop {Map} action-border-color [color: ('gray', 400)] - The color used for action borders.
1229
1246
  /// @prop {Map} filtering-row-background [color: ('surface', 500)] - The background color of the filtering row.
1230
1247
  /// @prop {Map} filtering-dialog-background [contrast-color: ('gray', 900)] - The background color of the advanced filtering dialog.
1231
1248
  /// @prop {Map} edited-row-indicator [color: ('primary', 400)] - The indicator's color of edited row.
@@ -1330,6 +1347,13 @@ $indigo-grid: extend(
1330
1347
  ),
1331
1348
  ),
1332
1349
 
1350
+ action-border-color: (
1351
+ color: (
1352
+ 'gray',
1353
+ 400,
1354
+ ),
1355
+ ),
1356
+
1333
1357
  filtering-header-background: (
1334
1358
  color: (
1335
1359
  'gray',