igniteui-angular 17.1.0-rc.0 → 17.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/esm2022/lib/avatar/avatar.component.mjs +3 -3
  2. package/esm2022/lib/badge/badge.component.mjs +2 -2
  3. package/esm2022/lib/banner/banner.component.mjs +1 -1
  4. package/esm2022/lib/calendar/calendar-base.mjs +3 -3
  5. package/esm2022/lib/calendar/calendar.component.mjs +22 -22
  6. package/esm2022/lib/calendar/calendar.mjs +9 -23
  7. package/esm2022/lib/calendar/days-view/daysview-navigation.service.mjs +2 -3
  8. package/esm2022/lib/calendar/month-picker/month-picker.component.mjs +3 -3
  9. package/esm2022/lib/card/card.component.mjs +3 -3
  10. package/esm2022/lib/carousel/carousel-base.mjs +2 -7
  11. package/esm2022/lib/carousel/carousel.component.mjs +3 -7
  12. package/esm2022/lib/carousel/enums.mjs +11 -0
  13. package/esm2022/lib/carousel/public_api.mjs +3 -2
  14. package/esm2022/lib/carousel/slide.component.mjs +1 -1
  15. package/esm2022/lib/checkbox/checkbox.component.mjs +2 -2
  16. package/esm2022/lib/chips/chip.component.mjs +2 -2
  17. package/esm2022/lib/combo/combo.common.mjs +7 -15
  18. package/esm2022/lib/core/selection.mjs +8 -1
  19. package/esm2022/lib/data-operations/data-util.mjs +2 -2
  20. package/esm2022/lib/date-common/types.mjs +3 -3
  21. package/esm2022/lib/directives/button/button-base.mjs +2 -2
  22. package/esm2022/lib/directives/button/button.directive.mjs +2 -2
  23. package/esm2022/lib/directives/divider/divider.directive.mjs +2 -2
  24. package/esm2022/lib/directives/mask/mask.directive.mjs +1 -1
  25. package/esm2022/lib/drop-down/drop-down.common.mjs +3 -3
  26. package/esm2022/lib/drop-down/drop-down.component.mjs +3 -3
  27. package/esm2022/lib/expansion-panel/expansion-panel-header.component.mjs +2 -2
  28. package/esm2022/lib/expansion-panel/expansion-panel.common.mjs +2 -2
  29. package/esm2022/lib/grids/common/grid.interface.mjs +1 -1
  30. package/esm2022/lib/grids/grid-base.directive.mjs +2 -2
  31. package/esm2022/lib/grids/hierarchical-grid/row-island.component.mjs +39 -10
  32. package/esm2022/lib/input-group/input-group.component.mjs +2 -2
  33. package/esm2022/lib/input-group/inputGroupType.mjs +3 -3
  34. package/esm2022/lib/progressbar/progressbar.component.mjs +3 -3
  35. package/esm2022/lib/select/select.component.mjs +1 -9
  36. package/esm2022/lib/services/direction/directionality.mjs +2 -2
  37. package/esm2022/lib/splitter/splitter.component.mjs +3 -3
  38. package/esm2022/lib/stepper/step/step.component.mjs +3 -2
  39. package/esm2022/lib/stepper/stepper.common.mjs +3 -3
  40. package/esm2022/lib/stepper/stepper.component.mjs +1 -1
  41. package/esm2022/lib/tabs/tabs/tabs.component.mjs +11 -18
  42. package/esm2022/lib/tree/common.mjs +4 -4
  43. package/fesm2022/igniteui-angular.mjs +136 -136
  44. package/fesm2022/igniteui-angular.mjs.map +1 -1
  45. package/lib/calendar/calendar.d.ts +1 -1
  46. package/lib/carousel/carousel-base.d.ts +1 -6
  47. package/lib/carousel/carousel.component.d.ts +2 -6
  48. package/lib/carousel/enums.d.ts +11 -0
  49. package/lib/carousel/public_api.d.ts +2 -1
  50. package/lib/combo/combo.common.d.ts +1 -1
  51. package/lib/core/selection.d.ts +5 -0
  52. package/lib/grids/common/grid.interface.d.ts +3 -0
  53. package/lib/grids/hierarchical-grid/row-island.component.d.ts +25 -5
  54. package/lib/select/select.component.d.ts +0 -4
  55. package/lib/splitter/splitter.component.d.ts +1 -1
  56. package/lib/stepper/stepper.common.d.ts +2 -1
  57. package/lib/stepper/stepper.component.d.ts +2 -1
  58. package/package.json +2 -2
@@ -1049,7 +1049,7 @@ class CachedDataCloneStrategy {
1049
1049
  /**
1050
1050
  * @hidden
1051
1051
  */
1052
- const DataType = mkenum({
1052
+ const DataType = /*@__PURE__*/ mkenum({
1053
1053
  String: 'string',
1054
1054
  Number: 'number',
1055
1055
  Boolean: 'boolean',
@@ -7098,12 +7098,12 @@ var Navigate;
7098
7098
  Navigate[Navigate["Down"] = 1] = "Down";
7099
7099
  })(Navigate || (Navigate = {}));
7100
7100
  /** Key actions that have designated handlers in IgxDropDownComponent */
7101
- const DropDownActionKey = mkenum({
7101
+ const DropDownActionKey = /*@__PURE__*/ mkenum({
7102
7102
  ESCAPE: 'escape',
7103
7103
  ENTER: 'enter',
7104
7104
  SPACE: 'space'
7105
7105
  });
7106
- const IGX_DROPDOWN_BASE = new InjectionToken('IgxDropDownBaseToken');
7106
+ const IGX_DROPDOWN_BASE = /*@__PURE__*/ new InjectionToken('IgxDropDownBaseToken');
7107
7107
 
7108
7108
  /**
7109
7109
  * Defines the possible values of the components' display density.
@@ -8307,7 +8307,7 @@ const InputResourceStringsEN = {
8307
8307
  igx_input_file_placeholder: 'No file chosen',
8308
8308
  };
8309
8309
 
8310
- const IgxBaseButtonType = mkenum({
8310
+ const IgxBaseButtonType = /*@__PURE__*/ mkenum({
8311
8311
  Flat: 'flat',
8312
8312
  Contained: 'contained',
8313
8313
  Outlined: 'outlined'
@@ -8390,7 +8390,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
8390
8390
  args: ['attr.disabled']
8391
8391
  }] } });
8392
8392
 
8393
- const IgxButtonType = mkenum({
8393
+ const IgxButtonType = /*@__PURE__*/ mkenum({
8394
8394
  ...IgxBaseButtonType,
8395
8395
  FAB: 'fab'
8396
8396
  });
@@ -8611,7 +8611,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
8611
8611
  args: ['style.--component-size']
8612
8612
  }] } });
8613
8613
 
8614
- const IgxInputGroupEnum = mkenum({
8614
+ const IgxInputGroupEnum = /*@__PURE__*/ mkenum({
8615
8615
  Line: 'line',
8616
8616
  Box: 'box',
8617
8617
  Border: 'border',
@@ -8621,7 +8621,7 @@ const IgxInputGroupEnum = mkenum({
8621
8621
  * Defines the InputGroupType DI token.
8622
8622
  */
8623
8623
  // Should this go trough Interface https://angular.io/api/core/InjectionToken
8624
- const IGX_INPUT_GROUP_TYPE = new InjectionToken('InputGroupType');
8624
+ const IGX_INPUT_GROUP_TYPE = /*@__PURE__*/ new InjectionToken('InputGroupType');
8625
8625
 
8626
8626
  /**
8627
8627
  * **Ignite UI for Angular Icon Service** -
@@ -9070,7 +9070,7 @@ function changei18n(resourceStrings) {
9070
9070
  igxI18N.instance().changei18n(resourceStrings);
9071
9071
  }
9072
9072
 
9073
- const IgxInputGroupTheme = mkenum({
9073
+ const IgxInputGroupTheme = /*@__PURE__*/ mkenum({
9074
9074
  Material: 'material',
9075
9075
  Fluent: 'fluent',
9076
9076
  Bootstrap: 'bootstrap',
@@ -9876,7 +9876,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
9876
9876
  args: ['keydown.Shift.Tab']
9877
9877
  }] } });
9878
9878
 
9879
- const IgxDividerType = mkenum({
9879
+ const IgxDividerType = /*@__PURE__*/ mkenum({
9880
9880
  SOLID: 'solid',
9881
9881
  DASHED: 'dashed'
9882
9882
  });
@@ -15424,7 +15424,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
15424
15424
  args: ['mousedown', ['$event']]
15425
15425
  }] } });
15426
15426
 
15427
- const LabelPosition = mkenum({
15427
+ const LabelPosition = /*@__PURE__*/ mkenum({
15428
15428
  BEFORE: 'before',
15429
15429
  AFTER: 'after'
15430
15430
  });
@@ -16176,7 +16176,7 @@ function DIR_DOCUMENT_FACTORY() {
16176
16176
  *
16177
16177
  * @hidden
16178
16178
  */
16179
- const DIR_DOCUMENT = new InjectionToken('dir-doc', {
16179
+ const DIR_DOCUMENT = /*@__PURE__*/ new InjectionToken('dir-doc', {
16180
16180
  providedIn: 'root',
16181
16181
  factory: DIR_DOCUMENT_FACTORY
16182
16182
  });
@@ -20482,7 +20482,7 @@ class GroupedRecords extends Array {
20482
20482
  }
20483
20483
 
20484
20484
  /** @hidden */
20485
- const IGX_EXPANSION_PANEL_COMPONENT = new InjectionToken('IgxExpansionPanelToken');
20485
+ const IGX_EXPANSION_PANEL_COMPONENT = /*@__PURE__*/ new InjectionToken('IgxExpansionPanelToken');
20486
20486
  class HeaderContentBaseDirective {
20487
20487
  constructor(element) {
20488
20488
  this.element = element;
@@ -20701,7 +20701,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
20701
20701
  /**
20702
20702
  * @hidden
20703
20703
  */
20704
- const ExpansionPanelHeaderIconPosition = mkenum({
20704
+ const ExpansionPanelHeaderIconPosition = /*@__PURE__*/ mkenum({
20705
20705
  LEFT: 'left',
20706
20706
  NONE: 'none',
20707
20707
  RIGHT: 'right'
@@ -21874,6 +21874,13 @@ class IgxSelectionAPIService {
21874
21874
  clear(componentID) {
21875
21875
  this.selection.set(componentID, this.get_empty());
21876
21876
  }
21877
+ /**
21878
+ * Removes selection for a component.
21879
+ * @param componentID
21880
+ */
21881
+ delete(componentID) {
21882
+ this.selection.delete(componentID);
21883
+ }
21877
21884
  /**
21878
21885
  * Get current component selection length.
21879
21886
  *
@@ -22887,8 +22894,8 @@ class IgxDropDownComponent extends IgxDropDownBaseDirective {
22887
22894
  ngOnDestroy() {
22888
22895
  this.destroy$.next(true);
22889
22896
  this.destroy$.complete();
22890
- this.selection.clear(this.id);
22891
- this.selection.clear(`${this.id}-active`);
22897
+ this.selection.delete(this.id);
22898
+ this.selection.delete(`${this.id}-active`);
22892
22899
  }
22893
22900
  /** @hidden @internal */
22894
22901
  calculateScrollPosition(item) {
@@ -26634,12 +26641,12 @@ const IGX_GRID_ACTION_STRIP_DIRECTIVES = [
26634
26641
  ];
26635
26642
 
26636
26643
  let NEXT_ID$o = 0;
26637
- const IgxAvatarSize = mkenum({
26644
+ const IgxAvatarSize = /*@__PURE__*/ mkenum({
26638
26645
  SMALL: 'small',
26639
26646
  MEDIUM: 'medium',
26640
26647
  LARGE: 'large'
26641
26648
  });
26642
- const IgxAvatarType = mkenum({
26649
+ const IgxAvatarType = /*@__PURE__*/ mkenum({
26643
26650
  INITIALS: 'initials',
26644
26651
  IMAGE: 'image',
26645
26652
  ICON: 'icon',
@@ -26930,7 +26937,7 @@ let NEXT_ID$n = 0;
26930
26937
  /**
26931
26938
  * Determines the igxBadge type
26932
26939
  */
26933
- const IgxBadgeType = mkenum({
26940
+ const IgxBadgeType = /*@__PURE__*/ mkenum({
26934
26941
  PRIMARY: 'primary',
26935
26942
  INFO: 'info',
26936
26943
  SUCCESS: 'success',
@@ -28114,30 +28121,16 @@ var DateRangeType;
28114
28121
  /**
28115
28122
  * Sets the selection type - single, multi or range.
28116
28123
  */
28117
- const CalendarSelection = mkenum({
28124
+ const CalendarSelection = /*@__PURE__*/ mkenum({
28118
28125
  SINGLE: 'single',
28119
28126
  MULTI: 'multi',
28120
28127
  RANGE: 'range'
28121
28128
  });
28122
- var ScrollMonth;
28123
- (function (ScrollMonth) {
28124
- ScrollMonth["PREV"] = "prev";
28125
- ScrollMonth["NEXT"] = "next";
28126
- ScrollMonth["NONE"] = "none";
28127
- })(ScrollMonth || (ScrollMonth = {}));
28128
- const IgxCalendarView = mkenum({
28129
+ const IgxCalendarView = /*@__PURE__*/ mkenum({
28129
28130
  Month: 'month',
28130
28131
  Year: 'year',
28131
28132
  Decade: 'decade'
28132
28133
  });
28133
- /**
28134
- * @hidden
28135
- */
28136
- var TimeDeltaInterval;
28137
- (function (TimeDeltaInterval) {
28138
- TimeDeltaInterval["Month"] = "month";
28139
- TimeDeltaInterval["Year"] = "year";
28140
- })(TimeDeltaInterval || (TimeDeltaInterval = {}));
28141
28134
  const MDAYS = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
28142
28135
  const FEBRUARY = 1;
28143
28136
  const range = (start = 0, stop, step = 1) => {
@@ -28405,16 +28398,16 @@ class Calendar {
28405
28398
  return this.timedelta(date, interval, activeViewIdx);
28406
28399
  }
28407
28400
  getNextMonth(date) {
28408
- return this.timedelta(date, TimeDeltaInterval.Month, 1);
28401
+ return this.timedelta(date, "month" /* TimeDeltaInterval.Month */, 1);
28409
28402
  }
28410
28403
  getPrevMonth(date) {
28411
- return this.timedelta(date, TimeDeltaInterval.Month, -1);
28404
+ return this.timedelta(date, "month" /* TimeDeltaInterval.Month */, -1);
28412
28405
  }
28413
28406
  getNextYear(date) {
28414
- return this.timedelta(date, TimeDeltaInterval.Year, 1);
28407
+ return this.timedelta(date, "year" /* TimeDeltaInterval.Year */, 1);
28415
28408
  }
28416
28409
  getPrevYear(date) {
28417
- return this.timedelta(date, TimeDeltaInterval.Year, -1);
28410
+ return this.timedelta(date, "year" /* TimeDeltaInterval.Year */, -1);
28418
28411
  }
28419
28412
  getWeekNumber(date, weekStart) {
28420
28413
  // current year
@@ -28427,7 +28420,7 @@ class Calendar {
28427
28420
  const dayNumber = Math.floor((date.getTime() - yearStart.getTime() -
28428
28421
  (date.getTimezoneOffset() - yearStart.getTimezoneOffset()) * 60000) / dayInMilSeconds) + 1;
28429
28422
  let weekNumber;
28430
- // if 01 Jan is Monday to Thursday, is considered 1st week of the year
28423
+ // if 01 Jan is Monday to Thursday, is considered 1st week of the year
28431
28424
  // if 01 Jan starts Friday to Sunday, is considered last week of previous year
28432
28425
  if (firstDayOfTheYear < 4) {
28433
28426
  // when calculating the week number we add 1 for the 1st week
@@ -28444,7 +28437,7 @@ class Calendar {
28444
28437
  // first day of the next year
28445
28438
  let nextYearFirstDay = nextYear.getDay() - weekStart;
28446
28439
  nextYearFirstDay = nextYearFirstDay >= 0 ? nextYearFirstDay : nextYearFirstDay + 7;
28447
- // if 01 Jan of the next year is Monday to Thursday, is considered 1st week of the next year
28440
+ // if 01 Jan of the next year is Monday to Thursday, is considered 1st week of the next year
28448
28441
  // if 01 Jan is Friday to Sunday, is considered 53rd week of the current year
28449
28442
  weekNumber = nextYearFirstDay < 4 ? 1 : 53;
28450
28443
  }
@@ -28749,7 +28742,7 @@ class IgxCalendarBaseDirective {
28749
28742
  /**
28750
28743
  * @hidden
28751
28744
  */
28752
- this.monthScrollDirection = ScrollMonth.NONE;
28745
+ this.monthScrollDirection = "none" /* ScrollMonth.NONE */;
28753
28746
  /**
28754
28747
  * @hidden
28755
28748
  */
@@ -30393,7 +30386,7 @@ class IgxDaysViewNavigationService {
30393
30386
  dayIsNextMonth = step > 0 ? day.date.isNextMonth : day.date.isPrevMonth;
30394
30387
  }
30395
30388
  if (monthView.changeDaysView && !nextMonthView && ((day && dayIsNextMonth) || !day)) {
30396
- const monthAction = step > 0 ? ScrollMonth.NEXT : ScrollMonth.PREV;
30389
+ const monthAction = step > 0 ? "next" /* ScrollMonth.NEXT */ : "prev" /* ScrollMonth.PREV */;
30397
30390
  monthView.viewChanging.emit({ monthAction, key, nextDate });
30398
30391
  }
30399
30392
  }
@@ -31002,8 +30995,8 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31002
30995
  */
31003
30996
  this.startPrevMonthScroll = (isKeydownTrigger = false) => {
31004
30997
  this.startMonthScroll$.next();
31005
- this.monthScrollDirection = ScrollMonth.PREV;
31006
- this.animationAction = ScrollMonth.PREV;
30998
+ this.monthScrollDirection = "prev" /* ScrollMonth.PREV */;
30999
+ this.animationAction = "prev" /* ScrollMonth.PREV */;
31007
31000
  this.previousMonth(isKeydownTrigger);
31008
31001
  };
31009
31002
  /**
@@ -31014,8 +31007,8 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31014
31007
  */
31015
31008
  this.startNextMonthScroll = (isKeydownTrigger = false) => {
31016
31009
  this.startMonthScroll$.next();
31017
- this.monthScrollDirection = ScrollMonth.NEXT;
31018
- this.animationAction = ScrollMonth.NEXT;
31010
+ this.monthScrollDirection = "next" /* ScrollMonth.NEXT */;
31011
+ this.animationAction = "next" /* ScrollMonth.NEXT */;
31019
31012
  this.nextMonth(isKeydownTrigger);
31020
31013
  };
31021
31014
  /**
@@ -31032,16 +31025,16 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31032
31025
  // strange bug is introduced --> after changing number of months, continuous scrolling on mouse click does not happen
31033
31026
  this.daysView.stopMonthScroll$.next(true);
31034
31027
  this.daysView.stopMonthScroll$.complete();
31035
- if (this.monthScrollDirection === ScrollMonth.PREV) {
31028
+ if (this.monthScrollDirection === "prev" /* ScrollMonth.PREV */) {
31036
31029
  this.prevMonthBtn.nativeElement.focus();
31037
31030
  }
31038
- else if (this.monthScrollDirection === ScrollMonth.NEXT) {
31031
+ else if (this.monthScrollDirection === "next" /* ScrollMonth.NEXT */) {
31039
31032
  this.nextMonthBtn.nativeElement.focus();
31040
31033
  }
31041
31034
  if (this.platform.isActivationKey(event)) {
31042
31035
  this.resetActiveDate();
31043
31036
  }
31044
- this.monthScrollDirection = ScrollMonth.NONE;
31037
+ this.monthScrollDirection = "none" /* ScrollMonth.NONE */;
31045
31038
  };
31046
31039
  }
31047
31040
  /**
@@ -31254,7 +31247,7 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31254
31247
  const step = isPageDown ? 1 : -1;
31255
31248
  this.previousViewDate = this.viewDate;
31256
31249
  this.viewDate = this.calendarModel.timedelta(this.viewDate, 'year', step);
31257
- this.animationAction = isPageDown ? ScrollMonth.NEXT : ScrollMonth.PREV;
31250
+ this.animationAction = isPageDown ? "next" /* ScrollMonth.NEXT */ : "prev" /* ScrollMonth.PREV */;
31258
31251
  this.isKeydownTrigger = true;
31259
31252
  let monthView = this.daysView;
31260
31253
  let activeDate;
@@ -31314,7 +31307,7 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31314
31307
  * @internal
31315
31308
  */
31316
31309
  onMouseUp(event) {
31317
- if (this.monthScrollDirection !== ScrollMonth.NONE) {
31310
+ if (this.monthScrollDirection !== "none" /* ScrollMonth.NONE */) {
31318
31311
  this.stopMonthScroll(event);
31319
31312
  }
31320
31313
  }
@@ -31325,13 +31318,13 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31325
31318
  });
31326
31319
  this.startMonthScroll$.pipe(takeUntil(this.stopMonthScroll$), switchMap(() => this.scrollMonth$.pipe(skipLast(1), debounce(() => interval(300)), takeUntil(this.stopMonthScroll$)))).subscribe(() => {
31327
31320
  switch (this.monthScrollDirection) {
31328
- case ScrollMonth.PREV:
31321
+ case "prev" /* ScrollMonth.PREV */:
31329
31322
  this.previousMonth();
31330
31323
  break;
31331
- case ScrollMonth.NEXT:
31324
+ case "next" /* ScrollMonth.NEXT */:
31332
31325
  this.nextMonth();
31333
31326
  break;
31334
- case ScrollMonth.NONE:
31327
+ case "none" /* ScrollMonth.NONE */:
31335
31328
  default:
31336
31329
  break;
31337
31330
  }
@@ -31357,12 +31350,12 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31357
31350
  * @internal
31358
31351
  */
31359
31352
  previousMonth(isKeydownTrigger = false) {
31360
- if (isKeydownTrigger && this.animationAction === ScrollMonth.NEXT) {
31353
+ if (isKeydownTrigger && this.animationAction === "next" /* ScrollMonth.NEXT */) {
31361
31354
  return;
31362
31355
  }
31363
31356
  this.previousViewDate = this.viewDate;
31364
31357
  this.viewDate = this.calendarModel.getPrevMonth(this.viewDate);
31365
- this.animationAction = ScrollMonth.PREV;
31358
+ this.animationAction = "prev" /* ScrollMonth.PREV */;
31366
31359
  this.isKeydownTrigger = isKeydownTrigger;
31367
31360
  }
31368
31361
  suppressBlur() {
@@ -31384,7 +31377,7 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31384
31377
  this.isKeydownTrigger = isKeydownTrigger;
31385
31378
  this.previousViewDate = this.viewDate;
31386
31379
  this.viewDate = this.calendarModel.getNextMonth(this.viewDate);
31387
- this.animationAction = ScrollMonth.NEXT;
31380
+ this.animationAction = "next" /* ScrollMonth.NEXT */;
31388
31381
  }
31389
31382
  /**
31390
31383
  * @hidden
@@ -31547,14 +31540,14 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31547
31540
  * @internal
31548
31541
  */
31549
31542
  animationDone(event) {
31550
- if ((event.fromState === ScrollMonth.NONE && (event.toState === ScrollMonth.PREV || event.toState === ScrollMonth.NEXT)) ||
31551
- (event.fromState === 'void' && event.toState === ScrollMonth.NONE)) {
31543
+ if ((event.fromState === "none" /* ScrollMonth.NONE */ && (event.toState === "prev" /* ScrollMonth.PREV */ || event.toState === "next" /* ScrollMonth.NEXT */)) ||
31544
+ (event.fromState === 'void' && event.toState === "none" /* ScrollMonth.NONE */)) {
31552
31545
  this.viewDateChanged.emit({ previousValue: this.previousViewDate, currentValue: this.viewDate });
31553
31546
  }
31554
31547
  if (!this.isKeydownTrigger) {
31555
31548
  this.resetActiveDate();
31556
31549
  }
31557
- if (this.monthScrollDirection !== ScrollMonth.NONE) {
31550
+ if (this.monthScrollDirection !== "none" /* ScrollMonth.NONE */) {
31558
31551
  this.scrollMonth$.next();
31559
31552
  }
31560
31553
  if (!this.isDefaultView) {
@@ -31571,10 +31564,10 @@ class IgxCalendarComponent extends IgxMonthPickerBaseDirective {
31571
31564
  date.nativeElement.focus();
31572
31565
  }, parseInt(slideInRight.options.params.duration, 10));
31573
31566
  }
31574
- else if (this.callback && (event.toState === ScrollMonth.NEXT || event.toState === ScrollMonth.PREV)) {
31567
+ else if (this.callback && (event.toState === "next" /* ScrollMonth.NEXT */ || event.toState === "prev" /* ScrollMonth.PREV */)) {
31575
31568
  this.callback(this.nextDate);
31576
31569
  }
31577
- this.animationAction = ScrollMonth.NONE;
31570
+ this.animationAction = "none" /* ScrollMonth.NONE */;
31578
31571
  }
31579
31572
  /**
31580
31573
  * @hidden
@@ -31894,7 +31887,7 @@ class IgxMonthPickerComponent extends IgxMonthPickerBaseDirective {
31894
31887
  */
31895
31888
  animationDone(event) {
31896
31889
  if ((event.fromState === 'void' && event.toState === '') ||
31897
- (event.fromState === '' && (event.toState === ScrollMonth.PREV || event.toState === ScrollMonth.NEXT))) {
31890
+ (event.fromState === '' && (event.toState === "prev" /* ScrollMonth.PREV */ || event.toState === "next" /* ScrollMonth.NEXT */))) {
31898
31891
  this.viewDateChanged.emit({ previousValue: this.previousViewDate, currentValue: this.viewDate });
31899
31892
  }
31900
31893
  this.yearAction = '';
@@ -32355,7 +32348,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
32355
32348
  * @deprecated in 17.0.0. To switch betweet `outlined` and `elevated` card use the `elevated` property.
32356
32349
  * Since version 17.0.0 the card component is `outlined` by default.
32357
32350
  */
32358
- const IgxCardType = mkenum({
32351
+ const IgxCardType = /*@__PURE__*/ mkenum({
32359
32352
  ELEVATED: 'elevated',
32360
32353
  OUTLINED: 'outlined'
32361
32354
  });
@@ -32488,7 +32481,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
32488
32481
  type: Input,
32489
32482
  args: [{ transform: booleanAttribute }]
32490
32483
  }] } });
32491
- const IgxCardActionsLayout = mkenum({
32484
+ const IgxCardActionsLayout = /*@__PURE__*/ mkenum({
32492
32485
  START: 'start',
32493
32486
  JUSTIFY: 'justify'
32494
32487
  });
@@ -32608,17 +32601,22 @@ const CarouselResourceStringsEN = {
32608
32601
  igx_carousel_next_slide: 'next slide'
32609
32602
  };
32610
32603
 
32604
+ const HorizontalAnimationType = /*@__PURE__*/ mkenum({
32605
+ none: 'none',
32606
+ slide: 'slide',
32607
+ fade: 'fade'
32608
+ });
32609
+ const CarouselIndicatorsOrientation = /*@__PURE__*/ mkenum({
32610
+ bottom: 'bottom',
32611
+ top: 'top'
32612
+ });
32613
+
32611
32614
  var Direction;
32612
32615
  (function (Direction) {
32613
32616
  Direction[Direction["NONE"] = 0] = "NONE";
32614
32617
  Direction[Direction["NEXT"] = 1] = "NEXT";
32615
32618
  Direction[Direction["PREV"] = 2] = "PREV";
32616
32619
  })(Direction || (Direction = {}));
32617
- const HorizontalAnimationType = mkenum({
32618
- none: 'none',
32619
- slide: 'slide',
32620
- fade: 'fade'
32621
- });
32622
32620
  /** @hidden */
32623
32621
  let IgxCarouselComponentBase = class IgxCarouselComponentBase {
32624
32622
  constructor(animationService, cdr) {
@@ -32939,10 +32937,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
32939
32937
  }] } });
32940
32938
 
32941
32939
  let NEXT_ID$g = 0;
32942
- const CarouselIndicatorsOrientation = mkenum({
32943
- bottom: 'bottom',
32944
- top: 'top'
32945
- });
32946
32940
  class CarouselHammerConfig extends HammerGestureConfig {
32947
32941
  constructor() {
32948
32942
  super(...arguments);
@@ -33909,7 +33903,7 @@ const ChipResourceStringsEN = {
33909
33903
  igx_chip_select: 'select chip'
33910
33904
  };
33911
33905
 
33912
- const IgxChipTypeVariant = mkenum({
33906
+ const IgxChipTypeVariant = /*@__PURE__*/ mkenum({
33913
33907
  PRIMARY: 'primary',
33914
33908
  INFO: 'info',
33915
33909
  SUCCESS: 'success',
@@ -35428,7 +35422,7 @@ const ComboResourceStringsEN = {
35428
35422
  igx_combo_empty_message: 'The list is empty'
35429
35423
  };
35430
35424
 
35431
- const IGX_COMBO_COMPONENT = new InjectionToken('IgxComboComponentToken');
35425
+ const IGX_COMBO_COMPONENT = /*@__PURE__*/ new InjectionToken('IgxComboComponentToken');
35432
35426
  let NEXT_ID$f = 0;
35433
35427
  /**
35434
35428
  * @hidden
@@ -35442,14 +35436,6 @@ const ItemHeights = {
35442
35436
  cosy: 32,
35443
35437
  compact: 28,
35444
35438
  };
35445
- /** @hidden @internal */
35446
- var DataTypes;
35447
- (function (DataTypes) {
35448
- DataTypes["EMPTY"] = "empty";
35449
- DataTypes["PRIMITIVE"] = "primitive";
35450
- DataTypes["COMPLEX"] = "complex";
35451
- DataTypes["PRIMARYKEY"] = "valueKey";
35452
- })(DataTypes || (DataTypes = {}));
35453
35439
  class IgxComboBaseDirective extends DisplayDensityBase {
35454
35440
  /**
35455
35441
  * Configures the drop down list height
@@ -35618,14 +35604,14 @@ class IgxComboBaseDirective extends DisplayDensityBase {
35618
35604
  get isRemote() {
35619
35605
  return this.totalItemCount > 0 &&
35620
35606
  this.valueKey &&
35621
- this.dataType === DataTypes.COMPLEX;
35607
+ this.dataType === "complex" /* DataTypes.COMPLEX */;
35622
35608
  }
35623
35609
  /** @hidden @internal */
35624
35610
  get dataType() {
35625
35611
  if (this.displayKey) {
35626
- return DataTypes.COMPLEX;
35612
+ return "complex" /* DataTypes.COMPLEX */;
35627
35613
  }
35628
- return DataTypes.PRIMITIVE;
35614
+ return "primitive" /* DataTypes.PRIMITIVE */;
35629
35615
  }
35630
35616
  /**
35631
35617
  * Gets if control is valid, when used in a form
@@ -35732,7 +35718,7 @@ class IgxComboBaseDirective extends DisplayDensityBase {
35732
35718
  if (this.itemTemplate) {
35733
35719
  return this.itemTemplate;
35734
35720
  }
35735
- if (this._dataType === DataTypes.COMPLEX) {
35721
+ if (this._dataType === "complex" /* DataTypes.COMPLEX */) {
35736
35722
  return this.complexTemplate;
35737
35723
  }
35738
35724
  return this.primitiveTemplate;
@@ -36164,7 +36150,7 @@ class IgxComboBaseDirective extends DisplayDensityBase {
36164
36150
  this.destroy$.next();
36165
36151
  this.destroy$.complete();
36166
36152
  this.comboAPI.clear();
36167
- this.selectionService.clear(this.id);
36153
+ this.selectionService.delete(this.id);
36168
36154
  }
36169
36155
  /**
36170
36156
  * A method that opens/closes the combo.
@@ -37973,7 +37959,7 @@ const DatePickerResourceStringsEN = {
37973
37959
  };
37974
37960
 
37975
37961
  /** Header orientation in `dialog` mode. */
37976
- const PickerHeaderOrientation = mkenum({
37962
+ const PickerHeaderOrientation = /*@__PURE__*/ mkenum({
37977
37963
  Horizontal: 'horizontal',
37978
37964
  Vertical: 'vertical'
37979
37965
  });
@@ -37981,7 +37967,7 @@ const PickerHeaderOrientation = mkenum({
37981
37967
  * This enumeration is used to configure whether the date/time picker has an editable input with drop down
37982
37968
  * or is readonly - the date/time is selected only through a dialog.
37983
37969
  */
37984
- const PickerInteractionMode = mkenum({
37970
+ const PickerInteractionMode = /*@__PURE__*/ mkenum({
37985
37971
  DropDown: 'dropdown',
37986
37972
  Dialog: 'dialog'
37987
37973
  });
@@ -44571,14 +44557,6 @@ class IgxSelectComponent extends IgxDropDownComponent {
44571
44557
  this.inputGroup.suffixes = this.suffixes;
44572
44558
  }
44573
44559
  }
44574
- /**
44575
- * @hidden @internal
44576
- */
44577
- ngOnDestroy() {
44578
- this.destroy$.next(true);
44579
- this.destroy$.complete();
44580
- this.selection.clear(this.id);
44581
- }
44582
44560
  /**
44583
44561
  * @hidden @internal
44584
44562
  * Prevent input blur - closing the items container on Header/Footer Template click.
@@ -48629,12 +48607,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
48629
48607
 
48630
48608
  const ONE_PERCENT = 0.01;
48631
48609
  const MIN_VALUE = 0;
48632
- const IgxTextAlign = mkenum({
48610
+ const IgxTextAlign = /*@__PURE__*/ mkenum({
48633
48611
  START: 'start',
48634
48612
  CENTER: 'center',
48635
48613
  END: 'end'
48636
48614
  });
48637
- const IgxProgressType = mkenum({
48615
+ const IgxProgressType = /*@__PURE__*/ mkenum({
48638
48616
  ERROR: 'error',
48639
48617
  INFO: 'info',
48640
48618
  WARNING: 'warning',
@@ -49217,14 +49195,14 @@ const TreeResourceStringsEN = {
49217
49195
  };
49218
49196
 
49219
49197
  // Enums
49220
- const IgxTreeSelectionType = mkenum({
49198
+ const IgxTreeSelectionType = /*@__PURE__*/ mkenum({
49221
49199
  None: 'None',
49222
49200
  BiState: 'BiState',
49223
49201
  Cascading: 'Cascading'
49224
49202
  });
49225
49203
  // Token
49226
- const IGX_TREE_COMPONENT = new InjectionToken('IgxTreeToken');
49227
- const IGX_TREE_NODE_COMPONENT = new InjectionToken('IgxTreeNodeToken');
49204
+ const IGX_TREE_COMPONENT = /*@__PURE__*/ new InjectionToken('IgxTreeToken');
49205
+ const IGX_TREE_NODE_COMPONENT = /*@__PURE__*/ new InjectionToken('IgxTreeNodeToken');
49228
49206
 
49229
49207
  /** @hidden @internal */
49230
49208
  class IgxTreeService {
@@ -60087,7 +60065,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
60087
60065
  type: Injectable
60088
60066
  }] });
60089
60067
 
60090
- IgcTrialWatermark.register();
60068
+ /*@__PURE__*/ IgcTrialWatermark.register();
60091
60069
  let FAKE_ROW_ID = -1;
60092
60070
  const DEFAULT_ITEMS_PER_PAGE = 15;
60093
60071
  const MINIMUM_COLUMN_WIDTH$1 = 136;
@@ -80337,6 +80315,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
80337
80315
  }] });
80338
80316
 
80339
80317
  class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirective {
80318
+ /**
80319
+ * Sets/Gets the toolbar template for each child grid created from this row island.
80320
+ */
80321
+ get toolbarTemplate() {
80322
+ return this._toolbarTemplate || this.toolbarDirectiveTemplate;
80323
+ }
80324
+ set toolbarTemplate(template) {
80325
+ this._toolbarTemplate = template;
80326
+ }
80327
+ /**
80328
+ * Sets/Gets the paginator template for each child grid created from this row island.
80329
+ */
80330
+ get paginatorTemplate() {
80331
+ return this._paginatorTemplate || this.paginatorDirectiveTemplate;
80332
+ }
80333
+ set paginatorTemplate(template) {
80334
+ this._paginatorTemplate = template;
80335
+ }
80340
80336
  /**
80341
80337
  * Sets if all immediate children of the grids for this `IgxRowIslandComponent` should be expanded/collapsed.
80342
80338
  * ```html
@@ -80516,12 +80512,19 @@ class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirective {
80516
80512
  this._init = false;
80517
80513
  // Create the child toolbar if the parent island has a toolbar definition
80518
80514
  this.gridCreated.pipe(pluck('grid'), takeUntil(this.destroy$)).subscribe(grid => {
80519
- grid.rendered$.pipe(first$1(), filter(() => !!this.islandToolbarTemplate))
80520
- .subscribe(() => grid.toolbarOutlet.createEmbeddedView(this.islandToolbarTemplate, { $implicit: grid }, { injector: grid.toolbarOutlet.injector }));
80521
- grid.rendered$.pipe(first$1(), filter(() => !!this.islandPaginatorTemplate))
80515
+ grid.rendered$.pipe(first$1(), filter(() => !!this.toolbarTemplate))
80516
+ .subscribe(() => grid.toolbarOutlet.createEmbeddedView(this.toolbarTemplate, { $implicit: grid }, { injector: grid.toolbarOutlet.injector }));
80517
+ grid.rendered$.pipe(first$1(), filter(() => !!this.paginatorTemplate))
80522
80518
  .subscribe(() => {
80523
- this.rootGrid.paginatorList.changes.pipe(takeUntil(this.destroy$)).subscribe(() => grid.setUpPaginator());
80524
- grid.paginatorOutlet.createEmbeddedView(this.islandPaginatorTemplate);
80519
+ this.rootGrid.paginatorList.changes.pipe(takeUntil(this.destroy$)).subscribe((changes) => {
80520
+ changes.forEach(p => {
80521
+ if (p.nativeElement.offsetParent?.id === grid.id) {
80522
+ // Optimize update only for those grids that have related changed paginator.
80523
+ grid.setUpPaginator();
80524
+ }
80525
+ });
80526
+ });
80527
+ grid.paginatorOutlet.createEmbeddedView(this.paginatorTemplate, { $implicit: grid });
80525
80528
  });
80526
80529
  });
80527
80530
  }
@@ -80599,11 +80602,11 @@ class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirective {
80599
80602
  grid.onRowIslandChange();
80600
80603
  }
80601
80604
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: IgxRowIslandComponent, deps: [{ token: IgxGridValidationService }, { token: IgxGridSelectionService }, { token: IgxColumnResizingService }, { token: IGX_GRID_SERVICE_BASE }, { token: IgxFlatTransactionFactory }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: DOCUMENT }, { token: i0.ChangeDetectorRef }, { token: i0.IterableDiffers }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.EnvironmentInjector }, { token: IgxHierarchicalGridNavigationService }, { token: IgxFilteringService }, { token: IgxTextHighlightService }, { token: IgxOverlayService }, { token: IgxGridSummaryService }, { token: DisplayDensityToken, optional: true }, { token: IgxRowIslandAPIService }, { token: LOCALE_ID }, { token: PlatformUtil }], target: i0.ɵɵFactoryTarget.Component }); }
80602
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.2.1", type: IgxRowIslandComponent, isStandalone: true, selector: "igx-row-island", inputs: { key: "key", expandChildren: ["expandChildren", "expandChildren", booleanAttribute] }, outputs: { layoutChange: "layoutChange", gridCreated: "gridCreated", gridInitialized: "gridInitialized" }, providers: [
80605
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.2.1", type: IgxRowIslandComponent, isStandalone: true, selector: "igx-row-island", inputs: { key: "key", toolbarTemplate: "toolbarTemplate", paginatorTemplate: "paginatorTemplate", expandChildren: ["expandChildren", "expandChildren", booleanAttribute] }, outputs: { layoutChange: "layoutChange", gridCreated: "gridCreated", gridInitialized: "gridInitialized" }, providers: [
80603
80606
  IgxRowIslandAPIService,
80604
80607
  IgxFilteringService,
80605
80608
  IgxGridSelectionService
80606
- ], queries: [{ propertyName: "islandToolbarTemplate", first: true, predicate: IgxGridToolbarDirective, descendants: true, read: TemplateRef }, { propertyName: "islandPaginatorTemplate", first: true, predicate: IgxPaginatorDirective, descendants: true, read: TemplateRef }, { propertyName: "children", predicate: i0.forwardRef(() => IgxRowIslandComponent), read: IgxRowIslandComponent }, { propertyName: "childColumns", predicate: IgxColumnComponent, read: IgxColumnComponent }, { propertyName: "actionStrips", predicate: IgxActionStripToken, read: IgxActionStripToken }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
80609
+ ], queries: [{ propertyName: "toolbarDirectiveTemplate", first: true, predicate: IgxGridToolbarDirective, descendants: true, read: TemplateRef }, { propertyName: "paginatorDirectiveTemplate", first: true, predicate: IgxPaginatorDirective, descendants: true, read: TemplateRef }, { propertyName: "children", predicate: i0.forwardRef(() => IgxRowIslandComponent), read: IgxRowIslandComponent }, { propertyName: "childColumns", predicate: IgxColumnComponent, read: IgxColumnComponent }, { propertyName: "actionStrips", predicate: IgxActionStripToken, read: IgxActionStripToken }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
80607
80610
  }
80608
80611
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: IgxRowIslandComponent, decorators: [{
80609
80612
  type: Component,
@@ -80643,12 +80646,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
80643
80646
  }], childColumns: [{
80644
80647
  type: ContentChildren,
80645
80648
  args: [IgxColumnComponent, { read: IgxColumnComponent, descendants: false }]
80646
- }], islandToolbarTemplate: [{
80649
+ }], toolbarDirectiveTemplate: [{
80647
80650
  type: ContentChild,
80648
80651
  args: [IgxGridToolbarDirective, { read: TemplateRef }]
80649
- }], islandPaginatorTemplate: [{
80652
+ }], paginatorDirectiveTemplate: [{
80650
80653
  type: ContentChild,
80651
80654
  args: [IgxPaginatorDirective, { read: TemplateRef }]
80655
+ }], toolbarTemplate: [{
80656
+ type: Input
80657
+ }], paginatorTemplate: [{
80658
+ type: Input
80652
80659
  }], actionStrips: [{
80653
80660
  type: ContentChildren,
80654
80661
  args: [IgxActionStripToken, { read: IgxActionStripToken, descendants: false }]
@@ -85663,20 +85670,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
85663
85670
  args: ['class.igx-tabs__panel']
85664
85671
  }] } });
85665
85672
 
85666
- const IgxTabsAlignment = mkenum({
85673
+ const IgxTabsAlignment = /*@__PURE__*/ mkenum({
85667
85674
  start: 'start',
85668
85675
  end: 'end',
85669
85676
  center: 'center',
85670
85677
  justify: 'justify'
85671
85678
  });
85672
85679
  /** @hidden */
85673
- var TabScrollButtonStyle;
85674
- (function (TabScrollButtonStyle) {
85675
- TabScrollButtonStyle["Enabled"] = "enabled";
85676
- TabScrollButtonStyle["Disabled"] = "disabled";
85677
- TabScrollButtonStyle["NotDisplayed"] = "not_displayed";
85678
- })(TabScrollButtonStyle || (TabScrollButtonStyle = {}));
85679
- /** @hidden */
85680
85680
  let NEXT_TAB_ID = 0;
85681
85681
  /**
85682
85682
  * Tabs component is used to organize or switch between similar data sets.
@@ -85855,15 +85855,15 @@ class IgxTabsComponent extends IgxTabsDirective {
85855
85855
  this.setScrollButtonStyle(this.scrollNextButton.nativeElement, scrollNextButtonStyle);
85856
85856
  }
85857
85857
  setScrollButtonStyle(button, buttonStyle) {
85858
- if (buttonStyle === TabScrollButtonStyle.Enabled) {
85858
+ if (buttonStyle === "enabled" /* TabScrollButtonStyle.Enabled */) {
85859
85859
  button.disabled = false;
85860
85860
  button.style.display = '';
85861
85861
  }
85862
- else if (buttonStyle === TabScrollButtonStyle.Disabled) {
85862
+ else if (buttonStyle === "disabled" /* TabScrollButtonStyle.Disabled */) {
85863
85863
  button.disabled = true;
85864
85864
  button.style.display = '';
85865
85865
  }
85866
- else if (buttonStyle === TabScrollButtonStyle.NotDisplayed) {
85866
+ else if (buttonStyle === "not_displayed" /* TabScrollButtonStyle.NotDisplayed */) {
85867
85867
  button.style.display = 'none';
85868
85868
  }
85869
85869
  }
@@ -85873,12 +85873,12 @@ class IgxTabsComponent extends IgxTabsDirective {
85873
85873
  if (offset === 0) {
85874
85874
  // Fix for IE 11, a difference is accumulated from the widths calculations.
85875
85875
  if (itemsContainerWidth - headerContainerWidth <= 1) {
85876
- return TabScrollButtonStyle.NotDisplayed;
85876
+ return "not_displayed" /* TabScrollButtonStyle.NotDisplayed */;
85877
85877
  }
85878
- return TabScrollButtonStyle.Disabled;
85878
+ return "disabled" /* TabScrollButtonStyle.Disabled */;
85879
85879
  }
85880
85880
  else {
85881
- return TabScrollButtonStyle.Enabled;
85881
+ return "enabled" /* TabScrollButtonStyle.Enabled */;
85882
85882
  }
85883
85883
  }
85884
85884
  resolveRightScrollButtonStyle(itemsContainerWidth) {
@@ -85888,13 +85888,13 @@ class IgxTabsComponent extends IgxTabsDirective {
85888
85888
  const total = offset + viewPortWidth;
85889
85889
  // Fix for IE 11, a difference is accumulated from the widths calculations.
85890
85890
  if (itemsContainerWidth - headerContainerWidth <= 1 && offset === 0) {
85891
- return TabScrollButtonStyle.NotDisplayed;
85891
+ return "not_displayed" /* TabScrollButtonStyle.NotDisplayed */;
85892
85892
  }
85893
85893
  if (itemsContainerWidth > total) {
85894
- return TabScrollButtonStyle.Enabled;
85894
+ return "enabled" /* TabScrollButtonStyle.Enabled */;
85895
85895
  }
85896
85896
  else {
85897
- return TabScrollButtonStyle.Disabled;
85897
+ return "disabled" /* TabScrollButtonStyle.Disabled */;
85898
85898
  }
85899
85899
  }
85900
85900
  getTabItemsContainerWidth() {
@@ -86890,7 +86890,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
86890
86890
  type: HostBinding,
86891
86891
  args: ['style.flex-direction']
86892
86892
  }] } });
86893
- const SPLITTER_INTERACTION_KEYS = new Set('right down left up arrowright arrowdown arrowleft arrowup'.split(' '));
86894
86893
  /**
86895
86894
  * @hidden @internal
86896
86895
  * Represents the draggable bar that visually separates panes and allows for changing their sizes.
@@ -86914,6 +86913,7 @@ class IgxSplitBarComponent {
86914
86913
  */
86915
86914
  this.moving = new EventEmitter();
86916
86915
  this.movingEnd = new EventEmitter();
86916
+ this.interactionKeys = new Set('right down left up arrowright arrowdown arrowleft arrowup'.split(' '));
86917
86917
  }
86918
86918
  /**
86919
86919
  * @hidden
@@ -86952,7 +86952,7 @@ class IgxSplitBarComponent {
86952
86952
  const key = event.key.toLowerCase();
86953
86953
  const ctrl = event.ctrlKey;
86954
86954
  event.stopPropagation();
86955
- if (SPLITTER_INTERACTION_KEYS.has(key)) {
86955
+ if (this.interactionKeys.has(key)) {
86956
86956
  event.preventDefault();
86957
86957
  }
86958
86958
  switch (key) {
@@ -87147,8 +87147,8 @@ const VerticalAnimationType = {
87147
87147
  None: 'none'
87148
87148
  };
87149
87149
  // Token
87150
- const IGX_STEPPER_COMPONENT = new InjectionToken('IgxStepperToken');
87151
- const IGX_STEP_COMPONENT = new InjectionToken('IgxStepToken');
87150
+ const IGX_STEPPER_COMPONENT = /*@__PURE__*/ new InjectionToken('IgxStepperToken');
87151
+ const IGX_STEP_COMPONENT = /*@__PURE__*/ new InjectionToken('IgxStepToken');
87152
87152
 
87153
87153
  /** @hidden @internal */
87154
87154
  class IgxStepperService {
@@ -90828,5 +90828,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImpor
90828
90828
  * Generated bundle index. Do not edit.
90829
90829
  */
90830
90830
 
90831
- export { AbsolutePosition, AbsoluteScrollStrategy, ActionStripResourceStringsEN, AutoPositionStrategy, BannerResourceStringsEN, BaseFilteringStrategy, BlockScrollStrategy, ButtonGroupAlignment, CachedDataCloneStrategy, Calendar, CalendarHammerConfig, CalendarResourceStringsEN, CalendarSelection, 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, DisplayDensity, DisplayDensityBase, DisplayDensityToken, DragDirection, ElasticPositionStrategy, ExpansionPanelHeaderIconPosition, ExportHeaderType, ExportRecordType, FilterMode, FilterUtil, FilteringExpressionsTree, FilteringExpressionsTreeType, FilteringLogic, FilteringStrategy, FormattedValuesFilteringStrategy, GRID_LEVEL_COL, GRID_PARENT, GRID_ROOT_SUMMARY, GlobalPositionStrategy, GridColumnDataType, GridInstanceType, 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_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, 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, IgxCSVTextDirective, IgxCalendarComponent, IgxCalendarHeaderTemplateDirective, IgxCalendarModule, IgxCalendarMonthDirective, IgxCalendarScrollMonthDirective, IgxCalendarSubheaderTemplateDirective, IgxCalendarView, IgxCalendarYearDirective, IgxCardActionsComponent, IgxCardActionsLayout, IgxCardComponent, IgxCardContentDirective, IgxCardFooterDirective, IgxCardHeaderComponent, IgxCardHeaderSubtitleDirective, IgxCardHeaderTitleDirective, IgxCardMediaDirective, IgxCardModule, IgxCardThumbnailDirective, IgxCardType, 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, IgxGridExcelStyleFilteringComponent, IgxGridFooterComponent, IgxGridForOfContext, IgxGridForOfDirective, IgxGridHeaderComponent, IgxGridHeaderGroupComponent, IgxGridHeaderRowComponent, 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, 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, IgxPivotNumericAggregate, IgxPivotTimeAggregate, IgxPivotValueChipTemplateDirective, IgxPrefixDirective, IgxPrependDropStrategy, IgxProgressBarGradientDirective, IgxProgressBarModule, IgxProgressBarTextTemplateDirective, IgxProgressType, IgxQueryBuilderComponent, IgxQueryBuilderHeaderComponent, IgxQueryBuilderModule, 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, InputResourceStringsEN, LabelPosition, ListResourceStringsEN, NoOpScrollStrategy, NoopFilteringStrategy, NoopPivotDimensionsStrategy, NoopSortingStrategy, PaginatorResourceStringsEN, PagingError, PickerInteractionMode, PivotColumnDimensionsStrategy, PivotDimensionType, PivotRowDimensionsStrategy, Point, QueryBuilderResourceStringsEN, RadioGroupAlignment, RelativePosition, RelativePositionStrategy, RowPinningPosition, SPLITTER_INTERACTION_KEYS, ScrollMonth, ScrollStrategy, SliderHandle, SortingDirection, SplitterType, TickLabelsOrientation, TicksOrientation, TimePickerResourceStringsEN, TransactionEventOrigin, TransactionType, TreeGridFilteringStrategy, TreeGridFormattedValuesFilteringStrategy, TreeGridMatchingRecordsOnlyFilteringStrategy, TreeResourceStringsEN, VerticalAlignment, VerticalAnimationType, WEEKDAYS, changei18n, comboIgnoreDiacriticsFilter, igxI18N, isDateInRanges, isLeap, monthRange, range, weekDay };
90831
+ export { AbsolutePosition, AbsoluteScrollStrategy, ActionStripResourceStringsEN, AutoPositionStrategy, BannerResourceStringsEN, BaseFilteringStrategy, BlockScrollStrategy, ButtonGroupAlignment, CachedDataCloneStrategy, Calendar, CalendarHammerConfig, CalendarResourceStringsEN, CalendarSelection, 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, DisplayDensity, DisplayDensityBase, DisplayDensityToken, DragDirection, ElasticPositionStrategy, ExpansionPanelHeaderIconPosition, ExportHeaderType, ExportRecordType, FilterMode, FilterUtil, FilteringExpressionsTree, FilteringExpressionsTreeType, FilteringLogic, FilteringStrategy, FormattedValuesFilteringStrategy, GRID_LEVEL_COL, GRID_PARENT, GRID_ROOT_SUMMARY, GlobalPositionStrategy, GridColumnDataType, GridInstanceType, 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_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, 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, IgxCSVTextDirective, IgxCalendarComponent, IgxCalendarHeaderTemplateDirective, IgxCalendarModule, IgxCalendarMonthDirective, IgxCalendarScrollMonthDirective, IgxCalendarSubheaderTemplateDirective, IgxCalendarView, IgxCalendarYearDirective, IgxCardActionsComponent, IgxCardActionsLayout, IgxCardComponent, IgxCardContentDirective, IgxCardFooterDirective, IgxCardHeaderComponent, IgxCardHeaderSubtitleDirective, IgxCardHeaderTitleDirective, IgxCardMediaDirective, IgxCardModule, IgxCardThumbnailDirective, IgxCardType, 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, IgxGridExcelStyleFilteringComponent, IgxGridFooterComponent, IgxGridForOfContext, IgxGridForOfDirective, IgxGridHeaderComponent, IgxGridHeaderGroupComponent, IgxGridHeaderRowComponent, 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, 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, IgxPivotNumericAggregate, IgxPivotTimeAggregate, IgxPivotValueChipTemplateDirective, IgxPrefixDirective, IgxPrependDropStrategy, IgxProgressBarGradientDirective, IgxProgressBarModule, IgxProgressBarTextTemplateDirective, IgxProgressType, IgxQueryBuilderComponent, IgxQueryBuilderHeaderComponent, IgxQueryBuilderModule, 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, InputResourceStringsEN, LabelPosition, ListResourceStringsEN, NoOpScrollStrategy, NoopFilteringStrategy, NoopPivotDimensionsStrategy, NoopSortingStrategy, PaginatorResourceStringsEN, PagingError, PickerInteractionMode, PivotColumnDimensionsStrategy, PivotDimensionType, PivotRowDimensionsStrategy, Point, QueryBuilderResourceStringsEN, RadioGroupAlignment, RelativePosition, RelativePositionStrategy, RowPinningPosition, ScrollStrategy, SliderHandle, SortingDirection, SplitterType, TickLabelsOrientation, TicksOrientation, TimePickerResourceStringsEN, TransactionEventOrigin, TransactionType, TreeGridFilteringStrategy, TreeGridFormattedValuesFilteringStrategy, TreeGridMatchingRecordsOnlyFilteringStrategy, TreeResourceStringsEN, VerticalAlignment, VerticalAnimationType, WEEKDAYS, changei18n, comboIgnoreDiacriticsFilter, igxI18N, isDateInRanges, isLeap, monthRange, range, weekDay };
90832
90832
  //# sourceMappingURL=igniteui-angular.mjs.map