igniteui-theming 10.0.0-beta.2 → 10.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 +1 -1
- package/sass/themes/schemas/components/dark/_calendar.scss +28 -85
- 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 +178 -536
- 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": "10.0.0-beta.
|
|
3
|
+
"version": "10.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": {
|
|
@@ -106,14 +106,11 @@ $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}
|
|
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.
|
|
109
|
+
/// @prop {Map} ym-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected month/year.
|
|
110
|
+
/// @prop {Map} ym-selected-background [color: ('primary', 800)] - The background color of the selected month/year.
|
|
111
|
+
/// @prop {Map} ym-selected-hover-background [color: ('primary', 600)]- The :hover background color of the selected month/year.
|
|
112
|
+
/// @prop {Map} ym-selected-current-background [color: ('primary', 800)]- The background color of the current/selected month/year.
|
|
113
|
+
/// @prop {Map} ym-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected month/year.
|
|
117
114
|
/// @prop {Map} date-current-foreground [contrast-color: ('gray', 900)] - The foreground color of the current date.
|
|
118
115
|
/// @prop {Map} date-current-background [color: ('primary', 200)] - The background color of the current date.
|
|
119
116
|
/// @prop {Map} date-current-hover-foreground [contrast-color: ('gray', 900)] - The :hover foreground color of the current date.
|
|
@@ -170,54 +167,30 @@ $dark-fluent-calendar: extend(
|
|
|
170
167
|
200,
|
|
171
168
|
),
|
|
172
169
|
),
|
|
173
|
-
|
|
174
|
-
color: (
|
|
175
|
-
'primary',
|
|
176
|
-
800,
|
|
177
|
-
),
|
|
178
|
-
),
|
|
179
|
-
year-selected-hover-background: (
|
|
170
|
+
ym-selected-current-hover-background: (
|
|
180
171
|
color: (
|
|
181
172
|
'primary',
|
|
182
173
|
600,
|
|
183
174
|
),
|
|
184
175
|
),
|
|
185
|
-
|
|
176
|
+
ym-selected-background: (
|
|
186
177
|
color: (
|
|
187
178
|
'primary',
|
|
188
179
|
800,
|
|
189
180
|
),
|
|
190
181
|
),
|
|
191
|
-
|
|
182
|
+
ym-selected-hover-background: (
|
|
192
183
|
color: (
|
|
193
184
|
'primary',
|
|
194
185
|
600,
|
|
195
186
|
),
|
|
196
187
|
),
|
|
197
|
-
|
|
188
|
+
ym-selected-current-background: (
|
|
198
189
|
color: (
|
|
199
190
|
'primary',
|
|
200
191
|
800,
|
|
201
192
|
),
|
|
202
193
|
),
|
|
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
|
-
),
|
|
221
194
|
date-special-border-color: (
|
|
222
195
|
color: (
|
|
223
196
|
'primary',
|
|
@@ -307,10 +280,8 @@ $dark-fluent-calendar: extend(
|
|
|
307
280
|
|
|
308
281
|
/// Generates a dark bootstrap calendar schema.
|
|
309
282
|
/// @type {Map}
|
|
310
|
-
/// @prop {Map}
|
|
311
|
-
/// @prop {Map}
|
|
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.
|
|
283
|
+
/// @prop {Map} ym-hover-background [color: ('gray', 100)] - The :hover background color of the month/year.
|
|
284
|
+
/// @prop {Map} ym-current-hover-background [color: ('gray', 100)] - The :hover background color of the current month/year.
|
|
314
285
|
/// @prop {Map} date-special-hover-background [color: ('gray', 100)] - The background color of a special date.
|
|
315
286
|
/// @prop {Map} date-special-focus-background [color: ('gray', 100)] - The background color of a special date.
|
|
316
287
|
/// @prop {Map} date-special-range-hover-background [color: ('gray', 100)] - The :hover background color of a special date in range selection.
|
|
@@ -340,25 +311,13 @@ $dark-bootstrap-calendar: extend(
|
|
|
340
311
|
900,
|
|
341
312
|
),
|
|
342
313
|
),
|
|
343
|
-
|
|
344
|
-
color: (
|
|
345
|
-
'gray',
|
|
346
|
-
100,
|
|
347
|
-
),
|
|
348
|
-
),
|
|
349
|
-
year-current-hover-background: (
|
|
314
|
+
ym-hover-background: (
|
|
350
315
|
color: (
|
|
351
316
|
'gray',
|
|
352
317
|
100,
|
|
353
318
|
),
|
|
354
319
|
),
|
|
355
|
-
|
|
356
|
-
color: (
|
|
357
|
-
'gray',
|
|
358
|
-
100,
|
|
359
|
-
),
|
|
360
|
-
),
|
|
361
|
-
month-current-hover-background: (
|
|
320
|
+
ym-current-hover-background: (
|
|
362
321
|
color: (
|
|
363
322
|
'gray',
|
|
364
323
|
100,
|
|
@@ -485,9 +444,8 @@ $dark-bootstrap-calendar: extend(
|
|
|
485
444
|
/// @type {Map}
|
|
486
445
|
/// @prop {Map} content-foreground [color: ('gray', 900)] - The foreground color of the days, months and years views.
|
|
487
446
|
/// @prop {Map} date-current-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of the current date.
|
|
488
|
-
/// @prop {Map}
|
|
489
|
-
/// @prop {Map}
|
|
490
|
-
/// @prop {Map} year-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the year in years view.
|
|
447
|
+
/// @prop {Map} ym-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the month/year.
|
|
448
|
+
/// @prop {Map} ym-current-hover-background [contrast-color: ('gray', 900, .1)] - The :hover background color of the current month/year.
|
|
491
449
|
/// @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.
|
|
492
450
|
/// @prop {Map} header-background [color: ('gray', 50)] - The header background color.
|
|
493
451
|
/// @prop {Map} content-background [color: ('gray', 50)] - The background color of the days, months and years views.
|
|
@@ -521,13 +479,12 @@ $dark-bootstrap-calendar: extend(
|
|
|
521
479
|
/// @prop {Map} week-number-foreground [color: ('gray', 500)] - The foreground color of the week number column.
|
|
522
480
|
/// @prop {Map} week-number-background [contrast-color: ('gray', 50, .05)] - The background color of the week number column.
|
|
523
481
|
/// @prop {Map} date-selected-range-background [color: ('primary', 400, .2)] - The background color of the selected range.
|
|
524
|
-
/// @prop {Map}
|
|
525
|
-
/// @prop {Map} current-outline-
|
|
526
|
-
/// @prop {Map} current-outline-
|
|
527
|
-
/// @prop {Map} current-outline-color [color: ('
|
|
528
|
-
/// @prop {Map} selected-current-outline-color [contrast-color: ('gray', 50, .6)] - The outline color of the selected current
|
|
529
|
-
/// @prop {Map} selected-current-outline-
|
|
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.
|
|
482
|
+
/// @prop {Map} ym-current-outline-hover-color [color: ('primary', 300)] - The :hover outline color of the current month/year.
|
|
483
|
+
/// @prop {Map} ym-current-outline-focus-color [color: ('primary', 300)] - The :focus outline color of the current month/year.
|
|
484
|
+
/// @prop {Map} ym-current-outline-color [color: ('primary', 400)] - The outline color of the current month/year.
|
|
485
|
+
/// @prop {Map} ym-selected-current-outline-color [contrast-color: ('gray', 50, .6)] - The outline color of the selected current month/year.
|
|
486
|
+
/// @prop {Map} ym-selected-current-outline-hover-color [contrast-color: ('gray', 50, .6)] - The :hover outline color of the selected current month/year.
|
|
487
|
+
/// @prop {Map} ym-selected-current-outline-focus-color [contrast-color: ('gray', 50, .6)] - The :focus outline color of the selected current month/year.
|
|
531
488
|
/// @prop {Map} date-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date.
|
|
532
489
|
/// @prop {Map} date-selected-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the selected range.
|
|
533
490
|
/// @prop {Map} date-selected-range-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of the selected range.
|
|
@@ -557,14 +514,7 @@ $dark-indigo-calendar: extend(
|
|
|
557
514
|
50,
|
|
558
515
|
),
|
|
559
516
|
),
|
|
560
|
-
|
|
561
|
-
contrast-color: (
|
|
562
|
-
'gray',
|
|
563
|
-
50,
|
|
564
|
-
0.1,
|
|
565
|
-
),
|
|
566
|
-
),
|
|
567
|
-
year-hover-background: (
|
|
517
|
+
ym-hover-background: (
|
|
568
518
|
contrast-color: (
|
|
569
519
|
'gray',
|
|
570
520
|
50,
|
|
@@ -768,46 +718,39 @@ $dark-indigo-calendar: extend(
|
|
|
768
718
|
0.2,
|
|
769
719
|
),
|
|
770
720
|
),
|
|
771
|
-
current-outline-color: (
|
|
721
|
+
ym-current-outline-color: (
|
|
772
722
|
color: (
|
|
773
723
|
'primary',
|
|
774
724
|
400,
|
|
775
725
|
),
|
|
776
726
|
),
|
|
777
|
-
selected-current-outline-color: (
|
|
727
|
+
ym-selected-current-outline-color: (
|
|
778
728
|
contrast-color: (
|
|
779
729
|
'gray',
|
|
780
730
|
50,
|
|
781
731
|
0.6,
|
|
782
732
|
),
|
|
783
733
|
),
|
|
784
|
-
|
|
785
|
-
contrast-color: (
|
|
786
|
-
'gray',
|
|
787
|
-
50,
|
|
788
|
-
0.1,
|
|
789
|
-
),
|
|
790
|
-
),
|
|
791
|
-
current-outline-hover-color: (
|
|
734
|
+
ym-current-outline-hover-color: (
|
|
792
735
|
color: (
|
|
793
736
|
'primary',
|
|
794
737
|
300,
|
|
795
738
|
),
|
|
796
739
|
),
|
|
797
|
-
current-outline-focus-color: (
|
|
740
|
+
ym-current-outline-focus-color: (
|
|
798
741
|
color: (
|
|
799
742
|
'primary',
|
|
800
743
|
300,
|
|
801
744
|
),
|
|
802
745
|
),
|
|
803
|
-
selected-current-outline-hover-color: (
|
|
746
|
+
ym-selected-current-outline-hover-color: (
|
|
804
747
|
contrast-color: (
|
|
805
748
|
'gray',
|
|
806
749
|
50,
|
|
807
750
|
0.6,
|
|
808
751
|
),
|
|
809
752
|
),
|
|
810
|
-
selected-current-outline-focus-color: (
|
|
753
|
+
ym-selected-current-outline-focus-color: (
|
|
811
754
|
contrast-color: (
|
|
812
755
|
'gray',
|
|
813
756
|
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}
|