igniteui-theming 10.1.0 → 10.2.0-beta.1

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": "10.1.0",
3
+ "version": "10.2.0-beta.1",
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": {
@@ -20,6 +20,7 @@
20
20
  /// @property {Color} plot-area-background [color: ('surface', 500)] - Sets the brush used as the background for the current Chart object's plot area.
21
21
  /// @property {String} title-horizontal-alignment [null] - The horizontal alignment to use for the title.
22
22
  /// @property {String} subtitle-horizontal-alignment [null] - The horizontal alignment to use for the subtitle.
23
+ /// @property {Color} axis-label-text-color [color: (gray, 700)] - The horizontal alignment to use for the subtitle.
23
24
  $material-data-chart: (
24
25
  'margin': null,
25
26
  'title-text-color': (
@@ -48,6 +49,12 @@ $material-data-chart: (
48
49
  ),
49
50
  'title-horizontal-alignment': null,
50
51
  'subtitle-horizontal-alignment': null,
52
+ 'axis-label-text-color': (
53
+ color: (
54
+ 'gray',
55
+ 700,
56
+ ),
57
+ ),
51
58
  );
52
59
 
53
60
  /// Generates a fluent data-chart schema.
@@ -127,6 +127,9 @@ $dark-material-calendar: extend(
127
127
  /// @prop {Map} header-foreground [contrast-color: ('primary', 200)] - The header foreground color.
128
128
  /// @prop {Map} header-background [color: ('primary', 200)] - The background color of the month and year pickers.
129
129
  /// @prop {Мap} actions-divider-color [color: ('gray', 100)] - The border color used for the date-picker actions divider.
130
+ /// @prop {Map} date-selected-special-border-color [color: ('primary', 50)] - The border color of the selected special date.
131
+ /// @prop {Map} date-selected-special-hover-border-color [color: ('primary', 50)] - The :hover border color of the selected special date.
132
+ /// @prop {Map} date-selected-special-focus-border-color [color: ('primary', 50)] - The :focus border color of the selected special date.
130
133
  /// @requires $fluent-calendar
131
134
  $dark-fluent-calendar: extend(
132
135
  $fluent-calendar,
@@ -275,6 +278,24 @@ $dark-fluent-calendar: extend(
275
278
  100,
276
279
  ),
277
280
  ),
281
+ date-selected-special-border-color: (
282
+ color: (
283
+ 'primary',
284
+ 50,
285
+ ),
286
+ ),
287
+ date-selected-special-hover-border-color: (
288
+ color: (
289
+ 'primary',
290
+ 50,
291
+ ),
292
+ ),
293
+ date-selected-special-focus-border-color: (
294
+ color: (
295
+ 'primary',
296
+ 50,
297
+ ),
298
+ ),
278
299
  )
279
300
  );
280
301
 
@@ -443,10 +464,10 @@ $dark-bootstrap-calendar: extend(
443
464
  /// Generates a dark indigo calendar schema.
444
465
  /// @type {Map}
445
466
  /// @prop {Map} content-foreground [color: ('gray', 900)] - The foreground color of the days, months and years views.
446
- /// @prop {Map} date-current-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of the current date.
447
467
  /// @prop {Map} ym-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the month/year.
448
468
  /// @prop {Map} ym-current-hover-background [contrast-color: ('gray', 900, .1)] - The :hover background color of the current month/year.
449
469
  /// @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.
470
+ /// @prop {Map} date-selected-current-range-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of the current date in the selected range.
450
471
  /// @prop {Map} header-background [color: ('gray', 50)] - The header background color.
451
472
  /// @prop {Map} content-background [color: ('gray', 50)] - The background color of the days, months and years views.
452
473
  /// @prop {Map} picker-background [color: ('gray', 50)] - The background color of the month and year pickers.
@@ -455,22 +476,28 @@ $dark-bootstrap-calendar: extend(
455
476
  /// @prop {Map} date-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of a date.
456
477
  /// @prop {Map} date-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of a date.
457
478
  /// @prop {Map} date-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of date.
458
- /// @prop {Map} date-current-foreground [color: ('gray', 900)] - The foreground color of the current date.
459
479
  /// @prop {Map} date-disabled-foreground [color: ('gray', 500, .5)] - The foreground color of disabled dates.
460
480
  /// @prop {Map} date-disabled-range-foreground [color: ('gray', 900, .38)] - The foreground color of disabled dates.
461
- /// @prop {Map} date-current-border-color [color: ('primary', 400)] - The border color of the current date.
462
- /// @prop {Map} date-current-hover-border-color [color: ('primary', 300)] - The :hover border color of the current date.
463
- /// @prop {Map} date-current-focus-border-color [color: ('primary', 300)] - The :focus border color of the current date.
464
- /// @prop {Map} date-special-range-foreground [color: ('primary', 50)] - The foreground color of a special date in rage selection.
481
+ /// @prop {Map} date-current-foreground [color: ('gray', 900)] - The foreground color of the current date.
482
+ /// @prop {Map} date-current-background [color: ('primary', 700, .5)] - The background color of the current date.
483
+ /// @prop {Map} date-current-hover-background [color: ('primary', 700)] - The :hover background color of the current date.
484
+ /// @prop {Map} date-current-focus-background [color: ('primary', 700)] - The :focus background color of the current date.
485
+ /// @prop {Map} date-current-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of the current date.
486
+ /// @prop {Map} date-current-border-color [color: ('primary', 300)] - The border color of the current date.
487
+ /// @prop {Map} date-current-hover-border-color [color: ('primary', 200)] - The :hover border color of the current date.
488
+ /// @prop {Map} date-current-focus-border-color [color: ('primary', 200)] - The :focus border color of the current date.
489
+ /// @prop {Map} date-special-range-foreground [color: ('primary', 100)] - The foreground color of a special date in rage selection.
465
490
  /// @prop {Map} date-special-range-background [color: ('primary', 600, .4)] - The background color of a special date in range selection.
466
- /// @prop {Map} date-special-foreground [color: ('primary', 50)] - The foreground color of a special date.
467
- /// @prop {Map} date-special-background [color: ('primary', 600, .4)] - The background color of a special date.
468
- /// @prop {Map} date-special-hover-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
469
- /// @prop {Map} date-special-hover-background [color: ('primary', 400, .7)] - The background color of a special date.
470
- /// @prop {Map} date-special-focus-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
471
- /// @prop {Map} date-special-focus-background [color: ('primary', 400, .7)] - The background color of a special date.
491
+ /// @prop {Map} date-special-foreground [color: ('primary', 100)] - The foreground color of a special date.
492
+ /// @prop {Map} date-special-hover-foreground [color: ('primary', 50)] - The :hover foreground color of a special date.
493
+ /// @prop {Map} date-special-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of a special date.
494
+ /// @prop {Map} date-special-focus-foreground [color: ('primary', 50)] - The :focus foreground color of a special date.
495
+ /// @prop {Map} date-special-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of a special date.
472
496
  /// @prop {Map} date-special-range-hover-background [color: ('primary', 600, .7)] - The :hover background color of a special date in range selection.
473
497
  /// @prop {Map} date-special-range-focus-background [color: ('primary', 600, .7)] - The :focus background color of a special date in range selection.
498
+ /// @prop {Map} date-special-border-color [color: ('primary', 100)] - The outline color around a special date.
499
+ /// @prop {Map} date-special-hover-border-color [color: ('primary', 50)] - The outline color around a special date on hover.
500
+ /// @prop {Map} date-special-range-border-color [color: ('primary', 100)] - The outline color around a special date in range selection.
474
501
  /// @prop {Map} navigation-hover-color [color: ('primary', 300)] - The :hover color of the icon button responsible for month navigation.
475
502
  /// @prop {Map} navigation-focus-color [color: ('primary', 300)] - The :focus color of the icon button responsible for month navigation.
476
503
  /// @prop {Мап} actions-divider-color [color: ('gray', 100)] - The border color used for the date-picker actions divider.
@@ -479,13 +506,11 @@ $dark-bootstrap-calendar: extend(
479
506
  /// @prop {Map} week-number-foreground [color: ('gray', 500)] - The foreground color of the week number column.
480
507
  /// @prop {Map} week-number-background [contrast-color: ('gray', 50, .05)] - The background color of the week number column.
481
508
  /// @prop {Map} date-selected-range-background [color: ('primary', 400, .2)] - The background color of the selected range.
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.
488
- /// @prop {Map} date-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date.
509
+ /// @prop {Map} ym-current-background [color: ('primary', 700, .5)] - The background color of the current month/year.
510
+ /// @prop {Map} ym-current-hover-background [color: ('primary', 700)] - The :hover background color of the current month/year.
511
+ /// @prop {Map} ym-current-outline-hover-color [color: ('primary', 200)] - The :hover outline color of the current month/year.
512
+ /// @prop {Map} ym-current-outline-focus-color [color: ('primary', 200)] - The :focus outline color of the current month/year.
513
+ /// @prop {Map} ym-current-outline-color [color: ('primary', 300)] - The outline color of the current month/year.
489
514
  /// @prop {Map} date-selected-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the selected range.
490
515
  /// @prop {Map} date-selected-range-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of the selected range.
491
516
  /// @prop {Map} date-selected-range-hover-foreground [contrast-color: ('gray', 50)] - The :hover foreground color of the selected range.
@@ -501,27 +526,21 @@ $dark-indigo-calendar: extend(
501
526
  900,
502
527
  ),
503
528
  ),
504
- date-current-hover-background: (
529
+ ym-hover-background: (
505
530
  contrast-color: (
506
531
  'gray',
507
532
  50,
508
533
  0.1,
509
534
  ),
510
535
  ),
511
- date-current-focus-foreground: (
512
- contrast-color: (
513
- 'gray',
514
- 50,
515
- ),
516
- ),
517
- ym-hover-background: (
536
+ date-selected-current-range-hover-background: (
518
537
  contrast-color: (
519
538
  'gray',
520
539
  50,
521
540
  0.1,
522
541
  ),
523
542
  ),
524
- date-selected-current-range-hover-background: (
543
+ date-selected-current-range-focus-background: (
525
544
  contrast-color: (
526
545
  'gray',
527
546
  50,
@@ -584,67 +603,85 @@ $dark-indigo-calendar: extend(
584
603
  900,
585
604
  ),
586
605
  ),
587
- date-current-border-color: (
606
+ date-current-background: (
588
607
  color: (
589
608
  'primary',
590
- 400,
609
+ 700,
610
+ 0.5,
591
611
  ),
592
612
  ),
593
- date-current-hover-border-color: (
613
+ date-current-hover-background: (
594
614
  color: (
595
615
  'primary',
596
- 300,
616
+ 700,
597
617
  ),
598
618
  ),
599
- date-current-focus-border-color: (
619
+ date-current-focus-background: (
620
+ color: (
621
+ 'primary',
622
+ 700,
623
+ ),
624
+ ),
625
+ date-current-focus-foreground: (
626
+ contrast-color: (
627
+ 'gray',
628
+ 50,
629
+ ),
630
+ ),
631
+ date-current-border-color: (
600
632
  color: (
601
633
  'primary',
602
634
  300,
603
635
  ),
604
636
  ),
605
- date-special-foreground: (
637
+ date-current-hover-border-color: (
606
638
  color: (
607
639
  'primary',
608
- 50,
640
+ 200,
609
641
  ),
610
642
  ),
611
- date-special-background: (
643
+ date-current-focus-border-color: (
612
644
  color: (
613
645
  'primary',
614
- 600,
615
- 0.4,
646
+ 200,
616
647
  ),
617
648
  ),
618
- date-special-hover-foreground: (
619
- contrast-color: (
649
+ date-special-foreground: (
650
+ color: (
620
651
  'primary',
621
- 600,
652
+ 100,
622
653
  ),
623
654
  ),
624
- date-special-hover-background: (
655
+ date-special-hover-foreground: (
625
656
  color: (
626
657
  'primary',
627
- 400,
628
- 0.7,
658
+ 50,
629
659
  ),
630
660
  ),
631
- date-special-focus-foreground: (
661
+ date-special-hover-background: (
632
662
  contrast-color: (
633
- 'primary',
634
- 600,
663
+ 'gray',
664
+ 50,
665
+ 0.1,
635
666
  ),
636
667
  ),
637
- date-special-focus-background: (
668
+ date-special-focus-foreground: (
638
669
  color: (
639
670
  'primary',
640
- 400,
641
- 0.7,
671
+ 50,
672
+ ),
673
+ ),
674
+ date-special-focus-background: (
675
+ contrast-color: (
676
+ 'gray',
677
+ 50,
678
+ 0.1,
642
679
  ),
643
680
  ),
644
681
  date-special-range-foreground: (
645
682
  color: (
646
683
  'primary',
647
- 50,
684
+ 100,
648
685
  ),
649
686
  ),
650
687
  date-special-range-background: (
@@ -668,6 +705,24 @@ $dark-indigo-calendar: extend(
668
705
  0.7,
669
706
  ),
670
707
  ),
708
+ date-special-border-color: (
709
+ color: (
710
+ 'primary',
711
+ 100,
712
+ ),
713
+ ),
714
+ date-special-hover-border-color: (
715
+ color: (
716
+ 'primary',
717
+ 50,
718
+ ),
719
+ ),
720
+ date-special-range-border-color: (
721
+ color: (
722
+ 'primary',
723
+ 100,
724
+ ),
725
+ ),
671
726
  navigation-hover-color: (
672
727
  color: (
673
728
  'primary',
@@ -718,43 +773,35 @@ $dark-indigo-calendar: extend(
718
773
  0.2,
719
774
  ),
720
775
  ),
721
- ym-current-outline-color: (
776
+ ym-current-background: (
722
777
  color: (
723
778
  'primary',
724
- 400,
725
- ),
726
- ),
727
- ym-selected-current-outline-color: (
728
- contrast-color: (
729
- 'gray',
730
- 50,
731
- 0.6,
779
+ 700,
780
+ 0.5,
732
781
  ),
733
782
  ),
734
- ym-current-outline-hover-color: (
783
+ ym-current-hover-background: (
735
784
  color: (
736
785
  'primary',
737
- 300,
786
+ 700,
738
787
  ),
739
788
  ),
740
- ym-current-outline-focus-color: (
789
+ ym-current-outline-color: (
741
790
  color: (
742
791
  'primary',
743
792
  300,
744
793
  ),
745
794
  ),
746
- ym-selected-current-outline-hover-color: (
747
- contrast-color: (
748
- 'gray',
749
- 50,
750
- 0.6,
795
+ ym-current-outline-hover-color: (
796
+ color: (
797
+ 'primary',
798
+ 200,
751
799
  ),
752
800
  ),
753
- ym-selected-current-outline-focus-color: (
754
- contrast-color: (
755
- 'gray',
756
- 50,
757
- 0.6,
801
+ ym-current-outline-focus-color: (
802
+ color: (
803
+ 'primary',
804
+ 200,
758
805
  ),
759
806
  ),
760
807
  date-disabled-foreground: (
@@ -34,20 +34,15 @@ $dark-bootstrap-grid-summary: extend(
34
34
 
35
35
  /// Generates a dark indigo grid-summary schema.
36
36
  /// @type {Map}
37
- /// @property {Map} background-color [color: 'surface'] - The summaries background color is inherited form igx-grid footer.
38
- /// @property {Map} focus-background-color [color: ('gray', 100)] - The background color when a summary item is on focus.
39
- /// @property {Map} label-color [color: ('primary', 200)] - The summaries label color.
40
- /// @property {map} label-hover-color [color: ('primary', 100)] - The summaries hover label color.
41
- /// @property {Map} result-color [color: 'surface'] - The summaries value/result color.
42
- /// @property {Map} pinned-border-color [color: ('primary', 200)] - The border color of the summary panel.
37
+ /// @prop {Map} focus-background-color [color: ('gray', 100)] - The background color when a summary item is on focus.
38
+ /// @prop {Map} label-color [color: ('primary', 200)] - The summaries label color.
39
+ /// @prop {Map} label-hover-color [color: ('primary', 200)] - The summaries hover label color.
40
+ /// @prop {Map} result-color [contrast-color: 'surface'] - The summaries value/result color.
41
+ /// @prop {Map} border-color [color: ('gray', 200)] - The summaries border color.
43
42
  /// @requires $indigo-grid-summary
44
43
  $dark-indigo-grid-summary: extend(
45
44
  $indigo-grid-summary,
46
45
  (
47
- background-color: (
48
- color: 'surface',
49
- ),
50
-
51
46
  focus-background-color: (
52
47
  color: (
53
48
  'gray',
@@ -65,17 +60,17 @@ $dark-indigo-grid-summary: extend(
65
60
  label-hover-color: (
66
61
  color: (
67
62
  'primary',
68
- 100,
63
+ 200,
69
64
  ),
70
65
  ),
71
66
 
72
67
  result-color: (
73
- color: 'surface',
68
+ contrast-color: 'surface',
74
69
  ),
75
70
 
76
- pinned-border-color: (
71
+ border-color: (
77
72
  color: (
78
- 'primary',
73
+ 'gray',
79
74
  200,
80
75
  ),
81
76
  ),
@@ -23,14 +23,18 @@ $dark-fluent-grid-toolbar: $fluent-grid-toolbar;
23
23
  $dark-bootstrap-grid-toolbar: $bootstrap-grid-toolbar;
24
24
 
25
25
  /// Generates a dark indigo grid-toolbar schema.
26
+ /// @prop {Map} border-color [contrast-color: ('gray', 50, .3)] - The toolbar border-bottom color.
26
27
  /// @type {Map}
27
- /// @property {Map} background-color [color: 'surface'] - The toolbar background color.
28
28
  /// @requires $indigo-grid-toolbar
29
29
  $dark-indigo-grid-toolbar: extend(
30
30
  $indigo-grid-toolbar,
31
31
  (
32
- background-color: (
33
- color: 'surface',
32
+ border-color: (
33
+ contrast-color: (
34
+ 'gray',
35
+ 50,
36
+ 0.3,
37
+ ),
34
38
  ),
35
39
  )
36
40
  );