igniteui-angular 17.2.3 → 17.2.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/esm2022/lib/navigation-drawer/navigation-drawer.component.mjs +2 -3
- package/fesm2022/igniteui-angular.mjs +1 -2
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/navbar/_navbar-theme.scss +10 -6
- package/package.json +2 -2
- 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
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
|
|
13
13
|
/// @param {Map} $schema [$light-material-schema] - The schema used as basis for styling the component.
|
|
14
14
|
/// @param {Map} $elevations [null] - The elevations (shadows) map to be used.
|
|
15
|
-
///
|
|
16
15
|
/// @param {Color} $background [null] - The navbar background color.
|
|
17
16
|
/// @param {Color} $text-color [null] - The navbar text color.
|
|
17
|
+
/// @param {Color} $border-color [null] - The navbar border color.
|
|
18
18
|
/// @param {box-shadow} $shadow [null] - The shadow of the navbar.
|
|
19
19
|
/// @param {Color} $idle-icon-color [null] - The navbar idle icon color.
|
|
20
20
|
/// @param {Color} $hover-icon-color [null] - The navbar hover icon color.
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
@function navbar-theme(
|
|
28
28
|
$schema: $light-material-schema,
|
|
29
29
|
$elevations: null,
|
|
30
|
-
|
|
31
30
|
$background: null,
|
|
31
|
+
$border-color: null,
|
|
32
32
|
$text-color: null,
|
|
33
33
|
$shadow: null,
|
|
34
34
|
$idle-icon-color: null,
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
@return extend($theme, (
|
|
72
72
|
name: $name,
|
|
73
73
|
background: $background,
|
|
74
|
+
border-color: $border-color,
|
|
74
75
|
text-color: $text-color,
|
|
75
76
|
idle-icon-color: $idle-icon-color,
|
|
76
77
|
hover-icon-color: $hover-icon-color,
|
|
@@ -111,18 +112,21 @@
|
|
|
111
112
|
|
|
112
113
|
igx-avatar,
|
|
113
114
|
igx-input-group,
|
|
114
|
-
[igxButton],
|
|
115
115
|
[igxIconButton],
|
|
116
116
|
igc-avatar,
|
|
117
117
|
igc-input,
|
|
118
|
-
igc-button,
|
|
119
118
|
igc-icon-button {
|
|
120
119
|
--ig-size: 1;
|
|
121
120
|
}
|
|
122
|
-
|
|
121
|
+
|
|
122
|
+
[igxButton],
|
|
123
|
+
igc-button {
|
|
124
|
+
--ig-size: 2;
|
|
125
|
+
}
|
|
126
|
+
|
|
123
127
|
@if $variant == 'indigo-design' {
|
|
124
128
|
igc-icon-button,
|
|
125
|
-
[igxIconButton]
|
|
129
|
+
[igxIconButton] {
|
|
126
130
|
--ig-size: 2;
|
|
127
131
|
}
|
|
128
132
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "17.2.
|
|
3
|
+
"version": "17.2.4",
|
|
4
4
|
"description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"igniteui-trial-watermark": "^3.0.2",
|
|
75
75
|
"lodash-es": "^4.17.21",
|
|
76
76
|
"uuid": "^9.0.0",
|
|
77
|
-
"igniteui-theming": "^6.3.
|
|
77
|
+
"igniteui-theming": "^6.3.1",
|
|
78
78
|
"@igniteui/material-icons-extended": "^3.0.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|