igniteui-angular 16.1.6 → 16.1.7
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/grids/filtering/excel-style/common.mjs +6 -1
- package/esm2022/lib/grids/filtering/excel-style/excel-style-filtering.component.mjs +2 -2
- package/esm2022/lib/grids/filtering/excel-style/excel-style-search.component.mjs +148 -6
- package/esm2022/lib/grids/pivot-grid/pivot-data-selector.component.mjs +2 -2
- package/esm2022/lib/grids/pivot-grid/pivot-grid.component.mjs +2 -2
- package/esm2022/lib/grids/pivot-grid/pivot-header-row.component.mjs +2 -2
- package/esm2022/lib/list/list-item.component.mjs +9 -4
- package/esm2022/lib/list/list.component.mjs +10 -4
- package/fesm2022/igniteui-angular.mjs +215 -58
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/list/_list-component.scss +5 -0
- package/lib/core/styles/components/list/_list-theme.scss +10 -0
- package/lib/grids/filtering/excel-style/common.d.ts +8 -0
- package/lib/grids/filtering/excel-style/excel-style-search.component.d.ts +25 -3
- package/lib/list/list-item.component.d.ts +5 -3
- package/lib/list/list.component.d.ts +4 -2
- package/package.json +1 -1
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-angular.css +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/igniteui-bootstrap-light.css +1 -1
- package/styles/igniteui-dark-green.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/igniteui-fluent-dark.css +1 -1
- package/styles/igniteui-fluent-light-excel.css +1 -1
- package/styles/igniteui-fluent-light-word.css +1 -1
- package/styles/igniteui-fluent-light.css +1 -1
- package/styles/igniteui-indigo-dark.css +1 -1
- package/styles/igniteui-indigo-light.css +1 -1
- package/styles/maps/igniteui-angular-dark.css.map +1 -1
- package/styles/maps/igniteui-angular.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
- package/styles/maps/igniteui-dark-green.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-light.css.map +1 -1
- package/styles/maps/igniteui-indigo-dark.css.map +1 -1
- package/styles/maps/igniteui-indigo-light.css.map +1 -1
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
@extend %igx-list-item-base !optional;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
// css class `igx-list__item-base--active
|
|
27
|
+
@include e(item-base, $m: active) {
|
|
28
|
+
@extend %igx-list-item-base--active !optional;
|
|
29
|
+
}
|
|
30
|
+
|
|
26
31
|
// css class 'igx-list__item-right' applied to the panning container shown when the list item is panned left
|
|
27
32
|
@include e(item-right) {
|
|
28
33
|
@extend %igx-list-item-pan !optional;
|
|
@@ -292,6 +292,10 @@
|
|
|
292
292
|
overflow-x: hidden;
|
|
293
293
|
z-index: 0;
|
|
294
294
|
border-radius: var-get($theme, 'border-radius');
|
|
295
|
+
|
|
296
|
+
&:focus-visible {
|
|
297
|
+
outline-style: none;
|
|
298
|
+
}
|
|
295
299
|
}
|
|
296
300
|
|
|
297
301
|
%igx-list--empty {
|
|
@@ -367,6 +371,12 @@
|
|
|
367
371
|
}
|
|
368
372
|
}
|
|
369
373
|
|
|
374
|
+
%igx-list-item-base--active {
|
|
375
|
+
%igx-list-item-content {
|
|
376
|
+
@extend %igx-list-item-content--active;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
|
|
370
380
|
%igx-list-item-pan {
|
|
371
381
|
position: absolute;
|
|
372
382
|
visibility: hidden;
|
|
@@ -24,4 +24,12 @@ export declare class ExpressionUI {
|
|
|
24
24
|
isSelected: boolean;
|
|
25
25
|
isVisible: boolean;
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* @hidden @internal
|
|
29
|
+
*/
|
|
30
|
+
export declare class ActiveElement {
|
|
31
|
+
index: number;
|
|
32
|
+
id: string;
|
|
33
|
+
checked: boolean;
|
|
34
|
+
}
|
|
27
35
|
export declare function generateExpressionsList(expressions: IFilteringExpressionsTree | IFilteringExpression, operator: FilteringLogic, expressionsUIs: ExpressionUI[]): void;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, TemplateRef, OnDestroy } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, TemplateRef, OnDestroy, QueryList } from '@angular/core';
|
|
2
2
|
import { IgxInputDirective } from '../../../directives/input/input.directive';
|
|
3
3
|
import { IgxForOfDirective } from '../../../directives/for-of/for_of.directive';
|
|
4
4
|
import { IChangeCheckboxEventArgs, IgxCheckboxComponent } from '../../../checkbox/checkbox.component';
|
|
5
5
|
import { PlatformUtil } from '../../../core/utils';
|
|
6
6
|
import { BaseFilteringComponent } from './base-filtering.component';
|
|
7
|
-
import { FilterListItem } from './common';
|
|
7
|
+
import { ActiveElement, FilterListItem } from './common';
|
|
8
|
+
import { IgxButtonDirective } from '../../../directives/button/button.directive';
|
|
8
9
|
import { IgxTreeComponent } from '../../../tree/tree.component';
|
|
9
10
|
import { IgxListComponent } from '../../../list/list.component';
|
|
10
11
|
import { ITreeNodeSelectionEvent } from '../../../tree/common';
|
|
@@ -32,6 +33,7 @@ export declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDe
|
|
|
32
33
|
* @hidden @internal
|
|
33
34
|
*/
|
|
34
35
|
searchInput: IgxInputDirective;
|
|
36
|
+
protected cancelButton: IgxButtonDirective;
|
|
35
37
|
/**
|
|
36
38
|
* @hidden @internal
|
|
37
39
|
*/
|
|
@@ -56,6 +58,7 @@ export declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDe
|
|
|
56
58
|
* @hidden @internal
|
|
57
59
|
*/
|
|
58
60
|
protected defaultExcelStyleLoadingValuesTemplate: TemplateRef<any>;
|
|
61
|
+
protected checkboxes: QueryList<IgxCheckboxComponent>;
|
|
59
62
|
/**
|
|
60
63
|
* @hidden @internal
|
|
61
64
|
*/
|
|
@@ -88,10 +91,13 @@ export declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDe
|
|
|
88
91
|
* @hidden @internal
|
|
89
92
|
*/
|
|
90
93
|
get valuesLoadingTemplate(): any;
|
|
94
|
+
protected activeDescendant: string;
|
|
95
|
+
private _id;
|
|
91
96
|
private _isLoading;
|
|
92
97
|
private _addToCurrentFilterItem;
|
|
93
98
|
private _selectAllItem;
|
|
94
99
|
private _hierarchicalSelectedItems;
|
|
100
|
+
private _focusedItem;
|
|
95
101
|
private destroy$;
|
|
96
102
|
constructor(cdr: ChangeDetectorRef, esf: BaseFilteringComponent, platform: PlatformUtil);
|
|
97
103
|
ngAfterViewInit(): void;
|
|
@@ -124,6 +130,12 @@ export declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDe
|
|
|
124
130
|
* @hidden @internal
|
|
125
131
|
*/
|
|
126
132
|
get containerSize(): any;
|
|
133
|
+
protected get id(): string;
|
|
134
|
+
protected set id(value: string);
|
|
135
|
+
protected getItemId(index: number): string;
|
|
136
|
+
protected setActiveDescendant(): void;
|
|
137
|
+
protected get focusedItem(): ActiveElement;
|
|
138
|
+
protected set focusedItem(val: ActiveElement);
|
|
127
139
|
/**
|
|
128
140
|
* @hidden @internal
|
|
129
141
|
*/
|
|
@@ -140,6 +152,9 @@ export declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDe
|
|
|
140
152
|
* @hidden @internal
|
|
141
153
|
*/
|
|
142
154
|
applyFilter(): void;
|
|
155
|
+
protected handleKeyDown(event: KeyboardEvent): void;
|
|
156
|
+
protected onFocus(): void;
|
|
157
|
+
protected onFocusOut(): void;
|
|
143
158
|
/**
|
|
144
159
|
* @hidden @internal
|
|
145
160
|
*/
|
|
@@ -157,6 +172,13 @@ export declare class IgxExcelStyleSearchComponent implements AfterViewInit, OnDe
|
|
|
157
172
|
* @hidden @internal
|
|
158
173
|
*/
|
|
159
174
|
private rejectNonNumericalEntries;
|
|
175
|
+
private onArrowUpKeyDown;
|
|
176
|
+
private onArrowDownKeyDown;
|
|
177
|
+
private onHomeKeyDown;
|
|
178
|
+
private onEndKeyDown;
|
|
179
|
+
private onActionKeyDown;
|
|
180
|
+
private navigateItem;
|
|
181
|
+
private isIndexOutOfBounds;
|
|
160
182
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxExcelStyleSearchComponent, never>;
|
|
161
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxExcelStyleSearchComponent, "igx-excel-style-search", never, {}, {}, never, never, true, never>;
|
|
183
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxExcelStyleSearchComponent, "igx-excel-style-search", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
162
184
|
}
|
|
@@ -93,6 +93,7 @@ export declare class IgxListItemComponent implements IListChild {
|
|
|
93
93
|
* @hidden
|
|
94
94
|
*/
|
|
95
95
|
private lastPanDir;
|
|
96
|
+
private _role;
|
|
96
97
|
/**
|
|
97
98
|
* Gets the `panState` of a `list item`.
|
|
98
99
|
* ```typescript
|
|
@@ -179,14 +180,15 @@ export declare class IgxListItemComponent implements IListChild {
|
|
|
179
180
|
get offsetHeightInRem(): number;
|
|
180
181
|
constructor(list: IgxListBaseDirective, elementRef: ElementRef, _renderer: Renderer2);
|
|
181
182
|
/**
|
|
182
|
-
* Gets the `role` attribute of the `list item`.
|
|
183
|
+
* Gets/Sets the `role` attribute of the `list item`.
|
|
183
184
|
* ```typescript
|
|
184
185
|
* let itemRole = this.listItem.role;
|
|
185
186
|
* ```
|
|
186
187
|
*
|
|
187
188
|
* @memberof IgxListItemComponent
|
|
188
189
|
*/
|
|
189
|
-
get role():
|
|
190
|
+
get role(): string;
|
|
191
|
+
set role(val: string);
|
|
190
192
|
/**
|
|
191
193
|
* Indicates whether `list item` should have header style.
|
|
192
194
|
* ```typescript
|
|
@@ -263,5 +265,5 @@ export declare class IgxListItemComponent implements IListChild {
|
|
|
263
265
|
*/
|
|
264
266
|
private resetPanPosition;
|
|
265
267
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxListItemComponent, never>;
|
|
266
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxListItemComponent, "igx-list-item", never, { "isHeader": { "alias": "isHeader"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "index": { "alias": "index"; "required": false; }; }, {}, never, ["*", "[igxListThumbnail], igx-list__item-thumbnail, igx-avatar", "[igxListLine], .igx-list__item-lines, [igxListLineTitle], [igxListLineSubTitle], .igx-list__item-line-title, .igx-list__item-line-subtitle", "[igxListAction], .igx-list__item-actions"], true, never>;
|
|
268
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxListItemComponent, "igx-list-item", never, { "isHeader": { "alias": "isHeader"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "index": { "alias": "index"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, {}, never, ["*", "[igxListThumbnail], igx-list__item-thumbnail, igx-avatar", "[igxListLine], .igx-list__item-lines, [igxListLineTitle], [igxListLineSubTitle], .igx-list__item-line-title, .igx-list__item-line-subtitle", "[igxListAction], .igx-list__item-actions"], true, never>;
|
|
267
269
|
}
|
|
@@ -369,8 +369,9 @@ export declare class IgxListComponent extends IgxListBaseDirective {
|
|
|
369
369
|
* @internal
|
|
370
370
|
*/
|
|
371
371
|
protected get sortedChildren(): IgxListItemComponent[];
|
|
372
|
+
private _role;
|
|
372
373
|
/**
|
|
373
|
-
* Gets the `role` attribute value.
|
|
374
|
+
* Gets/Sets the `role` attribute value.
|
|
374
375
|
*
|
|
375
376
|
* @example
|
|
376
377
|
* ```typescript
|
|
@@ -378,6 +379,7 @@ export declare class IgxListComponent extends IgxListBaseDirective {
|
|
|
378
379
|
* ```
|
|
379
380
|
*/
|
|
380
381
|
get role(): string;
|
|
382
|
+
set role(val: string);
|
|
381
383
|
/**
|
|
382
384
|
* Gets a boolean indicating if the list is empty.
|
|
383
385
|
*
|
|
@@ -435,5 +437,5 @@ export declare class IgxListComponent extends IgxListBaseDirective {
|
|
|
435
437
|
*/
|
|
436
438
|
get template(): TemplateRef<any>;
|
|
437
439
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxListComponent, [null, { optional: true; }]>;
|
|
438
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxListComponent, "igx-list", never, { "panEndTriggeringThreshold": { "alias": "panEndTriggeringThreshold"; "required": false; }; "id": { "alias": "id"; "required": false; }; "allowLeftPanning": { "alias": "allowLeftPanning"; "required": false; }; "allowRightPanning": { "alias": "allowRightPanning"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; }, { "leftPan": "leftPan"; "rightPan": "rightPan"; "startPan": "startPan"; "endPan": "endPan"; "resetPan": "resetPan"; "panStateChange": "panStateChange"; "itemClicked": "itemClicked"; }, ["emptyListTemplate", "dataLoadingTemplate", "listItemLeftPanningTemplate", "listItemRightPanningTemplate", "children"], ["*"], true, never>;
|
|
440
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxListComponent, "igx-list", never, { "panEndTriggeringThreshold": { "alias": "panEndTriggeringThreshold"; "required": false; }; "id": { "alias": "id"; "required": false; }; "allowLeftPanning": { "alias": "allowLeftPanning"; "required": false; }; "allowRightPanning": { "alias": "allowRightPanning"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, { "leftPan": "leftPan"; "rightPan": "rightPan"; "startPan": "startPan"; "endPan": "endPan"; "resetPan": "resetPan"; "panStateChange": "panStateChange"; "itemClicked": "itemClicked"; }, ["emptyListTemplate", "dataLoadingTemplate", "listItemLeftPanningTemplate", "listItemRightPanningTemplate", "children"], ["*"], true, never>;
|
|
439
441
|
}
|
package/package.json
CHANGED