igniteui-theming 3.2.0-beta.1 → 3.2.1

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.0-beta.1",
3
+ "version": "3.2.1",
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": {
@@ -15,8 +15,40 @@ $dark-rating: $light-rating;
15
15
 
16
16
  /// Generates a dark fluent rating schema.
17
17
  /// @type {Map}
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
+ /// @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.
18
22
  /// @requires $fluent-rating
19
- $dark-fluent-rating: $fluent-rating;
23
+ $dark-fluent-rating: extend(
24
+ $fluent-rating,
25
+ (
26
+ symbol-full-color: (
27
+ color: (
28
+ 'gray',
29
+ 800,
30
+ ),
31
+ ),
32
+ symbol-empty-color: (
33
+ color: (
34
+ 'gray',
35
+ 400,
36
+ ),
37
+ ),
38
+ disabled-full-symbol-color: (
39
+ color: (
40
+ 'warn',
41
+ 900,
42
+ ),
43
+ ),
44
+ disabled-empty-symbol-color: (
45
+ color: (
46
+ 'gray',
47
+ 900,
48
+ ),
49
+ ),
50
+ )
51
+ );
20
52
 
21
53
  /// Generates a dark bootstrap rating schema.
22
54
  /// @type {Map}
@@ -9,25 +9,33 @@
9
9
 
10
10
  /* stylelint-disable max-line-length */
11
11
 
12
- /// @prop {Map} label-color [color: ('gray', 700)] - sets the color for the label.
12
+ /// @prop {Map} label-color [color: ('gray', 900)] - sets the color for the label.
13
+ /// @prop {Map} value-label [color: ('gray', 700)] - sets the color for the value label.
13
14
  /// @prop {Number} symbol-size [rem(36px)] - the size of the symbols.
14
15
  /// @prop {Map} symbol-empty-color [color: ('gray', 900)] - sets the idle color for the symbol when it is a plane text.
15
16
  /// @prop {Map} symbol-full-color [color: ('primary')] - sets the color in selected state for the symbol when it is a plane text.
16
- /// @prop {Color} symbol-empty-filter [grayscale(100%) opacity(50%)] - the filter(s) used for the empty symbol.
17
- /// @prop {Color} symbol-full-filter [grayscale(50%)] - the filter(s) used for the filled symbol.
17
+ /// @prop {Function} symbol-empty-filter [grayscale(100%) opacity(50%)] - the filter(s) used for the empty symbol.
18
+ /// @prop {Function} symbol-full-filter [grayscale(50%)] - the filter(s) used for the filled symbol.
18
19
  /// @prop {Map} disabled-label-color [color: ('gray', 400)] - sets the color for the label in disabled state.
19
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.
20
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.
21
22
  /// Generates a light rating schema.
22
23
  /// @type {Map}
23
24
  $light-rating: (
25
+ symbol-size: null,
26
+
24
27
  label-color: (
28
+ color: (
29
+ 'gray',
30
+ 900,
31
+ ),
32
+ ),
33
+ value-label: (
25
34
  color: (
26
35
  'gray',
27
36
  700,
28
37
  ),
29
38
  ),
30
- symbol-size: null,
31
39
  symbol-empty-color: (
32
40
  color: (
33
41
  'gray',
@@ -40,10 +48,10 @@ $light-rating: (
40
48
  ),
41
49
  ),
42
50
  symbol-empty-filter: (
43
- grayscale(1),
51
+ grayscale(100%) opacity(50%),
44
52
  ),
45
53
  symbol-full-filter: (
46
- grayscale(0),
54
+ grayscale(50%),
47
55
  ),
48
56
  disabled-label-color: (
49
57
  color: (
@@ -51,6 +59,12 @@ $light-rating: (
51
59
  400,
52
60
  ),
53
61
  ),
62
+ disabled-value-label: (
63
+ color: (
64
+ 'gray',
65
+ 400,
66
+ ),
67
+ ),
54
68
  disabled-empty-symbol-color: (
55
69
  color: (
56
70
  'gray',
@@ -60,37 +74,58 @@ $light-rating: (
60
74
  disabled-full-symbol-color: (
61
75
  color: (
62
76
  'warn',
63
- 500,
64
- 0.38,
77
+ 200,
65
78
  ),
66
79
  ),
67
80
  );
68
81
 
69
82
  /// Generates a fluent rating schema.
70
83
  /// @type {Map}
71
- /// @prop {Map} label-color [color: ('gray', 900)] - sets the color for the label.
84
+ /// @prop {Map} value-label [color: ('gray', 900)] - sets the color for the value label.
72
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
+ /// @prop {Map} symbol-empty-color [color: ('gray', 700)] - sets the idle color for the symbol when it is a plane text.
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.
73
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.
74
91
  /// @requires {Map} $light-rating
75
92
  $fluent-rating: extend(
76
93
  $light-rating,
77
94
  (
78
- label-color: (
95
+ value-label: (
79
96
  color: (
80
97
  'gray',
81
98
  900,
82
99
  ),
83
100
  ),
84
- disabled-empty-symbols-color: (
101
+ symbol-empty-color: (
85
102
  color: (
86
103
  'gray',
87
- 200,
104
+ 700,
88
105
  ),
89
106
  ),
90
- disabled-full-symbols-color: (
107
+ symbol-full-color: (
108
+ color: (
109
+ 'warn',
110
+ 900,
111
+ ),
112
+ ),
113
+ disabled-value-label: (
91
114
  color: (
92
115
  'gray',
93
- 500,
116
+ 400,
117
+ ),
118
+ ),
119
+ disabled-empty-symbols-color: (
120
+ color: (
121
+ 'warn',
122
+ 100,
123
+ ),
124
+ ),
125
+ disabled-full-symbols-color: (
126
+ color: (
127
+ 'warn',
128
+ 100,
94
129
  ),
95
130
  ),
96
131
  )
@@ -98,12 +133,12 @@ $fluent-rating: extend(
98
133
 
99
134
  /// Generates a bootstrap rating schema.
100
135
  /// @type {Map}
101
- /// @prop {Map} label-color [color: ('gray', 900)] - sets the color for the label.
136
+ /// @prop {Map} value-label [color: ('gray', 900)] - sets the color for the value label.
102
137
  /// @requires {Map} $light-rating
103
138
  $bootstrap-rating: extend(
104
139
  $light-rating,
105
140
  (
106
- label-color: (
141
+ value-label: (
107
142
  color: (
108
143
  'gray',
109
144
  900,
@@ -114,12 +149,12 @@ $bootstrap-rating: extend(
114
149
 
115
150
  /// Generates an indigo rating schema.
116
151
  /// @type {Map}
117
- /// @prop {Map} label-color [color: ('gray', 900)] - sets the color for the label.
152
+ /// @prop {Map} value-label [color: ('gray', 900)] - sets the color for the value label.
118
153
  /// @requires {Map} $light-rating
119
154
  $indigo-rating: extend(
120
155
  $light-rating,
121
156
  (
122
- label-color: (
157
+ value-label: (
123
158
  color: (
124
159
  'gray',
125
160
  900,