igniteui-angular 19.0.1 → 19.0.2

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 (45) hide show
  1. package/README.md +2 -1
  2. package/fesm2022/igniteui-angular.mjs +181 -137
  3. package/fesm2022/igniteui-angular.mjs.map +1 -1
  4. package/lib/carousel/carousel.component.d.ts +2 -1
  5. package/lib/checkbox/checkbox.component.d.ts +4 -5
  6. package/lib/core/styles/components/avatar/_avatar-theme.scss +1 -31
  7. package/lib/core/styles/components/card/_card-theme.scss +1 -1
  8. package/lib/core/styles/components/combo/_combo-theme.scss +22 -8
  9. package/lib/core/styles/components/input/_input-group-theme.scss +5 -2
  10. package/lib/core/utils.d.ts +2 -0
  11. package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
  12. package/lib/icon/icon.component.d.ts +1 -3
  13. package/lib/icon/icon.service.d.ts +7 -4
  14. package/lib/icon/types.d.ts +3 -1
  15. package/lib/input-group/input-group.component.d.ts +8 -10
  16. package/lib/services/public_api.d.ts +1 -0
  17. package/lib/services/theme/theme.token.d.ts +24 -0
  18. package/package.json +1 -1
  19. package/styles/igniteui-angular-dark.css +1 -1
  20. package/styles/igniteui-angular.css +1 -1
  21. package/styles/igniteui-bootstrap-dark.css +1 -1
  22. package/styles/igniteui-bootstrap-light.css +1 -1
  23. package/styles/igniteui-dark-green.css +1 -1
  24. package/styles/igniteui-fluent-dark-excel.css +1 -1
  25. package/styles/igniteui-fluent-dark-word.css +1 -1
  26. package/styles/igniteui-fluent-dark.css +1 -1
  27. package/styles/igniteui-fluent-light-excel.css +1 -1
  28. package/styles/igniteui-fluent-light-word.css +1 -1
  29. package/styles/igniteui-fluent-light.css +1 -1
  30. package/styles/igniteui-indigo-dark.css +1 -1
  31. package/styles/igniteui-indigo-light.css +1 -1
  32. package/styles/maps/igniteui-angular-dark.css.map +1 -1
  33. package/styles/maps/igniteui-angular.css.map +1 -1
  34. package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
  35. package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
  36. package/styles/maps/igniteui-dark-green.css.map +1 -1
  37. package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
  38. package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
  39. package/styles/maps/igniteui-fluent-dark.css.map +1 -1
  40. package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
  41. package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
  42. package/styles/maps/igniteui-fluent-light.css.map +1 -1
  43. package/styles/maps/igniteui-indigo-dark.css.map +1 -1
  44. package/styles/maps/igniteui-indigo-light.css.map +1 -1
  45. package/lib/services/theme/theme.service.d.ts +0 -27
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, Directive, Input, HostListener, EventEmitter, InjectionToken, isDevMode, inject, PLATFORM_ID, Inject, ElementRef, ViewContainerRef, createComponent, Output, HostBinding, Self, Optional, booleanAttribute, SecurityContext, Component, ContentChildren, ContentChild, RendererStyleFlags2, Pipe, ViewChild, DestroyRef, LOCALE_ID, forwardRef, Host, QueryList, ViewChildren, TemplateRef, ChangeDetectionStrategy, SimpleChange, SkipSelf, CUSTOM_ELEMENTS_SCHEMA, reflectComponentType, NgModule } from '@angular/core';
2
+ import { Injectable, Directive, Input, HostListener, EventEmitter, InjectionToken, isDevMode, inject, PLATFORM_ID, Inject, ElementRef, ViewContainerRef, createComponent, Output, HostBinding, Self, Optional, booleanAttribute, SecurityContext, DestroyRef, Component, ContentChildren, ContentChild, RendererStyleFlags2, Pipe, ViewChild, LOCALE_ID, forwardRef, Host, QueryList, ViewChildren, TemplateRef, ChangeDetectionStrategy, SimpleChange, SkipSelf, CUSTOM_ELEMENTS_SCHEMA, reflectComponentType, NgModule } from '@angular/core';
3
3
  import * as i4 from '@angular/forms';
4
4
  import { NgModel, NgControl, FormControlName, NG_VALUE_ACCESSOR, Validators, NG_VALIDATORS, FormGroup, FormsModule, RequiredValidator, MinValidator, MaxValidator, EmailValidator, MinLengthValidator, MaxLengthValidator, PatternValidator, FormControl, ReactiveFormsModule } from '@angular/forms';
5
5
  import { Observable, NEVER, Subject, fromEvent, BehaviorSubject, interval, animationFrameScheduler, noop, merge, Subscription, timer, takeUntil as takeUntil$1, pipe } from 'rxjs';
@@ -789,7 +789,13 @@ function getComponentCssSizeVar(size) {
789
789
  * @returns string encoded using the encodeURI function.
790
790
  */
791
791
  function normalizeURI(path) {
792
- return path.split('/').map(encodeURI).join('/');
792
+ return path?.split('/').map(encodeURI).join('/');
793
+ }
794
+ function getComponentTheme(el) {
795
+ return globalThis.window
796
+ ?.getComputedStyle(el)
797
+ .getPropertyValue('--theme')
798
+ .trim();
793
799
  }
794
800
 
795
801
  var PagingError;
@@ -1403,13 +1409,14 @@ class ExportUtilities {
1403
1409
  return !ExportUtilities.isSpecialData(dataEntry) ? Array.from(keys) : ['Column 1'];
1404
1410
  }
1405
1411
  static saveBlobToFile(blob, fileName) {
1406
- const a = document.createElement('a');
1412
+ const doc = globalThis.document;
1413
+ const a = doc.createElement('a');
1407
1414
  const url = window.URL.createObjectURL(blob);
1408
1415
  a.download = fileName;
1409
1416
  a.href = url;
1410
- document.body.appendChild(a);
1417
+ doc.body.appendChild(a);
1411
1418
  a.click();
1412
- document.body.removeChild(a);
1419
+ doc.body.removeChild(a);
1413
1420
  window.URL.revokeObjectURL(url);
1414
1421
  }
1415
1422
  static stringToArrayBuffer(s) {
@@ -4532,7 +4539,7 @@ class WorksheetDataDictionary {
4532
4539
  }
4533
4540
  getContext() {
4534
4541
  if (!this._context) {
4535
- const canvas = document.createElement('canvas');
4542
+ const canvas = globalThis.document?.createElement('canvas');
4536
4543
  this._context = canvas.getContext('2d');
4537
4544
  this._context.font = WorksheetDataDictionary.DEFAULT_FONT;
4538
4545
  }
@@ -7320,6 +7327,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
7320
7327
  }]
7321
7328
  }] });
7322
7329
 
7330
+ class ThemeToken {
7331
+ constructor(t) {
7332
+ this.t = t;
7333
+ this.document = inject(DOCUMENT);
7334
+ const globalTheme = globalThis.window
7335
+ ?.getComputedStyle(this.document.body)
7336
+ .getPropertyValue("--ig-theme")
7337
+ .trim() || 'material';
7338
+ const _theme = t ?? globalTheme;
7339
+ this.subject = new BehaviorSubject(_theme);
7340
+ }
7341
+ onChange(callback) {
7342
+ return this.subject.subscribe(callback);
7343
+ }
7344
+ set(theme) {
7345
+ this.subject.next(theme);
7346
+ }
7347
+ get theme() {
7348
+ return this.subject.getValue();
7349
+ }
7350
+ get preferToken() {
7351
+ return !!this.t;
7352
+ }
7353
+ }
7354
+ const THEME_TOKEN = new InjectionToken('ThemeToken', {
7355
+ providedIn: 'root',
7356
+ factory: () => new ThemeToken()
7357
+ });
7358
+ const Theme = /*@__PURE__*/ mkenum({
7359
+ Material: "material",
7360
+ Fluent: "fluent",
7361
+ Bootstrap: "bootstrap",
7362
+ IndigoDesign: "indigo",
7363
+ });
7364
+
7323
7365
  // Export services
7324
7366
 
7325
7367
  /** @hidden */
@@ -9700,10 +9742,12 @@ const IndigoIcons = new Map(Object.entries({
9700
9742
  * ```
9701
9743
  */
9702
9744
  class IgxIconService {
9703
- constructor(_sanitizer, _httpClient, _platformUtil, document) {
9745
+ constructor(_sanitizer, _httpClient, _platformUtil, _themeToken, _destroyRef, document) {
9704
9746
  this._sanitizer = _sanitizer;
9705
9747
  this._httpClient = _httpClient;
9706
9748
  this._platformUtil = _platformUtil;
9749
+ this._themeToken = _themeToken;
9750
+ this._destroyRef = _destroyRef;
9707
9751
  this.document = document;
9708
9752
  this._defaultFamily = {
9709
9753
  name: "material",
@@ -9715,6 +9759,10 @@ class IgxIconService {
9715
9759
  this._iconLoaded = new Subject();
9716
9760
  this.iconLoaded = this._iconLoaded.asObservable();
9717
9761
  this.setFamily(this._defaultFamily.name, this._defaultFamily.meta);
9762
+ const { unsubscribe } = this._themeToken?.onChange((theme) => {
9763
+ this.setRefsByTheme(theme);
9764
+ });
9765
+ this._destroyRef.onDestroy(() => unsubscribe);
9718
9766
  if (this._platformUtil?.isBrowser) {
9719
9767
  this._domParser = new DOMParser();
9720
9768
  for (const [name, svg] of IndigoIcons) {
@@ -9767,12 +9815,13 @@ class IgxIconService {
9767
9815
  }
9768
9816
  /** @hidden @internal */
9769
9817
  setRefsByTheme(theme) {
9770
- if (this.theme !== theme) {
9771
- this.theme = theme;
9772
- for (const { alias, target } of iconReferences) {
9773
- const icon = target.get(theme) ?? target.get('default');
9774
- this.addIconRef(alias.name, alias.family, icon);
9775
- }
9818
+ for (const { alias, target } of iconReferences) {
9819
+ const external = this._iconRefs.get(alias.family)?.get(alias.name)?.external;
9820
+ const _ref = this._iconRefs.get('default')?.get(alias.name) ?? {};
9821
+ const _target = target.get(theme) ?? target.get('default');
9822
+ const icon = target.get(theme) ?? target.get('default');
9823
+ const overwrite = !external && !(JSON.stringify(_ref) === JSON.stringify(_target));
9824
+ this._setIconRef(alias.name, alias.family, icon, overwrite);
9776
9825
  }
9777
9826
  }
9778
9827
  /**
@@ -9798,6 +9847,14 @@ class IgxIconService {
9798
9847
  this.setIconRef(name, family, icon);
9799
9848
  }
9800
9849
  }
9850
+ _setIconRef(name, family, icon, overwrite = false) {
9851
+ if (overwrite) {
9852
+ this.setIconRef(name, family, {
9853
+ ...icon,
9854
+ external: false
9855
+ });
9856
+ }
9857
+ }
9801
9858
  /**
9802
9859
  * Similar to addIconRef, but always sets the icon reference meta for an icon in a meta family.
9803
9860
  * ```typescript
@@ -9810,8 +9867,9 @@ class IgxIconService {
9810
9867
  familyRef = new Map();
9811
9868
  this._iconRefs.set(family, familyRef);
9812
9869
  }
9870
+ const external = icon.external ?? true;
9813
9871
  const familyType = this.familyType(icon?.family);
9814
- familyRef.set(name, { ...icon, type: icon.type ?? familyType });
9872
+ familyRef.set(name, { ...icon, type: icon.type ?? familyType, external });
9815
9873
  this._iconLoaded.next({ name, family });
9816
9874
  }
9817
9875
  /**
@@ -9950,7 +10008,7 @@ class IgxIconService {
9950
10008
  }
9951
10009
  }
9952
10010
  }
9953
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxIconService, deps: [{ token: i1$1.DomSanitizer, optional: true }, { token: i2.HttpClient, optional: true }, { token: PlatformUtil, optional: true }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
10011
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxIconService, deps: [{ token: i1$1.DomSanitizer, optional: true }, { token: i2.HttpClient, optional: true }, { token: PlatformUtil, optional: true }, { token: THEME_TOKEN, optional: true }, { token: DestroyRef, optional: true }, { token: DOCUMENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
9954
10012
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxIconService, providedIn: "root" }); }
9955
10013
  }
9956
10014
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxIconService, decorators: [{
@@ -9964,52 +10022,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
9964
10022
  type: Optional
9965
10023
  }] }, { type: PlatformUtil, decorators: [{
9966
10024
  type: Optional
9967
- }] }, { type: Document, decorators: [{
10025
+ }] }, { type: ThemeToken, decorators: [{
9968
10026
  type: Optional
9969
10027
  }, {
9970
10028
  type: Inject,
9971
- args: [DOCUMENT]
9972
- }] }] });
9973
-
9974
- const Theme = /*@__PURE__*/ mkenum({
9975
- Material: "material",
9976
- Fluent: "fluent",
9977
- Bootstrap: "bootstrap",
9978
- IndigoDesign: "indigo",
9979
- });
9980
- class ThemeService {
9981
- constructor(document) {
9982
- this.document = document;
9983
- this.theme$ = new BehaviorSubject("material");
9984
- this.theme$.asObservable().subscribe((value) => {
9985
- this.globalTheme = value;
9986
- });
9987
- this.init();
9988
- }
9989
- init() {
9990
- const theme = globalThis.window
9991
- ?.getComputedStyle(this.document.body)
9992
- .getPropertyValue("--ig-theme")
9993
- .trim();
9994
- if (theme !== "") {
9995
- this.theme$.next(theme);
9996
- }
9997
- }
9998
- getComponentTheme(el) {
9999
- return globalThis.window
10000
- ?.getComputedStyle(el.nativeElement)
10001
- .getPropertyValue('--theme')
10002
- .trim();
10003
- }
10004
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: ThemeService, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
10005
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: ThemeService, providedIn: "root" }); }
10006
- }
10007
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: ThemeService, decorators: [{
10008
- type: Injectable,
10009
- args: [{
10010
- providedIn: "root",
10011
- }]
10012
- }], ctorParameters: () => [{ type: undefined, decorators: [{
10029
+ args: [THEME_TOKEN]
10030
+ }] }, { type: i0.DestroyRef, decorators: [{
10031
+ type: Optional
10032
+ }, {
10033
+ type: Inject,
10034
+ args: [DestroyRef]
10035
+ }] }, { type: Document, decorators: [{
10036
+ type: Optional
10037
+ }, {
10013
10038
  type: Inject,
10014
10039
  args: [DOCUMENT]
10015
10040
  }] }] });
@@ -10063,10 +10088,9 @@ class IgxIconComponent {
10063
10088
  get getInactive() {
10064
10089
  return !this.active;
10065
10090
  }
10066
- constructor(el, iconService, themeService, ref) {
10091
+ constructor(el, iconService, ref) {
10067
10092
  this.el = el;
10068
10093
  this.iconService = iconService;
10069
- this.themeService = themeService;
10070
10094
  this.ref = ref;
10071
10095
  this._destroy$ = new Subject();
10072
10096
  this._userClasses = new Set();
@@ -10095,7 +10119,6 @@ class IgxIconComponent {
10095
10119
  */
10096
10120
  this.active = true;
10097
10121
  this.family = this.iconService.defaultFamily.name;
10098
- this.iconService.setRefsByTheme(this.themeService.globalTheme);
10099
10122
  this.iconService.iconLoaded
10100
10123
  .pipe(filter((e) => e.name === this.name && e.family === this.family), takeUntil(this._destroy$))
10101
10124
  .subscribe(() => {
@@ -10208,13 +10231,13 @@ class IgxIconComponent {
10208
10231
  }
10209
10232
  this.addIconClass(className);
10210
10233
  }
10211
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxIconComponent, deps: [{ token: i0.ElementRef }, { token: IgxIconService }, { token: ThemeService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
10234
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxIconComponent, deps: [{ token: i0.ElementRef }, { token: IgxIconService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
10212
10235
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.0", type: IgxIconComponent, isStandalone: true, selector: "igx-icon", inputs: { family: "family", name: "name", active: ["active", "active", booleanAttribute] }, host: { properties: { "class": "this.elementClasses", "attr.aria-hidden": "this.ariaHidden", "class.igx-icon--inactive": "this.getInactive" } }, usesOnChanges: true, ngImport: i0, template: "<!-- This is only here for backwards compatibility in case -->\n<!-- ligatures are used and the name is provided as content -->\n@if (!iconRef.name) {\n <ng-content></ng-content>\n}\n\n@switch (iconRef.type) {\n @case (\"liga\") {{{ iconRef.name }}}\n\n @case (\"svg\") {\n <div [innerHTML]=\"getSvg\"></div>\n }\n}\n" }); }
10213
10236
  }
10214
10237
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxIconComponent, decorators: [{
10215
10238
  type: Component,
10216
10239
  args: [{ selector: "igx-icon", imports: [NgTemplateOutlet, NgIf], template: "<!-- This is only here for backwards compatibility in case -->\n<!-- ligatures are used and the name is provided as content -->\n@if (!iconRef.name) {\n <ng-content></ng-content>\n}\n\n@switch (iconRef.type) {\n @case (\"liga\") {{{ iconRef.name }}}\n\n @case (\"svg\") {\n <div [innerHTML]=\"getSvg\"></div>\n }\n}\n" }]
10217
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: IgxIconService }, { type: ThemeService }, { type: i0.ChangeDetectorRef }], propDecorators: { elementClasses: [{
10240
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: IgxIconService }, { type: i0.ChangeDetectorRef }], propDecorators: { elementClasses: [{
10218
10241
  type: HostBinding,
10219
10242
  args: ["class"]
10220
10243
  }], ariaHidden: [{
@@ -10345,13 +10368,13 @@ class IgxInputGroupComponent {
10345
10368
  get theme() {
10346
10369
  return this._theme;
10347
10370
  }
10348
- constructor(element, _inputGroupType, document, platform, cdr, themeService) {
10371
+ constructor(element, _inputGroupType, document, platform, cdr, themeToken) {
10349
10372
  this.element = element;
10350
10373
  this._inputGroupType = _inputGroupType;
10351
10374
  this.document = document;
10352
10375
  this.platform = platform;
10353
10376
  this.cdr = cdr;
10354
- this.themeService = themeService;
10377
+ this.themeToken = themeToken;
10355
10378
  /**
10356
10379
  * Property that enables/disables the auto-generated class of the `IgxInputGroupComponent`.
10357
10380
  * By default applied the class is applied.
@@ -10392,15 +10415,18 @@ class IgxInputGroupComponent {
10392
10415
  this.suppressInputAutofocus = false;
10393
10416
  /** @hidden */
10394
10417
  this.hasWarning = false;
10418
+ this._destroyRef = inject(DestroyRef);
10395
10419
  this._type = null;
10396
10420
  this._filled = false;
10397
- this._theme$ = new Subject();
10398
10421
  this._resourceStrings = getCurrentResourceStrings(InputResourceStringsEN);
10399
- this._theme = this.themeService.globalTheme;
10400
- this._subscription = this._theme$.asObservable().subscribe(value => {
10401
- this._theme = value;
10402
- this.cdr.detectChanges();
10422
+ this._theme = this.themeToken.theme;
10423
+ const { unsubscribe } = this.themeToken.onChange((theme) => {
10424
+ if (this._theme !== theme) {
10425
+ this._theme = theme;
10426
+ this.cdr.detectChanges();
10427
+ }
10403
10428
  });
10429
+ this._destroyRef.onDestroy(() => unsubscribe);
10404
10430
  }
10405
10431
  /** @hidden */
10406
10432
  onClick(event) {
@@ -10578,19 +10604,20 @@ class IgxInputGroupComponent {
10578
10604
  set filled(val) {
10579
10605
  this._filled = val;
10580
10606
  }
10581
- /** @hidden @internal */
10582
- ngAfterViewChecked() {
10583
- const theme = this.themeService.getComponentTheme(this.element);
10584
- if (theme) {
10585
- this._theme$.next(theme);
10586
- this.cdr.markForCheck();
10607
+ setComponentTheme() {
10608
+ if (!this.themeToken.preferToken) {
10609
+ const theme = getComponentTheme(this.element.nativeElement);
10610
+ if (theme && theme !== this._theme) {
10611
+ this.theme = theme;
10612
+ this.cdr.markForCheck();
10613
+ }
10587
10614
  }
10588
10615
  }
10589
10616
  /** @hidden @internal */
10590
- ngOnDestroy() {
10591
- this._subscription.unsubscribe();
10617
+ ngAfterViewInit() {
10618
+ this.setComponentTheme();
10592
10619
  }
10593
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxInputGroupComponent, deps: [{ token: i0.ElementRef }, { token: IGX_INPUT_GROUP_TYPE, optional: true }, { token: DOCUMENT }, { token: PlatformUtil }, { token: i0.ChangeDetectorRef }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component }); }
10620
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxInputGroupComponent, deps: [{ token: i0.ElementRef }, { token: IGX_INPUT_GROUP_TYPE, optional: true }, { token: DOCUMENT }, { token: PlatformUtil }, { token: i0.ChangeDetectorRef }, { token: THEME_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
10594
10621
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.0.0", type: IgxInputGroupComponent, isStandalone: true, selector: "igx-input-group", inputs: { resourceStrings: "resourceStrings", suppressInputAutofocus: ["suppressInputAutofocus", "suppressInputAutofocus", booleanAttribute], type: "type", theme: "theme" }, host: { listeners: { "click": "onClick($event)", "pointerdown": "onPointerDown($event)" }, properties: { "class.igx-input-group": "this.defaultClass", "class.igx-input-group--placeholder": "this.hasPlaceholder", "class.igx-input-group--required": "this.isRequired", "class.igx-input-group--focused": "this.isFocused", "class.igx-input-group--disabled": "this.disabled", "class.igx-input-group--warning": "this.hasWarning", "class.igx-input-group--valid": "this.validClass", "class.igx-input-group--invalid": "this.invalidClass", "class.igx-input-group--filled": "this.isFilled", "class.igx-input-group--textarea-group": "this.textAreaClass", "class.igx-input-group--prefixed": "this.hasPrefixes", "class.igx-input-group--suffixed": "this.hasSuffixes", "class.igx-input-group--box": "this.isTypeBox", "class.igx-input-group--file": "this.isFileType", "class.igx-input-group--border": "this.isTypeBorder", "class.igx-input-group--fluent": "this.isTypeFluent", "class.igx-input-group--bootstrap": "this.isTypeBootstrap", "class.igx-input-group--indigo": "this.isTypeIndigo", "class.igx-input-group--search": "this.isTypeSearch" } }, providers: [{ provide: IgxInputGroupBase, useExisting: IgxInputGroupComponent }], queries: [{ propertyName: "input", first: true, predicate: IgxInputDirective, descendants: true, read: IgxInputDirective, static: true }, { propertyName: "hints", predicate: IgxHintDirective, read: IgxHintDirective }, { propertyName: "_prefixes", predicate: IgxPrefixDirective, descendants: true, read: IgxPrefixDirective }, { propertyName: "_suffixes", predicate: IgxSuffixDirective, descendants: true, read: IgxSuffixDirective }], ngImport: i0, template: "<div class=\"igx-input-group__wrapper\" *ngIf=\"isTypeBox; else bundle\">\n <ng-container *ngTemplateOutlet=\"bundle\"></ng-container>\n</div>\n\n<div class=\"igx-input-group__hint\" (click)=\"hintClickHandler($event)\">\n <ng-content select=\"igx-hint, [igxHint]\"></ng-content>\n</div>\n\n<ng-template #label>\n <ng-content select=\"[igxLabel]\"></ng-content>\n</ng-template>\n\n<ng-template #input>\n <ng-content select=\"[igxInput]\"></ng-content>\n</ng-template>\n\n<ng-template #prefix>\n <ng-content select=\"igx-prefix, [igxPrefix]\"></ng-content>\n</ng-template>\n\n<ng-template #uploadButton>\n <igx-prefix *ngIf=\"isFileType\" class=\"igx-input-group__upload-button\">\n <button\n igxButton=\"contained\"\n type=\"button\"\n (click)=\"uploadButtonHandler()\"\n [disabled]=\"disabled\"\n [ngClass]=\"{ 'igx-input-group__upload-button': isTypeLine }\"\n >\n {{ resourceStrings.igx_input_upload_button }}\n </button>\n </igx-prefix>\n</ng-template>\n\n<ng-template #files>\n <div\n *ngIf=\"isFileType\"\n class=\"igx-input-group__file-input\"\n [title]=\"fileNames\"\n >\n <span>{{ fileNames }}</span>\n </div>\n</ng-template>\n\n<ng-template #clear>\n <igx-suffix\n class=\"igx-input-group__clear-icon\"\n *ngIf=\"isFileType && isFilled\"\n (click)=\"clearValueHandler()\"\n (keydown.Enter)=\"clearValueHandler()\"\n title=\"clear files\"\n tabindex=\"0\"\n >\n <igx-icon family=\"default\" name=\"input_clear\"></igx-icon>\n </igx-suffix>\n</ng-template>\n\n<ng-template #suffix>\n <ng-content select=\"igx-suffix, [igxSuffix]\"></ng-content>\n</ng-template>\n\n<ng-template #materialBundle>\n <div class=\"igx-input-group__bundle\">\n <div class=\"igx-input-group__bundle-start\">\n <ng-container *ngTemplateOutlet=\"prefix\"></ng-container>\n <ng-container *ngTemplateOutlet=\"uploadButton\"></ng-container>\n </div>\n\n <ng-container>\n <div class=\"igx-input-group__notch\">\n <ng-container *ngTemplateOutlet=\"label\"></ng-container>\n </div>\n </ng-container>\n\n <div class=\"igx-input-group__bundle-main\">\n <ng-container *ngTemplateOutlet=\"input\"></ng-container>\n <ng-container *ngTemplateOutlet=\"files\"></ng-container>\n </div>\n\n <div class=\"igx-input-group__filler\"></div>\n\n <div class=\"igx-input-group__bundle-end\">\n <ng-container *ngTemplateOutlet=\"clear\"></ng-container>\n <ng-container *ngTemplateOutlet=\"suffix\"></ng-container>\n </div>\n\n <div class=\"igx-input-group__line\" *ngIf=\"hasBorder\"></div>\n </div>\n</ng-template>\n\n<ng-template #fluentBundle>\n <ng-container *ngTemplateOutlet=\"label\"></ng-container>\n\n <div class=\"igx-input-group__bundle\">\n <div class=\"igx-input-group__bundle-start\">\n <ng-container *ngTemplateOutlet=\"prefix\"></ng-container>\n <ng-container *ngTemplateOutlet=\"uploadButton\"></ng-container>\n </div>\n\n\n <div class=\"igx-input-group__bundle-main\">\n <ng-container *ngTemplateOutlet=\"input\"></ng-container>\n <ng-container *ngTemplateOutlet=\"files\"></ng-container>\n </div>\n\n <div class=\"igx-input-group__bundle-end\">\n <ng-container *ngTemplateOutlet=\"clear\"></ng-container>\n <ng-container *ngTemplateOutlet=\"suffix\"></ng-container>\n </div>\n\n <div class=\"igx-input-group__line\" *ngIf=\"hasBorder\"></div>\n </div>\n</ng-template>\n\n<ng-template #bootstrapBundle>\n <ng-container *ngTemplateOutlet=\"label\"></ng-container>\n\n <div class=\"igx-input-group__bundle\">\n <div class=\"igx-input-group__bundle-start\">\n <ng-container *ngTemplateOutlet=\"prefix\"></ng-container>\n <ng-container *ngTemplateOutlet=\"uploadButton\"></ng-container>\n </div>\n\n <ng-container *ngTemplateOutlet=\"input\"></ng-container>\n <ng-container *ngTemplateOutlet=\"files\"></ng-container>\n\n <div class=\"igx-input-group__bundle-end\">\n <ng-container *ngTemplateOutlet=\"clear\"></ng-container>\n <ng-container *ngTemplateOutlet=\"suffix\"></ng-container>\n </div>\n </div>\n</ng-template>\n\n<ng-template #bundle>\n <ng-container [ngSwitch]=\"theme\">\n <ng-container *ngSwitchCase=\"'bootstrap'\">\n <ng-container *ngTemplateOutlet=\"bootstrapBundle\"></ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'fluent'\">\n <ng-container *ngTemplateOutlet=\"fluentBundle\"></ng-container>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'indigo'\">\n <ng-container *ngTemplateOutlet=\"fluentBundle\"></ng-container>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <ng-container *ngTemplateOutlet=\"materialBundle\"></ng-container>\n </ng-container>\n </ng-container>\n</ng-template>\n", dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: IgxPrefixDirective, selector: "igx-prefix,[igxPrefix],[igxStart]" }, { kind: "directive", type: IgxButtonDirective, selector: "[igxButton]", inputs: ["selected", "igxButton", "igxLabel"], outputs: ["buttonSelected"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: IgxSuffixDirective, selector: "igx-suffix,[igxSuffix],[igxEnd]" }, { kind: "component", type: IgxIconComponent, selector: "igx-icon", inputs: ["family", "name", "active"] }, { kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: NgSwitchDefault, selector: "[ngSwitchDefault]" }] }); }
10595
10622
  }
10596
10623
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxInputGroupComponent, decorators: [{
@@ -10604,7 +10631,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
10604
10631
  }] }, { type: undefined, decorators: [{
10605
10632
  type: Inject,
10606
10633
  args: [DOCUMENT]
10607
- }] }, { type: PlatformUtil }, { type: i0.ChangeDetectorRef }, { type: ThemeService }], propDecorators: { resourceStrings: [{
10634
+ }] }, { type: PlatformUtil }, { type: i0.ChangeDetectorRef }, { type: ThemeToken, decorators: [{
10635
+ type: Inject,
10636
+ args: [THEME_TOKEN]
10637
+ }] }], propDecorators: { resourceStrings: [{
10608
10638
  type: Input
10609
10639
  }], defaultClass: [{
10610
10640
  type: HostBinding,
@@ -11366,7 +11396,7 @@ class IgxDragDirective {
11366
11396
  set ghostLeft(pageX) {
11367
11397
  if (this.ghostElement) {
11368
11398
  // We need to take into account marginLeft, since top style does not include margin, but pageX includes the margin.
11369
- const ghostMarginLeft = parseInt(document.defaultView.getComputedStyle(this.ghostElement)['margin-left'], 10);
11399
+ const ghostMarginLeft = parseInt(this.document.defaultView.getComputedStyle(this.ghostElement)['margin-left'], 10);
11370
11400
  // If ghost host is defined it needs to be taken into account.
11371
11401
  this.ghostElement.style.left = (pageX - ghostMarginLeft - this._ghostHostX) + 'px';
11372
11402
  }
@@ -11379,7 +11409,7 @@ class IgxDragDirective {
11379
11409
  set ghostTop(pageY) {
11380
11410
  if (this.ghostElement) {
11381
11411
  // We need to take into account marginTop, since top style does not include margin, but pageY includes the margin.
11382
- const ghostMarginTop = parseInt(document.defaultView.getComputedStyle(this.ghostElement)['margin-top'], 10);
11412
+ const ghostMarginTop = parseInt(this.document.defaultView.getComputedStyle(this.ghostElement)['margin-top'], 10);
11383
11413
  // If ghost host is defined it needs to be taken into account.
11384
11414
  this.ghostElement.style.top = (pageY - ghostMarginTop - this._ghostHostY) + 'px';
11385
11415
  }
@@ -11390,16 +11420,16 @@ class IgxDragDirective {
11390
11420
  }
11391
11421
  }
11392
11422
  get windowScrollTop() {
11393
- return document.documentElement.scrollTop || window.scrollY;
11423
+ return this.document.documentElement.scrollTop || window.scrollY;
11394
11424
  }
11395
11425
  get windowScrollLeft() {
11396
- return document.documentElement.scrollLeft || window.scrollX;
11426
+ return this.document.documentElement.scrollLeft || window.scrollX;
11397
11427
  }
11398
11428
  get windowScrollHeight() {
11399
- return document.documentElement.scrollHeight;
11429
+ return this.document.documentElement.scrollHeight;
11400
11430
  }
11401
11431
  get windowScrollWidth() {
11402
- return document.documentElement.scrollWidth;
11432
+ return this.document.documentElement.scrollWidth;
11403
11433
  }
11404
11434
  /**
11405
11435
  * Sets the offset of the dragged element relative to the mouse in pixels.
@@ -11658,6 +11688,7 @@ class IgxDragDirective {
11658
11688
  this._scrollContainerStepMs = 10;
11659
11689
  this._scrollContainerThreshold = 25;
11660
11690
  this._containerScrollIntervalId = null;
11691
+ this.document = inject(DOCUMENT);
11661
11692
  }
11662
11693
  /**
11663
11694
  * @hidden
@@ -11705,13 +11736,13 @@ class IgxDragDirective {
11705
11736
  });
11706
11737
  // We should bind to document events only once when there are no pointer events.
11707
11738
  if (!this.pointerEventsEnabled && this.touchEventsEnabled) {
11708
- fromEvent(document.defaultView, 'touchmove').pipe(throttle(() => interval(0, animationFrameScheduler)), takeUntil(this._destroy)).subscribe((res) => this.onPointerMove(res));
11709
- fromEvent(document.defaultView, 'touchend').pipe(takeUntil(this._destroy))
11739
+ fromEvent(this.document.defaultView, 'touchmove').pipe(throttle(() => interval(0, animationFrameScheduler)), takeUntil(this._destroy)).subscribe((res) => this.onPointerMove(res));
11740
+ fromEvent(this.document.defaultView, 'touchend').pipe(takeUntil(this._destroy))
11710
11741
  .subscribe((res) => this.onPointerUp(res));
11711
11742
  }
11712
11743
  else if (!this.pointerEventsEnabled) {
11713
- fromEvent(document.defaultView, 'mousemove').pipe(throttle(() => interval(0, animationFrameScheduler)), takeUntil(this._destroy)).subscribe((res) => this.onPointerMove(res));
11714
- fromEvent(document.defaultView, 'mouseup').pipe(takeUntil(this._destroy))
11744
+ fromEvent(this.document.defaultView, 'mousemove').pipe(throttle(() => interval(0, animationFrameScheduler)), takeUntil(this._destroy)).subscribe((res) => this.onPointerMove(res));
11745
+ fromEvent(this.document.defaultView, 'mouseup').pipe(takeUntil(this._destroy))
11715
11746
  .subscribe((res) => this.onPointerUp(res));
11716
11747
  }
11717
11748
  this.element.nativeElement.addEventListener('transitionend', this.onTransitionEnd.bind(this));
@@ -12070,9 +12101,9 @@ class IgxDragDirective {
12070
12101
  ghostReattached = true;
12071
12102
  this.ghostHost.appendChild(this.ghostElement);
12072
12103
  }
12073
- else if (!this.ghostHost && !Array.from(document.body.children).includes(this.ghostElement)) {
12104
+ else if (!this.ghostHost && !Array.from(this.document.body.children).includes(this.ghostElement)) {
12074
12105
  ghostReattached = true;
12075
- document.body.appendChild(this.ghostElement);
12106
+ this.document.body.appendChild(this.ghostElement);
12076
12107
  }
12077
12108
  if (ghostReattached) {
12078
12109
  this.ghostElement.setPointerCapture(this._pointerDownId);
@@ -12210,10 +12241,10 @@ class IgxDragDirective {
12210
12241
  this.ghostHost.appendChild(this.ghostElement);
12211
12242
  }
12212
12243
  else {
12213
- document.body.appendChild(this.ghostElement);
12244
+ this.document.body.appendChild(this.ghostElement);
12214
12245
  }
12215
- const ghostMarginLeft = parseInt(document.defaultView.getComputedStyle(this.ghostElement)['margin-left'], 10);
12216
- const ghostMarginTop = parseInt(document.defaultView.getComputedStyle(this.ghostElement)['margin-top'], 10);
12246
+ const ghostMarginLeft = parseInt(this.document.defaultView.getComputedStyle(this.ghostElement)['margin-left'], 10);
12247
+ const ghostMarginTop = parseInt(this.document.defaultView.getComputedStyle(this.ghostElement)['margin-top'], 10);
12217
12248
  this.ghostElement.style.left = (this._ghostStartX - ghostMarginLeft + totalMovedX - this._ghostHostX) + 'px';
12218
12249
  this.ghostElement.style.top = (this._ghostStartY - ghostMarginTop + totalMovedY - this._ghostHostY) + 'px';
12219
12250
  if (this.pointerEventsEnabled) {
@@ -12322,14 +12353,14 @@ class IgxDragDirective {
12322
12353
  // using window.pageXOffset for IE9 compatibility
12323
12354
  const viewPortX = pageX - window.pageXOffset;
12324
12355
  const viewPortY = pageY - window.pageYOffset;
12325
- if (document['msElementsFromPoint']) {
12356
+ if (this.document['msElementsFromPoint']) {
12326
12357
  // Edge and IE special snowflakes
12327
- const elements = document['msElementsFromPoint'](viewPortX, viewPortY);
12358
+ const elements = this.document['msElementsFromPoint'](viewPortX, viewPortY);
12328
12359
  return elements === null ? [] : elements;
12329
12360
  }
12330
12361
  else {
12331
12362
  // Other browsers like Chrome, Firefox, Opera
12332
- return document.elementsFromPoint(viewPortX, viewPortY);
12363
+ return this.document.elementsFromPoint(viewPortX, viewPortY);
12333
12364
  }
12334
12365
  }
12335
12366
  /**
@@ -12382,8 +12413,8 @@ class IgxDragDirective {
12382
12413
  getGhostHostBaseOffsetX() {
12383
12414
  if (!this.ghostHost)
12384
12415
  return 0;
12385
- const ghostPosition = document.defaultView.getComputedStyle(this.ghostHost).getPropertyValue('position');
12386
- if (ghostPosition === 'static' && this.ghostHost.offsetParent && this.ghostHost.offsetParent === document.body) {
12416
+ const ghostPosition = this.document.defaultView.getComputedStyle(this.ghostHost).getPropertyValue('position');
12417
+ if (ghostPosition === 'static' && this.ghostHost.offsetParent && this.ghostHost.offsetParent === this.document.body) {
12387
12418
  return 0;
12388
12419
  }
12389
12420
  else if (ghostPosition === 'static' && this.ghostHost.offsetParent) {
@@ -12394,8 +12425,8 @@ class IgxDragDirective {
12394
12425
  getGhostHostBaseOffsetY() {
12395
12426
  if (!this.ghostHost)
12396
12427
  return 0;
12397
- const ghostPosition = document.defaultView.getComputedStyle(this.ghostHost).getPropertyValue('position');
12398
- if (ghostPosition === 'static' && this.ghostHost.offsetParent && this.ghostHost.offsetParent === document.body) {
12428
+ const ghostPosition = this.document.defaultView.getComputedStyle(this.ghostHost).getPropertyValue('position');
12429
+ if (ghostPosition === 'static' && this.ghostHost.offsetParent && this.ghostHost.offsetParent === this.document.body) {
12399
12430
  return 0;
12400
12431
  }
12401
12432
  else if (ghostPosition === 'static' && this.ghostHost.offsetParent) {
@@ -12439,8 +12470,8 @@ class IgxDragDirective {
12439
12470
  let yDir = scrollDir == DragScrollDirection$1.UP ? -1 : (scrollDir == DragScrollDirection$1.DOWN ? 1 : 0);
12440
12471
  if (!this.scrollContainer) {
12441
12472
  // Cap scrolling so we don't scroll past the window max scroll position.
12442
- const maxScrollX = this._originalScrollContainerWidth - document.documentElement.clientWidth;
12443
- const maxScrollY = this._originalScrollContainerHeight - document.documentElement.clientHeight;
12473
+ const maxScrollX = this._originalScrollContainerWidth - this.document.documentElement.clientWidth;
12474
+ const maxScrollY = this._originalScrollContainerHeight - this.document.documentElement.clientHeight;
12444
12475
  xDir = (this.windowScrollLeft <= 0 && xDir < 0) || (this.windowScrollLeft >= maxScrollX && xDir > 0) ? 0 : xDir;
12445
12476
  yDir = (this.windowScrollTop <= 0 && yDir < 0) || (this.windowScrollTop >= maxScrollY && yDir > 0) ? 0 : yDir;
12446
12477
  }
@@ -16740,10 +16771,10 @@ class IgxCheckboxComponent {
16740
16771
  this._onChangeCallback(this._checked);
16741
16772
  }
16742
16773
  }
16743
- constructor(cdr, renderer, themeService, ngControl) {
16774
+ constructor(cdr, renderer, themeToken, ngControl) {
16744
16775
  this.cdr = cdr;
16745
16776
  this.renderer = renderer;
16746
- this.themeService = themeService;
16777
+ this.themeToken = themeToken;
16747
16778
  this.ngControl = ngControl;
16748
16779
  /**
16749
16780
  * An event that is emitted after the checkbox state is changed.
@@ -16956,17 +16987,27 @@ class IgxCheckboxComponent {
16956
16987
  */
16957
16988
  this._required = false;
16958
16989
  this.elRef = inject(ElementRef);
16959
- this._theme$ = new Subject();
16960
16990
  this.destroyRef = inject(DestroyRef);
16961
16991
  if (this.ngControl !== null) {
16962
16992
  this.ngControl.valueAccessor = this;
16963
16993
  }
16964
- this.theme = this.themeService.globalTheme;
16965
- this._subscription = this._theme$.asObservable().subscribe(value => {
16966
- this.theme = value;
16967
- this.cdr.detectChanges();
16994
+ this.theme = this.themeToken.theme;
16995
+ const { unsubscribe } = this.themeToken.onChange((theme) => {
16996
+ if (this.theme !== theme) {
16997
+ this.theme = theme;
16998
+ this.cdr.detectChanges();
16999
+ }
16968
17000
  });
16969
- this.destroyRef.onDestroy(() => this._subscription.unsubscribe());
17001
+ this.destroyRef.onDestroy(() => unsubscribe);
17002
+ }
17003
+ setComponentTheme() {
17004
+ if (!this.themeToken.preferToken) {
17005
+ const theme = getComponentTheme(this.elRef.nativeElement);
17006
+ if (theme && theme !== this.theme) {
17007
+ this.theme = theme;
17008
+ this.cdr.markForCheck();
17009
+ }
17010
+ }
16970
17011
  }
16971
17012
  /**
16972
17013
  * @hidden
@@ -16980,11 +17021,7 @@ class IgxCheckboxComponent {
16980
17021
  this.cdr.detectChanges();
16981
17022
  }
16982
17023
  }
16983
- const theme = this.themeService.getComponentTheme(this.elRef);
16984
- if (theme) {
16985
- this._theme$.next(theme);
16986
- this.cdr.markForCheck();
16987
- }
17024
+ this.setComponentTheme();
16988
17025
  }
16989
17026
  /** @hidden @internal */
16990
17027
  onKeyUp(event) {
@@ -17105,7 +17142,7 @@ class IgxCheckboxComponent {
17105
17142
  this.invalid = false;
17106
17143
  }
17107
17144
  }
17108
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxCheckboxComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: ThemeService }, { token: i4.NgControl, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Component }); }
17145
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxCheckboxComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: THEME_TOKEN }, { token: i4.NgControl, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Component }); }
17109
17146
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.0", type: IgxCheckboxComponent, isStandalone: true, selector: "igx-checkbox", inputs: { id: "id", labelId: "labelId", value: "value", name: "name", tabindex: "tabindex", labelPosition: "labelPosition", disableRipple: ["disableRipple", "disableRipple", booleanAttribute], required: ["required", "required", booleanAttribute], ariaLabelledBy: ["aria-labelledby", "ariaLabelledBy"], ariaLabel: ["aria-label", "ariaLabel"], indeterminate: ["indeterminate", "indeterminate", booleanAttribute], checked: ["checked", "checked", booleanAttribute], disabled: ["disabled", "disabled", booleanAttribute], invalid: ["invalid", "invalid", booleanAttribute], readonly: ["readonly", "readonly", booleanAttribute], disableTransitions: ["disableTransitions", "disableTransitions", booleanAttribute] }, outputs: { change: "change" }, host: { listeners: { "keyup": "onKeyUp($event)", "click": "_onCheckboxClick($event)", "blur": "onBlur()" }, properties: { "attr.id": "this.id", "class.igx-checkbox": "this.cssClass", "class.igx-checkbox--material": "this.material", "class.igx-checkbox--indigo": "this.indigo", "class.igx-checkbox--bootstrap": "this.bootstrap", "class.igx-checkbox--fluent": "this.fluent", "class.igx-checkbox--focused": "this.focused", "class.igx-checkbox--indeterminate": "this.indeterminate", "class.igx-checkbox--checked": "this.checked", "class.igx-checkbox--disabled": "this.disabled", "class.igx-checkbox--invalid": "this.invalid", "class.igx-checkbox--plain": "this.disableTransitions" } }, providers: [{
17110
17147
  provide: EDITOR_PROVIDER,
17111
17148
  useExisting: IgxCheckboxComponent,
@@ -17119,7 +17156,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
17119
17156
  useExisting: IgxCheckboxComponent,
17120
17157
  multi: true
17121
17158
  }], preserveWhitespaces: false, imports: [IgxRippleDirective], template: "<input #checkbox class=\"igx-checkbox__input\"\n type=\"checkbox\"\n [id]=\"inputId\"\n [name]=\"name\"\n [value]=\"value\"\n [tabindex]=\"tabindex\"\n [disabled]=\"disabled\"\n [indeterminate]=\"indeterminate\"\n [checked]=\"checked\"\n [required]=\"required\"\n [attr.aria-required]=\"required\"\n [attr.aria-invalid]=\"invalid\"\n [attr.aria-checked]=\"ariaChecked\"\n [attr.aria-labelledby]=\"ariaLabel ? null : ariaLabelledBy\"\n [attr.aria-label]=\"ariaLabel\"\n (change)=\"_onCheckboxChange($event)\"\n (blur)=\"onBlur()\" />\n\n<div\n igxRipple\n igxRippleTarget=\".igx-checkbox__ripple\"\n [igxRippleDisabled]=\"disableRipple\"\n [igxRippleCentered]=\"true\"\n [igxRippleDuration]=\"300\"\n class=\"igx-checkbox__composite-wrapper\"\n>\n <span #label class=\"igx-checkbox__composite\">\n @if (theme === 'indigo') {\n <svg class=\"igx-checkbox__composite-mark\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <rect width=\"18\" height=\"4\" x=\"2\" y=\"9\" rx=\"1.85\"/>\n <path d=\"M19.033 5a1.966 1.966 0 0 0-1.418.586l-8.479 8.577-2.753-2.77a1.971 1.971 0 0 0-2.8 0 1.998 1.998 0 0 0 0 2.822l4.155 4.196a1.955 1.955 0 0 0 2.8 0l9.879-9.99a1.998 1.998 0 0 0 0-2.821 1.966 1.966 0 0 0-1.384-.6Z\"/>\n </svg>\n } @else {\n <svg class=\"igx-checkbox__composite-mark\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M4.1,12.7 9,17.6 20.3,6.3\"/>\n </svg>\n }\n </span>\n\n <div class=\"igx-checkbox__ripple\"></div>\n</div>\n\n<span #placeholderLabel\n [class]=\"labelClass\"\n [id]=\"labelId\">\n <ng-content></ng-content>\n</span>\n" }]
17122
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: ThemeService }, { type: i4.NgControl, decorators: [{
17159
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: ThemeToken, decorators: [{
17160
+ type: Inject,
17161
+ args: [THEME_TOKEN]
17162
+ }] }, { type: i4.NgControl, decorators: [{
17123
17163
  type: Optional
17124
17164
  }, {
17125
17165
  type: Self
@@ -26400,7 +26440,7 @@ class IgxGridSelectionService {
26400
26440
  this._ranges = new Set();
26401
26441
  this.pointerOriginHandler = (event) => {
26402
26442
  this.pointerEventInGridBody = false;
26403
- document.body.removeEventListener('pointerup', this.pointerOriginHandler);
26443
+ this.grid.document.body.removeEventListener('pointerup', this.pointerOriginHandler);
26404
26444
  const targetTagName = event.target.tagName.toLowerCase();
26405
26445
  if (targetTagName !== 'igx-grid-cell' && targetTagName !== 'igx-tree-grid-cell') {
26406
26446
  this.pointerUp(this._lastSelectedNode, this.grid.rangeSelected, true);
@@ -26559,7 +26599,7 @@ class IgxGridSelectionService {
26559
26599
  this.pointerState.ctrl = ctrl;
26560
26600
  this.pointerState.shift = shift;
26561
26601
  this.pointerEventInGridBody = true;
26562
- document.body.addEventListener('pointerup', this.pointerOriginHandler);
26602
+ this.grid.document.body.addEventListener('pointerup', this.pointerOriginHandler);
26563
26603
  // No ctrl key pressed - no multiple selection
26564
26604
  if (!ctrl) {
26565
26605
  this.clear();
@@ -26682,7 +26722,7 @@ class IgxGridSelectionService {
26682
26722
  restoreTextSelection() {
26683
26723
  const selection = window.getSelection();
26684
26724
  if (!selection.rangeCount) {
26685
- selection.addRange(this._selectionRange || document.createRange());
26725
+ selection.addRange(this._selectionRange || this.grid.document.createRange());
26686
26726
  }
26687
26727
  }
26688
26728
  getSelectedRowsData() {
@@ -34817,12 +34857,13 @@ class IgxCarouselComponent extends IgxCarouselComponentBase {
34817
34857
  this._interval = +value;
34818
34858
  this.restartInterval();
34819
34859
  }
34820
- constructor(cdr, element, iterableDiffers, animationService, platformUtil, dir) {
34860
+ constructor(cdr, element, iterableDiffers, animationService, platformUtil, dir, document) {
34821
34861
  super(animationService, cdr);
34822
34862
  this.element = element;
34823
34863
  this.iterableDiffers = iterableDiffers;
34824
34864
  this.platformUtil = platformUtil;
34825
34865
  this.dir = dir;
34866
+ this.document = document;
34826
34867
  /**
34827
34868
  * Sets the `id` of the carousel.
34828
34869
  * If not set, the `id` of the first carousel component will be `"igx-carousel-0"`.
@@ -35431,7 +35472,7 @@ class IgxCarouselComponent extends IgxCarouselComponentBase {
35431
35472
  return this._indicators.toArray();
35432
35473
  }
35433
35474
  focusElement() {
35434
- const focusedElement = document.activeElement;
35475
+ const focusedElement = this.document.activeElement;
35435
35476
  if (focusedElement.classList.contains('igx-carousel-indicators__indicator')) {
35436
35477
  this.indicatorsElements[this.current].nativeElement.focus();
35437
35478
  }
@@ -35581,7 +35622,7 @@ class IgxCarouselComponent extends IgxCarouselComponentBase {
35581
35622
  requestAnimationFrame(() => this.slides.find(s => s.active).nativeElement.focus());
35582
35623
  }
35583
35624
  }
35584
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxCarouselComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.IterableDiffers }, { token: IgxAngularAnimationService }, { token: PlatformUtil }, { token: IgxDirectionality }], target: i0.ɵɵFactoryTarget.Component }); }
35625
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: IgxCarouselComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.IterableDiffers }, { token: IgxAngularAnimationService }, { token: PlatformUtil }, { token: IgxDirectionality }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Component }); }
35585
35626
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.0.0", type: IgxCarouselComponent, isStandalone: true, selector: "igx-carousel", inputs: { id: "id", loop: ["loop", "loop", booleanAttribute], pause: ["pause", "pause", booleanAttribute], navigation: ["navigation", "navigation", booleanAttribute], indicators: ["indicators", "indicators", booleanAttribute], vertical: ["vertical", "vertical", booleanAttribute], keyboardSupport: ["keyboardSupport", "keyboardSupport", booleanAttribute], gesturesSupport: ["gesturesSupport", "gesturesSupport", booleanAttribute], maximumIndicatorsCount: "maximumIndicatorsCount", indicatorsOrientation: "indicatorsOrientation", animationType: "animationType", resourceStrings: "resourceStrings", interval: "interval" }, outputs: { slideChanged: "slideChanged", slideAdded: "slideAdded", slideRemoved: "slideRemoved", carouselPaused: "carouselPaused", carouselPlaying: "carouselPlaying" }, host: { listeners: { "keydown.arrowright": "onKeydownArrowRight($event)", "keydown.arrowleft": "onKeydownArrowLeft($event)", "tap": "onTap($event)", "keydown.home": "onKeydownHome($event)", "keydown.end": "onKeydownEnd($event)", "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "panleft": "onPanLeft($event)", "panright": "onPanRight($event)", "panup": "onPanUp($event)", "pandown": "onPanDown($event)", "panend": "onPanEnd($event)" }, properties: { "attr.id": "this.id", "attr.role": "this.role", "attr.aria-roledescription": "this.roleDescription", "attr.aria-labelledby": "this.labelId", "class.igx-carousel--vertical": "this.isVertical", "class.igx-carousel": "this.cssClass", "style.touch-action": "this.touchAction" } }, providers: [
35586
35627
  {
35587
35628
  provide: HAMMER_GESTURE_CONFIG,
@@ -35600,7 +35641,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
35600
35641
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.IterableDiffers }, { type: undefined, decorators: [{
35601
35642
  type: Inject,
35602
35643
  args: [IgxAngularAnimationService]
35603
- }] }, { type: PlatformUtil }, { type: IgxDirectionality }], propDecorators: { id: [{
35644
+ }] }, { type: PlatformUtil }, { type: IgxDirectionality }, { type: undefined, decorators: [{
35645
+ type: Inject,
35646
+ args: [DOCUMENT]
35647
+ }] }], propDecorators: { id: [{
35604
35648
  type: HostBinding,
35605
35649
  args: ['attr.id']
35606
35650
  }, {
@@ -55425,8 +55469,8 @@ class IgxColumnMovingDragDirective extends IgxDragDirective {
55425
55469
  this.ghostElement.style.flexBasis = null;
55426
55470
  this.ghostElement.style.position = null;
55427
55471
  this.ghostElement.classList.remove(this.columnSelectedClass);
55428
- const icon = document.createElement('i');
55429
- const text = document.createTextNode('block');
55472
+ const icon = this.column?.grid.document.createElement('i');
55473
+ const text = this.column?.grid.document.createTextNode('block');
55430
55474
  icon.appendChild(text);
55431
55475
  icon.classList.add('material-icons');
55432
55476
  this.cms.icon = icon;
@@ -56999,7 +57043,7 @@ class IgxGridFilteringCellComponent {
56999
57043
  const chipsAreaElements = this.chipsArea.element.nativeElement.children;
57000
57044
  let visibleChipsCount = 0;
57001
57045
  const moreIconWidth = this.moreIcon.nativeElement.offsetWidth -
57002
- parseInt(document.defaultView.getComputedStyle(this.moreIcon.nativeElement)['margin-left'], 10);
57046
+ parseInt(this.column?.grid.document.defaultView.getComputedStyle(this.moreIcon.nativeElement)['margin-left'], 10);
57003
57047
  for (let index = 0; index < chipsAreaElements.length - 1; index++) {
57004
57048
  if (viewWidth + chipsAreaElements[index].offsetWidth < areaWidth) {
57005
57049
  viewWidth += chipsAreaElements[index].offsetWidth;
@@ -57007,8 +57051,8 @@ class IgxGridFilteringCellComponent {
57007
57051
  visibleChipsCount++;
57008
57052
  }
57009
57053
  else {
57010
- viewWidth += parseInt(document.defaultView.getComputedStyle(chipsAreaElements[index])['margin-left'], 10);
57011
- viewWidth += parseInt(document.defaultView.getComputedStyle(chipsAreaElements[index])['margin-right'], 10);
57054
+ viewWidth += parseInt(this.column?.grid.document.defaultView.getComputedStyle(chipsAreaElements[index])['margin-left'], 10);
57055
+ viewWidth += parseInt(this.column?.grid.document.defaultView.getComputedStyle(chipsAreaElements[index])['margin-right'], 10);
57012
57056
  }
57013
57057
  }
57014
57058
  else {
@@ -57993,7 +58037,7 @@ class IgxGridFilteringRowComponent {
57993
58037
  return;
57994
58038
  }
57995
58039
  requestAnimationFrame(() => {
57996
- const focusedElement = document.activeElement;
58040
+ const focusedElement = this.column?.grid.document.activeElement;
57997
58041
  if (focusedElement.classList.contains('igx-chip__remove')) {
57998
58042
  return;
57999
58043
  }
@@ -58075,7 +58119,7 @@ class IgxGridFilteringRowComponent {
58075
58119
  requestAnimationFrame(() => this.focusEditElement());
58076
58120
  }
58077
58121
  onChipPointerdown(args, chip) {
58078
- const activeElement = document.activeElement;
58122
+ const activeElement = this.column?.grid.document.activeElement;
58079
58123
  this._cancelChipClick = chip.selected
58080
58124
  && activeElement && this.editorFocused(activeElement);
58081
58125
  }
@@ -68011,7 +68055,7 @@ class IgxGridBaseDirective {
68011
68055
  get renderedActualRowHeight() {
68012
68056
  let border = 1;
68013
68057
  if (this.rowList.toArray().length > 0) {
68014
- const rowStyles = document.defaultView.getComputedStyle(this.rowList.first.nativeElement);
68058
+ const rowStyles = this.document.defaultView.getComputedStyle(this.rowList.first.nativeElement);
68015
68059
  border = rowStyles.borderBottomWidth ? Math.ceil(parseFloat(rowStyles.borderBottomWidth)) : border;
68016
68060
  }
68017
68061
  return this.rowHeight + border;
@@ -83693,7 +83737,7 @@ class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirective {
83693
83737
  set expandChildren(value) {
83694
83738
  this._defaultExpandState = value;
83695
83739
  this.rowIslandAPI.getChildGrids().forEach((grid) => {
83696
- if (document.body.contains(grid.nativeElement)) {
83740
+ if (this.document.body.contains(grid.nativeElement)) {
83697
83741
  // Detect changes right away if the grid is visible
83698
83742
  grid.expandChildren = value;
83699
83743
  grid.cdr.detectChanges();
@@ -83938,7 +83982,7 @@ class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirective {
83938
83982
  this.updateColumns(this._childColumns);
83939
83983
  this.rowIslandAPI.getChildGrids().forEach((grid) => {
83940
83984
  grid.createColumnsList(this._childColumns);
83941
- if (!document.body.contains(grid.nativeElement)) {
83985
+ if (!this.document.body.contains(grid.nativeElement)) {
83942
83986
  grid.updateOnRender = true;
83943
83987
  }
83944
83988
  });
@@ -94316,5 +94360,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
94316
94360
  * Generated bundle index. Do not edit.
94317
94361
  */
94318
94362
 
94319
- 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, 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, 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, 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, IgxPivotRowDimensionHeaderTemplateDirective, 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, IndigoIcons, InputResourceStringsEN, LabelPosition, ListResourceStringsEN, NoOpScrollStrategy, NoopFilteringStrategy, NoopPivotDimensionsStrategy, NoopSortingStrategy, PaginatorResourceStringsEN, PagingError, PickerInteractionMode, PivotColumnDimensionsStrategy, PivotDimensionType, PivotRowDimensionsStrategy, PivotRowLayoutType, PivotSummaryPosition, Point, QueryBuilderResourceStringsEN, RadioGroupAlignment, RelativePosition, RelativePositionStrategy, RowPinningPosition, ScrollStrategy, Size, SliderHandle, SortingDirection, SplitterType, TickLabelsOrientation, TicksOrientation, TimePickerResourceStringsEN, TransactionEventOrigin, TransactionType, TreeGridFilteringStrategy, TreeGridFormattedValuesFilteringStrategy, TreeGridMatchingRecordsOnlyFilteringStrategy, TreeResourceStringsEN, VerticalAlignment, VerticalAnimationType, WEEKDAYS, changei18n, comboIgnoreDiacriticsFilter, igxI18N, isLeap, monthRange, range, weekDay };
94363
+ 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, 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, 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, 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, IgxPivotRowDimensionHeaderTemplateDirective, 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, IndigoIcons, InputResourceStringsEN, LabelPosition, ListResourceStringsEN, NoOpScrollStrategy, NoopFilteringStrategy, NoopPivotDimensionsStrategy, NoopSortingStrategy, PaginatorResourceStringsEN, PagingError, PickerInteractionMode, PivotColumnDimensionsStrategy, PivotDimensionType, PivotRowDimensionsStrategy, PivotRowLayoutType, PivotSummaryPosition, Point, QueryBuilderResourceStringsEN, RadioGroupAlignment, RelativePosition, RelativePositionStrategy, RowPinningPosition, ScrollStrategy, Size, SliderHandle, SortingDirection, SplitterType, THEME_TOKEN, ThemeToken, TickLabelsOrientation, TicksOrientation, TimePickerResourceStringsEN, TransactionEventOrigin, TransactionType, TreeGridFilteringStrategy, TreeGridFormattedValuesFilteringStrategy, TreeGridMatchingRecordsOnlyFilteringStrategy, TreeResourceStringsEN, VerticalAlignment, VerticalAnimationType, WEEKDAYS, changei18n, comboIgnoreDiacriticsFilter, igxI18N, isLeap, monthRange, range, weekDay };
94320
94364
  //# sourceMappingURL=igniteui-angular.mjs.map