@skyux/core 6.0.0-beta.1 → 6.0.0-beta.10
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.
- package/documentation.json +1799 -1037
- package/esm2020/index.mjs +5 -1
- package/esm2020/lib/modules/adapter-service/adapter.module.mjs +4 -4
- package/esm2020/lib/modules/adapter-service/adapter.service.mjs +17 -10
- package/esm2020/lib/modules/affix/affix.directive.mjs +3 -3
- package/esm2020/lib/modules/affix/affix.module.mjs +4 -4
- package/esm2020/lib/modules/affix/affix.service.mjs +3 -3
- package/esm2020/lib/modules/affix/affixer.mjs +1 -4
- package/esm2020/lib/modules/dock/dock-dom-adapter.service.mjs +3 -3
- package/esm2020/lib/modules/dock/dock.component.mjs +3 -3
- package/esm2020/lib/modules/dock/dock.module.mjs +4 -4
- package/esm2020/lib/modules/dock/dock.service.mjs +3 -3
- package/esm2020/lib/modules/dynamic-component/dynamic-component.module.mjs +4 -4
- package/esm2020/lib/modules/dynamic-component/dynamic-component.service.mjs +3 -3
- package/esm2020/lib/modules/format/app-format.mjs +3 -3
- package/esm2020/lib/modules/id/id.directive.mjs +3 -3
- package/esm2020/lib/modules/id/id.module.mjs +4 -4
- package/esm2020/lib/modules/log/log.module.mjs +4 -4
- package/esm2020/lib/modules/log/log.service.mjs +121 -12
- package/esm2020/lib/modules/log/types/log-deprecation-args.mjs +2 -0
- package/esm2020/lib/modules/log/types/log-level-token.mjs +6 -0
- package/esm2020/lib/modules/log/types/log-level.mjs +2 -0
- package/esm2020/lib/modules/media-query/media-query-listener.mjs +1 -1
- package/esm2020/lib/modules/media-query/media-query.module.mjs +4 -4
- package/esm2020/lib/modules/media-query/media-query.service.mjs +5 -5
- package/esm2020/lib/modules/mutation/mutation-observer-service.mjs +3 -3
- package/esm2020/lib/modules/numeric/numeric.module.mjs +4 -4
- package/esm2020/lib/modules/numeric/numeric.options.mjs +7 -2
- package/esm2020/lib/modules/numeric/numeric.pipe.mjs +6 -8
- package/esm2020/lib/modules/numeric/numeric.service.mjs +4 -6
- package/esm2020/lib/modules/overlay/overlay-adapter.service.mjs +3 -3
- package/esm2020/lib/modules/overlay/overlay.component.mjs +3 -3
- package/esm2020/lib/modules/overlay/overlay.module.mjs +4 -4
- package/esm2020/lib/modules/overlay/overlay.service.mjs +3 -3
- package/esm2020/lib/modules/percent-pipe/percent-pipe.module.mjs +4 -4
- package/esm2020/lib/modules/percent-pipe/percent.pipe.mjs +3 -3
- package/esm2020/lib/modules/resize-observer/resize-observer-media-query.service.mjs +117 -0
- package/esm2020/lib/modules/resize-observer/resize-observer.service.mjs +73 -0
- package/esm2020/lib/modules/scrollable-host/scrollable-host.service.mjs +5 -5
- package/esm2020/lib/modules/shared/number-format/number-format-utility.mjs +1 -2
- package/esm2020/lib/modules/shared/sky-core-resources.module.mjs +4 -4
- package/esm2020/lib/modules/title/title.service.mjs +3 -3
- package/esm2020/lib/modules/ui-config/ui-config.service.mjs +3 -3
- package/esm2020/lib/modules/viewkeeper/viewkeeper-host-options.mjs +3 -3
- package/esm2020/lib/modules/viewkeeper/viewkeeper.directive.mjs +3 -3
- package/esm2020/lib/modules/viewkeeper/viewkeeper.module.mjs +4 -4
- package/esm2020/lib/modules/viewkeeper/viewkeeper.service.mjs +3 -3
- package/esm2020/lib/modules/window/window-ref.mjs +3 -3
- package/esm2020/testing/mock-media-query.service.mjs +3 -3
- package/esm2020/testing/mock-ui-config.service.mjs +3 -3
- package/fesm2015/skyux-core-testing.mjs +6 -6
- package/fesm2015/skyux-core.mjs +453 -153
- package/fesm2015/skyux-core.mjs.map +1 -1
- package/fesm2020/skyux-core-testing.mjs +6 -6
- package/fesm2020/skyux-core.mjs +447 -152
- package/fesm2020/skyux-core.mjs.map +1 -1
- package/index.d.ts +4 -0
- package/lib/modules/log/log.service.d.ts +37 -3
- package/lib/modules/log/types/log-deprecation-args.d.ts +27 -0
- package/lib/modules/log/types/log-level-token.d.ts +6 -0
- package/lib/modules/log/types/log-level.d.ts +8 -0
- package/lib/modules/media-query/media-query-listener.d.ts +1 -1
- package/lib/modules/media-query/media-query.service.d.ts +1 -1
- package/lib/modules/numeric/numeric.options.d.ts +6 -1
- package/lib/modules/numeric/numeric.pipe.d.ts +2 -4
- package/lib/modules/numeric/numeric.service.d.ts +2 -2
- package/lib/modules/resize-observer/resize-observer-media-query.service.d.ts +44 -0
- package/lib/modules/resize-observer/resize-observer.service.d.ts +21 -0
- package/package.json +21 -18
package/fesm2015/skyux-core.mjs
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
import * as i0 from '@angular/core';
|
2
|
-
import { NgModule, Injectable, EventEmitter, Directive, Input, Output, Injector, ViewContainerRef, Component, ChangeDetectionStrategy, ViewChild, Pipe, ElementRef
|
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
|
+
import { __awaiter } from 'tslib';
|
7
8
|
import * as i1 from '@skyux/i18n';
|
8
9
|
import { getLibStringForLocale, SkyI18nModule, SKY_LIB_RESOURCES_PROVIDERS, SkyIntlNumberFormatStyle, SkyIntlNumberFormatter } from '@skyux/i18n';
|
9
10
|
import * as i3 from '@angular/router';
|
@@ -16,10 +17,10 @@ import * as i1$1 from '@angular/platform-browser';
|
|
16
17
|
*/
|
17
18
|
class SkyCoreAdapterModule {
|
18
19
|
}
|
19
|
-
SkyCoreAdapterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
20
|
-
SkyCoreAdapterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
21
|
-
SkyCoreAdapterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
20
|
+
SkyCoreAdapterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21
|
+
SkyCoreAdapterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule });
|
22
|
+
SkyCoreAdapterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule });
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterModule, decorators: [{
|
23
24
|
type: NgModule,
|
24
25
|
args: [{}]
|
25
26
|
}] });
|
@@ -116,6 +117,9 @@ class SkyCoreAdapterService {
|
|
116
117
|
* @return Returns `true` if a child element with autofocus is found.
|
117
118
|
*/
|
118
119
|
applyAutoFocus(elementRef) {
|
120
|
+
if (!elementRef) {
|
121
|
+
return false;
|
122
|
+
}
|
119
123
|
const elementWithAutoFocus = elementRef.nativeElement.querySelector('[autofocus]');
|
120
124
|
// Child was found with the autofocus property. Set focus and return true.
|
121
125
|
if (elementWithAutoFocus) {
|
@@ -138,11 +142,13 @@ class SkyCoreAdapterService {
|
|
138
142
|
*/
|
139
143
|
getFocusableChildrenAndApplyFocus(elementRef, containerSelector, focusOnContainerIfNoChildrenFound = false) {
|
140
144
|
const containerElement = elementRef.nativeElement.querySelector(containerSelector);
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
145
|
+
if (containerElement) {
|
146
|
+
const focusableChildren = this.getFocusableChildren(containerElement);
|
147
|
+
// Focus first focusable child if available. Otherwise, set focus on container.
|
148
|
+
if (!this.focusFirstElement(focusableChildren) &&
|
149
|
+
focusOnContainerIfNoChildrenFound) {
|
150
|
+
containerElement.focus();
|
151
|
+
}
|
146
152
|
}
|
147
153
|
}
|
148
154
|
/**
|
@@ -152,6 +158,9 @@ class SkyCoreAdapterService {
|
|
152
158
|
* @param options - Options for getting focusable children.
|
153
159
|
*/
|
154
160
|
getFocusableChildren(element, options) {
|
161
|
+
if (!element) {
|
162
|
+
return [];
|
163
|
+
}
|
155
164
|
let elements = Array.prototype.slice.call(element.querySelectorAll(SKY_TABBABLE_SELECTOR));
|
156
165
|
// Unless ignoreTabIndex = true, filter out elements with tabindex = -1.
|
157
166
|
if (!options || !options.ignoreTabIndex) {
|
@@ -208,7 +217,6 @@ class SkyCoreAdapterService {
|
|
208
217
|
if (children.length > 0) {
|
209
218
|
for (let i = 0; i < children.length; i++) {
|
210
219
|
// Setting style attributes with Web API requires null instead of undefined.
|
211
|
-
// tslint:disable-next-line: no-null-keyword
|
212
220
|
children[i].style.height = null;
|
213
221
|
}
|
214
222
|
}
|
@@ -250,9 +258,9 @@ class SkyCoreAdapterService {
|
|
250
258
|
return hasBounds;
|
251
259
|
}
|
252
260
|
}
|
253
|
-
SkyCoreAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
254
|
-
SkyCoreAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
261
|
+
SkyCoreAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
|
262
|
+
SkyCoreAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterService, providedIn: 'root' });
|
263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreAdapterService, decorators: [{
|
256
264
|
type: Injectable,
|
257
265
|
args: [{
|
258
266
|
providedIn: 'root',
|
@@ -488,13 +496,11 @@ class SkyAffixer {
|
|
488
496
|
this.notifyPlacementChange(placement);
|
489
497
|
}
|
490
498
|
else {
|
491
|
-
/* tslint:disable-next-line:no-null-keyword */
|
492
499
|
this.notifyPlacementChange(null);
|
493
500
|
}
|
494
501
|
return offset;
|
495
502
|
}
|
496
503
|
if (this.config.enableAutoFit) {
|
497
|
-
/* tslint:disable-next-line:no-null-keyword */
|
498
504
|
this.notifyPlacementChange(null);
|
499
505
|
}
|
500
506
|
// No suitable placement was found, so revert to preferred placement.
|
@@ -595,7 +601,6 @@ class SkyAffixer {
|
|
595
601
|
let pixelTolerance;
|
596
602
|
const originalOffsetTop = offset.top;
|
597
603
|
const originalOffsetLeft = offset.left;
|
598
|
-
/* tslint:disable-next-line:switch-default */
|
599
604
|
switch (placement) {
|
600
605
|
case 'above':
|
601
606
|
case 'below':
|
@@ -723,9 +728,9 @@ class SkyAffixService {
|
|
723
728
|
return new SkyAffixer(affixed.nativeElement, this.renderer);
|
724
729
|
}
|
725
730
|
}
|
726
|
-
SkyAffixService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
727
|
-
SkyAffixService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
728
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
731
|
+
SkyAffixService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
|
732
|
+
SkyAffixService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixService, providedIn: 'root' });
|
733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixService, decorators: [{
|
729
734
|
type: Injectable,
|
730
735
|
args: [{
|
731
736
|
providedIn: 'root',
|
@@ -794,9 +799,9 @@ class SkyAffixDirective {
|
|
794
799
|
});
|
795
800
|
}
|
796
801
|
}
|
797
|
-
SkyAffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
798
|
-
SkyAffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2
|
799
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
802
|
+
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 });
|
803
|
+
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 });
|
804
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixDirective, decorators: [{
|
800
805
|
type: Directive,
|
801
806
|
args: [{
|
802
807
|
selector: '[skyAffixTo]',
|
@@ -827,10 +832,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
827
832
|
|
828
833
|
class SkyAffixModule {
|
829
834
|
}
|
830
|
-
SkyAffixModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
831
|
-
SkyAffixModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
832
|
-
SkyAffixModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
835
|
+
SkyAffixModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
836
|
+
SkyAffixModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, declarations: [SkyAffixDirective], imports: [CommonModule], exports: [SkyAffixDirective] });
|
837
|
+
SkyAffixModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, imports: [[CommonModule]] });
|
838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAffixModule, decorators: [{
|
834
839
|
type: NgModule,
|
835
840
|
args: [{
|
836
841
|
imports: [CommonModule],
|
@@ -891,9 +896,9 @@ class MutationObserverService {
|
|
891
896
|
return new MutationObserver(callback);
|
892
897
|
}
|
893
898
|
}
|
894
|
-
MutationObserverService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
895
|
-
MutationObserverService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
896
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
899
|
+
MutationObserverService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: MutationObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
900
|
+
MutationObserverService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: MutationObserverService, providedIn: 'root' });
|
901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: MutationObserverService, decorators: [{
|
897
902
|
type: Injectable,
|
898
903
|
args: [{
|
899
904
|
providedIn: 'root',
|
@@ -968,9 +973,9 @@ class SkyDockDomAdapterService {
|
|
968
973
|
this.renderer.removeChild(document.head, this.styleElement);
|
969
974
|
}
|
970
975
|
}
|
971
|
-
SkyDockDomAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
972
|
-
SkyDockDomAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
973
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
976
|
+
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 });
|
977
|
+
SkyDockDomAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockDomAdapterService });
|
978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockDomAdapterService, decorators: [{
|
974
979
|
type: Injectable
|
975
980
|
}], ctorParameters: function () { return [{ type: MutationObserverService }, { type: i0.RendererFactory2 }]; } });
|
976
981
|
|
@@ -1057,9 +1062,9 @@ class SkyDockComponent {
|
|
1057
1062
|
return this.itemRefs[0].stackOrder + 1;
|
1058
1063
|
}
|
1059
1064
|
}
|
1060
|
-
SkyDockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1061
|
-
SkyDockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2
|
1062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1065
|
+
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 });
|
1066
|
+
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 });
|
1067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockComponent, decorators: [{
|
1063
1068
|
type: Component,
|
1064
1069
|
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"] }]
|
1065
1070
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ComponentFactoryResolver }, { type: i0.ElementRef }, { type: i0.Injector }, { type: SkyDockDomAdapterService }]; }, propDecorators: { target: [{
|
@@ -1072,10 +1077,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
1072
1077
|
|
1073
1078
|
class SkyDockModule {
|
1074
1079
|
}
|
1075
|
-
SkyDockModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1076
|
-
SkyDockModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
1077
|
-
SkyDockModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
1078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1080
|
+
SkyDockModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1081
|
+
SkyDockModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, declarations: [SkyDockComponent], imports: [CommonModule] });
|
1082
|
+
SkyDockModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, providers: [MutationObserverService], imports: [[CommonModule]] });
|
1083
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockModule, decorators: [{
|
1079
1084
|
type: NgModule,
|
1080
1085
|
args: [{
|
1081
1086
|
imports: [CommonModule],
|
@@ -1130,9 +1135,9 @@ class SkyAppWindowRef {
|
|
1130
1135
|
return getWindow();
|
1131
1136
|
}
|
1132
1137
|
}
|
1133
|
-
SkyAppWindowRef.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1134
|
-
SkyAppWindowRef.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
1135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1138
|
+
SkyAppWindowRef.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppWindowRef, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1139
|
+
SkyAppWindowRef.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppWindowRef, providedIn: 'root' });
|
1140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppWindowRef, decorators: [{
|
1136
1141
|
type: Injectable,
|
1137
1142
|
args: [{
|
1138
1143
|
providedIn: 'root',
|
@@ -1205,9 +1210,9 @@ class SkyDynamicComponentService {
|
|
1205
1210
|
return componentRef.hostView.rootNodes[0];
|
1206
1211
|
}
|
1207
1212
|
}
|
1208
|
-
SkyDynamicComponentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1209
|
-
SkyDynamicComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
1210
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1213
|
+
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 });
|
1214
|
+
SkyDynamicComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentService, providedIn: 'any' });
|
1215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentService, decorators: [{
|
1211
1216
|
type: Injectable,
|
1212
1217
|
args: [{
|
1213
1218
|
// Must be 'any' so that the component is created in the context of its module's injector.
|
@@ -1291,9 +1296,9 @@ class SkyDockService {
|
|
1291
1296
|
}
|
1292
1297
|
}
|
1293
1298
|
SkyDockService._items = [];
|
1294
|
-
SkyDockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1295
|
-
SkyDockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
1296
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1299
|
+
SkyDockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockService, deps: [{ token: SkyDynamicComponentService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1300
|
+
SkyDockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockService, providedIn: 'any' });
|
1301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDockService, decorators: [{
|
1297
1302
|
type: Injectable,
|
1298
1303
|
args: [{
|
1299
1304
|
// Must be 'any' so that the dock component is created in the context of its module's injector.
|
@@ -1310,10 +1315,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
1310
1315
|
*/
|
1311
1316
|
class SkyDynamicComponentModule {
|
1312
1317
|
}
|
1313
|
-
SkyDynamicComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1314
|
-
SkyDynamicComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
1315
|
-
SkyDynamicComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
1316
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1318
|
+
SkyDynamicComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1319
|
+
SkyDynamicComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule });
|
1320
|
+
SkyDynamicComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule });
|
1321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyDynamicComponentModule, decorators: [{
|
1317
1322
|
type: NgModule,
|
1318
1323
|
args: [{}]
|
1319
1324
|
}] });
|
@@ -1325,9 +1330,9 @@ class SkyAppFormat {
|
|
1325
1330
|
});
|
1326
1331
|
}
|
1327
1332
|
}
|
1328
|
-
SkyAppFormat.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1329
|
-
SkyAppFormat.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
1330
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1333
|
+
SkyAppFormat.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppFormat, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1334
|
+
SkyAppFormat.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppFormat, providedIn: 'root' });
|
1335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppFormat, decorators: [{
|
1331
1336
|
type: Injectable,
|
1332
1337
|
args: [{
|
1333
1338
|
providedIn: 'root',
|
@@ -1356,9 +1361,9 @@ class SkyIdDirective {
|
|
1356
1361
|
return this._id;
|
1357
1362
|
}
|
1358
1363
|
}
|
1359
|
-
SkyIdDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1360
|
-
SkyIdDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2
|
1361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1364
|
+
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 });
|
1365
|
+
SkyIdDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: SkyIdDirective, selector: "[skyId]", exportAs: ["skyId"], ngImport: i0 });
|
1366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdDirective, decorators: [{
|
1362
1367
|
type: Directive,
|
1363
1368
|
args: [{
|
1364
1369
|
selector: '[skyId]',
|
@@ -1368,10 +1373,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
1368
1373
|
|
1369
1374
|
class SkyIdModule {
|
1370
1375
|
}
|
1371
|
-
SkyIdModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1372
|
-
SkyIdModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
1373
|
-
SkyIdModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
1374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1376
|
+
SkyIdModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1377
|
+
SkyIdModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule, declarations: [SkyIdDirective], exports: [SkyIdDirective] });
|
1378
|
+
SkyIdModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule });
|
1379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyIdModule, decorators: [{
|
1375
1380
|
type: NgModule,
|
1376
1381
|
args: [{
|
1377
1382
|
declarations: [SkyIdDirective],
|
@@ -1385,34 +1390,150 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
1385
1390
|
*/
|
1386
1391
|
class SkyLogModule {
|
1387
1392
|
}
|
1388
|
-
SkyLogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1389
|
-
SkyLogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
1390
|
-
SkyLogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
1391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1393
|
+
SkyLogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1394
|
+
SkyLogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule });
|
1395
|
+
SkyLogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule });
|
1396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogModule, decorators: [{
|
1392
1397
|
type: NgModule,
|
1393
1398
|
args: [{}]
|
1394
1399
|
}] });
|
1395
1400
|
|
1396
1401
|
/**
|
1397
|
-
* @
|
1402
|
+
* @internal
|
1403
|
+
*/
|
1404
|
+
const SKY_LOG_LEVEL = new InjectionToken('SkyLogLevel');
|
1405
|
+
|
1406
|
+
/**
|
1407
|
+
* 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.
|
1408
|
+
* @internal
|
1398
1409
|
*/
|
1399
1410
|
class SkyLogService {
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1411
|
+
constructor(formatter, applicationLogLevel) {
|
1412
|
+
this.formatter = formatter;
|
1413
|
+
this.applicationLogLevel = applicationLogLevel;
|
1414
|
+
if (!this.applicationLogLevel) {
|
1415
|
+
this.applicationLogLevel = 3 /* Error */;
|
1416
|
+
}
|
1417
|
+
}
|
1418
|
+
/**
|
1419
|
+
* 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.
|
1420
|
+
* @param name The name of the deprecated class, property, function, etc.
|
1421
|
+
* @param args Information about the deprecation and replacement recommendations.
|
1422
|
+
* @returns
|
1423
|
+
*/
|
1424
|
+
deprecated(name, args) {
|
1425
|
+
var _a;
|
1426
|
+
return __awaiter(this, void 0, void 0, function* () {
|
1427
|
+
const logLevel = (_a = args === null || args === void 0 ? void 0 : args.logLevel) !== null && _a !== void 0 ? _a : 2 /* Warn */;
|
1428
|
+
name = this.convertStringToCode(name);
|
1429
|
+
if (this.canLog(logLevel)) {
|
1430
|
+
const localizedStrings = [];
|
1431
|
+
if (args === null || args === void 0 ? void 0 : args.deprecationMajorVersion) {
|
1432
|
+
localizedStrings.push(this.formatter.formatText('{0} is deprecated starting in SKY UX {1}.', name, args.deprecationMajorVersion.toLocaleString()));
|
1433
|
+
}
|
1434
|
+
else {
|
1435
|
+
localizedStrings.push(this.formatter.formatText('{0} is deprecated.', name));
|
1436
|
+
}
|
1437
|
+
if (args === null || args === void 0 ? void 0 : args.removalMajorVersion) {
|
1438
|
+
localizedStrings.push(this.formatter.formatText('We will remove it in version {0}.', args.removalMajorVersion.toLocaleString()));
|
1439
|
+
}
|
1440
|
+
else {
|
1441
|
+
localizedStrings.push('We will remove it in a future major version.');
|
1442
|
+
}
|
1443
|
+
if (args === null || args === void 0 ? void 0 : args.replacementRecommendation) {
|
1444
|
+
localizedStrings.push(args.replacementRecommendation);
|
1445
|
+
}
|
1446
|
+
if (args === null || args === void 0 ? void 0 : args.moreInfoUrl) {
|
1447
|
+
localizedStrings.push(this.formatter.formatText('For more information, see {0}.', args.moreInfoUrl));
|
1448
|
+
}
|
1449
|
+
this.logBasedOnLevel(logLevel, localizedStrings.join(' '));
|
1450
|
+
}
|
1451
|
+
return Promise.resolve();
|
1452
|
+
});
|
1453
|
+
}
|
1454
|
+
/**
|
1455
|
+
* Logs a console error if the application's log level is `SkyLogLevel.Error`.
|
1456
|
+
* @param message The error message
|
1457
|
+
* @param params Optional parameters for the error message.
|
1458
|
+
*/
|
1459
|
+
error(message, params) {
|
1460
|
+
if (this.canLog(3 /* Error */)) {
|
1461
|
+
if (params) {
|
1462
|
+
console.error(message, ...params);
|
1463
|
+
}
|
1464
|
+
else {
|
1465
|
+
console.error(message);
|
1466
|
+
}
|
1467
|
+
}
|
1468
|
+
}
|
1469
|
+
/**
|
1470
|
+
* Logs console information if the application's log level is `SkyLogLevel.Info` or above.
|
1471
|
+
* @param message The infomational message
|
1472
|
+
* @param params Optional parameters for the informational message.
|
1473
|
+
*/
|
1474
|
+
info(message, params) {
|
1475
|
+
if (this.canLog(1 /* Info */)) {
|
1476
|
+
if (params) {
|
1477
|
+
console.log(message, ...params);
|
1478
|
+
}
|
1479
|
+
else {
|
1480
|
+
console.log(message);
|
1481
|
+
}
|
1482
|
+
}
|
1483
|
+
}
|
1484
|
+
/**
|
1485
|
+
* Logs a console warning if the application's log level is `SkyLogLevel.Warn` or above.
|
1486
|
+
* @param message The warning message
|
1487
|
+
* @param params Optional parameters for the warning message.
|
1488
|
+
*/
|
1489
|
+
warn(message, params) {
|
1490
|
+
if (this.canLog(2 /* Warn */)) {
|
1491
|
+
if (params) {
|
1492
|
+
console.warn(message, ...params);
|
1493
|
+
}
|
1494
|
+
else {
|
1495
|
+
console.warn(message);
|
1496
|
+
}
|
1497
|
+
}
|
1498
|
+
}
|
1499
|
+
convertStringToCode(typeString) {
|
1500
|
+
if (typeString.charAt(0) !== '`' && typeString.charAt(-1) !== '`') {
|
1501
|
+
typeString = '`' + typeString + '`';
|
1502
|
+
}
|
1503
|
+
return typeString;
|
1504
|
+
}
|
1505
|
+
canLog(intendedLogLevel) {
|
1506
|
+
return intendedLogLevel >= this.applicationLogLevel;
|
1507
|
+
}
|
1508
|
+
logBasedOnLevel(logLevel, message, params) {
|
1509
|
+
switch (logLevel) {
|
1510
|
+
case 1 /* Info */:
|
1511
|
+
this.info(message, params);
|
1512
|
+
break;
|
1513
|
+
case 2 /* Warn */:
|
1514
|
+
this.warn(message, params);
|
1515
|
+
break;
|
1516
|
+
case 3 /* Error */:
|
1517
|
+
this.error(message, params);
|
1518
|
+
break;
|
1405
1519
|
}
|
1406
1520
|
}
|
1407
1521
|
}
|
1408
|
-
SkyLogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1409
|
-
SkyLogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
1410
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1522
|
+
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 });
|
1523
|
+
SkyLogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogService, providedIn: 'root' });
|
1524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyLogService, decorators: [{
|
1411
1525
|
type: Injectable,
|
1412
1526
|
args: [{
|
1413
1527
|
providedIn: 'root',
|
1414
1528
|
}]
|
1415
|
-
}]
|
1529
|
+
}], ctorParameters: function () {
|
1530
|
+
return [{ type: SkyAppFormat }, { type: undefined, decorators: [{
|
1531
|
+
type: Optional
|
1532
|
+
}, {
|
1533
|
+
type: Inject,
|
1534
|
+
args: [SKY_LOG_LEVEL]
|
1535
|
+
}] }];
|
1536
|
+
} });
|
1416
1537
|
|
1417
1538
|
/**
|
1418
1539
|
* @deprecated The `SkyMediaQueryService` no longer needs the `SkyMediaQueryModule`.
|
@@ -1420,10 +1541,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
1420
1541
|
*/
|
1421
1542
|
class SkyMediaQueryModule {
|
1422
1543
|
}
|
1423
|
-
SkyMediaQueryModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1424
|
-
SkyMediaQueryModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
1425
|
-
SkyMediaQueryModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
1426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1544
|
+
SkyMediaQueryModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1545
|
+
SkyMediaQueryModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule });
|
1546
|
+
SkyMediaQueryModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule });
|
1547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryModule, decorators: [{
|
1427
1548
|
type: NgModule,
|
1428
1549
|
args: [{}]
|
1429
1550
|
}] });
|
@@ -1465,7 +1586,7 @@ class SkyMediaQueryService {
|
|
1465
1586
|
this.currentSubject.complete();
|
1466
1587
|
}
|
1467
1588
|
/**
|
1468
|
-
*
|
1589
|
+
* Subscribes to screen size changes.
|
1469
1590
|
* @param listener Specifies a function that is called when breakpoints change.
|
1470
1591
|
*/
|
1471
1592
|
subscribe(listener) {
|
@@ -1536,9 +1657,9 @@ SkyMediaQueryService.md = '(min-width: 992px) and (max-width: 1199px)';
|
|
1536
1657
|
* @default "(min-width: 1200px)"
|
1537
1658
|
*/
|
1538
1659
|
SkyMediaQueryService.lg = '(min-width: 1200px)';
|
1539
|
-
SkyMediaQueryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1540
|
-
SkyMediaQueryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
1541
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1660
|
+
SkyMediaQueryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
1661
|
+
SkyMediaQueryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryService, providedIn: 'root' });
|
1662
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyMediaQueryService, decorators: [{
|
1542
1663
|
type: Injectable,
|
1543
1664
|
args: [{
|
1544
1665
|
providedIn: 'root',
|
@@ -1569,16 +1690,16 @@ class SkyCoreResourcesProvider {
|
|
1569
1690
|
*/
|
1570
1691
|
class SkyCoreResourcesModule {
|
1571
1692
|
}
|
1572
|
-
SkyCoreResourcesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1573
|
-
SkyCoreResourcesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
1574
|
-
SkyCoreResourcesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
1693
|
+
SkyCoreResourcesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1694
|
+
SkyCoreResourcesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, exports: [SkyI18nModule] });
|
1695
|
+
SkyCoreResourcesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, providers: [
|
1575
1696
|
{
|
1576
1697
|
provide: SKY_LIB_RESOURCES_PROVIDERS,
|
1577
1698
|
useClass: SkyCoreResourcesProvider,
|
1578
1699
|
multi: true,
|
1579
1700
|
},
|
1580
1701
|
], imports: [SkyI18nModule] });
|
1581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
1702
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyCoreResourcesModule, decorators: [{
|
1582
1703
|
type: NgModule,
|
1583
1704
|
args: [{
|
1584
1705
|
exports: [SkyI18nModule],
|
@@ -1595,7 +1716,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
1595
1716
|
/**
|
1596
1717
|
* Provides arguments for the number to format.
|
1597
1718
|
*/
|
1598
|
-
class
|
1719
|
+
class SkyNumericOptions {
|
1599
1720
|
constructor() {
|
1600
1721
|
/**
|
1601
1722
|
* Specifies the maximum number of digits after the decimal separator.
|
@@ -1632,8 +1753,13 @@ class NumericOptions {
|
|
1632
1753
|
this.truncateAfter = 0;
|
1633
1754
|
}
|
1634
1755
|
}
|
1756
|
+
/**
|
1757
|
+
* @deprecated Use `SkyNumericOptions` instead.
|
1758
|
+
*/
|
1759
|
+
class NumericOptions extends SkyNumericOptions {
|
1760
|
+
}
|
1635
1761
|
|
1636
|
-
|
1762
|
+
// This file is mostly ported from the Angular 4.x NumberPipe in order to maintain the old
|
1637
1763
|
function isNumeric(value) {
|
1638
1764
|
return !isNaN(value - parseFloat(value));
|
1639
1765
|
}
|
@@ -1727,7 +1853,6 @@ class SkyNumericService {
|
|
1727
1853
|
*/
|
1728
1854
|
formatNumber(value, options) {
|
1729
1855
|
var _a;
|
1730
|
-
/* tslint:disable-next-line:no-null-keyword */
|
1731
1856
|
if (isNaN(value) || value === null) {
|
1732
1857
|
return '';
|
1733
1858
|
}
|
@@ -1817,7 +1942,6 @@ class SkyNumericService {
|
|
1817
1942
|
if (precision < 0) {
|
1818
1943
|
throw new Error('SkyInvalidArgument: precision must be >= 0');
|
1819
1944
|
}
|
1820
|
-
/* tslint:disable-next-line:no-null-keyword */
|
1821
1945
|
/* Sanity check - ignoring coverage but should not ignore if we make this method public */
|
1822
1946
|
/* istanbul ignore next */
|
1823
1947
|
if (isNaN(value) || value === null) {
|
@@ -1875,9 +1999,9 @@ class SkyNumericService {
|
|
1875
1999
|
return this.resourcesService.getStringForLocale({ locale: 'en_US' }, key);
|
1876
2000
|
}
|
1877
2001
|
}
|
1878
|
-
SkyNumericService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1879
|
-
SkyNumericService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
1880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2002
|
+
SkyNumericService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericService, deps: [{ token: i1.SkyLibResourcesService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2003
|
+
SkyNumericService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericService, providedIn: 'any' });
|
2004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericService, decorators: [{
|
1881
2005
|
type: Injectable,
|
1882
2006
|
args: [{
|
1883
2007
|
providedIn: 'any',
|
@@ -1914,7 +2038,6 @@ class SkyNumericPipe {
|
|
1914
2038
|
this.ngUnsubscribe.complete();
|
1915
2039
|
}
|
1916
2040
|
transform(value, config) {
|
1917
|
-
var _a;
|
1918
2041
|
const newCacheKey = (config ? JSON.stringify(config, Object.keys(config).sort()) : '') +
|
1919
2042
|
`${value}_${(config === null || config === void 0 ? void 0 : config.locale) || this.providerLocale}`;
|
1920
2043
|
/* If the value and locale are the same as the last transform then return the previous value
|
@@ -1922,7 +2045,7 @@ class SkyNumericPipe {
|
|
1922
2045
|
if (this.formattedValue && this.cacheKey === newCacheKey) {
|
1923
2046
|
return this.formattedValue;
|
1924
2047
|
}
|
1925
|
-
const options = new
|
2048
|
+
const options = new SkyNumericOptions();
|
1926
2049
|
// The default number of digits is `1`. When truncate is disabled, set digits
|
1927
2050
|
// to `0` to avoid the unnecessary addition of `.0` at the end of the formatted number.
|
1928
2051
|
if (config && config.truncate === false && config.digits === undefined) {
|
@@ -1941,16 +2064,14 @@ class SkyNumericPipe {
|
|
1941
2064
|
}
|
1942
2065
|
Object.assign(options, config);
|
1943
2066
|
// Assign properties for proper result caching.
|
1944
|
-
this.rawValue = value;
|
1945
|
-
this.lastTransformLocale = (_a = config === null || config === void 0 ? void 0 : config.locale) !== null && _a !== void 0 ? _a : this.providerLocale;
|
1946
2067
|
this.cacheKey = newCacheKey;
|
1947
2068
|
this.formattedValue = this.numericService.formatNumber(value, options);
|
1948
2069
|
return this.formattedValue;
|
1949
2070
|
}
|
1950
2071
|
}
|
1951
|
-
SkyNumericPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1952
|
-
SkyNumericPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.2
|
1953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2072
|
+
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 });
|
2073
|
+
SkyNumericPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericPipe, name: "skyNumeric", pure: false });
|
2074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericPipe, decorators: [{
|
1954
2075
|
type: Pipe,
|
1955
2076
|
args: [{
|
1956
2077
|
name: 'skyNumeric',
|
@@ -1960,10 +2081,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
1960
2081
|
|
1961
2082
|
class SkyNumericModule {
|
1962
2083
|
}
|
1963
|
-
SkyNumericModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
1964
|
-
SkyNumericModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
1965
|
-
SkyNumericModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
1966
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2084
|
+
SkyNumericModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2085
|
+
SkyNumericModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, declarations: [SkyNumericPipe], imports: [SkyI18nModule, SkyCoreResourcesModule], exports: [SkyNumericPipe] });
|
2086
|
+
SkyNumericModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, providers: [SkyNumericPipe], imports: [[SkyI18nModule, SkyCoreResourcesModule]] });
|
2087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyNumericModule, decorators: [{
|
1967
2088
|
type: NgModule,
|
1968
2089
|
args: [{
|
1969
2090
|
declarations: [SkyNumericPipe],
|
@@ -2148,9 +2269,9 @@ class SkyOverlayComponent {
|
|
2148
2269
|
}
|
2149
2270
|
}
|
2150
2271
|
}
|
2151
|
-
SkyOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2152
|
-
SkyOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2
|
2153
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2272
|
+
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 });
|
2273
|
+
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 });
|
2274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayComponent, decorators: [{
|
2154
2275
|
type: Component,
|
2155
2276
|
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"] }]
|
2156
2277
|
}], ctorParameters: function () {
|
@@ -2179,10 +2300,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
2179
2300
|
|
2180
2301
|
class SkyOverlayModule {
|
2181
2302
|
}
|
2182
|
-
SkyOverlayModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2183
|
-
SkyOverlayModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
2184
|
-
SkyOverlayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
2185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2303
|
+
SkyOverlayModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2304
|
+
SkyOverlayModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, declarations: [SkyOverlayComponent], imports: [CommonModule] });
|
2305
|
+
SkyOverlayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, imports: [[CommonModule]] });
|
2306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayModule, decorators: [{
|
2186
2307
|
type: NgModule,
|
2187
2308
|
args: [{
|
2188
2309
|
imports: [CommonModule],
|
@@ -2220,9 +2341,9 @@ class SkyOverlayAdapterService {
|
|
2220
2341
|
}
|
2221
2342
|
}
|
2222
2343
|
}
|
2223
|
-
SkyOverlayAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2224
|
-
SkyOverlayAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
2225
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2344
|
+
SkyOverlayAdapterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable });
|
2345
|
+
SkyOverlayAdapterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayAdapterService, providedIn: 'root' });
|
2346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayAdapterService, decorators: [{
|
2226
2347
|
type: Injectable,
|
2227
2348
|
args: [{
|
2228
2349
|
providedIn: 'root',
|
@@ -2333,9 +2454,9 @@ class SkyOverlayService {
|
|
2333
2454
|
}
|
2334
2455
|
}
|
2335
2456
|
SkyOverlayService.overlays = [];
|
2336
|
-
SkyOverlayService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2337
|
-
SkyOverlayService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
2338
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2457
|
+
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 });
|
2458
|
+
SkyOverlayService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayService, providedIn: 'root' });
|
2459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyOverlayService, decorators: [{
|
2339
2460
|
type: Injectable,
|
2340
2461
|
args: [{
|
2341
2462
|
providedIn: 'root',
|
@@ -2373,9 +2494,9 @@ class SkyPercentPipe {
|
|
2373
2494
|
this.formattedValue = SkyNumberFormatUtility.formatNumber(locale, this.value, SkyIntlNumberFormatStyle.Percent, format);
|
2374
2495
|
}
|
2375
2496
|
}
|
2376
|
-
SkyPercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2377
|
-
SkyPercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.2
|
2378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2497
|
+
SkyPercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipe, deps: [{ token: i1.SkyAppLocaleProvider }], target: i0.ɵɵFactoryTarget.Pipe });
|
2498
|
+
SkyPercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipe, name: "skyPercent", pure: false });
|
2499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipe, decorators: [{
|
2379
2500
|
type: Pipe,
|
2380
2501
|
args: [{
|
2381
2502
|
name: 'skyPercent',
|
@@ -2385,10 +2506,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
2385
2506
|
|
2386
2507
|
class SkyPercentPipeModule {
|
2387
2508
|
}
|
2388
|
-
SkyPercentPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2389
|
-
SkyPercentPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
2390
|
-
SkyPercentPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
2391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2509
|
+
SkyPercentPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2510
|
+
SkyPercentPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, declarations: [SkyPercentPipe], imports: [CommonModule, SkyCoreResourcesModule], exports: [SkyPercentPipe] });
|
2511
|
+
SkyPercentPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, providers: [SkyPercentPipe], imports: [[CommonModule, SkyCoreResourcesModule]] });
|
2512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyPercentPipeModule, decorators: [{
|
2392
2513
|
type: NgModule,
|
2393
2514
|
args: [{
|
2394
2515
|
declarations: [SkyPercentPipe],
|
@@ -2398,6 +2519,185 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
2398
2519
|
}]
|
2399
2520
|
}] });
|
2400
2521
|
|
2522
|
+
/**
|
2523
|
+
* Service to create rxjs observables for changes to the content box dimensions of elements.
|
2524
|
+
*/
|
2525
|
+
class SkyResizeObserverService {
|
2526
|
+
constructor(zone) {
|
2527
|
+
this.zone = zone;
|
2528
|
+
this._tracking = [];
|
2529
|
+
this._resizeObserver = new ResizeObserver((entries) => {
|
2530
|
+
entries.forEach((entry) => this.callback(entry));
|
2531
|
+
});
|
2532
|
+
}
|
2533
|
+
ngOnDestroy() {
|
2534
|
+
this._resizeObserver.disconnect();
|
2535
|
+
}
|
2536
|
+
/**
|
2537
|
+
* Create rxjs observable to get size changes for an element ref.
|
2538
|
+
*/
|
2539
|
+
observe(element) {
|
2540
|
+
return this.observeAndTrack(element).subjectObservable;
|
2541
|
+
}
|
2542
|
+
observeAndTrack(element) {
|
2543
|
+
const checkTracking = this._tracking.findIndex((value) => {
|
2544
|
+
return !value.subject.closed && value.element === element.nativeElement;
|
2545
|
+
});
|
2546
|
+
if (checkTracking === -1) {
|
2547
|
+
this._resizeObserver.observe(element.nativeElement);
|
2548
|
+
}
|
2549
|
+
const subject = new Subject();
|
2550
|
+
const subjectObservable = subject.pipe(finalize(() => {
|
2551
|
+
// Are there any other tracking entries still watching this element?
|
2552
|
+
const checkTracking = this._tracking.findIndex((value) => {
|
2553
|
+
return (value.subject !== subject &&
|
2554
|
+
!value.subject.closed &&
|
2555
|
+
value.element === element.nativeElement);
|
2556
|
+
});
|
2557
|
+
if (checkTracking === -1) {
|
2558
|
+
this._resizeObserver.unobserve(element.nativeElement);
|
2559
|
+
}
|
2560
|
+
}));
|
2561
|
+
const tracking = {
|
2562
|
+
element: element.nativeElement,
|
2563
|
+
subject,
|
2564
|
+
subjectObservable,
|
2565
|
+
};
|
2566
|
+
this._tracking.push(tracking);
|
2567
|
+
return tracking;
|
2568
|
+
}
|
2569
|
+
callback(entry) {
|
2570
|
+
this._tracking
|
2571
|
+
.filter((value) => !(value.subject.closed || value.subject.isStopped))
|
2572
|
+
.forEach((value) => {
|
2573
|
+
/* istanbul ignore else */
|
2574
|
+
if (value.element === entry.target) {
|
2575
|
+
this.zone.run(() => {
|
2576
|
+
value.subject.next(entry);
|
2577
|
+
});
|
2578
|
+
}
|
2579
|
+
});
|
2580
|
+
}
|
2581
|
+
}
|
2582
|
+
SkyResizeObserverService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
2583
|
+
SkyResizeObserverService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverService, providedIn: 'any' });
|
2584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverService, decorators: [{
|
2585
|
+
type: Injectable,
|
2586
|
+
args: [{
|
2587
|
+
providedIn: 'any',
|
2588
|
+
}]
|
2589
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
2590
|
+
|
2591
|
+
/**
|
2592
|
+
* Acts like `SkyMediaQueryService` for a container element, emitting the same responsive breakpoints.
|
2593
|
+
*/
|
2594
|
+
class SkyResizeObserverMediaQueryService {
|
2595
|
+
constructor(resizeObserverService) {
|
2596
|
+
this.resizeObserverService = resizeObserverService;
|
2597
|
+
this._breakpoints = [
|
2598
|
+
{
|
2599
|
+
check: (width) => width <= 767,
|
2600
|
+
name: SkyMediaBreakpoints.xs,
|
2601
|
+
},
|
2602
|
+
{
|
2603
|
+
check: (width) => width > 767 && width <= 991,
|
2604
|
+
name: SkyMediaBreakpoints.sm,
|
2605
|
+
},
|
2606
|
+
{
|
2607
|
+
check: (width) => width > 991 && width <= 1199,
|
2608
|
+
name: SkyMediaBreakpoints.md,
|
2609
|
+
},
|
2610
|
+
{
|
2611
|
+
check: (width) => width > 1199,
|
2612
|
+
name: SkyMediaBreakpoints.lg,
|
2613
|
+
},
|
2614
|
+
];
|
2615
|
+
this._currentBreakpointObservable = new ReplaySubject(1);
|
2616
|
+
this._stopListening = new Subject();
|
2617
|
+
this._stopListening.subscribe(() => {
|
2618
|
+
this._target = undefined;
|
2619
|
+
this.updateBreakpoint(undefined);
|
2620
|
+
});
|
2621
|
+
}
|
2622
|
+
/**
|
2623
|
+
* Returns the current breakpoint.
|
2624
|
+
*/
|
2625
|
+
get current() {
|
2626
|
+
return this._currentBreakpoint;
|
2627
|
+
}
|
2628
|
+
ngOnDestroy() {
|
2629
|
+
this._stopListening.next();
|
2630
|
+
this._currentBreakpoint = undefined;
|
2631
|
+
this._stopListening.complete();
|
2632
|
+
this._currentBreakpointObservable.complete();
|
2633
|
+
}
|
2634
|
+
/**
|
2635
|
+
* @internal
|
2636
|
+
*/
|
2637
|
+
destroy() {
|
2638
|
+
this.ngOnDestroy();
|
2639
|
+
}
|
2640
|
+
/**
|
2641
|
+
* Sets the container element to watch. The `SkyResizeObserverMediaQueryService` will only observe one element at a
|
2642
|
+
* time. Any previous subscriptions will be unsubscribed when a new element is observed.
|
2643
|
+
*/
|
2644
|
+
observe(element) {
|
2645
|
+
if (this._target) {
|
2646
|
+
if (this._target === element) {
|
2647
|
+
return this;
|
2648
|
+
}
|
2649
|
+
this._stopListening.next();
|
2650
|
+
}
|
2651
|
+
this._target = element;
|
2652
|
+
const width = element.nativeElement.offsetWidth;
|
2653
|
+
if (width) {
|
2654
|
+
const breakpoint = this.checkBreakpoint(width);
|
2655
|
+
this.updateBreakpoint(breakpoint);
|
2656
|
+
}
|
2657
|
+
this.resizeObserverService
|
2658
|
+
.observe(element)
|
2659
|
+
.pipe(takeUntil(this._stopListening))
|
2660
|
+
.subscribe((value) => {
|
2661
|
+
const breakpoint = this.checkBreakpoint(value.contentRect.width);
|
2662
|
+
/* istanbul ignore else */
|
2663
|
+
if (breakpoint !== this._currentBreakpoint) {
|
2664
|
+
this.updateBreakpoint(breakpoint);
|
2665
|
+
}
|
2666
|
+
});
|
2667
|
+
return this;
|
2668
|
+
}
|
2669
|
+
/**
|
2670
|
+
* Stop watching the container element.
|
2671
|
+
*/
|
2672
|
+
unobserve() {
|
2673
|
+
this._stopListening.next();
|
2674
|
+
}
|
2675
|
+
/**
|
2676
|
+
* Subscribes to element size changes that cross breakpoints.
|
2677
|
+
*/
|
2678
|
+
subscribe(listener) {
|
2679
|
+
return this._currentBreakpointObservable
|
2680
|
+
.pipe(takeUntil(this._stopListening))
|
2681
|
+
.subscribe(listener);
|
2682
|
+
}
|
2683
|
+
updateBreakpoint(breakpoint) {
|
2684
|
+
this._currentBreakpoint = breakpoint;
|
2685
|
+
this._currentBreakpointObservable.next(breakpoint);
|
2686
|
+
}
|
2687
|
+
checkBreakpoint(width) {
|
2688
|
+
var _a;
|
2689
|
+
return (_a = this._breakpoints.find((breakpoint) => breakpoint.check(width))) === null || _a === void 0 ? void 0 : _a.name;
|
2690
|
+
}
|
2691
|
+
}
|
2692
|
+
SkyResizeObserverMediaQueryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverMediaQueryService, deps: [{ token: SkyResizeObserverService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2693
|
+
SkyResizeObserverMediaQueryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverMediaQueryService, providedIn: 'any' });
|
2694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyResizeObserverMediaQueryService, decorators: [{
|
2695
|
+
type: Injectable,
|
2696
|
+
args: [{
|
2697
|
+
providedIn: 'any',
|
2698
|
+
}]
|
2699
|
+
}], ctorParameters: function () { return [{ type: SkyResizeObserverService }]; } });
|
2700
|
+
|
2401
2701
|
function notifySubscribers(subscribers, item) {
|
2402
2702
|
for (const subscriber of subscribers) {
|
2403
2703
|
subscriber.next(item);
|
@@ -2442,7 +2742,7 @@ class SkyScrollableHostService {
|
|
2442
2742
|
});
|
2443
2743
|
this.observeForScrollableHostChanges(scrollableHost, parentMutationObserver);
|
2444
2744
|
documentHiddenElementMutationObserver = this.mutationObserverSvc.create(() => {
|
2445
|
-
if (!elementRef.nativeElement.offsetParent) {
|
2745
|
+
if (scrollableHost && !elementRef.nativeElement.offsetParent) {
|
2446
2746
|
scrollableHost = undefined;
|
2447
2747
|
this.observeForScrollableHostChanges(scrollableHost, parentMutationObserver);
|
2448
2748
|
notifySubscribers(subscribers, scrollableHost);
|
@@ -2565,9 +2865,9 @@ class SkyScrollableHostService {
|
|
2565
2865
|
}
|
2566
2866
|
}
|
2567
2867
|
}
|
2568
|
-
SkyScrollableHostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2569
|
-
SkyScrollableHostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
2570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2868
|
+
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 });
|
2869
|
+
SkyScrollableHostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyScrollableHostService, providedIn: 'root' });
|
2870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyScrollableHostService, decorators: [{
|
2571
2871
|
type: Injectable,
|
2572
2872
|
args: [{
|
2573
2873
|
providedIn: 'root',
|
@@ -2592,9 +2892,9 @@ class SkyAppTitleService {
|
|
2592
2892
|
}
|
2593
2893
|
}
|
2594
2894
|
}
|
2595
|
-
SkyAppTitleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2596
|
-
SkyAppTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
2597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2895
|
+
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 });
|
2896
|
+
SkyAppTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppTitleService, providedIn: 'root' });
|
2897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyAppTitleService, decorators: [{
|
2598
2898
|
type: Injectable,
|
2599
2899
|
args: [{
|
2600
2900
|
providedIn: 'root',
|
@@ -2610,9 +2910,9 @@ class SkyUIConfigService {
|
|
2610
2910
|
return of({});
|
2611
2911
|
}
|
2612
2912
|
}
|
2613
|
-
SkyUIConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2614
|
-
SkyUIConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
2615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2913
|
+
SkyUIConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyUIConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
2914
|
+
SkyUIConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyUIConfigService, providedIn: 'root' });
|
2915
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyUIConfigService, decorators: [{
|
2616
2916
|
type: Injectable,
|
2617
2917
|
args: [{
|
2618
2918
|
providedIn: 'root',
|
@@ -2621,9 +2921,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
2621
2921
|
|
2622
2922
|
class SkyViewkeeperHostOptions {
|
2623
2923
|
}
|
2624
|
-
SkyViewkeeperHostOptions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2625
|
-
SkyViewkeeperHostOptions.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
2626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
2924
|
+
SkyViewkeeperHostOptions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperHostOptions, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
2925
|
+
SkyViewkeeperHostOptions.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperHostOptions });
|
2926
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperHostOptions, decorators: [{
|
2627
2927
|
type: Injectable
|
2628
2928
|
}] });
|
2629
2929
|
|
@@ -2901,9 +3201,9 @@ class SkyViewkeeperService {
|
|
2901
3201
|
vk.destroy();
|
2902
3202
|
}
|
2903
3203
|
}
|
2904
|
-
SkyViewkeeperService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
2905
|
-
SkyViewkeeperService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2
|
2906
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
3204
|
+
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 });
|
3205
|
+
SkyViewkeeperService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperService, providedIn: 'root' });
|
3206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperService, decorators: [{
|
2907
3207
|
type: Injectable,
|
2908
3208
|
args: [{
|
2909
3209
|
providedIn: 'root',
|
@@ -3007,9 +3307,9 @@ class SkyViewkeeperDirective {
|
|
3007
3307
|
}
|
3008
3308
|
}
|
3009
3309
|
}
|
3010
|
-
SkyViewkeeperDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
3011
|
-
SkyViewkeeperDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2
|
3012
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
3310
|
+
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 });
|
3311
|
+
SkyViewkeeperDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: SkyViewkeeperDirective, selector: "[skyViewkeeper]", inputs: { skyViewkeeper: "skyViewkeeper" }, ngImport: i0 });
|
3312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperDirective, decorators: [{
|
3013
3313
|
type: Directive,
|
3014
3314
|
args: [{
|
3015
3315
|
selector: '[skyViewkeeper]',
|
@@ -3024,10 +3324,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
3024
3324
|
|
3025
3325
|
class SkyViewkeeperModule {
|
3026
3326
|
}
|
3027
|
-
SkyViewkeeperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2
|
3028
|
-
SkyViewkeeperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2
|
3029
|
-
SkyViewkeeperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2
|
3030
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2
|
3327
|
+
SkyViewkeeperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
3328
|
+
SkyViewkeeperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule, declarations: [SkyViewkeeperDirective], exports: [SkyViewkeeperDirective] });
|
3329
|
+
SkyViewkeeperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule });
|
3330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SkyViewkeeperModule, decorators: [{
|
3031
3331
|
type: NgModule,
|
3032
3332
|
args: [{
|
3033
3333
|
declarations: [SkyViewkeeperDirective],
|
@@ -3039,5 +3339,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
3039
3339
|
* Generated bundle index. Do not edit.
|
3040
3340
|
*/
|
3041
3341
|
|
3042
|
-
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 };
|
3342
|
+
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, SkyNumericOptions, SkyNumericPipe, SkyNumericService, SkyOverlayInstance, SkyOverlayModule, SkyOverlayService, SkyPercentPipe, SkyPercentPipeModule, SkyResizeObserverMediaQueryService, SkyResizeObserverService, SkyScrollableHostService, SkyUIConfigService, SkyViewkeeperHostOptions, SkyViewkeeperModule, SkyViewkeeperService, getWindow, SkyAffixDirective as λ1, SkyIdDirective as λ2, SkyViewkeeperDirective as λ3 };
|
3043
3343
|
//# sourceMappingURL=skyux-core.mjs.map
|