igniteui-angular 18.1.2 → 18.1.3

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.
@@ -384,13 +384,18 @@
384
384
  }
385
385
 
386
386
  @if $variant == 'material' {
387
+ $reduce-size: rem(8px);
388
+
389
+ // The clip path here fixes a bug: https://github.com/IgniteUI/igniteui-angular/issues/14554
390
+ clip-path: inset(calc($reduce-size / 2) 0 round var-get($theme, 'item-border-radius'));
391
+
387
392
  &::after {
388
393
  content: '';
389
394
  position: absolute;
390
395
  width: 100%;
391
396
  inset-block-start: rem(4px);
392
397
  inset-inline-start: 0;
393
- height: calc(100% - #{rem(8px)});
398
+ height: calc(100% - #{$reduce-size});
394
399
  border-radius: var-get($theme, 'item-border-radius');
395
400
  z-index: -1;
396
401
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "18.1.2",
3
+ "version": "18.1.3",
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",