igniteui-theming 3.2.1 → 3.2.2

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.2.1",
3
+ "version": "3.2.2",
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": {
@@ -17,8 +17,8 @@ $dark-rating: $light-rating;
17
17
  /// @type {Map}
18
18
  /// @prop {Map} symbol-full-color [color: ('gray', 800)] - sets the color in selected state for the symbol when it is a plane text.
19
19
  /// @prop {Map} symbol-empty-color [color: ('gray', 400)] - sets the idle color for the symbol when it is a plane text.
20
- /// @prop {Map} disabled-full-symbols-color [color: ('warn', 900)] - sets the color for the symbol in selected/disabled state when it is a plane text.
21
- /// @prop {Map} disabled-empty-symbols-color [color: ('gray', 900)] - sets the idle color for the symbol in disabled state when it is a plane text.
20
+ /// @prop {Map} disabled-full-symbol-color [color: ('warn', 900)] - sets the color for the symbol in selected/disabled state when it is a plane text.
21
+ /// @prop {Map} disabled-empty-symbol-color [color: ('warn', 900)] - sets the idle color for the symbol in disabled state when it is a plane text.
22
22
  /// @requires $fluent-rating
23
23
  $dark-fluent-rating: extend(
24
24
  $fluent-rating,
@@ -43,7 +43,7 @@ $dark-fluent-rating: extend(
43
43
  ),
44
44
  disabled-empty-symbol-color: (
45
45
  color: (
46
- 'gray',
46
+ 'warn',
47
47
  900,
48
48
  ),
49
49
  ),
@@ -17,8 +17,8 @@
17
17
  /// @prop {Function} symbol-empty-filter [grayscale(100%) opacity(50%)] - the filter(s) used for the empty symbol.
18
18
  /// @prop {Function} symbol-full-filter [grayscale(50%)] - the filter(s) used for the filled symbol.
19
19
  /// @prop {Map} disabled-label-color [color: ('gray', 400)] - sets the color for the label in disabled state.
20
- /// @prop {Map} disabled-empty-symbols-color [color: ('gray', 400)] - sets the idle color for the symbol in disabled state when it is a plane text.
21
- /// @prop {Map} disabled-full-symbols-color [color: ('gray', 600)] - sets the color for the symbol in selected/disabled state when it is a plane text.
20
+ /// @prop {Map} disabled-empty-symbol-color [color: ('gray', 400)] - sets the idle color for the symbol in disabled state when it is a plane text.
21
+ /// @prop {Map} disabled-full-symbol-color [color: ('gray', 600)] - sets the color for the symbol in selected/disabled state when it is a plane text.
22
22
  /// Generates a light rating schema.
23
23
  /// @type {Map}
24
24
  $light-rating: (
@@ -85,9 +85,8 @@ $light-rating: (
85
85
  /// @prop {Map} disabled-idle-symbols-color [color: ('gray', 200)] - sets the idle color for the symbol in disabled state when it is a plane text.
86
86
  /// @prop {Map} symbol-empty-color [color: ('gray', 700)] - sets the idle color for the symbol when it is a plane text.
87
87
  /// @prop {Map} symbol-full-color [[color: ('warn', 900)] - sets the color in selected state for the symbol when it is a plane text.
88
- /// @prop {Map} disabled-empty-symbols-color [color: ('warn', 100)] - sets the idle color for the symbol in disabled state when it is a plane text.
89
- /// @prop {Map} disabled-full-symbols-color [color: ('warn', 100)] - sets the color for the symbol in selected/disabled state when it is a plane text.
90
- /// @prop {Map} disabled-selected-symbols-color [color: ('gray', 500)] - sets the color for the symbol in selected/disabled state when it is a plane text.
88
+ /// @prop {Map} disabled-empty-symbol-color [color: ('warn', 100)] - sets the idle color for the symbol in disabled state when it is a plane text.
89
+ /// @prop {Map} disabled-full-symbol-color [color: ('warn', 100)] - sets the color for the symbol in selected/disabled state when it is a plane text.
91
90
  /// @requires {Map} $light-rating
92
91
  $fluent-rating: extend(
93
92
  $light-rating,
@@ -116,13 +115,13 @@ $fluent-rating: extend(
116
115
  400,
117
116
  ),
118
117
  ),
119
- disabled-empty-symbols-color: (
118
+ disabled-empty-symbol-color: (
120
119
  color: (
121
120
  'warn',
122
121
  100,
123
122
  ),
124
123
  ),
125
- disabled-full-symbols-color: (
124
+ disabled-full-symbol-color: (
126
125
  color: (
127
126
  'warn',
128
127
  100,