igniteui-angular 12.3.34 → 12.3.35

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,6 @@
1
1
  import { QueryList, EventEmitter, AfterContentInit, OnDestroy } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
- import { IgxRadioComponent, RadioLabelPosition, IChangeRadioEventArgs } from '../../radio/radio.component';
3
+ import { IChangeRadioEventArgs, IgxRadioComponent, RadioLabelPosition } from '../../radio/radio.component';
4
4
  /**
5
5
  * Determines the Radio Group alignment
6
6
  */
@@ -212,6 +212,11 @@ export declare class IgxRadioGroupDirective implements AfterContentInit, Control
212
212
  * @internal
213
213
  */
214
214
  private destroy$;
215
+ /**
216
+ * @hidden
217
+ * @internal
218
+ */
219
+ private queryChange$;
215
220
  /**
216
221
  * @hidden
217
222
  * @internal
@@ -59,6 +59,7 @@ export declare class IgxGridSelectionService {
59
59
  */
60
60
  private pointerEventInGridBody;
61
61
  private allRowsSelected;
62
+ private _lastSelectedNode;
62
63
  private _ranges;
63
64
  private _selectionRange;
64
65
  /**
@@ -112,7 +113,7 @@ export declare class IgxGridSelectionService {
112
113
  pointerDownShiftKey(node: ISelectionNode): void;
113
114
  mergeMap(target: Map<number, Set<number>>, source: Map<number, Set<number>>): void;
114
115
  pointerEnter(node: ISelectionNode, event: PointerEvent): boolean;
115
- pointerUp(node: ISelectionNode, emitter: EventEmitter<GridSelectionRange>): boolean;
116
+ pointerUp(node: ISelectionNode, emitter: EventEmitter<GridSelectionRange>, firedOutsideGrid?: boolean): boolean;
116
117
  selectRange(node: ISelectionNode, state: SelectionState, collection?: Map<number, Set<number>>): void;
117
118
  dragSelect(node: ISelectionNode, state: SelectionState): void;
118
119
  clear(clearAcriveEl?: boolean): void;
@@ -1,7 +1,8 @@
1
- import { EventEmitter, ElementRef, ChangeDetectorRef } from '@angular/core';
1
+ import { EventEmitter, OnDestroy, ElementRef, ChangeDetectorRef } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
- import { IBaseEventArgs } from '../core/utils';
3
+ import { Subject } from 'rxjs';
4
4
  import { EditorProvider } from '../core/edit-provider';
5
+ import { IBaseEventArgs } from '../core/utils';
5
6
  export interface IChangeRadioEventArgs extends IBaseEventArgs {
6
7
  value: any;
7
8
  radio: IgxRadioComponent;
@@ -24,7 +25,7 @@ export declare type RadioLabelPosition = (typeof RadioLabelPosition)[keyof typeo
24
25
  * </igx-radio>
25
26
  * ```
26
27
  */
27
- export declare class IgxRadioComponent implements ControlValueAccessor, EditorProvider {
28
+ export declare class IgxRadioComponent implements ControlValueAccessor, EditorProvider, OnDestroy {
28
29
  private cdr;
29
30
  private static ngAcceptInputType_required;
30
31
  private static ngAcceptInputType_disabled;
@@ -242,6 +243,11 @@ export declare class IgxRadioComponent implements ControlValueAccessor, EditorPr
242
243
  * @hidden
243
244
  */
244
245
  inputId: string;
246
+ /**
247
+ * @hidden
248
+ * @internal
249
+ */
250
+ destroy$: Subject<boolean>;
245
251
  /**
246
252
  * @hidden
247
253
  * @internal
@@ -275,6 +281,11 @@ export declare class IgxRadioComponent implements ControlValueAccessor, EditorPr
275
281
  * @hidden
276
282
  */
277
283
  _clicked(): void;
284
+ /**
285
+ * @hidden
286
+ * @internal
287
+ */
288
+ ngOnDestroy(): void;
278
289
  /**
279
290
  * Selects the current radio button.
280
291
  * ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "12.3.34",
3
+ "version": "12.3.35",
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",