igniteui-theming 8.2.0-beta.1 → 8.2.0
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 +1 -1
- package/sass/themes/schemas/components/dark/_calendar.scss +85 -28
- package/sass/themes/schemas/components/dark/_divider.scss +15 -19
- package/sass/themes/schemas/components/dark/_progress.scss +13 -1
- package/sass/themes/schemas/components/light/_calendar.scss +536 -178
- package/sass/themes/schemas/components/light/_chip.scss +3 -3
- package/sass/themes/schemas/components/light/_progress.scss +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "8.2.0
|
|
3
|
+
"version": "8.2.0",
|
|
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": {
|
|
@@ -106,11 +106,14 @@ $dark-material-calendar: extend(
|
|
|
106
106
|
/// @prop {Map} picker-focus-foreground [color: ('primary', 200)] - The :focus foreground color of the month and year pickers.
|
|
107
107
|
/// @prop {Map} navigation-hover-color [color: ('primary', 200)] - The :hover color of the buttons responsible for navigation.
|
|
108
108
|
/// @prop {Map} navigation-focus-color [color: ('primary', 200)] - The :focus color of the buttons responsible for navigation.
|
|
109
|
-
/// @prop {Map}
|
|
110
|
-
/// @prop {Map}
|
|
111
|
-
/// @prop {Map}
|
|
112
|
-
/// @prop {Map}
|
|
113
|
-
/// @prop {Map}
|
|
109
|
+
/// @prop {Map} year-selected-background [color: ('primary', 800)]- The background color of the selected year in years view.
|
|
110
|
+
/// @prop {Map} year-selected-hover-background [color: ('primary', 600)] - The :hover background color of the selected year in years view.
|
|
111
|
+
/// @prop {Map} year-selected-current-background [color: ('primary', 800)] - The foreground color of the current/selected year.
|
|
112
|
+
/// @prop {Map} year-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected year.
|
|
113
|
+
/// @prop {Map} month-selected-background [color: ('primary', 800)] - The background color of the selected month in month view.
|
|
114
|
+
/// @prop {Map} month-selected-hover-background [color: ('primary', 600)]- The :hover background color of the selected month in month view.
|
|
115
|
+
/// @prop {Map} month-selected-current-background [color: ('primary', 800)]- The background color of the current/selected month in month view.
|
|
116
|
+
/// @prop {Map} month-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected month in month view.
|
|
114
117
|
/// @prop {Map} date-current-foreground [contrast-color: ('gray', 900)] - The foreground color of the current date.
|
|
115
118
|
/// @prop {Map} date-current-background [color: ('primary', 200)] - The background color of the current date.
|
|
116
119
|
/// @prop {Map} date-current-hover-foreground [contrast-color: ('gray', 900)] - The :hover foreground color of the current date.
|
|
@@ -167,30 +170,54 @@ $dark-fluent-calendar: extend(
|
|
|
167
170
|
200,
|
|
168
171
|
),
|
|
169
172
|
),
|
|
170
|
-
|
|
173
|
+
year-selected-background: (
|
|
174
|
+
color: (
|
|
175
|
+
'primary',
|
|
176
|
+
800,
|
|
177
|
+
),
|
|
178
|
+
),
|
|
179
|
+
year-selected-hover-background: (
|
|
171
180
|
color: (
|
|
172
181
|
'primary',
|
|
173
182
|
600,
|
|
174
183
|
),
|
|
175
184
|
),
|
|
176
|
-
|
|
185
|
+
year-selected-current-background: (
|
|
177
186
|
color: (
|
|
178
187
|
'primary',
|
|
179
188
|
800,
|
|
180
189
|
),
|
|
181
190
|
),
|
|
182
|
-
|
|
191
|
+
year-selected-current-hover-background: (
|
|
183
192
|
color: (
|
|
184
193
|
'primary',
|
|
185
194
|
600,
|
|
186
195
|
),
|
|
187
196
|
),
|
|
188
|
-
|
|
197
|
+
month-selected-background: (
|
|
189
198
|
color: (
|
|
190
199
|
'primary',
|
|
191
200
|
800,
|
|
192
201
|
),
|
|
193
202
|
),
|
|
203
|
+
month-selected-hover-background: (
|
|
204
|
+
color: (
|
|
205
|
+
'primary',
|
|
206
|
+
600,
|
|
207
|
+
),
|
|
208
|
+
),
|
|
209
|
+
month-selected-current-background: (
|
|
210
|
+
color: (
|
|
211
|
+
'primary',
|
|
212
|
+
800,
|
|
213
|
+
),
|
|
214
|
+
),
|
|
215
|
+
month-selected-current-hover-background: (
|
|
216
|
+
color: (
|
|
217
|
+
'primary',
|
|
218
|
+
600,
|
|
219
|
+
),
|
|
220
|
+
),
|
|
194
221
|
date-special-border-color: (
|
|
195
222
|
color: (
|
|
196
223
|
'primary',
|
|
@@ -280,8 +307,10 @@ $dark-fluent-calendar: extend(
|
|
|
280
307
|
|
|
281
308
|
/// Generates a dark bootstrap calendar schema.
|
|
282
309
|
/// @type {Map}
|
|
283
|
-
/// @prop {Map}
|
|
284
|
-
/// @prop {Map}
|
|
310
|
+
/// @prop {Map} year-hover-background [color: ('gray', 100)] - The :hover background color of the year in years view.
|
|
311
|
+
/// @prop {Map} year-current-hover-background [color: ('gray', 100)] - The :hover background color of the current year in years view.
|
|
312
|
+
/// @prop {Map} month-hover-background [color: ('gray', 100)] - The :hover background color of the month in months view.
|
|
313
|
+
/// @prop {Map} month-current-hover-background [color: ('gray', 100)] - The :hover background color of the current month in months view.
|
|
285
314
|
/// @prop {Map} date-special-hover-background [color: ('gray', 100)] - The background color of a special date.
|
|
286
315
|
/// @prop {Map} date-special-focus-background [color: ('gray', 100)] - The background color of a special date.
|
|
287
316
|
/// @prop {Map} date-special-range-hover-background [color: ('gray', 100)] - The :hover background color of a special date in range selection.
|
|
@@ -311,13 +340,25 @@ $dark-bootstrap-calendar: extend(
|
|
|
311
340
|
900,
|
|
312
341
|
),
|
|
313
342
|
),
|
|
314
|
-
|
|
343
|
+
year-hover-background: (
|
|
344
|
+
color: (
|
|
345
|
+
'gray',
|
|
346
|
+
100,
|
|
347
|
+
),
|
|
348
|
+
),
|
|
349
|
+
year-current-hover-background: (
|
|
315
350
|
color: (
|
|
316
351
|
'gray',
|
|
317
352
|
100,
|
|
318
353
|
),
|
|
319
354
|
),
|
|
320
|
-
|
|
355
|
+
month-hover-background: (
|
|
356
|
+
color: (
|
|
357
|
+
'gray',
|
|
358
|
+
100,
|
|
359
|
+
),
|
|
360
|
+
),
|
|
361
|
+
month-current-hover-background: (
|
|
321
362
|
color: (
|
|
322
363
|
'gray',
|
|
323
364
|
100,
|
|
@@ -444,8 +485,9 @@ $dark-bootstrap-calendar: extend(
|
|
|
444
485
|
/// @type {Map}
|
|
445
486
|
/// @prop {Map} content-foreground [color: ('gray', 900)] - The foreground color of the days, months and years views.
|
|
446
487
|
/// @prop {Map} date-current-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of the current date.
|
|
447
|
-
/// @prop {Map}
|
|
448
|
-
/// @prop {Map}
|
|
488
|
+
/// @prop {Map} month-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the month inside the months view.
|
|
489
|
+
/// @prop {Map} month-current-hover-background [contrast-color: ('gray', 900, .1)] - The :hover background color of the current month in month view.
|
|
490
|
+
/// @prop {Map} year-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the year in years view.
|
|
449
491
|
/// @prop {Map} date-selected-current-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date in the selected range.
|
|
450
492
|
/// @prop {Map} header-background [color: ('gray', 50)] - The header background color.
|
|
451
493
|
/// @prop {Map} content-background [color: ('gray', 50)] - The background color of the days, months and years views.
|
|
@@ -479,12 +521,13 @@ $dark-bootstrap-calendar: extend(
|
|
|
479
521
|
/// @prop {Map} week-number-foreground [color: ('gray', 500)] - The foreground color of the week number column.
|
|
480
522
|
/// @prop {Map} week-number-background [contrast-color: ('gray', 50, .05)] - The background color of the week number column.
|
|
481
523
|
/// @prop {Map} date-selected-range-background [color: ('primary', 400, .2)] - The background color of the selected range.
|
|
482
|
-
/// @prop {Map}
|
|
483
|
-
/// @prop {Map}
|
|
484
|
-
/// @prop {Map}
|
|
485
|
-
/// @prop {Map}
|
|
486
|
-
/// @prop {Map}
|
|
487
|
-
/// @prop {Map}
|
|
524
|
+
/// @prop {Map} year-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current year in years view.
|
|
525
|
+
/// @prop {Map} current-outline-hover-color [color: ('primary', 300)] - The :hover outline color of the current year/month in year/month views.
|
|
526
|
+
/// @prop {Map} current-outline-focus-color [color: ('primary', 300)] - The :focus outline color of the current year/month in year/month views.
|
|
527
|
+
/// @prop {Map} current-outline-color [color: ('primary', 400)] - The outline color of the current year/month in year/month views.
|
|
528
|
+
/// @prop {Map} selected-current-outline-color [contrast-color: ('gray', 50, .6)] - The outline color of the selected current year/month in year/month views.
|
|
529
|
+
/// @prop {Map} selected-current-outline-hover-color [contrast-color: ('gray', 50, .6)] - The :hover outline color of the selected current year/month in year/month views.
|
|
530
|
+
/// @prop {Map} selected-current-outline-focus-color [contrast-color: ('gray', 50, .6)] - The :focus outline color of the selected current year/month in year/month views.
|
|
488
531
|
/// @prop {Map} date-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date.
|
|
489
532
|
/// @prop {Map} date-selected-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the selected range.
|
|
490
533
|
/// @prop {Map} date-selected-range-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of the selected range.
|
|
@@ -514,7 +557,14 @@ $dark-indigo-calendar: extend(
|
|
|
514
557
|
50,
|
|
515
558
|
),
|
|
516
559
|
),
|
|
517
|
-
|
|
560
|
+
month-hover-background: (
|
|
561
|
+
contrast-color: (
|
|
562
|
+
'gray',
|
|
563
|
+
50,
|
|
564
|
+
0.1,
|
|
565
|
+
),
|
|
566
|
+
),
|
|
567
|
+
year-hover-background: (
|
|
518
568
|
contrast-color: (
|
|
519
569
|
'gray',
|
|
520
570
|
50,
|
|
@@ -718,39 +768,46 @@ $dark-indigo-calendar: extend(
|
|
|
718
768
|
0.2,
|
|
719
769
|
),
|
|
720
770
|
),
|
|
721
|
-
|
|
771
|
+
current-outline-color: (
|
|
722
772
|
color: (
|
|
723
773
|
'primary',
|
|
724
774
|
400,
|
|
725
775
|
),
|
|
726
776
|
),
|
|
727
|
-
|
|
777
|
+
selected-current-outline-color: (
|
|
728
778
|
contrast-color: (
|
|
729
779
|
'gray',
|
|
730
780
|
50,
|
|
731
781
|
0.6,
|
|
732
782
|
),
|
|
733
783
|
),
|
|
734
|
-
|
|
784
|
+
year-current-hover-background: (
|
|
785
|
+
contrast-color: (
|
|
786
|
+
'gray',
|
|
787
|
+
50,
|
|
788
|
+
0.1,
|
|
789
|
+
),
|
|
790
|
+
),
|
|
791
|
+
current-outline-hover-color: (
|
|
735
792
|
color: (
|
|
736
793
|
'primary',
|
|
737
794
|
300,
|
|
738
795
|
),
|
|
739
796
|
),
|
|
740
|
-
|
|
797
|
+
current-outline-focus-color: (
|
|
741
798
|
color: (
|
|
742
799
|
'primary',
|
|
743
800
|
300,
|
|
744
801
|
),
|
|
745
802
|
),
|
|
746
|
-
|
|
803
|
+
selected-current-outline-hover-color: (
|
|
747
804
|
contrast-color: (
|
|
748
805
|
'gray',
|
|
749
806
|
50,
|
|
750
807
|
0.6,
|
|
751
808
|
),
|
|
752
809
|
),
|
|
753
|
-
|
|
810
|
+
selected-current-outline-focus-color: (
|
|
754
811
|
contrast-color: (
|
|
755
812
|
'gray',
|
|
756
813
|
50,
|
|
@@ -7,37 +7,33 @@
|
|
|
7
7
|
/// @access public
|
|
8
8
|
////
|
|
9
9
|
|
|
10
|
-
/// Generates a base dark divider schema.
|
|
11
|
-
/// @type {Map}
|
|
12
|
-
/// @property {Map} color [color: ('gray', 100)] - The color used for the divider.
|
|
13
|
-
$base-dark-divider: (
|
|
14
|
-
color: (
|
|
15
|
-
color: (
|
|
16
|
-
'gray',
|
|
17
|
-
100,
|
|
18
|
-
),
|
|
19
|
-
),
|
|
20
|
-
);
|
|
21
|
-
|
|
22
10
|
/// Generates a dark material divider schema.
|
|
23
11
|
/// @type {Map}
|
|
24
12
|
/// @requires $material-divider
|
|
25
|
-
|
|
26
|
-
$dark-material-divider: extend($material-divider, $base-dark-divider);
|
|
13
|
+
$dark-material-divider: $material-divider;
|
|
27
14
|
|
|
28
15
|
/// Generates a dark fluent divider schema.
|
|
29
16
|
/// @type {Map}
|
|
30
17
|
/// @requires $fluent-divider
|
|
31
|
-
$dark-fluent-divider:
|
|
18
|
+
$dark-fluent-divider: $fluent-divider;
|
|
32
19
|
|
|
33
20
|
/// Generates a dark bootstrap divider schema.
|
|
34
21
|
/// @type {Map}
|
|
35
22
|
/// @requires $bootstrap-divider
|
|
36
|
-
|
|
37
|
-
$dark-bootstrap-divider: extend($bootstrap-divider, $base-dark-divider);
|
|
23
|
+
$dark-bootstrap-divider: $bootstrap-divider;
|
|
38
24
|
|
|
39
25
|
/// Generates a dark indigo divider schema.
|
|
40
26
|
/// @type {Map}
|
|
27
|
+
/// @prop {Map} color [color: ('gray', 100)] - The color used for the divider.
|
|
41
28
|
/// @requires $indigo-divider
|
|
42
|
-
|
|
43
|
-
$
|
|
29
|
+
$dark-indigo-divider: extend(
|
|
30
|
+
$indigo-divider,
|
|
31
|
+
(
|
|
32
|
+
color: (
|
|
33
|
+
color: (
|
|
34
|
+
'gray',
|
|
35
|
+
100,
|
|
36
|
+
),
|
|
37
|
+
),
|
|
38
|
+
)
|
|
39
|
+
);
|
|
@@ -42,8 +42,20 @@ $dark-fluent-progress-linear: extend($fluent-progress-linear, $dark-base-progres
|
|
|
42
42
|
|
|
43
43
|
/// Generates a dark bootstrap progress-linear schema.
|
|
44
44
|
/// @type {Map}
|
|
45
|
+
/// @prop {Map} stripes-color [color: ('gray', 900, .2)] - The track stripes color.
|
|
45
46
|
/// @requires $bootstrap-progress-linear
|
|
46
|
-
$dark-bootstrap-progress-linear:
|
|
47
|
+
$dark-bootstrap-progress-linear: extend(
|
|
48
|
+
$bootstrap-progress-linear,
|
|
49
|
+
(
|
|
50
|
+
stripes-color: (
|
|
51
|
+
color: (
|
|
52
|
+
'gray',
|
|
53
|
+
900,
|
|
54
|
+
0.2,
|
|
55
|
+
),
|
|
56
|
+
),
|
|
57
|
+
)
|
|
58
|
+
);
|
|
47
59
|
|
|
48
60
|
/// Generates a dark indigo progress-linear schema.
|
|
49
61
|
/// @type {Map}
|