igniteui-angular 16.1.8 → 16.1.9

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.
Files changed (33) hide show
  1. package/esm2022/lib/core/density.mjs +5 -8
  2. package/esm2022/lib/core/utils.mjs +3 -3
  3. package/esm2022/lib/grids/filtering/excel-style/excel-style-search.component.mjs +5 -5
  4. package/fesm2022/igniteui-angular.mjs +10 -13
  5. package/fesm2022/igniteui-angular.mjs.map +1 -1
  6. package/lib/core/styles/components/tree/_tree-theme.scss +12 -0
  7. package/package.json +2 -2
  8. package/styles/igniteui-angular-dark.css +1 -1
  9. package/styles/igniteui-angular.css +1 -1
  10. package/styles/igniteui-bootstrap-dark.css +1 -1
  11. package/styles/igniteui-bootstrap-light.css +1 -1
  12. package/styles/igniteui-dark-green.css +1 -1
  13. package/styles/igniteui-fluent-dark-excel.css +1 -1
  14. package/styles/igniteui-fluent-dark-word.css +1 -1
  15. package/styles/igniteui-fluent-dark.css +1 -1
  16. package/styles/igniteui-fluent-light-excel.css +1 -1
  17. package/styles/igniteui-fluent-light-word.css +1 -1
  18. package/styles/igniteui-fluent-light.css +1 -1
  19. package/styles/igniteui-indigo-dark.css +1 -1
  20. package/styles/igniteui-indigo-light.css +1 -1
  21. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  22. package/styles/maps/igniteui-angular.css.map +1 -1
  23. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  24. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  25. package/styles/maps/igniteui-dark-green.css.map +1 -1
  26. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  27. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  28. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  29. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  30. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  31. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  32. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  33. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -23,6 +23,8 @@
23
23
  /// @param {Color} foreground-disabled [null] - The color used for the content of the disabled tree node.
24
24
  /// @param {Color} drop-area-color [null] - The background color used for the tree node drop aria.
25
25
  /// @param {Color} border-color [null] - The outline shadow color used for tree node in focus state.
26
+ /// @param {Color} hover-color [null] - The background color used for the tree node on hover.
27
+ /// @param {Color} hover-selected-color [null] - The background color used for the selected tree node on hover.
26
28
  /// @requires $light-material-schema
27
29
  ///
28
30
  /// @example scss Change the tree background
@@ -43,6 +45,8 @@
43
45
  $foreground-disabled: null,
44
46
  $drop-area-color: null,
45
47
  $border-color: null,
48
+ $hover-color: null,
49
+ $hover-selected-color: null,
46
50
  $size: null,
47
51
  ) {
48
52
  $name: 'igx-tree';
@@ -89,6 +93,8 @@
89
93
  foreground-disabled: $foreground-disabled,
90
94
  drop-area-color: $drop-area-color,
91
95
  border-color: $border-color,
96
+ hover-color: $hover-color,
97
+ hover-selected-color: $hover-selected-color,
92
98
  _meta: map.merge(if($meta, $meta, ()), (
93
99
  variant: map.get($schema, '_meta', 'theme')
94
100
  )),
@@ -219,6 +225,12 @@
219
225
  %node-wrapper--selected {
220
226
  background: var-get($theme, 'background-selected');
221
227
  color: var-get($theme, 'foreground-selected');
228
+
229
+ &:hover {
230
+ &::after {
231
+ background: var-get($theme, 'hover-selected-color');
232
+ }
233
+ }
222
234
  }
223
235
 
224
236
  %node-wrapper--active {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "16.1.8",
3
+ "version": "16.1.9",
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",
@@ -76,7 +76,7 @@
76
76
  "igniteui-trial-watermark": "^3.0.2",
77
77
  "lodash-es": "^4.17.21",
78
78
  "uuid": "^9.0.0",
79
- "igniteui-theming": "^3.3.0",
79
+ "igniteui-theming": "^3.3.2",
80
80
  "@igniteui/material-icons-extended": "^3.0.0"
81
81
  },
82
82
  "peerDependencies": {