igniteui-angular 17.2.5 → 17.2.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.
Files changed (61) hide show
  1. package/esm2022/lib/calendar/month-picker/month-picker.component.mjs +9 -1
  2. package/esm2022/lib/core/density.mjs +2 -1
  3. package/esm2022/lib/directives/for-of/for_of.directive.mjs +13 -2
  4. package/esm2022/lib/directives/for-of/for_of.sync.service.mjs +6 -1
  5. package/esm2022/lib/directives/tooltip/tooltip-target.directive.mjs +3 -2
  6. package/esm2022/lib/grids/common/events.mjs +1 -1
  7. package/esm2022/lib/grids/common/grid.interface.mjs +1 -1
  8. package/esm2022/lib/grids/common/strategy.mjs +2 -2
  9. package/esm2022/lib/grids/common/types.mjs +1 -1
  10. package/esm2022/lib/grids/grid-base.directive.mjs +45 -45
  11. package/esm2022/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +2 -2
  12. package/esm2022/lib/grids/selection/selection.service.mjs +12 -16
  13. package/esm2022/lib/simple-combo/simple-combo.component.mjs +7 -6
  14. package/esm2022/lib/slider/slider.component.mjs +10 -8
  15. package/esm2022/lib/slider/thumb/thumb-slider.component.mjs +6 -2
  16. package/fesm2022/igniteui-angular.mjs +104 -75
  17. package/fesm2022/igniteui-angular.mjs.map +1 -1
  18. package/lib/core/density.d.ts +1 -0
  19. package/lib/core/styles/components/bottom-nav/_bottom-nav-theme.scss +24 -12
  20. package/lib/core/styles/components/button/_button-theme.scss +9 -3
  21. package/lib/core/styles/components/grid/_excel-filtering-theme.scss +20 -0
  22. package/lib/core/styles/components/overlay/_overlay-theme.scss +6 -0
  23. package/lib/directives/for-of/for_of.directive.d.ts +5 -0
  24. package/lib/grids/common/events.d.ts +30 -30
  25. package/lib/grids/common/grid.interface.d.ts +48 -48
  26. package/lib/grids/common/strategy.d.ts +1 -1
  27. package/lib/grids/common/types.d.ts +2 -2
  28. package/lib/grids/grid-base.directive.d.ts +2 -1
  29. package/lib/slider/slider.component.d.ts +1 -1
  30. package/lib/slider/thumb/thumb-slider.component.d.ts +2 -1
  31. package/migrations/migration-collection.json +5 -0
  32. package/migrations/update-17_2_6/changes/theme-changes.json +11 -0
  33. package/migrations/update-17_2_6/index.d.ts +3 -0
  34. package/migrations/update-17_2_6/index.js +31 -0
  35. package/package.json +1 -1
  36. package/styles/igniteui-angular-dark.css +1 -1
  37. package/styles/igniteui-angular.css +1 -1
  38. package/styles/igniteui-bootstrap-dark.css +1 -1
  39. package/styles/igniteui-bootstrap-light.css +1 -1
  40. package/styles/igniteui-dark-green.css +1 -1
  41. package/styles/igniteui-fluent-dark-excel.css +1 -1
  42. package/styles/igniteui-fluent-dark-word.css +1 -1
  43. package/styles/igniteui-fluent-dark.css +1 -1
  44. package/styles/igniteui-fluent-light-excel.css +1 -1
  45. package/styles/igniteui-fluent-light-word.css +1 -1
  46. package/styles/igniteui-fluent-light.css +1 -1
  47. package/styles/igniteui-indigo-dark.css +1 -1
  48. package/styles/igniteui-indigo-light.css +1 -1
  49. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  50. package/styles/maps/igniteui-angular.css.map +1 -1
  51. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  52. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  53. package/styles/maps/igniteui-dark-green.css.map +1 -1
  54. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  55. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  56. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  57. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  58. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  59. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  60. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  61. package/styles/maps/igniteui-indigo-light.css.map +1 -1
@@ -196,12 +196,12 @@ export interface RowType {
196
196
  expanded?: boolean;
197
197
  /**
198
198
  * Optional
199
- * Indicades whether the row is marked for deletion.
199
+ * Indicates whether the row is marked for deletion.
200
200
  */
201
201
  deleted?: boolean;
202
202
  /**
203
203
  * Optional
204
- * Indicades whether the row is currently being edited.
204
+ * Indicates whether the row is currently being edited.
205
205
  */
206
206
  inEditMode?: boolean;
207
207
  /**
@@ -217,7 +217,7 @@ export interface RowType {
217
217
  parent?: RowType;
218
218
  /**
219
219
  * Optional
220
- * Indicades whether the current row has any child rows
220
+ * Indicates whether the current row has any child rows
221
221
  */
222
222
  hasChildren?: boolean;
223
223
  /**
@@ -229,7 +229,7 @@ export interface RowType {
229
229
  addRowUI?: boolean;
230
230
  /**
231
231
  * Optional
232
- * Indicades whether the row is currently focused.
232
+ * Indicates whether the row is currently focused.
233
233
  */
234
234
  focused?: boolean;
235
235
  /** Represent the grid instance, the row belongs to */
@@ -284,7 +284,7 @@ export interface FieldType {
284
284
  * Contains definitions of properties and methods, relevant to a column
285
285
  */
286
286
  export interface ColumnType extends FieldType {
287
- /** Represents the inctance of the parent `GridType` that contains this column. */
287
+ /** Represents the instance of the parent `GridType` that contains this column. */
288
288
  grid: GridType;
289
289
  /** A list, containing all the child columns under this column (if any). */
290
290
  children: QueryList<ColumnType>;
@@ -303,12 +303,12 @@ export interface ColumnType extends FieldType {
303
303
  validators: any[];
304
304
  /**
305
305
  * The template reference for the custom header of the column
306
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
306
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
307
307
  */
308
308
  headerTemplate: TemplateRef<any>;
309
309
  /**
310
310
  * The template reference for the collapsible indicator of the column.
311
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
311
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
312
312
  */
313
313
  collapsibleIndicatorTemplate?: TemplateRef<any>;
314
314
  /** Represents custom CSS classes applied to the header element. When added, they take different styling */
@@ -320,7 +320,7 @@ export interface ColumnType extends FieldType {
320
320
  /** Represents custom CSS styles applied to the header group. When added, they take different styling */
321
321
  headerGroupStyles: any;
322
322
  /**
323
- * Custom CSS styling, appplied to every column
323
+ * Custom CSS styling, applied to every column
324
324
  * calcWidth, minWidthPx, maxWidthPx, minWidth, maxWidth, minWidthPercent, maxWidthPercent, resolvedWidth
325
325
  */
326
326
  calcWidth: any;
@@ -343,12 +343,12 @@ export interface ColumnType extends FieldType {
343
343
  index: number;
344
344
  /**
345
345
  * Represents the type of data for the column:
346
- * string, number, buulean, currency, date, time, etc.
346
+ * string, number, boolean, currency, date, time, etc.
347
347
  */
348
348
  dataType: GridColumnDataType;
349
349
  /**
350
350
  * The template reference for the custom inline editor of the column
351
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
351
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
352
352
  */
353
353
  inlineEditorTemplate: TemplateRef<any>;
354
354
  /**
@@ -371,17 +371,17 @@ export interface ColumnType extends FieldType {
371
371
  columnGroup: boolean;
372
372
  /** @deprecated in version 13.1.0. Use the Grid's `moving` property instead. */
373
373
  movable: boolean;
374
- /** Indicades whether a column can be put in a group. If the value is true, the column can be put in a group */
374
+ /** Indicates whether a column can be put in a group. If the value is true, the column can be put in a group */
375
375
  groupable: boolean;
376
- /** Indicades whether a column can be sorted. If the value is true, the column can be sorted. */
376
+ /** Indicates whether a column can be sorted. If the value is true, the column can be sorted. */
377
377
  sortable: boolean;
378
- /** Indicades whether a column can be filtered. If the value is true, the column can be filtered */
378
+ /** Indicates whether a column can be filtered. If the value is true, the column can be filtered */
379
379
  filterable: boolean;
380
- /** Indicades whether a column is currently hidden (not visible). If the value is true, the column is not visible */
380
+ /** Indicates whether a column is currently hidden (not visible). If the value is true, the column is not visible */
381
381
  hidden: boolean;
382
- /** Indicades whether a column can be pinned. If the value is true, the column cannot be pinned */
382
+ /** Indicates whether a column can be pinned. If the value is true, the column cannot be pinned */
383
383
  disablePinning: boolean;
384
- /** Indicades whether a column can be hidden. If the value is true, the column cannot be hidden */
384
+ /** Indicates whether a column can be hidden. If the value is true, the column cannot be hidden */
385
385
  disableHiding: boolean;
386
386
  /**
387
387
  * The sorting strategy used for sorting this column.
@@ -405,7 +405,7 @@ export interface ColumnType extends FieldType {
405
405
  summaries: any;
406
406
  /**
407
407
  * The template reference for a summary of the column
408
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
408
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
409
409
  */
410
410
  summaryTemplate: TemplateRef<any>;
411
411
  /** Indicates if the column is currently pinned. If the value is true, the column is pinned */
@@ -430,13 +430,13 @@ export interface ColumnType extends FieldType {
430
430
  /**
431
431
  * Optional
432
432
  * The root parent of this column (if any).
433
- * If there is no root parent, that means the current solunm is the root parent
433
+ * If there is no root parent, that means the current column is the root parent
434
434
  */
435
435
  topLevelParent?: ColumnType;
436
436
  /**
437
437
  * Optional
438
438
  * The immediate parent (right above) column of this column (if any).
439
- * If there is no parent, that means the current solunm is the root parent
439
+ * If there is no parent, that means the current column is the root parent
440
440
  */
441
441
  parent?: ColumnType;
442
442
  pipeArgs: IColumnPipeArgs;
@@ -455,7 +455,7 @@ export interface ColumnType extends FieldType {
455
455
  groupingComparer: (a: any, b: any) => number;
456
456
  /**
457
457
  * Represents a custom template for filtering
458
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
458
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
459
459
  */
460
460
  filterCellTemplate: TemplateRef<any>;
461
461
  /**
@@ -469,7 +469,7 @@ export interface ColumnType extends FieldType {
469
469
  /** A method definition to retrieve the set CSS width of the cells under the column */
470
470
  getCellWidth(): string;
471
471
  getGridTemplate(isRow: boolean): string;
472
- /** A method definition to toggle column vibisility (hidden or visible) */
472
+ /** A method definition to toggle column visibility (hidden or visible) */
473
473
  toggleVisibility(value?: boolean): void;
474
474
  populateVisibleIndexes?(): void;
475
475
  /** Pins the column at the specified index (if not already pinned). */
@@ -571,7 +571,7 @@ export interface GridServiceType {
571
571
  */
572
572
  get_cell_by_visible_index(rowIndex: number, columnIndex: number): any;
573
573
  /** Represents a method declaration that sets the expansion state of a group row (used for tree grids)
574
- * It takes the value for the expantion as a parameter (expanded or collapsed)
574
+ * It takes the value for the expansion as a parameter (expanded or collapsed)
575
575
  */
576
576
  set_grouprow_expansion_state?(groupRow: IGroupByRecord, value: boolean): void;
577
577
  row_deleted_transaction(id: any): boolean;
@@ -580,11 +580,11 @@ export interface GridServiceType {
580
580
  * It takes the row's data and the identifier of the parent row if applicable (used for tree grids)
581
581
  */
582
582
  addRowToData(rowData: any, parentID?: any): void;
583
- /** Represents a method declaration for deleting a row, specified by it's identidier (taken as a parameter) */
583
+ /** Represents a method declaration for deleting a row, specified by it's identifier (taken as a parameter) */
584
584
  deleteRowById(id: any): any;
585
- /** Represents a method declaration for retrieving the row's current state of expantion (used for tree grids)*/
585
+ /** Represents a method declaration for retrieving the row's current state of expansion (used for tree grids)*/
586
586
  get_row_expansion_state(id: any): boolean;
587
- /** Represents a method declaration for setting a new expantion state. It can be triggered by an event */
587
+ /** Represents a method declaration for setting a new expansion state. It can be triggered by an event */
588
588
  set_row_expansion_state(id: any, expanded: boolean, event?: Event): void;
589
589
  get_summary_data(): any[];
590
590
  prepare_sorting_expression(stateCollections: Array<Array<any>>, expression: ISortingExpression): void;
@@ -598,7 +598,7 @@ export interface GridServiceType {
598
598
  * The expressions contains fieldName, sorting directory, whether case should be ignored and optional sorting strategy
599
599
  */
600
600
  sort_multiple(expressions: ISortingExpression[]): void;
601
- /** Represents a method declaration for reseting the sorting */
601
+ /** Represents a method declaration for resetting the sorting */
602
602
  clear_sort(fieldName: string): void;
603
603
  /** Represents an event, triggered when the pin state is changed */
604
604
  get_pin_row_event_args(rowID: any, index?: number, row?: RowType, pinned?: boolean): IPinRowEventArgs;
@@ -699,7 +699,7 @@ export interface GridType extends IGridDataBindable {
699
699
  showRowSelectors: boolean;
700
700
  /** Indicates whether the grid's element is pinned to the start of the grid */
701
701
  isPinningToStart: boolean;
702
- /** Idicates if the column of the grid is in drag mode */
702
+ /** Indicates if the column of the grid is in drag mode */
703
703
  columnInDrag: any;
704
704
  /** @hidden @internal */
705
705
  /** The width of pinned element */
@@ -729,60 +729,60 @@ export interface GridType extends IGridDataBindable {
729
729
  /**
730
730
  * Optional
731
731
  * The template for grid icons.
732
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
732
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
733
733
  */
734
734
  iconTemplate?: TemplateRef<any>;
735
735
  /**
736
736
  * Optional
737
737
  * The template for group-by rows.
738
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
738
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
739
739
  */
740
740
  groupRowTemplate?: TemplateRef<IgxGroupByRowTemplateContext>;
741
741
  /**
742
742
  * Optional
743
743
  * The template for the group row selector.
744
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
744
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
745
745
  */
746
746
  groupByRowSelectorTemplate?: TemplateRef<IgxGroupByRowSelectorTemplateContext>;
747
747
  /**
748
748
  * Optional
749
749
  * The template for row loading indicators.
750
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
750
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
751
751
  */
752
752
  rowLoadingIndicatorTemplate?: TemplateRef<any>;
753
753
  /**
754
754
  * The template for the header selector.
755
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
755
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
756
756
  */
757
757
  headSelectorTemplate: TemplateRef<IgxHeadSelectorTemplateContext>;
758
758
  /**
759
759
  * The template for row selectors.
760
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
760
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
761
761
  */
762
762
  rowSelectorTemplate: TemplateRef<IgxRowSelectorTemplateContext>;
763
763
  /**
764
764
  * The template for sort header icons.
765
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
765
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
766
766
  */
767
767
  sortHeaderIconTemplate: TemplateRef<IgxGridHeaderTemplateContext>;
768
768
  /**
769
769
  * The template for ascending sort header icons.
770
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
770
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
771
771
  */
772
772
  sortAscendingHeaderIconTemplate: TemplateRef<IgxGridHeaderTemplateContext>;
773
773
  /**
774
774
  * The template for descending sort header icons.
775
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
775
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
776
776
  */
777
777
  sortDescendingHeaderIconTemplate: TemplateRef<IgxGridHeaderTemplateContext>;
778
778
  /**
779
779
  * The template for header collapsed indicators.
780
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
780
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
781
781
  */
782
782
  headerCollapsedIndicatorTemplate: TemplateRef<IgxGridTemplateContext>;
783
783
  /**
784
784
  * The template for header expanded indicators.
785
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
785
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
786
786
  */
787
787
  headerExpandedIndicatorTemplate: TemplateRef<IgxGridTemplateContext>;
788
788
  /** The template for drag indicator icons. Could be of any type */
@@ -800,7 +800,7 @@ export interface GridType extends IGridDataBindable {
800
800
  calcHeight: number;
801
801
  calcWidth: number;
802
802
  outerWidth: number;
803
- /** The height of each row in the grid. Setting a constant height can solve problems with not showing all alements when scrolling */
803
+ /** The height of each row in the grid. Setting a constant height can solve problems with not showing all elements when scrolling */
804
804
  rowHeight: number;
805
805
  multiRowLayoutRowSize: number;
806
806
  /** Minimal width for headers */
@@ -810,7 +810,7 @@ export interface GridType extends IGridDataBindable {
810
810
  /** The default font size, calculated for each element */
811
811
  _baseFontSize?: number;
812
812
  scrollSize: number;
813
- /** The trigger for grid validation. It's value can eighter be `change` or `blur` */
813
+ /** The trigger for grid validation. It's value can either be `change` or `blur` */
814
814
  validationTrigger: GridValidationTrigger;
815
815
  /**
816
816
  * The configuration for columns and rows pinning in the grid
@@ -868,7 +868,7 @@ export interface GridType extends IGridDataBindable {
868
868
  totalRowsCountAfterFilter: number;
869
869
  _totalRecords: number;
870
870
  /**
871
- * Represents the paging of the grid. It can be eighter 'Local' or 'Remote'
871
+ * Represents the paging of the grid. It can be either 'Local' or 'Remote'
872
872
  * - Local: Default value; The grid will paginate the data source based on the page
873
873
  */
874
874
  pagingMode: GridPagingMode;
@@ -879,7 +879,7 @@ export interface GridType extends IGridDataBindable {
879
879
  /** Represents the last search in the grid
880
880
  * It contains the search text (the user has entered), the match and some settings for the search
881
881
  */
882
- lastSearchInfo: ISearchInfo;
882
+ readonly lastSearchInfo: ISearchInfo;
883
883
  /** @hidden @internal */
884
884
  page: number;
885
885
  /** @hidden @internal */
@@ -913,17 +913,17 @@ export interface GridType extends IGridDataBindable {
913
913
  document: Document;
914
914
  /**
915
915
  * The template for expanded row indicators.
916
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
916
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
917
917
  */
918
918
  rowExpandedIndicatorTemplate: TemplateRef<IgxGridRowTemplateContext>;
919
919
  /**
920
920
  * The template for collapsed row indicators.
921
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
921
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
922
922
  */
923
923
  rowCollapsedIndicatorTemplate: TemplateRef<IgxGridRowTemplateContext>;
924
924
  /**
925
925
  * The template for header icon
926
- * It is of type TemplateRef, which represents an embedded template, used to instanciate embedded views
926
+ * It is of type TemplateRef, which represents an embedded template, used to instantiate embedded views
927
927
  */
928
928
  excelStyleHeaderIconTemplate: TemplateRef<IgxGridHeaderTemplateContext>;
929
929
  selectRowOnClick: boolean;
@@ -1151,12 +1151,12 @@ export interface HierarchicalGridType extends GridType {
1151
1151
  export interface PivotGridType extends GridType {
1152
1152
  /**
1153
1153
  * The configuration settings for the pivot grid.
1154
- * it includes dimention strategy for rows and columns, filters and data keys
1154
+ * it includes dimension strategy for rows and columns, filters and data keys
1155
1155
  */
1156
1156
  pivotConfiguration: IPivotConfiguration;
1157
1157
  /**
1158
1158
  * An array of all dimensions (rows and columns) in the pivot grid.
1159
- * it includes hierarchical level, filters and sorting, dimentional level, etc.
1159
+ * it includes hierarchical level, filters and sorting, dimensional level, etc.
1160
1160
  */
1161
1161
  allDimensions: IPivotDimension[];
1162
1162
  /** Specifies whether to show the pivot configuration UI in the grid. */
@@ -1173,7 +1173,7 @@ export interface PivotGridType extends GridType {
1173
1173
  /** @hidden @internal */
1174
1174
  dimensionDataColumns: ColumnType[];
1175
1175
  pivotRowWidths: number;
1176
- /** Represents a method declaration for seting up the columns for the pivot grid based on the pivot configuration */
1176
+ /** Represents a method declaration for setting up the columns for the pivot grid based on the pivot configuration */
1177
1177
  setupColumns(): void;
1178
1178
  /** Represents a method declaration that allows toggle of expansion state of a row (taken as a parameter) in the pivot grid */
1179
1179
  toggleRow(rowID: any): void;
@@ -97,7 +97,7 @@ export declare class NoopSortingStrategy implements IGridSortingStrategy {
97
97
  }
98
98
  /**
99
99
  * Represents a class extending the IgxSorting class
100
- * Provids custom data record sorting.
100
+ * Provides custom data record sorting.
101
101
  */
102
102
  export declare class IgxDataRecordSorting extends IgxSorting {
103
103
  /**
@@ -58,9 +58,9 @@ export interface ISelectionKeyboardState {
58
58
  node: null | ISelectionNode;
59
59
  /** Indicates whether the Shift key is currently pressed during the selection. */
60
60
  shift: boolean;
61
- /** The range of the selected cells in the grid. Can be null when reseting the selection. */
61
+ /** The range of the selected cells in the grid. Can be null when resetting the selection. */
62
62
  range: GridSelectionRange;
63
- /** Indicates whether the selection is currently active (being performed). `False` when reseting the selection. */
63
+ /** Indicates whether the selection is currently active (being performed). `False` when resetting the selection. */
64
64
  active: boolean;
65
65
  }
66
66
  /**
@@ -1762,7 +1762,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
1762
1762
  /**
1763
1763
  * Represents the last search information.
1764
1764
  */
1765
- lastSearchInfo: ISearchInfo;
1765
+ get lastSearchInfo(): ISearchInfo;
1766
1766
  /**
1767
1767
  * @hidden @internal
1768
1768
  */
@@ -1910,6 +1910,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
1910
1910
  protected _filterStrategy: IFilteringStrategy;
1911
1911
  protected _autoGeneratedCols: any[];
1912
1912
  protected _dataView: any[];
1913
+ protected _lastSearchInfo: ISearchInfo;
1913
1914
  /** @hidden @internal */
1914
1915
  get paginator(): IgxPaginatorComponent;
1915
1916
  /**
@@ -640,7 +640,7 @@ export declare class IgxSliderComponent implements ControlValueAccessor, EditorP
640
640
  */
641
641
  private normalizeByStep;
642
642
  private updateTrack;
643
- private subscribeTo;
643
+ private subscribeToEvents;
644
644
  private unsubscriber;
645
645
  private hasValueChanged;
646
646
  private emitValueChange;
@@ -22,6 +22,7 @@ export declare class IgxSliderThumbComponent implements OnInit, OnDestroy {
22
22
  deactiveState: boolean;
23
23
  thumbValueChange: EventEmitter<number>;
24
24
  thumbChange: EventEmitter<any>;
25
+ thumbBlur: EventEmitter<void>;
25
26
  hoverChange: EventEmitter<boolean>;
26
27
  tabindex: number;
27
28
  zIndex: number;
@@ -73,7 +74,7 @@ export declare class IgxSliderThumbComponent implements OnInit, OnDestroy {
73
74
  private stepToProceed;
74
75
  private toggleThumbIndicators;
75
76
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxSliderThumbComponent, never>;
76
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxSliderThumbComponent, "igx-thumb", never, { "value": { "alias": "value"; "required": false; }; "continuous": { "alias": "continuous"; "required": false; }; "thumbLabelVisibilityDuration": { "alias": "thumbLabelVisibilityDuration"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "onPan": { "alias": "onPan"; "required": false; }; "stepDistance": { "alias": "stepDistance"; "required": false; }; "step": { "alias": "step"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "context": { "alias": "context"; "required": false; }; "type": { "alias": "type"; "required": false; }; "deactiveState": { "alias": "deactiveState"; "required": false; }; }, { "thumbValueChange": "thumbValueChange"; "thumbChange": "thumbChange"; "hoverChange": "hoverChange"; }, never, never, true, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxSliderThumbComponent, "igx-thumb", never, { "value": { "alias": "value"; "required": false; }; "continuous": { "alias": "continuous"; "required": false; }; "thumbLabelVisibilityDuration": { "alias": "thumbLabelVisibilityDuration"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "onPan": { "alias": "onPan"; "required": false; }; "stepDistance": { "alias": "stepDistance"; "required": false; }; "step": { "alias": "step"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "context": { "alias": "context"; "required": false; }; "type": { "alias": "type"; "required": false; }; "deactiveState": { "alias": "deactiveState"; "required": false; }; }, { "thumbValueChange": "thumbValueChange"; "thumbChange": "thumbChange"; "thumbBlur": "thumbBlur"; "hoverChange": "hoverChange"; }, never, never, true, never>;
77
78
  static ngAcceptInputType_continuous: unknown;
78
79
  static ngAcceptInputType_disabled: unknown;
79
80
  static ngAcceptInputType_deactiveState: unknown;
@@ -186,6 +186,11 @@
186
186
  "version": "17.2.3",
187
187
  "description": "Updates Ignite UI for Angular from v17.2.2 to v17.2.3",
188
188
  "factory": "./update-17_2_3"
189
+ },
190
+ "migration-38": {
191
+ "version": "17.2.6",
192
+ "description": "Updates Ignite UI for Angular from v17.2.3 to v17.2.6",
193
+ "factory": "./update-17_2_6"
189
194
  }
190
195
  }
191
196
  }
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "../../common/schema/theme-changes.schema.json",
3
+ "changes": [
4
+ {
5
+ "name": "$active-item-color",
6
+ "replaceWith": "$icon-selected-color",
7
+ "owner": "bottom-nav-theme",
8
+ "type": "property"
9
+ }
10
+ ]
11
+ }
@@ -0,0 +1,3 @@
1
+ import { Rule } from "@angular-devkit/schematics";
2
+ declare const _default: () => Rule;
3
+ export default _default;
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ const UpdateChanges_1 = require("../common/UpdateChanges");
13
+ const version = "17.2.6";
14
+ exports.default = () => (host, context) => __awaiter(void 0, void 0, void 0, function* () {
15
+ context.logger.info(`Applying migration for Ignite UI for Angular to version ${version}`);
16
+ const update = new UpdateChanges_1.UpdateChanges(__dirname, host, context);
17
+ update.addValueTransform('vertical_to_orientation', (args) => {
18
+ args.bindingType = UpdateChanges_1.InputPropertyType.STRING;
19
+ switch (args.value) {
20
+ case 'true':
21
+ args.value = 'vertical';
22
+ break;
23
+ case 'false':
24
+ args.value = 'horizontal';
25
+ break;
26
+ default:
27
+ args.value += ` ? 'vertical' : 'horizontal' `;
28
+ }
29
+ });
30
+ update.applyChanges();
31
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "17.2.5",
3
+ "version": "17.2.7",
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",