igniteui-angular 14.0.12 → 14.0.15

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.
@@ -1,6 +1,7 @@
1
- export * from './combo.component';
2
- export * from './combo.directives';
3
1
  export { IgxComboAddItemComponent } from './combo-add-item.component';
4
2
  export { IgxComboDropDownComponent } from './combo-dropdown.component';
5
3
  export { IgxComboItemComponent } from './combo-item.component';
4
+ export { IComboFilteringOptions } from './combo.common';
5
+ export * from './combo.component';
6
+ export * from './combo.directives';
6
7
  export * from './combo.pipes';
@@ -215,6 +215,11 @@ export declare class IgxRadioGroupDirective implements AfterContentInit, Control
215
215
  * @internal
216
216
  */
217
217
  private destroy$;
218
+ /**
219
+ * @hidden
220
+ * @internal
221
+ */
222
+ private queryChange$;
218
223
  /**
219
224
  * @hidden
220
225
  * @internal
@@ -28,6 +28,7 @@ export declare class IgxGridSelectionService {
28
28
  */
29
29
  private pointerEventInGridBody;
30
30
  private allRowsSelected;
31
+ private _lastSelectedNode;
31
32
  private _ranges;
32
33
  private _selectionRange;
33
34
  /**
@@ -81,7 +82,7 @@ export declare class IgxGridSelectionService {
81
82
  pointerDownShiftKey(node: ISelectionNode): void;
82
83
  mergeMap(target: Map<number, Set<number>>, source: Map<number, Set<number>>): void;
83
84
  pointerEnter(node: ISelectionNode, event: PointerEvent): boolean;
84
- pointerUp(node: ISelectionNode, emitter: EventEmitter<GridSelectionRange>): boolean;
85
+ pointerUp(node: ISelectionNode, emitter: EventEmitter<GridSelectionRange>, firedOutsideGrid?: boolean): boolean;
85
86
  selectRange(node: ISelectionNode, state: SelectionState, collection?: Map<number, Set<number>>): void;
86
87
  dragSelect(node: ISelectionNode, state: SelectionState): void;
87
88
  clear(clearAcriveEl?: boolean): void;
@@ -1,5 +1,6 @@
1
- import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
+ import { Subject } from 'rxjs';
3
4
  import { EditorProvider } from '../core/edit-provider';
4
5
  import { IBaseEventArgs } from '../core/utils';
5
6
  import * as i0 from "@angular/core";
@@ -25,10 +26,15 @@ export declare type RadioLabelPosition = (typeof RadioLabelPosition)[keyof typeo
25
26
  * </igx-radio>
26
27
  * ```
27
28
  */
28
- export declare class IgxRadioComponent implements ControlValueAccessor, EditorProvider {
29
+ export declare class IgxRadioComponent implements ControlValueAccessor, EditorProvider, OnDestroy {
29
30
  private cdr;
30
31
  private static ngAcceptInputType_required;
31
32
  private static ngAcceptInputType_disabled;
33
+ /**
34
+ * @hidden
35
+ * @internal
36
+ */
37
+ destroy$: Subject<boolean>;
32
38
  /**
33
39
  * Returns reference to native radio element.
34
40
  * ```typescript
@@ -262,6 +268,11 @@ export declare class IgxRadioComponent implements ControlValueAccessor, EditorPr
262
268
  */
263
269
  private _onChangeCallback;
264
270
  constructor(cdr: ChangeDetectorRef);
271
+ /**
272
+ * @hidden
273
+ * @internal
274
+ */
275
+ ngOnDestroy(): void;
265
276
  /**
266
277
  * @hidden
267
278
  * @internal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "14.0.12",
3
+ "version": "14.0.15",
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",