igniteui-angular 12.3.29 → 12.3.32

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.
@@ -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
  }
@@ -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.
@@ -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;
@@ -18,6 +18,35 @@ export declare class IgxTreeSelectMarkerDirective {
18
18
  */
19
19
  export declare class IgxTreeExpandIndicatorDirective {
20
20
  }
21
+ /**
22
+ * IgxTreeComponent allows a developer to show a set of nodes in a hierarchical fashion.
23
+ *
24
+ * @igxModule IgxTreeModule
25
+ * @igxKeywords tree
26
+ * @igxTheme igx-tree-theme
27
+ * @igxGroup Grids & Lists
28
+ *
29
+ * @remark
30
+ * The Angular Tree Component allows users to represent hierarchical data in a tree-view structure,
31
+ * maintaining parent-child relationships, as well as to define static tree-view structure without a corresponding data model.
32
+ * Its primary purpose is to allow end-users to visualize and navigate within hierarchical data structures.
33
+ * The Ignite UI for Angular Tree Component also provides load on demand capabilities, item activation,
34
+ * bi-state and cascading selection of items through built-in checkboxes, built-in keyboard navigation and more.
35
+ *
36
+ * @example
37
+ * ```html
38
+ * <igx-tree>
39
+ * <igx-tree-node>
40
+ * I am a parent node 1
41
+ * <igx-tree-node>
42
+ * I am a child node 1
43
+ * </igx-tree-node>
44
+ * ...
45
+ * </igx-tree-node>
46
+ * ...
47
+ * </igx-tree>
48
+ * ```
49
+ */
21
50
  export declare class IgxTreeComponent extends DisplayDensityBase implements IgxTree, OnInit, AfterViewInit, OnDestroy {
22
51
  private navService;
23
52
  private selectionService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "12.3.29",
3
+ "version": "12.3.32",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",