igniteui-angular 12.3.34 → 12.3.37
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 +49 -13
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/date-picker/date-picker.component.js +2 -1
- package/esm2015/lib/date-range-picker/date-range-picker.component.js +3 -3
- package/esm2015/lib/directives/drag-drop/drag-drop.directive.js +2 -2
- package/esm2015/lib/directives/radio/radio-group.directive.js +13 -7
- package/esm2015/lib/grids/grid-navigation.service.js +8 -3
- package/esm2015/lib/grids/selection/selection.service.js +9 -4
- package/esm2015/lib/radio/radio.component.js +15 -2
- package/esm2015/lib/simple-combo/simple-combo.component.js +7 -2
- package/esm2015/lib/time-picker/time-picker.component.js +3 -2
- package/fesm2015/igniteui-angular.js +50 -14
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/directives/radio/radio-group.directive.d.ts +6 -1
- package/lib/grids/selection/selection.service.d.ts +2 -1
- package/lib/radio/radio.component.d.ts +14 -3
- package/package.json +1 -1
|
@@ -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
|
|
@@ -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