igniteui-angular 19.0.0 → 19.0.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/fesm2022/igniteui-angular.mjs +4 -1
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/tree/_tree-theme.scss +7 -1
- package/lib/core/styles/themes/generators/_base.scss +6 -4
- package/lib/core/styles/themes/generators/_bootstrap.scss +2 -0
- package/lib/core/styles/themes/generators/_fluent.scss +2 -0
- package/lib/core/styles/themes/generators/_indigo.scss +2 -0
- package/package.json +1 -1
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-angular.css +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/igniteui-bootstrap-light.css +1 -1
- package/styles/igniteui-dark-green.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/igniteui-fluent-dark.css +1 -1
- package/styles/igniteui-fluent-light-excel.css +1 -1
- package/styles/igniteui-fluent-light-word.css +1 -1
- package/styles/igniteui-fluent-light.css +1 -1
- package/styles/igniteui-indigo-dark.css +1 -1
- package/styles/igniteui-indigo-light.css +1 -1
- package/styles/maps/igniteui-angular-dark.css.map +1 -1
- package/styles/maps/igniteui-angular.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
- package/styles/maps/igniteui-dark-green.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-light.css.map +1 -1
- package/styles/maps/igniteui-indigo-dark.css.map +1 -1
- package/styles/maps/igniteui-indigo-light.css.map +1 -1
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
), $variant);
|
|
149
149
|
|
|
150
150
|
$icon-space: map.get((
|
|
151
|
-
'material': $icon-space-
|
|
151
|
+
'material': $icon-space-indigo,
|
|
152
152
|
'fluent': $icon-space-default,
|
|
153
153
|
'bootstrap': $icon-space-default,
|
|
154
154
|
'indigo': $icon-space-indigo
|
|
@@ -209,6 +209,12 @@
|
|
|
209
209
|
margin-inline-end: $icon-space;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
+
@if $variant == 'material' {
|
|
213
|
+
%node-select {
|
|
214
|
+
margin-inline: rem(10px) rem(14px);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
212
218
|
@if $variant == 'indigo' {
|
|
213
219
|
%node-select {
|
|
214
220
|
margin-inline-end: rem(8px);
|
|
@@ -663,6 +663,7 @@
|
|
|
663
663
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
664
664
|
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
|
|
665
665
|
/// @see {mixin} theme
|
|
666
|
+
/// @deprecated - Use the theme mixin instead.
|
|
666
667
|
@mixin light-theme(
|
|
667
668
|
$palette,
|
|
668
669
|
$exclude: (),
|
|
@@ -672,7 +673,7 @@
|
|
|
672
673
|
$gray: color($palette, 'gray');
|
|
673
674
|
$surface: color($palette, 'surface');
|
|
674
675
|
|
|
675
|
-
$
|
|
676
|
+
$_light-palette: palette(
|
|
676
677
|
$primary: color($palette, 'primary'),
|
|
677
678
|
$secondary: color($palette, 'secondary'),
|
|
678
679
|
$info: color($palette, 'info'),
|
|
@@ -684,7 +685,7 @@
|
|
|
684
685
|
);
|
|
685
686
|
|
|
686
687
|
@include theme(
|
|
687
|
-
$palette: $
|
|
688
|
+
$palette: $_light-palette,
|
|
688
689
|
$schema: $light-material-schema,
|
|
689
690
|
$exclude: $exclude,
|
|
690
691
|
$roundness: $roundness,
|
|
@@ -696,6 +697,7 @@
|
|
|
696
697
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
697
698
|
/// @param {List} $exclude [( )] - A list of igx components to be excluded from the global theme styles.
|
|
698
699
|
/// @see {mixin} theme
|
|
700
|
+
/// @deprecated - Use the theme mixin instead.
|
|
699
701
|
@mixin dark-theme(
|
|
700
702
|
$palette,
|
|
701
703
|
$exclude: (),
|
|
@@ -705,7 +707,7 @@
|
|
|
705
707
|
$gray: color($palette, 'gray');
|
|
706
708
|
$surface: color($palette, 'surface');
|
|
707
709
|
|
|
708
|
-
$
|
|
710
|
+
$_dark-palette: palette(
|
|
709
711
|
$primary: color($palette, 'primary'),
|
|
710
712
|
$secondary: color($palette, 'secondary'),
|
|
711
713
|
$info: color($palette, 'info'),
|
|
@@ -717,7 +719,7 @@
|
|
|
717
719
|
);
|
|
718
720
|
|
|
719
721
|
@include theme(
|
|
720
|
-
$palette: $
|
|
722
|
+
$palette: $_dark-palette,
|
|
721
723
|
$schema: $dark-material-schema,
|
|
722
724
|
$exclude: $exclude,
|
|
723
725
|
$roundness: $roundness,
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
14
14
|
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
|
|
15
15
|
/// @see {mixin} theme
|
|
16
|
+
/// @deprecated - Use the theme mixin instead.
|
|
16
17
|
@mixin bootstrap-light-theme(
|
|
17
18
|
$palette,
|
|
18
19
|
$exclude: (),
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
51
52
|
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
|
|
52
53
|
/// @see {mixin} theme
|
|
54
|
+
/// @deprecated - Use the theme mixin instead.
|
|
53
55
|
@mixin bootstrap-dark-theme(
|
|
54
56
|
$palette,
|
|
55
57
|
$exclude: (),
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
14
14
|
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
|
|
15
15
|
/// @see {mixin} theme
|
|
16
|
+
/// @deprecated - Use the theme mixin instead.
|
|
16
17
|
@mixin fluent-light-theme(
|
|
17
18
|
$palette,
|
|
18
19
|
$exclude: (),
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
51
52
|
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
|
|
52
53
|
/// @see {mixin} theme
|
|
54
|
+
/// @deprecated - Use the theme mixin instead.
|
|
53
55
|
@mixin fluent-dark-theme(
|
|
54
56
|
$palette,
|
|
55
57
|
$exclude: (),
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
15
15
|
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
|
|
16
16
|
/// @see {mixin} theme
|
|
17
|
+
/// @deprecated - Use the theme mixin instead.
|
|
17
18
|
@mixin indigo-light-theme(
|
|
18
19
|
$palette,
|
|
19
20
|
$exclude: (),
|
|
@@ -52,6 +53,7 @@
|
|
|
52
53
|
/// @param {Map} $palette - An palette to be used by the global theme.
|
|
53
54
|
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
|
|
54
55
|
/// @see {mixin} theme
|
|
56
|
+
/// @deprecated - Use the theme mixin instead.
|
|
55
57
|
@mixin indigo-dark-theme(
|
|
56
58
|
$palette,
|
|
57
59
|
$exclude: (),
|
package/package.json
CHANGED