igniteui-theming 8.0.0-beta.2 → 8.0.0-beta.4

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": "8.0.0-beta.2",
3
+ "version": "8.0.0-beta.4",
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": {
@@ -19,34 +19,8 @@ $dark-fluent-banner: $fluent-banner;
19
19
 
20
20
  /// Generates a dark bootstrap banner schema.
21
21
  /// @type {Map}
22
- /// @prop {Map} banner-background [color: ('surface')] - The color used for the banner background.
23
- /// @prop {Map} banner-message-color [color: ('gray', 600)] - The color used for the banner label.
24
- /// @prop {Map} banner-illustration-color [color: ('gray', 600)] - The color used for the banner illustration.
25
22
  /// @requires $bootstrap-banner
26
- $dark-bootstrap-banner: extend(
27
- $bootstrap-banner,
28
- (
29
- banner-background: (
30
- color: (
31
- 'surface',
32
- ),
33
- ),
34
-
35
- banner-message-color: (
36
- color: (
37
- 'gray',
38
- 600,
39
- ),
40
- ),
41
-
42
- banner-illustration-color: (
43
- color: (
44
- 'gray',
45
- 600,
46
- ),
47
- ),
48
- )
49
- );
23
+ $dark-bootstrap-banner: $bootstrap-banner;
50
24
 
51
25
  /// Generates a dark indigo banner schema.
52
26
  /// @type {Map}
@@ -90,7 +90,7 @@ $dark-bootstrap-list: extend(
90
90
  /// Generates a dark indigo list schema.
91
91
  /// @type {Map}
92
92
  /// @prop {Map} header-text-color [contrast-color: ('gray', 50, .6)] - The list header text color.
93
- /// @prop {Map} item-background-hover [color: ('primary', 500, .5)] - The list item hover background.
93
+ /// @prop {Map} item-background-hover [color: ('primary', 400, .3)] - The list item hover background.
94
94
  /// @prop {Map} item-background-active [color: ('primary')] - The active list item background color.
95
95
  /// @prop {Map} item-text-color [contrast-color: ('gray', 50, .9)] - The list item text color.
96
96
  /// @prop {Map} item-text-color-hover [contrast-color: ('gray', 50)] - The list item text color.
@@ -119,8 +119,8 @@ $dark-indigo-list: extend(
119
119
  item-background-hover: (
120
120
  color: (
121
121
  'primary',
122
- 500,
123
- 0.5,
122
+ 400,
123
+ 0.3,
124
124
  ),
125
125
  ),
126
126
 
@@ -11,52 +11,92 @@
11
11
  /// @type {Map}
12
12
  /// @prop {Map} banner-background [color: 'surface'] - The color used for the banner background.
13
13
  /// @prop {Map} banner-message-color [contrast-color: 'surface'] - The color used for the banner label.
14
- /// @prop {Map} banner-border-color [color: ('gray', 400)] - The color used for the banner border.
15
- /// @prop {Map} banner-illustration-color [contrast-color: 'surface'] - The color used for the banner illustration.
14
+ /// @prop {Number} border-radius [0] - The border radius of the banner
16
15
  $light-banner: (
17
16
  banner-background: (
18
17
  color: 'surface',
19
18
  ),
20
19
 
21
- banner-message-color: (
22
- contrast-color: 'surface',
23
- ),
24
-
25
- banner-border-color: (
26
- color: (
27
- 'gray',
28
- 400,
29
- ),
30
- ),
31
-
32
- banner-illustration-color: (
33
- contrast-color: 'surface',
34
- ),
20
+ border-radius: 0,
35
21
  );
36
22
 
37
23
  /// Generates a material banner schema.
38
24
  /// @type {Map}
25
+ /// @prop {Map} banner-message-color [color: ('gray', 900)] - The color used for the banner label.
26
+ /// @prop {Map} banner-illustration-color [color: ('gray', 900)] - The color used for the banner illustration.
27
+ /// @prop {Map} banner-border-color [color: ('gray', 300)] - The color used for the banner border.
39
28
  /// @requires {Map} $light-banner
40
- $material-banner: $light-banner;
29
+ $material-banner: extend(
30
+ $light-banner,
31
+ (
32
+ banner-border-color: (
33
+ color: (
34
+ 'gray',
35
+ 300,
36
+ ),
37
+ ),
38
+
39
+ banner-message-color: (
40
+ color: (
41
+ 'gray',
42
+ 900,
43
+ ),
44
+ ),
45
+
46
+ banner-illustration-color: (
47
+ color: (
48
+ 'gray',
49
+ 900,
50
+ ),
51
+ ),
52
+ )
53
+ );
41
54
 
42
55
  /// Generates a fluent banner schema.
43
56
  /// @type {Map}
57
+ /// @prop {Map} banner-message-color [color: ('gray', 900)] - The color used for the banner label.
58
+ /// @prop {Map} banner-illustration-color [color: ('gray', 900)] - The color used for the banner illustration.
59
+ /// @prop {Map} banner-border-color [color: ('gray', 300)] - The color used for the banner border.
44
60
  /// @requires {Map} $light-banner
45
- $fluent-banner: $light-banner;
61
+ $fluent-banner: extend(
62
+ $light-banner,
63
+ (
64
+ banner-border-color: (
65
+ color: (
66
+ 'gray',
67
+ 300,
68
+ ),
69
+ ),
70
+
71
+ banner-message-color: (
72
+ color: (
73
+ 'gray',
74
+ 900,
75
+ ),
76
+ ),
77
+
78
+ banner-illustration-color: (
79
+ color: (
80
+ 'gray',
81
+ 900,
82
+ ),
83
+ ),
84
+ )
85
+ );
46
86
 
47
87
  /// Generates a bootstrap banner schema.
48
88
  /// @type {Map}
49
- /// @prop {Map} banner-background [contrast-color: ('gray', 900)] - The color used for the banner background.
50
89
  /// @prop {Map} banner-message-color [color: ('gray', 800)] - The color used for the banner label.
90
+ /// @prop {Map} banner-border-color [color: ('gray', 300)] - The color used for the banner border.
51
91
  /// @prop {Map} banner-illustration-color [color: ('gray', 800)] - The color used for the banner illustration.
52
92
  /// @requires {Map} $light-banner
53
93
  $bootstrap-banner: extend(
54
94
  $light-banner,
55
95
  (
56
- banner-background: (
57
- contrast-color: (
96
+ banner-border-color: (
97
+ color: (
58
98
  'gray',
59
- 900,
99
+ 300,
60
100
  ),
61
101
  ),
62
102
 
@@ -82,6 +122,7 @@ $bootstrap-banner: extend(
82
122
  /// @prop {Map} banner-message-color [color: ('gray', 700)] - The color used for the banner label.
83
123
  /// @prop {Map} banner-border-color [color: ('gray', 300)] - The color used for the banner border.
84
124
  /// @prop {Map} banner-illustration-color [color: ('gray', 600)] - The color used for the banner illustration.
125
+ /// @prop {Number} border-radius [rem(6px)] - The border radius of the banner
85
126
  $indigo-banner: (
86
127
  banner-background: (
87
128
  color: (
@@ -110,4 +151,6 @@ $indigo-banner: (
110
151
  600,
111
152
  ),
112
153
  ),
154
+
155
+ border-radius: rem(6px),
113
156
  );
@@ -216,22 +216,22 @@ $bootstrap-list: extend(
216
216
  /// @type {Map}
217
217
  /// @prop {Color} background [transparent] - The list background color.
218
218
  /// @prop {Color} header-background [transparent] - The list header background color.
219
- /// @prop {Map} header-text-color [color: ('grays', 600)] - The list header text color.
219
+ /// @prop {Map} header-text-color [color: ('gray', 600)] - The list header text color.
220
220
  /// @prop {Color} item-background [transparent] - The list item background color.
221
221
  /// @prop {Map} item-background-hover [color: ('primary', 300, .3)] - The list item hover background.
222
222
  /// @prop {Map} item-background-active [ color: ('primary', 300, .3)] - The active list item background color.
223
223
  /// @prop {Map} item-text-color [color: ('gray', 800)] - The list item text color.
224
- /// @prop {Map} item-text-color-hover [color: ('gray', 800)] - The list item text color.
224
+ /// @prop {Map} item-text-color-hover [color: ('gray', 900)] - The list item text color.
225
225
  /// @prop {Map} item-text-color-active [color: ('gray', 800)] - The active list item text color.
226
226
  /// @prop {Map} item-subtitle-color [color: ('gray', 600)] - The list item subtitle color.
227
- /// @prop {Map} item-subtitle-color-hover [color: ('gray', 600)] - The list item subtitle hover color.
228
- /// @prop {Map} item-subtitle-color-active [color: ('gray', 600)] - The list item subtitle active color.
227
+ /// @prop {Map} item-subtitle-color-hover [color: ('gray', 700)] - The list item subtitle hover color.
228
+ /// @prop {Map} item-subtitle-color-active [color: ('gray', 700)] - The list item subtitle active color.
229
229
  /// @prop {Map} item-action-color [color: ('gray', 600)] - The list item action color.
230
- /// @prop {Map} item-action-color-hover [color: ('gray', 600)] - The list item action hover color.
231
- /// @prop {Map} item-action-color-active [color: ('gray', 600)] - The list item action active color.
230
+ /// @prop {Map} item-action-color-hover [color: ('gray', 700)] - The list item action hover color.
231
+ /// @prop {Map} item-action-color-active [color: ('gray', 700)] - The list item action active color.
232
232
  /// @prop {Map} item-thumbnail-color [color: ('gray', 600)] - The list item thumbnail color.
233
233
  /// @prop {Map} item-thumbnail-color-hover [color: ('gray', 600)] - The list item thumbnail hover color.
234
- /// @prop {Map} item-thumbnail-color-active [color: ('gray', 600)] - The list item thumbnail active color.
234
+ /// @prop {Map} item-thumbnail-color-active [color: ('gray', 700)] - The list item thumbnail active color.
235
235
  /// @prop {Number} item-border-radius [0] - The border radius used for list item.
236
236
  /// @requires {Map} $light-list
237
237
  $indigo-list: extend(
@@ -243,7 +243,7 @@ $indigo-list: extend(
243
243
 
244
244
  header-text-color: (
245
245
  color: (
246
- 'grays',
246
+ 'gray',
247
247
  600,
248
248
  ),
249
249
  ),
@@ -283,7 +283,7 @@ $indigo-list: extend(
283
283
  item-text-color-active: (
284
284
  color: (
285
285
  'gray',
286
- 800,
286
+ 900,
287
287
  ),
288
288
  ),
289
289
 
@@ -297,14 +297,14 @@ $indigo-list: extend(
297
297
  item-action-color-hover: (
298
298
  color: (
299
299
  'gray',
300
- 600,
300
+ 700,
301
301
  ),
302
302
  ),
303
303
 
304
304
  item-action-color-active: (
305
305
  color: (
306
306
  'gray',
307
- 600,
307
+ 700,
308
308
  ),
309
309
  ),
310
310
 
@@ -318,14 +318,14 @@ $indigo-list: extend(
318
318
  item-subtitle-color-hover: (
319
319
  color: (
320
320
  'gray',
321
- 600,
321
+ 700,
322
322
  ),
323
323
  ),
324
324
 
325
325
  item-subtitle-color-active: (
326
326
  color: (
327
327
  'gray',
328
- 600,
328
+ 700,
329
329
  ),
330
330
  ),
331
331
 
@@ -346,7 +346,7 @@ $indigo-list: extend(
346
346
  item-thumbnail-color-active: (
347
347
  color: (
348
348
  'gray',
349
- 600,
349
+ 700,
350
350
  ),
351
351
  ),
352
352