igniteui-angular 12.3.31 → 12.3.34
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 +210 -214
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/igniteui-angular.js +92 -92
- package/esm2015/lib/combo/combo.api.js +1 -4
- package/esm2015/lib/combo/combo.common.js +9 -7
- package/esm2015/lib/combo/combo.component.js +2 -7
- package/esm2015/lib/combo/combo.pipes.js +3 -16
- package/esm2015/lib/core/selection.js +1 -4
- package/esm2015/lib/core/utils.js +9 -1
- package/esm2015/lib/directives/drag-drop/drag-drop.directive.js +8 -6
- package/esm2015/lib/grids/grid/grid.component.js +2 -2
- package/esm2015/lib/grids/grid-base.directive.js +16 -1
- package/esm2015/lib/paginator/pager.component.js +2 -2
- package/esm2015/lib/simple-combo/simple-combo.component.js +18 -20
- package/fesm2015/igniteui-angular.js +59 -58
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.d.ts +91 -91
- package/igniteui-angular.metadata.json +1 -1
- package/lib/combo/combo.pipes.d.ts +0 -4
- package/lib/core/utils.d.ts +8 -0
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -1
- package/lib/grids/grid-base.directive.d.ts +1 -0
- package/lib/simple-combo/simple-combo.component.d.ts +0 -2
- package/package.json +1 -1
|
@@ -2,10 +2,6 @@ import { PipeTransform } from '@angular/core';
|
|
|
2
2
|
import { IgxComboBase } from './combo.common';
|
|
3
3
|
import { IComboFilteringOptions } from './combo.component';
|
|
4
4
|
/** @hidden */
|
|
5
|
-
export declare class IgxComboCleanPipe implements PipeTransform {
|
|
6
|
-
transform(collection: any[]): any[];
|
|
7
|
-
}
|
|
8
|
-
/** @hidden */
|
|
9
5
|
export declare class IgxComboFilteringPipe implements PipeTransform {
|
|
10
6
|
transform(collection: any[], searchValue: any, displayKey: any, filteringOptions: IComboFilteringOptions, shouldFilter?: boolean): any[];
|
|
11
7
|
}
|
package/lib/core/utils.d.ts
CHANGED
|
@@ -95,6 +95,14 @@ export declare const isDate: (value: any) => value is Date;
|
|
|
95
95
|
* @hidden
|
|
96
96
|
*/
|
|
97
97
|
export declare const isEqual: (obj1: any, obj2: any) => boolean;
|
|
98
|
+
/**
|
|
99
|
+
* Checks if provided variable is the value NaN
|
|
100
|
+
*
|
|
101
|
+
* @param value Value to check
|
|
102
|
+
* @returns true if provided variable is NaN
|
|
103
|
+
* @hidden
|
|
104
|
+
*/
|
|
105
|
+
export declare const isNaNvalue: (value: any) => boolean;
|
|
98
106
|
/**
|
|
99
107
|
* Utility service taking care of various utility functions such as
|
|
100
108
|
* detecting browser features, general cross browser DOM manipulation, etc.
|
|
@@ -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.
|
|
@@ -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.
|
|
@@ -108,8 +108,6 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
108
108
|
/** @hidden @internal */
|
|
109
109
|
handleItemClick(): void;
|
|
110
110
|
/** @hidden @internal */
|
|
111
|
-
onBlur(): void;
|
|
112
|
-
/** @hidden @internal */
|
|
113
111
|
onFocus(): void;
|
|
114
112
|
/** @hidden @internal */
|
|
115
113
|
getEditElement(): HTMLElement;
|
package/package.json
CHANGED