igniteui-angular 16.1.4 → 16.1.5
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/buttonGroup/buttonGroup.component.mjs +5 -9
- package/esm2022/lib/directives/for-of/for_of.directive.mjs +4 -1
- package/esm2022/lib/grids/headers/grid-header-row.component.mjs +9 -3
- package/esm2022/lib/services/overlay/overlay.mjs +2 -2
- package/fesm2022/igniteui-angular.mjs +16 -11
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/buttonGroup/buttonGroup.component.d.ts +2 -2
- package/lib/grids/headers/grid-header-row.component.d.ts +4 -0
- package/migrations/common/tsUtils.js +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { AfterContentInit, AfterViewInit, ChangeDetectorRef, EventEmitter, Rende
|
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { IgxButtonDirective } from '../directives/button/button.directive';
|
|
4
4
|
import { DisplayDensityBase, IDisplayDensityOptions } from '../core/density';
|
|
5
|
-
import {
|
|
5
|
+
import { IBaseEventArgs } from '../core/utils';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Determines the Button Group alignment
|
|
@@ -273,7 +273,7 @@ export declare class IgxButtonGroupComponent extends DisplayDensityBase implemen
|
|
|
273
273
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxButtonGroupComponent, [null, null, null, { optional: true; }]>;
|
|
274
274
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxButtonGroupComponent, "igx-buttongroup", never, { "id": { "alias": "id"; "required": false; }; "itemContentCssClass": { "alias": "itemContentCssClass"; "required": false; }; "multiSelection": { "alias": "multiSelection"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "values": { "alias": "values"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; }, { "selected": "selected"; "deselected": "deselected"; }, ["templateButtons"], ["*"], true, never>;
|
|
275
275
|
}
|
|
276
|
-
export interface IButtonGroupEventArgs extends IBaseEventArgs
|
|
276
|
+
export interface IButtonGroupEventArgs extends IBaseEventArgs {
|
|
277
277
|
owner: IgxButtonGroupComponent;
|
|
278
278
|
button: IgxButtonDirective;
|
|
279
279
|
index: number;
|
|
@@ -95,6 +95,10 @@ export declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
95
95
|
* @hidden @internal
|
|
96
96
|
*/
|
|
97
97
|
ngDoCheck(): void;
|
|
98
|
+
/**
|
|
99
|
+
* @hidden @internal
|
|
100
|
+
*/
|
|
101
|
+
scroll(event: Event): void;
|
|
98
102
|
headerRowSelection(event: MouseEvent): void;
|
|
99
103
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderRowComponent, never>;
|
|
100
104
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderRowComponent, "igx-grid-header-row", never, { "grid": { "alias": "grid"; "required": false; }; "pinnedColumnCollection": { "alias": "pinnedColumnCollection"; "required": false; }; "unpinnedColumnCollection": { "alias": "unpinnedColumnCollection"; "required": false; }; "activeDescendant": { "alias": "activeDescendant"; "required": false; }; "hasMRL": { "alias": "hasMRL"; "required": false; }; "width": { "alias": "width"; "required": false; }; "density": { "alias": "density"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -318,7 +318,7 @@ exports.getTypeDefinitionAtPosition = getTypeDefinitionAtPosition;
|
|
|
318
318
|
*/
|
|
319
319
|
const isMemberIgniteUI = (change, langServ, entryPath, matchPosition) => {
|
|
320
320
|
var _a, _b;
|
|
321
|
-
const content = langServ.getProgram().getSourceFile(entryPath).
|
|
321
|
+
const content = langServ.getProgram().getSourceFile(entryPath).getFullText();
|
|
322
322
|
matchPosition = shiftMatchPosition(matchPosition, content);
|
|
323
323
|
const prevChar = content.substr(matchPosition - 1, 1);
|
|
324
324
|
if (prevChar === SyntaxTokens.ClosingParenthesis) {
|
package/package.json
CHANGED