igniteui-angular 13.2.8 → 13.2.9
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/combo/combo.api.mjs +1 -4
- package/esm2020/lib/combo/combo.common.mjs +9 -7
- package/esm2020/lib/combo/combo.component.mjs +2 -9
- package/esm2020/lib/combo/combo.pipes.mjs +3 -19
- package/esm2020/lib/core/selection.mjs +1 -4
- package/esm2020/lib/core/utils.mjs +9 -1
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +18 -21
- package/fesm2015/igniteui-angular.mjs +36 -57
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +35 -57
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/combo/combo.component.d.ts +1 -1
- package/lib/combo/combo.pipes.d.ts +0 -6
- package/lib/core/utils.d.ts +8 -0
- package/lib/simple-combo/simple-combo.component.d.ts +0 -2
- package/package.json +1 -1
|
@@ -237,6 +237,6 @@ export declare class IgxComboComponent extends IgxComboBaseDirective implements
|
|
|
237
237
|
*/
|
|
238
238
|
export declare class IgxComboModule {
|
|
239
239
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxComboModule, never>;
|
|
240
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgxComboModule, [typeof i1.IgxComboAddItemComponent, typeof i2.IgxComboAddItemDirective, typeof i2.IgxComboClearIconDirective, typeof IgxComboComponent, typeof i3.IgxComboDropDownComponent, typeof i2.IgxComboEmptyDirective, typeof i4.IgxComboFilteringPipe, typeof
|
|
240
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgxComboModule, [typeof i1.IgxComboAddItemComponent, typeof i2.IgxComboAddItemDirective, typeof i2.IgxComboClearIconDirective, typeof IgxComboComponent, typeof i3.IgxComboDropDownComponent, typeof i2.IgxComboEmptyDirective, typeof i4.IgxComboFilteringPipe, typeof i2.IgxComboFooterDirective, typeof i4.IgxComboGroupingPipe, typeof i2.IgxComboHeaderDirective, typeof i2.IgxComboHeaderItemDirective, typeof i5.IgxComboItemComponent, typeof i2.IgxComboItemDirective, typeof i2.IgxComboToggleIconDirective], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.IgxButtonModule, typeof i9.IgxCheckboxModule, typeof i10.IgxDropDownModule, typeof i11.IgxForOfModule, typeof i12.IgxIconModule, typeof i13.IgxInputGroupModule, typeof i14.IgxRippleModule, typeof i15.IgxToggleModule, typeof i7.ReactiveFormsModule], [typeof i1.IgxComboAddItemComponent, typeof i2.IgxComboAddItemDirective, typeof i2.IgxComboClearIconDirective, typeof IgxComboComponent, typeof i3.IgxComboDropDownComponent, typeof i2.IgxComboEmptyDirective, typeof i4.IgxComboFilteringPipe, typeof i2.IgxComboFooterDirective, typeof i4.IgxComboGroupingPipe, typeof i2.IgxComboHeaderDirective, typeof i2.IgxComboHeaderItemDirective, typeof i5.IgxComboItemComponent, typeof i2.IgxComboItemDirective, typeof i2.IgxComboToggleIconDirective, typeof i13.IgxInputGroupModule]>;
|
|
241
241
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgxComboModule>;
|
|
242
242
|
}
|
|
@@ -4,12 +4,6 @@ import { SortingDirection } from '../data-operations/sorting-strategy';
|
|
|
4
4
|
import { IComboFilteringOptions } from './combo.component';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/** @hidden */
|
|
7
|
-
export declare class IgxComboCleanPipe implements PipeTransform {
|
|
8
|
-
transform(collection: any[]): any[];
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgxComboCleanPipe, never>;
|
|
10
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<IgxComboCleanPipe, "comboClean">;
|
|
11
|
-
}
|
|
12
|
-
/** @hidden */
|
|
13
7
|
export declare class IgxComboFilteringPipe implements PipeTransform {
|
|
14
8
|
transform(collection: any[], searchValue: any, displayKey: any, filteringOptions: IComboFilteringOptions, shouldFilter?: boolean): any[];
|
|
15
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxComboFilteringPipe, never>;
|
package/lib/core/utils.d.ts
CHANGED
|
@@ -94,6 +94,14 @@ export declare const isDate: (value: any) => value is Date;
|
|
|
94
94
|
* @hidden
|
|
95
95
|
*/
|
|
96
96
|
export declare const isEqual: (obj1: any, obj2: any) => boolean;
|
|
97
|
+
/**
|
|
98
|
+
* Checks if provided variable is the value NaN
|
|
99
|
+
*
|
|
100
|
+
* @param value Value to check
|
|
101
|
+
* @returns true if provided variable is NaN
|
|
102
|
+
* @hidden
|
|
103
|
+
*/
|
|
104
|
+
export declare const isNaNvalue: (value: any) => boolean;
|
|
97
105
|
/**
|
|
98
106
|
* Utility service taking care of various utility functions such as
|
|
99
107
|
* detecting browser features, general cross browser DOM manipulation, etc.
|
|
@@ -121,8 +121,6 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
121
121
|
/** @hidden @internal */
|
|
122
122
|
handleItemClick(): void;
|
|
123
123
|
/** @hidden @internal */
|
|
124
|
-
onBlur(): void;
|
|
125
|
-
/** @hidden @internal */
|
|
126
124
|
onFocus(): void;
|
|
127
125
|
/** @hidden @internal */
|
|
128
126
|
getEditElement(): HTMLElement;
|
package/package.json
CHANGED