igniteui-theming 9.0.0-beta.1 → 9.0.0-beta.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": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.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": {
|
|
@@ -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:
|
|
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
|
+
);
|
|
@@ -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',
|
|
18
|
-
/// @prop {Map} symbol-full-color [color: ('
|
|
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:
|
|
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
|
+
);
|