igniteui-theming 3.2.0 → 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
|
@@ -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-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.
|
|
18
22
|
/// @requires $fluent-rating
|
|
19
|
-
$dark-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
|
+
'warn',
|
|
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',
|
|
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 {
|
|
17
|
-
/// @prop {
|
|
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
|
-
/// @prop {Map} disabled-empty-
|
|
20
|
-
/// @prop {Map} disabled-full-
|
|
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.
|
|
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(
|
|
51
|
+
grayscale(100%) opacity(50%),
|
|
44
52
|
),
|
|
45
53
|
symbol-full-filter: (
|
|
46
|
-
grayscale(
|
|
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,57 @@ $light-rating: (
|
|
|
60
74
|
disabled-full-symbol-color: (
|
|
61
75
|
color: (
|
|
62
76
|
'warn',
|
|
63
|
-
|
|
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
|
|
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.
|
|
73
|
-
/// @prop {Map}
|
|
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-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.
|
|
74
90
|
/// @requires {Map} $light-rating
|
|
75
91
|
$fluent-rating: extend(
|
|
76
92
|
$light-rating,
|
|
77
93
|
(
|
|
78
|
-
label
|
|
94
|
+
value-label: (
|
|
79
95
|
color: (
|
|
80
96
|
'gray',
|
|
81
97
|
900,
|
|
82
98
|
),
|
|
83
99
|
),
|
|
84
|
-
|
|
100
|
+
symbol-empty-color: (
|
|
85
101
|
color: (
|
|
86
102
|
'gray',
|
|
87
|
-
|
|
103
|
+
700,
|
|
88
104
|
),
|
|
89
105
|
),
|
|
90
|
-
|
|
106
|
+
symbol-full-color: (
|
|
107
|
+
color: (
|
|
108
|
+
'warn',
|
|
109
|
+
900,
|
|
110
|
+
),
|
|
111
|
+
),
|
|
112
|
+
disabled-value-label: (
|
|
91
113
|
color: (
|
|
92
114
|
'gray',
|
|
93
|
-
|
|
115
|
+
400,
|
|
116
|
+
),
|
|
117
|
+
),
|
|
118
|
+
disabled-empty-symbol-color: (
|
|
119
|
+
color: (
|
|
120
|
+
'warn',
|
|
121
|
+
100,
|
|
122
|
+
),
|
|
123
|
+
),
|
|
124
|
+
disabled-full-symbol-color: (
|
|
125
|
+
color: (
|
|
126
|
+
'warn',
|
|
127
|
+
100,
|
|
94
128
|
),
|
|
95
129
|
),
|
|
96
130
|
)
|
|
@@ -98,12 +132,12 @@ $fluent-rating: extend(
|
|
|
98
132
|
|
|
99
133
|
/// Generates a bootstrap rating schema.
|
|
100
134
|
/// @type {Map}
|
|
101
|
-
/// @prop {Map} label
|
|
135
|
+
/// @prop {Map} value-label [color: ('gray', 900)] - sets the color for the value label.
|
|
102
136
|
/// @requires {Map} $light-rating
|
|
103
137
|
$bootstrap-rating: extend(
|
|
104
138
|
$light-rating,
|
|
105
139
|
(
|
|
106
|
-
label
|
|
140
|
+
value-label: (
|
|
107
141
|
color: (
|
|
108
142
|
'gray',
|
|
109
143
|
900,
|
|
@@ -114,12 +148,12 @@ $bootstrap-rating: extend(
|
|
|
114
148
|
|
|
115
149
|
/// Generates an indigo rating schema.
|
|
116
150
|
/// @type {Map}
|
|
117
|
-
/// @prop {Map} label
|
|
151
|
+
/// @prop {Map} value-label [color: ('gray', 900)] - sets the color for the value label.
|
|
118
152
|
/// @requires {Map} $light-rating
|
|
119
153
|
$indigo-rating: extend(
|
|
120
154
|
$light-rating,
|
|
121
155
|
(
|
|
122
|
-
label
|
|
156
|
+
value-label: (
|
|
123
157
|
color: (
|
|
124
158
|
'gray',
|
|
125
159
|
900,
|