igniteui-theming 6.0.0-beta.13 → 6.0.0-beta.14
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": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.14",
|
|
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": {
|
|
@@ -128,19 +128,12 @@ $dark-material-calendar: extend(
|
|
|
128
128
|
/// @prop {Map} navigation-hover-color [color: ('primary', 200)] - The :hover color of the buttons responsible for navigation.
|
|
129
129
|
/// @prop {Map} navigation-focus-color [color: ('primary', 200)] - The :focus color of the buttons responsible for navigation.
|
|
130
130
|
/// @prop {Map} year-selected-background [color: ('primary', 800)]- The background color of the selected year in years view.
|
|
131
|
-
/// @prop {Map} year-selected-hover-foreground [contrast-color: ('primary', 600)] - The :hover foreground color of the selected year in years view.
|
|
132
131
|
/// @prop {Map} year-selected-hover-background [color: ('primary' 600)] - The :hover background color of the selected year in years view.
|
|
133
|
-
/// @prop {Map} year-selected-current-foreground [contrast-color: ('primary', 800)] - The foreground color of the current/selected year.
|
|
134
132
|
/// @prop {Map} year-selected-current-background [color: ('primary', 800)] - The foreground color of the current/selected year.
|
|
135
|
-
/// @prop {Map} year-selected-current-hover-foreground [contrast-color: ('primary', 600)] - The :hover foreground color of the current/selected year.
|
|
136
133
|
/// @prop {Map} year-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected year.
|
|
137
|
-
/// @prop {Map} month-selected-foreground [contrast-color: ('primary', 800)] - The foreground color of the selected month in month view.
|
|
138
134
|
/// @prop {Map} month-selected-background [color: ('primary', 800)] - The background color of the selected month in month view.
|
|
139
|
-
/// @prop {Map} month-selected-hover-foreground [contrast-color: ('primary', 600)]- The :hover foreground color of the selected month in month view.
|
|
140
135
|
/// @prop {Map} month-selected-hover-background [color: ('primary', 600)]- The :hover background color of the selected month in month view.
|
|
141
|
-
/// @prop {Map} month-selected-current-foreground [contrast-color: ('primary', 800)] - The foreground color of the current/selected month in month view.
|
|
142
136
|
/// @prop {Map} month-selected-current-background [color: ('primary', 800)]- The background color of the current/selected month in month view.
|
|
143
|
-
/// @prop {Map} month-selected-current-hover-foreground [contrast-color: ('primary', 600)] - The :hover foreground color of the current/selected month in month view.
|
|
144
137
|
/// @prop {Map} month-selected-current-hover-background [color: ('primary', 600)] - The :hover background color of the current/selected month in month view.
|
|
145
138
|
/// @prop {Map} date-current-foreground [contrast-color: ('gray', 900)] - The foreground color of the current date.
|
|
146
139
|
/// @prop {Map} date-current-background [color: ('primary', 200)] - The background color of the current date.
|
|
@@ -205,96 +198,48 @@ $dark-fluent-calendar: extend(
|
|
|
205
198
|
200,
|
|
206
199
|
),
|
|
207
200
|
),
|
|
208
|
-
year-selected-foreground: (
|
|
209
|
-
contrast-color: (
|
|
210
|
-
'primary',
|
|
211
|
-
800,
|
|
212
|
-
),
|
|
213
|
-
),
|
|
214
201
|
year-selected-background: (
|
|
215
202
|
color: (
|
|
216
203
|
'primary',
|
|
217
204
|
800,
|
|
218
205
|
),
|
|
219
206
|
),
|
|
220
|
-
year-selected-hover-foreground: (
|
|
221
|
-
contrast-color: (
|
|
222
|
-
'primary',
|
|
223
|
-
600,
|
|
224
|
-
),
|
|
225
|
-
),
|
|
226
207
|
year-selected-hover-background: (
|
|
227
208
|
color: (
|
|
228
209
|
'primary',
|
|
229
210
|
600,
|
|
230
211
|
),
|
|
231
212
|
),
|
|
232
|
-
year-selected-current-foreground: (
|
|
233
|
-
contrast-color: (
|
|
234
|
-
'primary',
|
|
235
|
-
800,
|
|
236
|
-
),
|
|
237
|
-
),
|
|
238
213
|
year-selected-current-background: (
|
|
239
214
|
color: (
|
|
240
215
|
'primary',
|
|
241
216
|
800,
|
|
242
217
|
),
|
|
243
218
|
),
|
|
244
|
-
year-selected-current-hover-foreground: (
|
|
245
|
-
contrast-color: (
|
|
246
|
-
'primary',
|
|
247
|
-
600,
|
|
248
|
-
),
|
|
249
|
-
),
|
|
250
219
|
year-selected-current-hover-background: (
|
|
251
220
|
color: (
|
|
252
221
|
'primary',
|
|
253
222
|
600,
|
|
254
223
|
),
|
|
255
224
|
),
|
|
256
|
-
month-selected-foreground: (
|
|
257
|
-
contrast-color: (
|
|
258
|
-
'primary',
|
|
259
|
-
800,
|
|
260
|
-
),
|
|
261
|
-
),
|
|
262
225
|
month-selected-background: (
|
|
263
226
|
color: (
|
|
264
227
|
'primary',
|
|
265
228
|
800,
|
|
266
229
|
),
|
|
267
230
|
),
|
|
268
|
-
month-selected-hover-foreground: (
|
|
269
|
-
contrast-color: (
|
|
270
|
-
'primary',
|
|
271
|
-
600,
|
|
272
|
-
),
|
|
273
|
-
),
|
|
274
231
|
month-selected-hover-background: (
|
|
275
232
|
color: (
|
|
276
233
|
'primary',
|
|
277
234
|
600,
|
|
278
235
|
),
|
|
279
236
|
),
|
|
280
|
-
month-selected-current-foreground: (
|
|
281
|
-
contrast-color: (
|
|
282
|
-
'primary',
|
|
283
|
-
800,
|
|
284
|
-
),
|
|
285
|
-
),
|
|
286
237
|
month-selected-current-background: (
|
|
287
238
|
color: (
|
|
288
239
|
'primary',
|
|
289
240
|
800,
|
|
290
241
|
),
|
|
291
242
|
),
|
|
292
|
-
month-selected-current-hover-foreground: (
|
|
293
|
-
contrast-color: (
|
|
294
|
-
'primary',
|
|
295
|
-
600,
|
|
296
|
-
),
|
|
297
|
-
),
|
|
298
243
|
month-selected-current-hover-background: (
|
|
299
244
|
color: (
|
|
300
245
|
'primary',
|
|
@@ -546,6 +491,7 @@ $dark-bootstrap-calendar: extend(
|
|
|
546
491
|
|
|
547
492
|
/// Generates a dark indigo calendar schema.
|
|
548
493
|
/// @type {Map}
|
|
494
|
+
/// @prop {Map} content-foreground [color: ('gray', 900)] - The foreground color of the days, months and years views.
|
|
549
495
|
/// @prop {Map} date-hover-foreground [contrast-color: 'gray', 900] - The :hover foreground color of a date.
|
|
550
496
|
/// @prop {Map} date-focus-foreground [contrast-color: 'gray', 900] - The :focus foreground color of a date.
|
|
551
497
|
/// @prop {Map} date-current-hover-foreground [contrast-color: ('gray', 900)] - The :hover foreground color of the current date.
|
|
@@ -565,8 +511,8 @@ $dark-bootstrap-calendar: extend(
|
|
|
565
511
|
/// @prop {Map} date-hover-background [contrast-color: ('gray', 900, .1)] - The :hover background color of a date.
|
|
566
512
|
/// @prop {Map} date-focus-background [contrast-color: ('gray', 900, .1)] - The :focus background color of date.
|
|
567
513
|
/// @prop {Map} date-current-foreground [color: ('gray', 900)] - The foreground color of the current date.
|
|
568
|
-
/// @prop {Map} date-disabled-foreground [color: ('gray', 500)] - The foreground color of disabled dates.
|
|
569
|
-
/// @prop {Map} date-disabled-range-foreground [color: ('gray',
|
|
514
|
+
/// @prop {Map} date-disabled-foreground [color: ('gray', 500, .5)] - The foreground color of disabled dates.
|
|
515
|
+
/// @prop {Map} date-disabled-range-foreground [color: ('gray', 900, .38)] - The foreground color of disabled dates.
|
|
570
516
|
/// @prop {Map} date-current-border-color [color: ('primary', 400)] - The border color of the current date.
|
|
571
517
|
/// @prop {Map} date-current-hover-border-color [color: ('primary', 300)] - The :hover border color of the current date.
|
|
572
518
|
/// @prop {Map} date-current-focus-border-color [color: ('primary', 300)] - The :focus border color of the current date.
|
|
@@ -594,6 +540,12 @@ $dark-bootstrap-calendar: extend(
|
|
|
594
540
|
$dark-indigo-calendar: extend(
|
|
595
541
|
$indigo-calendar,
|
|
596
542
|
(
|
|
543
|
+
content-foreground: (
|
|
544
|
+
color: (
|
|
545
|
+
'gray',
|
|
546
|
+
800,
|
|
547
|
+
),
|
|
548
|
+
),
|
|
597
549
|
date-hover-foreground: (
|
|
598
550
|
contrast-color: (
|
|
599
551
|
'gray',
|
|
@@ -606,7 +558,6 @@ $dark-indigo-calendar: extend(
|
|
|
606
558
|
50,
|
|
607
559
|
),
|
|
608
560
|
),
|
|
609
|
-
|
|
610
561
|
date-current-hover-foreground: (
|
|
611
562
|
contrast-color: (
|
|
612
563
|
'gray',
|
|
@@ -645,7 +596,6 @@ $dark-indigo-calendar: extend(
|
|
|
645
596
|
0.1,
|
|
646
597
|
),
|
|
647
598
|
),
|
|
648
|
-
|
|
649
599
|
year-hover-foreground: (
|
|
650
600
|
contrast-color: (
|
|
651
601
|
'gray',
|
|
@@ -659,14 +609,12 @@ $dark-indigo-calendar: extend(
|
|
|
659
609
|
0.1,
|
|
660
610
|
),
|
|
661
611
|
),
|
|
662
|
-
|
|
663
612
|
year-current-hover-foreground: (
|
|
664
613
|
contrast-color: (
|
|
665
614
|
'gray',
|
|
666
615
|
50,
|
|
667
616
|
),
|
|
668
617
|
),
|
|
669
|
-
|
|
670
618
|
date-selected-current-range-hover-background: (
|
|
671
619
|
contrast-color: (
|
|
672
620
|
'gray',
|
|
@@ -674,7 +622,6 @@ $dark-indigo-calendar: extend(
|
|
|
674
622
|
0.1,
|
|
675
623
|
),
|
|
676
624
|
),
|
|
677
|
-
|
|
678
625
|
header-background: (
|
|
679
626
|
color: (
|
|
680
627
|
'gray',
|
|
@@ -719,20 +666,6 @@ $dark-indigo-calendar: extend(
|
|
|
719
666
|
900,
|
|
720
667
|
),
|
|
721
668
|
),
|
|
722
|
-
date-disabled-foreground: (
|
|
723
|
-
contrast-color: (
|
|
724
|
-
'gray',
|
|
725
|
-
50,
|
|
726
|
-
0.4,
|
|
727
|
-
),
|
|
728
|
-
),
|
|
729
|
-
date-disabled-range-foreground: (
|
|
730
|
-
contrast-color: (
|
|
731
|
-
'gray',
|
|
732
|
-
50,
|
|
733
|
-
0.4,
|
|
734
|
-
),
|
|
735
|
-
),
|
|
736
669
|
date-current-border-color: (
|
|
737
670
|
color: (
|
|
738
671
|
'primary',
|
|
@@ -873,5 +806,19 @@ $dark-indigo-calendar: extend(
|
|
|
873
806
|
0.6,
|
|
874
807
|
),
|
|
875
808
|
),
|
|
809
|
+
date-disabled-foreground: (
|
|
810
|
+
color: (
|
|
811
|
+
'gray',
|
|
812
|
+
500,
|
|
813
|
+
0.5,
|
|
814
|
+
),
|
|
815
|
+
),
|
|
816
|
+
date-disabled-range-foreground: (
|
|
817
|
+
color: (
|
|
818
|
+
'gray',
|
|
819
|
+
900,
|
|
820
|
+
0.38,
|
|
821
|
+
),
|
|
822
|
+
),
|
|
876
823
|
)
|
|
877
824
|
);
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
/// @prop {Color} date-selected-focus-border-color [transparent] - The :focus border color of the selected date.
|
|
63
63
|
/// @prop {Color} date-range-border-color [transparent] - The border color of range selection.
|
|
64
64
|
/// @prop {Map} date-range-preview-border-color [color: ('gray', 300)] - The border color of the range selection in preview state(visible before selecting the end of the range).
|
|
65
|
-
/// @prop {Map} date-disabled-foreground [color: ('gray',
|
|
66
|
-
/// @prop {Map} date-disabled-range-foreground [color: ('gray',
|
|
65
|
+
/// @prop {Map} date-disabled-foreground [color: ('gray', 900, .2)] - The foreground color of disabled dates.
|
|
66
|
+
/// @prop {Map} date-disabled-range-foreground [color: ('gray', 800, .38)] - The foreground color of disabled dates in range selection.
|
|
67
67
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
|
|
68
68
|
/// @prop {List} date-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the date.
|
|
69
69
|
/// @prop {List} date-range-border-radius [(rem(20px), rem(0), rem(20px))] -The border radius used for the date in range selection.
|
|
@@ -357,14 +357,14 @@ $light-calendar: (
|
|
|
357
357
|
date-disabled-foreground: (
|
|
358
358
|
color: (
|
|
359
359
|
'gray',
|
|
360
|
-
|
|
361
|
-
0.
|
|
360
|
+
900,
|
|
361
|
+
0.2,
|
|
362
362
|
),
|
|
363
363
|
),
|
|
364
364
|
date-disabled-range-foreground: (
|
|
365
365
|
color: (
|
|
366
366
|
'gray',
|
|
367
|
-
|
|
367
|
+
800,
|
|
368
368
|
0.38,
|
|
369
369
|
),
|
|
370
370
|
),
|