igniteui-angular 14.0.11 → 14.0.14
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/esm2020/lib/core/utils.mjs +3 -3
- package/esm2020/lib/date-picker/date-picker.component.mjs +2 -1
- package/esm2020/lib/date-range-picker/date-range-picker.component.mjs +3 -3
- package/esm2020/lib/directives/drag-drop/drag-drop.directive.mjs +8 -6
- package/esm2020/lib/directives/radio/radio-group.directive.mjs +11 -5
- package/esm2020/lib/grids/grid/grid.component.mjs +2 -2
- package/esm2020/lib/grids/grid-navigation.service.mjs +8 -3
- package/esm2020/lib/grids/selection/selection.service.mjs +9 -4
- package/esm2020/lib/paginator/paginator.component.mjs +3 -3
- package/esm2020/lib/radio/radio.component.mjs +15 -2
- package/esm2020/lib/time-picker/time-picker.component.mjs +3 -2
- package/esm2020/lib/tree/tree-node/tree-node.component.mjs +7 -1
- package/fesm2015/igniteui-angular.mjs +61 -22
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +61 -22
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/core/utils.d.ts +1 -1
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -1
- package/lib/directives/radio/radio-group.directive.d.ts +5 -0
- package/lib/grids/selection/selection.service.d.ts +2 -1
- package/lib/radio/radio.component.d.ts +13 -2
- package/package.json +1 -1
package/lib/core/utils.d.ts
CHANGED
|
@@ -261,7 +261,7 @@ export declare const reverseAnimationResolver: (animation: AnimationReferenceMet
|
|
|
261
261
|
export declare const isHorizontalAnimation: (animation: AnimationReferenceMetadata) => boolean;
|
|
262
262
|
export declare const isVerticalAnimation: (animation: AnimationReferenceMetadata) => boolean;
|
|
263
263
|
/**
|
|
264
|
-
* Similar to Angular's formatDate. However it will not throw on `undefined | null` instead
|
|
264
|
+
* Similar to Angular's formatDate. However it will not throw on `undefined | null | ''` instead
|
|
265
265
|
* coalescing to an empty string.
|
|
266
266
|
*/
|
|
267
267
|
export declare const formatDate: (value: string | number | Date, format: string, locale: string, timezone?: string) => string;
|
|
@@ -567,7 +567,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
567
567
|
* @hidden
|
|
568
568
|
* Traverse shadow dom in depth.
|
|
569
569
|
*/
|
|
570
|
-
protected getFromShadowRoot(elem: any, pageX: any, pageY: any): any;
|
|
570
|
+
protected getFromShadowRoot(elem: any, pageX: any, pageY: any, parentDomElems: any): any[];
|
|
571
571
|
/**
|
|
572
572
|
* @hidden
|
|
573
573
|
* Dispatch custom igxDrop event based on current pointer position if there is last recorder drop area under the pointer.
|
|
@@ -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
|
|
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