igniteui-angular 19.0.8 → 19.0.10

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.
@@ -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
 
@@ -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
  *
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, ChangeDetectorRef, ElementRef, QueryList } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, QueryList } from '@angular/core';
2
2
  import { IInputResourceStrings } from '../core/i18n/input-resources';
3
3
  import { PlatformUtil } from '../core/utils';
4
4
  import { IgxHintDirective } from '../directives/hint/hint.directive';
@@ -9,7 +9,7 @@ import { IgxInputGroupBase } from './input-group.common';
9
9
  import { IgxInputGroupType } from './inputGroupType';
10
10
  import { IgxTheme, ThemeToken } from '../services/theme/theme.token';
11
11
  import * as i0 from "@angular/core";
12
- export declare class IgxInputGroupComponent implements IgxInputGroupBase, AfterViewInit {
12
+ export declare class IgxInputGroupComponent implements IgxInputGroupBase {
13
13
  element: ElementRef<HTMLElement>;
14
14
  private _inputGroupType;
15
15
  private document;
@@ -254,7 +254,7 @@ export declare class IgxInputGroupComponent implements IgxInputGroupBase, AfterV
254
254
  set filled(val: boolean);
255
255
  private setComponentTheme;
256
256
  /** @hidden @internal */
257
- ngAfterViewInit(): void;
257
+ ngAfterContentChecked(): void;
258
258
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxInputGroupComponent, [null, { optional: true; }, null, null, null, null]>;
259
259
  static ɵcmp: i0.ɵɵComponentDeclaration<IgxInputGroupComponent, "igx-input-group", never, { "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "suppressInputAutofocus": { "alias": "suppressInputAutofocus"; "required": false; }; "type": { "alias": "type"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, ["input", "hints", "_prefixes", "_suffixes"], ["igx-hint, [igxHint]", "[igxLabel]", "[igxInput]", "igx-prefix, [igxPrefix]", "igx-suffix, [igxSuffix]"], true, never>;
260
260
  static ngAcceptInputType_suppressInputAutofocus: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.0.8",
3
+ "version": "19.0.10",
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",