igniteui-angular 15.1.0 → 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/filtering/base/grid-filtering-row.component.mjs +5 -5
- package/esm2020/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +8 -5
- package/esm2020/lib/query-builder/query-builder.component.mjs +2 -2
- package/esm2020/lib/services/excel/excel-files.mjs +2 -2
- package/esm2020/lib/services/exporter-common/base-export-service.mjs +6 -3
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +2 -8
- package/fesm2015/igniteui-angular.mjs +33 -24
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +33 -24
- 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
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, ElementRef, Renderer2, TemplateRef } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, ElementRef, Renderer2, TemplateRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { IDisplayDensityOptions, DisplayDensityBase } from '../core/displayDensity';
|
|
3
3
|
import { IgxDragDirective, IDragBaseEventArgs, IDragStartEventArgs, IDropBaseEventArgs, IDropDroppedEventArgs } from '../directives/drag-drop/drag-drop.directive';
|
|
4
4
|
import { IBaseEventArgs } from '../core/utils';
|
|
5
5
|
import { IChipResourceStrings } from '../core/i18n/chip-resources';
|
|
6
|
+
import { Subject } from 'rxjs';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export interface IBaseChipEventArgs extends IBaseEventArgs {
|
|
8
9
|
originalEvent: IDragBaseEventArgs | IDropBaseEventArgs | KeyboardEvent | MouseEvent | TouchEvent;
|
|
@@ -45,7 +46,7 @@ export interface IChipSelectEventArgs extends IBaseChipEventArgs {
|
|
|
45
46
|
* </igx-chip>
|
|
46
47
|
* ```
|
|
47
48
|
*/
|
|
48
|
-
export declare class IgxChipComponent extends DisplayDensityBase {
|
|
49
|
+
export declare class IgxChipComponent extends DisplayDensityBase implements OnDestroy {
|
|
49
50
|
cdr: ChangeDetectorRef;
|
|
50
51
|
private ref;
|
|
51
52
|
private renderer;
|
|
@@ -403,6 +404,11 @@ export declare class IgxChipComponent extends DisplayDensityBase {
|
|
|
403
404
|
* @internal
|
|
404
405
|
*/
|
|
405
406
|
hideBaseElement: boolean;
|
|
407
|
+
/**
|
|
408
|
+
* @hidden
|
|
409
|
+
* @internal
|
|
410
|
+
*/
|
|
411
|
+
destroy$: Subject<unknown>;
|
|
406
412
|
protected _tabIndex: any;
|
|
407
413
|
protected _selected: boolean;
|
|
408
414
|
protected _selectedItemClass: string;
|
|
@@ -498,6 +504,7 @@ export declare class IgxChipComponent extends DisplayDensityBase {
|
|
|
498
504
|
*/
|
|
499
505
|
onChipOverHandler(event: IDropBaseEventArgs): void;
|
|
500
506
|
protected changeSelection(newValue: boolean, srcEvent?: any): void;
|
|
507
|
+
ngOnDestroy(): void;
|
|
501
508
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxChipComponent, [null, null, null, { optional: true; }]>;
|
|
502
509
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxChipComponent, "igx-chip", never, { "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"; }, { "selectedChange": "selectedChange"; "moveStart": "moveStart"; "moveEnd": "moveEnd"; "remove": "remove"; "chipClick": "chipClick"; "selectedChanging": "selectedChanging"; "selectedChanged": "selectedChanged"; "keyDown": "keyDown"; "dragEnter": "dragEnter"; "dragLeave": "dragLeave"; "dragOver": "dragOver"; "dragDrop": "dragDrop"; }, never, ["igx-prefix,[igxPrefix]", "*", "igx-suffix,[igxSuffix]"], false, never>;
|
|
503
510
|
}
|
|
@@ -33,7 +33,7 @@ Learn how to create themes:
|
|
|
33
33
|
* [Component Themes](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/component-themes.html)
|
|
34
34
|
|
|
35
35
|
Learn how to create a component schema:
|
|
36
|
-
* [Schemas](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/schemas
|
|
36
|
+
* [Schemas](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/sass/schemas)
|
|
37
37
|
|
|
38
38
|
Learn how to build color palettes:
|
|
39
39
|
* [Palettes](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/palette.html)
|
|
@@ -44,6 +44,10 @@ export declare class IgxChildGridRowComponent implements AfterViewInit, OnInit {
|
|
|
44
44
|
* ```
|
|
45
45
|
*/
|
|
46
46
|
index: number;
|
|
47
|
+
container: ViewContainerRef;
|
|
48
|
+
/**
|
|
49
|
+
* @hidden
|
|
50
|
+
*/
|
|
47
51
|
hGrid: IgxHierarchicalGridComponent;
|
|
48
52
|
/**
|
|
49
53
|
* Get a reference to the grid that contains the selected row.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.2",
|
|
4
4
|
"description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@angular/forms": "^15.0.0"
|
|
87
87
|
},
|
|
88
88
|
"igxDevDependencies": {
|
|
89
|
-
"@igniteui/angular-schematics": "~15.1.1110
|
|
89
|
+
"@igniteui/angular-schematics": "~15.1.1110"
|
|
90
90
|
},
|
|
91
91
|
"ng-update": {
|
|
92
92
|
"migrations": "./migrations/migration-collection.json"
|
|
@@ -33,7 +33,7 @@ Learn how to create themes:
|
|
|
33
33
|
* [Component Themes](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/component-themes.html)
|
|
34
34
|
|
|
35
35
|
Learn how to create a component schema:
|
|
36
|
-
* [Schemas](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/schemas
|
|
36
|
+
* [Schemas](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/sass/schemas)
|
|
37
37
|
|
|
38
38
|
Learn how to build color palettes:
|
|
39
39
|
* [Palettes](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/palette.html)
|