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
|
@@ -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
|
};
|
|
@@ -23985,7 +23990,7 @@
|
|
|
23985
23990
|
for (var elementsFromPoint_1 = __values(elementsFromPoint), elementsFromPoint_1_1 = elementsFromPoint_1.next(); !elementsFromPoint_1_1.done; elementsFromPoint_1_1 = elementsFromPoint_1.next()) {
|
|
23986
23991
|
var elFromPoint = elementsFromPoint_1_1.value;
|
|
23987
23992
|
if (!!(elFromPoint === null || elFromPoint === void 0 ? void 0 : elFromPoint.shadowRoot)) {
|
|
23988
|
-
targetElements = targetElements.concat(this.getFromShadowRoot(elFromPoint, pageX, pageY));
|
|
23993
|
+
targetElements = targetElements.concat(this.getFromShadowRoot(elFromPoint, pageX, pageY, elementsFromPoint));
|
|
23989
23994
|
}
|
|
23990
23995
|
else if (targetElements.indexOf(elFromPoint) === -1) {
|
|
23991
23996
|
targetElements.push(elFromPoint);
|
|
@@ -24037,22 +24042,24 @@
|
|
|
24037
24042
|
* @hidden
|
|
24038
24043
|
* Traverse shadow dom in depth.
|
|
24039
24044
|
*/
|
|
24040
|
-
IgxDragDirective.prototype.getFromShadowRoot = function (elem, pageX, pageY) {
|
|
24045
|
+
IgxDragDirective.prototype.getFromShadowRoot = function (elem, pageX, pageY, parentDomElems) {
|
|
24041
24046
|
var e_3, _a;
|
|
24042
24047
|
var elementsFromPoint = elem.shadowRoot.elementsFromPoint(pageX, pageY);
|
|
24043
|
-
var
|
|
24048
|
+
var shadowElements = elementsFromPoint.filter(function (cur) { return parentDomElems.indexOf(cur) === -1; });
|
|
24049
|
+
var res = [];
|
|
24044
24050
|
try {
|
|
24045
|
-
for (var
|
|
24046
|
-
var elFromPoint =
|
|
24051
|
+
for (var shadowElements_1 = __values(shadowElements), shadowElements_1_1 = shadowElements_1.next(); !shadowElements_1_1.done; shadowElements_1_1 = shadowElements_1.next()) {
|
|
24052
|
+
var elFromPoint = shadowElements_1_1.value;
|
|
24047
24053
|
if (!!(elFromPoint === null || elFromPoint === void 0 ? void 0 : elFromPoint.shadowRoot) && elFromPoint.shadowRoot !== elem.shadowRoot) {
|
|
24048
|
-
res = res.concat(this.getFromShadowRoot(elFromPoint, pageX, pageY));
|
|
24054
|
+
res = res.concat(this.getFromShadowRoot(elFromPoint, pageX, pageY, elementsFromPoint));
|
|
24049
24055
|
}
|
|
24056
|
+
res.push(elFromPoint);
|
|
24050
24057
|
}
|
|
24051
24058
|
}
|
|
24052
24059
|
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
24053
24060
|
finally {
|
|
24054
24061
|
try {
|
|
24055
|
-
if (
|
|
24062
|
+
if (shadowElements_1_1 && !shadowElements_1_1.done && (_a = shadowElements_1.return)) _a.call(shadowElements_1);
|
|
24056
24063
|
}
|
|
24057
24064
|
finally { if (e_3) throw e_3.error; }
|
|
24058
24065
|
}
|
|
@@ -39205,9 +39212,6 @@
|
|
|
39205
39212
|
};
|
|
39206
39213
|
IgxComboAPIService.prototype.set_selected_item = function (itemID, event) {
|
|
39207
39214
|
var selected = this.combo.isItemSelected(itemID);
|
|
39208
|
-
if (!itemID && itemID !== 0) {
|
|
39209
|
-
return;
|
|
39210
|
-
}
|
|
39211
39215
|
if (!selected) {
|
|
39212
39216
|
this.combo.select([itemID], false, event);
|
|
39213
39217
|
}
|
|
@@ -40188,11 +40192,10 @@
|
|
|
40188
40192
|
if (!this.searchValue) {
|
|
40189
40193
|
return;
|
|
40190
40194
|
}
|
|
40191
|
-
var newValue = this.searchValue.trim();
|
|
40192
40195
|
var addedItem = this.displayKey ? (_b = {},
|
|
40193
|
-
_b[this.valueKey] =
|
|
40194
|
-
_b[this.displayKey] =
|
|
40195
|
-
_b) :
|
|
40196
|
+
_b[this.valueKey] = this.searchValue,
|
|
40197
|
+
_b[this.displayKey] = this.searchValue,
|
|
40198
|
+
_b) : this.searchValue;
|
|
40196
40199
|
if (this.groupKey) {
|
|
40197
40200
|
Object.assign(addedItem, (_c = {}, _c[this.groupKey] = this.defaultFallbackGroup, _c));
|
|
40198
40201
|
}
|
|
@@ -40319,7 +40322,10 @@
|
|
|
40319
40322
|
return keys;
|
|
40320
40323
|
}
|
|
40321
40324
|
// map keys vs. filter data to retain the order of the selected items
|
|
40322
|
-
return keys.map(function (key) { return
|
|
40325
|
+
return keys.map(function (key) { return isNaNvalue(key)
|
|
40326
|
+
? _this.data.find(function (entry) { return isNaNvalue(entry[_this.valueKey]); })
|
|
40327
|
+
: _this.data.find(function (entry) { return entry[_this.valueKey] === key; }); })
|
|
40328
|
+
.filter(function (e) { return e !== undefined; });
|
|
40323
40329
|
};
|
|
40324
40330
|
IgxComboBaseDirective.prototype.checkMatch = function () {
|
|
40325
40331
|
var itemMatch = this.filteredData.some(this.findMatch);
|
|
@@ -40732,20 +40738,6 @@
|
|
|
40732
40738
|
children: [{ type: i0.ContentChildren, args: [IgxComboItemComponent, { descendants: true },] }]
|
|
40733
40739
|
};
|
|
40734
40740
|
|
|
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
40741
|
/** @hidden */
|
|
40750
40742
|
var IgxComboFilteringPipe = /** @class */ (function () {
|
|
40751
40743
|
function IgxComboFilteringPipe() {
|
|
@@ -40759,7 +40751,7 @@
|
|
|
40759
40751
|
return collection;
|
|
40760
40752
|
}
|
|
40761
40753
|
else {
|
|
40762
|
-
var searchTerm_1 = filteringOptions.caseSensitive ? searchValue
|
|
40754
|
+
var searchTerm_1 = filteringOptions.caseSensitive ? searchValue : searchValue.toLowerCase();
|
|
40763
40755
|
if (displayKey != null) {
|
|
40764
40756
|
return collection.filter(function (e) {
|
|
40765
40757
|
var _a, _b;
|
|
@@ -40776,9 +40768,7 @@
|
|
|
40776
40768
|
return IgxComboFilteringPipe;
|
|
40777
40769
|
}());
|
|
40778
40770
|
IgxComboFilteringPipe.decorators = [
|
|
40779
|
-
{ type: i0.Pipe, args: [{
|
|
40780
|
-
name: 'comboFiltering'
|
|
40781
|
-
},] }
|
|
40771
|
+
{ type: i0.Pipe, args: [{ name: 'comboFiltering' },] }
|
|
40782
40772
|
];
|
|
40783
40773
|
/** @hidden */
|
|
40784
40774
|
var IgxComboGroupingPipe = /** @class */ (function () {
|
|
@@ -41094,9 +41084,6 @@
|
|
|
41094
41084
|
*/
|
|
41095
41085
|
IgxComboComponent.prototype.setSelectedItem = function (itemID, select, event) {
|
|
41096
41086
|
if (select === void 0) { select = true; }
|
|
41097
|
-
if (itemID === null || itemID === undefined) {
|
|
41098
|
-
return;
|
|
41099
|
-
}
|
|
41100
41087
|
if (select) {
|
|
41101
41088
|
this.select([itemID], false, event);
|
|
41102
41089
|
}
|
|
@@ -41221,7 +41208,6 @@
|
|
|
41221
41208
|
IgxComboFilteringPipe, IgxComboDropDownComponent, IgxComboAddItemComponent,
|
|
41222
41209
|
IgxComboItemDirective,
|
|
41223
41210
|
IgxComboEmptyDirective,
|
|
41224
|
-
IgxComboCleanPipe,
|
|
41225
41211
|
IgxComboHeaderItemDirective,
|
|
41226
41212
|
IgxComboHeaderDirective,
|
|
41227
41213
|
IgxComboFooterDirective,
|
|
@@ -41231,7 +41217,6 @@
|
|
|
41231
41217
|
exports: [IgxComboComponent, IgxComboItemComponent, IgxComboDropDownComponent, IgxComboAddItemComponent,
|
|
41232
41218
|
IgxComboGroupingPipe,
|
|
41233
41219
|
IgxComboFilteringPipe,
|
|
41234
|
-
IgxComboCleanPipe,
|
|
41235
41220
|
IgxComboItemDirective,
|
|
41236
41221
|
IgxComboEmptyDirective,
|
|
41237
41222
|
IgxComboHeaderItemDirective,
|
|
@@ -41298,7 +41283,7 @@
|
|
|
41298
41283
|
return true;
|
|
41299
41284
|
}
|
|
41300
41285
|
var searchValue = _this.searchValue || _this.comboInput.value;
|
|
41301
|
-
return !!searchValue && value.toString().toLowerCase().includes(searchValue.
|
|
41286
|
+
return !!searchValue && value.toString().toLowerCase().includes(searchValue.toLowerCase());
|
|
41302
41287
|
};
|
|
41303
41288
|
_this.comboAPI.register(_this);
|
|
41304
41289
|
return _this;
|
|
@@ -41435,7 +41420,7 @@
|
|
|
41435
41420
|
if (this.collapsed && this.comboInput.focused) {
|
|
41436
41421
|
this.open();
|
|
41437
41422
|
}
|
|
41438
|
-
if (!this.comboInput.value.trim()) {
|
|
41423
|
+
if (!this.comboInput.value.trim() && this.selectionService.size(this.id) > 0) {
|
|
41439
41424
|
// handle clearing of input by space
|
|
41440
41425
|
this.clearSelection();
|
|
41441
41426
|
this._onChangeCallback(null);
|
|
@@ -41501,13 +41486,6 @@
|
|
|
41501
41486
|
this.comboInput.focus();
|
|
41502
41487
|
};
|
|
41503
41488
|
/** @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
41489
|
IgxSimpleComboComponent.prototype.onFocus = function () {
|
|
41512
41490
|
this._internalFilter = this.comboInput.value || '';
|
|
41513
41491
|
};
|
|
@@ -41581,10 +41559,17 @@
|
|
|
41581
41559
|
owner: this,
|
|
41582
41560
|
cancel: false
|
|
41583
41561
|
};
|
|
41584
|
-
|
|
41562
|
+
// additional checks when selecting and clearing an item with valueKey=undefined
|
|
41563
|
+
// as the event should emit when args.newSelection differs from args.oldSelection
|
|
41564
|
+
// however in this case both args.newSelection and args.oldSelection are 'undefined'
|
|
41565
|
+
if (args.newSelection !== args.oldSelection
|
|
41566
|
+
|| args.newSelection === undefined && (newSelection === null || newSelection === void 0 ? void 0 : newSelection.size) > 0
|
|
41567
|
+
|| args.oldSelection === undefined && oldSelectionAsArray.length > 0) {
|
|
41568
|
+
this.selectionChanging.emit(args);
|
|
41569
|
+
}
|
|
41570
|
+
// TODO: refactor below code as it sets the selection and the display text
|
|
41585
41571
|
if (!args.cancel) {
|
|
41586
|
-
var argsSelection =
|
|
41587
|
-
&& args.newSelection !== null
|
|
41572
|
+
var argsSelection = (newSelection === null || newSelection === void 0 ? void 0 : newSelection.size) > 0
|
|
41588
41573
|
? args.newSelection
|
|
41589
41574
|
: [];
|
|
41590
41575
|
argsSelection = Array.isArray(argsSelection) ? argsSelection : [argsSelection];
|
|
@@ -41603,6 +41588,7 @@
|
|
|
41603
41588
|
};
|
|
41604
41589
|
IgxSimpleComboComponent.prototype.createDisplayText = function (newSelection, oldSelection) {
|
|
41605
41590
|
var _this = this;
|
|
41591
|
+
var _a;
|
|
41606
41592
|
if (this.isRemote) {
|
|
41607
41593
|
return this.getRemoteSelection(newSelection, oldSelection);
|
|
41608
41594
|
}
|
|
@@ -41610,7 +41596,7 @@
|
|
|
41610
41596
|
&& newSelection.length > 0) {
|
|
41611
41597
|
return this.convertKeysToItems(newSelection).map(function (e) { return e[_this.displayKey]; })[0];
|
|
41612
41598
|
}
|
|
41613
|
-
return newSelection[0] || '';
|
|
41599
|
+
return ((_a = newSelection[0]) === null || _a === void 0 ? void 0 : _a.toString()) || '';
|
|
41614
41600
|
};
|
|
41615
41601
|
IgxSimpleComboComponent.prototype.clearSelection = function (ignoreFilter) {
|
|
41616
41602
|
var newSelection = this.selectionService.get_empty();
|
|
@@ -41621,7 +41607,7 @@
|
|
|
41621
41607
|
};
|
|
41622
41608
|
IgxSimpleComboComponent.prototype.clearOnBlur = function () {
|
|
41623
41609
|
var filtered = this.filteredData.find(this.findAllMatches);
|
|
41624
|
-
if (filtered === undefined || filtered === null ||
|
|
41610
|
+
if (filtered === undefined || filtered === null || this.selectionService.size(this.id) === 0) {
|
|
41625
41611
|
this.clearAndClose();
|
|
41626
41612
|
return;
|
|
41627
41613
|
}
|
|
@@ -41633,11 +41619,8 @@
|
|
|
41633
41619
|
return !!this._internalFilter && this._internalFilter.length !== this.getElementVal(filtered).length;
|
|
41634
41620
|
};
|
|
41635
41621
|
IgxSimpleComboComponent.prototype.getElementVal = function (element) {
|
|
41636
|
-
if (!element) {
|
|
41637
|
-
return null;
|
|
41638
|
-
}
|
|
41639
41622
|
var elementVal = this.displayKey ? element[this.displayKey] : element;
|
|
41640
|
-
return (elementVal
|
|
41623
|
+
return String(elementVal);
|
|
41641
41624
|
};
|
|
41642
41625
|
IgxSimpleComboComponent.prototype.clearAndClose = function () {
|
|
41643
41626
|
this.clearSelection(true);
|
|
@@ -41652,7 +41635,7 @@
|
|
|
41652
41635
|
IgxSimpleComboComponent.decorators = [
|
|
41653
41636
|
{ type: i0.Component, args: [{
|
|
41654
41637
|
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 |
|
|
41638
|
+
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
41639
|
providers: [
|
|
41657
41640
|
IgxComboAPIService,
|
|
41658
41641
|
{ provide: IGX_COMBO_COMPONENT, useExisting: IgxSimpleComboComponent },
|
|
@@ -60193,6 +60176,9 @@
|
|
|
60193
60176
|
* @internal
|
|
60194
60177
|
*/
|
|
60195
60178
|
IgxGridBaseDirective.prototype.copyHandler = function (event) {
|
|
60179
|
+
if (this.isFilterInput(event)) {
|
|
60180
|
+
return;
|
|
60181
|
+
}
|
|
60196
60182
|
var selectedColumns = this.gridAPI.grid.selectedColumns();
|
|
60197
60183
|
var columnData = this.getSelectedColumnsData(this.clipboardOptions.copyFormatters, this.clipboardOptions.copyHeaders);
|
|
60198
60184
|
var selectedData;
|
|
@@ -61932,6 +61918,18 @@
|
|
|
61932
61918
|
return !rec.expression && !rec.summaries && !rec.childGridsData && !rec.detailsData &&
|
|
61933
61919
|
!this.isGhostRecordAtIndex(dataViewIndex);
|
|
61934
61920
|
};
|
|
61921
|
+
IgxGridBaseDirective.prototype.isFilterInput = function (event) {
|
|
61922
|
+
var eventComposedPath = event.composedPath ? event.composedPath() : [];
|
|
61923
|
+
if (!eventComposedPath.length) {
|
|
61924
|
+
var target = event.target;
|
|
61925
|
+
while (target.parentNode !== null) {
|
|
61926
|
+
eventComposedPath.push(target);
|
|
61927
|
+
target = target.parentNode;
|
|
61928
|
+
}
|
|
61929
|
+
}
|
|
61930
|
+
var eventPathElements = eventComposedPath.map(function (el) { var _a; return (_a = el.tagName) === null || _a === void 0 ? void 0 : _a.toLowerCase(); });
|
|
61931
|
+
return eventPathElements.includes('igx-grid-filtering-row') || eventPathElements.includes('igx-grid-filtering-cell');
|
|
61932
|
+
};
|
|
61935
61933
|
/**
|
|
61936
61934
|
* Returns if the record at the specified data view index is a ghost.
|
|
61937
61935
|
* If record is pinned but is not in pinned area then it is a ghost record.
|
|
@@ -64423,7 +64421,7 @@
|
|
|
64423
64421
|
IgxPageNavigationComponent.decorators = [
|
|
64424
64422
|
{ type: i0.Component, args: [{
|
|
64425
64423
|
selector: 'igx-page-nav',
|
|
64426
|
-
template: "<button\n [title]=\"paginator.resourceStrings.igx_paginator_first_page_button_text\"\n [disabled]=\"paginator.isFirstPageDisabled\"\n [attr.aria-disabled]=\"paginator.isFirstPageDisabled\"\n (click)=\"paginator.paginate(0)\"\n igxButton=\"icon\"\n igxRipple\n [igxRippleCentered]=\"true\"\n>\n <igx-icon>first_page</igx-icon>\n</button>\n<button\n [title]=\"paginator.resourceStrings.igx_paginator_previous_page_button_text\"\n [disabled]=\"paginator.isFirstPageDisabled\"\n [attr.aria-disabled]=\"paginator.isFirstPageDisabled\"\n (click)=\"paginator.previousPage()\"\n igxButton=\"icon\"\n igxRipple\n [igxRippleCentered]=\"true\"\n>\n <igx-icon>chevron_left</igx-icon>\n</button>\n<div class=\"igx-page-nav__text\" aria-current=\"page\">\n <span>{{ paginator.page + 1 }}</span>\n <span\n > {{\n paginator.resourceStrings.igx_paginator_pager_text\n }} </span\n >\n <span>{{ paginator.totalPages }}</span>\n</div>\n<button\n [title]=\"paginator.resourceStrings.igx_paginator_next_page_button_text\"\n [disabled]=\"paginator.isLastPageDisabled\"\n [attr.aria-disabled]=\"paginator.isLastPageDisabled\"\n (click)=\"paginator.nextPage()\"\n igxRipple\n [igxRippleCentered]=\"true\"\n igxButton=\"icon\"\n>\n <igx-icon>chevron_right</igx-icon>\n</button>\n<button\n [title]=\"paginator.resourceStrings.igx_paginator_last_page_button_text\"\n [disabled]=\"paginator.isLastPageDisabled\"\n [attr.aria-disabled]=\"paginator.isLastPageDisabled\"\n (click)=\"paginator.paginate(paginator.totalPages - 1)\"\n igxButton=\"icon\"\n igxRipple\n [igxRippleCentered]=\"true\"\n>\n <igx-icon>last_page</igx-icon>\n</button>\n\n"
|
|
64424
|
+
template: "<button\n [title]=\"paginator.resourceStrings.igx_paginator_first_page_button_text\"\n [disabled]=\"paginator.isFirstPageDisabled\"\n [attr.aria-disabled]=\"paginator.isFirstPageDisabled\"\n (click)=\"paginator.paginate(0)\"\n igxButton=\"icon\"\n igxRipple\n [igxRippleCentered]=\"true\"\n type=\"button\"\n>\n <igx-icon>first_page</igx-icon>\n</button>\n<button\n [title]=\"paginator.resourceStrings.igx_paginator_previous_page_button_text\"\n [disabled]=\"paginator.isFirstPageDisabled\"\n [attr.aria-disabled]=\"paginator.isFirstPageDisabled\"\n (click)=\"paginator.previousPage()\"\n igxButton=\"icon\"\n igxRipple\n [igxRippleCentered]=\"true\"\n type=\"button\"\n>\n <igx-icon>chevron_left</igx-icon>\n</button>\n<div class=\"igx-page-nav__text\" aria-current=\"page\">\n <span>{{ paginator.page + 1 }}</span>\n <span\n > {{\n paginator.resourceStrings.igx_paginator_pager_text\n }} </span\n >\n <span>{{ paginator.totalPages }}</span>\n</div>\n<button\n [title]=\"paginator.resourceStrings.igx_paginator_next_page_button_text\"\n [disabled]=\"paginator.isLastPageDisabled\"\n [attr.aria-disabled]=\"paginator.isLastPageDisabled\"\n (click)=\"paginator.nextPage()\"\n igxRipple\n [igxRippleCentered]=\"true\"\n igxButton=\"icon\"\n type=\"button\"\n>\n <igx-icon>chevron_right</igx-icon>\n</button>\n<button\n [title]=\"paginator.resourceStrings.igx_paginator_last_page_button_text\"\n [disabled]=\"paginator.isLastPageDisabled\"\n [attr.aria-disabled]=\"paginator.isLastPageDisabled\"\n (click)=\"paginator.paginate(paginator.totalPages - 1)\"\n igxButton=\"icon\"\n igxRipple\n [igxRippleCentered]=\"true\"\n type=\"button\"\n>\n <igx-icon>last_page</igx-icon>\n</button>\n\n"
|
|
64427
64425
|
},] }
|
|
64428
64426
|
];
|
|
64429
64427
|
IgxPageNavigationComponent.ctorParameters = function () { return [
|
|
@@ -70190,7 +70188,6 @@
|
|
|
70190
70188
|
* @hidden @internal
|
|
70191
70189
|
*/
|
|
70192
70190
|
IgxGridComponent.prototype.ngAfterContentInit = function () {
|
|
70193
|
-
var _this = this;
|
|
70194
70191
|
_super.prototype.ngAfterContentInit.call(this);
|
|
70195
70192
|
if (this.allowFiltering && this.hasColumnLayouts) {
|
|
70196
70193
|
this.filterMode = FilterMode.excelStyleFilter;
|
|
@@ -70198,7 +70195,6 @@
|
|
|
70198
70195
|
if (this.groupTemplate) {
|
|
70199
70196
|
this._groupRowTemplate = this.groupTemplate.template;
|
|
70200
70197
|
}
|
|
70201
|
-
this.detailTemplate.changes.subscribe(function () { return _this.trackChanges = function (_, rec) { return ((rec === null || rec === void 0 ? void 0 : rec.detailsData) !== undefined ? rec.detailsData : rec); }; });
|
|
70202
70198
|
if (this.hideGroupedColumns && this._columns && this.groupingExpressions) {
|
|
70203
70199
|
this._setGroupColsVisibility(this.hideGroupedColumns);
|
|
70204
70200
|
}
|
|
@@ -70239,6 +70235,7 @@
|
|
|
70239
70235
|
IgxGridComponent.prototype.ngOnInit = function () {
|
|
70240
70236
|
var _this = this;
|
|
70241
70237
|
_super.prototype.ngOnInit.call(this);
|
|
70238
|
+
this.trackChanges = function (_, rec) { return ((rec === null || rec === void 0 ? void 0 : rec.detailsData) !== undefined ? rec.detailsData : rec); };
|
|
70242
70239
|
this.onGroupingDone.pipe(operators.takeUntil(this.destroy$)).subscribe(function (args) {
|
|
70243
70240
|
_this.crudService.endEdit(false);
|
|
70244
70241
|
_this.summaryService.updateSummaryCache(args);
|
|
@@ -87230,161 +87227,160 @@
|
|
|
87230
87227
|
exports["ɵbw"] = IgxComboAPIService;
|
|
87231
87228
|
exports["ɵbx"] = IgxComboDropDownComponent;
|
|
87232
87229
|
exports["ɵby"] = IgxComboItemComponent;
|
|
87233
|
-
exports["ɵbz"] =
|
|
87234
|
-
exports["ɵca"] =
|
|
87235
|
-
exports["ɵcb"] =
|
|
87236
|
-
exports["ɵcc"] =
|
|
87237
|
-
exports["ɵcd"] =
|
|
87238
|
-
exports["ɵce"] =
|
|
87239
|
-
exports["ɵcf"] =
|
|
87240
|
-
exports["ɵcg"] =
|
|
87241
|
-
exports["ɵch"] =
|
|
87242
|
-
exports["ɵci"] =
|
|
87243
|
-
exports["ɵcj"] =
|
|
87244
|
-
exports["ɵck"] =
|
|
87245
|
-
exports["ɵcl"] =
|
|
87246
|
-
exports["ɵcm"] =
|
|
87247
|
-
exports["ɵcn"] =
|
|
87248
|
-
exports["ɵco"] =
|
|
87249
|
-
exports["ɵcp"] =
|
|
87250
|
-
exports["ɵcq"] =
|
|
87251
|
-
exports["ɵcr"] =
|
|
87252
|
-
exports["ɵcs"] =
|
|
87253
|
-
exports["ɵct"] =
|
|
87254
|
-
exports["ɵcu"] =
|
|
87255
|
-
exports["ɵcv"] =
|
|
87256
|
-
exports["ɵcw"] =
|
|
87257
|
-
exports["ɵcx"] =
|
|
87258
|
-
exports["ɵcy"] =
|
|
87259
|
-
exports["ɵcz"] =
|
|
87230
|
+
exports["ɵbz"] = IgxComboFilteringPipe;
|
|
87231
|
+
exports["ɵca"] = IgxComboGroupingPipe;
|
|
87232
|
+
exports["ɵcb"] = IgxComboAddItemComponent;
|
|
87233
|
+
exports["ɵcc"] = PickerBaseDirective;
|
|
87234
|
+
exports["ɵcd"] = IgxCalendarContainerComponent;
|
|
87235
|
+
exports["ɵce"] = IgxCalendarContainerModule;
|
|
87236
|
+
exports["ɵcf"] = IgxDialogTitleDirective;
|
|
87237
|
+
exports["ɵcg"] = IgxDialogActionsDirective;
|
|
87238
|
+
exports["ɵch"] = IgxCellCrudState;
|
|
87239
|
+
exports["ɵci"] = IgxRowCrudState;
|
|
87240
|
+
exports["ɵcj"] = IgxRowAddCrudState;
|
|
87241
|
+
exports["ɵck"] = IgxGridCRUDService;
|
|
87242
|
+
exports["ɵcl"] = IgxColumnMovingService;
|
|
87243
|
+
exports["ɵcm"] = IgxExcelStyleCustomDialogComponent;
|
|
87244
|
+
exports["ɵcn"] = IgxExcelStyleDefaultExpressionComponent;
|
|
87245
|
+
exports["ɵco"] = IgxExcelStyleDateExpressionComponent;
|
|
87246
|
+
exports["ɵcp"] = HammerGesturesManager;
|
|
87247
|
+
exports["ɵcq"] = WatchChanges;
|
|
87248
|
+
exports["ɵcr"] = WatchColumnChanges;
|
|
87249
|
+
exports["ɵcs"] = notifyChanges;
|
|
87250
|
+
exports["ɵct"] = IgxNotificationsDirective;
|
|
87251
|
+
exports["ɵcu"] = IgxGridColumnResizerComponent;
|
|
87252
|
+
exports["ɵcv"] = IgxColumnResizerDirective;
|
|
87253
|
+
exports["ɵcw"] = IgxColumnResizingService;
|
|
87254
|
+
exports["ɵcx"] = IgxRowSelectorDirective;
|
|
87255
|
+
exports["ɵcy"] = IgxGroupByRowSelectorDirective;
|
|
87256
|
+
exports["ɵcz"] = IgxHeadSelectorDirective;
|
|
87260
87257
|
exports["ɵd"] = IgxGridSelectionService;
|
|
87261
|
-
exports["ɵda"] =
|
|
87262
|
-
exports["ɵdb"] =
|
|
87263
|
-
exports["ɵdc"] =
|
|
87264
|
-
exports["ɵdd"] =
|
|
87265
|
-
exports["ɵde"] =
|
|
87266
|
-
exports["ɵdf"] =
|
|
87267
|
-
exports["ɵdg"] =
|
|
87268
|
-
exports["ɵdh"] =
|
|
87269
|
-
exports["ɵdi"] =
|
|
87270
|
-
exports["ɵdj"] =
|
|
87271
|
-
exports["ɵdk"] =
|
|
87272
|
-
exports["ɵdl"] =
|
|
87273
|
-
exports["ɵdm"] =
|
|
87274
|
-
exports["ɵdn"] =
|
|
87275
|
-
exports["ɵdo"] =
|
|
87276
|
-
exports["ɵdp"] =
|
|
87277
|
-
exports["ɵdq"] =
|
|
87278
|
-
exports["ɵdr"] =
|
|
87279
|
-
exports["ɵds"] =
|
|
87280
|
-
exports["ɵdt"] =
|
|
87281
|
-
exports["ɵdu"] =
|
|
87282
|
-
exports["ɵdv"] =
|
|
87283
|
-
exports["ɵdw"] =
|
|
87284
|
-
exports["ɵdx"] =
|
|
87285
|
-
exports["ɵdy"] =
|
|
87286
|
-
exports["ɵdz"] =
|
|
87287
|
-
exports["ɵea"] =
|
|
87288
|
-
exports["ɵeb"] =
|
|
87289
|
-
exports["ɵec"] =
|
|
87290
|
-
exports["ɵed"] =
|
|
87291
|
-
exports["ɵee"] =
|
|
87292
|
-
exports["ɵef"] =
|
|
87293
|
-
exports["ɵeg"] =
|
|
87294
|
-
exports["ɵeh"] =
|
|
87295
|
-
exports["ɵei"] =
|
|
87296
|
-
exports["ɵej"] =
|
|
87297
|
-
exports["ɵek"] =
|
|
87298
|
-
exports["ɵel"] =
|
|
87299
|
-
exports["ɵem"] =
|
|
87300
|
-
exports["ɵen"] =
|
|
87301
|
-
exports["ɵeo"] =
|
|
87302
|
-
exports["ɵep"] =
|
|
87303
|
-
exports["ɵeq"] =
|
|
87304
|
-
exports["ɵer"] =
|
|
87305
|
-
exports["ɵes"] =
|
|
87306
|
-
exports["
|
|
87307
|
-
exports["ɵev"] =
|
|
87308
|
-
exports["ɵew"] =
|
|
87309
|
-
exports["ɵex"] =
|
|
87310
|
-
exports["ɵey"] =
|
|
87311
|
-
exports["ɵez"] =
|
|
87258
|
+
exports["ɵda"] = IgxRowDragDirective;
|
|
87259
|
+
exports["ɵdb"] = IgxDragIndicatorIconDirective;
|
|
87260
|
+
exports["ɵdc"] = IgxRowDragGhostDirective;
|
|
87261
|
+
exports["ɵdd"] = IgxRowDragModule;
|
|
87262
|
+
exports["ɵde"] = IgxGridHeaderRowComponent;
|
|
87263
|
+
exports["ɵdf"] = IgxGridHeaderGroupComponent;
|
|
87264
|
+
exports["ɵdg"] = IgxGridHeaderComponent;
|
|
87265
|
+
exports["ɵdh"] = IgxGridFilteringCellComponent;
|
|
87266
|
+
exports["ɵdi"] = IgxFilteringService;
|
|
87267
|
+
exports["ɵdj"] = IgxGridFilteringRowComponent;
|
|
87268
|
+
exports["ɵdk"] = IgxGridGroupByAreaComponent;
|
|
87269
|
+
exports["ɵdl"] = IgxGroupByAreaDirective;
|
|
87270
|
+
exports["ɵdm"] = IgxGroupByMetaPipe;
|
|
87271
|
+
exports["ɵdn"] = IgxTemplateOutletDirective;
|
|
87272
|
+
exports["ɵdo"] = IgxTemplateOutletModule;
|
|
87273
|
+
exports["ɵdp"] = IgxRowEditTemplateDirective;
|
|
87274
|
+
exports["ɵdq"] = IgxRowEditTextDirective;
|
|
87275
|
+
exports["ɵdr"] = IgxRowAddTextDirective;
|
|
87276
|
+
exports["ɵds"] = IgxRowEditActionsDirective;
|
|
87277
|
+
exports["ɵdt"] = IgxRowEditTabStopDirective;
|
|
87278
|
+
exports["ɵdu"] = IgxSummaryRowComponent;
|
|
87279
|
+
exports["ɵdv"] = IgxSummaryCellComponent;
|
|
87280
|
+
exports["ɵdw"] = IgxRowDirective;
|
|
87281
|
+
exports["ɵdx"] = IgxGridNavigationService;
|
|
87282
|
+
exports["ɵdy"] = IgxGridSummaryService;
|
|
87283
|
+
exports["ɵdz"] = ConnectedPositioningStrategy;
|
|
87284
|
+
exports["ɵea"] = IgxGridGroupByRowComponent;
|
|
87285
|
+
exports["ɵeb"] = IgxTreeGridSelectionService;
|
|
87286
|
+
exports["ɵec"] = IgxTreeGridGroupByAreaComponent;
|
|
87287
|
+
exports["ɵed"] = IgxRowLoadingIndicatorTemplateDirective;
|
|
87288
|
+
exports["ɵee"] = IgxHierarchicalGridNavigationService;
|
|
87289
|
+
exports["ɵef"] = IgxChildGridRowComponent;
|
|
87290
|
+
exports["ɵeg"] = IgxGridCellComponent;
|
|
87291
|
+
exports["ɵeh"] = IgxGridFooterComponent;
|
|
87292
|
+
exports["ɵei"] = IgxAdvancedFilteringDialogComponent;
|
|
87293
|
+
exports["ɵej"] = IgxColumnHidingDirective;
|
|
87294
|
+
exports["ɵek"] = IgxColumnPinningDirective;
|
|
87295
|
+
exports["ɵel"] = IgxGridSharedModules;
|
|
87296
|
+
exports["ɵem"] = IgxProcessBarTextTemplateDirective;
|
|
87297
|
+
exports["ɵen"] = IgxProgressBarGradientDirective;
|
|
87298
|
+
exports["ɵeo"] = DIR_DOCUMENT_FACTORY;
|
|
87299
|
+
exports["ɵep"] = DIR_DOCUMENT;
|
|
87300
|
+
exports["ɵeq"] = IgxDirectionality;
|
|
87301
|
+
exports["ɵer"] = IgxSelectItemNavigationDirective;
|
|
87302
|
+
exports["ɵes"] = IGX_TIME_PICKER_COMPONENT;
|
|
87303
|
+
exports["ɵeu"] = IgxItemListDirective;
|
|
87304
|
+
exports["ɵev"] = IgxTimeItemDirective;
|
|
87305
|
+
exports["ɵew"] = IgxTimePickerTemplateDirective;
|
|
87306
|
+
exports["ɵex"] = IgxTimePickerActionsDirective;
|
|
87307
|
+
exports["ɵey"] = TimeFormatPipe;
|
|
87308
|
+
exports["ɵez"] = TimeItemPipe;
|
|
87312
87309
|
exports["ɵf"] = IGX_EXPANSION_PANEL_COMPONENT;
|
|
87313
|
-
exports["ɵfa"] =
|
|
87314
|
-
exports["ɵfb"] =
|
|
87315
|
-
exports["ɵfc"] =
|
|
87316
|
-
exports["ɵfd"] =
|
|
87317
|
-
exports["ɵfe"] =
|
|
87318
|
-
exports["ɵff"] =
|
|
87319
|
-
exports["ɵfg"] =
|
|
87320
|
-
exports["ɵfh"] =
|
|
87321
|
-
exports["ɵfi"] =
|
|
87322
|
-
exports["ɵfj"] =
|
|
87323
|
-
exports["ɵfk"] =
|
|
87324
|
-
exports["ɵfl"] =
|
|
87325
|
-
exports["ɵfm"] =
|
|
87326
|
-
exports["ɵfn"] =
|
|
87327
|
-
exports["ɵfo"] =
|
|
87328
|
-
exports["ɵfp"] =
|
|
87329
|
-
exports["ɵfq"] =
|
|
87330
|
-
exports["ɵfr"] =
|
|
87331
|
-
exports["ɵfs"] =
|
|
87332
|
-
exports["ɵft"] =
|
|
87333
|
-
exports["ɵfu"] =
|
|
87334
|
-
exports["ɵfv"] =
|
|
87335
|
-
exports["ɵfw"] =
|
|
87336
|
-
exports["ɵfx"] =
|
|
87337
|
-
exports["ɵfy"] =
|
|
87338
|
-
exports["ɵfz"] =
|
|
87310
|
+
exports["ɵfa"] = IgxGridPipesModule;
|
|
87311
|
+
exports["ɵfb"] = IgxGridCellStyleClassesPipe;
|
|
87312
|
+
exports["ɵfc"] = IgxGridCellStylesPipe;
|
|
87313
|
+
exports["ɵfd"] = IgxGridRowClassesPipe;
|
|
87314
|
+
exports["ɵfe"] = IgxGridRowStylesPipe;
|
|
87315
|
+
exports["ɵff"] = IgxGridNotGroupedPipe;
|
|
87316
|
+
exports["ɵfg"] = IgxGridTopLevelColumns;
|
|
87317
|
+
exports["ɵfh"] = IgxGridFilterConditionPipe;
|
|
87318
|
+
exports["ɵfi"] = IgxGridTransactionPipe;
|
|
87319
|
+
exports["ɵfj"] = IgxGridPaginatorOptionsPipe;
|
|
87320
|
+
exports["ɵfk"] = IgxHasVisibleColumnsPipe;
|
|
87321
|
+
exports["ɵfl"] = IgxGridRowPinningPipe;
|
|
87322
|
+
exports["ɵfm"] = IgxColumnActionEnabledPipe;
|
|
87323
|
+
exports["ɵfn"] = IgxFilterActionColumnsPipe;
|
|
87324
|
+
exports["ɵfo"] = IgxSortActionColumnsPipe;
|
|
87325
|
+
exports["ɵfp"] = IgxGridDataMapperPipe;
|
|
87326
|
+
exports["ɵfq"] = IgxStringReplacePipe;
|
|
87327
|
+
exports["ɵfr"] = IgxGridTransactionStatePipe;
|
|
87328
|
+
exports["ɵfs"] = IgxColumnFormatterPipe;
|
|
87329
|
+
exports["ɵft"] = IgxSummaryFormatterPipe;
|
|
87330
|
+
exports["ɵfu"] = IgxGridAddRowPipe;
|
|
87331
|
+
exports["ɵfv"] = IgxHeaderGroupWidthPipe;
|
|
87332
|
+
exports["ɵfw"] = IgxHeaderGroupStylePipe;
|
|
87333
|
+
exports["ɵfx"] = IgxGridColumnModule;
|
|
87334
|
+
exports["ɵfy"] = IgxGridHeadersModule;
|
|
87335
|
+
exports["ɵfz"] = SortingIndexPipe;
|
|
87339
87336
|
exports["ɵg"] = IGX_TREE_COMPONENT;
|
|
87340
|
-
exports["ɵga"] =
|
|
87341
|
-
exports["ɵgb"] =
|
|
87342
|
-
exports["ɵgc"] =
|
|
87343
|
-
exports["ɵgd"] =
|
|
87344
|
-
exports["ɵge"] =
|
|
87345
|
-
exports["ɵgf"] =
|
|
87346
|
-
exports["ɵgg"] =
|
|
87347
|
-
exports["ɵgh"] =
|
|
87348
|
-
exports["ɵgi"] =
|
|
87349
|
-
exports["ɵgj"] =
|
|
87350
|
-
exports["ɵgk"] =
|
|
87351
|
-
exports["ɵgl"] =
|
|
87352
|
-
exports["ɵgm"] =
|
|
87353
|
-
exports["ɵgn"] =
|
|
87354
|
-
exports["ɵgo"] =
|
|
87355
|
-
exports["ɵgp"] =
|
|
87356
|
-
exports["ɵgq"] =
|
|
87357
|
-
exports["ɵgr"] =
|
|
87358
|
-
exports["ɵgs"] =
|
|
87359
|
-
exports["ɵgt"] =
|
|
87360
|
-
exports["ɵgu"] =
|
|
87361
|
-
exports["ɵgv"] =
|
|
87362
|
-
exports["ɵgw"] =
|
|
87363
|
-
exports["ɵgx"] =
|
|
87364
|
-
exports["ɵgy"] =
|
|
87365
|
-
exports["ɵgz"] =
|
|
87337
|
+
exports["ɵga"] = IgxGridFilteringModule;
|
|
87338
|
+
exports["ɵgb"] = IgxColumnMovingModule;
|
|
87339
|
+
exports["ɵgc"] = IgxColumnMovingDropDirective;
|
|
87340
|
+
exports["ɵgd"] = IgxColumnMovingDragDirective;
|
|
87341
|
+
exports["ɵge"] = IgxGridResizingModule;
|
|
87342
|
+
exports["ɵgf"] = IgxResizeHandleDirective;
|
|
87343
|
+
exports["ɵgg"] = IgxGridExcelStyleFilteringModule;
|
|
87344
|
+
exports["ɵgh"] = IgxGridSelectionModule;
|
|
87345
|
+
exports["ɵgi"] = IgxGridDragSelectDirective;
|
|
87346
|
+
exports["ɵgj"] = IgxGridSummaryModule;
|
|
87347
|
+
exports["ɵgk"] = IgxSummaryDataPipe;
|
|
87348
|
+
exports["ɵgl"] = IgxGridToolbarModule;
|
|
87349
|
+
exports["ɵgm"] = BaseToolbarDirective;
|
|
87350
|
+
exports["ɵgn"] = BaseToolbarColumnActionsDirective;
|
|
87351
|
+
exports["ɵgo"] = IgxGridRowComponent;
|
|
87352
|
+
exports["ɵgp"] = IgxGridSortingPipe;
|
|
87353
|
+
exports["ɵgq"] = IgxGridGroupingPipe;
|
|
87354
|
+
exports["ɵgr"] = IgxGridPagingPipe;
|
|
87355
|
+
exports["ɵgs"] = IgxGridFilteringPipe;
|
|
87356
|
+
exports["ɵgt"] = IgxGridSummaryPipe;
|
|
87357
|
+
exports["ɵgu"] = IgxGridDetailsPipe;
|
|
87358
|
+
exports["ɵgv"] = IgxGridExpandableCellComponent;
|
|
87359
|
+
exports["ɵgw"] = IgxTreeGridRowComponent;
|
|
87360
|
+
exports["ɵgx"] = IgxTreeGridCellComponent;
|
|
87361
|
+
exports["ɵgy"] = IgxTreeGridHierarchizingPipe;
|
|
87362
|
+
exports["ɵgz"] = IgxTreeGridFlatteningPipe;
|
|
87366
87363
|
exports["ɵh"] = IGX_TREE_NODE_COMPONENT;
|
|
87367
|
-
exports["ɵha"] =
|
|
87368
|
-
exports["ɵhb"] =
|
|
87369
|
-
exports["ɵhc"] =
|
|
87370
|
-
exports["ɵhd"] =
|
|
87371
|
-
exports["ɵhe"] =
|
|
87372
|
-
exports["ɵhf"] =
|
|
87373
|
-
exports["ɵhg"] =
|
|
87374
|
-
exports["ɵhh"] =
|
|
87375
|
-
exports["ɵhi"] =
|
|
87376
|
-
exports["ɵhj"] =
|
|
87377
|
-
exports["ɵhk"] =
|
|
87378
|
-
exports["ɵhl"] =
|
|
87379
|
-
exports["ɵhm"] =
|
|
87380
|
-
exports["ɵhn"] =
|
|
87381
|
-
exports["ɵho"] =
|
|
87382
|
-
exports["ɵhp"] =
|
|
87383
|
-
exports["ɵhq"] =
|
|
87384
|
-
exports["ɵhr"] =
|
|
87385
|
-
exports["ɵhs"] =
|
|
87386
|
-
exports["ɵht"] =
|
|
87387
|
-
exports["ɵhu"] = IgxTreeNavigationService;
|
|
87364
|
+
exports["ɵha"] = IgxTreeGridSortingPipe;
|
|
87365
|
+
exports["ɵhb"] = IgxTreeGridPagingPipe;
|
|
87366
|
+
exports["ɵhc"] = IgxTreeGridTransactionPipe;
|
|
87367
|
+
exports["ɵhd"] = IgxTreeGridNormalizeRecordsPipe;
|
|
87368
|
+
exports["ɵhe"] = IgxTreeGridAddRowPipe;
|
|
87369
|
+
exports["ɵhf"] = IgxTreeGridFilteringPipe;
|
|
87370
|
+
exports["ɵhg"] = IgxTreeGridSummaryPipe;
|
|
87371
|
+
exports["ɵhh"] = IgxHierarchicalRowComponent;
|
|
87372
|
+
exports["ɵhi"] = IgxHierarchicalGridCellComponent;
|
|
87373
|
+
exports["ɵhj"] = IgxSliderThumbComponent;
|
|
87374
|
+
exports["ɵhk"] = IgxThumbLabelComponent;
|
|
87375
|
+
exports["ɵhl"] = IgxTicksComponent;
|
|
87376
|
+
exports["ɵhm"] = IgxTickLabelsPipe;
|
|
87377
|
+
exports["ɵhn"] = IgxTabsBase;
|
|
87378
|
+
exports["ɵho"] = IgxTabHeaderBase;
|
|
87379
|
+
exports["ɵhp"] = IgxTabContentBase;
|
|
87380
|
+
exports["ɵhq"] = IgxSplitBarComponent;
|
|
87381
|
+
exports["ɵhr"] = IgxTreeService;
|
|
87382
|
+
exports["ɵhs"] = IgxTreeSelectionService;
|
|
87383
|
+
exports["ɵht"] = IgxTreeNavigationService;
|
|
87388
87384
|
exports["ɵi"] = PlatformUtil;
|
|
87389
87385
|
exports["ɵl"] = IgxInputGroupBase;
|
|
87390
87386
|
exports["ɵm"] = IgxSelectionAPIService;
|