igniteui-theming 1.4.6-beta.1 → 1.4.7
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": "1.4.
|
|
3
|
+
"version": "1.4.7",
|
|
4
4
|
"description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
/// @prop {Map} cell-selected-background [color: ('gray', 200)] - The selected cell background color.
|
|
45
45
|
/// @prop {Map} cell-selected-text-color [contrast-color: ('gray', 200)] - The selected cell text color.
|
|
46
46
|
/// @prop {Color} cell-editing-background [color: ('gray', 50)] - The editing background color of a cell.
|
|
47
|
-
/// @prop {Map}
|
|
47
|
+
/// @prop {Map} cell-editing-foreground [color: ('gray', 900)] - The cell text color in edit mode
|
|
48
|
+
/// @prop {Map} cell-editing-focus-foreground [color: ('gray', 900)] - The cell text color in edit mode on focus.
|
|
49
|
+
/// @prop {Map} edit-mode-color [color: ('secondary', 500)] - The color applied around the row/cell when in editing mode.
|
|
48
50
|
/// @prop {Map} edited-row-indicator [color: ('gray', 400)] - The indicator's color of edited row.
|
|
49
51
|
/// @prop {String} cell-new-color [inherit] - The text color of a new, unedited cell. Used when adding new row in a grid.
|
|
50
52
|
/// @prop {Map} cell-edited-value-color [color: ('gray', 600)] - The color of cell edited value.
|
|
@@ -391,6 +393,20 @@ $light-grid: extend(
|
|
|
391
393
|
),
|
|
392
394
|
),
|
|
393
395
|
|
|
396
|
+
cell-editing-foreground: (
|
|
397
|
+
color: (
|
|
398
|
+
'gray',
|
|
399
|
+
900,
|
|
400
|
+
),
|
|
401
|
+
),
|
|
402
|
+
|
|
403
|
+
cell-editing-focus-foreground: (
|
|
404
|
+
color: (
|
|
405
|
+
'gray',
|
|
406
|
+
900,
|
|
407
|
+
),
|
|
408
|
+
),
|
|
409
|
+
|
|
394
410
|
edit-mode-color: (
|
|
395
411
|
color: (
|
|
396
412
|
'secondary',
|