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
|
@@ -36417,6 +36417,11 @@ class IgxChipComponent extends DisplayDensityBase {
|
|
|
36417
36417
|
* @internal
|
|
36418
36418
|
*/
|
|
36419
36419
|
this.hideBaseElement = false;
|
|
36420
|
+
/**
|
|
36421
|
+
* @hidden
|
|
36422
|
+
* @internal
|
|
36423
|
+
*/
|
|
36424
|
+
this.destroy$ = new Subject();
|
|
36420
36425
|
this._tabIndex = null;
|
|
36421
36426
|
this._selected = false;
|
|
36422
36427
|
this._selectedItemClass = 'igx-chip__item--selected';
|
|
@@ -36690,6 +36695,10 @@ class IgxChipComponent extends DisplayDensityBase {
|
|
|
36690
36695
|
}
|
|
36691
36696
|
}
|
|
36692
36697
|
}
|
|
36698
|
+
ngOnDestroy() {
|
|
36699
|
+
this.destroy$.next();
|
|
36700
|
+
this.destroy$.complete();
|
|
36701
|
+
}
|
|
36693
36702
|
}
|
|
36694
36703
|
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 });
|
|
36695
36704
|
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"] }] });
|
|
@@ -36911,20 +36920,20 @@ class IgxChipsAreaComponent {
|
|
|
36911
36920
|
const changes = this._differ.diff(this.chipsList.toArray());
|
|
36912
36921
|
if (changes) {
|
|
36913
36922
|
changes.forEachAddedItem((addedChip) => {
|
|
36914
|
-
addedChip.item.moveStart.pipe(takeUntil(
|
|
36923
|
+
addedChip.item.moveStart.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36915
36924
|
this.onChipMoveStart(args);
|
|
36916
36925
|
});
|
|
36917
|
-
addedChip.item.moveEnd.pipe(takeUntil(
|
|
36926
|
+
addedChip.item.moveEnd.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36918
36927
|
this.onChipMoveEnd(args);
|
|
36919
36928
|
});
|
|
36920
|
-
addedChip.item.dragEnter.pipe(takeUntil(
|
|
36929
|
+
addedChip.item.dragEnter.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36921
36930
|
this.onChipDragEnter(args);
|
|
36922
36931
|
});
|
|
36923
|
-
addedChip.item.keyDown.pipe(takeUntil(
|
|
36932
|
+
addedChip.item.keyDown.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36924
36933
|
this.onChipKeyDown(args);
|
|
36925
36934
|
});
|
|
36926
36935
|
if (addedChip.item.selectable) {
|
|
36927
|
-
addedChip.item.selectedChanging.pipe(takeUntil(
|
|
36936
|
+
addedChip.item.selectedChanging.pipe(takeUntil(addedChip.item.destroy$)).subscribe((args) => {
|
|
36928
36937
|
this.onChipSelectionChange(args);
|
|
36929
36938
|
});
|
|
36930
36939
|
}
|
|
@@ -57315,8 +57324,8 @@ class IgxQueryBuilderComponent extends DisplayDensityBase {
|
|
|
57315
57324
|
const index = parent.children.indexOf(firstExpression);
|
|
57316
57325
|
parent.children.splice(index, 0, groupItem);
|
|
57317
57326
|
for (const expr of this.selectedExpressions) {
|
|
57318
|
-
this.deleteItem(expr);
|
|
57319
57327
|
groupItem.children.push(expr);
|
|
57328
|
+
this.deleteItem(expr);
|
|
57320
57329
|
expr.parent = groupItem;
|
|
57321
57330
|
}
|
|
57322
57331
|
this.clearSelection();
|
|
@@ -83128,6 +83137,9 @@ class IgxChildGridRowComponent {
|
|
|
83128
83137
|
* @hidden
|
|
83129
83138
|
*/
|
|
83130
83139
|
ngOnInit() {
|
|
83140
|
+
const ref = this.container.createComponent(IgxHierarchicalGridComponent, { injector: this.container.injector });
|
|
83141
|
+
this.hGrid = ref.instance;
|
|
83142
|
+
this.hGrid.data = this.data.childGridsData[this.layout.key];
|
|
83131
83143
|
this.layout.layoutChange.subscribe((ch) => {
|
|
83132
83144
|
this._handleLayoutChanges(ch);
|
|
83133
83145
|
});
|
|
@@ -83193,10 +83205,10 @@ class IgxChildGridRowComponent {
|
|
|
83193
83205
|
}
|
|
83194
83206
|
}
|
|
83195
83207
|
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 });
|
|
83196
|
-
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: "
|
|
83208
|
+
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 });
|
|
83197
83209
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: IgxChildGridRowComponent, decorators: [{
|
|
83198
83210
|
type: Component,
|
|
83199
|
-
args: [{ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'igx-child-grid-row', template: "<div class=\"igx-grid__hierarchical-indent\" [ngClass]=\"{'igx-grid__hierarchical-indent--scroll': parentHasScroll}\">\n <
|
|
83211
|
+
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" }]
|
|
83200
83212
|
}], ctorParameters: function () { return [{ type: IgxHierarchicalGridAPIService, decorators: [{
|
|
83201
83213
|
type: Inject,
|
|
83202
83214
|
args: [IGX_GRID_SERVICE_BASE]
|
|
@@ -83208,9 +83220,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImpor
|
|
|
83208
83220
|
type: Input
|
|
83209
83221
|
}], index: [{
|
|
83210
83222
|
type: Input
|
|
83211
|
-
}],
|
|
83223
|
+
}], container: [{
|
|
83212
83224
|
type: ViewChild,
|
|
83213
|
-
args: ['
|
|
83225
|
+
args: ['container', { read: ViewContainerRef, static: true }]
|
|
83214
83226
|
}], level: [{
|
|
83215
83227
|
type: HostBinding,
|
|
83216
83228
|
args: ['attr.aria-level']
|