igniteui-angular 15.1.1 → 15.1.2
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/chips/chip.component.mjs +11 -2
- package/esm2020/lib/chips/chips-area.component.mjs +6 -6
- package/esm2020/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +8 -5
- package/esm2020/lib/query-builder/query-builder.component.mjs +2 -2
- package/fesm2015/igniteui-angular.mjs +22 -10
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +22 -10
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/chips/chip.component.d.ts +9 -2
- package/lib/core/styles/README.md +1 -1
- package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +4 -0
- package/package.json +2 -2
- package/src/lib/core/styles/README.md +1 -1
|
@@ -36028,6 +36028,11 @@ class IgxChipComponent extends DisplayDensityBase {
|
|
|
36028
36028
|
* @internal
|
|
36029
36029
|
*/
|
|
36030
36030
|
this.hideBaseElement = false;
|
|
36031
|
+
/**
|
|
36032
|
+
* @hidden
|
|
36033
|
+
* @internal
|
|
36034
|
+
*/
|
|
36035
|
+
this.destroy$ = new Subject();
|
|
36031
36036
|
this._tabIndex = null;
|
|
36032
36037
|
this._selected = false;
|
|
36033
36038
|
this._selectedItemClass = 'igx-chip__item--selected';
|
|
@@ -36305,6 +36310,10 @@ class IgxChipComponent extends DisplayDensityBase {
|
|
|
36305
36310
|
}
|
|
36306
36311
|
}
|
|
36307
36312
|
}
|
|
36313
|
+
ngOnDestroy() {
|
|
36314
|
+
this.destroy$.next();
|
|
36315
|
+
this.destroy$.complete();
|
|
36316
|
+
}
|
|
36308
36317
|
}
|
|
36309
36318
|
IgxChipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: IgxChipComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DisplayDensityToken, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
36310
36319
|
IgxChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.0", type: IgxChipComponent, selector: "igx-chip", inputs: { id: "id", tabIndex: "tabIndex", data: "data", draggable: "draggable", animateOnRelease: "animateOnRelease", hideBaseOnDrag: "hideBaseOnDrag", removable: "removable", removeIcon: "removeIcon", selectable: "selectable", selectIcon: "selectIcon", disabled: "disabled", selected: "selected", color: "color", resourceStrings: "resourceStrings" }, outputs: { selectedChange: "selectedChange", moveStart: "moveStart", moveEnd: "moveEnd", remove: "remove", chipClick: "chipClick", selectedChanging: "selectedChanging", selectedChanged: "selectedChanged", keyDown: "keyDown", dragEnter: "dragEnter", dragLeave: "dragLeave", dragOver: "dragOver", dragDrop: "dragDrop" }, host: { listeners: { "keydown": "keyEvent($event)" }, properties: { "attr.id": "this.id", "attr.role": "this.role", "attr.tabIndex": "this.tabIndex", "attr.aria-selected": "this.selected", "class": "this.hostClass" } }, viewQueries: [{ propertyName: "dragDirective", first: true, predicate: ["chipArea"], descendants: true, read: IgxDragDirective, static: true }, { propertyName: "chipArea", first: true, predicate: ["chipArea"], descendants: true, read: ElementRef, static: true }, { propertyName: "selectContainer", first: true, predicate: ["selectContainer"], descendants: true, read: ElementRef, static: true }, { propertyName: "defaultRemoveIcon", first: true, predicate: ["defaultRemoveIcon"], descendants: true, read: TemplateRef, static: true }, { propertyName: "defaultSelectIcon", first: true, predicate: ["defaultSelectIcon"], descendants: true, read: TemplateRef, static: true }], usesInheritance: true, ngImport: i0, template: "<div #chipArea class=\"igx-chip__item\"\n [igxDrag]=\"{chip: this}\"\n [style.visibility]='hideBaseElement ? \"hidden\" : \"visible\"'\n [ghostClass]=\"ghostClass\"\n (dragStart)=\"onChipDragStart($event)\"\n (ghostCreate)=\"onChipGhostCreate()\"\n (ghostDestroy)=\"onChipGhostDestroy()\"\n (dragEnd)=\"onChipDragEnd()\"\n (transitioned)=\"onChipMoveEnd($event)\"\n (dragClick)=\"onChipDragClicked($event)\"\n igxDrop\n (enter)=\"onChipDragEnterHandler($event)\"\n (leave)= \"onChipDragLeaveHandler($event)\"\n (over)=\"onChipOverHandler($event)\"\n (dropped)=\"onChipDrop($event)\">\n\n <div #selectContainer [ngClass]=\"selectClass(selected)\">\n <ng-container *ngTemplateOutlet=\"selectIconTemplate\"></ng-container>\n </div>\n\n <ng-content select=\"igx-prefix,[igxPrefix]\"></ng-content>\n\n <div class=\"igx-chip__content\">\n <ng-content></ng-content>\n </div>\n\n <ng-content select=\"igx-suffix,[igxSuffix]\"></ng-content>\n\n <div class=\"igx-chip__remove\" *ngIf=\"removable\"\n [attr.tabIndex]=\"tabIndex\"\n (keydown)=\"onRemoveBtnKeyDown($event)\"\n (pointerdown)=\"onRemoveMouseDown($event)\"\n (mousedown)=\"onRemoveMouseDown($event)\"\n (click)=\"onRemoveClick($event)\"\n (touchmove)=\"onRemoveTouchMove()\"\n (touchend)=\"onRemoveTouchEnd($event)\">\n <ng-container *ngTemplateOutlet=\"removeButtonTemplate\"></ng-container>\n </div>\n</div>\n\n<ng-template #defaultSelectIcon>\n <igx-icon [attr.aria-label]=\"resourceStrings.igx_chip_select\">done</igx-icon>\n</ng-template>\n\n<ng-template #defaultRemoveIcon>\n <igx-icon [attr.aria-label]=\"resourceStrings.igx_chip_remove\">cancel</igx-icon>\n</ng-template>\n", dependencies: [{ kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: IgxIconComponent, selector: "igx-icon", inputs: ["family", "active", "name"] }, { kind: "directive", type: IgxDragDirective, selector: "[igxDrag]", inputs: ["igxDrag", "dragTolerance", "dragDirection", "dragChannel", "ghost", "ghostClass", "ghostTemplate", "ghostHost", "scrollContainer", "ghostOffsetX", "ghostOffsetY"], outputs: ["dragStart", "dragMove", "dragEnd", "dragClick", "ghostCreate", "ghostDestroy", "transitioned"], exportAs: ["drag"] }, { kind: "directive", type: IgxDropDirective, selector: "[igxDrop]", inputs: ["igxDrop", "dropChannel", "dropStrategy"], outputs: ["enter", "over", "leave", "dropped"], exportAs: ["drop"] }] });
|
|
@@ -36528,20 +36537,20 @@ class IgxChipsAreaComponent {
|
|
|
36528
36537
|
const changes = this._differ.diff(this.chipsList.toArray());
|
|
36529
36538
|
if (changes) {
|
|
36530
36539
|
changes.forEachAddedItem((addedChip) => {
|
|
36531
|
-
addedChip.item.moveStart.pipe(takeUntil(
|
|
36540
|
+
addedChip.item.moveStart.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36532
36541
|
this.onChipMoveStart(args);
|
|
36533
36542
|
});
|
|
36534
|
-
addedChip.item.moveEnd.pipe(takeUntil(
|
|
36543
|
+
addedChip.item.moveEnd.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36535
36544
|
this.onChipMoveEnd(args);
|
|
36536
36545
|
});
|
|
36537
|
-
addedChip.item.dragEnter.pipe(takeUntil(
|
|
36546
|
+
addedChip.item.dragEnter.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36538
36547
|
this.onChipDragEnter(args);
|
|
36539
36548
|
});
|
|
36540
|
-
addedChip.item.keyDown.pipe(takeUntil(
|
|
36549
|
+
addedChip.item.keyDown.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36541
36550
|
this.onChipKeyDown(args);
|
|
36542
36551
|
});
|
|
36543
36552
|
if (addedChip.item.selectable) {
|
|
36544
|
-
addedChip.item.selectedChanging.pipe(takeUntil(
|
|
36553
|
+
addedChip.item.selectedChanging.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36545
36554
|
this.onChipSelectionChange(args);
|
|
36546
36555
|
});
|
|
36547
36556
|
}
|
|
@@ -57066,8 +57075,8 @@ class IgxQueryBuilderComponent extends DisplayDensityBase {
|
|
|
57066
57075
|
const index = parent.children.indexOf(firstExpression);
|
|
57067
57076
|
parent.children.splice(index, 0, groupItem);
|
|
57068
57077
|
for (const expr of this.selectedExpressions) {
|
|
57069
|
-
this.deleteItem(expr);
|
|
57070
57078
|
groupItem.children.push(expr);
|
|
57079
|
+
this.deleteItem(expr);
|
|
57071
57080
|
expr.parent = groupItem;
|
|
57072
57081
|
}
|
|
57073
57082
|
this.clearSelection();
|
|
@@ -83051,6 +83060,9 @@ class IgxChildGridRowComponent {
|
|
|
83051
83060
|
* @hidden
|
|
83052
83061
|
*/
|
|
83053
83062
|
ngOnInit() {
|
|
83063
|
+
const ref = this.container.createComponent(IgxHierarchicalGridComponent, { injector: this.container.injector });
|
|
83064
|
+
this.hGrid = ref.instance;
|
|
83065
|
+
this.hGrid.data = this.data.childGridsData[this.layout.key];
|
|
83054
83066
|
this.layout.layoutChange.subscribe((ch) => {
|
|
83055
83067
|
this._handleLayoutChanges(ch);
|
|
83056
83068
|
});
|
|
@@ -83116,10 +83128,10 @@ class IgxChildGridRowComponent {
|
|
|
83116
83128
|
}
|
|
83117
83129
|
}
|
|
83118
83130
|
IgxChildGridRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: IgxChildGridRowComponent, deps: [{ token: IGX_GRID_SERVICE_BASE }, { token: i0.ElementRef }, { token: i0.ComponentFactoryResolver }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
83119
|
-
IgxChildGridRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.0", type: IgxChildGridRowComponent, selector: "igx-child-grid-row", inputs: { layout: "layout", parentGridID: "parentGridID", data: "data", index: "index" }, host: { properties: { "attr.aria-level": "this.level" } }, viewQueries: [{ propertyName: "
|
|
83131
|
+
IgxChildGridRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.0", type: IgxChildGridRowComponent, selector: "igx-child-grid-row", inputs: { layout: "layout", parentGridID: "parentGridID", data: "data", index: "index" }, host: { properties: { "attr.aria-level": "this.level" } }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<div class=\"igx-grid__hierarchical-indent\" [ngClass]=\"{'igx-grid__hierarchical-indent--scroll': parentHasScroll}\">\n <ng-container #container></ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
83120
83132
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: IgxChildGridRowComponent, decorators: [{
|
|
83121
83133
|
type: Component,
|
|
83122
|
-
args: [{ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'igx-child-grid-row', template: "<div class=\"igx-grid__hierarchical-indent\" [ngClass]=\"{'igx-grid__hierarchical-indent--scroll': parentHasScroll}\">\n <
|
|
83134
|
+
args: [{ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'igx-child-grid-row', template: "<div class=\"igx-grid__hierarchical-indent\" [ngClass]=\"{'igx-grid__hierarchical-indent--scroll': parentHasScroll}\">\n <ng-container #container></ng-container>\n</div>\n" }]
|
|
83123
83135
|
}], ctorParameters: function () {
|
|
83124
83136
|
return [{ type: IgxHierarchicalGridAPIService, decorators: [{
|
|
83125
83137
|
type: Inject,
|
|
@@ -83133,9 +83145,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImpor
|
|
|
83133
83145
|
type: Input
|
|
83134
83146
|
}], index: [{
|
|
83135
83147
|
type: Input
|
|
83136
|
-
}],
|
|
83148
|
+
}], container: [{
|
|
83137
83149
|
type: ViewChild,
|
|
83138
|
-
args: ['
|
|
83150
|
+
args: ['container', { read: ViewContainerRef, static: true }]
|
|
83139
83151
|
}], level: [{
|
|
83140
83152
|
type: HostBinding,
|
|
83141
83153
|
args: ['attr.aria-level']
|