igniteui-theming 3.0.4 → 3.0.6

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": "3.0.4",
3
+ "version": "3.0.6",
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": {
@@ -48,9 +48,11 @@ $dark-bootstrap-checkbox: extend(
48
48
  /// Generates a dark indigo checkbox schema.
49
49
  /// @type {Map}
50
50
  /// @prop {Map} fill-color [color: ('gray', 900)] - The checked border and fill colors.
51
+ /// @prop {Map} fill-color-hover [color: ('gray', 900)] - The checked border and fill colors on hover.
51
52
  /// @prop {Map} empty-color [color: ('gray', 700)] - The unchecked border color.
52
53
  /// @prop {Map} disabled-color [color: ('gray', 400)] - The disabled border and fill colors.
53
54
  /// @prop {Map} disabled-color-label [color: ('gray', 400)] - The disabled label color.
55
+ /// @prop {Map} disabled-indeterminate-color [color: ('gray', 200)] - The disabled border and fill colors in checked/indeterminate state.
54
56
  /// @requires $indigo-checkbox
55
57
  $dark-indigo-checkbox: extend(
56
58
  $indigo-checkbox,
@@ -61,6 +63,12 @@ $dark-indigo-checkbox: extend(
61
63
  900,
62
64
  ),
63
65
  ),
66
+ fill-color-hover: (
67
+ color: (
68
+ 'gray',
69
+ 900,
70
+ ),
71
+ ),
64
72
  empty-color: (
65
73
  color: (
66
74
  'gray',
@@ -79,5 +87,11 @@ $dark-indigo-checkbox: extend(
79
87
  400,
80
88
  ),
81
89
  ),
90
+ disabled-indeterminate-color: (
91
+ color: (
92
+ 'gray',
93
+ 200,
94
+ ),
95
+ ),
82
96
  )
83
97
  );
@@ -251,7 +251,7 @@ $bootstrap-checkbox: extend(
251
251
  /// @prop {Map} fill-color-hover [color: ('primary', 400)] - The checked border and fill colors on hover.
252
252
  /// @prop {Map} empty-color [color: ('gray', 500)] - The unchecked border color.
253
253
  /// @prop {Map} disabled-color [color: ('gray', 300)] - The disabled border and fill colors.
254
- /// @prop {Map} disabled-indeterminate-color [color: ('primary', 500, .3)] - The disabled border and fill colors in checked/indeterminate state.
254
+ /// @prop {Map} disabled-indeterminate-color [color: ('primary', 200)] - The disabled border and fill colors in checked/indeterminate state.
255
255
  /// @prop {Map} disabled-color-label [color: ('gray', 300)] - The disabled label color.
256
256
  /// @prop {Map} focus-outline-color [color: ('gray', 300)] - The focus outlined color.
257
257
  /// @prop {Map} focus-outline-color-focused [color: ('primary', 200)] - The focus outlined color for focused state.
@@ -313,8 +313,7 @@ $indigo-checkbox: extend(
313
313
  disabled-indeterminate-color: (
314
314
  color: (
315
315
  'primary',
316
- 500,
317
- 0.3,
316
+ 200,
318
317
  ),
319
318
  ),
320
319
  error-color-hover: (