igniteui-angular 19.0.7 → 19.0.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 (34) hide show
  1. package/fesm2022/igniteui-angular.mjs +25 -13
  2. package/fesm2022/igniteui-angular.mjs.map +1 -1
  3. package/lib/combo/combo-add-item.component.d.ts +1 -0
  4. package/lib/core/styles/components/combo/_combo-theme.scss +2 -1
  5. package/lib/core/styles/components/icon-button/_icon-button-theme.scss +0 -1
  6. package/lib/core/styles/components/input/_input-group-theme.scss +3 -3
  7. package/lib/directives/button/button.directive.d.ts +4 -2
  8. package/package.json +1 -1
  9. package/styles/igniteui-angular-dark.css +1 -1
  10. package/styles/igniteui-angular.css +1 -1
  11. package/styles/igniteui-bootstrap-dark.css +1 -1
  12. package/styles/igniteui-bootstrap-light.css +1 -1
  13. package/styles/igniteui-dark-green.css +1 -1
  14. package/styles/igniteui-fluent-dark-excel.css +1 -1
  15. package/styles/igniteui-fluent-dark-word.css +1 -1
  16. package/styles/igniteui-fluent-dark.css +1 -1
  17. package/styles/igniteui-fluent-light-excel.css +1 -1
  18. package/styles/igniteui-fluent-light-word.css +1 -1
  19. package/styles/igniteui-fluent-light.css +1 -1
  20. package/styles/igniteui-indigo-dark.css +1 -1
  21. package/styles/igniteui-indigo-light.css +1 -1
  22. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  23. package/styles/maps/igniteui-angular.css.map +1 -1
  24. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  25. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  26. package/styles/maps/igniteui-dark-green.css.map +1 -1
  27. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  28. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  29. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  30. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  31. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  32. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  33. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  34. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
4
4
  * @hidden
5
5
  */
6
6
  export declare class IgxComboAddItemComponent extends IgxComboItemComponent {
7
+ get isDropDownItem(): boolean;
7
8
  get selected(): boolean;
8
9
  set selected(value: boolean);
9
10
  clicked(event?: any): void;
@@ -209,7 +209,8 @@
209
209
  %igx-combo__add-item {
210
210
  height: auto !important;
211
211
  background: var-get($theme, 'empty-list-background') !important;
212
- justify-content: center !important;
212
+ justify-content: center;
213
+ outline: none !important;
213
214
  }
214
215
 
215
216
  %igx-combo__empty {
@@ -370,7 +370,6 @@
370
370
  content: '';
371
371
  inset: 0;
372
372
  box-shadow: inset 0 0 0 rem(1px) var-get($outlined-theme, 'border-color');
373
- z-index: -1;
374
373
  border-radius: inherit;
375
374
  }
376
375
 
@@ -340,14 +340,14 @@
340
340
  );
341
341
 
342
342
  $hint-spacing-block: map.get((
343
- 'material': rem(5px),
343
+ 'material': rem(4px),
344
344
  'fluent': rem(5px),
345
345
  'bootstrap': rem(4px),
346
346
  'indigo': rem(4px),
347
347
  ), $variant);
348
348
 
349
349
  $hint-spacing-inline: map.get((
350
- 'material': rem(16px),
350
+ 'material': sizable(rem(14px), rem(16px), rem(18px)),
351
351
  'fluent': 0,
352
352
  'bootstrap': 0,
353
353
  'indigo': 0,
@@ -1389,7 +1389,7 @@
1389
1389
  position: relative;
1390
1390
  display: flex;
1391
1391
  padding-block-start: $hint-spacing-block;
1392
- padding-inline-start: $hint-spacing-inline;
1392
+ padding-inline: $hint-spacing-inline;
1393
1393
 
1394
1394
  justify-content: space-between;
1395
1395
 
@@ -1,4 +1,4 @@
1
- import { ElementRef, EventEmitter, Renderer2, AfterContentInit } from '@angular/core';
1
+ import { ElementRef, EventEmitter, Renderer2, AfterContentInit, OnDestroy } from '@angular/core';
2
2
  import { IBaseEventArgs } from '../../core/utils';
3
3
  import { IgxButtonBaseDirective } from './button-base';
4
4
  import * as i0 from "@angular/core";
@@ -31,7 +31,7 @@ export type IgxButtonType = typeof IgxButtonType[keyof typeof IgxButtonType];
31
31
  * <button type="button" igxButton="outlined">A Button</button>
32
32
  * ```
33
33
  */
34
- export declare class IgxButtonDirective extends IgxButtonBaseDirective implements AfterContentInit {
34
+ export declare class IgxButtonDirective extends IgxButtonBaseDirective implements AfterContentInit, OnDestroy {
35
35
  element: ElementRef;
36
36
  private _renderer;
37
37
  private static ngAcceptInputType_type;
@@ -69,6 +69,7 @@ export declare class IgxButtonDirective extends IgxButtonBaseDirective implement
69
69
  * @internal
70
70
  */
71
71
  private _selected;
72
+ private emitSelected;
72
73
  /**
73
74
  * Gets or sets whether the button is selected.
74
75
  * Mainly used in the IgxButtonGroup component and it will have no effect if set separately.
@@ -82,6 +83,7 @@ export declare class IgxButtonDirective extends IgxButtonBaseDirective implement
82
83
  get selected(): boolean;
83
84
  constructor(element: ElementRef, _renderer: Renderer2);
84
85
  ngAfterContentInit(): void;
86
+ ngOnDestroy(): void;
85
87
  /**
86
88
  * Sets the type of the button.
87
89
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.0.7",
3
+ "version": "19.0.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",