igniteui-angular 12.3.31 → 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.
@@ -1457,6 +1457,14 @@
1457
1457
  }
1458
1458
  return obj1 === obj2;
1459
1459
  };
1460
+ /**
1461
+ * Checks if provided variable is the value NaN
1462
+ *
1463
+ * @param value Value to check
1464
+ * @returns true if provided variable is NaN
1465
+ * @hidden
1466
+ */
1467
+ var isNaNvalue = function (value) { return isNaN(value) && value !== undefined && typeof value !== 'string'; };
1460
1468
  /**
1461
1469
  * Utility service taking care of various utility functions such as
1462
1470
  * detecting browser features, general cross browser DOM manipulation, etc.
@@ -18395,9 +18403,6 @@
18395
18403
  if (sel === undefined) {
18396
18404
  sel = this.get_empty();
18397
18405
  }
18398
- if (!itemID && itemID !== 0) {
18399
- throw Error('Invalid value for item id!');
18400
- }
18401
18406
  sel.add(itemID);
18402
18407
  return sel;
18403
18408
  };
@@ -39205,9 +39210,6 @@
39205
39210
  };
39206
39211
  IgxComboAPIService.prototype.set_selected_item = function (itemID, event) {
39207
39212
  var selected = this.combo.isItemSelected(itemID);
39208
- if (!itemID && itemID !== 0) {
39209
- return;
39210
- }
39211
39213
  if (!selected) {
39212
39214
  this.combo.select([itemID], false, event);
39213
39215
  }
@@ -40188,11 +40190,10 @@
40188
40190
  if (!this.searchValue) {
40189
40191
  return;
40190
40192
  }
40191
- var newValue = this.searchValue.trim();
40192
40193
  var addedItem = this.displayKey ? (_b = {},
40193
- _b[this.valueKey] = newValue,
40194
- _b[this.displayKey] = newValue,
40195
- _b) : newValue;
40194
+ _b[this.valueKey] = this.searchValue,
40195
+ _b[this.displayKey] = this.searchValue,
40196
+ _b) : this.searchValue;
40196
40197
  if (this.groupKey) {
40197
40198
  Object.assign(addedItem, (_c = {}, _c[this.groupKey] = this.defaultFallbackGroup, _c));
40198
40199
  }
@@ -40319,7 +40320,10 @@
40319
40320
  return keys;
40320
40321
  }
40321
40322
  // map keys vs. filter data to retain the order of the selected items
40322
- return keys.map(function (key) { return _this.data.find(function (entry) { return entry[_this.valueKey] === key; }); }).filter(function (e) { return e !== undefined; });
40323
+ return keys.map(function (key) { return isNaNvalue(key)
40324
+ ? _this.data.find(function (entry) { return isNaNvalue(entry[_this.valueKey]); })
40325
+ : _this.data.find(function (entry) { return entry[_this.valueKey] === key; }); })
40326
+ .filter(function (e) { return e !== undefined; });
40323
40327
  };
40324
40328
  IgxComboBaseDirective.prototype.checkMatch = function () {
40325
40329
  var itemMatch = this.filteredData.some(this.findMatch);
@@ -40732,20 +40736,6 @@
40732
40736
  children: [{ type: i0.ContentChildren, args: [IgxComboItemComponent, { descendants: true },] }]
40733
40737
  };
40734
40738
 
40735
- /** @hidden */
40736
- var IgxComboCleanPipe = /** @class */ (function () {
40737
- function IgxComboCleanPipe() {
40738
- }
40739
- IgxComboCleanPipe.prototype.transform = function (collection) {
40740
- return collection.filter(function (e) { return !!e; });
40741
- };
40742
- return IgxComboCleanPipe;
40743
- }());
40744
- IgxComboCleanPipe.decorators = [
40745
- { type: i0.Pipe, args: [{
40746
- name: 'comboClean'
40747
- },] }
40748
- ];
40749
40739
  /** @hidden */
40750
40740
  var IgxComboFilteringPipe = /** @class */ (function () {
40751
40741
  function IgxComboFilteringPipe() {
@@ -40759,7 +40749,7 @@
40759
40749
  return collection;
40760
40750
  }
40761
40751
  else {
40762
- var searchTerm_1 = filteringOptions.caseSensitive ? searchValue.trim() : searchValue.toLowerCase().trim();
40752
+ var searchTerm_1 = filteringOptions.caseSensitive ? searchValue : searchValue.toLowerCase();
40763
40753
  if (displayKey != null) {
40764
40754
  return collection.filter(function (e) {
40765
40755
  var _a, _b;
@@ -40776,9 +40766,7 @@
40776
40766
  return IgxComboFilteringPipe;
40777
40767
  }());
40778
40768
  IgxComboFilteringPipe.decorators = [
40779
- { type: i0.Pipe, args: [{
40780
- name: 'comboFiltering'
40781
- },] }
40769
+ { type: i0.Pipe, args: [{ name: 'comboFiltering' },] }
40782
40770
  ];
40783
40771
  /** @hidden */
40784
40772
  var IgxComboGroupingPipe = /** @class */ (function () {
@@ -41094,9 +41082,6 @@
41094
41082
  */
41095
41083
  IgxComboComponent.prototype.setSelectedItem = function (itemID, select, event) {
41096
41084
  if (select === void 0) { select = true; }
41097
- if (itemID === null || itemID === undefined) {
41098
- return;
41099
- }
41100
41085
  if (select) {
41101
41086
  this.select([itemID], false, event);
41102
41087
  }
@@ -41221,7 +41206,6 @@
41221
41206
  IgxComboFilteringPipe, IgxComboDropDownComponent, IgxComboAddItemComponent,
41222
41207
  IgxComboItemDirective,
41223
41208
  IgxComboEmptyDirective,
41224
- IgxComboCleanPipe,
41225
41209
  IgxComboHeaderItemDirective,
41226
41210
  IgxComboHeaderDirective,
41227
41211
  IgxComboFooterDirective,
@@ -41231,7 +41215,6 @@
41231
41215
  exports: [IgxComboComponent, IgxComboItemComponent, IgxComboDropDownComponent, IgxComboAddItemComponent,
41232
41216
  IgxComboGroupingPipe,
41233
41217
  IgxComboFilteringPipe,
41234
- IgxComboCleanPipe,
41235
41218
  IgxComboItemDirective,
41236
41219
  IgxComboEmptyDirective,
41237
41220
  IgxComboHeaderItemDirective,
@@ -41298,7 +41281,7 @@
41298
41281
  return true;
41299
41282
  }
41300
41283
  var searchValue = _this.searchValue || _this.comboInput.value;
41301
- return !!searchValue && value.toString().toLowerCase().includes(searchValue.trim().toLowerCase());
41284
+ return !!searchValue && value.toString().toLowerCase().includes(searchValue.toLowerCase());
41302
41285
  };
41303
41286
  _this.comboAPI.register(_this);
41304
41287
  return _this;
@@ -41435,7 +41418,7 @@
41435
41418
  if (this.collapsed && this.comboInput.focused) {
41436
41419
  this.open();
41437
41420
  }
41438
- if (!this.comboInput.value.trim()) {
41421
+ if (!this.comboInput.value.trim() && this.selectionService.size(this.id) > 0) {
41439
41422
  // handle clearing of input by space
41440
41423
  this.clearSelection();
41441
41424
  this._onChangeCallback(null);
@@ -41501,13 +41484,6 @@
41501
41484
  this.comboInput.focus();
41502
41485
  };
41503
41486
  /** @hidden @internal */
41504
- IgxSimpleComboComponent.prototype.onBlur = function () {
41505
- if (this.collapsed && !this.selectedItem) {
41506
- this.clearOnBlur();
41507
- }
41508
- _super.prototype.onBlur.call(this);
41509
- };
41510
- /** @hidden @internal */
41511
41487
  IgxSimpleComboComponent.prototype.onFocus = function () {
41512
41488
  this._internalFilter = this.comboInput.value || '';
41513
41489
  };
@@ -41581,10 +41557,17 @@
41581
41557
  owner: this,
41582
41558
  cancel: false
41583
41559
  };
41584
- this.selectionChanging.emit(args);
41560
+ // additional checks when selecting and clearing an item with valueKey=undefined
41561
+ // as the event should emit when args.newSelection differs from args.oldSelection
41562
+ // however in this case both args.newSelection and args.oldSelection are 'undefined'
41563
+ if (args.newSelection !== args.oldSelection
41564
+ || args.newSelection === undefined && (newSelection === null || newSelection === void 0 ? void 0 : newSelection.size) > 0
41565
+ || args.oldSelection === undefined && oldSelectionAsArray.length > 0) {
41566
+ this.selectionChanging.emit(args);
41567
+ }
41568
+ // TODO: refactor below code as it sets the selection and the display text
41585
41569
  if (!args.cancel) {
41586
- var argsSelection = args.newSelection !== undefined
41587
- && args.newSelection !== null
41570
+ var argsSelection = (newSelection === null || newSelection === void 0 ? void 0 : newSelection.size) > 0
41588
41571
  ? args.newSelection
41589
41572
  : [];
41590
41573
  argsSelection = Array.isArray(argsSelection) ? argsSelection : [argsSelection];
@@ -41603,6 +41586,7 @@
41603
41586
  };
41604
41587
  IgxSimpleComboComponent.prototype.createDisplayText = function (newSelection, oldSelection) {
41605
41588
  var _this = this;
41589
+ var _a;
41606
41590
  if (this.isRemote) {
41607
41591
  return this.getRemoteSelection(newSelection, oldSelection);
41608
41592
  }
@@ -41610,7 +41594,7 @@
41610
41594
  && newSelection.length > 0) {
41611
41595
  return this.convertKeysToItems(newSelection).map(function (e) { return e[_this.displayKey]; })[0];
41612
41596
  }
41613
- return newSelection[0] || '';
41597
+ return ((_a = newSelection[0]) === null || _a === void 0 ? void 0 : _a.toString()) || '';
41614
41598
  };
41615
41599
  IgxSimpleComboComponent.prototype.clearSelection = function (ignoreFilter) {
41616
41600
  var newSelection = this.selectionService.get_empty();
@@ -41621,7 +41605,7 @@
41621
41605
  };
41622
41606
  IgxSimpleComboComponent.prototype.clearOnBlur = function () {
41623
41607
  var filtered = this.filteredData.find(this.findAllMatches);
41624
- if (filtered === undefined || filtered === null || !this.selectedItem) {
41608
+ if (filtered === undefined || filtered === null || this.selectionService.size(this.id) === 0) {
41625
41609
  this.clearAndClose();
41626
41610
  return;
41627
41611
  }
@@ -41633,11 +41617,8 @@
41633
41617
  return !!this._internalFilter && this._internalFilter.length !== this.getElementVal(filtered).length;
41634
41618
  };
41635
41619
  IgxSimpleComboComponent.prototype.getElementVal = function (element) {
41636
- if (!element) {
41637
- return null;
41638
- }
41639
41620
  var elementVal = this.displayKey ? element[this.displayKey] : element;
41640
- return (elementVal === 0 ? '0' : elementVal) || '';
41621
+ return String(elementVal);
41641
41622
  };
41642
41623
  IgxSimpleComboComponent.prototype.clearAndClose = function () {
41643
41624
  this.clearSelection(true);
@@ -41652,7 +41633,7 @@
41652
41633
  IgxSimpleComboComponent.decorators = [
41653
41634
  { type: i0.Component, args: [{
41654
41635
  selector: 'igx-simple-combo',
41655
- template: "<igx-input-group #inputGroup [displayDensity]=\"displayDensity\" [suppressInputAutofocus]=\"true\" [type]=\"type\">\n <ng-container ngProjectAs=\"[igxLabel]\">\n <ng-content select=\"[igxLabel]\"></ng-content>\n </ng-container>\n <ng-container ngProjectAs=\"igx-prefix\">\n <ng-content select=\"igx-prefix\"></ng-content>\n </ng-container>\n <ng-container ngProjectAs=\"igx-hint, [igxHint]\">\n <ng-content select=\"igx-hint, [igxHint]\"></ng-content>\n </ng-container>\n\n <input #comboInput igxInput [value]=\"value\" (focus)=\"onFocus()\" (input)=\"handleInputChange($event)\" (keyup)=\"handleKeyUp($event)\"\n (keydown)=\"handleKeyDown($event)\" (blur)=\"onBlur()\" [attr.placeholder]=\"placeholder\" aria-autocomplete=\"both\"\n [attr.aria-owns]=\"dropdown.id\" [attr.aria-labelledby]=\"ariaLabelledBy\" [disabled]=\"disabled\"\n [igxTextSelection]=\"!composing\" />\n\n <ng-container ngProjectAs=\"igx-suffix\">\n <ng-content select=\"igx-suffix\"></ng-content>\n </ng-container>\n <igx-suffix *ngIf=\"comboInput.value.length\" aria-label=\"Clear Selection\" class=\"igx-combo__clear-button\"\n (click)=\"handleClear($event)\">\n <ng-container *ngIf=\"clearIconTemplate\">\n <ng-container *ngTemplateOutlet=\"clearIconTemplate\"></ng-container>\n </ng-container>\n <igx-icon *ngIf=\"!clearIconTemplate\">\n clear\n </igx-icon>\n </igx-suffix>\n <igx-suffix *ngIf=\"showSearchCaseIcon\">\n <igx-icon family=\"imx-icons\" name=\"case-sensitive\" [active]=\"filteringOptions.caseSensitive\"\n (click)=\"toggleCaseSensitive()\">\n </igx-icon>\n </igx-suffix>\n <igx-suffix class=\"igx-combo__toggle-button\">\n <ng-container *ngIf=\"toggleIconTemplate\">\n <ng-container *ngTemplateOutlet=\"toggleIconTemplate; context: {$implicit: collapsed}\"></ng-container>\n </ng-container>\n <igx-icon (click)=\"onClick($event)\" *ngIf=\"!toggleIconTemplate\">\n {{ dropdown.collapsed ? 'arrow_drop_down' : 'arrow_drop_up'}}\n </igx-icon>\n </igx-suffix>\n</igx-input-group>\n\n<igx-combo-drop-down #igxComboDropDown class=\"igx-combo__drop-down\" [displayDensity]=\"displayDensity\"\n [width]=\"itemsWidth || '100%'\" (opening)=\"handleOpening($event)\" (closing)=\"handleClosing($event)\"\n (opened)=\"handleOpened()\" (closed)=\"handleClosed()\" [singleMode]=\"true\">\n <ng-container *ngTemplateOutlet=\"headerTemplate\">\n </ng-container>\n <div #dropdownItemContainer class=\"igx-combo__content\" [style.overflow]=\"'hidden'\"\n [style.maxHeight.px]=\"itemsMaxHeight\" [igxDropDownItemNavigation]=\"dropdown\" (focus)=\"dropdown.onFocus()\"\n [tabindex]=\"dropdown.collapsed ? -1 : 0\" role=\"listbox\" [attr.id]=\"dropdown.id\"\n (keydown)=\"handleItemKeyDown($event)\">\n <igx-combo-item role=\"option\" [singleMode]=\"true\" [itemHeight]='itemHeight' (click)=\"handleItemClick()\" *igxFor=\"let item of data\n | comboClean\n | comboFiltering:filterValue:displayKey:filteringOptions:true\n | comboGrouping:groupKey:valueKey\n index as rowIndex; containerSize: itemsMaxHeight; scrollOrientation: 'vertical'; itemSize: itemHeight\"\n [value]=\"item\" [isHeader]=\"item.isHeader\" [index]=\"rowIndex\">\n <ng-container *ngIf=\"item.isHeader\">\n <ng-container\n *ngTemplateOutlet=\"headerItemTemplate ? headerItemTemplate : headerItemBase;\n context: {$implicit: item, data: data, valueKey: valueKey, groupKey: groupKey, displayKey: displayKey}\">\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!item.isHeader\">\n <ng-container #listItem\n *ngTemplateOutlet=\"template; context: {$implicit: item, data: data, valueKey: valueKey, displayKey: displayKey};\">\n </ng-container>\n </ng-container>\n </igx-combo-item>\n </div>\n\n <div class=\"igx-combo__add\" *ngIf=\"filteredData.length === 0 || isAddButtonVisible()\">\n <div class=\"igx-combo__empty\" *ngIf=\"filteredData.length === 0\">\n <ng-container *ngTemplateOutlet=\"emptyTemplate ? emptyTemplate : empty\">\n </ng-container>\n </div>\n <igx-combo-add-item #addItem [itemHeight]=\"itemHeight\" *ngIf=\"isAddButtonVisible()\"\n [tabindex]=\"dropdown.collapsed ? -1 : customValueFlag ? 1 : -1\" class=\"igx-combo__add-item\" role=\"button\"\n aria-label=\"Add Item\" [index]=\"virtualScrollContainer.igxForOf.length\">\n <ng-container *ngTemplateOutlet=\"addItemTemplate ? addItemTemplate : addItemDefault\">\n </ng-container>\n </igx-combo-add-item>\n </div>\n <ng-container *ngTemplateOutlet=\"footerTemplate\">\n </ng-container>\n</igx-combo-drop-down>\n\n<ng-template #complex let-display let-data=\"data\" let-key=\"displayKey\">\n {{display[key]}}\n</ng-template>\n<ng-template #primitive let-display>\n {{display}}\n</ng-template>\n<ng-template #empty>\n <span>The list is empty</span>\n</ng-template>\n<ng-template #addItemDefault let-control>\n <button igxButton=\"flat\" igxRipple>Add item</button>\n</ng-template>\n<ng-template #headerItemBase let-item let-key=\"valueKey\" let-groupKey=\"groupKey\">\n {{ item[key] }}\n</ng-template>\n",
41636
+ template: "<igx-input-group #inputGroup [displayDensity]=\"displayDensity\" [suppressInputAutofocus]=\"true\" [type]=\"type\">\n <ng-container ngProjectAs=\"[igxLabel]\">\n <ng-content select=\"[igxLabel]\"></ng-content>\n </ng-container>\n <ng-container ngProjectAs=\"igx-prefix\">\n <ng-content select=\"igx-prefix\"></ng-content>\n </ng-container>\n <ng-container ngProjectAs=\"igx-hint, [igxHint]\">\n <ng-content select=\"igx-hint, [igxHint]\"></ng-content>\n </ng-container>\n\n <input #comboInput igxInput [value]=\"value\" (focus)=\"onFocus()\" (input)=\"handleInputChange($event)\" (keyup)=\"handleKeyUp($event)\"\n (keydown)=\"handleKeyDown($event)\" (blur)=\"onBlur()\" [attr.placeholder]=\"placeholder\" aria-autocomplete=\"both\"\n [attr.aria-owns]=\"dropdown.id\" [attr.aria-labelledby]=\"ariaLabelledBy\" [disabled]=\"disabled\"\n [igxTextSelection]=\"!composing\" />\n\n <ng-container ngProjectAs=\"igx-suffix\">\n <ng-content select=\"igx-suffix\"></ng-content>\n </ng-container>\n <igx-suffix *ngIf=\"comboInput.value.length\" aria-label=\"Clear Selection\" class=\"igx-combo__clear-button\"\n (click)=\"handleClear($event)\">\n <ng-container *ngIf=\"clearIconTemplate\">\n <ng-container *ngTemplateOutlet=\"clearIconTemplate\"></ng-container>\n </ng-container>\n <igx-icon *ngIf=\"!clearIconTemplate\">\n clear\n </igx-icon>\n </igx-suffix>\n <igx-suffix *ngIf=\"showSearchCaseIcon\">\n <igx-icon family=\"imx-icons\" name=\"case-sensitive\" [active]=\"filteringOptions.caseSensitive\"\n (click)=\"toggleCaseSensitive()\">\n </igx-icon>\n </igx-suffix>\n <igx-suffix class=\"igx-combo__toggle-button\">\n <ng-container *ngIf=\"toggleIconTemplate\">\n <ng-container *ngTemplateOutlet=\"toggleIconTemplate; context: {$implicit: collapsed}\"></ng-container>\n </ng-container>\n <igx-icon (click)=\"onClick($event)\" *ngIf=\"!toggleIconTemplate\">\n {{ dropdown.collapsed ? 'arrow_drop_down' : 'arrow_drop_up'}}\n </igx-icon>\n </igx-suffix>\n</igx-input-group>\n\n<igx-combo-drop-down #igxComboDropDown class=\"igx-combo__drop-down\" [displayDensity]=\"displayDensity\"\n [width]=\"itemsWidth || '100%'\" (opening)=\"handleOpening($event)\" (closing)=\"handleClosing($event)\"\n (opened)=\"handleOpened()\" (closed)=\"handleClosed()\" [singleMode]=\"true\">\n <ng-container *ngTemplateOutlet=\"headerTemplate\">\n </ng-container>\n <div #dropdownItemContainer class=\"igx-combo__content\" [style.overflow]=\"'hidden'\"\n [style.maxHeight.px]=\"itemsMaxHeight\" [igxDropDownItemNavigation]=\"dropdown\" (focus)=\"dropdown.onFocus()\"\n [tabindex]=\"dropdown.collapsed ? -1 : 0\" role=\"listbox\" [attr.id]=\"dropdown.id\"\n (keydown)=\"handleItemKeyDown($event)\">\n <igx-combo-item role=\"option\" [singleMode]=\"true\" [itemHeight]='itemHeight' (click)=\"handleItemClick()\" *igxFor=\"let item of data\n | comboFiltering:filterValue:displayKey:filteringOptions:true\n | comboGrouping:groupKey:valueKey\n index as rowIndex; containerSize: itemsMaxHeight; scrollOrientation: 'vertical'; itemSize: itemHeight\"\n [value]=\"item\" [isHeader]=\"item.isHeader\" [index]=\"rowIndex\">\n <ng-container *ngIf=\"item.isHeader\">\n <ng-container\n *ngTemplateOutlet=\"headerItemTemplate ? headerItemTemplate : headerItemBase;\n context: {$implicit: item, data: data, valueKey: valueKey, groupKey: groupKey, displayKey: displayKey}\">\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!item.isHeader\">\n <ng-container #listItem\n *ngTemplateOutlet=\"template; context: {$implicit: item, data: data, valueKey: valueKey, displayKey: displayKey};\">\n </ng-container>\n </ng-container>\n </igx-combo-item>\n </div>\n\n <div class=\"igx-combo__add\" *ngIf=\"filteredData.length === 0 || isAddButtonVisible()\">\n <div class=\"igx-combo__empty\" *ngIf=\"filteredData.length === 0\">\n <ng-container *ngTemplateOutlet=\"emptyTemplate ? emptyTemplate : empty\">\n </ng-container>\n </div>\n <igx-combo-add-item #addItem [itemHeight]=\"itemHeight\" *ngIf=\"isAddButtonVisible()\"\n [tabindex]=\"dropdown.collapsed ? -1 : customValueFlag ? 1 : -1\" class=\"igx-combo__add-item\" role=\"button\"\n aria-label=\"Add Item\" [index]=\"virtualScrollContainer.igxForOf.length\">\n <ng-container *ngTemplateOutlet=\"addItemTemplate ? addItemTemplate : addItemDefault\">\n </ng-container>\n </igx-combo-add-item>\n </div>\n <ng-container *ngTemplateOutlet=\"footerTemplate\">\n </ng-container>\n</igx-combo-drop-down>\n\n<ng-template #complex let-display let-data=\"data\" let-key=\"displayKey\">\n {{display[key]}}\n</ng-template>\n<ng-template #primitive let-display>\n {{display}}\n</ng-template>\n<ng-template #empty>\n <span>The list is empty</span>\n</ng-template>\n<ng-template #addItemDefault let-control>\n <button igxButton=\"flat\" igxRipple>Add item</button>\n</ng-template>\n<ng-template #headerItemBase let-item let-key=\"valueKey\" let-groupKey=\"groupKey\">\n {{ item[key] }}\n</ng-template>\n",
41656
41637
  providers: [
41657
41638
  IgxComboAPIService,
41658
41639
  { provide: IGX_COMBO_COMPONENT, useExisting: IgxSimpleComboComponent },
@@ -87230,161 +87211,160 @@
87230
87211
  exports["ɵbw"] = IgxComboAPIService;
87231
87212
  exports["ɵbx"] = IgxComboDropDownComponent;
87232
87213
  exports["ɵby"] = IgxComboItemComponent;
87233
- exports["ɵbz"] = IgxComboCleanPipe;
87234
- exports["ɵca"] = IgxComboFilteringPipe;
87235
- exports["ɵcb"] = IgxComboGroupingPipe;
87236
- exports["ɵcc"] = IgxComboAddItemComponent;
87237
- exports["ɵcd"] = PickerBaseDirective;
87238
- exports["ɵce"] = IgxCalendarContainerComponent;
87239
- exports["ɵcf"] = IgxCalendarContainerModule;
87240
- exports["ɵcg"] = IgxDialogTitleDirective;
87241
- exports["ɵch"] = IgxDialogActionsDirective;
87242
- exports["ɵci"] = IgxCellCrudState;
87243
- exports["ɵcj"] = IgxRowCrudState;
87244
- exports["ɵck"] = IgxRowAddCrudState;
87245
- exports["ɵcl"] = IgxGridCRUDService;
87246
- exports["ɵcm"] = IgxColumnMovingService;
87247
- exports["ɵcn"] = IgxExcelStyleCustomDialogComponent;
87248
- exports["ɵco"] = IgxExcelStyleDefaultExpressionComponent;
87249
- exports["ɵcp"] = IgxExcelStyleDateExpressionComponent;
87250
- exports["ɵcq"] = HammerGesturesManager;
87251
- exports["ɵcr"] = WatchChanges;
87252
- exports["ɵcs"] = WatchColumnChanges;
87253
- exports["ɵct"] = notifyChanges;
87254
- exports["ɵcu"] = IgxNotificationsDirective;
87255
- exports["ɵcv"] = IgxGridColumnResizerComponent;
87256
- exports["ɵcw"] = IgxColumnResizerDirective;
87257
- exports["ɵcx"] = IgxColumnResizingService;
87258
- exports["ɵcy"] = IgxRowSelectorDirective;
87259
- exports["ɵcz"] = IgxGroupByRowSelectorDirective;
87214
+ exports["ɵbz"] = IgxComboFilteringPipe;
87215
+ exports["ɵca"] = IgxComboGroupingPipe;
87216
+ exports["ɵcb"] = IgxComboAddItemComponent;
87217
+ exports["ɵcc"] = PickerBaseDirective;
87218
+ exports["ɵcd"] = IgxCalendarContainerComponent;
87219
+ exports["ɵce"] = IgxCalendarContainerModule;
87220
+ exports["ɵcf"] = IgxDialogTitleDirective;
87221
+ exports["ɵcg"] = IgxDialogActionsDirective;
87222
+ exports["ɵch"] = IgxCellCrudState;
87223
+ exports["ɵci"] = IgxRowCrudState;
87224
+ exports["ɵcj"] = IgxRowAddCrudState;
87225
+ exports["ɵck"] = IgxGridCRUDService;
87226
+ exports["ɵcl"] = IgxColumnMovingService;
87227
+ exports["ɵcm"] = IgxExcelStyleCustomDialogComponent;
87228
+ exports["ɵcn"] = IgxExcelStyleDefaultExpressionComponent;
87229
+ exports["ɵco"] = IgxExcelStyleDateExpressionComponent;
87230
+ exports["ɵcp"] = HammerGesturesManager;
87231
+ exports["ɵcq"] = WatchChanges;
87232
+ exports["ɵcr"] = WatchColumnChanges;
87233
+ exports["ɵcs"] = notifyChanges;
87234
+ exports["ɵct"] = IgxNotificationsDirective;
87235
+ exports["ɵcu"] = IgxGridColumnResizerComponent;
87236
+ exports["ɵcv"] = IgxColumnResizerDirective;
87237
+ exports["ɵcw"] = IgxColumnResizingService;
87238
+ exports["ɵcx"] = IgxRowSelectorDirective;
87239
+ exports["ɵcy"] = IgxGroupByRowSelectorDirective;
87240
+ exports["ɵcz"] = IgxHeadSelectorDirective;
87260
87241
  exports["ɵd"] = IgxGridSelectionService;
87261
- exports["ɵda"] = IgxHeadSelectorDirective;
87262
- exports["ɵdb"] = IgxRowDragDirective;
87263
- exports["ɵdc"] = IgxDragIndicatorIconDirective;
87264
- exports["ɵdd"] = IgxRowDragGhostDirective;
87265
- exports["ɵde"] = IgxRowDragModule;
87266
- exports["ɵdf"] = IgxGridHeaderRowComponent;
87267
- exports["ɵdg"] = IgxGridHeaderGroupComponent;
87268
- exports["ɵdh"] = IgxGridHeaderComponent;
87269
- exports["ɵdi"] = IgxGridFilteringCellComponent;
87270
- exports["ɵdj"] = IgxFilteringService;
87271
- exports["ɵdk"] = IgxGridFilteringRowComponent;
87272
- exports["ɵdl"] = IgxGridGroupByAreaComponent;
87273
- exports["ɵdm"] = IgxGroupByAreaDirective;
87274
- exports["ɵdn"] = IgxGroupByMetaPipe;
87275
- exports["ɵdo"] = IgxTemplateOutletDirective;
87276
- exports["ɵdp"] = IgxTemplateOutletModule;
87277
- exports["ɵdq"] = IgxRowEditTemplateDirective;
87278
- exports["ɵdr"] = IgxRowEditTextDirective;
87279
- exports["ɵds"] = IgxRowAddTextDirective;
87280
- exports["ɵdt"] = IgxRowEditActionsDirective;
87281
- exports["ɵdu"] = IgxRowEditTabStopDirective;
87282
- exports["ɵdv"] = IgxSummaryRowComponent;
87283
- exports["ɵdw"] = IgxSummaryCellComponent;
87284
- exports["ɵdx"] = IgxRowDirective;
87285
- exports["ɵdy"] = IgxGridNavigationService;
87286
- exports["ɵdz"] = IgxGridSummaryService;
87287
- exports["ɵea"] = ConnectedPositioningStrategy;
87288
- exports["ɵeb"] = IgxGridGroupByRowComponent;
87289
- exports["ɵec"] = IgxTreeGridSelectionService;
87290
- exports["ɵed"] = IgxTreeGridGroupByAreaComponent;
87291
- exports["ɵee"] = IgxRowLoadingIndicatorTemplateDirective;
87292
- exports["ɵef"] = IgxHierarchicalGridNavigationService;
87293
- exports["ɵeg"] = IgxChildGridRowComponent;
87294
- exports["ɵeh"] = IgxGridCellComponent;
87295
- exports["ɵei"] = IgxGridFooterComponent;
87296
- exports["ɵej"] = IgxAdvancedFilteringDialogComponent;
87297
- exports["ɵek"] = IgxColumnHidingDirective;
87298
- exports["ɵel"] = IgxColumnPinningDirective;
87299
- exports["ɵem"] = IgxGridSharedModules;
87300
- exports["ɵen"] = IgxProcessBarTextTemplateDirective;
87301
- exports["ɵeo"] = IgxProgressBarGradientDirective;
87302
- exports["ɵep"] = DIR_DOCUMENT_FACTORY;
87303
- exports["ɵeq"] = DIR_DOCUMENT;
87304
- exports["ɵer"] = IgxDirectionality;
87305
- exports["ɵes"] = IgxSelectItemNavigationDirective;
87306
- exports["ɵet"] = IGX_TIME_PICKER_COMPONENT;
87307
- exports["ɵev"] = IgxItemListDirective;
87308
- exports["ɵew"] = IgxTimeItemDirective;
87309
- exports["ɵex"] = IgxTimePickerTemplateDirective;
87310
- exports["ɵey"] = IgxTimePickerActionsDirective;
87311
- exports["ɵez"] = TimeFormatPipe;
87242
+ exports["ɵda"] = IgxRowDragDirective;
87243
+ exports["ɵdb"] = IgxDragIndicatorIconDirective;
87244
+ exports["ɵdc"] = IgxRowDragGhostDirective;
87245
+ exports["ɵdd"] = IgxRowDragModule;
87246
+ exports["ɵde"] = IgxGridHeaderRowComponent;
87247
+ exports["ɵdf"] = IgxGridHeaderGroupComponent;
87248
+ exports["ɵdg"] = IgxGridHeaderComponent;
87249
+ exports["ɵdh"] = IgxGridFilteringCellComponent;
87250
+ exports["ɵdi"] = IgxFilteringService;
87251
+ exports["ɵdj"] = IgxGridFilteringRowComponent;
87252
+ exports["ɵdk"] = IgxGridGroupByAreaComponent;
87253
+ exports["ɵdl"] = IgxGroupByAreaDirective;
87254
+ exports["ɵdm"] = IgxGroupByMetaPipe;
87255
+ exports["ɵdn"] = IgxTemplateOutletDirective;
87256
+ exports["ɵdo"] = IgxTemplateOutletModule;
87257
+ exports["ɵdp"] = IgxRowEditTemplateDirective;
87258
+ exports["ɵdq"] = IgxRowEditTextDirective;
87259
+ exports["ɵdr"] = IgxRowAddTextDirective;
87260
+ exports["ɵds"] = IgxRowEditActionsDirective;
87261
+ exports["ɵdt"] = IgxRowEditTabStopDirective;
87262
+ exports["ɵdu"] = IgxSummaryRowComponent;
87263
+ exports["ɵdv"] = IgxSummaryCellComponent;
87264
+ exports["ɵdw"] = IgxRowDirective;
87265
+ exports["ɵdx"] = IgxGridNavigationService;
87266
+ exports["ɵdy"] = IgxGridSummaryService;
87267
+ exports["ɵdz"] = ConnectedPositioningStrategy;
87268
+ exports["ɵea"] = IgxGridGroupByRowComponent;
87269
+ exports["ɵeb"] = IgxTreeGridSelectionService;
87270
+ exports["ɵec"] = IgxTreeGridGroupByAreaComponent;
87271
+ exports["ɵed"] = IgxRowLoadingIndicatorTemplateDirective;
87272
+ exports["ɵee"] = IgxHierarchicalGridNavigationService;
87273
+ exports["ɵef"] = IgxChildGridRowComponent;
87274
+ exports["ɵeg"] = IgxGridCellComponent;
87275
+ exports["ɵeh"] = IgxGridFooterComponent;
87276
+ exports["ɵei"] = IgxAdvancedFilteringDialogComponent;
87277
+ exports["ɵej"] = IgxColumnHidingDirective;
87278
+ exports["ɵek"] = IgxColumnPinningDirective;
87279
+ exports["ɵel"] = IgxGridSharedModules;
87280
+ exports["ɵem"] = IgxProcessBarTextTemplateDirective;
87281
+ exports["ɵen"] = IgxProgressBarGradientDirective;
87282
+ exports["ɵeo"] = DIR_DOCUMENT_FACTORY;
87283
+ exports["ɵep"] = DIR_DOCUMENT;
87284
+ exports["ɵeq"] = IgxDirectionality;
87285
+ exports["ɵer"] = IgxSelectItemNavigationDirective;
87286
+ exports["ɵes"] = IGX_TIME_PICKER_COMPONENT;
87287
+ exports["ɵeu"] = IgxItemListDirective;
87288
+ exports["ɵev"] = IgxTimeItemDirective;
87289
+ exports["ɵew"] = IgxTimePickerTemplateDirective;
87290
+ exports["ɵex"] = IgxTimePickerActionsDirective;
87291
+ exports["ɵey"] = TimeFormatPipe;
87292
+ exports["ɵez"] = TimeItemPipe;
87312
87293
  exports["ɵf"] = IGX_EXPANSION_PANEL_COMPONENT;
87313
- exports["ɵfa"] = TimeItemPipe;
87314
- exports["ɵfb"] = IgxGridPipesModule;
87315
- exports["ɵfc"] = IgxGridCellStyleClassesPipe;
87316
- exports["ɵfd"] = IgxGridCellStylesPipe;
87317
- exports["ɵfe"] = IgxGridRowClassesPipe;
87318
- exports["ɵff"] = IgxGridRowStylesPipe;
87319
- exports["ɵfg"] = IgxGridNotGroupedPipe;
87320
- exports["ɵfh"] = IgxGridTopLevelColumns;
87321
- exports["ɵfi"] = IgxGridFilterConditionPipe;
87322
- exports["ɵfj"] = IgxGridTransactionPipe;
87323
- exports["ɵfk"] = IgxGridPaginatorOptionsPipe;
87324
- exports["ɵfl"] = IgxHasVisibleColumnsPipe;
87325
- exports["ɵfm"] = IgxGridRowPinningPipe;
87326
- exports["ɵfn"] = IgxColumnActionEnabledPipe;
87327
- exports["ɵfo"] = IgxFilterActionColumnsPipe;
87328
- exports["ɵfp"] = IgxSortActionColumnsPipe;
87329
- exports["ɵfq"] = IgxGridDataMapperPipe;
87330
- exports["ɵfr"] = IgxStringReplacePipe;
87331
- exports["ɵfs"] = IgxGridTransactionStatePipe;
87332
- exports["ɵft"] = IgxColumnFormatterPipe;
87333
- exports["ɵfu"] = IgxSummaryFormatterPipe;
87334
- exports["ɵfv"] = IgxGridAddRowPipe;
87335
- exports["ɵfw"] = IgxHeaderGroupWidthPipe;
87336
- exports["ɵfx"] = IgxHeaderGroupStylePipe;
87337
- exports["ɵfy"] = IgxGridColumnModule;
87338
- exports["ɵfz"] = IgxGridHeadersModule;
87294
+ exports["ɵfa"] = IgxGridPipesModule;
87295
+ exports["ɵfb"] = IgxGridCellStyleClassesPipe;
87296
+ exports["ɵfc"] = IgxGridCellStylesPipe;
87297
+ exports["ɵfd"] = IgxGridRowClassesPipe;
87298
+ exports["ɵfe"] = IgxGridRowStylesPipe;
87299
+ exports["ɵff"] = IgxGridNotGroupedPipe;
87300
+ exports["ɵfg"] = IgxGridTopLevelColumns;
87301
+ exports["ɵfh"] = IgxGridFilterConditionPipe;
87302
+ exports["ɵfi"] = IgxGridTransactionPipe;
87303
+ exports["ɵfj"] = IgxGridPaginatorOptionsPipe;
87304
+ exports["ɵfk"] = IgxHasVisibleColumnsPipe;
87305
+ exports["ɵfl"] = IgxGridRowPinningPipe;
87306
+ exports["ɵfm"] = IgxColumnActionEnabledPipe;
87307
+ exports["ɵfn"] = IgxFilterActionColumnsPipe;
87308
+ exports["ɵfo"] = IgxSortActionColumnsPipe;
87309
+ exports["ɵfp"] = IgxGridDataMapperPipe;
87310
+ exports["ɵfq"] = IgxStringReplacePipe;
87311
+ exports["ɵfr"] = IgxGridTransactionStatePipe;
87312
+ exports["ɵfs"] = IgxColumnFormatterPipe;
87313
+ exports["ɵft"] = IgxSummaryFormatterPipe;
87314
+ exports["ɵfu"] = IgxGridAddRowPipe;
87315
+ exports["ɵfv"] = IgxHeaderGroupWidthPipe;
87316
+ exports["ɵfw"] = IgxHeaderGroupStylePipe;
87317
+ exports["ɵfx"] = IgxGridColumnModule;
87318
+ exports["ɵfy"] = IgxGridHeadersModule;
87319
+ exports["ɵfz"] = SortingIndexPipe;
87339
87320
  exports["ɵg"] = IGX_TREE_COMPONENT;
87340
- exports["ɵga"] = SortingIndexPipe;
87341
- exports["ɵgb"] = IgxGridFilteringModule;
87342
- exports["ɵgc"] = IgxColumnMovingModule;
87343
- exports["ɵgd"] = IgxColumnMovingDropDirective;
87344
- exports["ɵge"] = IgxColumnMovingDragDirective;
87345
- exports["ɵgf"] = IgxGridResizingModule;
87346
- exports["ɵgg"] = IgxResizeHandleDirective;
87347
- exports["ɵgh"] = IgxGridExcelStyleFilteringModule;
87348
- exports["ɵgi"] = IgxGridSelectionModule;
87349
- exports["ɵgj"] = IgxGridDragSelectDirective;
87350
- exports["ɵgk"] = IgxGridSummaryModule;
87351
- exports["ɵgl"] = IgxSummaryDataPipe;
87352
- exports["ɵgm"] = IgxGridToolbarModule;
87353
- exports["ɵgn"] = BaseToolbarDirective;
87354
- exports["ɵgo"] = BaseToolbarColumnActionsDirective;
87355
- exports["ɵgp"] = IgxGridRowComponent;
87356
- exports["ɵgq"] = IgxGridSortingPipe;
87357
- exports["ɵgr"] = IgxGridGroupingPipe;
87358
- exports["ɵgs"] = IgxGridPagingPipe;
87359
- exports["ɵgt"] = IgxGridFilteringPipe;
87360
- exports["ɵgu"] = IgxGridSummaryPipe;
87361
- exports["ɵgv"] = IgxGridDetailsPipe;
87362
- exports["ɵgw"] = IgxGridExpandableCellComponent;
87363
- exports["ɵgx"] = IgxTreeGridRowComponent;
87364
- exports["ɵgy"] = IgxTreeGridCellComponent;
87365
- exports["ɵgz"] = IgxTreeGridHierarchizingPipe;
87321
+ exports["ɵga"] = IgxGridFilteringModule;
87322
+ exports["ɵgb"] = IgxColumnMovingModule;
87323
+ exports["ɵgc"] = IgxColumnMovingDropDirective;
87324
+ exports["ɵgd"] = IgxColumnMovingDragDirective;
87325
+ exports["ɵge"] = IgxGridResizingModule;
87326
+ exports["ɵgf"] = IgxResizeHandleDirective;
87327
+ exports["ɵgg"] = IgxGridExcelStyleFilteringModule;
87328
+ exports["ɵgh"] = IgxGridSelectionModule;
87329
+ exports["ɵgi"] = IgxGridDragSelectDirective;
87330
+ exports["ɵgj"] = IgxGridSummaryModule;
87331
+ exports["ɵgk"] = IgxSummaryDataPipe;
87332
+ exports["ɵgl"] = IgxGridToolbarModule;
87333
+ exports["ɵgm"] = BaseToolbarDirective;
87334
+ exports["ɵgn"] = BaseToolbarColumnActionsDirective;
87335
+ exports["ɵgo"] = IgxGridRowComponent;
87336
+ exports["ɵgp"] = IgxGridSortingPipe;
87337
+ exports["ɵgq"] = IgxGridGroupingPipe;
87338
+ exports["ɵgr"] = IgxGridPagingPipe;
87339
+ exports["ɵgs"] = IgxGridFilteringPipe;
87340
+ exports["ɵgt"] = IgxGridSummaryPipe;
87341
+ exports["ɵgu"] = IgxGridDetailsPipe;
87342
+ exports["ɵgv"] = IgxGridExpandableCellComponent;
87343
+ exports["ɵgw"] = IgxTreeGridRowComponent;
87344
+ exports["ɵgx"] = IgxTreeGridCellComponent;
87345
+ exports["ɵgy"] = IgxTreeGridHierarchizingPipe;
87346
+ exports["ɵgz"] = IgxTreeGridFlatteningPipe;
87366
87347
  exports["ɵh"] = IGX_TREE_NODE_COMPONENT;
87367
- exports["ɵha"] = IgxTreeGridFlatteningPipe;
87368
- exports["ɵhb"] = IgxTreeGridSortingPipe;
87369
- exports["ɵhc"] = IgxTreeGridPagingPipe;
87370
- exports["ɵhd"] = IgxTreeGridTransactionPipe;
87371
- exports["ɵhe"] = IgxTreeGridNormalizeRecordsPipe;
87372
- exports["ɵhf"] = IgxTreeGridAddRowPipe;
87373
- exports["ɵhg"] = IgxTreeGridFilteringPipe;
87374
- exports["ɵhh"] = IgxTreeGridSummaryPipe;
87375
- exports["ɵhi"] = IgxHierarchicalRowComponent;
87376
- exports["ɵhj"] = IgxHierarchicalGridCellComponent;
87377
- exports["ɵhk"] = IgxSliderThumbComponent;
87378
- exports["ɵhl"] = IgxThumbLabelComponent;
87379
- exports["ɵhm"] = IgxTicksComponent;
87380
- exports["ɵhn"] = IgxTickLabelsPipe;
87381
- exports["ɵho"] = IgxTabsBase;
87382
- exports["ɵhp"] = IgxTabHeaderBase;
87383
- exports["ɵhq"] = IgxTabContentBase;
87384
- exports["ɵhr"] = IgxSplitBarComponent;
87385
- exports["ɵhs"] = IgxTreeService;
87386
- exports["ɵht"] = IgxTreeSelectionService;
87387
- exports["ɵhu"] = IgxTreeNavigationService;
87348
+ exports["ɵha"] = IgxTreeGridSortingPipe;
87349
+ exports["ɵhb"] = IgxTreeGridPagingPipe;
87350
+ exports["ɵhc"] = IgxTreeGridTransactionPipe;
87351
+ exports["ɵhd"] = IgxTreeGridNormalizeRecordsPipe;
87352
+ exports["ɵhe"] = IgxTreeGridAddRowPipe;
87353
+ exports["ɵhf"] = IgxTreeGridFilteringPipe;
87354
+ exports["ɵhg"] = IgxTreeGridSummaryPipe;
87355
+ exports["ɵhh"] = IgxHierarchicalRowComponent;
87356
+ exports["ɵhi"] = IgxHierarchicalGridCellComponent;
87357
+ exports["ɵhj"] = IgxSliderThumbComponent;
87358
+ exports["ɵhk"] = IgxThumbLabelComponent;
87359
+ exports["ɵhl"] = IgxTicksComponent;
87360
+ exports["ɵhm"] = IgxTickLabelsPipe;
87361
+ exports["ɵhn"] = IgxTabsBase;
87362
+ exports["ɵho"] = IgxTabHeaderBase;
87363
+ exports["ɵhp"] = IgxTabContentBase;
87364
+ exports["ɵhq"] = IgxSplitBarComponent;
87365
+ exports["ɵhr"] = IgxTreeService;
87366
+ exports["ɵhs"] = IgxTreeSelectionService;
87367
+ exports["ɵht"] = IgxTreeNavigationService;
87388
87368
  exports["ɵi"] = PlatformUtil;
87389
87369
  exports["ɵl"] = IgxInputGroupBase;
87390
87370
  exports["ɵm"] = IgxSelectionAPIService;