igniteui-theming 9.0.0-beta.1 → 9.0.0-beta.3

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": "9.0.0-beta.1",
3
+ "version": "9.0.0-beta.3",
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": {
@@ -56,6 +56,57 @@ $dark-fluent-rating: extend(
56
56
  $dark-bootstrap-rating: $bootstrap-rating;
57
57
 
58
58
  /// Generates a dark indigo rating schema.
59
+ /// @prop {Map} label-color [contrast-color: ('gray', 50, .8)] - sets the color for the label.
60
+ /// @prop {Map} value-label [contrast-color: ('gray', 50, .8)] - sets the color for the value label.
61
+ /// @prop {Map} symbol-empty-color [color: ('gray', 300)] - sets the idle color for the symbol when it is a plane text.
62
+ /// @prop {Map} disabled-label-color [color: ('contrast-color', 50, .2)] - sets the color for the label in disabled state.
63
+ /// @prop {Map} disabled-value-label [color: ('contrast-color', 50, .2)] - sets the color for the value in disabled state.
64
+ /// @prop {Map} disabled-empty-symbol-color [color: ('gray', 300, .4)] - sets the idle color for the symbol in disabled state when it is a plane text.
59
65
  /// @type {Map}
60
66
  /// @requires $indigo-rating
61
- $dark-indigo-rating: $indigo-rating;
67
+ $dark-indigo-rating: extend(
68
+ $indigo-rating,
69
+ (
70
+ label-color: (
71
+ contrast-color: (
72
+ 'gray',
73
+ 50,
74
+ 0.8,
75
+ ),
76
+ ),
77
+ value-label: (
78
+ contrast-color: (
79
+ 'gray',
80
+ 50,
81
+ 0.8,
82
+ ),
83
+ ),
84
+ symbol-empty-color: (
85
+ color: (
86
+ 'gray',
87
+ 300,
88
+ ),
89
+ ),
90
+ disabled-label-color: (
91
+ contrast-color: (
92
+ 'gray',
93
+ 50,
94
+ 0.2,
95
+ ),
96
+ ),
97
+ disabled-value-label: (
98
+ contrast-color: (
99
+ 'gray',
100
+ 50,
101
+ 0.2,
102
+ ),
103
+ ),
104
+ disabled-empty-symbol-color: (
105
+ color: (
106
+ 'gray',
107
+ 300,
108
+ 0.4,
109
+ ),
110
+ ),
111
+ )
112
+ );
@@ -25,7 +25,7 @@ $dark-bootstrap-tooltip: $bootstrap-tooltip;
25
25
 
26
26
  /// Generates a dark indigo tooltip schema.
27
27
  /// @type {Map}
28
- /// @prop {Map} background [color: ('gray', 300)] - The background color of the tooltip.
28
+ /// @prop {Map} background [color: ('gray', 300, .9)] - The background color of the tooltip.
29
29
  /// @prop {Map} text-color [contrast-color: ('gray', 50)] - The text color of the tooltip.
30
30
  /// @prop {Number} elevation [9] - The elevation level, between 0-24, to be used for the tooltip.
31
31
  /// @requires {Map} $indigo-tooltip
@@ -38,6 +38,7 @@ $dark-indigo-tooltip: extend(
38
38
  color: (
39
39
  'gray',
40
40
  300,
41
+ 0.9,
41
42
  ),
42
43
  ),
43
44
  text-color: (
@@ -14,11 +14,12 @@
14
14
  /// @prop {Map} label-color [color: ('gray', 900)] - sets the color for the label.
15
15
  /// @prop {Map} value-label [color: ('gray', 900)] - sets the color for the value label.
16
16
  /// @prop {Number} symbol-size [rem(36px)] - the size of the symbols.
17
- /// @prop {Map} symbol-empty-color [color: ('gray', 900)] - sets the idle color for the symbol when it is a plane text.
18
- /// @prop {Map} symbol-full-color [color: ('primary')] - sets the color in selected state for the symbol when it is a plane text.
17
+ /// @prop {Map} symbol-empty-color [color: ('gray', 600)] - sets the idle color for the symbol when it is a plane text.
18
+ /// @prop {Map} symbol-full-color [color: ('warn')] - sets the color in selected state for the symbol when it is a plane text.
19
19
  /// @prop {Function} symbol-empty-filter [grayscale(100%) opacity(50%)] - the filter(s) used for the empty symbol.
20
20
  /// @prop {Function} symbol-full-filter [grayscale(50%)] - the filter(s) used for the filled symbol.
21
21
  /// @prop {Map} disabled-label-color [color: ('gray', 400)] - sets the color for the label in disabled state.
22
+ /// @prop {Map} disabled-value-label [color: ('gray', 400)] - sets the color for the value in disabled state.
22
23
  /// @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.
23
24
  /// @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.
24
25
  /// @prop {Number} default-size [2] - The default size used for the rating component.
@@ -140,6 +141,70 @@ $fluent-rating: extend(
140
141
  $bootstrap-rating: $light-rating;
141
142
 
142
143
  /// Generates an indigo rating schema.
144
+ /// @prop {Map} label-color [color: ('gray', 800)] - sets the color for the label.
145
+ /// @prop {Map} value-label [color: ('gray', 800)] - sets the color for the value label.
146
+ /// @prop {Map} symbol-empty-color [color: ('gray', 500)] - sets the idle color for the symbol when it is a plane text.
147
+ /// @prop {Map} symbol-full-color [color: ('warn', 300)] - sets the color in selected state for the symbol when it is a plane text.
148
+ /// @prop {Map} disabled-label-color [color: ('gray', 900, .2)] - sets the color for the label in disabled state.
149
+ /// @prop {Map} disabled-value-label [color: ('gray', 900, .2)] - sets the color for the value in disabled state.
150
+ /// @prop {Map} disabled-empty-symbol-color [color: ('gray', 500, .4)] - sets the idle color for the symbol in disabled state when it is a plane text.
151
+ /// @prop {Map} disabled-full-symbol-color [color: ('warn', 300, .4)] - sets the color for the symbol in selected/disabled state when it is a plane text.
143
152
  /// @type {Map}
144
153
  /// @requires {Map} $light-rating
145
- $indigo-rating: $light-rating;
154
+ $indigo-rating: extend(
155
+ $light-rating,
156
+ (
157
+ label-color: (
158
+ color: (
159
+ 'gray',
160
+ 800,
161
+ ),
162
+ ),
163
+ value-label: (
164
+ color: (
165
+ 'gray',
166
+ 800,
167
+ ),
168
+ ),
169
+ symbol-empty-color: (
170
+ color: (
171
+ 'gray',
172
+ 500,
173
+ ),
174
+ ),
175
+ symbol-full-color: (
176
+ color: (
177
+ 'warn',
178
+ 300,
179
+ ),
180
+ ),
181
+ disabled-label-color: (
182
+ color: (
183
+ 'gray',
184
+ 900,
185
+ 0.2,
186
+ ),
187
+ ),
188
+ disabled-value-label: (
189
+ color: (
190
+ 'gray',
191
+ 900,
192
+ 0.2,
193
+ ),
194
+ ),
195
+ disabled-empty-symbol-color: (
196
+ color: (
197
+ 'gray',
198
+ 500,
199
+ 0.4,
200
+ ),
201
+ ),
202
+ disabled-full-symbol-color: (
203
+ color: (
204
+ 'warn',
205
+ 300,
206
+ 0.4,
207
+ ),
208
+ ),
209
+ )
210
+ );
@@ -108,7 +108,7 @@ $bootstrap-tooltip: extend(
108
108
 
109
109
  /// Generates an indigo tooltip schema.
110
110
  /// @type {Map}
111
- /// @prop {Map} background [color: ('gray', 600)] - The background color of the tooltip.
111
+ /// @prop {Map} background [color: ('gray', 600, .9)] - The background color of the tooltip.
112
112
  /// @prop {List} border-radius [(rem(4px), rem(0), rem(16px))] - The border radius used for tooltip.
113
113
  /// @prop {Number} elevation [8] - The elevation level, between 0-24, to be used for the tooltip.
114
114
  /// @requires {Map} $light-tooltip
@@ -121,6 +121,7 @@ $indigo-tooltip: extend(
121
121
  color: (
122
122
  'gray',
123
123
  600,
124
+ 0.9,
124
125
  ),
125
126
  ),
126
127