igniteui-angular 20.0.12 → 20.1.0-alpha.0

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 (38) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -1
  3. package/fesm2022/igniteui-angular.mjs +1465 -423
  4. package/fesm2022/igniteui-angular.mjs.map +1 -1
  5. package/index.d.ts +520 -96
  6. package/lib/core/styles/components/calendar/_calendar-theme.scss +3 -5
  7. package/lib/core/styles/components/combo/_combo-theme.scss +0 -14
  8. package/lib/core/styles/components/input/_input-group-theme.scss +51 -6
  9. package/lib/core/styles/components/select/_select-theme.scss +0 -16
  10. package/lib/core/styles/components/tooltip/_tooltip-component.scss +16 -0
  11. package/lib/core/styles/components/tooltip/_tooltip-theme.scss +43 -7
  12. package/package.json +1 -1
  13. package/styles/igniteui-angular-dark.css +1 -1
  14. package/styles/igniteui-angular.css +1 -1
  15. package/styles/igniteui-bootstrap-dark.css +1 -1
  16. package/styles/igniteui-bootstrap-light.css +1 -1
  17. package/styles/igniteui-dark-green.css +1 -1
  18. package/styles/igniteui-fluent-dark-excel.css +1 -1
  19. package/styles/igniteui-fluent-dark-word.css +1 -1
  20. package/styles/igniteui-fluent-dark.css +1 -1
  21. package/styles/igniteui-fluent-light-excel.css +1 -1
  22. package/styles/igniteui-fluent-light-word.css +1 -1
  23. package/styles/igniteui-fluent-light.css +1 -1
  24. package/styles/igniteui-indigo-dark.css +1 -1
  25. package/styles/igniteui-indigo-light.css +1 -1
  26. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  27. package/styles/maps/igniteui-angular.css.map +1 -1
  28. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  29. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  30. package/styles/maps/igniteui-dark-green.css.map +1 -1
  31. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  32. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  33. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  34. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  35. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  36. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  37. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  38. package/styles/maps/igniteui-indigo-light.css.map +1 -1
package/index.d.ts CHANGED
@@ -2542,6 +2542,8 @@ interface PositionSettings {
2542
2542
  closeAnimation?: AnimationReferenceMetadata;
2543
2543
  /** The size up to which element may shrink when shown in elastic position strategy */
2544
2544
  minSize?: Size;
2545
+ /** The offset of the element from the target in pixels */
2546
+ offset?: number;
2545
2547
  }
2546
2548
  interface OverlaySettings {
2547
2549
  /** Attaching target for the component to show */
@@ -5436,7 +5438,7 @@ interface ColumnType extends FieldType {
5436
5438
  toggleVisibility(value?: boolean): void;
5437
5439
  populateVisibleIndexes?(): void;
5438
5440
  /** Pins the column at the specified index (if not already pinned). */
5439
- pin(index?: number): boolean;
5441
+ pin(index?: number, pinningPosition?: ColumnPinningPosition): boolean;
5440
5442
  /** Unpins the column at the specified index (if not already unpinned). */
5441
5443
  unpin(index?: number): boolean;
5442
5444
  }
@@ -5664,13 +5666,13 @@ interface GridType extends IGridDataBindable {
5664
5666
  isRowSelectable: boolean;
5665
5667
  /** Indicates whether the selectors of the rows are visible */
5666
5668
  showRowSelectors: boolean;
5667
- /** Indicates whether the grid's element is pinned to the start of the grid */
5668
- isPinningToStart: boolean;
5669
5669
  /** Indicates if the column of the grid is in drag mode */
5670
5670
  columnInDrag: any;
5671
5671
  /** @hidden @internal */
5672
- /** The width of pinned element */
5673
- pinnedWidth: number;
5672
+ /** The width of pinned element for pinning at start. */
5673
+ pinnedStartWidth: number;
5674
+ /** The width of pinned element for pinning at end. */
5675
+ pinnedEndWidth: number;
5674
5676
  /** @hidden @internal */
5675
5677
  /** The width of unpinned element */
5676
5678
  unpinnedWidth: number;
@@ -5799,6 +5801,10 @@ interface GridType extends IGridDataBindable {
5799
5801
  unpinnedColumns: ColumnType[];
5800
5802
  /** An array of columns, but it counts only the ones that are pinned */
5801
5803
  pinnedColumns: ColumnType[];
5804
+ /** An array of columns, but it counts only the ones that are pinned to the start. */
5805
+ pinnedStartColumns: ColumnType[];
5806
+ /** An array of columns, but it counts only the ones that are pinned to the end. */
5807
+ pinnedEndColumns: ColumnType[];
5802
5808
  /** represents an array of the headers of the columns */
5803
5809
  /** @hidden @internal */
5804
5810
  headerCellList: any[];
@@ -6958,6 +6964,17 @@ declare class ConnectedPositioningStrategy implements IPositionStrategy {
6958
6964
  targetRect: Partial<DOMRect>;
6959
6965
  elementRect: Partial<DOMRect>;
6960
6966
  };
6967
+ /**
6968
+ * Get element horizontal and vertical offsets by connectedFit
6969
+ * or `this.settings` if connectedFit offset is not defined.
6970
+ *
6971
+ * @param connectedFit
6972
+ * @returns horizontalOffset and verticalOffset
6973
+ */
6974
+ protected getElementOffsets(connectedFit: ConnectedFit): {
6975
+ horizontalOffset: number;
6976
+ verticalOffset: number;
6977
+ };
6961
6978
  /**
6962
6979
  * Sets element's style which effectively positions provided element according
6963
6980
  * to provided position settings
@@ -8174,6 +8191,14 @@ declare class IgxDropDownComponent extends IgxDropDownBaseDirective implements I
8174
8191
  * ```
8175
8192
  */
8176
8193
  labelledBy: string;
8194
+ /**
8195
+ * Gets/sets the `role` attribute of the drop down. Default is 'listbox'.
8196
+ *
8197
+ * ```html
8198
+ * <igx-drop-down [role]="customRole"></igx-drop-down-item>
8199
+ * ```
8200
+ */
8201
+ role: string;
8177
8202
  protected virtDir: IgxForOfToken<any>;
8178
8203
  protected toggleDirective: IgxToggleDirective;
8179
8204
  protected scrollContainerRef: ElementRef;
@@ -8334,7 +8359,7 @@ declare class IgxDropDownComponent extends IgxDropDownBaseDirective implements I
8334
8359
  protected skipHeader(direction: Navigate): void;
8335
8360
  private isIndexOutOfBounds;
8336
8361
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDropDownComponent, never>;
8337
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxDropDownComponent, "igx-drop-down", never, { "allowItemsFocus": { "alias": "allowItemsFocus"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; }, { "opening": "opening"; "opened": "opened"; "closing": "closing"; "closed": "closed"; }, ["virtDir", "children"], ["*"], true, never>;
8362
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxDropDownComponent, "igx-drop-down", never, { "allowItemsFocus": { "alias": "allowItemsFocus"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, { "opening": "opening"; "opened": "opened"; "closing": "closing"; "closed": "closed"; }, ["virtDir", "children"], ["*"], true, never>;
8338
8363
  static ngAcceptInputType_allowItemsFocus: unknown;
8339
8364
  }
8340
8365
 
@@ -12054,25 +12079,26 @@ declare class IgxTooltipDirective extends IgxToggleDirective implements OnDestro
12054
12079
  * let tooltipRole = this.tooltip.role;
12055
12080
  * ```
12056
12081
  */
12057
- get role(): string;
12058
- /**
12059
- * @hidden
12060
- */
12061
- timeoutId: any;
12082
+ set role(value: "tooltip" | "status");
12083
+ get role(): "tooltip" | "status";
12062
12084
  /**
12063
- * @hidden
12064
- * Returns whether close time out has started
12085
+ * Get the arrow element of the tooltip.
12086
+ *
12087
+ * ```typescript
12088
+ * let tooltipArrow = this.tooltip.arrow;
12089
+ * ```
12065
12090
  */
12066
- toBeHidden: boolean;
12091
+ get arrow(): HTMLElement;
12067
12092
  /**
12068
12093
  * @hidden
12069
- * Returns whether open time out has started
12070
12094
  */
12071
- toBeShown: boolean;
12095
+ timeoutId: any;
12072
12096
  /**
12073
12097
  * @hidden
12074
12098
  */
12075
12099
  tooltipTarget: IgxTooltipTargetDirective;
12100
+ private _arrowEl;
12101
+ private _role;
12076
12102
  private _destroy$;
12077
12103
  private _document;
12078
12104
  /** @hidden */
@@ -12080,22 +12106,26 @@ declare class IgxTooltipDirective extends IgxToggleDirective implements OnDestro
12080
12106
  /** @hidden */
12081
12107
  ngOnDestroy(): void;
12082
12108
  /**
12083
- * If there is open animation in progress this method will finish is.
12084
- * If there is no open animation in progress this method will open the toggle with no animation.
12085
- *
12086
- * @param overlaySettings setting to use for opening the toggle
12109
+ * @hidden
12087
12110
  */
12088
- protected forceOpen(overlaySettings?: OverlaySettings): void;
12111
+ onMouseEnter(): void;
12112
+ /**
12113
+ * @hidden
12114
+ */
12115
+ onMouseLeave(): void;
12089
12116
  /**
12090
- * If there is close animation in progress this method will finish is.
12091
- * If there is no close animation in progress this method will close the toggle with no animation.
12117
+ * If there is an animation in progress, this method will reset it to its initial state.
12118
+ * Optional `force` parameter that ends the animation.
12092
12119
  *
12093
- * @param overlaySettings settings to use for closing the toggle
12120
+ * @hidden
12121
+ * @param force if set to `true`, the animation will be ended.
12094
12122
  */
12095
- protected forceClose(overlaySettings?: OverlaySettings): void;
12123
+ stopAnimations(force?: boolean): void;
12124
+ private _createArrow;
12125
+ private _removeArrow;
12096
12126
  private onDocumentTouchStart;
12097
12127
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxTooltipDirective, [null, null, null, { optional: true; }]>;
12098
- static ɵdir: i0.ɵɵDirectiveDeclaration<IgxTooltipDirective, "[igxTooltip]", ["tooltip"], { "context": { "alias": "context"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
12128
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IgxTooltipDirective, "[igxTooltip]", ["tooltip"], { "context": { "alias": "context"; "required": false; }; "id": { "alias": "id"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, {}, never, never, true, never>;
12099
12129
  }
12100
12130
 
12101
12131
  interface ITooltipShowEventArgs extends IBaseEventArgs {
@@ -12122,10 +12152,12 @@ interface ITooltipHideEventArgs extends IBaseEventArgs {
12122
12152
  * <span #tooltipRef="tooltip" igxTooltip>Hello there, I am a tooltip!</span>
12123
12153
  * ```
12124
12154
  */
12125
- declare class IgxTooltipTargetDirective extends IgxToggleActionDirective implements OnInit, OnDestroy {
12155
+ declare class IgxTooltipTargetDirective extends IgxToggleActionDirective implements OnChanges, OnInit, OnDestroy {
12126
12156
  private _element;
12127
12157
  private _navigationService;
12128
12158
  private _viewContainerRef;
12159
+ private _renderer;
12160
+ private _envInjector;
12129
12161
  /**
12130
12162
  * Gets/sets the amount of milliseconds that should pass before showing the tooltip.
12131
12163
  *
@@ -12156,6 +12188,96 @@ declare class IgxTooltipTargetDirective extends IgxToggleActionDirective impleme
12156
12188
  * ```
12157
12189
  */
12158
12190
  hideDelay: number;
12191
+ /**
12192
+ * Controls whether to display an arrow indicator for the tooltip.
12193
+ * Set to true to show the arrow. Default value is `false`.
12194
+ *
12195
+ * ```typescript
12196
+ * // get
12197
+ * let isArrowDisabled = this.tooltip.hasArrow;
12198
+ * ```
12199
+ *
12200
+ * ```typescript
12201
+ * // set
12202
+ * this.tooltip.hasArrow = true;
12203
+ * ```
12204
+ *
12205
+ * ```html
12206
+ * <!--set-->
12207
+ * <igx-icon igxTooltipTarget [hasArrow]="true" [tooltip]="'Infragistics Inc. HQ'">info</igx-icon>
12208
+ * ```
12209
+ */
12210
+ set hasArrow(value: boolean);
12211
+ get hasArrow(): boolean;
12212
+ /**
12213
+ * Specifies if the tooltip remains visible until the user closes it via the close button or Esc key.
12214
+ *
12215
+ * ```typescript
12216
+ * // get
12217
+ * let isSticky = this.tooltip.sticky;
12218
+ * ```
12219
+ *
12220
+ * ```typescript
12221
+ * // set
12222
+ * this.tooltip.sticky = true;
12223
+ * ```
12224
+ *
12225
+ * ```html
12226
+ * <!--set-->
12227
+ * <igx-icon igxTooltipTarget [sticky]="true" [tooltip]="'Infragistics Inc. HQ'">info</igx-icon>
12228
+ * ```
12229
+ */
12230
+ set sticky(value: boolean);
12231
+ get sticky(): boolean;
12232
+ /**
12233
+ * Allows full control over the appearance of the close button inside the tooltip.
12234
+ *
12235
+ * ```typescript
12236
+ * // get
12237
+ * let customCloseTemplate = this.tooltip.customCloseTemplate;
12238
+ * ```
12239
+ *
12240
+ * ```typescript
12241
+ * // set
12242
+ * this.tooltip.customCloseTemplate = TemplateRef<any>;
12243
+ * ```
12244
+ *
12245
+ * ```html
12246
+ * <!--set-->
12247
+ * <igx-icon igxTooltipTarget [closeButtonTemplate]="customClose" [tooltip]="'Infragistics Inc. HQ'">info</igx-icon>
12248
+ * <ng-template #customClose>
12249
+ * <button class="my-close-btn">Close Me</button>
12250
+ * </ng-template>
12251
+ * ```
12252
+ */
12253
+ set closeTemplate(value: TemplateRef<any>);
12254
+ get closeTemplate(): TemplateRef<any> | undefined;
12255
+ /**
12256
+ * Get the position and animation settings used by the tooltip.
12257
+ * ```typescript
12258
+ * let positionSettings = this.tooltipTarget.positionSettings;
12259
+ * ```
12260
+ */
12261
+ get positionSettings(): PositionSettings;
12262
+ /**
12263
+ * Set the position and animation settings used by the tooltip.
12264
+ * ```html
12265
+ * <igx-icon [igxTooltipTarget]="tooltipRef" [positionSettings]="newPositionSettings">info</igx-icon>
12266
+ * <span #tooltipRef="tooltip" igxTooltip>Hello there, I am a tooltip!</span>
12267
+ * ```
12268
+ * ```typescript
12269
+ *
12270
+ * import { PositionSettings, HorizontalAlignment, VerticalAlignment } from 'igniteui-angular';
12271
+ * ...
12272
+ * public newPositionSettings: PositionSettings = {
12273
+ * horizontalDirection: HorizontalAlignment.Right,
12274
+ * horizontalStartPoint: HorizontalAlignment.Left,
12275
+ * verticalDirection: VerticalAlignment.Top,
12276
+ * verticalStartPoint: VerticalAlignment.Top,
12277
+ * };
12278
+ * ```
12279
+ */
12280
+ set positionSettings(settings: PositionSettings);
12159
12281
  /**
12160
12282
  * Specifies if the tooltip should not show when hovering its target with the mouse. (defaults to false)
12161
12283
  * While setting this property to 'true' will disable the user interactions that shows/hides the tooltip,
@@ -12233,8 +12355,15 @@ declare class IgxTooltipTargetDirective extends IgxToggleActionDirective impleme
12233
12355
  * ```
12234
12356
  */
12235
12357
  tooltipHide: EventEmitter<ITooltipHideEventArgs>;
12236
- private destroy$;
12237
- constructor(_element: ElementRef, _navigationService: IgxNavigationService, _viewContainerRef: ViewContainerRef);
12358
+ private _destroy$;
12359
+ private _autoHideDelay;
12360
+ private _isForceClosed;
12361
+ private _hasArrow;
12362
+ private _closeButtonRef?;
12363
+ private _closeTemplate;
12364
+ private _sticky;
12365
+ private _positionSettings;
12366
+ constructor(_element: ElementRef, _navigationService: IgxNavigationService, _viewContainerRef: ViewContainerRef, _renderer: Renderer2, _envInjector: EnvironmentInjector);
12238
12367
  /**
12239
12368
  * @hidden
12240
12369
  */
@@ -12255,6 +12384,10 @@ declare class IgxTooltipTargetDirective extends IgxToggleActionDirective impleme
12255
12384
  * @hidden
12256
12385
  */
12257
12386
  onDocumentTouchStart(event: any): void;
12387
+ /**
12388
+ * @hidden
12389
+ */
12390
+ ngOnChanges(changes: SimpleChanges): void;
12258
12391
  /**
12259
12392
  * @hidden
12260
12393
  */
@@ -12264,7 +12397,7 @@ declare class IgxTooltipTargetDirective extends IgxToggleActionDirective impleme
12264
12397
  */
12265
12398
  ngOnDestroy(): void;
12266
12399
  /**
12267
- * Shows the tooltip by respecting the 'showDelay' property.
12400
+ * Shows the tooltip if not already shown.
12268
12401
  *
12269
12402
  * ```typescript
12270
12403
  * this.tooltipTarget.showTooltip();
@@ -12272,22 +12405,124 @@ declare class IgxTooltipTargetDirective extends IgxToggleActionDirective impleme
12272
12405
  */
12273
12406
  showTooltip(): void;
12274
12407
  /**
12275
- * Hides the tooltip by respecting the 'hideDelay' property.
12408
+ * Hides the tooltip if not already hidden.
12276
12409
  *
12277
12410
  * ```typescript
12278
12411
  * this.tooltipTarget.hideTooltip();
12279
12412
  * ```
12280
12413
  */
12281
12414
  hideTooltip(): void;
12282
- private checkOutletAndOutsideClick;
12283
- private get mergedOverlaySettings();
12284
- private preMouseEnterCheck;
12285
- private preMouseLeaveCheck;
12286
- static ɵfac: i0.ɵɵFactoryDeclaration<IgxTooltipTargetDirective, [null, { optional: true; }, null]>;
12287
- static ɵdir: i0.ɵɵDirectiveDeclaration<IgxTooltipTargetDirective, "[igxTooltipTarget]", ["tooltipTarget"], { "showDelay": { "alias": "showDelay"; "required": false; }; "hideDelay": { "alias": "hideDelay"; "required": false; }; "tooltipDisabled": { "alias": "tooltipDisabled"; "required": false; }; "target": { "alias": "igxTooltipTarget"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "tooltipShow": "tooltipShow"; "tooltipHide": "tooltipHide"; }, never, never, true, never>;
12415
+ private get _mergedOverlaySettings();
12416
+ private _checkOutletAndOutsideClick;
12417
+ /**
12418
+ * A guard method that performs precondition checks before showing the tooltip.
12419
+ * It ensures that the tooltip is not disabled and not already shown in sticky mode.
12420
+ * If all conditions pass, it executes the provided `action` callback.
12421
+ */
12422
+ private _checksBeforeShowing;
12423
+ private _hideTooltip;
12424
+ private _showTooltip;
12425
+ private _showOnInteraction;
12426
+ private _hideOnInteraction;
12427
+ private _setAutoHide;
12428
+ /**
12429
+ * Used when the browser animations are set to a lower percentage
12430
+ * and the user interacts with the target or tooltip __while__ an animation is playing.
12431
+ * It stops the running animation, and the tooltip is instantly shown.
12432
+ */
12433
+ private _stopTimeoutAndAnimation;
12434
+ /**
12435
+ * Used when a single tooltip is used for multiple targets.
12436
+ * If the tooltip is shown for one target and the user interacts with another target,
12437
+ * the tooltip is instantly hidden for the first target.
12438
+ */
12439
+ private _checkTooltipForMultipleTargets;
12440
+ /**
12441
+ * Updates the tooltip's sticky-related state, but only if the current target owns the tooltip.
12442
+ *
12443
+ * This method ensures that when the active target modifies its `sticky` or `closeTemplate` properties
12444
+ * at runtime, the tooltip reflects those changes accordingly:
12445
+ */
12446
+ private _evaluateStickyState;
12447
+ /**
12448
+ * Creates (if not already created) an instance of the IgxTooltipCloseButtonComponent,
12449
+ * and assigns it the provided custom template.
12450
+ */
12451
+ private _createCloseTemplate;
12452
+ /**
12453
+ * Appends the close button to the tooltip.
12454
+ */
12455
+ private _appendCloseButtonToTooltip;
12456
+ /**
12457
+ * Removes the close button from the tooltip.
12458
+ */
12459
+ private _removeCloseButtonFromTooltip;
12460
+ private _destroyCloseButton;
12461
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxTooltipTargetDirective, [null, { optional: true; }, null, null, null]>;
12462
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IgxTooltipTargetDirective, "[igxTooltipTarget]", ["tooltipTarget"], { "showDelay": { "alias": "showDelay"; "required": false; }; "hideDelay": { "alias": "hideDelay"; "required": false; }; "hasArrow": { "alias": "hasArrow"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "closeTemplate": { "alias": "closeButtonTemplate"; "required": false; }; "positionSettings": { "alias": "positionSettings"; "required": false; }; "tooltipDisabled": { "alias": "tooltipDisabled"; "required": false; }; "target": { "alias": "igxTooltipTarget"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "tooltipShow": "tooltipShow"; "tooltipHide": "tooltipHide"; }, never, never, true, never>;
12288
12463
  static ngAcceptInputType_tooltipDisabled: unknown;
12289
12464
  }
12290
12465
 
12466
+ interface ArrowFit {
12467
+ /** Rectangle of the arrow element. */
12468
+ readonly arrowRect?: Partial<DOMRect>;
12469
+ /** Rectangle of the tooltip element. */
12470
+ readonly tooltipRect?: Partial<DOMRect>;
12471
+ /** Direction in which the arrow points. */
12472
+ readonly direction?: 'top' | 'bottom' | 'right' | 'left';
12473
+ /** Vertical offset of the arrow element from the tooltip */
12474
+ top?: number;
12475
+ /** Horizontal offset of the arrow element from the tooltip */
12476
+ left?: number;
12477
+ }
12478
+ declare class TooltipPositionStrategy extends AutoPositionStrategy {
12479
+ private _placement;
12480
+ constructor(settings?: PositionSettings);
12481
+ position(contentElement: HTMLElement, size: Size, document?: Document, initialCall?: boolean, target?: Point | HTMLElement): void;
12482
+ protected fitInViewport(element: HTMLElement, connectedFit: ConnectedFit): void;
12483
+ /**
12484
+ * Sets the position of the arrow relative to the tooltip element.
12485
+ *
12486
+ * @param arrow the arrow element of the tooltip.
12487
+ * @param arrowFit arrowFit object containing all necessary parameters.
12488
+ */
12489
+ positionArrow(arrow: HTMLElement, arrowFit: ArrowFit): void;
12490
+ /**
12491
+ * Resets the element's top / bottom / left / right style properties.
12492
+ *
12493
+ * @param arrow the arrow element of the tooltip.
12494
+ */
12495
+ private resetArrowPositionStyles;
12496
+ /**
12497
+ * Gets values for `top` or `left` position styles.
12498
+ *
12499
+ * @param arrowRect
12500
+ * @param tooltipRect
12501
+ * @param positionProperty - for which position property to get style values.
12502
+ */
12503
+ private getArrowPositionStyles;
12504
+ /**
12505
+ * Configure arrow class and arrowFit.
12506
+ *
12507
+ * @param tooltip tooltip element.
12508
+ */
12509
+ private configArrow;
12510
+ /**
12511
+ * Gets the placement that correspond to the given position settings.
12512
+ * Returns `undefined` if the position settings do not match any of the predefined placement values.
12513
+ *
12514
+ * @param settings Position settings for which to get the corresponding placement.
12515
+ */
12516
+ private getPlacementByPositionSettings;
12517
+ /**
12518
+ * Gets opposite direction, e.g., top -> bottom
12519
+ *
12520
+ * @param direction for which direction to return its opposite.
12521
+ * @returns `top` | `bottom` | `right` | `left`
12522
+ */
12523
+ private getOppositeDirection;
12524
+ }
12525
+
12291
12526
  declare const IGX_TOOLTIP_DIRECTIVES: readonly [typeof IgxTooltipDirective, typeof IgxTooltipTargetDirective];
12292
12527
 
12293
12528
  interface IgxDateTimeEditorEventArgs {
@@ -13681,6 +13916,14 @@ declare class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
13681
13916
  * @hidden
13682
13917
  */
13683
13918
  get pinnedColumns(): ColumnType[];
13919
+ /**
13920
+ * @hidden
13921
+ */
13922
+ get pinnedStartColumns(): ColumnType[];
13923
+ /**
13924
+ * @hidden
13925
+ */
13926
+ get pinnedEndColumns(): ColumnType[];
13684
13927
  /**
13685
13928
  * @hidden
13686
13929
  */
@@ -15522,7 +15765,9 @@ declare class CalendarDay {
15522
15765
  get weekend(): boolean;
15523
15766
  equalTo(value: DayParameter): boolean;
15524
15767
  greaterThan(value: DayParameter): boolean;
15768
+ greaterThanOrEqual(value: DayParameter): boolean;
15525
15769
  lessThan(value: DayParameter): boolean;
15770
+ lessThanOrEqual(value: DayParameter): boolean;
15526
15771
  toString(): string;
15527
15772
  }
15528
15773
 
@@ -18305,14 +18550,24 @@ declare class IgxCarouselComponent extends IgxCarouselComponentBase implements O
18305
18550
  */
18306
18551
  remove(slide: IgxSlideComponent): void;
18307
18552
  /**
18308
- * Kicks in a transition for a given slide with a given `direction`.
18553
+ * Switches to the passed-in slide with a given `direction`.
18309
18554
  * ```typescript
18310
- * this.carousel.select(this.carousel.get(2), Direction.NEXT);
18555
+ * const slide = this.carousel.get(2);
18556
+ * this.carousel.select(slide, Direction.NEXT);
18311
18557
  * ```
18312
18558
  *
18313
18559
  * @memberOf IgxCarouselComponent
18314
18560
  */
18315
18561
  select(slide: IgxSlideComponent, direction?: Direction): void;
18562
+ /**
18563
+ * Switches to slide by index with a given `direction`.
18564
+ * ```typescript
18565
+ * this.carousel.select(2, Direction.NEXT);
18566
+ * ```
18567
+ *
18568
+ * @memberOf IgxCarouselComponent
18569
+ */
18570
+ select(index: number, direction?: Direction): void;
18316
18571
  /**
18317
18572
  * Transitions to the next slide in the carousel.
18318
18573
  * ```typescript
@@ -20744,6 +20999,12 @@ declare const PickerHeaderOrientation: {
20744
20999
  readonly Vertical: "vertical";
20745
21000
  };
20746
21001
  type PickerHeaderOrientation = (typeof PickerHeaderOrientation)[keyof typeof PickerHeaderOrientation];
21002
+ /** Calendar orientation. */
21003
+ declare const PickerCalendarOrientation: {
21004
+ readonly Horizontal: "horizontal";
21005
+ readonly Vertical: "vertical";
21006
+ };
21007
+ type PickerCalendarOrientation = (typeof PickerCalendarOrientation)[keyof typeof PickerCalendarOrientation];
20747
21008
  /**
20748
21009
  * This enumeration is used to configure whether the date/time picker has an editable input with drop down
20749
21010
  * or is readonly - the date/time is selected only through a dialog.
@@ -20759,6 +21020,11 @@ interface DateRange {
20759
21020
  start: Date | string;
20760
21021
  end: Date | string;
20761
21022
  }
21023
+ /** Represents a range between two dates and a label used for predefined and custom date ranges. */
21024
+ interface CustomDateRange {
21025
+ label: string;
21026
+ dateRange: DateRange;
21027
+ }
20762
21028
  /** @hidden @internal */
20763
21029
  declare class DateRangePickerFormatPipe implements PipeTransform {
20764
21030
  transform(values: DateRange, appliedFormat?: string, locale?: string, formatter?: (_: DateRange) => string): string;
@@ -20919,6 +21185,24 @@ declare abstract class PickerBaseDirective implements IToggleView, EditorProvide
20919
21185
  * ```
20920
21186
  */
20921
21187
  mode: PickerInteractionMode;
21188
+ /**
21189
+ * Gets/Sets the orientation of the `IgxDatePickerComponent` header.
21190
+ *
21191
+ * @example
21192
+ * ```html
21193
+ * <igx-date-picker headerOrientation="vertical"></igx-date-picker>
21194
+ * ```
21195
+ */
21196
+ headerOrientation: PickerHeaderOrientation;
21197
+ /**
21198
+ * Gets/Sets whether the header is hidden in dialog mode.
21199
+ *
21200
+ * @example
21201
+ * ```html
21202
+ * <igx-date-picker mode="dialog" [hideHeader]="true"></igx-date-picker>
21203
+ * ```
21204
+ */
21205
+ hideHeader: boolean;
20922
21206
  /**
20923
21207
  * Overlay settings used to display the pop-up element.
20924
21208
  *
@@ -21079,7 +21363,8 @@ declare abstract class PickerBaseDirective implements IToggleView, EditorProvide
21079
21363
  abstract close(): void;
21080
21364
  abstract getEditElement(): HTMLInputElement;
21081
21365
  static ɵfac: i0.ɵɵFactoryDeclaration<PickerBaseDirective, [null, null, { optional: true; }]>;
21082
- static ɵdir: i0.ɵɵDirectiveDeclaration<PickerBaseDirective, never, never, { "inputFormat": { "alias": "inputFormat"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "overlaySettings": { "alias": "overlaySettings"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "type": { "alias": "type"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, { "opening": "opening"; "opened": "opened"; "closing": "closing"; "closed": "closed"; }, ["toggleComponents", "prefixes", "suffixes"], never, true, never>;
21366
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PickerBaseDirective, never, never, { "inputFormat": { "alias": "inputFormat"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "headerOrientation": { "alias": "headerOrientation"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "overlaySettings": { "alias": "overlaySettings"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "weekStart": { "alias": "weekStart"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "type": { "alias": "type"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, { "opening": "opening"; "opened": "opened"; "closing": "closing"; "closed": "closed"; }, ["toggleComponents", "prefixes", "suffixes"], never, true, never>;
21367
+ static ngAcceptInputType_hideHeader: unknown;
21083
21368
  static ngAcceptInputType_disabled: unknown;
21084
21369
  }
21085
21370
 
@@ -21142,6 +21427,13 @@ declare class IgxDatePickerComponent extends PickerBaseDirective implements Cont
21142
21427
  * ```
21143
21428
  */
21144
21429
  displayMonthsCount: number;
21430
+ /**
21431
+ * Gets/Sets the orientation of the multiple months displayed in the picker's calendar's days view.
21432
+ *
21433
+ * @example
21434
+ * <igx-date-picker orientation="vertical"></igx-date-picker>
21435
+ */
21436
+ orientation: PickerCalendarOrientation;
21145
21437
  /**
21146
21438
  * Show/hide week numbers
21147
21439
  *
@@ -21151,6 +21443,12 @@ declare class IgxDatePickerComponent extends PickerBaseDirective implements Cont
21151
21443
  * ``
21152
21444
  */
21153
21445
  showWeekNumbers: boolean;
21446
+ /**
21447
+ * Gets/Sets the date which is shown in the calendar picker and is highlighted.
21448
+ * By default it is the current date, or the value of the picker, if set.
21449
+ */
21450
+ get activeDate(): Date;
21451
+ set activeDate(value: Date);
21154
21452
  /**
21155
21453
  * Gets/Sets a custom formatter function on the selected or passed date.
21156
21454
  *
@@ -21160,15 +21458,6 @@ declare class IgxDatePickerComponent extends PickerBaseDirective implements Cont
21160
21458
  * ```
21161
21459
  */
21162
21460
  formatter: (val: Date) => string;
21163
- /**
21164
- * Gets/Sets the orientation of the `IgxDatePickerComponent` header.
21165
- *
21166
- * @example
21167
- * ```html
21168
- * <igx-date-picker headerOrientation="vertical"></igx-date-picker>
21169
- * ```
21170
- */
21171
- headerOrientation: PickerHeaderOrientation;
21172
21461
  /**
21173
21462
  * Gets/Sets the today button's label.
21174
21463
  *
@@ -21349,13 +21638,13 @@ declare class IgxDatePickerComponent extends PickerBaseDirective implements Cont
21349
21638
  private _dateValue;
21350
21639
  private _overlayId;
21351
21640
  private _value;
21352
- private _targetViewDate;
21353
21641
  private _ngControl;
21354
21642
  private _statusChanges$;
21355
21643
  private _calendar;
21356
21644
  private _calendarContainer?;
21357
21645
  private _specialDates;
21358
21646
  private _disabledDates;
21647
+ private _activeDate;
21359
21648
  private _overlaySubFilter;
21360
21649
  private _dropDownOverlaySettings;
21361
21650
  private _dialogOverlaySettings;
@@ -21493,16 +21782,15 @@ declare class IgxDatePickerComponent extends PickerBaseDirective implements Cont
21493
21782
  private getMinMaxDates;
21494
21783
  private setDisabledDates;
21495
21784
  private _initializeCalendarContainer;
21496
- private setCalendarViewDate;
21497
21785
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDatePickerComponent, [null, null, null, null, null, null, null, { optional: true; }]>;
21498
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxDatePickerComponent, "igx-date-picker", never, { "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "headerOrientation": { "alias": "headerOrientation"; "required": false; }; "todayButtonLabel": { "alias": "todayButtonLabel"; "required": false; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; }; "spinLoop": { "alias": "spinLoop"; "required": false; }; "spinDelta": { "alias": "spinDelta"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "id": { "alias": "id"; "required": false; }; "formatViews": { "alias": "formatViews"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "calendarFormat": { "alias": "calendarFormat"; "required": false; }; "value": { "alias": "value"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "valueChange": "valueChange"; "validationFailed": "validationFailed"; }, ["label", "headerTitleTemplate", "headerTemplate", "subheaderTemplate", "pickerActions", "clearComponents"], ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
21786
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxDatePickerComponent, "igx-date-picker", never, { "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "activeDate": { "alias": "activeDate"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "todayButtonLabel": { "alias": "todayButtonLabel"; "required": false; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; }; "spinLoop": { "alias": "spinLoop"; "required": false; }; "spinDelta": { "alias": "spinDelta"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "id": { "alias": "id"; "required": false; }; "formatViews": { "alias": "formatViews"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "calendarFormat": { "alias": "calendarFormat"; "required": false; }; "value": { "alias": "value"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "valueChange": "valueChange"; "validationFailed": "validationFailed"; }, ["label", "headerTitleTemplate", "headerTemplate", "subheaderTemplate", "pickerActions", "clearComponents"], ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
21499
21787
  static ngAcceptInputType_hideOutsideDays: unknown;
21500
21788
  static ngAcceptInputType_showWeekNumbers: unknown;
21501
21789
  static ngAcceptInputType_spinLoop: unknown;
21502
21790
  static ngAcceptInputType_readOnly: unknown;
21503
21791
  }
21504
21792
 
21505
- declare const IGX_DATE_PICKER_DIRECTIVES: readonly [typeof IgxDatePickerComponent, typeof IgxPickerToggleComponent, typeof IgxPickerClearComponent, typeof IgxPickerActionsDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective];
21793
+ declare const IGX_DATE_PICKER_DIRECTIVES: readonly [typeof IgxDatePickerComponent, typeof IgxPickerToggleComponent, typeof IgxPickerClearComponent, typeof IgxPickerActionsDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective, typeof IgxCalendarHeaderTemplateDirective, typeof IgxCalendarSubheaderTemplateDirective, typeof IgxCalendarHeaderTitleTemplateDirective];
21506
21794
 
21507
21795
  /**
21508
21796
  * **Ignite UI for Angular Dialog Window** -
@@ -23564,6 +23852,19 @@ declare class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnT
23564
23852
  * @memberof IgxColumnComponent
23565
23853
  */
23566
23854
  get index(): number;
23855
+ /**
23856
+ * Gets the pinning position of the column.
23857
+ * ```typescript
23858
+ * let pinningPosition = this.column.pinningPosition;
23859
+ */
23860
+ get pinningPosition(): ColumnPinningPosition;
23861
+ /**
23862
+ * Sets the pinning position of the column.
23863
+ *```html
23864
+ * <igx-column [pinningPosition]="1"></igx-column>
23865
+ * ```
23866
+ */
23867
+ set pinningPosition(value: ColumnPinningPosition);
23567
23868
  /**
23568
23869
  * Gets whether the column is `pinned`.
23569
23870
  * ```typescript
@@ -24033,6 +24334,7 @@ declare class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnT
24033
24334
  */
24034
24335
  protected _applySelectableClass: boolean;
24035
24336
  protected _vIndex: number;
24337
+ protected _pinningPosition: any;
24036
24338
  /**
24037
24339
  * @hidden
24038
24340
  */
@@ -24168,20 +24470,19 @@ declare class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnT
24168
24470
  /** @hidden @internal **/
24169
24471
  getResizableColUnderEnd(): MRLResizeColumnInfo[];
24170
24472
  /**
24171
- * Pins the column at the provided index in the pinned area.
24473
+ * Pins the column in the specified position at the provided index in that pinned area.
24172
24474
  * Defaults to index `0` if not provided, or to the initial index in the pinned area.
24173
24475
  * Returns `true` if the column is successfully pinned. Returns `false` if the column cannot be pinned.
24174
24476
  * Column cannot be pinned if:
24175
24477
  * - Is already pinned
24176
24478
  * - index argument is out of range
24177
- * - The pinned area exceeds 80% of the grid width
24178
24479
  * ```typescript
24179
24480
  * let success = this.column.pin();
24180
24481
  * ```
24181
24482
  *
24182
24483
  * @memberof IgxColumnComponent
24183
24484
  */
24184
- pin(index?: number): boolean;
24485
+ pin(index?: number, pinningPosition?: ColumnPinningPosition): boolean;
24185
24486
  /**
24186
24487
  * Unpins the column and place it at the provided index in the unpinned area.
24187
24488
  * Defaults to index `0` if not provided, or to the initial index in the unpinned area.
@@ -24318,7 +24619,7 @@ declare class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnT
24318
24619
  */
24319
24620
  set applySelectableClass(value: boolean);
24320
24621
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxColumnComponent, [null, { optional: true; self: true; }, null, null]>;
24321
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxColumnComponent, "igx-column", never, { "field": { "alias": "field"; "required": false; }; "header": { "alias": "header"; "required": false; }; "title": { "alias": "title"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "autosizeHeader": { "alias": "autosizeHeader"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "disableHiding": { "alias": "disableHiding"; "required": false; }; "disablePinning": { "alias": "disablePinning"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "headerClasses": { "alias": "headerClasses"; "required": false; }; "headerStyles": { "alias": "headerStyles"; "required": false; }; "headerGroupClasses": { "alias": "headerGroupClasses"; "required": false; }; "headerGroupStyles": { "alias": "headerGroupStyles"; "required": false; }; "cellClasses": { "alias": "cellClasses"; "required": false; }; "cellStyles": { "alias": "cellStyles"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "summaryFormatter": { "alias": "summaryFormatter"; "required": false; }; "filteringIgnoreCase": { "alias": "filteringIgnoreCase"; "required": false; }; "sortingIgnoreCase": { "alias": "sortingIgnoreCase"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "dataType": { "alias": "dataType"; "required": false; }; "collapsibleIndicatorTemplate": { "alias": "collapsibleIndicatorTemplate"; "required": false; }; "rowEnd": { "alias": "rowEnd"; "required": false; }; "colEnd": { "alias": "colEnd"; "required": false; }; "rowStart": { "alias": "rowStart"; "required": false; }; "colStart": { "alias": "colStart"; "required": false; }; "additionalTemplateContext": { "alias": "additionalTemplateContext"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "pinned": { "alias": "pinned"; "required": false; }; "summaries": { "alias": "summaries"; "required": false; }; "disabledSummaries": { "alias": "disabledSummaries"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "sortStrategy": { "alias": "sortStrategy"; "required": false; }; "groupingComparer": { "alias": "groupingComparer"; "required": false; }; "summaryTemplate": { "alias": "summaryTemplate"; "required": false; }; "bodyTemplate": { "alias": "cellTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "inlineEditorTemplate": { "alias": "cellEditorTemplate"; "required": false; }; "errorTemplate": { "alias": "errorTemplate"; "required": false; }; "filterCellTemplate": { "alias": "filterCellTemplate"; "required": false; }; "visibleWhenCollapsed": { "alias": "visibleWhenCollapsed"; "required": false; }; "pipeArgs": { "alias": "pipeArgs"; "required": false; }; "editorOptions": { "alias": "editorOptions"; "required": false; }; }, { "hiddenChange": "hiddenChange"; "expandedChange": "expandedChange"; "collapsibleChange": "collapsibleChange"; "visibleWhenCollapsedChange": "visibleWhenCollapsedChange"; "columnChange": "columnChange"; "widthChange": "widthChange"; "pinnedChange": "pinnedChange"; }, ["filterCellTemplateDirective", "summaryTemplateDirective", "cellTemplate", "cellValidationErrorTemplate", "editorTemplate", "collapseIndicatorTemplate", "headTemplate"], never, true, never>;
24622
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxColumnComponent, "igx-column", never, { "field": { "alias": "field"; "required": false; }; "header": { "alias": "header"; "required": false; }; "title": { "alias": "title"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "autosizeHeader": { "alias": "autosizeHeader"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "disableHiding": { "alias": "disableHiding"; "required": false; }; "disablePinning": { "alias": "disablePinning"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "headerClasses": { "alias": "headerClasses"; "required": false; }; "headerStyles": { "alias": "headerStyles"; "required": false; }; "headerGroupClasses": { "alias": "headerGroupClasses"; "required": false; }; "headerGroupStyles": { "alias": "headerGroupStyles"; "required": false; }; "cellClasses": { "alias": "cellClasses"; "required": false; }; "cellStyles": { "alias": "cellStyles"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "summaryFormatter": { "alias": "summaryFormatter"; "required": false; }; "filteringIgnoreCase": { "alias": "filteringIgnoreCase"; "required": false; }; "sortingIgnoreCase": { "alias": "sortingIgnoreCase"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "dataType": { "alias": "dataType"; "required": false; }; "collapsibleIndicatorTemplate": { "alias": "collapsibleIndicatorTemplate"; "required": false; }; "rowEnd": { "alias": "rowEnd"; "required": false; }; "colEnd": { "alias": "colEnd"; "required": false; }; "rowStart": { "alias": "rowStart"; "required": false; }; "colStart": { "alias": "colStart"; "required": false; }; "additionalTemplateContext": { "alias": "additionalTemplateContext"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "pinningPosition": { "alias": "pinningPosition"; "required": false; }; "pinned": { "alias": "pinned"; "required": false; }; "summaries": { "alias": "summaries"; "required": false; }; "disabledSummaries": { "alias": "disabledSummaries"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "sortStrategy": { "alias": "sortStrategy"; "required": false; }; "groupingComparer": { "alias": "groupingComparer"; "required": false; }; "summaryTemplate": { "alias": "summaryTemplate"; "required": false; }; "bodyTemplate": { "alias": "cellTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "inlineEditorTemplate": { "alias": "cellEditorTemplate"; "required": false; }; "errorTemplate": { "alias": "errorTemplate"; "required": false; }; "filterCellTemplate": { "alias": "filterCellTemplate"; "required": false; }; "visibleWhenCollapsed": { "alias": "visibleWhenCollapsed"; "required": false; }; "pipeArgs": { "alias": "pipeArgs"; "required": false; }; "editorOptions": { "alias": "editorOptions"; "required": false; }; }, { "hiddenChange": "hiddenChange"; "expandedChange": "expandedChange"; "collapsibleChange": "collapsibleChange"; "visibleWhenCollapsedChange": "visibleWhenCollapsedChange"; "columnChange": "columnChange"; "widthChange": "widthChange"; "pinnedChange": "pinnedChange"; }, ["filterCellTemplateDirective", "summaryTemplateDirective", "cellTemplate", "cellValidationErrorTemplate", "editorTemplate", "collapseIndicatorTemplate", "headTemplate"], never, true, never>;
24322
24623
  static ngAcceptInputType_sortable: unknown;
24323
24624
  static ngAcceptInputType_groupable: unknown;
24324
24625
  static ngAcceptInputType_editable: unknown;
@@ -28798,17 +29099,6 @@ declare class IgxTimePickerComponent extends PickerBaseDirective implements IgxT
28798
29099
  * ```
28799
29100
  */
28800
29101
  formatter: (val: Date) => string;
28801
- /**
28802
- * Sets the orientation of the picker's header.
28803
- *
28804
- * @remarks
28805
- * Available in dialog mode only. Default value is `horizontal`.
28806
- *
28807
- * ```html
28808
- * <igx-time-picker [headerOrientation]="'vertical'"></igx-time-picker>
28809
- * ```
28810
- */
28811
- headerOrientation: PickerHeaderOrientation;
28812
29102
  /** @hidden @internal */
28813
29103
  readOnly: boolean;
28814
29104
  /**
@@ -29115,7 +29405,7 @@ declare class IgxTimePickerComponent extends PickerBaseDirective implements IgxT
29115
29405
  private subscribeToDateEditorEvents;
29116
29406
  private subscribeToToggleDirectiveEvents;
29117
29407
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxTimePickerComponent, [null, null, { optional: true; }, null, null, null]>;
29118
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxTimePickerComponent, "igx-time-picker", never, { "id": { "alias": "id"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "inputFormat": { "alias": "inputFormat"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "spinLoop": { "alias": "spinLoop"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "headerOrientation": { "alias": "headerOrientation"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "okButtonLabel": { "alias": "okButtonLabel"; "required": false; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; }; "itemsDelta": { "alias": "itemsDelta"; "required": false; }; }, { "selected": "selected"; "valueChange": "valueChange"; "validationFailed": "validationFailed"; }, ["label", "timePickerActionsDirective", "clearComponents"], ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
29408
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxTimePickerComponent, "igx-time-picker", never, { "id": { "alias": "id"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "inputFormat": { "alias": "inputFormat"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "spinLoop": { "alias": "spinLoop"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "okButtonLabel": { "alias": "okButtonLabel"; "required": false; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; }; "itemsDelta": { "alias": "itemsDelta"; "required": false; }; }, { "selected": "selected"; "valueChange": "valueChange"; "validationFailed": "validationFailed"; }, ["label", "timePickerActionsDirective", "clearComponents"], ["[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
29119
29409
  static ngAcceptInputType_spinLoop: unknown;
29120
29410
  static ngAcceptInputType_readOnly: unknown;
29121
29411
  }
@@ -29334,8 +29624,10 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
29334
29624
  protected cdr: ChangeDetectorRef;
29335
29625
  /** The grid component containing this element. */
29336
29626
  grid: GridType;
29337
- /** Pinned columns of the grid. */
29338
- pinnedColumnCollection: ColumnType[];
29627
+ /** Pinned columns of the grid at start. */
29628
+ pinnedStartColumnCollection: ColumnType[];
29629
+ /** Pinned columns of the grid at end. */
29630
+ pinnedEndColumnCollection: ColumnType[];
29339
29631
  /** Unpinned columns of the grid. */
29340
29632
  unpinnedColumnCollection: ColumnType[];
29341
29633
  get activeDescendant(): string;
@@ -29417,7 +29709,7 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
29417
29709
  /** state persistence switching all pinned columns resets collection */
29418
29710
  protected trackPinnedColumn: typeof trackByIdentity;
29419
29711
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderRowComponent, never>;
29420
- 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; }; "hasMRL": { "alias": "hasMRL"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
29712
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderRowComponent, "igx-grid-header-row", never, { "grid": { "alias": "grid"; "required": false; }; "pinnedStartColumnCollection": { "alias": "pinnedStartColumnCollection"; "required": false; }; "pinnedEndColumnCollection": { "alias": "pinnedEndColumnCollection"; "required": false; }; "unpinnedColumnCollection": { "alias": "unpinnedColumnCollection"; "required": false; }; "hasMRL": { "alias": "hasMRL"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
29421
29713
  static ngAcceptInputType_hasMRL: unknown;
29422
29714
  }
29423
29715
 
@@ -30181,12 +30473,21 @@ declare class IgxSummaryRowComponent implements DoCheck {
30181
30473
  * @hidden
30182
30474
  */
30183
30475
  get pinnedColumns(): ColumnType[];
30476
+ /**
30477
+ * @hidden
30478
+ */
30479
+ get pinnedStartColumns(): ColumnType[];
30480
+ /**
30481
+ * @hidden
30482
+ */
30483
+ get pinnedEndColumns(): ColumnType[];
30184
30484
  /**
30185
30485
  * @hidden
30186
30486
  */
30187
30487
  get unpinnedColumns(): ColumnType[];
30188
- getContext(row: any): {
30488
+ getContext(row: any, cols: any): {
30189
30489
  $implicit: any;
30490
+ columns: any;
30190
30491
  };
30191
30492
  /** state persistence switching all pinned columns resets collection */
30192
30493
  protected trackPinnedColumn: typeof trackByIdentity;
@@ -30422,7 +30723,6 @@ declare class IgxGridRowComponent extends IgxRowDirective {
30422
30723
  $implicit: any;
30423
30724
  row: any;
30424
30725
  };
30425
- get mrlRightPinnedOffset(): string;
30426
30726
  getContextMRL(pinnedCols: any, row: any): {
30427
30727
  $implicit: any;
30428
30728
  row: any;
@@ -32014,11 +32314,6 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
32014
32314
  * ```
32015
32315
  */
32016
32316
  set headSelectorTemplate(template: TemplateRef<IgxHeadSelectorTemplateContext>);
32017
- /**
32018
- * @hidden
32019
- * @internal
32020
- */
32021
- get isPinningToStart(): boolean;
32022
32317
  /**
32023
32318
  * @hidden
32024
32319
  * @internal
@@ -32307,6 +32602,14 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
32307
32602
  * @hidden
32308
32603
  */
32309
32604
  protected _pinnedColumns: IgxColumnComponent[];
32605
+ /**
32606
+ * @hidden
32607
+ */
32608
+ protected _pinnedStartColumns: IgxColumnComponent[];
32609
+ /**
32610
+ * @hidden
32611
+ */
32612
+ protected _pinnedEndColumns: IgxColumnComponent[];
32310
32613
  /**
32311
32614
  * @hidden
32312
32615
  */
@@ -32411,7 +32714,8 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
32411
32714
  private _totalWidth;
32412
32715
  private _pinnedVisible;
32413
32716
  private _unpinnedVisible;
32414
- private _pinnedWidth;
32717
+ private _pinnedStartWidth;
32718
+ private _pinnedEndWidth;
32415
32719
  private _unpinnedWidth;
32416
32720
  private _visibleColumns;
32417
32721
  private _columnGroups;
@@ -32845,7 +33149,9 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
32845
33149
  */
32846
33150
  get defaultHeaderGroupMinWidth(): number;
32847
33151
  /** @hidden @internal */
32848
- get pinnedWidth(): number;
33152
+ get pinnedStartWidth(): number;
33153
+ /** @hidden @internal */
33154
+ get pinnedEndWidth(): number;
32849
33155
  /** @hidden @internal */
32850
33156
  get unpinnedWidth(): number;
32851
33157
  /**
@@ -32884,6 +33190,24 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
32884
33190
  * ```
32885
33191
  */
32886
33192
  get pinnedColumns(): IgxColumnComponent[];
33193
+ /**
33194
+ * Gets an array of the pinned to the left `IgxColumnComponent`s.
33195
+ *
33196
+ * @example
33197
+ * ```typescript
33198
+ * const pinnedColumns = this.grid.pinnedStartColumns.
33199
+ * ```
33200
+ */
33201
+ get pinnedStartColumns(): IgxColumnComponent[];
33202
+ /**
33203
+ * Gets an array of the pinned to the right `IgxColumnComponent`s.
33204
+ *
33205
+ * @example
33206
+ * ```typescript
33207
+ * const pinnedColumns = this.grid.pinnedEndColumns.
33208
+ * ```
33209
+ */
33210
+ get pinnedEndColumns(): IgxColumnComponent[];
32887
33211
  /**
32888
33212
  * Gets an array of the pinned `IgxRowComponent`s.
32889
33213
  *
@@ -33188,8 +33512,9 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
33188
33512
  * ```
33189
33513
  * @param columnName
33190
33514
  * @param index
33515
+ * @param pinningPosition
33191
33516
  */
33192
- pinColumn(columnName: string | IgxColumnComponent, index?: number): boolean;
33517
+ pinColumn(columnName: string | IgxColumnComponent, index?: number, pinningPosition?: ColumnPinningPosition): boolean;
33193
33518
  /**
33194
33519
  * Unpins a column by field name. Returns whether the operation is successful.
33195
33520
  *
@@ -33358,15 +33683,25 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
33358
33683
  */
33359
33684
  hasVerticalScroll(): boolean;
33360
33685
  /**
33361
- * Gets calculated width of the pinned area.
33686
+ * Gets calculated width of the pinned areas.
33362
33687
  *
33363
33688
  * @example
33364
33689
  * ```typescript
33365
- * const pinnedWidth = this.grid.getPinnedWidth();
33690
+ * const pinnedWidth = this.grid.getPinnedStartWidth();
33366
33691
  * ```
33367
33692
  * @param takeHidden If we should take into account the hidden columns in the pinned area.
33368
33693
  */
33369
- getPinnedWidth(takeHidden?: boolean): number;
33694
+ getPinnedStartWidth(takeHidden?: boolean): number;
33695
+ /**
33696
+ * Gets calculated width of the pinned areas.
33697
+ *
33698
+ * @example
33699
+ * ```typescript
33700
+ * const pinnedWidth = this.grid.getPinnedEndWidth();
33701
+ * ```
33702
+ * @param takeHidden If we should take into account the hidden columns in the pinned area.
33703
+ */
33704
+ getPinnedEndWidth(takeHidden?: boolean): number;
33370
33705
  /**
33371
33706
  * @hidden @internal
33372
33707
  */
@@ -35063,7 +35398,7 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
35063
35398
  /**
35064
35399
  * @hidden @internal
35065
35400
  */
35066
- get pinnedWidth(): number;
35401
+ get pinnedStartWidth(): number;
35067
35402
  /**
35068
35403
  * @hidden @internal
35069
35404
  */
@@ -35206,7 +35541,9 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
35206
35541
  /** @hidden @internal */
35207
35542
  get pivotContentCalcWidth(): number;
35208
35543
  /** @hidden @internal */
35209
- get pivotPinnedWidth(): number;
35544
+ get pivotPinnedStartWidth(): number;
35545
+ /** @hidden @internal */
35546
+ get pivotPinnedEndWidth(): number;
35210
35547
  /** @hidden @internal */
35211
35548
  get pivotUnpinnedWidth(): number;
35212
35549
  /** @hidden @internal */
@@ -35365,7 +35702,7 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
35365
35702
  /**
35366
35703
  * @hidden @internal
35367
35704
  */
35368
- getPinnedWidth(takeHidden?: boolean): number;
35705
+ getPinnedStartWidth(takeHidden?: boolean): number;
35369
35706
  /**
35370
35707
  * @hidden @internal
35371
35708
  */
@@ -42615,6 +42952,11 @@ declare const IGX_STEPPER_DIRECTIVES: readonly [typeof IgxStepComponent, typeof
42615
42952
  interface IDateRangePickerResourceStrings {
42616
42953
  igx_date_range_picker_date_separator?: string;
42617
42954
  igx_date_range_picker_done_button?: string;
42955
+ igx_date_range_picker_cancel_button?: string;
42956
+ igx_date_range_picker_last7Days?: string;
42957
+ igx_date_range_picker_currentMonth?: string;
42958
+ igx_date_range_picker_last30Days?: string;
42959
+ igx_date_range_picker_yearToDate?: string;
42618
42960
  }
42619
42961
  declare const DateRangePickerResourceStringsEN: IDateRangePickerResourceStrings;
42620
42962
 
@@ -42656,7 +42998,15 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42656
42998
  * <igx-date-range-picker [displayMonthsCount]="3"></igx-date-range-picker>
42657
42999
  * ```
42658
43000
  */
42659
- displayMonthsCount: number;
43001
+ get displayMonthsCount(): number;
43002
+ set displayMonthsCount(value: number);
43003
+ /**
43004
+ * Gets/Sets the orientation of the multiple months displayed in the picker's calendar's days view.
43005
+ *
43006
+ * @example
43007
+ * <igx-date-range-picker orientation="vertical"></igx-date-range-picker>
43008
+ */
43009
+ orientation: PickerCalendarOrientation;
42660
43010
  /**
42661
43011
  * Gets/Sets whether dates that are not part of the current month will be displayed.
42662
43012
  *
@@ -42700,6 +43050,20 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42700
43050
  */
42701
43051
  set doneButtonText(value: string);
42702
43052
  get doneButtonText(): string;
43053
+ /**
43054
+ * Overrides the default text of the calendar dialog **Cancel** button.
43055
+ *
43056
+ * @remarks
43057
+ * Defaults to the value from resource strings, `"Cancel"` for the built-in EN.
43058
+ * The button will only show up in `dialog` mode.
43059
+ *
43060
+ * @example
43061
+ * ```html
43062
+ * <igx-date-range-picker cancelButtonText="取消"></igx-date-range-picker>
43063
+ * ```
43064
+ */
43065
+ set cancelButtonText(value: string);
43066
+ get cancelButtonText(): string;
42703
43067
  /**
42704
43068
  * Custom overlay settings that should be used to display the calendar.
42705
43069
  *
@@ -42747,6 +43111,28 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42747
43111
  */
42748
43112
  set maxValue(value: Date | string);
42749
43113
  get maxValue(): Date | string;
43114
+ /**
43115
+ * Gets/Sets the disabled dates descriptors.
43116
+ *
43117
+ * @example
43118
+ * ```typescript
43119
+ * let disabledDates = this.dateRangePicker.disabledDates;
43120
+ * this.dateRangePicker.disabledDates = [ {type: DateRangeType.Weekends}, ...];
43121
+ * ```
43122
+ */
43123
+ get disabledDates(): DateRangeDescriptor[];
43124
+ set disabledDates(value: DateRangeDescriptor[]);
43125
+ /**
43126
+ * Gets/Sets the special dates descriptors.
43127
+ *
43128
+ * @example
43129
+ * ```typescript
43130
+ * let specialDates = this.dateRangePicker.specialDates;
43131
+ * this.dateRangePicker.specialDates = [ {type: DateRangeType.Weekends}, ... ];
43132
+ * ```
43133
+ */
43134
+ get specialDates(): DateRangeDescriptor[];
43135
+ set specialDates(value: DateRangeDescriptor[]);
42750
43136
  /**
42751
43137
  * An accessor that sets the resource strings.
42752
43138
  * By default it uses EN resources.
@@ -42799,6 +43185,24 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42799
43185
  * <igx-date-range-picker [(value)]="date"></igx-date-range-picker>
42800
43186
  * ```
42801
43187
  */
43188
+ /**
43189
+ * Whether to render built-in predefined ranges.
43190
+ *
43191
+ * @example
43192
+ * ```html
43193
+ * <igx-date-range-picker [(usePredefinedRanges)]="true"></igx-date-range-picker>
43194
+ * ``
43195
+ * */
43196
+ usePredefinedRanges: boolean;
43197
+ /**
43198
+ * Custom ranges rendered as chips.
43199
+ *
43200
+ * @example
43201
+ * ```html
43202
+ * <igx-date-range-picker [(usePredefinedRanges)]="true"></igx-date-range-picker>
43203
+ * ``
43204
+ */
43205
+ customRanges: CustomDateRange[];
42802
43206
  valueChange: EventEmitter<DateRange>;
42803
43207
  /** @hidden @internal */
42804
43208
  cssClass: string;
@@ -42811,10 +43215,19 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42811
43215
  pickerActions: IgxPickerActionsDirective;
42812
43216
  /** @hidden @internal */
42813
43217
  dateSeparatorTemplate: TemplateRef<any>;
43218
+ private headerTitleTemplate;
43219
+ private headerTemplate;
43220
+ private subheaderTemplate;
42814
43221
  /** @hidden @internal */
42815
43222
  get dateSeparator(): string;
42816
43223
  /** @hidden @internal */
42817
43224
  get appliedFormat(): string;
43225
+ /**
43226
+ * Gets/Sets the date which is shown in the calendar picker and is highlighted.
43227
+ * By default it is the current date, or the value of the picker, if set.
43228
+ */
43229
+ get activeDate(): Date;
43230
+ set activeDate(value: Date);
42818
43231
  /**
42819
43232
  * @example
42820
43233
  * ```html
@@ -42864,10 +43277,13 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42864
43277
  private get calendar();
42865
43278
  private get dropdownOverlaySettings();
42866
43279
  private get dialogOverlaySettings();
43280
+ private get _firstDefinedInRange();
42867
43281
  private _resourceStrings;
42868
43282
  private _doneButtonText;
43283
+ private _cancelButtonText;
42869
43284
  private _dateSeparator;
42870
43285
  private _value;
43286
+ private _originalValue;
42871
43287
  private _overlayId;
42872
43288
  private _ngControl;
42873
43289
  private _statusChanges$;
@@ -42875,6 +43291,10 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42875
43291
  private _calendarContainer?;
42876
43292
  private _positionSettings;
42877
43293
  private _focusedInput;
43294
+ private _displayMonthsCount;
43295
+ private _specialDates;
43296
+ private _disabledDates;
43297
+ private _activeDate;
42878
43298
  private _overlaySubFilter;
42879
43299
  private _dialogOverlaySettings;
42880
43300
  private _dropDownOverlaySettings;
@@ -42959,6 +43379,7 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42959
43379
  private handleSelection;
42960
43380
  private handleClosing;
42961
43381
  private subscribeToOverlayEvents;
43382
+ private isProjectedInputTarget;
42962
43383
  private updateValue;
42963
43384
  private updateValidityOnBlur;
42964
43385
  private updateDisabledState;
@@ -42967,7 +43388,6 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42967
43388
  private parseMaxValue;
42968
43389
  private updateCalendar;
42969
43390
  private swapEditorDates;
42970
- private valueInRange;
42971
43391
  private extractRange;
42972
43392
  private toRangeOfDates;
42973
43393
  private subscribeToDateEditorEvents;
@@ -42981,13 +43401,17 @@ declare class IgxDateRangePickerComponent extends PickerBaseDirective implements
42981
43401
  private updateInputFormat;
42982
43402
  private updateInputLocale;
42983
43403
  private _initializeCalendarContainer;
43404
+ private _setDisabledDates;
43405
+ private _getMinMaxDates;
43406
+ private _isValueInDisabledRange;
43407
+ private _setCalendarActiveDate;
42984
43408
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDateRangePickerComponent, [null, null, null, null, null, null, { optional: true; }]>;
42985
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxDateRangePickerComponent, "igx-date-range-picker", never, { "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "doneButtonText": { "alias": "doneButtonText"; "required": false; }; "overlaySettings": { "alias": "overlaySettings"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "inputFormat": { "alias": "inputFormat"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, ["label", "pickerActions", "dateSeparatorTemplate", "projectedInputs"], ["igx-date-single", "igx-date-range-start", "igx-date-range-end", "[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
43409
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxDateRangePickerComponent, "igx-date-range-picker", never, { "displayMonthsCount": { "alias": "displayMonthsCount"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "hideOutsideDays": { "alias": "hideOutsideDays"; "required": false; }; "formatter": { "alias": "formatter"; "required": false; }; "doneButtonText": { "alias": "doneButtonText"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; "overlaySettings": { "alias": "overlaySettings"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; "inputFormat": { "alias": "inputFormat"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "specialDates": { "alias": "specialDates"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "usePredefinedRanges": { "alias": "usePredefinedRanges"; "required": false; }; "customRanges": { "alias": "customRanges"; "required": false; }; "activeDate": { "alias": "activeDate"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, ["label", "pickerActions", "dateSeparatorTemplate", "headerTitleTemplate", "headerTemplate", "subheaderTemplate", "projectedInputs"], ["igx-date-single", "igx-date-range-start", "igx-date-range-end", "[igxLabel]", "igx-prefix,[igxPrefix]", "igx-suffix,[igxSuffix]", "igx-hint,[igxHint]"], true, never>;
42986
43410
  static ngAcceptInputType_hideOutsideDays: unknown;
42987
43411
  static ngAcceptInputType_showWeekNumbers: unknown;
42988
43412
  }
42989
43413
 
42990
- declare const IGX_DATE_RANGE_PICKER_DIRECTIVES: readonly [typeof IgxDateRangePickerComponent, typeof IgxPickerToggleComponent, typeof IgxDateRangeStartComponent, typeof IgxDateRangeEndComponent, typeof IgxDateRangeSeparatorDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective];
43414
+ declare const IGX_DATE_RANGE_PICKER_DIRECTIVES: readonly [typeof IgxDateRangePickerComponent, typeof IgxPickerToggleComponent, typeof IgxDateRangeStartComponent, typeof IgxDateRangeEndComponent, typeof IgxDateRangeSeparatorDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective, typeof IgxCalendarHeaderTemplateDirective, typeof IgxCalendarSubheaderTemplateDirective, typeof IgxCalendarHeaderTitleTemplateDirective];
42991
43415
 
42992
43416
  declare const IGX_TREE_DIRECTIVES: readonly [typeof IgxTreeComponent, typeof IgxTreeNodeComponent, typeof IgxTreeNodeLinkDirective, typeof IgxTreeExpandIndicatorDirective];
42993
43417
 
@@ -43176,7 +43600,7 @@ declare class IgxComboModule {
43176
43600
  */
43177
43601
  declare class IgxDatePickerModule {
43178
43602
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDatePickerModule, never>;
43179
- static ɵmod: i0.ɵɵNgModuleDeclaration<IgxDatePickerModule, never, [typeof IgxDatePickerComponent, typeof IgxPickerToggleComponent, typeof IgxPickerClearComponent, typeof IgxPickerActionsDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective], [typeof IgxDatePickerComponent, typeof IgxPickerToggleComponent, typeof IgxPickerClearComponent, typeof IgxPickerActionsDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective]>;
43603
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxDatePickerModule, never, [typeof IgxDatePickerComponent, typeof IgxPickerToggleComponent, typeof IgxPickerClearComponent, typeof IgxPickerActionsDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective, typeof IgxCalendarHeaderTemplateDirective, typeof IgxCalendarSubheaderTemplateDirective, typeof IgxCalendarHeaderTitleTemplateDirective], [typeof IgxDatePickerComponent, typeof IgxPickerToggleComponent, typeof IgxPickerClearComponent, typeof IgxPickerActionsDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective, typeof IgxCalendarHeaderTemplateDirective, typeof IgxCalendarSubheaderTemplateDirective, typeof IgxCalendarHeaderTitleTemplateDirective]>;
43180
43604
  static ɵinj: i0.ɵɵInjectorDeclaration<IgxDatePickerModule>;
43181
43605
  }
43182
43606
 
@@ -43186,7 +43610,7 @@ declare class IgxDatePickerModule {
43186
43610
  */
43187
43611
  declare class IgxDateRangePickerModule {
43188
43612
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDateRangePickerModule, never>;
43189
- static ɵmod: i0.ɵɵNgModuleDeclaration<IgxDateRangePickerModule, never, [typeof IgxDateRangePickerComponent, typeof IgxPickerToggleComponent, typeof IgxDateRangeStartComponent, typeof IgxDateRangeEndComponent, typeof IgxDateRangeSeparatorDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective], [typeof IgxDateRangePickerComponent, typeof IgxPickerToggleComponent, typeof IgxDateRangeStartComponent, typeof IgxDateRangeEndComponent, typeof IgxDateRangeSeparatorDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective]>;
43613
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxDateRangePickerModule, never, [typeof IgxDateRangePickerComponent, typeof IgxPickerToggleComponent, typeof IgxDateRangeStartComponent, typeof IgxDateRangeEndComponent, typeof IgxDateRangeSeparatorDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective, typeof IgxCalendarHeaderTemplateDirective, typeof IgxCalendarSubheaderTemplateDirective, typeof IgxCalendarHeaderTitleTemplateDirective], [typeof IgxDateRangePickerComponent, typeof IgxPickerToggleComponent, typeof IgxDateRangeStartComponent, typeof IgxDateRangeEndComponent, typeof IgxDateRangeSeparatorDirective, typeof IgxLabelDirective, typeof IgxPrefixDirective, typeof IgxSuffixDirective, typeof IgxHintDirective, typeof IgxCalendarHeaderTemplateDirective, typeof IgxCalendarSubheaderTemplateDirective, typeof IgxCalendarHeaderTitleTemplateDirective]>;
43190
43614
  static ɵinj: i0.ɵɵInjectorDeclaration<IgxDateRangePickerModule>;
43191
43615
  }
43192
43616
 
@@ -43649,5 +44073,5 @@ declare class IgxTreeModule {
43649
44073
  static ɵinj: i0.ɵɵInjectorDeclaration<IgxTreeModule>;
43650
44074
  }
43651
44075
 
43652
- export { AbsolutePosition, AbsoluteScrollStrategy, ActionStripResourceStringsEN, AutoPositionStrategy, BannerResourceStringsEN, BaseFilteringStrategy, BlockScrollStrategy, ButtonGroupAlignment, CachedDataCloneStrategy, Calendar, CalendarResourceStringsEN, CalendarSelection, CarouselAnimationType, CarouselHammerConfig, CarouselIndicatorsOrientation, CarouselResourceStringsEN, ChipResourceStringsEN, CloseScrollStrategy, ColumnDisplayOrder, ColumnPinningPosition, ComboResourceStringsEN, ConnectedPositioningStrategy, ContainerPositionStrategy, CsvFileTypes, DEFAULT_OWNER, DEFAULT_PIVOT_KEYS, DataType, DataUtil, DatePart, DatePickerResourceStringsEN, DateRangePickerFormatPipe, DateRangePickerResourceStringsEN, DateRangeType, DefaultDataCloneStrategy, DefaultPivotGridRecordSortingStrategy, DefaultPivotSortingStrategy, DefaultSortingStrategy, DimensionValuesFilteringStrategy, Direction, DragDirection, ElasticPositionStrategy, ExpansionPanelHeaderIconPosition, ExportHeaderType, ExportRecordType, ExpressionsTreeUtil, FilterMode, FilterUtil, FilteringExpressionsTree, FilteringExpressionsTreeType, FilteringLogic, FilteringStrategy, FormattedValuesFilteringStrategy, FormattedValuesSortingStrategy, GRID_LEVEL_COL, GRID_PARENT, GRID_ROOT_SUMMARY, GlobalPositionStrategy, GridColumnDataType, GridPagingMode, GridResourceStringsEN, GridSelectionMode, GridSummaryCalculationMode, GridSummaryPosition, GroupMemberCountSortingStrategy, GroupedRecords, HorizontalAlignment, HorizontalAnimationType, IGX_ACCORDION_DIRECTIVES, IGX_ACTION_STRIP_DIRECTIVES, IGX_BANNER_DIRECTIVES, IGX_BOTTOM_NAV_DIRECTIVES, IGX_BUTTON_GROUP_DIRECTIVES, IGX_CALENDAR_DIRECTIVES, IGX_CALENDAR_VIEW_ITEM, IGX_CARD_DIRECTIVES, IGX_CAROUSEL_DIRECTIVES, IGX_CHIPS_DIRECTIVES, IGX_CIRCULAR_PROGRESS_BAR_DIRECTIVES, IGX_COMBO_DIRECTIVES, IGX_DATE_PICKER_DIRECTIVES, IGX_DATE_RANGE_PICKER_DIRECTIVES, IGX_DIALOG_DIRECTIVES, IGX_DRAG_DROP_DIRECTIVES, IGX_DROP_DOWN_DIRECTIVES, IGX_EXPANSION_PANEL_DIRECTIVES, IGX_GRID_ACTION_STRIP_DIRECTIVES, IGX_GRID_BASE, IGX_GRID_COMMON_DIRECTIVES, IGX_GRID_DIRECTIVES, IGX_GRID_SERVICE_BASE, IGX_GRID_VALIDATION_DIRECTIVES, IGX_HIERARCHICAL_GRID_DIRECTIVES, IGX_INPUT_GROUP_DIRECTIVES, IGX_INPUT_GROUP_TYPE, IGX_LINEAR_PROGRESS_BAR_DIRECTIVES, IGX_LIST_DIRECTIVES, IGX_NAVBAR_DIRECTIVES, IGX_NAVIGATION_DRAWER_DIRECTIVES, IGX_PAGINATOR_DIRECTIVES, IGX_PIVOT_GRID_DIRECTIVES, IGX_PROGRESS_BAR_DIRECTIVES, IGX_QUERY_BUILDER_DIRECTIVES, IGX_RADIO_GROUP_DIRECTIVES, IGX_SELECT_DIRECTIVES, IGX_SIMPLE_COMBO_DIRECTIVES, IGX_SLIDER_DIRECTIVES, IGX_SPLITTER_DIRECTIVES, IGX_STEPPER_DIRECTIVES, IGX_TABS_DIRECTIVES, IGX_TIME_PICKER_DIRECTIVES, IGX_TOOLTIP_DIRECTIVES, IGX_TREE_DIRECTIVES, IGX_TREE_GRID_DIRECTIVES, ITreeGridAggregation, IgSizeDirective, IgcFormControlDirective, IgcFormsModule, IgxAccordionComponent, IgxAccordionModule, IgxActionStripComponent, IgxActionStripMenuItemDirective, IgxActionStripModule, IgxAdvancedFilteringDialogComponent, IgxAppendDropStrategy, IgxAutocompleteDirective, IgxAutocompleteModule, IgxAvatarComponent, IgxAvatarModule, IgxAvatarSize, IgxAvatarType, IgxBadgeComponent, IgxBadgeModule, IgxBadgeType, IgxBannerActionsDirective, IgxBannerComponent, IgxBannerModule, IgxBaseExporter, IgxBaseTransactionService, IgxBooleanFilteringOperand, IgxBottomNavComponent, IgxBottomNavContentComponent, IgxBottomNavHeaderComponent, IgxBottomNavHeaderIconDirective, IgxBottomNavHeaderLabelDirective, IgxBottomNavItemComponent, IgxBottomNavModule, IgxButtonDirective, IgxButtonGroupComponent, IgxButtonGroupModule, IgxButtonModule, IgxButtonType, IgxCSVTextDirective, IgxCalendarComponent, IgxCalendarHeaderTemplateDirective, IgxCalendarHeaderTitleTemplateDirective, IgxCalendarModule, IgxCalendarMonthDirective, IgxCalendarScrollPageDirective, IgxCalendarSubheaderTemplateDirective, IgxCalendarView, IgxCalendarViewBaseDirective, IgxCalendarYearDirective, IgxCardActionsComponent, IgxCardActionsLayout, IgxCardComponent, IgxCardContentDirective, IgxCardFooterDirective, IgxCardHeaderComponent, IgxCardHeaderSubtitleDirective, IgxCardHeaderTitleDirective, IgxCardMediaDirective, IgxCardModule, IgxCardThumbnailDirective, IgxCarouselComponent, IgxCarouselIndicatorDirective, IgxCarouselModule, IgxCarouselNextButtonDirective, IgxCarouselPrevButtonDirective, IgxCellEditorTemplateDirective, IgxCellFooterTemplateDirective, IgxCellHeaderTemplateDirective, IgxCellTemplateDirective, IgxCellValidationErrorDirective, IgxCheckboxComponent, IgxCheckboxModule, IgxChildGridRowComponent, IgxChipComponent, IgxChipTypeVariant, IgxChipsAreaComponent, IgxChipsModule, IgxCircularProgressBarComponent, IgxCollapsibleIndicatorTemplateDirective, IgxColumPatternValidatorDirective, IgxColumnActionsBaseDirective, IgxColumnActionsComponent, IgxColumnComponent, IgxColumnEmailValidatorDirective, IgxColumnGroupComponent, IgxColumnHidingDirective, IgxColumnLayoutComponent, IgxColumnMaxLengthValidatorDirective, IgxColumnMaxValidatorDirective, IgxColumnMinLengthValidatorDirective, IgxColumnMinValidatorDirective, IgxColumnPinningDirective, IgxColumnRequiredValidatorDirective, IgxComboAddItemDirective, IgxComboClearIconDirective, IgxComboComponent, IgxComboEmptyDirective, IgxComboFooterDirective, IgxComboHeaderDirective, IgxComboHeaderItemDirective, IgxComboItemDirective, IgxComboModule, IgxComboToggleIconDirective, IgxCsvExporterOptions, IgxCsvExporterService, IgxDataLoadingTemplateDirective, IgxDataRecordSorting, IgxDateFilteringOperand, IgxDatePickerComponent, IgxDatePickerModule, IgxDateRangeEndComponent, IgxDateRangeInputsBaseComponent, IgxDateRangePickerComponent, IgxDateRangePickerModule, IgxDateRangeSeparatorDirective, IgxDateRangeStartComponent, IgxDateSummaryOperand, IgxDateTimeEditorDirective, IgxDateTimeEditorModule, IgxDateTimeFilteringOperand, IgxDaysViewComponent, IgxDefaultDropStrategy, IgxDialogActionsDirective, IgxDialogComponent, IgxDialogModule, IgxDialogTitleDirective, IgxDividerDirective, IgxDividerModule, IgxDividerType, IgxDragDirective, IgxDragDropModule, IgxDragHandleDirective, IgxDragIgnoreDirective, IgxDragIndicatorIconDirective, IgxDragLocation, IgxDropDirective, IgxDropDownComponent, IgxDropDownGroupComponent, IgxDropDownItemComponent, IgxDropDownItemNavigationDirective, IgxDropDownModule, IgxEmptyListTemplateDirective, IgxExcelExporterOptions, IgxExcelExporterService, IgxExcelStyleClearFiltersComponent, IgxExcelStyleColumnOperationsTemplateDirective, IgxExcelStyleConditionalFilterComponent, IgxExcelStyleDateExpressionComponent, IgxExcelStyleFilterOperationsTemplateDirective, IgxExcelStyleHeaderComponent, IgxExcelStyleHeaderIconDirective, IgxExcelStyleHidingComponent, IgxExcelStyleLoadingValuesTemplateDirective, IgxExcelStyleMovingComponent, IgxExcelStylePinningComponent, IgxExcelStyleSearchComponent, IgxExcelStyleSelectingComponent, IgxExcelStyleSortingComponent, IgxExcelTextDirective, IgxExpansionPanelBodyComponent, IgxExpansionPanelComponent, IgxExpansionPanelDescriptionDirective, IgxExpansionPanelHeaderComponent, IgxExpansionPanelIconDirective, IgxExpansionPanelModule, IgxExpansionPanelTitleDirective, IgxExporterOptionsBase, IgxFilterCellTemplateDirective, IgxFilterDirective, IgxFilterModule, IgxFilterOptions, IgxFilterPipe, IgxFilteringOperand, IgxFlatTransactionFactory, IgxFlexDirective, IgxFocusDirective, IgxFocusModule, IgxFocusTrapDirective, IgxFocusTrapModule, IgxForOfContext, IgxForOfDirective, IgxForOfModule, IgxGridActionButtonComponent, IgxGridActionsBaseDirective, IgxGridCell, IgxGridComponent, IgxGridDetailTemplateDirective, IgxGridEditingActionsComponent, IgxGridEmptyTemplateDirective, IgxGridExcelStyleFilteringComponent, IgxGridFooterComponent, IgxGridForOfContext, IgxGridForOfDirective, IgxGridHeaderComponent, IgxGridHeaderGroupComponent, IgxGridHeaderRowComponent, IgxGridLoadingTemplateDirective, IgxGridModule, IgxGridPinningActionsComponent, IgxGridRow, IgxGridStateDirective, IgxGridToolbarActionsComponent, IgxGridToolbarAdvancedFilteringComponent, IgxGridToolbarComponent, IgxGridToolbarDirective, IgxGridToolbarExporterComponent, IgxGridToolbarHidingComponent, IgxGridToolbarPinningComponent, IgxGridToolbarTitleComponent, IgxGridTransaction, IgxGroupAreaDropDirective, IgxGroupByRow, IgxGroupByRowSelectorDirective, IgxGroupByRowTemplateDirective, IgxGroupedTreeGridSorting, IgxGrouping, IgxHeadSelectorDirective, IgxHeaderCollapsedIndicatorDirective, IgxHeaderExpandedIndicatorDirective, IgxHierarchicalGridComponent, IgxHierarchicalGridModule, IgxHierarchicalGridRow, IgxHierarchicalTransactionFactory, IgxHierarchicalTransactionService, IgxHintDirective, IgxIconButtonDirective, IgxIconComponent, IgxIconModule, IgxIconService, IgxInputDirective, IgxInputGroupComponent, IgxInputGroupEnum, IgxInputGroupModule, IgxInputState, IgxInsertDropStrategy, IgxItemListDirective, IgxLabelDirective, IgxLayoutDirective, IgxLayoutModule, IgxLinearProgressBarComponent, IgxListActionDirective, IgxListBaseDirective, IgxListComponent, IgxListItemComponent, IgxListItemLeftPanningTemplateDirective, IgxListItemRightPanningTemplateDirective, IgxListLineDirective, IgxListLineSubTitleDirective, IgxListLineTitleDirective, IgxListModule, IgxListPanState, IgxListThumbnailDirective, IgxMaskDirective, IgxMaskModule, IgxMonthPickerComponent, IgxMonthsViewComponent, IgxNavDrawerItemDirective, IgxNavDrawerMiniTemplateDirective, IgxNavDrawerTemplateDirective, IgxNavbarActionDirective, IgxNavbarComponent, IgxNavbarModule, IgxNavbarTitleDirective, IgxNavigationCloseDirective, IgxNavigationDrawerComponent, IgxNavigationDrawerModule, IgxNavigationService, IgxNavigationToggleDirective, IgxNumberFilteringOperand, IgxNumberSummaryOperand, IgxOverlayOutletDirective, IgxOverlayService, IgxPageNavigationComponent, IgxPageSizeSelectorComponent, IgxPaginatorComponent, IgxPaginatorContentDirective, IgxPaginatorDirective, IgxPaginatorModule, IgxPickerActionsDirective, IgxPickerClearComponent, IgxPickerToggleComponent, IgxPivotAggregate, IgxPivotDataSelectorComponent, IgxPivotDateAggregate, IgxPivotDateDimension, IgxPivotGridComponent, IgxPivotGridModule, IgxPivotGridRow, IgxPivotNumericAggregate, IgxPivotRowDimensionHeaderTemplateDirective, IgxPivotTimeAggregate, IgxPivotValueChipTemplateDirective, IgxPrefixDirective, IgxPrependDropStrategy, IgxProgressBarGradientDirective, IgxProgressBarModule, IgxProgressBarTextTemplateDirective, IgxProgressType, IgxQueryBuilderComponent, IgxQueryBuilderHeaderComponent, IgxQueryBuilderModule, IgxQueryBuilderSearchValueTemplateDirective, IgxRadioComponent, IgxRadioGroupDirective, IgxRadioModule, IgxRippleDirective, IgxRippleModule, IgxRowAddTextDirective, IgxRowCollapsedIndicatorDirective, IgxRowDirective, IgxRowDragGhostDirective, IgxRowEditActionsDirective, IgxRowEditTabStopDirective, IgxRowEditTextDirective, IgxRowExpandedIndicatorDirective, IgxRowIslandComponent, IgxRowSelectorDirective, IgxScrollInertiaDirective, IgxScrollInertiaModule, IgxSelectComponent, IgxSelectFooterDirective, IgxSelectGroupComponent, IgxSelectHeaderDirective, IgxSelectItemComponent, IgxSelectModule, IgxSelectToggleIconDirective, IgxSimpleComboComponent, IgxSimpleComboModule, IgxSlideComponent, IgxSliderComponent, IgxSliderModule, IgxSliderType, IgxSnackbarComponent, IgxSnackbarModule, IgxSortAscendingHeaderIconDirective, IgxSortDescendingHeaderIconDirective, IgxSortHeaderIconDirective, IgxSorting, IgxSplitBarComponent, IgxSplitterComponent, IgxSplitterModule, IgxSplitterPaneComponent, IgxStepActiveIndicatorDirective, IgxStepCompletedIndicatorDirective, IgxStepComponent, IgxStepContentDirective, IgxStepIndicatorDirective, IgxStepInvalidIndicatorDirective, IgxStepSubtitleDirective, IgxStepTitleDirective, IgxStepType, IgxStepperComponent, IgxStepperModule, IgxStepperOrientation, IgxStepperTitlePosition, IgxStringFilteringOperand, IgxSuffixDirective, IgxSummaryOperand, IgxSummaryRow, IgxSummaryTemplateDirective, IgxSwitchComponent, IgxSwitchModule, IgxTabContentComponent, IgxTabHeaderComponent, IgxTabHeaderIconDirective, IgxTabHeaderLabelDirective, IgxTabItemComponent, IgxTabsAlignment, IgxTabsComponent, IgxTabsModule, IgxTemplateOutletDirective, IgxTextAlign, IgxTextHighlightDirective, IgxTextHighlightModule, IgxTextHighlightService, IgxTextSelectionDirective, IgxTextSelectionModule, IgxThumbFromTemplateDirective, IgxThumbToTemplateDirective, IgxTickLabelTemplateDirective, IgxTimeFilteringOperand, IgxTimeItemDirective, IgxTimePickerComponent, IgxTimePickerModule, IgxTimeSummaryOperand, IgxToastComponent, IgxToastModule, IgxToggleActionDirective, IgxToggleDirective, IgxToggleModule, IgxTooltipDirective, IgxTooltipModule, IgxTooltipTargetDirective, IgxTransactionService, IgxTreeComponent, IgxTreeExpandIndicatorDirective, IgxTreeGridComponent, IgxTreeGridGroupByAreaComponent, IgxTreeGridGroupingPipe, IgxTreeGridModule, IgxTreeGridRow, IgxTreeModule, IgxTreeNodeComponent, IgxTreeNodeLinkDirective, IgxTreeSelectionType, IgxYearsViewComponent, IndigoIcons, InputResourceStringsEN, LabelPosition, ListResourceStringsEN, NoOpScrollStrategy, NoopFilteringStrategy, NoopPivotDimensionsStrategy, NoopSortingStrategy, PaginatorResourceStringsEN, PagingError, PickerInteractionMode, PivotColumnDimensionsStrategy, PivotDimensionType, PivotRowDimensionsStrategy, PivotRowLayoutType, PivotSummaryPosition, Point, QueryBuilderResourceStringsEN, RadioGroupAlignment, RelativePosition, RelativePositionStrategy, RowPinningPosition, ScrollDirection, ScrollStrategy, Size$1 as Size, SliderHandle, SortingDirection, SplitterType, THEME_TOKEN, TRANSACTION_TYPE, ThemeToken, TickLabelsOrientation, TicksOrientation, TimePickerResourceStringsEN, TransactionEventOrigin, TransactionType, TreeGridFilteringStrategy, TreeGridFormattedValuesFilteringStrategy, TreeGridMatchingRecordsOnlyFilteringStrategy, TreeResourceStringsEN, VerticalAlignment, VerticalAnimationType, WEEKDAYS, changei18n, comboIgnoreDiacriticsFilter, igxI18N, isLeap, monthRange, range, weekDay };
43653
- export type { Action, AutocompleteOverlaySettings, AutocompleteSelectionChangingEventArgs, BannerCancelEventArgs, BannerEventArgs, CancelableBrowserEventArgs, CancelableEventArgs, CarouselAnimationSettings, CellType, ColumnType, DatePartDeltas, DateRange, DateRangeDescriptor, DimensionValueType, EntityType, FamilyMeta, FieldType, FlatGridType, GridFeatures, GridKeydownTargetType, GridSVGIcon, GridSelectionRange, GridServiceType, GridType, GridValidationTrigger, HeaderType, HierarchicalGridType, HierarchicalState, HierarchicalTransaction, HierarchicalTransactionService, IAccordionCancelableEventArgs, IAccordionEventArgs, IActionStripResourceStrings, IActiveHighlightInfo, IActiveNodeChangeEventArgs, IBannerResourceStrings, IBaseChipEventArgs, IBaseChipsAreaEventArgs, IBaseSearchInfo, IButtonEventArgs, IButtonGroupEventArgs, ICachedViewLoadedEventArgs, ICalendarResourceStrings, ICarouselResourceStrings, ICellPosition, IChangeCheckboxEventArgs, IChangeProgressEventArgs, IChipClickEventArgs, IChipEnterDragAreaEventArgs, IChipKeyDownEventArgs, IChipResourceStrings, IChipSelectEventArgs, IChipsAreaReorderEventArgs, IChipsAreaSelectEventArgs, IClipboardOptions, IColumnEditorOptions, IColumnExportingEventArgs, IColumnInfo, IColumnList, IColumnMovingEndEventArgs, IColumnMovingEventArgs, IColumnMovingStartEventArgs, IColumnPipeArgs, IColumnResizeEventArgs, IColumnResizingEventArgs, IColumnSelectionEventArgs, IColumnSelectionState, IColumnState, IColumnToggledEventArgs, IColumnVisibilityChangedEventArgs, IColumnVisibilityChangingEventArgs, IColumnsAutoGeneratedEventArgs, IComboFilteringOptions, IComboItemAdditionEvent, IComboResourceStrings, IComboSearchInputEventArgs, IComboSelectionChangingEventArgs, ICsvExportEndedEventArgs, IDataCloneStrategy, IDateParts, IDatePickerResourceStrings, IDateRangePickerResourceStrings, IDialogCancellableEventArgs, IDialogEventArgs, IDimensionsChange, IDragBaseEventArgs, IDragCustomTransitionArgs, IDragGhostBaseEventArgs, IDragMoveEventArgs, IDragStartEventArgs, IDropBaseEventArgs, IDropDownNavigationDirective, IDropDroppedEventArgs, IDropStrategy, IExcelExportEndedEventArgs, IExpansionPanelEventArgs, IExportRecord, IExpressionTree, IFieldEditorOptions, IFieldPipeArgs, IFieldValidationState, IFilteringEventArgs, IFilteringExpression, IFilteringExpressionsTree, IFilteringOperation, IFilteringState, IFilteringStrategy, IForOfDataChangeEventArgs, IForOfDataChangingEventArgs, IForOfState, IFormattedParts, IFormattingOptions, IFormattingViews, IGridCellEventArgs, IGridClipboardEvent, IGridContextMenuEventArgs, IGridCreatedEventArgs, IGridDataBindable, IGridEditDoneEventArgs, IGridEditEventArgs, IGridFormGroupCreatedEventArgs, IGridGroupingStrategy, IGridKeydownEventArgs, IGridResourceStrings, IGridRowEventArgs, IGridScrollEventArgs, IGridSortingStrategy, IGridState, IGridStateCollection, IGridStateOptions, IGridToolbarExportEventArgs, IGridValidationState, IGridValidationStatusEventArgs, IGroupByExpandState, IGroupByKey, IGroupByRecord, IGroupingDoneEventArgs, IGroupingExpression, IGroupingState, IInputResourceStrings, IListItemClickEventArgs, IListItemPanningEventArgs, IListResourceStrings, IMaskEventArgs, IMultiRowLayoutNode, IPageCancellableEventArgs, IPageEventArgs, IPaginatorResourceStrings, IPagingState, IPanStateChangeEventArgs, IPathSegment, IPinColumnCancellableEventArgs, IPinColumnEventArgs, IPinRowEventArgs, IPinningConfig, IPivotAggregator, IPivotConfiguration, IPivotConfigurationChangedEventArgs, IPivotDateDimensionOptions, IPivotDimension, IPivotDimensionData, IPivotDimensionStrategy, IPivotGridColumn, IPivotGridGroupRecord, IPivotGridHorizontalGroup, IPivotGridRecord, IPivotKeys, IPivotUISettings, IPivotValue, IPositionStrategy, IQueryBuilderResourceStrings, IRangeSliderValue, IRecordValidationState, IResourceStrings, IRowDataCancelableEventArgs, IRowDataEventArgs, IRowDragEndEventArgs, IRowDragStartEventArgs, IRowExportingEventArgs, IRowSelectionEventArgs, IRowToggleEventArgs, IScrollStrategy, ISearchInfo, ISelectionEventArgs, ISelectionKeyboardState, ISelectionNode, ISelectionPointerState, ISimpleComboSelectionChangingEventArgs, ISizeInfo, ISlideEventArgs, ISliderValueChangeEventArgs, ISortingEventArgs, ISortingExpression, ISortingOptions, ISortingStrategy, ISplitterBarResizeEventArgs, IStepChangedEventArgs, IStepChangingEventArgs, ISummaryExpression, ISummaryRecord, ITabsSelectedIndexChangingEventArgs, ITabsSelectedItemChangeEventArgs, ITimePickerResourceStrings, IToggleView, ITooltipHideEventArgs, ITooltipShowEventArgs, ITreeGridRecord, ITreeNodeEditedEvent, ITreeNodeEditingEvent, ITreeNodeSelectionEvent, ITreeNodeToggledEventArgs, ITreeNodeTogglingEventArgs, ITreeResourceStrings, IValuesChange, IViewChangeEventArgs, IViewDateChangeEventArgs, IconFamily, IconMeta, IconReference, IgxCellTemplateContext, IgxColumnTemplateContext, IgxDateTimeEditorEventArgs, IgxDragCustomEventDetails, IgxExporterEvent, IgxExporterOptions, IgxFilterItem, IgxGridEmptyTemplateContext, IgxGridHeaderTemplateContext, IgxGridMasterDetailContext, IgxGridPaginatorTemplateContext, IgxGridRowDragGhostContext, IgxGridRowEditActionsTemplateContext, IgxGridRowEditTemplateContext, IgxGridRowEditTextTemplateContext, IgxGridRowTemplateContext, IgxGridTemplateContext, IgxGridToolbarTemplateContext, IgxGroupByRowSelectorTemplateContext, IgxGroupByRowSelectorTemplateDetails, IgxGroupByRowTemplateContext, IgxHeadSelectorTemplateContext, IgxHeadSelectorTemplateDetails, IgxIconButtonType, IgxIconLoadedEvent, IgxInputGroupType, IgxPivotGridValueTemplateContext, IgxRowSelectorTemplateContext, IgxRowSelectorTemplateDetails, IgxSummaryResult, IgxSummaryTemplateContext, IgxTheme, IgxTimePickerValidationFailedEventArgs, IgxTree, IgxTreeNode, IgxTreeSearchResolver, MRLColumnSizeInfo, MRLResizeColumnInfo, OverlayAnimationEventArgs, OverlayCancelableEventArgs, OverlayClosingEventArgs, OverlayCreateSettings, OverlayEventArgs, OverlaySettings, PivotAggregation, PivotAggregationType, PivotGridType, PivotRowHeaderGroupType, PositionSettings, RowType, SelectionState, State, StateUpdateEvent, ToggleViewCancelableEventArgs, ToggleViewEventArgs, Transaction, TransactionService, TreeGridType, ValidationStatus };
44076
+ export { AbsolutePosition, AbsoluteScrollStrategy, ActionStripResourceStringsEN, AutoPositionStrategy, BannerResourceStringsEN, BaseFilteringStrategy, BlockScrollStrategy, ButtonGroupAlignment, CachedDataCloneStrategy, Calendar, CalendarResourceStringsEN, CalendarSelection, CarouselAnimationType, CarouselHammerConfig, CarouselIndicatorsOrientation, CarouselResourceStringsEN, ChipResourceStringsEN, CloseScrollStrategy, ColumnDisplayOrder, ColumnPinningPosition, ComboResourceStringsEN, ConnectedPositioningStrategy, ContainerPositionStrategy, CsvFileTypes, DEFAULT_OWNER, DEFAULT_PIVOT_KEYS, DataType, DataUtil, DatePart, DatePickerResourceStringsEN, DateRangePickerFormatPipe, DateRangePickerResourceStringsEN, DateRangeType, DefaultDataCloneStrategy, DefaultPivotGridRecordSortingStrategy, DefaultPivotSortingStrategy, DefaultSortingStrategy, DimensionValuesFilteringStrategy, Direction, DragDirection, ElasticPositionStrategy, ExpansionPanelHeaderIconPosition, ExportHeaderType, ExportRecordType, ExpressionsTreeUtil, FilterMode, FilterUtil, FilteringExpressionsTree, FilteringExpressionsTreeType, FilteringLogic, FilteringStrategy, FormattedValuesFilteringStrategy, FormattedValuesSortingStrategy, GRID_LEVEL_COL, GRID_PARENT, GRID_ROOT_SUMMARY, GlobalPositionStrategy, GridColumnDataType, GridPagingMode, GridResourceStringsEN, GridSelectionMode, GridSummaryCalculationMode, GridSummaryPosition, GroupMemberCountSortingStrategy, GroupedRecords, HorizontalAlignment, HorizontalAnimationType, IGX_ACCORDION_DIRECTIVES, IGX_ACTION_STRIP_DIRECTIVES, IGX_BANNER_DIRECTIVES, IGX_BOTTOM_NAV_DIRECTIVES, IGX_BUTTON_GROUP_DIRECTIVES, IGX_CALENDAR_DIRECTIVES, IGX_CALENDAR_VIEW_ITEM, IGX_CARD_DIRECTIVES, IGX_CAROUSEL_DIRECTIVES, IGX_CHIPS_DIRECTIVES, IGX_CIRCULAR_PROGRESS_BAR_DIRECTIVES, IGX_COMBO_DIRECTIVES, IGX_DATE_PICKER_DIRECTIVES, IGX_DATE_RANGE_PICKER_DIRECTIVES, IGX_DIALOG_DIRECTIVES, IGX_DRAG_DROP_DIRECTIVES, IGX_DROP_DOWN_DIRECTIVES, IGX_EXPANSION_PANEL_DIRECTIVES, IGX_GRID_ACTION_STRIP_DIRECTIVES, IGX_GRID_BASE, IGX_GRID_COMMON_DIRECTIVES, IGX_GRID_DIRECTIVES, IGX_GRID_SERVICE_BASE, IGX_GRID_VALIDATION_DIRECTIVES, IGX_HIERARCHICAL_GRID_DIRECTIVES, IGX_INPUT_GROUP_DIRECTIVES, IGX_INPUT_GROUP_TYPE, IGX_LINEAR_PROGRESS_BAR_DIRECTIVES, IGX_LIST_DIRECTIVES, IGX_NAVBAR_DIRECTIVES, IGX_NAVIGATION_DRAWER_DIRECTIVES, IGX_PAGINATOR_DIRECTIVES, IGX_PIVOT_GRID_DIRECTIVES, IGX_PROGRESS_BAR_DIRECTIVES, IGX_QUERY_BUILDER_DIRECTIVES, IGX_RADIO_GROUP_DIRECTIVES, IGX_SELECT_DIRECTIVES, IGX_SIMPLE_COMBO_DIRECTIVES, IGX_SLIDER_DIRECTIVES, IGX_SPLITTER_DIRECTIVES, IGX_STEPPER_DIRECTIVES, IGX_TABS_DIRECTIVES, IGX_TIME_PICKER_DIRECTIVES, IGX_TOOLTIP_DIRECTIVES, IGX_TREE_DIRECTIVES, IGX_TREE_GRID_DIRECTIVES, ITreeGridAggregation, IgSizeDirective, IgcFormControlDirective, IgcFormsModule, IgxAccordionComponent, IgxAccordionModule, IgxActionStripComponent, IgxActionStripMenuItemDirective, IgxActionStripModule, IgxAdvancedFilteringDialogComponent, IgxAppendDropStrategy, IgxAutocompleteDirective, IgxAutocompleteModule, IgxAvatarComponent, IgxAvatarModule, IgxAvatarSize, IgxAvatarType, IgxBadgeComponent, IgxBadgeModule, IgxBadgeType, IgxBannerActionsDirective, IgxBannerComponent, IgxBannerModule, IgxBaseExporter, IgxBaseTransactionService, IgxBooleanFilteringOperand, IgxBottomNavComponent, IgxBottomNavContentComponent, IgxBottomNavHeaderComponent, IgxBottomNavHeaderIconDirective, IgxBottomNavHeaderLabelDirective, IgxBottomNavItemComponent, IgxBottomNavModule, IgxButtonDirective, IgxButtonGroupComponent, IgxButtonGroupModule, IgxButtonModule, IgxButtonType, IgxCSVTextDirective, IgxCalendarComponent, IgxCalendarHeaderTemplateDirective, IgxCalendarHeaderTitleTemplateDirective, IgxCalendarModule, IgxCalendarMonthDirective, IgxCalendarScrollPageDirective, IgxCalendarSubheaderTemplateDirective, IgxCalendarView, IgxCalendarViewBaseDirective, IgxCalendarYearDirective, IgxCardActionsComponent, IgxCardActionsLayout, IgxCardComponent, IgxCardContentDirective, IgxCardFooterDirective, IgxCardHeaderComponent, IgxCardHeaderSubtitleDirective, IgxCardHeaderTitleDirective, IgxCardMediaDirective, IgxCardModule, IgxCardThumbnailDirective, IgxCarouselComponent, IgxCarouselIndicatorDirective, IgxCarouselModule, IgxCarouselNextButtonDirective, IgxCarouselPrevButtonDirective, IgxCellEditorTemplateDirective, IgxCellFooterTemplateDirective, IgxCellHeaderTemplateDirective, IgxCellTemplateDirective, IgxCellValidationErrorDirective, IgxCheckboxComponent, IgxCheckboxModule, IgxChildGridRowComponent, IgxChipComponent, IgxChipTypeVariant, IgxChipsAreaComponent, IgxChipsModule, IgxCircularProgressBarComponent, IgxCollapsibleIndicatorTemplateDirective, IgxColumPatternValidatorDirective, IgxColumnActionsBaseDirective, IgxColumnActionsComponent, IgxColumnComponent, IgxColumnEmailValidatorDirective, IgxColumnGroupComponent, IgxColumnHidingDirective, IgxColumnLayoutComponent, IgxColumnMaxLengthValidatorDirective, IgxColumnMaxValidatorDirective, IgxColumnMinLengthValidatorDirective, IgxColumnMinValidatorDirective, IgxColumnPinningDirective, IgxColumnRequiredValidatorDirective, IgxComboAddItemDirective, IgxComboClearIconDirective, IgxComboComponent, IgxComboEmptyDirective, IgxComboFooterDirective, IgxComboHeaderDirective, IgxComboHeaderItemDirective, IgxComboItemDirective, IgxComboModule, IgxComboToggleIconDirective, IgxCsvExporterOptions, IgxCsvExporterService, IgxDataLoadingTemplateDirective, IgxDataRecordSorting, IgxDateFilteringOperand, IgxDatePickerComponent, IgxDatePickerModule, IgxDateRangeEndComponent, IgxDateRangeInputsBaseComponent, IgxDateRangePickerComponent, IgxDateRangePickerModule, IgxDateRangeSeparatorDirective, IgxDateRangeStartComponent, IgxDateSummaryOperand, IgxDateTimeEditorDirective, IgxDateTimeEditorModule, IgxDateTimeFilteringOperand, IgxDaysViewComponent, IgxDefaultDropStrategy, IgxDialogActionsDirective, IgxDialogComponent, IgxDialogModule, IgxDialogTitleDirective, IgxDividerDirective, IgxDividerModule, IgxDividerType, IgxDragDirective, IgxDragDropModule, IgxDragHandleDirective, IgxDragIgnoreDirective, IgxDragIndicatorIconDirective, IgxDragLocation, IgxDropDirective, IgxDropDownComponent, IgxDropDownGroupComponent, IgxDropDownItemComponent, IgxDropDownItemNavigationDirective, IgxDropDownModule, IgxEmptyListTemplateDirective, IgxExcelExporterOptions, IgxExcelExporterService, IgxExcelStyleClearFiltersComponent, IgxExcelStyleColumnOperationsTemplateDirective, IgxExcelStyleConditionalFilterComponent, IgxExcelStyleDateExpressionComponent, IgxExcelStyleFilterOperationsTemplateDirective, IgxExcelStyleHeaderComponent, IgxExcelStyleHeaderIconDirective, IgxExcelStyleHidingComponent, IgxExcelStyleLoadingValuesTemplateDirective, IgxExcelStyleMovingComponent, IgxExcelStylePinningComponent, IgxExcelStyleSearchComponent, IgxExcelStyleSelectingComponent, IgxExcelStyleSortingComponent, IgxExcelTextDirective, IgxExpansionPanelBodyComponent, IgxExpansionPanelComponent, IgxExpansionPanelDescriptionDirective, IgxExpansionPanelHeaderComponent, IgxExpansionPanelIconDirective, IgxExpansionPanelModule, IgxExpansionPanelTitleDirective, IgxExporterOptionsBase, IgxFilterCellTemplateDirective, IgxFilterDirective, IgxFilterModule, IgxFilterOptions, IgxFilterPipe, IgxFilteringOperand, IgxFlatTransactionFactory, IgxFlexDirective, IgxFocusDirective, IgxFocusModule, IgxFocusTrapDirective, IgxFocusTrapModule, IgxForOfContext, IgxForOfDirective, IgxForOfModule, IgxGridActionButtonComponent, IgxGridActionsBaseDirective, IgxGridCell, IgxGridComponent, IgxGridDetailTemplateDirective, IgxGridEditingActionsComponent, IgxGridEmptyTemplateDirective, IgxGridExcelStyleFilteringComponent, IgxGridFooterComponent, IgxGridForOfContext, IgxGridForOfDirective, IgxGridHeaderComponent, IgxGridHeaderGroupComponent, IgxGridHeaderRowComponent, IgxGridLoadingTemplateDirective, IgxGridModule, IgxGridPinningActionsComponent, IgxGridRow, IgxGridStateDirective, IgxGridToolbarActionsComponent, IgxGridToolbarAdvancedFilteringComponent, IgxGridToolbarComponent, IgxGridToolbarDirective, IgxGridToolbarExporterComponent, IgxGridToolbarHidingComponent, IgxGridToolbarPinningComponent, IgxGridToolbarTitleComponent, IgxGridTransaction, IgxGroupAreaDropDirective, IgxGroupByRow, IgxGroupByRowSelectorDirective, IgxGroupByRowTemplateDirective, IgxGroupedTreeGridSorting, IgxGrouping, IgxHeadSelectorDirective, IgxHeaderCollapsedIndicatorDirective, IgxHeaderExpandedIndicatorDirective, IgxHierarchicalGridComponent, IgxHierarchicalGridModule, IgxHierarchicalGridRow, IgxHierarchicalTransactionFactory, IgxHierarchicalTransactionService, IgxHintDirective, IgxIconButtonDirective, IgxIconComponent, IgxIconModule, IgxIconService, IgxInputDirective, IgxInputGroupComponent, IgxInputGroupEnum, IgxInputGroupModule, IgxInputState, IgxInsertDropStrategy, IgxItemListDirective, IgxLabelDirective, IgxLayoutDirective, IgxLayoutModule, IgxLinearProgressBarComponent, IgxListActionDirective, IgxListBaseDirective, IgxListComponent, IgxListItemComponent, IgxListItemLeftPanningTemplateDirective, IgxListItemRightPanningTemplateDirective, IgxListLineDirective, IgxListLineSubTitleDirective, IgxListLineTitleDirective, IgxListModule, IgxListPanState, IgxListThumbnailDirective, IgxMaskDirective, IgxMaskModule, IgxMonthPickerComponent, IgxMonthsViewComponent, IgxNavDrawerItemDirective, IgxNavDrawerMiniTemplateDirective, IgxNavDrawerTemplateDirective, IgxNavbarActionDirective, IgxNavbarComponent, IgxNavbarModule, IgxNavbarTitleDirective, IgxNavigationCloseDirective, IgxNavigationDrawerComponent, IgxNavigationDrawerModule, IgxNavigationService, IgxNavigationToggleDirective, IgxNumberFilteringOperand, IgxNumberSummaryOperand, IgxOverlayOutletDirective, IgxOverlayService, IgxPageNavigationComponent, IgxPageSizeSelectorComponent, IgxPaginatorComponent, IgxPaginatorContentDirective, IgxPaginatorDirective, IgxPaginatorModule, IgxPickerActionsDirective, IgxPickerClearComponent, IgxPickerToggleComponent, IgxPivotAggregate, IgxPivotDataSelectorComponent, IgxPivotDateAggregate, IgxPivotDateDimension, IgxPivotGridComponent, IgxPivotGridModule, IgxPivotGridRow, IgxPivotNumericAggregate, IgxPivotRowDimensionHeaderTemplateDirective, IgxPivotTimeAggregate, IgxPivotValueChipTemplateDirective, IgxPrefixDirective, IgxPrependDropStrategy, IgxProgressBarGradientDirective, IgxProgressBarModule, IgxProgressBarTextTemplateDirective, IgxProgressType, IgxQueryBuilderComponent, IgxQueryBuilderHeaderComponent, IgxQueryBuilderModule, IgxQueryBuilderSearchValueTemplateDirective, IgxRadioComponent, IgxRadioGroupDirective, IgxRadioModule, IgxRippleDirective, IgxRippleModule, IgxRowAddTextDirective, IgxRowCollapsedIndicatorDirective, IgxRowDirective, IgxRowDragGhostDirective, IgxRowEditActionsDirective, IgxRowEditTabStopDirective, IgxRowEditTextDirective, IgxRowExpandedIndicatorDirective, IgxRowIslandComponent, IgxRowSelectorDirective, IgxScrollInertiaDirective, IgxScrollInertiaModule, IgxSelectComponent, IgxSelectFooterDirective, IgxSelectGroupComponent, IgxSelectHeaderDirective, IgxSelectItemComponent, IgxSelectModule, IgxSelectToggleIconDirective, IgxSimpleComboComponent, IgxSimpleComboModule, IgxSlideComponent, IgxSliderComponent, IgxSliderModule, IgxSliderType, IgxSnackbarComponent, IgxSnackbarModule, IgxSortAscendingHeaderIconDirective, IgxSortDescendingHeaderIconDirective, IgxSortHeaderIconDirective, IgxSorting, IgxSplitBarComponent, IgxSplitterComponent, IgxSplitterModule, IgxSplitterPaneComponent, IgxStepActiveIndicatorDirective, IgxStepCompletedIndicatorDirective, IgxStepComponent, IgxStepContentDirective, IgxStepIndicatorDirective, IgxStepInvalidIndicatorDirective, IgxStepSubtitleDirective, IgxStepTitleDirective, IgxStepType, IgxStepperComponent, IgxStepperModule, IgxStepperOrientation, IgxStepperTitlePosition, IgxStringFilteringOperand, IgxSuffixDirective, IgxSummaryOperand, IgxSummaryRow, IgxSummaryTemplateDirective, IgxSwitchComponent, IgxSwitchModule, IgxTabContentComponent, IgxTabHeaderComponent, IgxTabHeaderIconDirective, IgxTabHeaderLabelDirective, IgxTabItemComponent, IgxTabsAlignment, IgxTabsComponent, IgxTabsModule, IgxTemplateOutletDirective, IgxTextAlign, IgxTextHighlightDirective, IgxTextHighlightModule, IgxTextHighlightService, IgxTextSelectionDirective, IgxTextSelectionModule, IgxThumbFromTemplateDirective, IgxThumbToTemplateDirective, IgxTickLabelTemplateDirective, IgxTimeFilteringOperand, IgxTimeItemDirective, IgxTimePickerComponent, IgxTimePickerModule, IgxTimeSummaryOperand, IgxToastComponent, IgxToastModule, IgxToggleActionDirective, IgxToggleDirective, IgxToggleModule, IgxTooltipDirective, IgxTooltipModule, IgxTooltipTargetDirective, IgxTransactionService, IgxTreeComponent, IgxTreeExpandIndicatorDirective, IgxTreeGridComponent, IgxTreeGridGroupByAreaComponent, IgxTreeGridGroupingPipe, IgxTreeGridModule, IgxTreeGridRow, IgxTreeModule, IgxTreeNodeComponent, IgxTreeNodeLinkDirective, IgxTreeSelectionType, IgxYearsViewComponent, IndigoIcons, InputResourceStringsEN, LabelPosition, ListResourceStringsEN, NoOpScrollStrategy, NoopFilteringStrategy, NoopPivotDimensionsStrategy, NoopSortingStrategy, PaginatorResourceStringsEN, PagingError, PickerInteractionMode, PivotColumnDimensionsStrategy, PivotDimensionType, PivotRowDimensionsStrategy, PivotRowLayoutType, PivotSummaryPosition, Point, QueryBuilderResourceStringsEN, RadioGroupAlignment, RelativePosition, RelativePositionStrategy, RowPinningPosition, ScrollDirection, ScrollStrategy, Size$1 as Size, SliderHandle, SortingDirection, SplitterType, THEME_TOKEN, TRANSACTION_TYPE, ThemeToken, TickLabelsOrientation, TicksOrientation, TimePickerResourceStringsEN, TooltipPositionStrategy, TransactionEventOrigin, TransactionType, TreeGridFilteringStrategy, TreeGridFormattedValuesFilteringStrategy, TreeGridMatchingRecordsOnlyFilteringStrategy, TreeResourceStringsEN, VerticalAlignment, VerticalAnimationType, WEEKDAYS, changei18n, comboIgnoreDiacriticsFilter, igxI18N, isLeap, monthRange, range, weekDay };
44077
+ export type { Action, ArrowFit, AutocompleteOverlaySettings, AutocompleteSelectionChangingEventArgs, BannerCancelEventArgs, BannerEventArgs, CancelableBrowserEventArgs, CancelableEventArgs, CarouselAnimationSettings, CellType, ColumnType, CustomDateRange, DatePartDeltas, DateRange, DateRangeDescriptor, DimensionValueType, EntityType, FamilyMeta, FieldType, FlatGridType, GridFeatures, GridKeydownTargetType, GridSVGIcon, GridSelectionRange, GridServiceType, GridType, GridValidationTrigger, HeaderType, HierarchicalGridType, HierarchicalState, HierarchicalTransaction, HierarchicalTransactionService, IAccordionCancelableEventArgs, IAccordionEventArgs, IActionStripResourceStrings, IActiveHighlightInfo, IActiveNodeChangeEventArgs, IBannerResourceStrings, IBaseChipEventArgs, IBaseChipsAreaEventArgs, IBaseSearchInfo, IButtonEventArgs, IButtonGroupEventArgs, ICachedViewLoadedEventArgs, ICalendarResourceStrings, ICarouselResourceStrings, ICellPosition, IChangeCheckboxEventArgs, IChangeProgressEventArgs, IChipClickEventArgs, IChipEnterDragAreaEventArgs, IChipKeyDownEventArgs, IChipResourceStrings, IChipSelectEventArgs, IChipsAreaReorderEventArgs, IChipsAreaSelectEventArgs, IClipboardOptions, IColumnEditorOptions, IColumnExportingEventArgs, IColumnInfo, IColumnList, IColumnMovingEndEventArgs, IColumnMovingEventArgs, IColumnMovingStartEventArgs, IColumnPipeArgs, IColumnResizeEventArgs, IColumnResizingEventArgs, IColumnSelectionEventArgs, IColumnSelectionState, IColumnState, IColumnToggledEventArgs, IColumnVisibilityChangedEventArgs, IColumnVisibilityChangingEventArgs, IColumnsAutoGeneratedEventArgs, IComboFilteringOptions, IComboItemAdditionEvent, IComboResourceStrings, IComboSearchInputEventArgs, IComboSelectionChangingEventArgs, ICsvExportEndedEventArgs, IDataCloneStrategy, IDateParts, IDatePickerResourceStrings, IDateRangePickerResourceStrings, IDialogCancellableEventArgs, IDialogEventArgs, IDimensionsChange, IDragBaseEventArgs, IDragCustomTransitionArgs, IDragGhostBaseEventArgs, IDragMoveEventArgs, IDragStartEventArgs, IDropBaseEventArgs, IDropDownNavigationDirective, IDropDroppedEventArgs, IDropStrategy, IExcelExportEndedEventArgs, IExpansionPanelEventArgs, IExportRecord, IExpressionTree, IFieldEditorOptions, IFieldPipeArgs, IFieldValidationState, IFilteringEventArgs, IFilteringExpression, IFilteringExpressionsTree, IFilteringOperation, IFilteringState, IFilteringStrategy, IForOfDataChangeEventArgs, IForOfDataChangingEventArgs, IForOfState, IFormattedParts, IFormattingOptions, IFormattingViews, IGridCellEventArgs, IGridClipboardEvent, IGridContextMenuEventArgs, IGridCreatedEventArgs, IGridDataBindable, IGridEditDoneEventArgs, IGridEditEventArgs, IGridFormGroupCreatedEventArgs, IGridGroupingStrategy, IGridKeydownEventArgs, IGridResourceStrings, IGridRowEventArgs, IGridScrollEventArgs, IGridSortingStrategy, IGridState, IGridStateCollection, IGridStateOptions, IGridToolbarExportEventArgs, IGridValidationState, IGridValidationStatusEventArgs, IGroupByExpandState, IGroupByKey, IGroupByRecord, IGroupingDoneEventArgs, IGroupingExpression, IGroupingState, IInputResourceStrings, IListItemClickEventArgs, IListItemPanningEventArgs, IListResourceStrings, IMaskEventArgs, IMultiRowLayoutNode, IPageCancellableEventArgs, IPageEventArgs, IPaginatorResourceStrings, IPagingState, IPanStateChangeEventArgs, IPathSegment, IPinColumnCancellableEventArgs, IPinColumnEventArgs, IPinRowEventArgs, IPinningConfig, IPivotAggregator, IPivotConfiguration, IPivotConfigurationChangedEventArgs, IPivotDateDimensionOptions, IPivotDimension, IPivotDimensionData, IPivotDimensionStrategy, IPivotGridColumn, IPivotGridGroupRecord, IPivotGridHorizontalGroup, IPivotGridRecord, IPivotKeys, IPivotUISettings, IPivotValue, IPositionStrategy, IQueryBuilderResourceStrings, IRangeSliderValue, IRecordValidationState, IResourceStrings, IRowDataCancelableEventArgs, IRowDataEventArgs, IRowDragEndEventArgs, IRowDragStartEventArgs, IRowExportingEventArgs, IRowSelectionEventArgs, IRowToggleEventArgs, IScrollStrategy, ISearchInfo, ISelectionEventArgs, ISelectionKeyboardState, ISelectionNode, ISelectionPointerState, ISimpleComboSelectionChangingEventArgs, ISizeInfo, ISlideEventArgs, ISliderValueChangeEventArgs, ISortingEventArgs, ISortingExpression, ISortingOptions, ISortingStrategy, ISplitterBarResizeEventArgs, IStepChangedEventArgs, IStepChangingEventArgs, ISummaryExpression, ISummaryRecord, ITabsSelectedIndexChangingEventArgs, ITabsSelectedItemChangeEventArgs, ITimePickerResourceStrings, IToggleView, ITooltipHideEventArgs, ITooltipShowEventArgs, ITreeGridRecord, ITreeNodeEditedEvent, ITreeNodeEditingEvent, ITreeNodeSelectionEvent, ITreeNodeToggledEventArgs, ITreeNodeTogglingEventArgs, ITreeResourceStrings, IValuesChange, IViewChangeEventArgs, IViewDateChangeEventArgs, IconFamily, IconMeta, IconReference, IgxCellTemplateContext, IgxColumnTemplateContext, IgxDateTimeEditorEventArgs, IgxDragCustomEventDetails, IgxExporterEvent, IgxExporterOptions, IgxFilterItem, IgxGridEmptyTemplateContext, IgxGridHeaderTemplateContext, IgxGridMasterDetailContext, IgxGridPaginatorTemplateContext, IgxGridRowDragGhostContext, IgxGridRowEditActionsTemplateContext, IgxGridRowEditTemplateContext, IgxGridRowEditTextTemplateContext, IgxGridRowTemplateContext, IgxGridTemplateContext, IgxGridToolbarTemplateContext, IgxGroupByRowSelectorTemplateContext, IgxGroupByRowSelectorTemplateDetails, IgxGroupByRowTemplateContext, IgxHeadSelectorTemplateContext, IgxHeadSelectorTemplateDetails, IgxIconButtonType, IgxIconLoadedEvent, IgxInputGroupType, IgxPivotGridValueTemplateContext, IgxRowSelectorTemplateContext, IgxRowSelectorTemplateDetails, IgxSummaryResult, IgxSummaryTemplateContext, IgxTheme, IgxTimePickerValidationFailedEventArgs, IgxTree, IgxTreeNode, IgxTreeSearchResolver, MRLColumnSizeInfo, MRLResizeColumnInfo, OverlayAnimationEventArgs, OverlayCancelableEventArgs, OverlayClosingEventArgs, OverlayCreateSettings, OverlayEventArgs, OverlaySettings, PivotAggregation, PivotAggregationType, PivotGridType, PivotRowHeaderGroupType, PositionSettings, RowType, SelectionState, State, StateUpdateEvent, ToggleViewCancelableEventArgs, ToggleViewEventArgs, Transaction, TransactionService, TreeGridType, ValidationStatus };