igniteui-angular 18.2.18 → 18.2.19
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/esm2022/lib/carousel/carousel.component.mjs +2 -1
- package/esm2022/lib/grids/toolbar/grid-toolbar-advanced-filtering.component.mjs +7 -5
- package/fesm2022/igniteui-angular.mjs +7 -4
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/grids/toolbar/grid-toolbar-advanced-filtering.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import { IgxToolbarToken } from './token';
|
|
3
3
|
import { OverlaySettings } from '../../services/overlay/utilities';
|
|
4
4
|
import { IFilteringExpressionsTree } from '../../data-operations/filtering-expressions-tree';
|
|
@@ -16,7 +16,7 @@ import * as i0 from "@angular/core";
|
|
|
16
16
|
* <igx-grid-toolbar-advanced-filtering>Custom text</igx-grid-toolbar-advanced-filtering>
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
export declare class IgxGridToolbarAdvancedFilteringComponent implements
|
|
19
|
+
export declare class IgxGridToolbarAdvancedFilteringComponent implements OnInit {
|
|
20
20
|
private toolbar;
|
|
21
21
|
protected numberOfColumns: number;
|
|
22
22
|
/**
|
|
@@ -29,7 +29,7 @@ export declare class IgxGridToolbarAdvancedFilteringComponent implements AfterVi
|
|
|
29
29
|
/**
|
|
30
30
|
* @hidden
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
ngOnInit(): void;
|
|
33
33
|
protected extractUniqueFieldNamesFromFilterTree(filteringTree?: IFilteringExpressionsTree): string[];
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridToolbarAdvancedFilteringComponent, never>;
|
|
35
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridToolbarAdvancedFilteringComponent, "igx-grid-toolbar-advanced-filtering", never, { "overlaySettings": { "alias": "overlaySettings"; "required": false; }; }, {}, never, ["*"], true, never>;
|
package/package.json
CHANGED