igniteui-theming 6.0.0-beta.15 → 6.0.0-beta.16

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.15",
3
+ "version": "6.0.0-beta.16",
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": {
@@ -537,11 +537,11 @@ $dark-bootstrap-calendar: extend(
537
537
  /// @prop {Map} date-special-foreground [color: ('primary', 50)] - The foreground color of a special date.
538
538
  /// @prop {Map} date-special-background [color: ('primary', 600, .4)] - The background color of a special date.
539
539
  /// @prop {Map} date-special-hover-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
540
- /// @prop {Map} date-special-hover-background [color: ('primary', 600, .7)] - The background color of a special date.
540
+ /// @prop {Map} date-special-hover-background [color: ('primary', 600, .4)] - The background color of a special date.
541
541
  /// @prop {Map} date-special-focus-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
542
- /// @prop {Map} date-special-focus-background [color: ('primary', 600, .7)] - The background color of a special date.
543
- /// @prop {Map} date-special-range-hover-background [color: ('primary', 600, .7)] - The :hover background color of a special date in range selection.
544
- /// @prop {Map} date-special-range-focus-background [color: ('primary', 600, .7)] - The :focus background color of a special date in range selection.
542
+ /// @prop {Map} date-special-focus-background [color: ('primary', 600, .4)] - The background color of a special date.
543
+ /// @prop {Map} date-special-range-hover-background [color: ('primary', 600, .4)] - The :hover background color of a special date in range selection.
544
+ /// @prop {Map} date-special-range-focus-background [color: ('primary', 600, .4)] - The :focus background color of a special date in range selection.
545
545
  /// @prop {Map} navigation-hover-color [color: ('primary', 300)] - The :hover color of the icon button responsible for month navigation.
546
546
  /// @prop {Map} navigation-focus-color [color: ('primary', 300)] - The :focus color of the icon button responsible for month navigation.
547
547
  /// @prop {Мап} actions-divider-color [color: ('gray', 100)] - The border color used for the date-picker actions divider.
@@ -556,6 +556,10 @@ $dark-bootstrap-calendar: extend(
556
556
  /// @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.
557
557
  /// @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.
558
558
  /// @prop {Map} date-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date.
559
+ /// @prop {Map} date-selected-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the selected range.
560
+ /// @prop {Map} date-selected-range-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of the selected range.
561
+ /// @prop {Map} date-selected-range-hover-foreground [contrast-color: ('gray', 50)] - The :hover foreground color of the selected range.
562
+ /// @prop {Map} date-selected-range-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of the selected range.
559
563
  /// @requires $indigo-calendar
560
564
  $dark-indigo-calendar: extend(
561
565
  $indigo-calendar,
@@ -697,7 +701,7 @@ $dark-indigo-calendar: extend(
697
701
  color: (
698
702
  'primary',
699
703
  600,
700
- 0.7,
704
+ 0.4,
701
705
  ),
702
706
  ),
703
707
  date-special-focus-foreground: (
@@ -710,7 +714,7 @@ $dark-indigo-calendar: extend(
710
714
  color: (
711
715
  'primary',
712
716
  600,
713
- 0.7,
717
+ 0.4,
714
718
  ),
715
719
  ),
716
720
  date-special-range-foreground: (
@@ -730,14 +734,14 @@ $dark-indigo-calendar: extend(
730
734
  color: (
731
735
  'primary',
732
736
  600,
733
- 0.7,
737
+ 0.4,
734
738
  ),
735
739
  ),
736
740
  date-special-range-focus-background: (
737
741
  color: (
738
742
  'primary',
739
743
  600,
740
- 0.7,
744
+ 0.4,
741
745
  ),
742
746
  ),
743
747
  navigation-hover-color: (
@@ -837,5 +841,31 @@ $dark-indigo-calendar: extend(
837
841
  0.38,
838
842
  ),
839
843
  ),
844
+ date-selected-range-hover-foreground: (
845
+ contrast-color: (
846
+ 'secondary',
847
+ 900,
848
+ ),
849
+ ),
850
+ date-selected-range-focus-foreground: (
851
+ contrast-color: (
852
+ 'secondary',
853
+ 900,
854
+ ),
855
+ ),
856
+ date-selected-range-hover-background: (
857
+ contrast-color: (
858
+ 'gray',
859
+ 50,
860
+ 0.1,
861
+ ),
862
+ ),
863
+ date-selected-range-focus-background: (
864
+ contrast-color: (
865
+ 'gray',
866
+ 50,
867
+ 0.1,
868
+ ),
869
+ ),
840
870
  )
841
871
  );
@@ -2325,6 +2325,7 @@ $bootstrap-calendar: extend(
2325
2325
  /// @prop {Map} date-selected-current-hover-border-color [contrast-color: ('primary', 900, .6)] - The :hover border color of the selected current date.
2326
2326
  /// @prop {Map} date-selected-current-focus-border-color [contrast-color: ('primary', 900,. 6)] - The :focus border color of the selected current date.
2327
2327
  /// @prop {Map} date-selected-range-foreground [color: ('gray', 800)] - The foreground color of the selected range.
2328
+ /// @prop {Map} date-selected-current-range-foreground [color: ('gray', 800)] - The foreground color of the current date in the selected range.
2328
2329
  /// @prop {Map} date-selected-range-background [color: ('primary', 300, .2)] - The background color of the selected range.
2329
2330
  /// @prop {Map} date-selected-range-hover-background [color: ('secondary', 100)] - The :hover background color of the selected range.
2330
2331
  /// @prop {Map} date-selected-range-focus-background [color: ('secondary', 100)] - The :focus background color of the selected range.
@@ -2702,6 +2703,12 @@ $indigo-calendar: extend(
2702
2703
  0.6,
2703
2704
  ),
2704
2705
  ),
2706
+ date-selected-current-range-foreground: (
2707
+ color: (
2708
+ 'gray',
2709
+ 800,
2710
+ ),
2711
+ ),
2705
2712
  date-selected-range-foreground: (
2706
2713
  color: (
2707
2714
  'gray',