igniteui-angular 22.1.0-rc.0 → 22.1.1
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/fesm2022/igniteui-angular-action-strip.mjs +47 -12
- package/fesm2022/igniteui-angular-action-strip.mjs.map +1 -1
- package/fesm2022/igniteui-angular-chips.mjs +18 -2
- package/fesm2022/igniteui-angular-chips.mjs.map +1 -1
- package/fesm2022/igniteui-angular-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-date-picker.mjs +1 -1
- package/fesm2022/igniteui-angular-date-picker.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-core.mjs +21 -3
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +31 -29
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +3 -3
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-lite.mjs +2 -8
- package/fesm2022/igniteui-angular-grids-lite.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs +4 -4
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs +4 -4
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-query-builder.mjs +1 -1
- package/fesm2022/igniteui-angular-query-builder.mjs.map +1 -1
- package/migrations/migration-collection.json +6 -3
- package/migrations/update-22_1_0_chip-outline/changes/theme-changes.json +17 -0
- package/migrations/update-22_1_0_chip-outline/index.d.ts +3 -0
- package/migrations/update-22_1_0_chip-outline/index.js +18 -0
- package/migrations/update-22_1_0_chip-outline/index.spec.d.ts +1 -0
- package/migrations/update-22_1_0_chip-outline/index.spec.js +68 -0
- package/package.json +4 -4
- 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
- package/types/igniteui-angular-action-strip.d.ts +15 -2
- package/types/igniteui-angular-chips.d.ts +12 -1
- package/types/igniteui-angular-core.d.ts +10 -3
- package/types/igniteui-angular-grids-core.d.ts +21 -16
- package/types/igniteui-angular-grids-grid.d.ts +4 -4
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +1 -1
- package/types/igniteui-angular-grids-lite.d.ts +11 -2
|
@@ -2487,6 +2487,13 @@ interface MRLResizeColumnInfo {
|
|
|
2487
2487
|
target: ColumnType;
|
|
2488
2488
|
spanUsed: number;
|
|
2489
2489
|
}
|
|
2490
|
+
/**
|
|
2491
|
+
* A map of CSS style properties to either a static value or a callback that
|
|
2492
|
+
* computes one.
|
|
2493
|
+
*/
|
|
2494
|
+
interface GridStyleCSSProperty {
|
|
2495
|
+
[prop: string]: any;
|
|
2496
|
+
}
|
|
2490
2497
|
/**
|
|
2491
2498
|
* Enumeration representing the possible positions for pinning columns.
|
|
2492
2499
|
* - Start: Columns are pinned to the start of the grid.
|
|
@@ -2592,11 +2599,11 @@ interface ColumnType extends FieldType {
|
|
|
2592
2599
|
/** Represents custom CSS classes applied to the header element. When added, they take different styling */
|
|
2593
2600
|
headerClasses: any;
|
|
2594
2601
|
/** Represents custom CSS styles applied to the header element. When added, they take different styling */
|
|
2595
|
-
headerStyles:
|
|
2602
|
+
headerStyles: GridStyleCSSProperty | null;
|
|
2596
2603
|
/** Represents custom CSS classes applied to the header group. When added, they take different styling */
|
|
2597
2604
|
headerGroupClasses: any;
|
|
2598
2605
|
/** Represents custom CSS styles applied to the header group. When added, they take different styling */
|
|
2599
|
-
headerGroupStyles:
|
|
2606
|
+
headerGroupStyles: GridStyleCSSProperty | null;
|
|
2600
2607
|
/**
|
|
2601
2608
|
* Custom CSS styling, applied to every column
|
|
2602
2609
|
* calcWidth, minWidthPx, maxWidthPx, minWidth, maxWidth, minWidthPercent, maxWidthPercent, resolvedWidth
|
|
@@ -4323,4 +4330,4 @@ declare global {
|
|
|
4323
4330
|
}
|
|
4324
4331
|
|
|
4325
4332
|
export { AbsolutePosition, AbsoluteScrollStrategy, ActionStripResourceStringsEN, AutoPositionStrategy, BannerResourceStringsEN, BaseFilteringStrategy, BaseFitPositionStrategy, BaseFormatter, BlockScrollStrategy, ByLevelTreeGridMergeStrategy, CachedDataCloneStrategy, CalendarDay, CalendarResourceStringsEN, CarouselResourceStringsEN, ChipResourceStringsEN, CloseScrollStrategy, ColumnPinningPosition, ComboResourceStringsEN, ConnectedPositioningStrategy, ContainerPositionStrategy, DEFAULT_LOCALE, DataUtil, DatePart, DatePickerResourceStringsEN, DateRangePickerResourceStringsEN, DateRangeType, DateTimeUtil, DefaultDataCloneStrategy, DefaultMergeStrategy, DefaultSortingStrategy, DefaultTreeGridMergeStrategy, EDITOR_PROVIDER, ELEMENTS_TOKEN, ElasticPositionStrategy, ExpressionsTreeUtil, FilterUtil, FilteringExpressionsTree, FilteringExpressionsTreeType, FilteringLogic, FilteringStrategy, FormattedValuesFilteringStrategy, FormattedValuesSortingStrategy, GlobalPositionStrategy, GridColumnDataType, GridResourceStringsEN, GridSummaryCalculationMode, GroupMemberCountSortingStrategy, GroupedRecords, HorizontalAlignment, I18N_FORMATTER, IgxActionStripActionsToken, IgxActionStripToken, IgxAngularAnimationPlayer, IgxAngularAnimationService, IgxBaseTransactionService, IgxBooleanFilteringOperand, IgxCurrencyFormatterPipe, IgxDataRecordSorting, IgxDateFilteringOperand, IgxDateFormatterPipe, IgxDateSummaryOperand, IgxDateTimeFilteringOperand, IgxFilteringOperand, IgxFlatTransactionFactory, IgxGridTransaction, IgxGrouping, IgxHierarchicalTransactionFactory, IgxHierarchicalTransactionService, IgxNavigationCloseDirective, IgxNavigationService, IgxNavigationToggleDirective, IgxNumberFilteringOperand, IgxNumberFormatterPipe, IgxNumberSummaryOperand, IgxOverlayOutletDirective, IgxOverlayService, IgxPercentFormatterPipe, IgxPickerActionsDirective, IgxPickerClearComponent, IgxPickerToggleComponent, IgxSelectionAPIService, IgxSorting, IgxStringFilteringOperand, IgxStylesRegistrar, IgxSummaryOperand, IgxTimeFilteringOperand, IgxTimeSummaryOperand, IgxTouchManager, IgxTransactionService, InputResourceStringsEN, IntlFormatter, ListResourceStringsEN, NAVIGATION_KEYS, NoOpScrollStrategy, NoopFilteringStrategy, NoopSortingStrategy, OffsetMode, PaginatorResourceStringsEN, PagingError, PickerCalendarOrientation, PickerHeaderOrientation, PickerInteractionMode, PlatformUtil, Point, QueryBuilderResourceStringsEN, RelativePosition, RelativePositionStrategy, ScrollStrategy, SortingDirection, THEME_TOKEN, TRANSACTION_TYPE, ThemeToken, TimePickerResourceStringsEN, TransactionEventOrigin, TransactionType, TreeGridFilteringStrategy, TreeGridFormattedValuesFilteringStrategy, TreeGridMatchingRecordsOnlyFilteringStrategy, TreeResourceStringsEN, Util, VerticalAlignment, WEEKDAYS, areEqualArrays, areSameMonth, calendarRange, changei18n, clamp, cloneArray, cloneHierarchicalArray, cloneValue, cloneValueCached, columnFieldPath, compareMaps, copyDescriptors, daysInWeek, first, flatten, formatToParts, generateMonth, getClosestActiveDate, getComponentCssSizeVar, getComponentSize, getComponentTheme, getCurrentResourceStrings, getHierarchy, getNextActiveDate, getPreviousActiveDate, getResizeObserver, getYearRange, intoChunks, isConstructor, isDate, isDateInRanges, isEqual, isHierarchyMatch, isLeftToRight, isNextMonth, isObject, isPreviousMonth, isTree, last, mergeObjects, modulo, normalizeURI, onResourceChangeHandle, parseDate, provideIgniteIntl, recreateExpression, recreateTree, recreateTreeFromFields, registerI18n, rem, resizeObservable, resolveNestedPath, reverseMapper, runAfterRenderOnce, showMessage, toCalendarDay, trackByIdentity, uniqueDates, Size$1 as ɵSize };
|
|
4326
|
-
export type { Action, AnimationPlayer, AnimationService, CalendarRangeParams, CancelableBrowserEventArgs, CancelableEventArgs, ColumnType, ConnectedFit, CustomDateRange, DatePartDeltas, DatePartInfo, DateRange, DateRangeDescriptor, DayInterval, DayParameter, EditorProvider, EntityType, FieldType, GridSelectionRange, GridTypeBase, HierarchicalState, HierarchicalTransaction, HierarchicalTransactionService, IActionStripResourceStrings, IBannerResourceStrings, IBaseCancelableBrowserEventArgs, IBaseCancelableEventArgs, IBaseEventArgs, ICalendarResourceStrings, ICarouselResourceStrings, IChipResourceStrings, IColumnEditorOptions, IColumnPipeArgs, IColumnSelectionState, IComboResourceStrings, IDataCloneStrategy, IDateParts, IDatePickerResourceStrings, IDateRangePickerResourceStrings, IExpressionTree, IFieldEditorOptions, IFieldPipeArgs, IFilteringExpression, IFilteringExpressionsTree, IFilteringOperation, IFilteringState, IFilteringStrategy, IGridGroupingStrategy, IGridMergeStrategy, IGridResourceStrings, IGridSortingStrategy, IGroupByExpandState, IGroupByKey, IGroupByRecord, IGroupByResult, IGroupingExpression, IGroupingState, IInputResourceStrings, IListResourceStrings, IMergeByResult, IMultiRowLayoutNode, IPaginatorResourceStrings, IPagingState, IPathSegment, IPositionStrategy, IQueryBuilderResourceStrings, IResourceStrings, IScrollStrategy, ISelectionKeyboardState, ISelectionNode, ISelectionPointerState, ISortingExpression, ISortingOptions, ISortingStrategy, ISummaryExpression, ISummaryRecord, ITimePickerResourceStrings, IToggleView, ITreeGridRecord, ITreeResourceStrings, IgcCalendarBaseEventMap, IgxFilterItem, IgxGestureEvent, IgxSummaryResult, IgxTheme, IgxTouchManagerCallbacks, IgxTouchManagerOptions, IgxTreeGridAPIService, KeyOfOrString, MRLColumnSizeInfo, MRLResizeColumnInfo, OverlayAnimationEventArgs, OverlayCancelableEventArgs, OverlayClosingEventArgs, OverlayCreateSettings, OverlayEventArgs, OverlaySettings, PositionSettings, RenderPhase, SelectionState, Size, State, StateUpdateEvent, Transaction, TransactionService, WeekDays };
|
|
4333
|
+
export type { Action, AnimationPlayer, AnimationService, CalendarRangeParams, CancelableBrowserEventArgs, CancelableEventArgs, ColumnType, ConnectedFit, CustomDateRange, DatePartDeltas, DatePartInfo, DateRange, DateRangeDescriptor, DayInterval, DayParameter, EditorProvider, EntityType, FieldType, GridSelectionRange, GridStyleCSSProperty, GridTypeBase, HierarchicalState, HierarchicalTransaction, HierarchicalTransactionService, IActionStripResourceStrings, IBannerResourceStrings, IBaseCancelableBrowserEventArgs, IBaseCancelableEventArgs, IBaseEventArgs, ICalendarResourceStrings, ICarouselResourceStrings, IChipResourceStrings, IColumnEditorOptions, IColumnPipeArgs, IColumnSelectionState, IComboResourceStrings, IDataCloneStrategy, IDateParts, IDatePickerResourceStrings, IDateRangePickerResourceStrings, IExpressionTree, IFieldEditorOptions, IFieldPipeArgs, IFilteringExpression, IFilteringExpressionsTree, IFilteringOperation, IFilteringState, IFilteringStrategy, IGridGroupingStrategy, IGridMergeStrategy, IGridResourceStrings, IGridSortingStrategy, IGroupByExpandState, IGroupByKey, IGroupByRecord, IGroupByResult, IGroupingExpression, IGroupingState, IInputResourceStrings, IListResourceStrings, IMergeByResult, IMultiRowLayoutNode, IPaginatorResourceStrings, IPagingState, IPathSegment, IPositionStrategy, IQueryBuilderResourceStrings, IResourceStrings, IScrollStrategy, ISelectionKeyboardState, ISelectionNode, ISelectionPointerState, ISortingExpression, ISortingOptions, ISortingStrategy, ISummaryExpression, ISummaryRecord, ITimePickerResourceStrings, IToggleView, ITreeGridRecord, ITreeResourceStrings, IgcCalendarBaseEventMap, IgxFilterItem, IgxGestureEvent, IgxSummaryResult, IgxTheme, IgxTouchManagerCallbacks, IgxTouchManagerOptions, IgxTreeGridAPIService, KeyOfOrString, MRLColumnSizeInfo, MRLResizeColumnInfo, OverlayAnimationEventArgs, OverlayCancelableEventArgs, OverlayClosingEventArgs, OverlayCreateSettings, OverlayEventArgs, OverlaySettings, PositionSettings, RenderPhase, SelectionState, Size, State, StateUpdateEvent, Transaction, TransactionService, WeekDays };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { EventEmitter, TemplateRef, DoCheck, ElementRef, ChangeDetectorRef, QueryList, PipeTransform, OnDestroy, ViewContainerRef, InjectionToken, IterableDiffer, AfterViewInit, OnInit, AfterContentInit, IterableDiffers, EnvironmentInjector, Injector, NgZone, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
3
|
import * as igniteui_angular_core from 'igniteui-angular/core';
|
|
4
|
-
import { IBaseEventArgs, GridTypeBase, ISortingExpression, GridColumnDataType, ColumnType, CancelableEventArgs, IFilteringExpressionsTree, IGroupingExpression, IgxSummaryResult, IgxSummaryOperand, ISelectionNode, BaseFormatter, trackByIdentity, SortingDirection, IDataCloneStrategy, PlatformUtil, ISelectionKeyboardState, ISelectionPointerState, IColumnSelectionState, GridSelectionRange, IMultiRowLayoutNode, SelectionState, IFilteringExpression, FilteringLogic, IgxOverlayService, OverlaySettings, FilteringExpressionsTree, IFilteringOperation, IGroupByRecord, ITreeGridRecord, IGridMergeStrategy, IGridResourceStrings, ɵSize as _Size, IPathSegment, IGroupByExpandState, ColumnPinningPosition, TransactionService, Transaction, State, GridSummaryCalculationMode, IGridSortingStrategy, IGridGroupingStrategy, IFilteringStrategy, ISortingOptions, IgxOverlayOutletDirective, IgxFilteringOperand, ISortingStrategy, IColumnPipeArgs, IColumnEditorOptions, MRLColumnSizeInfo, MRLResizeColumnInfo, IQueryBuilderResourceStrings, FieldType, IgxFilterItem, IgxActionStripToken, IPagingState, IGroupingState, FilteringStrategy, PositionSettings, ConnectedPositioningStrategy, Point } from 'igniteui-angular/core';
|
|
4
|
+
import { IBaseEventArgs, GridTypeBase, ISortingExpression, GridColumnDataType, ColumnType, CancelableEventArgs, IFilteringExpressionsTree, IGroupingExpression, IgxSummaryResult, IgxSummaryOperand, ISelectionNode, BaseFormatter, trackByIdentity, SortingDirection, IDataCloneStrategy, PlatformUtil, ISelectionKeyboardState, ISelectionPointerState, IColumnSelectionState, GridSelectionRange, IMultiRowLayoutNode, SelectionState, IFilteringExpression, FilteringLogic, IgxOverlayService, OverlaySettings, FilteringExpressionsTree, IFilteringOperation, IGroupByRecord, ITreeGridRecord, IGridMergeStrategy, IGridResourceStrings, ɵSize as _Size, IPathSegment, IGroupByExpandState, ColumnPinningPosition, TransactionService, Transaction, State, GridSummaryCalculationMode, IGridSortingStrategy, IGridGroupingStrategy, IFilteringStrategy, ISortingOptions, IgxOverlayOutletDirective, GridStyleCSSProperty, IgxFilteringOperand, ISortingStrategy, IColumnPipeArgs, IColumnEditorOptions, MRLColumnSizeInfo, MRLResizeColumnInfo, IQueryBuilderResourceStrings, FieldType, IgxFilterItem, IgxActionStripToken, IPagingState, IGroupingState, FilteringStrategy, PositionSettings, ConnectedPositioningStrategy, Point } from 'igniteui-angular/core';
|
|
5
5
|
import * as i1 from 'igniteui-angular/directives';
|
|
6
6
|
import { IBaseSearchInfo, IgxGridForOfDirective, IForOfState, IgxToggleDirective, IgxForOfDirective, IDragStartEventArgs, IDragMoveEventArgs, IgxButtonDirective, IgxDropDirective, IgxDragCustomEventDetails, IgxDragDirective, ToggleViewCancelableEventArgs, ToggleViewEventArgs, IgxTooltipDirective, IgxTextHighlightDirective } from 'igniteui-angular/directives';
|
|
7
7
|
import { Subject, Observable, Subscription } from 'rxjs';
|
|
@@ -4236,7 +4236,7 @@ declare class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnT
|
|
|
4236
4236
|
*
|
|
4237
4237
|
* @memberof IgxColumnComponent
|
|
4238
4238
|
*/
|
|
4239
|
-
headerStyles: null;
|
|
4239
|
+
headerStyles: GridStyleCSSProperty | null;
|
|
4240
4240
|
/**
|
|
4241
4241
|
* Sets/gets the class selector of the column group header.
|
|
4242
4242
|
* ```typescript
|
|
@@ -4265,7 +4265,7 @@ declare class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnT
|
|
|
4265
4265
|
*
|
|
4266
4266
|
* @memberof IgxColumnComponent
|
|
4267
4267
|
*/
|
|
4268
|
-
headerGroupStyles: null;
|
|
4268
|
+
headerGroupStyles: GridStyleCSSProperty | null;
|
|
4269
4269
|
/**
|
|
4270
4270
|
* Sets a conditional class selector of the column cells.
|
|
4271
4271
|
* Accepts an object literal, containing key-value pairs,
|
|
@@ -4301,7 +4301,7 @@ declare class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnT
|
|
|
4301
4301
|
*
|
|
4302
4302
|
* @memberof IgxColumnComponent
|
|
4303
4303
|
*/
|
|
4304
|
-
cellStyles:
|
|
4304
|
+
cellStyles: GridStyleCSSProperty | null;
|
|
4305
4305
|
/**
|
|
4306
4306
|
* Applies display format to cell values in the column. Does not modify the underlying data.
|
|
4307
4307
|
*
|
|
@@ -6927,6 +6927,8 @@ declare class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy, RowT
|
|
|
6927
6927
|
declare class IgxGridActionsBaseDirective implements AfterViewInit {
|
|
6928
6928
|
protected iconService: IgxIconService;
|
|
6929
6929
|
protected differs: IterableDiffers;
|
|
6930
|
+
private _cdr;
|
|
6931
|
+
private _strip;
|
|
6930
6932
|
/** @hidden @internal **/
|
|
6931
6933
|
buttons: QueryList<IgxGridActionButtonComponent>;
|
|
6932
6934
|
/**
|
|
@@ -6939,8 +6941,18 @@ declare class IgxGridActionsBaseDirective implements AfterViewInit {
|
|
|
6939
6941
|
* ```
|
|
6940
6942
|
*/
|
|
6941
6943
|
asMenuItems: boolean;
|
|
6942
|
-
/**
|
|
6943
|
-
|
|
6944
|
+
/**
|
|
6945
|
+
* The Action Strip this component renders its actions in.
|
|
6946
|
+
*
|
|
6947
|
+
* Assigned by the strip itself once it picks the component up in its content query, which
|
|
6948
|
+
* happens outside of change detection. The template reads the strip's `context` through
|
|
6949
|
+
* `isRowContext`, so this view has to be marked, both to render the actions for the current
|
|
6950
|
+
* context and so that the first refresh subscribes it to the strip's `context` signal.
|
|
6951
|
+
*
|
|
6952
|
+
* @hidden @internal
|
|
6953
|
+
**/
|
|
6954
|
+
set strip(value: IgxActionStripToken);
|
|
6955
|
+
get strip(): IgxActionStripToken;
|
|
6944
6956
|
/**
|
|
6945
6957
|
* @hidden
|
|
6946
6958
|
* @internal
|
|
@@ -7541,11 +7553,7 @@ declare class SortingIndexPipe implements PipeTransform {
|
|
|
7541
7553
|
static ɵpipe: i0.ɵɵPipeDeclaration<SortingIndexPipe, "sortingIndex", true>;
|
|
7542
7554
|
}
|
|
7543
7555
|
declare class IgxHeaderGroupStylePipe implements PipeTransform {
|
|
7544
|
-
transform(styles:
|
|
7545
|
-
[prop: string]: any;
|
|
7546
|
-
}, column: ColumnType, _: number): {
|
|
7547
|
-
[prop: string]: any;
|
|
7548
|
-
};
|
|
7556
|
+
transform(styles: GridStyleCSSProperty | null, column: ColumnType, _: number): GridStyleCSSProperty;
|
|
7549
7557
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxHeaderGroupStylePipe, never>;
|
|
7550
7558
|
static ɵpipe: i0.ɵɵPipeDeclaration<IgxHeaderGroupStylePipe, "igxHeaderGroupStyle", true>;
|
|
7551
7559
|
}
|
|
@@ -9155,9 +9163,6 @@ declare class IgxRowEditTabStopDirective {
|
|
|
9155
9163
|
*/
|
|
9156
9164
|
declare function getUUID(): `${string}-${string}-${string}-${string}-${string}`;
|
|
9157
9165
|
|
|
9158
|
-
interface GridStyleCSSProperty {
|
|
9159
|
-
[prop: string]: any;
|
|
9160
|
-
}
|
|
9161
9166
|
/**
|
|
9162
9167
|
* @hidden
|
|
9163
9168
|
* @internal
|
|
@@ -9172,7 +9177,7 @@ declare class IgxGridCellStyleClassesPipe implements PipeTransform {
|
|
|
9172
9177
|
* @internal
|
|
9173
9178
|
*/
|
|
9174
9179
|
declare class IgxGridCellStylesPipe implements PipeTransform {
|
|
9175
|
-
transform(styles: GridStyleCSSProperty, _: any, data: any, field: string, index: number, __: number): GridStyleCSSProperty;
|
|
9180
|
+
transform(styles: GridStyleCSSProperty | null, _: any, data: any, field: string, index: number, __: number): GridStyleCSSProperty;
|
|
9176
9181
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridCellStylesPipe, never>;
|
|
9177
9182
|
static ɵpipe: i0.ɵɵPipeDeclaration<IgxGridCellStylesPipe, "igxCellStyles", true>;
|
|
9178
9183
|
}
|
|
@@ -9203,7 +9208,7 @@ declare class IgxGridRowClassesPipe implements PipeTransform {
|
|
|
9203
9208
|
*/
|
|
9204
9209
|
declare class IgxGridRowStylesPipe implements PipeTransform {
|
|
9205
9210
|
private grid;
|
|
9206
|
-
transform(styles: GridStyleCSSProperty, rowData: any, index: number, __: number): GridStyleCSSProperty;
|
|
9211
|
+
transform(styles: GridStyleCSSProperty | null, rowData: any, index: number, __: number): GridStyleCSSProperty;
|
|
9207
9212
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridRowStylesPipe, never>;
|
|
9208
9213
|
static ɵpipe: i0.ɵɵPipeDeclaration<IgxGridRowStylesPipe, "igxGridRowStyles", true>;
|
|
9209
9214
|
}
|
|
@@ -5,7 +5,7 @@ import { OnDestroy, ElementRef, ChangeDetectorRef, TemplateRef, OnInit, DoCheck,
|
|
|
5
5
|
import * as rxjs from 'rxjs';
|
|
6
6
|
import { Subject, Observable } from 'rxjs';
|
|
7
7
|
import * as igniteui_angular_core from 'igniteui-angular/core';
|
|
8
|
-
import { IGroupByRecord, ISelectionNode, ISortingExpression, IGroupingExpression, IgxFlatTransactionFactory, IgxOverlayService, PlatformUtil, TransactionService, Transaction, State, IDataCloneStrategy, IFilteringExpressionsTree, ColumnType, GridSelectionRange, IgxActionStripToken, IgxOverlayOutletDirective, IGridResourceStrings, FilteringLogic, GridSummaryCalculationMode, IFilteringStrategy, IGridSortingStrategy, IGridMergeStrategy, ISortingOptions, IPagingState, EntityType, OverlaySettings, IFilteringOperation, ISummaryExpression, ColumnPinningPosition, ɵSize as _Size, StateUpdateEvent, IgxSummaryOperand, IGroupByExpandState, IGroupByResult, IGridGroupingStrategy } from 'igniteui-angular/core';
|
|
8
|
+
import { IGroupByRecord, ISelectionNode, ISortingExpression, IGroupingExpression, IgxFlatTransactionFactory, IgxOverlayService, PlatformUtil, TransactionService, Transaction, State, IDataCloneStrategy, IFilteringExpressionsTree, GridStyleCSSProperty, ColumnType, GridSelectionRange, IgxActionStripToken, IgxOverlayOutletDirective, IGridResourceStrings, FilteringLogic, GridSummaryCalculationMode, IFilteringStrategy, IGridSortingStrategy, IGridMergeStrategy, ISortingOptions, IPagingState, EntityType, OverlaySettings, IFilteringOperation, ISummaryExpression, ColumnPinningPosition, ɵSize as _Size, StateUpdateEvent, IgxSummaryOperand, IGroupByExpandState, IGroupByResult, IGridGroupingStrategy } from 'igniteui-angular/core';
|
|
9
9
|
import * as igniteui_angular_directives from 'igniteui-angular/directives';
|
|
10
10
|
import { IgxTextHighlightService, IForOfDataChangeEventArgs, IgxToggleDirective, IgxGridForOfDirective, IViewChangeEventArgs, ICachedViewLoadedEventArgs, IForOfState } from 'igniteui-angular/directives';
|
|
11
11
|
import * as rxjs_internal_scheduler_AnimationFrameScheduler from 'rxjs/internal/scheduler/AnimationFrameScheduler';
|
|
@@ -399,7 +399,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
399
399
|
*
|
|
400
400
|
* @memberof IgxColumnComponent
|
|
401
401
|
*/
|
|
402
|
-
rowStyles: null;
|
|
402
|
+
rowStyles: GridStyleCSSProperty | null;
|
|
403
403
|
/**
|
|
404
404
|
* Gets/Sets the primary key.
|
|
405
405
|
*
|
|
@@ -3377,7 +3377,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
3377
3377
|
/**
|
|
3378
3378
|
* @hidden @internal
|
|
3379
3379
|
*/
|
|
3380
|
-
preventContainerScroll
|
|
3380
|
+
preventContainerScroll(evt: Event): void;
|
|
3381
3381
|
/**
|
|
3382
3382
|
* @hidden
|
|
3383
3383
|
* @internal
|
|
@@ -3497,7 +3497,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
3497
3497
|
/**
|
|
3498
3498
|
* @hidden
|
|
3499
3499
|
*/
|
|
3500
|
-
rowEditingWheelHandler
|
|
3500
|
+
rowEditingWheelHandler(event: WheelEvent): void;
|
|
3501
3501
|
/**
|
|
3502
3502
|
* @hidden
|
|
3503
3503
|
*/
|
|
@@ -343,7 +343,7 @@ declare class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirective imp
|
|
|
343
343
|
advancedFilteringExpressionsTreeChange?: _angular_core.SimpleChange<EventEmitter<igniteui_angular_core.IFilteringExpressionsTree>> | undefined;
|
|
344
344
|
gridScroll?: _angular_core.SimpleChange<EventEmitter<i3.IGridScrollEventArgs>> | undefined;
|
|
345
345
|
rowClasses?: _angular_core.SimpleChange<any> | undefined;
|
|
346
|
-
rowStyles?: _angular_core.SimpleChange<null> | undefined;
|
|
346
|
+
rowStyles?: _angular_core.SimpleChange<igniteui_angular_core.GridStyleCSSProperty | null> | undefined;
|
|
347
347
|
primaryKey?: _angular_core.SimpleChange<string> | undefined;
|
|
348
348
|
uniqueColumnValuesStrategy?: _angular_core.SimpleChange<((column: igniteui_angular_core.ColumnType, filteringExpressionsTree: igniteui_angular_core.IFilteringExpressionsTree, done: (values: any[]) => void) => void) | undefined> | undefined;
|
|
349
349
|
excelStyleFilteringComponents?: _angular_core.SimpleChange<QueryList<i3.IgxGridExcelStyleFilteringComponent>> | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { TemplateRef, OnInit } from '@angular/core';
|
|
3
|
-
import { IgcCellContext, IgcHeaderContext, Keys, DataType, ColumnSortConfiguration, ColumnConfiguration, SortingExpression, FilterExpression, GridLiteSortingOptions, DataPipelineConfiguration, IgcGridLite } from 'igniteui-grid-lite';
|
|
3
|
+
import { IgcCellContext, IgcHeaderContext, Keys, DataType, ColumnSortConfiguration, ColumnConfiguration, SortingExpression, FilterExpression, GridLiteSortingOptions, DataPipelineConfiguration, IgcGridLite, NavigateToOptions } from 'igniteui-grid-lite';
|
|
4
4
|
|
|
5
5
|
/** Configuration object for grid columns. */
|
|
6
6
|
type IgxGridLiteColumnConfiguration<T extends object = any> = ColumnConfiguration<T>;
|
|
@@ -103,6 +103,7 @@ type IgxGridLiteSortingOptions = GridLiteSortingOptions;
|
|
|
103
103
|
type IgxGridLiteDataPipelineConfiguration<T extends object = any> = DataPipelineConfiguration<T>;
|
|
104
104
|
type IgxGridLiteSortingExpression<T extends object = any> = SortingExpression<T>;
|
|
105
105
|
type IgxGridLiteFilteringExpression<T extends object = any> = FilterExpression<T>;
|
|
106
|
+
type IgxGridLiteNavigateToOptions<T extends object = any> = NavigateToOptions<T>;
|
|
106
107
|
/**
|
|
107
108
|
* The Grid Lite is a web component for displaying data in a tabular format quick and easy.
|
|
108
109
|
*
|
|
@@ -188,11 +189,19 @@ declare class IgxGridLiteComponent<T extends object = any> implements OnInit {
|
|
|
188
189
|
* Resets the current filter state of the control.
|
|
189
190
|
*/
|
|
190
191
|
clearFilter(key?: Keys<T>): void;
|
|
192
|
+
/**
|
|
193
|
+
* Navigates to a position in the grid based on provided row index and column field.
|
|
194
|
+
* @param row The row index to navigate to
|
|
195
|
+
* @param options The column field to navigate to and whether to activate the cell
|
|
196
|
+
* @returns A promise that resolves when navigation completes.
|
|
197
|
+
*/
|
|
198
|
+
navigateTo(row: number, options?: IgxGridLiteNavigateToOptions<T>): Promise<void>;
|
|
191
199
|
/**
|
|
192
200
|
* Navigates to a position in the grid based on provided row index and column field.
|
|
193
201
|
* @param row The row index to navigate to
|
|
194
202
|
* @param column The column field to navigate to, if any
|
|
195
203
|
* @param activate Optionally also activate the navigated cell
|
|
204
|
+
* @deprecated Use `navigateTo(row, options)` instead.
|
|
196
205
|
*/
|
|
197
206
|
navigateTo(row: number, column?: Keys<T>, activate?: boolean): Promise<void>;
|
|
198
207
|
/**
|
|
@@ -216,4 +225,4 @@ declare global {
|
|
|
216
225
|
}
|
|
217
226
|
|
|
218
227
|
export { IgxGridLiteCellTemplateDirective, IgxGridLiteColumnComponent, IgxGridLiteComponent, IgxGridLiteHeaderTemplateDirective };
|
|
219
|
-
export type { IgxGridLiteCellTemplateContext, IgxGridLiteColumnConfiguration, IgxGridLiteColumnSortConfiguration, IgxGridLiteDataPipelineConfiguration, IgxGridLiteFilteringExpression, IgxGridLiteHeaderTemplateContext, IgxGridLiteSortingExpression, IgxGridLiteSortingOptions };
|
|
228
|
+
export type { IgxGridLiteCellTemplateContext, IgxGridLiteColumnConfiguration, IgxGridLiteColumnSortConfiguration, IgxGridLiteDataPipelineConfiguration, IgxGridLiteFilteringExpression, IgxGridLiteHeaderTemplateContext, IgxGridLiteNavigateToOptions, IgxGridLiteSortingExpression, IgxGridLiteSortingOptions };
|