igniteui-theming 25.0.0-beta.3 → 25.0.0-beta.4
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 +1 -1
- package/sass/themes/components/calendar/_calendar-theme.scss +4 -0
- package/sass/themes/components/switch/_switch-theme.scss +4 -0
- package/sass/themes/schemas/components/dark/_icon-button.scss +0 -1
- package/sass/themes/schemas/components/light/_input-group.scss +1 -1
- package/sass/typography/_types.scss +3 -3
- package/tailwind/utilities/bootstrap.css +1 -1
- package/tailwind/utilities/fluent.css +1 -1
- package/tailwind/utilities/indigo.css +1 -1
- package/tailwind/utilities/material.css +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "25.0.0-beta.
|
|
3
|
+
"version": "25.0.0-beta.4",
|
|
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": {
|
|
@@ -808,6 +808,10 @@
|
|
|
808
808
|
$date-special-hover-foreground: dynamic-shade(var(--date-special-foreground), $offset: 7);
|
|
809
809
|
}
|
|
810
810
|
|
|
811
|
+
@if not($date-special-hover-border-color) and $date-special-border-color {
|
|
812
|
+
$date-special-hover-border-color: dynamic-shade(var(--date-special-border-color), $offset: 7);
|
|
813
|
+
}
|
|
814
|
+
|
|
811
815
|
@if not($date-special-focus-foreground) and $date-special-hover-border-color {
|
|
812
816
|
$date-special-focus-foreground: var(--date-special-hover-border-color);
|
|
813
817
|
}
|
|
@@ -107,6 +107,10 @@
|
|
|
107
107
|
$thumb-off-color: dynamic-shade(var(--track-off-color), $offset: 20);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
@if not($thumb-off-hover-color) and $thumb-off-color {
|
|
111
|
+
$thumb-off-hover-color: var(--thumb-off-color);
|
|
112
|
+
}
|
|
113
|
+
|
|
110
114
|
@if not($thumb-disabled-color) and $thumb-off-color {
|
|
111
115
|
$thumb-disabled-color: hsl(from var(--thumb-off-color) h s calc(l + 20));
|
|
112
116
|
}
|
|
@@ -711,8 +711,8 @@ $bootstrap-input-group: extend(
|
|
|
711
711
|
/// @requires {Map} $light-input-group
|
|
712
712
|
/// @requires {Map} $indigo-elevation-input-group
|
|
713
713
|
$indigo-input-group: extend(
|
|
714
|
-
$light-input-group,
|
|
715
714
|
$indigo-validator,
|
|
715
|
+
$light-input-group,
|
|
716
716
|
$indigo-elevation-input-group,
|
|
717
717
|
(
|
|
718
718
|
input-prefix-color: (
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
/// A list consisting of 13 different category type styles
|
|
7
7
|
/// @type List
|
|
8
8
|
/// @access public
|
|
9
|
-
$ITypeScale: (h1, h2, h3, h4, h5, h6, subtitle-1, subtitle-2, body-1, body-2, button, caption, overline);
|
|
9
|
+
$ITypeScale: (h1, h2, h3, h4, h5, h6, subtitle-1, subtitle-2, body-1, body-2, button, caption, overline) !default;
|
|
10
10
|
|
|
11
11
|
/// A set of style rules for all categories
|
|
12
12
|
/// @type Map
|
|
@@ -21,7 +21,7 @@ $ITypeStyle: (
|
|
|
21
21
|
text-transform: none,
|
|
22
22
|
margin-top: 0,
|
|
23
23
|
margin-bottom: 0,
|
|
24
|
-
);
|
|
24
|
+
) !default;
|
|
25
25
|
|
|
26
26
|
/// A list of all category type styles that can be maped to native elements
|
|
27
27
|
/// @type Map
|
|
@@ -34,4 +34,4 @@ $IElementCategories: (
|
|
|
34
34
|
h5: 'h5',
|
|
35
35
|
h6: 'h6',
|
|
36
36
|
body-1: 'p',
|
|
37
|
-
);
|
|
37
|
+
) !default;
|