igniteui-theming 6.0.0-beta.12 → 6.0.0-beta.13

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.12",
3
+ "version": "6.0.0-beta.13",
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": {
@@ -205,7 +205,6 @@ $dark-fluent-calendar: extend(
205
205
  200,
206
206
  ),
207
207
  ),
208
-
209
208
  year-selected-foreground: (
210
209
  contrast-color: (
211
210
  'primary',
@@ -547,7 +546,6 @@ $dark-bootstrap-calendar: extend(
547
546
 
548
547
  /// Generates a dark indigo calendar schema.
549
548
  /// @type {Map}
550
- /// @prop {Map} date-special-range-foreground [contrast-color: 'gray', 50] - The foreground color of a special date in rage selection.
551
549
  /// @prop {Map} date-hover-foreground [contrast-color: 'gray', 900] - The :hover foreground color of a date.
552
550
  /// @prop {Map} date-focus-foreground [contrast-color: 'gray', 900] - The :focus foreground color of a date.
553
551
  /// @prop {Map} date-current-hover-foreground [contrast-color: ('gray', 900)] - The :hover foreground color of the current date.
@@ -572,7 +570,9 @@ $dark-bootstrap-calendar: extend(
572
570
  /// @prop {Map} date-current-border-color [color: ('primary', 400)] - The border color of the current date.
573
571
  /// @prop {Map} date-current-hover-border-color [color: ('primary', 300)] - The :hover border color of the current date.
574
572
  /// @prop {Map} date-current-focus-border-color [color: ('primary', 300)] - The :focus border color of the current date.
575
- /// @prop {Map} date-special-foreground [color: ('primary', 600)] - The foreground color of a special date.
573
+ /// @prop {Map} date-special-range-foreground [(color: 'primary', 50)] - The foreground color of a special date in rage selection.
574
+ /// @prop {Map} date-special-range-background [(color: 'primary', 600, .4)] - The background color of a special date in range selection.
575
+ /// @prop {Map} date-special-foreground [color: ('primary', 50)] - The foreground color of a special date.
576
576
  /// @prop {Map} date-special-background [color: ('primary', 600, .4)] - The background color of a special date.
577
577
  /// @prop {Map} date-special-hover-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
578
578
  /// @prop {Map} date-special-hover-background [color: ('primary', 400, .7)] - The background color of a special date.
@@ -586,16 +586,14 @@ $dark-bootstrap-calendar: extend(
586
586
  /// @prop {Map} week-number-foreground [color: ('gray', 500)] - The foreground color of the week number column.
587
587
  /// @prop {Map} week-number-background [color: ('gray', 900, .05)] - The background color of the week number column.
588
588
  /// @prop {Map} date-selected-range-background [color: ('primary', 400, .2)] - The background color of the selected range.
589
+ /// @prop {Map} selected-current-outline-color [contrast-color: ('gray', 50, .6)] - The outline color of the selected current year/month in year/month views.
590
+ /// @prop {Map} selected-current-hover-outline-color [contrast-color: ('gray', 50, .6)] - The :hover outline color of the selected current year/month in year/month views.
591
+ /// @prop {Map} selected-current-focus-outline-color [contrast-color: ('gray', 50, .6)] - The :focus outline color of the selected current year/month in year/month views.
592
+
589
593
  /// @requires $indigo-calendar
590
594
  $dark-indigo-calendar: extend(
591
595
  $indigo-calendar,
592
596
  (
593
- date-special-range-foreground: (
594
- color: (
595
- 'primary',
596
- 50,
597
- ),
598
- ),
599
597
  date-hover-foreground: (
600
598
  contrast-color: (
601
599
  'gray',
@@ -722,15 +720,17 @@ $dark-indigo-calendar: extend(
722
720
  ),
723
721
  ),
724
722
  date-disabled-foreground: (
725
- color: (
723
+ contrast-color: (
726
724
  'gray',
727
- 500,
725
+ 50,
726
+ 0.4,
728
727
  ),
729
728
  ),
730
729
  date-disabled-range-foreground: (
731
- color: (
730
+ contrast-color: (
732
731
  'gray',
733
- 500,
732
+ 50,
733
+ 0.4,
734
734
  ),
735
735
  ),
736
736
  date-current-border-color: (
@@ -764,6 +764,19 @@ $dark-indigo-calendar: extend(
764
764
  0.4,
765
765
  ),
766
766
  ),
767
+ date-special-range-foreground: (
768
+ color: (
769
+ 'primary',
770
+ 50,
771
+ ),
772
+ ),
773
+ date-special-range-background: (
774
+ color: (
775
+ 'primary',
776
+ 600,
777
+ 0.4,
778
+ ),
779
+ ),
767
780
  date-special-hover-foreground: (
768
781
  contrast-color: (
769
782
  'primary',
@@ -839,5 +852,26 @@ $dark-indigo-calendar: extend(
839
852
  0.2,
840
853
  ),
841
854
  ),
855
+ selected-current-outline-color: (
856
+ contrast-color: (
857
+ 'gray',
858
+ 50,
859
+ 0.6,
860
+ ),
861
+ ),
862
+ selected-current-outline-hover-color: (
863
+ contrast-color: (
864
+ 'gray',
865
+ 50,
866
+ 0.6,
867
+ ),
868
+ ),
869
+ selected-current-outline-focus-color: (
870
+ contrast-color: (
871
+ 'gray',
872
+ 50,
873
+ 0.6,
874
+ ),
875
+ ),
842
876
  )
843
877
  );
@@ -41,7 +41,6 @@
41
41
  /// @prop {Color} date-special-background [transparent] - The background color of a special date.
42
42
  /// @prop {Map} date-special-hover-background [color: ('gray', 100)] - The background color of a special date.
43
43
  /// @prop {Map} date-special-focus-background [color: ('gray', 100)] - The background color of a special date.
44
- /// @prop {Map} date-special-range-foreground [color: ('secondary', 900)] - The foreground color of a special date in rage selection.
45
44
  /// @prop {Color} date-special-range-background [transparent] - The background color of a special date in range selection.
46
45
  /// @prop {Map} date-special-range-border-color [color: ('secondary', 900)] - The outline color around a special date in range selection.
47
46
  /// @prop {Color} date-selected-current-outline [transparent] - The outline color of the current selected date.
@@ -64,7 +63,7 @@
64
63
  /// @prop {Color} date-range-border-color [transparent] - The border color of range selection.
65
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).
66
65
  /// @prop {Map} date-disabled-foreground [color: ('gray', 500, .5)] - The foreground color of disabled dates.
67
- /// @prop {Map} date-disabled-range-foreground [color: ('gray', 500)] - The foreground color of disabled dates in range selection.
66
+ /// @prop {Map} date-disabled-range-foreground [color: ('gray', 900, .38)] - The foreground color of disabled dates in range selection.
68
67
  /// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
69
68
  /// @prop {List} date-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the date.
70
69
  /// @prop {List} date-range-border-radius [(rem(20px), rem(0), rem(20px))] -The border radius used for the date in range selection.
@@ -268,12 +267,6 @@ $light-calendar: (
268
267
  100,
269
268
  ),
270
269
  ),
271
- date-special-range-foreground: (
272
- color: (
273
- 'secondary',
274
- 900,
275
- ),
276
- ),
277
270
  date-special-range-background: transparent,
278
271
  date-special-range-border-color: (
279
272
  color: (
@@ -372,7 +365,7 @@ $light-calendar: (
372
365
  color: (
373
366
  'gray',
374
367
  900,
375
- 0.5,
368
+ 0.38,
376
369
  ),
377
370
  ),
378
371
  );
@@ -451,6 +444,7 @@ $light-calendar: (
451
444
  /// @prop {Map} date-selected-current-focus-border-color [color: ('gray', 900)] - The :focus border color of the selected current date.
452
445
  /// @prop {List} week-number-border-radius [(rem(4px), rem(0), rem(8px))] - The border radius used for the week numbers column.
453
446
  /// @prop {Map} actions-divider-color [color: ('gray', 200)] - The border color used for the date-picker actions divider.
447
+ /// @prop {Map} date-special-range-foreground [color: ('secondary', 900)] - The foreground color of a special date in rage selection.
454
448
  /// @requires $light-calendar
455
449
  $material-calendar: extend(
456
450
  $light-calendar,
@@ -848,6 +842,12 @@ $material-calendar: extend(
848
842
  200,
849
843
  ),
850
844
  ),
845
+ date-special-range-foreground: (
846
+ color: (
847
+ 'secondary',
848
+ 900,
849
+ ),
850
+ ),
851
851
  )
852
852
  );
853
853
 
@@ -865,6 +865,7 @@ $material-calendar: extend(
865
865
  /// @prop {Map} date-selected-current-border-color [color: ('gray', 700)] - The border color of the selected current date.
866
866
  /// @prop {Map} date-selected-current-hover-border-color [color: ('gray', 700)] - The :hover border color of the selected current date.
867
867
  /// @prop {Map} date-selected-current-focus-border-color [color: ('gray', 700)] - The :focus border color of the selected current date.
868
+ /// @prop {Map} year-hover-foreground [color: ('gray', 900)] - The :hover foreground color of the year in years view.
868
869
  /// @prop {Map} year-current-foreground [color: ('gray', 900)] - The foreground color of the current year.
869
870
  /// @prop {Map} year-current-background [color: 'gray', 100) ]- The background color of the current year in years view.
870
871
  /// @prop {Map} year-current-hover-foreground [color: ('gray', 900)] - The :hover foreground color of the current year in years view.
@@ -877,6 +878,7 @@ $material-calendar: extend(
877
878
  /// @prop {Map} year-selected-current-background [color: ('primary', 50, .3)] - The background color of the current/selected year.
878
879
  /// @prop {Map} year-selected-current-hover-foreground [color: ('gray', 900)] - The foreground color of the current/selected year on :hover.
879
880
  /// @prop {Map} year-selected-current-hover-background [color: ('primary', 100, .5)] - The background color of the current/selected year on :hover.
881
+ /// @prop {Map} month-hover-foreground [color: ('gray', 900)] - The :hover foreground color of the month inside the months view.
880
882
  /// @prop {Map} month-current-foreground [color: ('gray', 900)] - The foreground color of the current month in month view.
881
883
  /// @prop {Map} month-current-background [color: ('gray', 100)] - The background color of the current month in month view.
882
884
  /// @prop {Map} month-current-hover-foreground [color: ('gray', 900)]- The :hover foreground color of the current month in month view.
@@ -953,7 +955,7 @@ $material-calendar: extend(
953
955
  /// @prop {List} size [(rem(28px), rem(32px), rem(40px))] - The size of the days, months, and years views.
954
956
  /// @prop {List} inner-size [(rem(24px), rem(28px), rem(32px))] - The size of the inner element of a date(often used to outline the special date)
955
957
  /// @prop {Map} actions-divider-color [color: ('gray', 200)] - The border color used for the date-picker actions divider.
956
-
958
+ /// @prop {Map} date-special-range-foreground [color: ('gray', 900)] - The foreground color of a special date in rage selection.
957
959
  /// @requires {Map} $light-calendar
958
960
  $fluent-calendar: extend(
959
961
  $light-calendar,
@@ -1081,6 +1083,12 @@ $fluent-calendar: extend(
1081
1083
  900,
1082
1084
  ),
1083
1085
  ),
1086
+ year-hover-foreground: (
1087
+ color: (
1088
+ 'gray',
1089
+ 900,
1090
+ ),
1091
+ ),
1084
1092
  year-current-foreground: (
1085
1093
  color: (
1086
1094
  'gray',
@@ -1157,6 +1165,12 @@ $fluent-calendar: extend(
1157
1165
  0.5,
1158
1166
  ),
1159
1167
  ),
1168
+ month-hover-foreground: (
1169
+ color: (
1170
+ 'gray',
1171
+ 900,
1172
+ ),
1173
+ ),
1160
1174
  month-current-foreground: (
1161
1175
  color: (
1162
1176
  'gray',
@@ -1523,6 +1537,12 @@ $fluent-calendar: extend(
1523
1537
  200,
1524
1538
  ),
1525
1539
  ),
1540
+ date-special-range-foreground: (
1541
+ color: (
1542
+ 'gray',
1543
+ 900,
1544
+ ),
1545
+ ),
1526
1546
  )
1527
1547
  );
1528
1548
 
@@ -1629,6 +1649,8 @@ $fluent-calendar: extend(
1629
1649
  /// @prop {Map} date-selected-current-hover-border-color [color: ('gray', 900)] - The :hover border color of the selected current date.
1630
1650
  /// @prop {Map} date-selected-current-focus-border-color [color: ('gray', 900)] - The :focus border color of the selected current date.
1631
1651
  /// @prop {Map} actions-divider-color [color: ('gray', 300)] - The border color used for the date-picker actions divider.
1652
+ /// @prop {Map} date-special-range-foreground [color: ('gray', 900)] - The foreground color of a special date in rage selection.
1653
+
1632
1654
  /// @requires {Map} $light-calendar
1633
1655
  $bootstrap-calendar: extend(
1634
1656
  $light-calendar,
@@ -2200,6 +2222,12 @@ $bootstrap-calendar: extend(
2200
2222
  300,
2201
2223
  ),
2202
2224
  ),
2225
+ date-special-range-foreground: (
2226
+ color: (
2227
+ 'gray',
2228
+ 900,
2229
+ ),
2230
+ ),
2203
2231
  )
2204
2232
  );
2205
2233
 
@@ -2296,6 +2324,8 @@ $bootstrap-calendar: extend(
2296
2324
  /// @prop {List} inner-size [(rem(24px), rem(28px), rem(32px))] - The size of the inner element of a date(often used to outline the special date)
2297
2325
  /// @prop {List} border-radius [(rem(8px), rem(0), rem(8px))] - The border radius used for calendar.
2298
2326
  /// @prop {Map} actions-divider-color [color: ('gray', 400)] - The border color used for the date-picker actions divider.
2327
+ /// @prop {Map} date-special-range-foreground [color: ('primary', 500)] - The foreground color of a special date in rage selection.
2328
+ /// @prop {Map} date-special-range-background [(color: 'primary', 50, .7)] - The background color of a special date in range selection.
2299
2329
  /// @requires {Map} $light-calendar
2300
2330
  $indigo-calendar: extend(
2301
2331
  $light-calendar,
@@ -2471,6 +2501,19 @@ $indigo-calendar: extend(
2471
2501
  0.7,
2472
2502
  ),
2473
2503
  ),
2504
+ date-special-range-foreground: (
2505
+ color: (
2506
+ 'primary',
2507
+ 500,
2508
+ ),
2509
+ ),
2510
+ date-special-range-background: (
2511
+ color: (
2512
+ 'primary',
2513
+ 50,
2514
+ 0.7,
2515
+ ),
2516
+ ),
2474
2517
  date-special-hover-foreground: (
2475
2518
  color: (
2476
2519
  'primary',
@@ -2593,7 +2636,7 @@ $indigo-calendar: extend(
2593
2636
  date-selected-range-foreground: (
2594
2637
  color: (
2595
2638
  'gray',
2596
- 800,
2639
+ 900,
2597
2640
  ),
2598
2641
  ),
2599
2642
  date-selected-range-background: (
@@ -2660,7 +2703,7 @@ $indigo-calendar: extend(
2660
2703
  year-current-foreground: (
2661
2704
  color: (
2662
2705
  'gray',
2663
- 800,
2706
+ 900,
2664
2707
  ),
2665
2708
  ),
2666
2709
  year-current-background: transparent,
@@ -2741,7 +2784,7 @@ $indigo-calendar: extend(
2741
2784
  month-current-foreground: (
2742
2785
  color: (
2743
2786
  'gray',
2744
- 800,
2787
+ 900,
2745
2788
  ),
2746
2789
  ),
2747
2790
  month-current-background: transparent,