igniteui-theming 6.0.0-beta.4 → 6.0.0-beta.6
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.6",
|
|
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": {
|
|
@@ -605,6 +605,8 @@ $dark-bootstrap-calendar: extend(
|
|
|
605
605
|
/// @prop {Map} date-special-hover-background [color: ('primary', 600)] - The background color of a special date.
|
|
606
606
|
/// @prop {Map} date-special-focus-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
|
|
607
607
|
/// @prop {Map} date-special-focus-background [color: ('primary', 600)] - The background color of a special date.
|
|
608
|
+
/// @prop {Map} navigation-hover-color [color: ('primary', 300)] - The :hover color of the icon button responsible for month navigation.
|
|
609
|
+
/// @prop {Map} navigation-focus-color [color: ('primary', 300)] - The :focus color of the icon button responsible for month navigation.
|
|
608
610
|
/// @requires $indigo-calendar
|
|
609
611
|
$dark-indigo-calendar: extend(
|
|
610
612
|
$indigo-calendar,
|
|
@@ -713,5 +715,17 @@ $dark-indigo-calendar: extend(
|
|
|
713
715
|
600,
|
|
714
716
|
),
|
|
715
717
|
),
|
|
718
|
+
navigation-hover-color: (
|
|
719
|
+
color: (
|
|
720
|
+
'primary',
|
|
721
|
+
300,
|
|
722
|
+
),
|
|
723
|
+
),
|
|
724
|
+
navigation-focus-color: (
|
|
725
|
+
color: (
|
|
726
|
+
'primary',
|
|
727
|
+
300,
|
|
728
|
+
),
|
|
729
|
+
),
|
|
716
730
|
)
|
|
717
731
|
);
|
|
@@ -2436,8 +2436,8 @@ $bootstrap-calendar: extend(
|
|
|
2436
2436
|
/// @prop {Map} picker-focus-foreground [color: 'gray' 900] - The :focus foreground color of the month and year pickers.
|
|
2437
2437
|
///
|
|
2438
2438
|
/// @prop {Map} navigation-color [color: ('gray', 600)] - the color of the buttons responsible for navigation.
|
|
2439
|
-
/// @prop {Map} navigation-hover-color [color: ('
|
|
2440
|
-
/// @prop {Map} navigation-focus-color [color: ('
|
|
2439
|
+
/// @prop {Map} navigation-hover-color [color: ('primary', 500)] - The :hover color of the icon button responsible for month navigation.
|
|
2440
|
+
/// @prop {Map} navigation-focus-color [color: ('primary', 500)] - The :focus color of the icon button responsible for month navigation.
|
|
2441
2441
|
/// @prop {Map} week-number-foreground [color: ('gray', 600)] - The foreground color of the week number column.
|
|
2442
2442
|
///
|
|
2443
2443
|
/// @prop {Map} week-number-background [color: ('gray', 900, .05)] - The background color of the week number column.
|
|
@@ -2610,14 +2610,14 @@ $indigo-calendar: extend(
|
|
|
2610
2610
|
),
|
|
2611
2611
|
navigation-hover-color: (
|
|
2612
2612
|
color: (
|
|
2613
|
-
'
|
|
2614
|
-
|
|
2613
|
+
'primary',
|
|
2614
|
+
500,
|
|
2615
2615
|
),
|
|
2616
2616
|
),
|
|
2617
2617
|
navigation-focus-color: (
|
|
2618
2618
|
color: (
|
|
2619
|
-
'
|
|
2620
|
-
|
|
2619
|
+
'primary',
|
|
2620
|
+
500,
|
|
2621
2621
|
),
|
|
2622
2622
|
),
|
|
2623
2623
|
|