igniteui-angular 12.3.29 → 12.3.30

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.
@@ -41502,7 +41502,7 @@
41502
41502
  };
41503
41503
  /** @hidden @internal */
41504
41504
  IgxSimpleComboComponent.prototype.onBlur = function () {
41505
- if (this.collapsed) {
41505
+ if (this.collapsed && !this.selectedItem) {
41506
41506
  this.clearOnBlur();
41507
41507
  }
41508
41508
  _super.prototype.onBlur.call(this);
@@ -86182,6 +86182,35 @@
86182
86182
  selector: '[igxTreeExpandIndicator]'
86183
86183
  },] }
86184
86184
  ];
86185
+ /**
86186
+ * IgxTreeComponent allows a developer to show a set of nodes in a hierarchical fashion.
86187
+ *
86188
+ * @igxModule IgxTreeModule
86189
+ * @igxKeywords tree
86190
+ * @igxTheme igx-tree-theme
86191
+ * @igxGroup Grids & Lists
86192
+ *
86193
+ * @remark
86194
+ * The Angular Tree Component allows users to represent hierarchical data in a tree-view structure,
86195
+ * maintaining parent-child relationships, as well as to define static tree-view structure without a corresponding data model.
86196
+ * Its primary purpose is to allow end-users to visualize and navigate within hierarchical data structures.
86197
+ * The Ignite UI for Angular Tree Component also provides load on demand capabilities, item activation,
86198
+ * bi-state and cascading selection of items through built-in checkboxes, built-in keyboard navigation and more.
86199
+ *
86200
+ * @example
86201
+ * ```html
86202
+ * <igx-tree>
86203
+ * <igx-tree-node>
86204
+ * I am a parent node 1
86205
+ * <igx-tree-node>
86206
+ * I am a child node 1
86207
+ * </igx-tree-node>
86208
+ * ...
86209
+ * </igx-tree-node>
86210
+ * ...
86211
+ * </igx-tree>
86212
+ * ```
86213
+ */
86185
86214
  var IgxTreeComponent = /** @class */ (function (_super) {
86186
86215
  __extends(IgxTreeComponent, _super);
86187
86216
  function IgxTreeComponent(navService, selectionService, treeService, element, _displayDensityOptions) {