@skyux/core 6.0.0-beta.0 → 6.0.0-beta.11

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 (69) hide show
  1. package/documentation.json +1207 -525
  2. package/esm2020/index.mjs +5 -1
  3. package/esm2020/lib/modules/adapter-service/adapter.module.mjs +4 -4
  4. package/esm2020/lib/modules/adapter-service/adapter.service.mjs +17 -10
  5. package/esm2020/lib/modules/affix/affix.directive.mjs +3 -3
  6. package/esm2020/lib/modules/affix/affix.module.mjs +4 -4
  7. package/esm2020/lib/modules/affix/affix.service.mjs +3 -3
  8. package/esm2020/lib/modules/affix/affixer.mjs +1 -4
  9. package/esm2020/lib/modules/dock/dock-dom-adapter.service.mjs +3 -3
  10. package/esm2020/lib/modules/dock/dock.component.mjs +3 -3
  11. package/esm2020/lib/modules/dock/dock.module.mjs +4 -4
  12. package/esm2020/lib/modules/dock/dock.service.mjs +3 -3
  13. package/esm2020/lib/modules/dynamic-component/dynamic-component.module.mjs +4 -4
  14. package/esm2020/lib/modules/dynamic-component/dynamic-component.service.mjs +3 -3
  15. package/esm2020/lib/modules/format/app-format.mjs +3 -3
  16. package/esm2020/lib/modules/id/id.directive.mjs +3 -3
  17. package/esm2020/lib/modules/id/id.module.mjs +4 -4
  18. package/esm2020/lib/modules/log/log.module.mjs +4 -4
  19. package/esm2020/lib/modules/log/log.service.mjs +121 -12
  20. package/esm2020/lib/modules/log/types/log-deprecation-args.mjs +2 -0
  21. package/esm2020/lib/modules/log/types/log-level-token.mjs +6 -0
  22. package/esm2020/lib/modules/log/types/log-level.mjs +2 -0
  23. package/esm2020/lib/modules/media-query/media-query-listener.mjs +1 -1
  24. package/esm2020/lib/modules/media-query/media-query.module.mjs +4 -4
  25. package/esm2020/lib/modules/media-query/media-query.service.mjs +5 -5
  26. package/esm2020/lib/modules/mutation/mutation-observer-service.mjs +3 -3
  27. package/esm2020/lib/modules/numeric/numeric.module.mjs +4 -4
  28. package/esm2020/lib/modules/numeric/numeric.options.mjs +3 -29
  29. package/esm2020/lib/modules/numeric/numeric.pipe.mjs +4 -6
  30. package/esm2020/lib/modules/numeric/numeric.service.mjs +4 -6
  31. package/esm2020/lib/modules/overlay/overlay-adapter.service.mjs +3 -3
  32. package/esm2020/lib/modules/overlay/overlay.component.mjs +3 -3
  33. package/esm2020/lib/modules/overlay/overlay.module.mjs +4 -4
  34. package/esm2020/lib/modules/overlay/overlay.service.mjs +3 -3
  35. package/esm2020/lib/modules/percent-pipe/percent-pipe.module.mjs +4 -4
  36. package/esm2020/lib/modules/percent-pipe/percent.pipe.mjs +3 -3
  37. package/esm2020/lib/modules/resize-observer/resize-observer-media-query.service.mjs +117 -0
  38. package/esm2020/lib/modules/resize-observer/resize-observer.service.mjs +73 -0
  39. package/esm2020/lib/modules/scrollable-host/scrollable-host.service.mjs +5 -5
  40. package/esm2020/lib/modules/shared/number-format/number-format-utility.mjs +1 -2
  41. package/esm2020/lib/modules/shared/sky-core-resources.module.mjs +4 -4
  42. package/esm2020/lib/modules/title/title.service.mjs +3 -3
  43. package/esm2020/lib/modules/ui-config/ui-config.service.mjs +3 -3
  44. package/esm2020/lib/modules/viewkeeper/viewkeeper-host-options.mjs +3 -3
  45. package/esm2020/lib/modules/viewkeeper/viewkeeper.directive.mjs +3 -3
  46. package/esm2020/lib/modules/viewkeeper/viewkeeper.module.mjs +4 -4
  47. package/esm2020/lib/modules/viewkeeper/viewkeeper.service.mjs +3 -3
  48. package/esm2020/lib/modules/window/window-ref.mjs +3 -3
  49. package/esm2020/testing/mock-media-query.service.mjs +3 -3
  50. package/esm2020/testing/mock-ui-config.service.mjs +3 -3
  51. package/fesm2015/skyux-core-testing.mjs +6 -6
  52. package/fesm2015/skyux-core.mjs +448 -179
  53. package/fesm2015/skyux-core.mjs.map +1 -1
  54. package/fesm2020/skyux-core-testing.mjs +6 -6
  55. package/fesm2020/skyux-core.mjs +442 -178
  56. package/fesm2020/skyux-core.mjs.map +1 -1
  57. package/index.d.ts +4 -0
  58. package/lib/modules/log/log.service.d.ts +37 -3
  59. package/lib/modules/log/types/log-deprecation-args.d.ts +27 -0
  60. package/lib/modules/log/types/log-level-token.d.ts +6 -0
  61. package/lib/modules/log/types/log-level.d.ts +8 -0
  62. package/lib/modules/media-query/media-query-listener.d.ts +1 -1
  63. package/lib/modules/media-query/media-query.service.d.ts +1 -1
  64. package/lib/modules/numeric/numeric.options.d.ts +17 -11
  65. package/lib/modules/numeric/numeric.pipe.d.ts +2 -4
  66. package/lib/modules/numeric/numeric.service.d.ts +2 -2
  67. package/lib/modules/resize-observer/resize-observer-media-query.service.d.ts +44 -0
  68. package/lib/modules/resize-observer/resize-observer.service.d.ts +21 -0
  69. package/package.json +21 -18
@@ -1,9 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
- import { NgModule, Injectable, EventEmitter, Directive, Input, Output, Injector, ViewContainerRef, Component, ChangeDetectionStrategy, ViewChild, Pipe, ElementRef, Optional } from '@angular/core';
2
+ import { NgModule, Injectable, EventEmitter, Directive, Input, Output, Injector, ViewContainerRef, Component, ChangeDetectionStrategy, ViewChild, InjectionToken, Optional, Inject, Pipe, ElementRef } from '@angular/core';
3
3
  import * as i4 from '@angular/common';
4
4
  import { CommonModule } from '@angular/common';
5
- import { Subject, fromEvent, BehaviorSubject, Observable, of } from 'rxjs';
6
- import { takeUntil, debounceTime } from 'rxjs/operators';
5
+ import { Subject, fromEvent, BehaviorSubject, ReplaySubject, Observable, of } from 'rxjs';
6
+ import { takeUntil, debounceTime, finalize } from 'rxjs/operators';
7
7
  import * as i1 from '@skyux/i18n';
8
8
  import { getLibStringForLocale, SkyI18nModule, SKY_LIB_RESOURCES_PROVIDERS, SkyIntlNumberFormatStyle, SkyIntlNumberFormatter } from '@skyux/i18n';
9
9
  import * as i3 from '@angular/router';
@@ -16,10 +16,10 @@ import * as i1$1 from '@angular/platform-browser';
16
16
  */
17
17
  class SkyCoreAdapterModule {
18
18
  }
19
- SkyCoreAdapterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreAdapterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
20
- SkyCoreAdapterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreAdapterModule });
21
- SkyCoreAdapterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreAdapterModule });
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreAdapterModule, decorators: [{
19
+ SkyCoreAdapterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
20
+ SkyCoreAdapterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule });
21
+ SkyCoreAdapterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule });
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule, decorators: [{
23
23
  type: NgModule,
24
24
  args: [{}]
25
25
  }] });
@@ -116,6 +116,9 @@ class SkyCoreAdapterService {
116
116
  * @return Returns `true` if a child element with autofocus is found.
117
117
  */
118
118
  applyAutoFocus(elementRef) {
119
+ if (!elementRef) {
120
+ return false;
121
+ }
119
122
  const elementWithAutoFocus = elementRef.nativeElement.querySelector('[autofocus]');
120
123
  // Child was found with the autofocus property. Set focus and return true.
121
124
  if (elementWithAutoFocus) {
@@ -138,11 +141,13 @@ class SkyCoreAdapterService {
138
141
  */
139
142
  getFocusableChildrenAndApplyFocus(elementRef, containerSelector, focusOnContainerIfNoChildrenFound = false) {
140
143
  const containerElement = elementRef.nativeElement.querySelector(containerSelector);
141
- const focusableChildren = this.getFocusableChildren(containerElement);
142
- // Focus first focusable child if available. Otherwise, set focus on container.
143
- if (!this.focusFirstElement(focusableChildren) &&
144
- focusOnContainerIfNoChildrenFound) {
145
- containerElement.focus();
144
+ if (containerElement) {
145
+ const focusableChildren = this.getFocusableChildren(containerElement);
146
+ // Focus first focusable child if available. Otherwise, set focus on container.
147
+ if (!this.focusFirstElement(focusableChildren) &&
148
+ focusOnContainerIfNoChildrenFound) {
149
+ containerElement.focus();
150
+ }
146
151
  }
147
152
  }
148
153
  /**
@@ -152,6 +157,9 @@ class SkyCoreAdapterService {
152
157
  * @param options - Options for getting focusable children.
153
158
  */
154
159
  getFocusableChildren(element, options) {
160
+ if (!element) {
161
+ return [];
162
+ }
155
163
  let elements = Array.prototype.slice.call(element.querySelectorAll(SKY_TABBABLE_SELECTOR));
156
164
  // Unless ignoreTabIndex = true, filter out elements with tabindex = -1.
157
165
  if (!options || !options.ignoreTabIndex) {
@@ -208,7 +216,6 @@ class SkyCoreAdapterService {
208
216
  if (children.length > 0) {
209
217
  for (let i = 0; i < children.length; i++) {
210
218
  // Setting style attributes with Web API requires null instead of undefined.
211
- // tslint:disable-next-line: no-null-keyword
212
219
  children[i].style.height = null;
213
220
  }
214
221
  }
@@ -250,9 +257,9 @@ class SkyCoreAdapterService {
250
257
  return hasBounds;
251
258
  }
252
259
  }
253
- SkyCoreAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
254
- SkyCoreAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreAdapterService, providedIn: 'root' });
255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreAdapterService, decorators: [{
260
+ SkyCoreAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
261
+ SkyCoreAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterService, providedIn: 'root' });
262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterService, decorators: [{
256
263
  type: Injectable,
257
264
  args: [{
258
265
  providedIn: 'root',
@@ -488,13 +495,11 @@ class SkyAffixer {
488
495
  this.notifyPlacementChange(placement);
489
496
  }
490
497
  else {
491
- /* tslint:disable-next-line:no-null-keyword */
492
498
  this.notifyPlacementChange(null);
493
499
  }
494
500
  return offset;
495
501
  }
496
502
  if (this.config.enableAutoFit) {
497
- /* tslint:disable-next-line:no-null-keyword */
498
503
  this.notifyPlacementChange(null);
499
504
  }
500
505
  // No suitable placement was found, so revert to preferred placement.
@@ -595,7 +600,6 @@ class SkyAffixer {
595
600
  let pixelTolerance;
596
601
  const originalOffsetTop = offset.top;
597
602
  const originalOffsetLeft = offset.left;
598
- /* tslint:disable-next-line:switch-default */
599
603
  switch (placement) {
600
604
  case 'above':
601
605
  case 'below':
@@ -723,9 +727,9 @@ class SkyAffixService {
723
727
  return new SkyAffixer(affixed.nativeElement, this.renderer);
724
728
  }
725
729
  }
726
- SkyAffixService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
727
- SkyAffixService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixService, providedIn: 'root' });
728
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixService, decorators: [{
730
+ SkyAffixService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
731
+ SkyAffixService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixService, providedIn: 'root' });
732
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixService, decorators: [{
729
733
  type: Injectable,
730
734
  args: [{
731
735
  providedIn: 'root',
@@ -794,9 +798,9 @@ class SkyAffixDirective {
794
798
  });
795
799
  }
796
800
  }
797
- SkyAffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixDirective, deps: [{ token: i0.ElementRef }, { token: SkyAffixService }], target: i0.ɵɵFactoryTarget.Directive });
798
- SkyAffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: SkyAffixDirective, selector: "[skyAffixTo]", inputs: { skyAffixTo: "skyAffixTo", affixAutoFitContext: "affixAutoFitContext", affixAutoFitOverflowOffset: "affixAutoFitOverflowOffset", affixEnableAutoFit: "affixEnableAutoFit", affixHorizontalAlignment: "affixHorizontalAlignment", affixIsSticky: "affixIsSticky", affixPlacement: "affixPlacement", affixVerticalAlignment: "affixVerticalAlignment" }, outputs: { affixOffsetChange: "affixOffsetChange", affixOverflowScroll: "affixOverflowScroll", affixPlacementChange: "affixPlacementChange" }, usesOnChanges: true, ngImport: i0 });
799
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixDirective, decorators: [{
801
+ SkyAffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixDirective, deps: [{ token: i0.ElementRef }, { token: SkyAffixService }], target: i0.ɵɵFactoryTarget.Directive });
802
+ SkyAffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: SkyAffixDirective, selector: "[skyAffixTo]", inputs: { skyAffixTo: "skyAffixTo", affixAutoFitContext: "affixAutoFitContext", affixAutoFitOverflowOffset: "affixAutoFitOverflowOffset", affixEnableAutoFit: "affixEnableAutoFit", affixHorizontalAlignment: "affixHorizontalAlignment", affixIsSticky: "affixIsSticky", affixPlacement: "affixPlacement", affixVerticalAlignment: "affixVerticalAlignment" }, outputs: { affixOffsetChange: "affixOffsetChange", affixOverflowScroll: "affixOverflowScroll", affixPlacementChange: "affixPlacementChange" }, usesOnChanges: true, ngImport: i0 });
803
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixDirective, decorators: [{
800
804
  type: Directive,
801
805
  args: [{
802
806
  selector: '[skyAffixTo]',
@@ -827,10 +831,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
827
831
 
828
832
  class SkyAffixModule {
829
833
  }
830
- SkyAffixModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
831
- SkyAffixModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixModule, declarations: [SkyAffixDirective], imports: [CommonModule], exports: [SkyAffixDirective] });
832
- SkyAffixModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixModule, imports: [[CommonModule]] });
833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAffixModule, decorators: [{
834
+ SkyAffixModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
835
+ SkyAffixModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, declarations: [SkyAffixDirective], imports: [CommonModule], exports: [SkyAffixDirective] });
836
+ SkyAffixModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, imports: [[CommonModule]] });
837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, decorators: [{
834
838
  type: NgModule,
835
839
  args: [{
836
840
  imports: [CommonModule],
@@ -891,9 +895,9 @@ class MutationObserverService {
891
895
  return new MutationObserver(callback);
892
896
  }
893
897
  }
894
- MutationObserverService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MutationObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
895
- MutationObserverService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MutationObserverService, providedIn: 'root' });
896
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: MutationObserverService, decorators: [{
898
+ MutationObserverService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: MutationObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
899
+ MutationObserverService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: MutationObserverService, providedIn: 'root' });
900
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: MutationObserverService, decorators: [{
897
901
  type: Injectable,
898
902
  args: [{
899
903
  providedIn: 'root',
@@ -968,9 +972,9 @@ class SkyDockDomAdapterService {
968
972
  this.renderer.removeChild(document.head, this.styleElement);
969
973
  }
970
974
  }
971
- SkyDockDomAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockDomAdapterService, deps: [{ token: MutationObserverService }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
972
- SkyDockDomAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockDomAdapterService });
973
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockDomAdapterService, decorators: [{
975
+ SkyDockDomAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockDomAdapterService, deps: [{ token: MutationObserverService }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
976
+ SkyDockDomAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockDomAdapterService });
977
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockDomAdapterService, decorators: [{
974
978
  type: Injectable
975
979
  }], ctorParameters: function () { return [{ type: MutationObserverService }, { type: i0.RendererFactory2 }]; } });
976
980
 
@@ -1056,9 +1060,9 @@ class SkyDockComponent {
1056
1060
  return this.itemRefs[0].stackOrder + 1;
1057
1061
  }
1058
1062
  }
1059
- SkyDockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ComponentFactoryResolver }, { token: i0.ElementRef }, { token: i0.Injector }, { token: SkyDockDomAdapterService }], target: i0.ɵɵFactoryTarget.Component });
1060
- SkyDockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: SkyDockComponent, selector: "sky-dock", providers: [SkyDockDomAdapterService], viewQueries: [{ propertyName: "target", first: true, predicate: ["target"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<ng-container #target></ng-container>\n", styles: [":host{display:flex;flex-direction:column;width:100%}:host:not(.sky-dock-unbound){position:fixed;left:0;bottom:0;right:0}:host.sky-dock-sticky{position:sticky}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1061
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockComponent, decorators: [{
1063
+ SkyDockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ComponentFactoryResolver }, { token: i0.ElementRef }, { token: i0.Injector }, { token: SkyDockDomAdapterService }], target: i0.ɵɵFactoryTarget.Component });
1064
+ SkyDockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: SkyDockComponent, selector: "sky-dock", providers: [SkyDockDomAdapterService], viewQueries: [{ propertyName: "target", first: true, predicate: ["target"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<ng-container #target></ng-container>\n", styles: [":host{display:flex;flex-direction:column;width:100%}:host:not(.sky-dock-unbound){position:fixed;left:0;bottom:0;right:0}:host.sky-dock-sticky{position:sticky}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1065
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockComponent, decorators: [{
1062
1066
  type: Component,
1063
1067
  args: [{ selector: 'sky-dock', providers: [SkyDockDomAdapterService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container #target></ng-container>\n", styles: [":host{display:flex;flex-direction:column;width:100%}:host:not(.sky-dock-unbound){position:fixed;left:0;bottom:0;right:0}:host.sky-dock-sticky{position:sticky}\n"] }]
1064
1068
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ComponentFactoryResolver }, { type: i0.ElementRef }, { type: i0.Injector }, { type: SkyDockDomAdapterService }]; }, propDecorators: { target: [{
@@ -1071,10 +1075,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
1071
1075
 
1072
1076
  class SkyDockModule {
1073
1077
  }
1074
- SkyDockModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1075
- SkyDockModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockModule, declarations: [SkyDockComponent], imports: [CommonModule] });
1076
- SkyDockModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockModule, providers: [MutationObserverService], imports: [[CommonModule]] });
1077
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockModule, decorators: [{
1078
+ SkyDockModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1079
+ SkyDockModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, declarations: [SkyDockComponent], imports: [CommonModule] });
1080
+ SkyDockModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, providers: [MutationObserverService], imports: [[CommonModule]] });
1081
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, decorators: [{
1078
1082
  type: NgModule,
1079
1083
  args: [{
1080
1084
  imports: [CommonModule],
@@ -1129,9 +1133,9 @@ class SkyAppWindowRef {
1129
1133
  return getWindow();
1130
1134
  }
1131
1135
  }
1132
- SkyAppWindowRef.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppWindowRef, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1133
- SkyAppWindowRef.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppWindowRef, providedIn: 'root' });
1134
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppWindowRef, decorators: [{
1136
+ SkyAppWindowRef.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppWindowRef, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1137
+ SkyAppWindowRef.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppWindowRef, providedIn: 'root' });
1138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppWindowRef, decorators: [{
1135
1139
  type: Injectable,
1136
1140
  args: [{
1137
1141
  providedIn: 'root',
@@ -1204,9 +1208,9 @@ class SkyDynamicComponentService {
1204
1208
  return componentRef.hostView.rootNodes[0];
1205
1209
  }
1206
1210
  }
1207
- SkyDynamicComponentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDynamicComponentService, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.ApplicationRef }, { token: i0.Injector }, { token: SkyAppWindowRef }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
1208
- SkyDynamicComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDynamicComponentService, providedIn: 'any' });
1209
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDynamicComponentService, decorators: [{
1211
+ SkyDynamicComponentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentService, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.ApplicationRef }, { token: i0.Injector }, { token: SkyAppWindowRef }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
1212
+ SkyDynamicComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentService, providedIn: 'any' });
1213
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentService, decorators: [{
1210
1214
  type: Injectable,
1211
1215
  args: [{
1212
1216
  // Must be 'any' so that the component is created in the context of its module's injector.
@@ -1290,9 +1294,9 @@ class SkyDockService {
1290
1294
  }
1291
1295
  }
1292
1296
  SkyDockService._items = [];
1293
- SkyDockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockService, deps: [{ token: SkyDynamicComponentService }], target: i0.ɵɵFactoryTarget.Injectable });
1294
- SkyDockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockService, providedIn: 'any' });
1295
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDockService, decorators: [{
1297
+ SkyDockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockService, deps: [{ token: SkyDynamicComponentService }], target: i0.ɵɵFactoryTarget.Injectable });
1298
+ SkyDockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockService, providedIn: 'any' });
1299
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockService, decorators: [{
1296
1300
  type: Injectable,
1297
1301
  args: [{
1298
1302
  // Must be 'any' so that the dock component is created in the context of its module's injector.
@@ -1309,10 +1313,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
1309
1313
  */
1310
1314
  class SkyDynamicComponentModule {
1311
1315
  }
1312
- SkyDynamicComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDynamicComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1313
- SkyDynamicComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDynamicComponentModule });
1314
- SkyDynamicComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDynamicComponentModule });
1315
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyDynamicComponentModule, decorators: [{
1316
+ SkyDynamicComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1317
+ SkyDynamicComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule });
1318
+ SkyDynamicComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule });
1319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule, decorators: [{
1316
1320
  type: NgModule,
1317
1321
  args: [{}]
1318
1322
  }] });
@@ -1324,9 +1328,9 @@ class SkyAppFormat {
1324
1328
  });
1325
1329
  }
1326
1330
  }
1327
- SkyAppFormat.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppFormat, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1328
- SkyAppFormat.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppFormat, providedIn: 'root' });
1329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppFormat, decorators: [{
1331
+ SkyAppFormat.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppFormat, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1332
+ SkyAppFormat.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppFormat, providedIn: 'root' });
1333
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppFormat, decorators: [{
1330
1334
  type: Injectable,
1331
1335
  args: [{
1332
1336
  providedIn: 'root',
@@ -1355,9 +1359,9 @@ class SkyIdDirective {
1355
1359
  return this._id;
1356
1360
  }
1357
1361
  }
1358
- SkyIdDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyIdDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
1359
- SkyIdDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: SkyIdDirective, selector: "[skyId]", exportAs: ["skyId"], ngImport: i0 });
1360
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyIdDirective, decorators: [{
1362
+ SkyIdDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
1363
+ SkyIdDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: SkyIdDirective, selector: "[skyId]", exportAs: ["skyId"], ngImport: i0 });
1364
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdDirective, decorators: [{
1361
1365
  type: Directive,
1362
1366
  args: [{
1363
1367
  selector: '[skyId]',
@@ -1367,10 +1371,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
1367
1371
 
1368
1372
  class SkyIdModule {
1369
1373
  }
1370
- SkyIdModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyIdModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1371
- SkyIdModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyIdModule, declarations: [SkyIdDirective], exports: [SkyIdDirective] });
1372
- SkyIdModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyIdModule });
1373
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyIdModule, decorators: [{
1374
+ SkyIdModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1375
+ SkyIdModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule, declarations: [SkyIdDirective], exports: [SkyIdDirective] });
1376
+ SkyIdModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule });
1377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule, decorators: [{
1374
1378
  type: NgModule,
1375
1379
  args: [{
1376
1380
  declarations: [SkyIdDirective],
@@ -1384,34 +1388,145 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
1384
1388
  */
1385
1389
  class SkyLogModule {
1386
1390
  }
1387
- SkyLogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyLogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1388
- SkyLogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyLogModule });
1389
- SkyLogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyLogModule });
1390
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyLogModule, decorators: [{
1391
+ SkyLogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1392
+ SkyLogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule });
1393
+ SkyLogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule });
1394
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule, decorators: [{
1391
1395
  type: NgModule,
1392
1396
  args: [{}]
1393
1397
  }] });
1394
1398
 
1395
1399
  /**
1396
- * @deprecated The `SkyLogService` will be removed in the next major version of `@skyux/core`.
1400
+ * @internal
1401
+ */
1402
+ const SKY_LOG_LEVEL = new InjectionToken('SkyLogLevel');
1403
+
1404
+ /**
1405
+ * Logs information to the console based on the application's log level as provided by the `SKY_LOG_LEVEL` injection token. If no token is provided, only `error` logs will be shown.
1406
+ * @internal
1397
1407
  */
1398
1408
  class SkyLogService {
1399
- warn(message, ...optionalParams) {
1400
- /*istanbul ignore else */
1401
- if (window.console) {
1402
- // eslint-disable-next-line prefer-spread,prefer-rest-params
1403
- window.console.warn.apply(window.console, arguments);
1409
+ constructor(formatter, applicationLogLevel) {
1410
+ this.formatter = formatter;
1411
+ this.applicationLogLevel = applicationLogLevel;
1412
+ if (!this.applicationLogLevel) {
1413
+ this.applicationLogLevel = 3 /* Error */;
1414
+ }
1415
+ }
1416
+ /**
1417
+ * Logs a deprecation warning for a class, property, function, etc. This will be logged as a console warning unless a different log level is given in the the `args` parameter.
1418
+ * @param name The name of the deprecated class, property, function, etc.
1419
+ * @param args Information about the deprecation and replacement recommendations.
1420
+ * @returns
1421
+ */
1422
+ async deprecated(name, args) {
1423
+ const logLevel = args?.logLevel ?? 2 /* Warn */;
1424
+ name = this.convertStringToCode(name);
1425
+ if (this.canLog(logLevel)) {
1426
+ const localizedStrings = [];
1427
+ if (args?.deprecationMajorVersion) {
1428
+ localizedStrings.push(this.formatter.formatText('{0} is deprecated starting in SKY UX {1}.', name, args.deprecationMajorVersion.toLocaleString()));
1429
+ }
1430
+ else {
1431
+ localizedStrings.push(this.formatter.formatText('{0} is deprecated.', name));
1432
+ }
1433
+ if (args?.removalMajorVersion) {
1434
+ localizedStrings.push(this.formatter.formatText('We will remove it in version {0}.', args.removalMajorVersion.toLocaleString()));
1435
+ }
1436
+ else {
1437
+ localizedStrings.push('We will remove it in a future major version.');
1438
+ }
1439
+ if (args?.replacementRecommendation) {
1440
+ localizedStrings.push(args.replacementRecommendation);
1441
+ }
1442
+ if (args?.moreInfoUrl) {
1443
+ localizedStrings.push(this.formatter.formatText('For more information, see {0}.', args.moreInfoUrl));
1444
+ }
1445
+ this.logBasedOnLevel(logLevel, localizedStrings.join(' '));
1446
+ }
1447
+ return Promise.resolve();
1448
+ }
1449
+ /**
1450
+ * Logs a console error if the application's log level is `SkyLogLevel.Error`.
1451
+ * @param message The error message
1452
+ * @param params Optional parameters for the error message.
1453
+ */
1454
+ error(message, params) {
1455
+ if (this.canLog(3 /* Error */)) {
1456
+ if (params) {
1457
+ console.error(message, ...params);
1458
+ }
1459
+ else {
1460
+ console.error(message);
1461
+ }
1462
+ }
1463
+ }
1464
+ /**
1465
+ * Logs console information if the application's log level is `SkyLogLevel.Info` or above.
1466
+ * @param message The infomational message
1467
+ * @param params Optional parameters for the informational message.
1468
+ */
1469
+ info(message, params) {
1470
+ if (this.canLog(1 /* Info */)) {
1471
+ if (params) {
1472
+ console.log(message, ...params);
1473
+ }
1474
+ else {
1475
+ console.log(message);
1476
+ }
1477
+ }
1478
+ }
1479
+ /**
1480
+ * Logs a console warning if the application's log level is `SkyLogLevel.Warn` or above.
1481
+ * @param message The warning message
1482
+ * @param params Optional parameters for the warning message.
1483
+ */
1484
+ warn(message, params) {
1485
+ if (this.canLog(2 /* Warn */)) {
1486
+ if (params) {
1487
+ console.warn(message, ...params);
1488
+ }
1489
+ else {
1490
+ console.warn(message);
1491
+ }
1492
+ }
1493
+ }
1494
+ convertStringToCode(typeString) {
1495
+ if (typeString.charAt(0) !== '`' && typeString.charAt(-1) !== '`') {
1496
+ typeString = '`' + typeString + '`';
1497
+ }
1498
+ return typeString;
1499
+ }
1500
+ canLog(intendedLogLevel) {
1501
+ return intendedLogLevel >= this.applicationLogLevel;
1502
+ }
1503
+ logBasedOnLevel(logLevel, message, params) {
1504
+ switch (logLevel) {
1505
+ case 1 /* Info */:
1506
+ this.info(message, params);
1507
+ break;
1508
+ case 2 /* Warn */:
1509
+ this.warn(message, params);
1510
+ break;
1511
+ case 3 /* Error */:
1512
+ this.error(message, params);
1513
+ break;
1404
1514
  }
1405
1515
  }
1406
1516
  }
1407
- SkyLogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyLogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1408
- SkyLogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyLogService, providedIn: 'root' });
1409
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyLogService, decorators: [{
1517
+ SkyLogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogService, deps: [{ token: SkyAppFormat }, { token: SKY_LOG_LEVEL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1518
+ SkyLogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogService, providedIn: 'root' });
1519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogService, decorators: [{
1410
1520
  type: Injectable,
1411
1521
  args: [{
1412
1522
  providedIn: 'root',
1413
1523
  }]
1414
- }] });
1524
+ }], ctorParameters: function () { return [{ type: SkyAppFormat }, { type: undefined, decorators: [{
1525
+ type: Optional
1526
+ }, {
1527
+ type: Inject,
1528
+ args: [SKY_LOG_LEVEL]
1529
+ }] }]; } });
1415
1530
 
1416
1531
  /**
1417
1532
  * @deprecated The `SkyMediaQueryService` no longer needs the `SkyMediaQueryModule`.
@@ -1419,10 +1534,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
1419
1534
  */
1420
1535
  class SkyMediaQueryModule {
1421
1536
  }
1422
- SkyMediaQueryModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyMediaQueryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1423
- SkyMediaQueryModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyMediaQueryModule });
1424
- SkyMediaQueryModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyMediaQueryModule });
1425
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyMediaQueryModule, decorators: [{
1537
+ SkyMediaQueryModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1538
+ SkyMediaQueryModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule });
1539
+ SkyMediaQueryModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule });
1540
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule, decorators: [{
1426
1541
  type: NgModule,
1427
1542
  args: [{}]
1428
1543
  }] });
@@ -1464,7 +1579,7 @@ class SkyMediaQueryService {
1464
1579
  this.currentSubject.complete();
1465
1580
  }
1466
1581
  /**
1467
- * Suscribes to screen size changes.
1582
+ * Subscribes to screen size changes.
1468
1583
  * @param listener Specifies a function that is called when breakpoints change.
1469
1584
  */
1470
1585
  subscribe(listener) {
@@ -1535,9 +1650,9 @@ SkyMediaQueryService.md = '(min-width: 992px) and (max-width: 1199px)';
1535
1650
  * @default "(min-width: 1200px)"
1536
1651
  */
1537
1652
  SkyMediaQueryService.lg = '(min-width: 1200px)';
1538
- SkyMediaQueryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyMediaQueryService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
1539
- SkyMediaQueryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyMediaQueryService, providedIn: 'root' });
1540
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyMediaQueryService, decorators: [{
1653
+ SkyMediaQueryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
1654
+ SkyMediaQueryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryService, providedIn: 'root' });
1655
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryService, decorators: [{
1541
1656
  type: Injectable,
1542
1657
  args: [{
1543
1658
  providedIn: 'root',
@@ -1568,16 +1683,16 @@ class SkyCoreResourcesProvider {
1568
1683
  */
1569
1684
  class SkyCoreResourcesModule {
1570
1685
  }
1571
- SkyCoreResourcesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreResourcesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1572
- SkyCoreResourcesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreResourcesModule, exports: [SkyI18nModule] });
1573
- SkyCoreResourcesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreResourcesModule, providers: [
1686
+ SkyCoreResourcesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1687
+ SkyCoreResourcesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, exports: [SkyI18nModule] });
1688
+ SkyCoreResourcesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, providers: [
1574
1689
  {
1575
1690
  provide: SKY_LIB_RESOURCES_PROVIDERS,
1576
1691
  useClass: SkyCoreResourcesProvider,
1577
1692
  multi: true,
1578
1693
  },
1579
1694
  ], imports: [SkyI18nModule] });
1580
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyCoreResourcesModule, decorators: [{
1695
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, decorators: [{
1581
1696
  type: NgModule,
1582
1697
  args: [{
1583
1698
  exports: [SkyI18nModule],
@@ -1593,46 +1708,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
1593
1708
 
1594
1709
  /**
1595
1710
  * Provides arguments for the number to format.
1711
+ * @deprecated Use the `SkyNumericOptions` interface instead.
1596
1712
  */
1597
1713
  class NumericOptions {
1598
1714
  constructor() {
1599
- /**
1600
- * Specifies the maximum number of digits after the decimal separator.
1601
- * @default 1
1602
- */
1603
1715
  this.digits = 1;
1604
- /**
1605
- * Specifies how to format the number. Options are `currency` or `number`.
1606
- * @default "number"
1607
- */
1608
1716
  this.format = 'number';
1609
- /**
1610
- * Specifies the format of the currency.
1611
- * @default "standard"
1612
- */
1613
1717
  this.currencySign = 'standard';
1614
- /**
1615
- * Specifies the ISO4217 currency code to use for currency formatting. If you do not specify a
1616
- * currency code, the component uses the browser's culture to determine the currency unless your
1617
- * SPA provides a different culture with `SkyAppLocaleProvider`.
1618
- * @default "USD"
1619
- */
1620
1718
  this.iso = 'USD';
1621
- /**
1622
- * Indicates whether to shorten numbers to rounded numbers and abbreviation characters
1623
- * such as K for thousands, M for millions, B for billions, and T for trillions.
1624
- */
1625
1719
  this.truncate = true;
1626
- /**
1627
- * Specifies the starting point after which numbers are shortened to rounded numbers
1628
- * and abbreviation characters.
1629
- * @default 0
1630
- */
1631
- this.truncateAfter = 0;
1720
+ this.truncateAfter = 1000;
1632
1721
  }
1633
1722
  }
1634
1723
 
1635
- /* tslint:disable:no-null-keyword */
1724
+ // This file is mostly ported from the Angular 4.x NumberPipe in order to maintain the old
1636
1725
  function isNumeric(value) {
1637
1726
  return !isNaN(value - parseFloat(value));
1638
1727
  }
@@ -1725,7 +1814,6 @@ class SkyNumericService {
1725
1814
  * @param options Format options.
1726
1815
  */
1727
1816
  formatNumber(value, options) {
1728
- /* tslint:disable-next-line:no-null-keyword */
1729
1817
  if (isNaN(value) || value === null) {
1730
1818
  return '';
1731
1819
  }
@@ -1815,7 +1903,6 @@ class SkyNumericService {
1815
1903
  if (precision < 0) {
1816
1904
  throw new Error('SkyInvalidArgument: precision must be >= 0');
1817
1905
  }
1818
- /* tslint:disable-next-line:no-null-keyword */
1819
1906
  /* Sanity check - ignoring coverage but should not ignore if we make this method public */
1820
1907
  /* istanbul ignore next */
1821
1908
  if (isNaN(value) || value === null) {
@@ -1873,9 +1960,9 @@ class SkyNumericService {
1873
1960
  return this.resourcesService.getStringForLocale({ locale: 'en_US' }, key);
1874
1961
  }
1875
1962
  }
1876
- SkyNumericService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericService, deps: [{ token: i1.SkyLibResourcesService }], target: i0.ɵɵFactoryTarget.Injectable });
1877
- SkyNumericService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericService, providedIn: 'any' });
1878
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericService, decorators: [{
1963
+ SkyNumericService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericService, deps: [{ token: i1.SkyLibResourcesService }], target: i0.ɵɵFactoryTarget.Injectable });
1964
+ SkyNumericService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericService, providedIn: 'any' });
1965
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericService, decorators: [{
1879
1966
  type: Injectable,
1880
1967
  args: [{
1881
1968
  providedIn: 'any',
@@ -1938,16 +2025,14 @@ class SkyNumericPipe {
1938
2025
  }
1939
2026
  Object.assign(options, config);
1940
2027
  // Assign properties for proper result caching.
1941
- this.rawValue = value;
1942
- this.lastTransformLocale = config?.locale ?? this.providerLocale;
1943
2028
  this.cacheKey = newCacheKey;
1944
2029
  this.formattedValue = this.numericService.formatNumber(value, options);
1945
2030
  return this.formattedValue;
1946
2031
  }
1947
2032
  }
1948
- SkyNumericPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericPipe, deps: [{ token: i1.SkyAppLocaleProvider }, { token: SkyNumericService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Pipe });
1949
- SkyNumericPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericPipe, name: "skyNumeric", pure: false });
1950
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericPipe, decorators: [{
2033
+ SkyNumericPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericPipe, deps: [{ token: i1.SkyAppLocaleProvider }, { token: SkyNumericService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Pipe });
2034
+ SkyNumericPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericPipe, name: "skyNumeric", pure: false });
2035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericPipe, decorators: [{
1951
2036
  type: Pipe,
1952
2037
  args: [{
1953
2038
  name: 'skyNumeric',
@@ -1957,10 +2042,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
1957
2042
 
1958
2043
  class SkyNumericModule {
1959
2044
  }
1960
- SkyNumericModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1961
- SkyNumericModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericModule, declarations: [SkyNumericPipe], imports: [SkyI18nModule, SkyCoreResourcesModule], exports: [SkyNumericPipe] });
1962
- SkyNumericModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericModule, providers: [SkyNumericPipe], imports: [[SkyI18nModule, SkyCoreResourcesModule]] });
1963
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyNumericModule, decorators: [{
2045
+ SkyNumericModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2046
+ SkyNumericModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, declarations: [SkyNumericPipe], imports: [SkyI18nModule, SkyCoreResourcesModule], exports: [SkyNumericPipe] });
2047
+ SkyNumericModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, providers: [SkyNumericPipe], imports: [[SkyI18nModule, SkyCoreResourcesModule]] });
2048
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, decorators: [{
1964
2049
  type: NgModule,
1965
2050
  args: [{
1966
2051
  declarations: [SkyNumericPipe],
@@ -2145,9 +2230,9 @@ class SkyOverlayComponent {
2145
2230
  }
2146
2231
  }
2147
2232
  }
2148
- SkyOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: SkyCoreAdapterService }, { token: SkyOverlayContext }, { token: i3.Router, optional: true }], target: i0.ɵɵFactoryTarget.Component });
2149
- SkyOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: SkyOverlayComponent, selector: "sky-overlay", viewQueries: [{ propertyName: "overlayContentRef", first: true, predicate: ["overlayContentRef"], descendants: true, read: ElementRef, static: true }, { propertyName: "overlayRef", first: true, predicate: ["overlayRef"], descendants: true, read: ElementRef, static: true }, { propertyName: "targetRef", first: true, predicate: ["target"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<div\n [class]=\"wrapperClass\"\n [style.zIndex]=\"zIndex\"\n [ngClass]=\"{\n 'enable-pointer-events-pass-through': enablePointerEvents,\n 'sky-overlay': true\n }\"\n #overlayRef\n>\n <div class=\"sky-overlay-content\" #overlayContentRef>\n <ng-template #target> </ng-template>\n </div>\n <div *ngIf=\"showBackdrop\" class=\"sky-overlay-backdrop\"></div>\n</div>\n", styles: [".sky-overlay{position:fixed;top:0;right:0;left:0;bottom:0;width:100%;height:100%;display:flex;pointer-events:auto}.sky-overlay-content{position:relative;z-index:1;display:inline-flex;align-self:start;pointer-events:auto}.sky-overlay-backdrop{background:rgba(0,0,0,.5);top:0;right:0;left:0;bottom:0;width:100%;height:100%;position:absolute}.enable-pointer-events-pass-through,.enable-pointer-events-pass-through .sky-overlay-backdrop{pointer-events:none}.enable-pointer-events-pass-through .sky-overlay-content{pointer-events:auto}\n"], directives: [{ type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
2150
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayComponent, decorators: [{
2233
+ SkyOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: SkyCoreAdapterService }, { token: SkyOverlayContext }, { token: i3.Router, optional: true }], target: i0.ɵɵFactoryTarget.Component });
2234
+ SkyOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: SkyOverlayComponent, selector: "sky-overlay", viewQueries: [{ propertyName: "overlayContentRef", first: true, predicate: ["overlayContentRef"], descendants: true, read: ElementRef, static: true }, { propertyName: "overlayRef", first: true, predicate: ["overlayRef"], descendants: true, read: ElementRef, static: true }, { propertyName: "targetRef", first: true, predicate: ["target"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<div\n [class]=\"wrapperClass\"\n [style.zIndex]=\"zIndex\"\n [ngClass]=\"{\n 'enable-pointer-events-pass-through': enablePointerEvents,\n 'sky-overlay': true\n }\"\n #overlayRef\n>\n <div class=\"sky-overlay-content\" #overlayContentRef>\n <ng-template #target> </ng-template>\n </div>\n <div *ngIf=\"showBackdrop\" class=\"sky-overlay-backdrop\"></div>\n</div>\n", styles: [".sky-overlay{position:fixed;top:0;right:0;left:0;bottom:0;width:100%;height:100%;display:flex;pointer-events:auto}.sky-overlay-content{position:relative;z-index:1;display:inline-flex;align-self:start;pointer-events:auto}.sky-overlay-backdrop{background:rgba(0,0,0,.5);top:0;right:0;left:0;bottom:0;width:100%;height:100%;position:absolute}.enable-pointer-events-pass-through,.enable-pointer-events-pass-through .sky-overlay-backdrop{pointer-events:none}.enable-pointer-events-pass-through .sky-overlay-content{pointer-events:auto}\n"], directives: [{ type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
2235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayComponent, decorators: [{
2151
2236
  type: Component,
2152
2237
  args: [{ selector: 'sky-overlay', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n [class]=\"wrapperClass\"\n [style.zIndex]=\"zIndex\"\n [ngClass]=\"{\n 'enable-pointer-events-pass-through': enablePointerEvents,\n 'sky-overlay': true\n }\"\n #overlayRef\n>\n <div class=\"sky-overlay-content\" #overlayContentRef>\n <ng-template #target> </ng-template>\n </div>\n <div *ngIf=\"showBackdrop\" class=\"sky-overlay-backdrop\"></div>\n</div>\n", styles: [".sky-overlay{position:fixed;top:0;right:0;left:0;bottom:0;width:100%;height:100%;display:flex;pointer-events:auto}.sky-overlay-content{position:relative;z-index:1;display:inline-flex;align-self:start;pointer-events:auto}.sky-overlay-backdrop{background:rgba(0,0,0,.5);top:0;right:0;left:0;bottom:0;width:100%;height:100%;position:absolute}.enable-pointer-events-pass-through,.enable-pointer-events-pass-through .sky-overlay-backdrop{pointer-events:none}.enable-pointer-events-pass-through .sky-overlay-content{pointer-events:auto}\n"] }]
2153
2238
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: SkyCoreAdapterService }, { type: SkyOverlayContext }, { type: i3.Router, decorators: [{
@@ -2174,10 +2259,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
2174
2259
 
2175
2260
  class SkyOverlayModule {
2176
2261
  }
2177
- SkyOverlayModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2178
- SkyOverlayModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayModule, declarations: [SkyOverlayComponent], imports: [CommonModule] });
2179
- SkyOverlayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayModule, imports: [[CommonModule]] });
2180
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayModule, decorators: [{
2262
+ SkyOverlayModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2263
+ SkyOverlayModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, declarations: [SkyOverlayComponent], imports: [CommonModule] });
2264
+ SkyOverlayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, imports: [[CommonModule]] });
2265
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, decorators: [{
2181
2266
  type: NgModule,
2182
2267
  args: [{
2183
2268
  imports: [CommonModule],
@@ -2215,9 +2300,9 @@ class SkyOverlayAdapterService {
2215
2300
  }
2216
2301
  }
2217
2302
  }
2218
- SkyOverlayAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
2219
- SkyOverlayAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayAdapterService, providedIn: 'root' });
2220
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayAdapterService, decorators: [{
2303
+ SkyOverlayAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
2304
+ SkyOverlayAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayAdapterService, providedIn: 'root' });
2305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayAdapterService, decorators: [{
2221
2306
  type: Injectable,
2222
2307
  args: [{
2223
2308
  providedIn: 'root',
@@ -2328,9 +2413,9 @@ class SkyOverlayService {
2328
2413
  }
2329
2414
  }
2330
2415
  SkyOverlayService.overlays = [];
2331
- SkyOverlayService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: SkyOverlayAdapterService }], target: i0.ɵɵFactoryTarget.Injectable });
2332
- SkyOverlayService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayService, providedIn: 'root' });
2333
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyOverlayService, decorators: [{
2416
+ SkyOverlayService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: SkyOverlayAdapterService }], target: i0.ɵɵFactoryTarget.Injectable });
2417
+ SkyOverlayService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayService, providedIn: 'root' });
2418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayService, decorators: [{
2334
2419
  type: Injectable,
2335
2420
  args: [{
2336
2421
  providedIn: 'root',
@@ -2368,9 +2453,9 @@ class SkyPercentPipe {
2368
2453
  this.formattedValue = SkyNumberFormatUtility.formatNumber(locale, this.value, SkyIntlNumberFormatStyle.Percent, format);
2369
2454
  }
2370
2455
  }
2371
- SkyPercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyPercentPipe, deps: [{ token: i1.SkyAppLocaleProvider }], target: i0.ɵɵFactoryTarget.Pipe });
2372
- SkyPercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyPercentPipe, name: "skyPercent", pure: false });
2373
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyPercentPipe, decorators: [{
2456
+ SkyPercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipe, deps: [{ token: i1.SkyAppLocaleProvider }], target: i0.ɵɵFactoryTarget.Pipe });
2457
+ SkyPercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipe, name: "skyPercent", pure: false });
2458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipe, decorators: [{
2374
2459
  type: Pipe,
2375
2460
  args: [{
2376
2461
  name: 'skyPercent',
@@ -2380,10 +2465,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
2380
2465
 
2381
2466
  class SkyPercentPipeModule {
2382
2467
  }
2383
- SkyPercentPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyPercentPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2384
- SkyPercentPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyPercentPipeModule, declarations: [SkyPercentPipe], imports: [CommonModule, SkyCoreResourcesModule], exports: [SkyPercentPipe] });
2385
- SkyPercentPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyPercentPipeModule, providers: [SkyPercentPipe], imports: [[CommonModule, SkyCoreResourcesModule]] });
2386
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyPercentPipeModule, decorators: [{
2468
+ SkyPercentPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2469
+ SkyPercentPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, declarations: [SkyPercentPipe], imports: [CommonModule, SkyCoreResourcesModule], exports: [SkyPercentPipe] });
2470
+ SkyPercentPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, providers: [SkyPercentPipe], imports: [[CommonModule, SkyCoreResourcesModule]] });
2471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, decorators: [{
2387
2472
  type: NgModule,
2388
2473
  args: [{
2389
2474
  declarations: [SkyPercentPipe],
@@ -2393,6 +2478,185 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
2393
2478
  }]
2394
2479
  }] });
2395
2480
 
2481
+ /**
2482
+ * Service to create rxjs observables for changes to the content box dimensions of elements.
2483
+ */
2484
+ class SkyResizeObserverService {
2485
+ constructor(zone) {
2486
+ this.zone = zone;
2487
+ this._tracking = [];
2488
+ this._resizeObserver = new ResizeObserver((entries) => {
2489
+ entries.forEach((entry) => this.callback(entry));
2490
+ });
2491
+ }
2492
+ ngOnDestroy() {
2493
+ this._resizeObserver.disconnect();
2494
+ }
2495
+ /**
2496
+ * Create rxjs observable to get size changes for an element ref.
2497
+ */
2498
+ observe(element) {
2499
+ return this.observeAndTrack(element).subjectObservable;
2500
+ }
2501
+ observeAndTrack(element) {
2502
+ const checkTracking = this._tracking.findIndex((value) => {
2503
+ return !value.subject.closed && value.element === element.nativeElement;
2504
+ });
2505
+ if (checkTracking === -1) {
2506
+ this._resizeObserver.observe(element.nativeElement);
2507
+ }
2508
+ const subject = new Subject();
2509
+ const subjectObservable = subject.pipe(finalize(() => {
2510
+ // Are there any other tracking entries still watching this element?
2511
+ const checkTracking = this._tracking.findIndex((value) => {
2512
+ return (value.subject !== subject &&
2513
+ !value.subject.closed &&
2514
+ value.element === element.nativeElement);
2515
+ });
2516
+ if (checkTracking === -1) {
2517
+ this._resizeObserver.unobserve(element.nativeElement);
2518
+ }
2519
+ }));
2520
+ const tracking = {
2521
+ element: element.nativeElement,
2522
+ subject,
2523
+ subjectObservable,
2524
+ };
2525
+ this._tracking.push(tracking);
2526
+ return tracking;
2527
+ }
2528
+ callback(entry) {
2529
+ this._tracking
2530
+ .filter((value) => !(value.subject.closed || value.subject.isStopped))
2531
+ .forEach((value) => {
2532
+ /* istanbul ignore else */
2533
+ if (value.element === entry.target) {
2534
+ this.zone.run(() => {
2535
+ value.subject.next(entry);
2536
+ });
2537
+ }
2538
+ });
2539
+ }
2540
+ }
2541
+ SkyResizeObserverService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
2542
+ SkyResizeObserverService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverService, providedIn: 'any' });
2543
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverService, decorators: [{
2544
+ type: Injectable,
2545
+ args: [{
2546
+ providedIn: 'any',
2547
+ }]
2548
+ }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
2549
+
2550
+ /**
2551
+ * Acts like `SkyMediaQueryService` for a container element, emitting the same responsive breakpoints.
2552
+ */
2553
+ class SkyResizeObserverMediaQueryService {
2554
+ constructor(resizeObserverService) {
2555
+ this.resizeObserverService = resizeObserverService;
2556
+ this._breakpoints = [
2557
+ {
2558
+ check: (width) => width <= 767,
2559
+ name: SkyMediaBreakpoints.xs,
2560
+ },
2561
+ {
2562
+ check: (width) => width > 767 && width <= 991,
2563
+ name: SkyMediaBreakpoints.sm,
2564
+ },
2565
+ {
2566
+ check: (width) => width > 991 && width <= 1199,
2567
+ name: SkyMediaBreakpoints.md,
2568
+ },
2569
+ {
2570
+ check: (width) => width > 1199,
2571
+ name: SkyMediaBreakpoints.lg,
2572
+ },
2573
+ ];
2574
+ this._currentBreakpointObservable = new ReplaySubject(1);
2575
+ this._stopListening = new Subject();
2576
+ this._stopListening.subscribe(() => {
2577
+ this._target = undefined;
2578
+ this.updateBreakpoint(undefined);
2579
+ });
2580
+ }
2581
+ /**
2582
+ * Returns the current breakpoint.
2583
+ */
2584
+ get current() {
2585
+ return this._currentBreakpoint;
2586
+ }
2587
+ ngOnDestroy() {
2588
+ this._stopListening.next();
2589
+ this._currentBreakpoint = undefined;
2590
+ this._stopListening.complete();
2591
+ this._currentBreakpointObservable.complete();
2592
+ }
2593
+ /**
2594
+ * @internal
2595
+ */
2596
+ destroy() {
2597
+ this.ngOnDestroy();
2598
+ }
2599
+ /**
2600
+ * Sets the container element to watch. The `SkyResizeObserverMediaQueryService` will only observe one element at a
2601
+ * time. Any previous subscriptions will be unsubscribed when a new element is observed.
2602
+ */
2603
+ observe(element) {
2604
+ if (this._target) {
2605
+ if (this._target === element) {
2606
+ return this;
2607
+ }
2608
+ this._stopListening.next();
2609
+ }
2610
+ this._target = element;
2611
+ const width = element.nativeElement.offsetWidth;
2612
+ if (width) {
2613
+ const breakpoint = this.checkBreakpoint(width);
2614
+ this.updateBreakpoint(breakpoint);
2615
+ }
2616
+ this.resizeObserverService
2617
+ .observe(element)
2618
+ .pipe(takeUntil(this._stopListening))
2619
+ .subscribe((value) => {
2620
+ const breakpoint = this.checkBreakpoint(value.contentRect.width);
2621
+ /* istanbul ignore else */
2622
+ if (breakpoint !== this._currentBreakpoint) {
2623
+ this.updateBreakpoint(breakpoint);
2624
+ }
2625
+ });
2626
+ return this;
2627
+ }
2628
+ /**
2629
+ * Stop watching the container element.
2630
+ */
2631
+ unobserve() {
2632
+ this._stopListening.next();
2633
+ }
2634
+ /**
2635
+ * Subscribes to element size changes that cross breakpoints.
2636
+ */
2637
+ subscribe(listener) {
2638
+ return this._currentBreakpointObservable
2639
+ .pipe(takeUntil(this._stopListening))
2640
+ .subscribe(listener);
2641
+ }
2642
+ updateBreakpoint(breakpoint) {
2643
+ this._currentBreakpoint = breakpoint;
2644
+ this._currentBreakpointObservable.next(breakpoint);
2645
+ }
2646
+ checkBreakpoint(width) {
2647
+ return this._breakpoints.find((breakpoint) => breakpoint.check(width))
2648
+ ?.name;
2649
+ }
2650
+ }
2651
+ SkyResizeObserverMediaQueryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverMediaQueryService, deps: [{ token: SkyResizeObserverService }], target: i0.ɵɵFactoryTarget.Injectable });
2652
+ SkyResizeObserverMediaQueryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverMediaQueryService, providedIn: 'any' });
2653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverMediaQueryService, decorators: [{
2654
+ type: Injectable,
2655
+ args: [{
2656
+ providedIn: 'any',
2657
+ }]
2658
+ }], ctorParameters: function () { return [{ type: SkyResizeObserverService }]; } });
2659
+
2396
2660
  function notifySubscribers(subscribers, item) {
2397
2661
  for (const subscriber of subscribers) {
2398
2662
  subscriber.next(item);
@@ -2437,7 +2701,7 @@ class SkyScrollableHostService {
2437
2701
  });
2438
2702
  this.observeForScrollableHostChanges(scrollableHost, parentMutationObserver);
2439
2703
  documentHiddenElementMutationObserver = this.mutationObserverSvc.create(() => {
2440
- if (!elementRef.nativeElement.offsetParent) {
2704
+ if (scrollableHost && !elementRef.nativeElement.offsetParent) {
2441
2705
  scrollableHost = undefined;
2442
2706
  this.observeForScrollableHostChanges(scrollableHost, parentMutationObserver);
2443
2707
  notifySubscribers(subscribers, scrollableHost);
@@ -2560,9 +2824,9 @@ class SkyScrollableHostService {
2560
2824
  }
2561
2825
  }
2562
2826
  }
2563
- SkyScrollableHostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyScrollableHostService, deps: [{ token: MutationObserverService }, { token: SkyAppWindowRef }], target: i0.ɵɵFactoryTarget.Injectable });
2564
- SkyScrollableHostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyScrollableHostService, providedIn: 'root' });
2565
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyScrollableHostService, decorators: [{
2827
+ SkyScrollableHostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyScrollableHostService, deps: [{ token: MutationObserverService }, { token: SkyAppWindowRef }], target: i0.ɵɵFactoryTarget.Injectable });
2828
+ SkyScrollableHostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyScrollableHostService, providedIn: 'root' });
2829
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyScrollableHostService, decorators: [{
2566
2830
  type: Injectable,
2567
2831
  args: [{
2568
2832
  providedIn: 'root',
@@ -2587,9 +2851,9 @@ class SkyAppTitleService {
2587
2851
  }
2588
2852
  }
2589
2853
  }
2590
- SkyAppTitleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppTitleService, deps: [{ token: i1$1.Title }], target: i0.ɵɵFactoryTarget.Injectable });
2591
- SkyAppTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppTitleService, providedIn: 'root' });
2592
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyAppTitleService, decorators: [{
2854
+ SkyAppTitleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppTitleService, deps: [{ token: i1$1.Title }], target: i0.ɵɵFactoryTarget.Injectable });
2855
+ SkyAppTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppTitleService, providedIn: 'root' });
2856
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppTitleService, decorators: [{
2593
2857
  type: Injectable,
2594
2858
  args: [{
2595
2859
  providedIn: 'root',
@@ -2605,9 +2869,9 @@ class SkyUIConfigService {
2605
2869
  return of({});
2606
2870
  }
2607
2871
  }
2608
- SkyUIConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyUIConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2609
- SkyUIConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyUIConfigService, providedIn: 'root' });
2610
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyUIConfigService, decorators: [{
2872
+ SkyUIConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyUIConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2873
+ SkyUIConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyUIConfigService, providedIn: 'root' });
2874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyUIConfigService, decorators: [{
2611
2875
  type: Injectable,
2612
2876
  args: [{
2613
2877
  providedIn: 'root',
@@ -2616,9 +2880,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
2616
2880
 
2617
2881
  class SkyViewkeeperHostOptions {
2618
2882
  }
2619
- SkyViewkeeperHostOptions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperHostOptions, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2620
- SkyViewkeeperHostOptions.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperHostOptions });
2621
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperHostOptions, decorators: [{
2883
+ SkyViewkeeperHostOptions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperHostOptions, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2884
+ SkyViewkeeperHostOptions.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperHostOptions });
2885
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperHostOptions, decorators: [{
2622
2886
  type: Injectable
2623
2887
  }] });
2624
2888
 
@@ -2896,9 +3160,9 @@ class SkyViewkeeperService {
2896
3160
  vk.destroy();
2897
3161
  }
2898
3162
  }
2899
- SkyViewkeeperService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperService, deps: [{ token: SkyViewkeeperHostOptions, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2900
- SkyViewkeeperService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperService, providedIn: 'root' });
2901
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperService, decorators: [{
3163
+ SkyViewkeeperService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperService, deps: [{ token: SkyViewkeeperHostOptions, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3164
+ SkyViewkeeperService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperService, providedIn: 'root' });
3165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperService, decorators: [{
2902
3166
  type: Injectable,
2903
3167
  args: [{
2904
3168
  providedIn: 'root',
@@ -3000,9 +3264,9 @@ class SkyViewkeeperDirective {
3000
3264
  }
3001
3265
  }
3002
3266
  }
3003
- SkyViewkeeperDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperDirective, deps: [{ token: i0.ElementRef }, { token: MutationObserverService }, { token: SkyViewkeeperService }, { token: SkyScrollableHostService, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
3004
- SkyViewkeeperDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.7", type: SkyViewkeeperDirective, selector: "[skyViewkeeper]", inputs: { skyViewkeeper: "skyViewkeeper" }, ngImport: i0 });
3005
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperDirective, decorators: [{
3267
+ SkyViewkeeperDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperDirective, deps: [{ token: i0.ElementRef }, { token: MutationObserverService }, { token: SkyViewkeeperService }, { token: SkyScrollableHostService, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
3268
+ SkyViewkeeperDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: SkyViewkeeperDirective, selector: "[skyViewkeeper]", inputs: { skyViewkeeper: "skyViewkeeper" }, ngImport: i0 });
3269
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperDirective, decorators: [{
3006
3270
  type: Directive,
3007
3271
  args: [{
3008
3272
  selector: '[skyViewkeeper]',
@@ -3015,10 +3279,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
3015
3279
 
3016
3280
  class SkyViewkeeperModule {
3017
3281
  }
3018
- SkyViewkeeperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3019
- SkyViewkeeperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperModule, declarations: [SkyViewkeeperDirective], exports: [SkyViewkeeperDirective] });
3020
- SkyViewkeeperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperModule });
3021
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: SkyViewkeeperModule, decorators: [{
3282
+ SkyViewkeeperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3283
+ SkyViewkeeperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule, declarations: [SkyViewkeeperDirective], exports: [SkyViewkeeperDirective] });
3284
+ SkyViewkeeperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule });
3285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule, decorators: [{
3022
3286
  type: NgModule,
3023
3287
  args: [{
3024
3288
  declarations: [SkyViewkeeperDirective],
@@ -3030,5 +3294,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
3030
3294
  * Generated bundle index. Do not edit.
3031
3295
  */
3032
3296
 
3033
- export { MutationObserverService, NumericOptions, SkyAffixAutoFitContext, SkyAffixModule, SkyAffixService, SkyAffixer, SkyAppFormat, SkyAppTitleService, SkyAppWindowRef, SkyCoreAdapterModule, SkyCoreAdapterService, SkyDockItem, SkyDockLocation, SkyDockModule, SkyDockService, SkyDynamicComponentLocation, SkyDynamicComponentModule, SkyDynamicComponentService, SkyIdModule, SkyLogModule, SkyLogService, SkyMediaBreakpoints, SkyMediaQueryModule, SkyMediaQueryService, SkyNumericModule, SkyNumericPipe, SkyNumericService, SkyOverlayInstance, SkyOverlayModule, SkyOverlayService, SkyPercentPipe, SkyPercentPipeModule, SkyScrollableHostService, SkyUIConfigService, SkyViewkeeperHostOptions, SkyViewkeeperModule, SkyViewkeeperService, getWindow, SkyAffixDirective as λ1, SkyIdDirective as λ2, SkyViewkeeperDirective as λ3 };
3297
+ export { MutationObserverService, NumericOptions, SKY_LOG_LEVEL, SkyAffixAutoFitContext, SkyAffixModule, SkyAffixService, SkyAffixer, SkyAppFormat, SkyAppTitleService, SkyAppWindowRef, SkyCoreAdapterModule, SkyCoreAdapterService, SkyDockItem, SkyDockLocation, SkyDockModule, SkyDockService, SkyDynamicComponentLocation, SkyDynamicComponentModule, SkyDynamicComponentService, SkyIdModule, SkyLogModule, SkyLogService, SkyMediaBreakpoints, SkyMediaQueryModule, SkyMediaQueryService, SkyNumericModule, SkyNumericPipe, SkyNumericService, SkyOverlayInstance, SkyOverlayModule, SkyOverlayService, SkyPercentPipe, SkyPercentPipeModule, SkyResizeObserverMediaQueryService, SkyResizeObserverService, SkyScrollableHostService, SkyUIConfigService, SkyViewkeeperHostOptions, SkyViewkeeperModule, SkyViewkeeperService, getWindow, SkyAffixDirective as λ1, SkyIdDirective as λ2, SkyViewkeeperDirective as λ3 };
3034
3298
  //# sourceMappingURL=skyux-core.mjs.map