igniteui-angular 12.3.32 → 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.
- package/bundles/igniteui-angular.umd.js +63 -18
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/directives/drag-drop/drag-drop.directive.js +8 -6
- package/esm2015/lib/directives/radio/radio-group.directive.js +13 -7
- package/esm2015/lib/grids/grid/grid.component.js +2 -2
- package/esm2015/lib/grids/grid-base.directive.js +16 -1
- package/esm2015/lib/grids/grid-navigation.service.js +8 -3
- package/esm2015/lib/grids/selection/selection.service.js +9 -4
- package/esm2015/lib/paginator/pager.component.js +2 -2
- package/esm2015/lib/radio/radio.component.js +15 -2
- package/fesm2015/igniteui-angular.js +62 -16
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -1
- package/lib/directives/radio/radio-group.directive.d.ts +6 -1
- package/lib/grids/grid-base.directive.d.ts +1 -0
- package/lib/grids/selection/selection.service.d.ts +2 -1
- package/lib/radio/radio.component.d.ts +14 -3
- package/package.json +1 -1
|
@@ -540,7 +540,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
540
540
|
* @hidden
|
|
541
541
|
* Traverse shadow dom in depth.
|
|
542
542
|
*/
|
|
543
|
-
protected getFromShadowRoot(elem: any, pageX: any, pageY: any): any;
|
|
543
|
+
protected getFromShadowRoot(elem: any, pageX: any, pageY: any, parentDomElems: any): any[];
|
|
544
544
|
/**
|
|
545
545
|
* @hidden
|
|
546
546
|
* Dispatch custom igxDrop event based on current pointer position if there is last recorder drop area under the pointer.
|
|
@@ -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
|
|
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
|
|
@@ -3584,6 +3584,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3584
3584
|
*
|
|
3585
3585
|
*/
|
|
3586
3586
|
private isEditableDataRecordAtIndex;
|
|
3587
|
+
private isFilterInput;
|
|
3587
3588
|
/**
|
|
3588
3589
|
* Returns if the record at the specified data view index is a ghost.
|
|
3589
3590
|
* If record is pinned but is not in pinned area then it is a ghost record.
|
|
@@ -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
|
|
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 {
|
|
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