@skyux/core 9.5.1 → 9.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation.json +1190 -1400
- package/esm2022/index.mjs +2 -1
- package/esm2022/lib/modules/adapter-service/adapter.module.mjs +4 -4
- package/esm2022/lib/modules/adapter-service/adapter.service.mjs +3 -3
- package/esm2022/lib/modules/affix/affix.directive.mjs +3 -3
- package/esm2022/lib/modules/affix/affix.module.mjs +4 -4
- package/esm2022/lib/modules/affix/affix.service.mjs +3 -3
- package/esm2022/lib/modules/affix/affixer.mjs +3 -3
- package/esm2022/lib/modules/affix/dom-utils.mjs +3 -2
- package/esm2022/lib/modules/content-info-provider/content-info-descriptor.mjs +2 -0
- package/esm2022/lib/modules/content-info-provider/content-info.mjs +1 -1
- package/esm2022/lib/modules/dock/dock-dom-adapter.service.mjs +3 -3
- package/esm2022/lib/modules/dock/dock.component.mjs +3 -3
- package/esm2022/lib/modules/dock/dock.module.mjs +4 -4
- package/esm2022/lib/modules/dock/dock.service.mjs +3 -3
- package/esm2022/lib/modules/dynamic-component/dynamic-component.module.mjs +4 -4
- package/esm2022/lib/modules/dynamic-component/dynamic-component.service.mjs +6 -6
- package/esm2022/lib/modules/format/app-format.mjs +3 -3
- package/esm2022/lib/modules/id/id.directive.mjs +3 -3
- package/esm2022/lib/modules/id/id.module.mjs +4 -4
- package/esm2022/lib/modules/id/id.service.mjs +3 -3
- package/esm2022/lib/modules/layout-host/layout-host.service.mjs +3 -3
- package/esm2022/lib/modules/live-announcer/live-announcer.service.mjs +3 -3
- package/esm2022/lib/modules/log/log.module.mjs +4 -4
- package/esm2022/lib/modules/log/log.service.mjs +3 -3
- package/esm2022/lib/modules/media-query/media-query.module.mjs +4 -4
- package/esm2022/lib/modules/media-query/media-query.service.mjs +3 -3
- package/esm2022/lib/modules/mutation/mutation-observer-service.mjs +3 -3
- package/esm2022/lib/modules/numeric/numeric.module.mjs +4 -4
- package/esm2022/lib/modules/numeric/numeric.pipe.mjs +3 -3
- package/esm2022/lib/modules/numeric/numeric.service.mjs +3 -3
- package/esm2022/lib/modules/overlay/overlay-adapter.service.mjs +3 -3
- package/esm2022/lib/modules/overlay/overlay.component.mjs +3 -3
- package/esm2022/lib/modules/overlay/overlay.module.mjs +4 -4
- package/esm2022/lib/modules/overlay/overlay.service.mjs +6 -6
- package/esm2022/lib/modules/percent-pipe/percent-pipe.module.mjs +4 -4
- package/esm2022/lib/modules/percent-pipe/percent.pipe.mjs +3 -3
- package/esm2022/lib/modules/resize-observer/resize-observer-media-query.service.mjs +8 -11
- package/esm2022/lib/modules/resize-observer/resize-observer.service.mjs +31 -18
- package/esm2022/lib/modules/screen-reader-label/screen-reader-label.directive.mjs +66 -0
- package/esm2022/lib/modules/scrollable-host/scrollable-host.service.mjs +3 -3
- package/esm2022/lib/modules/shared/sky-core-resources.module.mjs +4 -4
- package/esm2022/lib/modules/title/title.service.mjs +3 -3
- package/esm2022/lib/modules/trim/trim.directive.mjs +3 -3
- package/esm2022/lib/modules/trim/trim.module.mjs +4 -4
- package/esm2022/lib/modules/ui-config/ui-config.service.mjs +3 -3
- package/esm2022/lib/modules/viewkeeper/viewkeeper-host-options.mjs +3 -3
- package/esm2022/lib/modules/viewkeeper/viewkeeper.directive.mjs +3 -3
- package/esm2022/lib/modules/viewkeeper/viewkeeper.module.mjs +4 -4
- package/esm2022/lib/modules/viewkeeper/viewkeeper.service.mjs +3 -3
- package/esm2022/lib/modules/window/window-ref.mjs +3 -3
- package/esm2022/testing/core-testing.module.mjs +4 -4
- package/esm2022/testing/mock-media-query.service.mjs +3 -3
- package/esm2022/testing/mock-ui-config.service.mjs +3 -3
- package/esm2022/testing/resize-observer-mock.mjs +6 -1
- package/esm2022/version.mjs +1 -1
- package/fesm2022/skyux-core-testing.mjs +15 -10
- package/fesm2022/skyux-core-testing.mjs.map +1 -1
- package/fesm2022/skyux-core.mjs +249 -175
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/modules/content-info-provider/content-info-descriptor.d.ts +16 -0
- package/lib/modules/content-info-provider/content-info.d.ts +11 -1
- package/lib/modules/resize-observer/resize-observer-media-query.service.d.ts +0 -2
- package/lib/modules/resize-observer/resize-observer.service.d.ts +1 -2
- package/lib/modules/screen-reader-label/screen-reader-label.directive.d.ts +20 -0
- package/package.json +7 -7
package/fesm2022/skyux-core.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as i0 from '@angular/core';
|
2
|
-
import { NgModule, Injectable, inject, RendererFactory2, NgZone, EventEmitter, Directive, Input, Output, EnvironmentInjector, createEnvironmentInjector, createComponent, ChangeDetectorRef, ElementRef, ViewContainerRef, Component, ChangeDetectionStrategy, ViewChild, InjectionToken, Optional, Inject, Pipe, HostBinding, ApplicationRef } from '@angular/core';
|
2
|
+
import { NgModule, Injectable, inject, RendererFactory2, NgZone, EventEmitter, Directive, Input, Output, EnvironmentInjector, createEnvironmentInjector, createComponent, ChangeDetectorRef, ElementRef, ViewContainerRef, Component, ChangeDetectionStrategy, ViewChild, InjectionToken, Optional, Inject, Pipe, HostBinding, ApplicationRef, Renderer2 } from '@angular/core';
|
3
3
|
import * as i1$1 from '@angular/common';
|
4
4
|
import { CommonModule, DOCUMENT } from '@angular/common';
|
5
5
|
import { Subject, Subscription, ReplaySubject, fromEvent, BehaviorSubject, Observable, of, concat, animationFrameScheduler } from 'rxjs';
|
@@ -15,11 +15,11 @@ import * as i1$2 from '@angular/platform-browser';
|
|
15
15
|
* The `SkyCoreAdapterModule` can be removed from your project.
|
16
16
|
*/
|
17
17
|
class SkyCoreAdapterModule {
|
18
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
19
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
20
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
18
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreAdapterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
19
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreAdapterModule }); }
|
20
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreAdapterModule }); }
|
21
21
|
}
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreAdapterModule, decorators: [{
|
23
23
|
type: NgModule,
|
24
24
|
args: [{}]
|
25
25
|
}] });
|
@@ -256,10 +256,10 @@ class SkyCoreAdapterService {
|
|
256
256
|
element.getClientRects().length);
|
257
257
|
return hasBounds;
|
258
258
|
}
|
259
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
260
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
260
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreAdapterService, providedIn: 'root' }); }
|
261
261
|
}
|
262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreAdapterService, decorators: [{
|
263
263
|
type: Injectable,
|
264
264
|
args: [{
|
265
265
|
providedIn: 'root',
|
@@ -336,7 +336,7 @@ function getElementOffset(element, bufferOffset) {
|
|
336
336
|
}
|
337
337
|
function getOverflowParents(child) {
|
338
338
|
const bodyElement = window.document.body;
|
339
|
-
const results = [
|
339
|
+
const results = [];
|
340
340
|
let parentElement = child?.parentNode;
|
341
341
|
while (parentElement !== undefined &&
|
342
342
|
parentElement !== bodyElement &&
|
@@ -351,6 +351,7 @@ function getOverflowParents(child) {
|
|
351
351
|
}
|
352
352
|
parentElement = parentElement.parentNode;
|
353
353
|
}
|
354
|
+
results.push(bodyElement);
|
354
355
|
return results;
|
355
356
|
}
|
356
357
|
/**
|
@@ -700,10 +701,10 @@ class SkyAffixer {
|
|
700
701
|
return offset;
|
701
702
|
}
|
702
703
|
#getImmediateOverflowParent() {
|
703
|
-
return this.#overflowParents[
|
704
|
+
return this.#overflowParents[0];
|
704
705
|
}
|
705
706
|
#getAutoFitContextParent() {
|
706
|
-
const bodyElement = this.#overflowParents[
|
707
|
+
const bodyElement = this.#overflowParents[this.#overflowParents.length - 1];
|
707
708
|
return this.#config.autoFitContext === SkyAffixAutoFitContext.OverflowParent
|
708
709
|
? this.#getImmediateOverflowParent()
|
709
710
|
: bodyElement;
|
@@ -788,10 +789,10 @@ class SkyAffixService {
|
|
788
789
|
createAffixer(affixed) {
|
789
790
|
return new SkyAffixer(affixed.nativeElement, this.#renderer, this.#viewportRuler, this.#zone);
|
790
791
|
}
|
791
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
792
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
792
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
793
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixService, providedIn: 'root' }); }
|
793
794
|
}
|
794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixService, decorators: [{
|
795
796
|
type: Injectable,
|
796
797
|
args: [{
|
797
798
|
providedIn: 'root',
|
@@ -875,10 +876,10 @@ class SkyAffixDirective {
|
|
875
876
|
});
|
876
877
|
}
|
877
878
|
}
|
878
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
879
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
879
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixDirective, deps: [{ token: i0.ElementRef }, { token: SkyAffixService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
880
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.9", type: SkyAffixDirective, selector: "[skyAffixTo]", inputs: { skyAffixTo: "skyAffixTo", affixAutoFitContext: "affixAutoFitContext", affixAutoFitOverflowOffset: "affixAutoFitOverflowOffset", affixEnableAutoFit: "affixEnableAutoFit", affixHorizontalAlignment: "affixHorizontalAlignment", affixIsSticky: "affixIsSticky", affixPlacement: "affixPlacement", affixPosition: "affixPosition", affixVerticalAlignment: "affixVerticalAlignment" }, outputs: { affixOffsetChange: "affixOffsetChange", affixOverflowScroll: "affixOverflowScroll", affixPlacementChange: "affixPlacementChange" }, usesOnChanges: true, ngImport: i0 }); }
|
880
881
|
}
|
881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixDirective, decorators: [{
|
882
883
|
type: Directive,
|
883
884
|
args: [{
|
884
885
|
selector: '[skyAffixTo]',
|
@@ -910,11 +911,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
910
911
|
}] } });
|
911
912
|
|
912
913
|
class SkyAffixModule {
|
913
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
914
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
915
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
915
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixModule, declarations: [SkyAffixDirective], imports: [CommonModule], exports: [SkyAffixDirective] }); }
|
916
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixModule, imports: [CommonModule] }); }
|
916
917
|
}
|
917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
918
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAffixModule, decorators: [{
|
918
919
|
type: NgModule,
|
919
920
|
args: [{
|
920
921
|
imports: [CommonModule],
|
@@ -1024,11 +1025,11 @@ var SkyDockLocation;
|
|
1024
1025
|
* @deprecated The `SkyDockModule` is no longer needed and can be removed from your application.
|
1025
1026
|
*/
|
1026
1027
|
class SkyDockModule {
|
1027
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1028
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
1029
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
1028
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
1029
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyDockModule }); }
|
1030
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockModule }); }
|
1030
1031
|
}
|
1031
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1032
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockModule, decorators: [{
|
1032
1033
|
type: NgModule,
|
1033
1034
|
args: [{}]
|
1034
1035
|
}] });
|
@@ -1078,10 +1079,10 @@ class SkyAppWindowRef {
|
|
1078
1079
|
get nativeWindow() {
|
1079
1080
|
return getWindow();
|
1080
1081
|
}
|
1081
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1082
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1082
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppWindowRef, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1083
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppWindowRef, providedIn: 'root' }); }
|
1083
1084
|
}
|
1084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppWindowRef, decorators: [{
|
1085
1086
|
type: Injectable,
|
1086
1087
|
args: [{
|
1087
1088
|
providedIn: 'root',
|
@@ -1170,10 +1171,10 @@ class SkyDynamicComponentService {
|
|
1170
1171
|
// https://malcoded.com/posts/angular-dynamic-components
|
1171
1172
|
return componentRef.hostView.rootNodes[0];
|
1172
1173
|
}
|
1173
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1174
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1174
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentService, deps: [{ token: i0.ApplicationRef }, { token: SkyAppWindowRef }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1175
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentService, providedIn: 'root' }); }
|
1175
1176
|
}
|
1176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentService, decorators: [{
|
1177
1178
|
type: Injectable,
|
1178
1179
|
args: [{
|
1179
1180
|
providedIn: 'root',
|
@@ -1185,10 +1186,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
1185
1186
|
* @deprecated Use `SkyDynamicComponentService` to create a standalone component instead.
|
1186
1187
|
*/
|
1187
1188
|
class SkyDynamicComponentLegacyService extends SkyDynamicComponentService {
|
1188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1189
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1189
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentLegacyService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
1190
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentLegacyService, providedIn: 'any' }); }
|
1190
1191
|
}
|
1191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentLegacyService, decorators: [{
|
1192
1193
|
type: Injectable,
|
1193
1194
|
args: [{
|
1194
1195
|
providedIn: 'any',
|
@@ -1202,10 +1203,10 @@ class SkyMutationObserverService {
|
|
1202
1203
|
create(callback) {
|
1203
1204
|
return new MutationObserver(callback);
|
1204
1205
|
}
|
1205
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1206
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1206
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMutationObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1207
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMutationObserverService, providedIn: 'root' }); }
|
1207
1208
|
}
|
1208
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMutationObserverService, decorators: [{
|
1209
1210
|
type: Injectable,
|
1210
1211
|
args: [{
|
1211
1212
|
providedIn: 'root',
|
@@ -1281,10 +1282,10 @@ class SkyDockDomAdapterService {
|
|
1281
1282
|
#destroyStyleElement() {
|
1282
1283
|
this.#renderer.removeChild(document.head, this.#styleElement);
|
1283
1284
|
}
|
1284
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1285
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1285
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockDomAdapterService, deps: [{ token: SkyMutationObserverService }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1286
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockDomAdapterService }); }
|
1286
1287
|
}
|
1287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockDomAdapterService, decorators: [{
|
1288
1289
|
type: Injectable
|
1289
1290
|
}], ctorParameters: function () { return [{ type: SkyMutationObserverService }, { type: i0.RendererFactory2 }]; } });
|
1290
1291
|
|
@@ -1382,10 +1383,10 @@ class SkyDockComponent {
|
|
1382
1383
|
}
|
1383
1384
|
return this.#itemRefs[0].stackOrder + 1;
|
1384
1385
|
}
|
1385
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1386
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
1386
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
1387
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: SkyDockComponent, isStandalone: true, 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:var(--sky-viewport-left, 0);bottom:var(--sky-viewport-bottom, 0);right:var(--sky-viewport-right, 0);width:auto}:host.sky-dock-sticky{position:sticky}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
1387
1388
|
}
|
1388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockComponent, decorators: [{
|
1389
1390
|
type: Component,
|
1390
1391
|
args: [{ standalone: true, 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:var(--sky-viewport-left, 0);bottom:var(--sky-viewport-bottom, 0);right:var(--sky-viewport-right, 0);width:auto}:host.sky-dock-sticky{position:sticky}\n"] }]
|
1391
1392
|
}], propDecorators: { target: [{
|
@@ -1471,10 +1472,10 @@ class SkyDockService {
|
|
1471
1472
|
this.#dynamicComponentSvc.removeComponent(SkyDockService.dockRef);
|
1472
1473
|
SkyDockService.dockRef = undefined;
|
1473
1474
|
}
|
1474
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1475
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1475
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockService, deps: [{ token: SkyDynamicComponentService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1476
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockService, providedIn: 'root' }); }
|
1476
1477
|
}
|
1477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDockService, decorators: [{
|
1478
1479
|
type: Injectable,
|
1479
1480
|
args: [{
|
1480
1481
|
providedIn: 'root',
|
@@ -1487,11 +1488,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
1487
1488
|
* The `SkyDynamicComponentModule` can be removed from your project.
|
1488
1489
|
*/
|
1489
1490
|
class SkyDynamicComponentModule {
|
1490
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1491
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
1492
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
1491
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
1492
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentModule }); }
|
1493
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentModule }); }
|
1493
1494
|
}
|
1494
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1495
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyDynamicComponentModule, decorators: [{
|
1495
1496
|
type: NgModule,
|
1496
1497
|
args: [{}]
|
1497
1498
|
}] });
|
@@ -1502,10 +1503,10 @@ class SkyAppFormat {
|
|
1502
1503
|
return args[parseInt(capture, 10)];
|
1503
1504
|
});
|
1504
1505
|
}
|
1505
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1506
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1506
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppFormat, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1507
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppFormat, providedIn: 'root' }); }
|
1507
1508
|
}
|
1508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppFormat, decorators: [{
|
1509
1510
|
type: Injectable,
|
1510
1511
|
args: [{
|
1511
1512
|
providedIn: 'root',
|
@@ -1524,10 +1525,10 @@ class SkyIdService {
|
|
1524
1525
|
// elements with the same ID across sessions.
|
1525
1526
|
return `sky-id-gen__${new Date().getTime()}__${idIndex}`;
|
1526
1527
|
}
|
1527
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1528
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1528
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1529
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdService, providedIn: 'root' }); }
|
1529
1530
|
}
|
1530
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdService, decorators: [{
|
1531
1532
|
type: Injectable,
|
1532
1533
|
args: [{
|
1533
1534
|
providedIn: 'root',
|
@@ -1551,10 +1552,10 @@ class SkyIdDirective {
|
|
1551
1552
|
renderer.setAttribute(elRef.nativeElement, 'id', id);
|
1552
1553
|
this.#_id = id;
|
1553
1554
|
}
|
1554
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1555
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
1555
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: SkyIdService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
1556
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.9", type: SkyIdDirective, selector: "[skyId]", exportAs: ["skyId"], ngImport: i0 }); }
|
1556
1557
|
}
|
1557
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdDirective, decorators: [{
|
1558
1559
|
type: Directive,
|
1559
1560
|
args: [{
|
1560
1561
|
selector: '[skyId]',
|
@@ -1563,11 +1564,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
1563
1564
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: SkyIdService }]; } });
|
1564
1565
|
|
1565
1566
|
class SkyIdModule {
|
1566
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1567
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
1568
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
1567
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
1568
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyIdModule, declarations: [SkyIdDirective], exports: [SkyIdDirective] }); }
|
1569
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdModule }); }
|
1569
1570
|
}
|
1570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1571
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyIdModule, decorators: [{
|
1571
1572
|
type: NgModule,
|
1572
1573
|
args: [{
|
1573
1574
|
declarations: [SkyIdDirective],
|
@@ -1587,10 +1588,10 @@ class SkyLayoutHostService {
|
|
1587
1588
|
setHostLayoutForChild(layout) {
|
1588
1589
|
this.#hostLayoutForChild.next(layout);
|
1589
1590
|
}
|
1590
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1591
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLayoutHostService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1592
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLayoutHostService }); }
|
1592
1593
|
}
|
1593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLayoutHostService, decorators: [{
|
1594
1595
|
type: Injectable
|
1595
1596
|
}] });
|
1596
1597
|
|
@@ -1660,10 +1661,10 @@ class SkyLiveAnnouncerService {
|
|
1660
1661
|
this.#document.body.appendChild(liveEl);
|
1661
1662
|
return liveEl;
|
1662
1663
|
}
|
1663
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1664
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1664
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLiveAnnouncerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1665
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLiveAnnouncerService, providedIn: 'root' }); }
|
1665
1666
|
}
|
1666
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1667
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLiveAnnouncerService, decorators: [{
|
1667
1668
|
type: Injectable,
|
1668
1669
|
args: [{
|
1669
1670
|
providedIn: 'root',
|
@@ -1675,11 +1676,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
1675
1676
|
* The `SkyLogModule` can be removed from your project.
|
1676
1677
|
*/
|
1677
1678
|
class SkyLogModule {
|
1678
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1679
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
1680
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
1679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
1680
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyLogModule }); }
|
1681
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLogModule }); }
|
1681
1682
|
}
|
1682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLogModule, decorators: [{
|
1683
1684
|
type: NgModule,
|
1684
1685
|
args: [{}]
|
1685
1686
|
}] });
|
@@ -1818,10 +1819,10 @@ class SkyLogService {
|
|
1818
1819
|
}
|
1819
1820
|
return key;
|
1820
1821
|
}
|
1821
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1822
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1822
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLogService, deps: [{ token: SkyAppFormat }, { token: SKY_LOG_LEVEL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1823
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLogService, providedIn: 'root' }); }
|
1823
1824
|
}
|
1824
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyLogService, decorators: [{
|
1825
1826
|
type: Injectable,
|
1826
1827
|
args: [{
|
1827
1828
|
providedIn: 'root',
|
@@ -1838,11 +1839,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
1838
1839
|
* The `SkyMediaQueryModule` can be removed from your project.
|
1839
1840
|
*/
|
1840
1841
|
class SkyMediaQueryModule {
|
1841
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1842
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
1843
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
1842
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMediaQueryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
1843
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyMediaQueryModule }); }
|
1844
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMediaQueryModule }); }
|
1844
1845
|
}
|
1845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMediaQueryModule, decorators: [{
|
1846
1847
|
type: NgModule,
|
1847
1848
|
args: [{}]
|
1848
1849
|
}] });
|
@@ -1956,10 +1957,10 @@ class SkyMediaQueryService {
|
|
1956
1957
|
this.#currentBreakpoint = breakpoint;
|
1957
1958
|
this.#currentSubject.next(breakpoint);
|
1958
1959
|
}
|
1959
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1960
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
1960
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMediaQueryService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1961
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMediaQueryService, providedIn: 'root' }); }
|
1961
1962
|
}
|
1962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
1963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyMediaQueryService, decorators: [{
|
1963
1964
|
type: Injectable,
|
1964
1965
|
args: [{
|
1965
1966
|
providedIn: 'root',
|
@@ -1991,9 +1992,9 @@ class SkyCoreResourcesProvider {
|
|
1991
1992
|
* Import into any component library module that needs to use resource strings.
|
1992
1993
|
*/
|
1993
1994
|
class SkyCoreResourcesModule {
|
1994
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
1995
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
1996
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
1995
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreResourcesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
1996
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreResourcesModule, exports: [SkyI18nModule] }); }
|
1997
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreResourcesModule, providers: [
|
1997
1998
|
{
|
1998
1999
|
provide: SKY_LIB_RESOURCES_PROVIDERS,
|
1999
2000
|
useClass: SkyCoreResourcesProvider,
|
@@ -2001,7 +2002,7 @@ class SkyCoreResourcesModule {
|
|
2001
2002
|
},
|
2002
2003
|
], imports: [SkyI18nModule] }); }
|
2003
2004
|
}
|
2004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyCoreResourcesModule, decorators: [{
|
2005
2006
|
type: NgModule,
|
2006
2007
|
args: [{
|
2007
2008
|
exports: [SkyI18nModule],
|
@@ -2300,10 +2301,10 @@ class SkyNumericService {
|
|
2300
2301
|
// TODO: Need to implement the async `getString` method in a breaking change.
|
2301
2302
|
return this.#resourcesSvc.getStringForLocale({ locale: 'en_US' }, key);
|
2302
2303
|
}
|
2303
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2304
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
2304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericService, deps: [{ token: i1.SkyLibResourcesService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
2305
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericService, providedIn: 'root' }); }
|
2305
2306
|
}
|
2306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericService, decorators: [{
|
2307
2308
|
type: Injectable,
|
2308
2309
|
args: [{
|
2309
2310
|
providedIn: 'root',
|
@@ -2376,10 +2377,10 @@ class SkyNumericPipe {
|
|
2376
2377
|
this.#formattedValue = this.#numericSvc.formatNumber(value, options);
|
2377
2378
|
return this.#formattedValue;
|
2378
2379
|
}
|
2379
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2380
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
2380
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericPipe, deps: [{ token: i1.SkyAppLocaleProvider }, { token: SkyNumericService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
2381
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericPipe, name: "skyNumeric", pure: false }); }
|
2381
2382
|
}
|
2382
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericPipe, decorators: [{
|
2383
2384
|
type: Pipe,
|
2384
2385
|
args: [{
|
2385
2386
|
name: 'skyNumeric',
|
@@ -2388,11 +2389,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
2388
2389
|
}], ctorParameters: function () { return [{ type: i1.SkyAppLocaleProvider }, { type: SkyNumericService }, { type: i0.ChangeDetectorRef }]; } });
|
2389
2390
|
|
2390
2391
|
class SkyNumericModule {
|
2391
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2392
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
2393
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
2392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
2393
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericModule, declarations: [SkyNumericPipe], imports: [SkyCoreResourcesModule], exports: [SkyNumericPipe] }); }
|
2394
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericModule, providers: [SkyNumericPipe], imports: [SkyCoreResourcesModule] }); }
|
2394
2395
|
}
|
2395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyNumericModule, decorators: [{
|
2396
2397
|
type: NgModule,
|
2397
2398
|
args: [{
|
2398
2399
|
declarations: [SkyNumericPipe],
|
@@ -2467,11 +2468,11 @@ class SkyOverlayInstance {
|
|
2467
2468
|
* @deprecated The `SkyOverlayModule` is no longer needed and can be removed from your application.
|
2468
2469
|
*/
|
2469
2470
|
class SkyOverlayModule {
|
2470
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2471
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
2472
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
2471
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
2472
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayModule }); }
|
2473
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayModule }); }
|
2473
2474
|
}
|
2474
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayModule, decorators: [{
|
2475
2476
|
type: NgModule,
|
2476
2477
|
args: [{}]
|
2477
2478
|
}] });
|
@@ -2508,10 +2509,10 @@ class SkyOverlayAdapterService {
|
|
2508
2509
|
this.#renderer.removeChild(document.head, this.#styleElement);
|
2509
2510
|
}
|
2510
2511
|
}
|
2511
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2512
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
2512
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayAdapterService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
2513
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayAdapterService, providedIn: 'root' }); }
|
2513
2514
|
}
|
2514
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayAdapterService, decorators: [{
|
2515
2516
|
type: Injectable,
|
2516
2517
|
args: [{
|
2517
2518
|
providedIn: 'root',
|
@@ -2685,10 +2686,10 @@ class SkyOverlayComponent {
|
|
2685
2686
|
this.#routerSubscription = undefined;
|
2686
2687
|
}
|
2687
2688
|
}
|
2688
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2689
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
2689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
2690
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: SkyOverlayComponent, isStandalone: true, selector: "sky-overlay", host: { properties: { "id": "this.id" } }, 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]=\"'sky-overlay-position-' + position + ' ' + wrapperClass\"\n [style.z-index]=\"zIndex\"\n [style.clip-path]=\"clipPath$ | async\"\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{inset:0;width:100%;height:100%;display:flex;pointer-events:auto}.sky-overlay-position-absolute{position:absolute}.sky-overlay-position-fixed{position:fixed}.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);inset: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"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
2690
2691
|
}
|
2691
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayComponent, decorators: [{
|
2692
2693
|
type: Component,
|
2693
2694
|
args: [{ standalone: true, selector: 'sky-overlay', changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule], template: "<div\n [class]=\"'sky-overlay-position-' + position + ' ' + wrapperClass\"\n [style.z-index]=\"zIndex\"\n [style.clip-path]=\"clipPath$ | async\"\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{inset:0;width:100%;height:100%;display:flex;pointer-events:auto}.sky-overlay-position-absolute{position:absolute}.sky-overlay-position-fixed{position:fixed}.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);inset: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"] }]
|
2694
2695
|
}], ctorParameters: function () { return []; }, propDecorators: { id: [{
|
@@ -2810,10 +2811,10 @@ class SkyOverlayService {
|
|
2810
2811
|
}
|
2811
2812
|
}
|
2812
2813
|
}
|
2813
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2814
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
2814
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayService, deps: [{ token: SkyDynamicComponentService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
2815
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayService, providedIn: 'root' }); }
|
2815
2816
|
}
|
2816
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2817
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayService, decorators: [{
|
2817
2818
|
type: Injectable,
|
2818
2819
|
args: [{
|
2819
2820
|
providedIn: 'root',
|
@@ -2829,10 +2830,10 @@ class SkyOverlayLegacyService extends SkyOverlayService {
|
|
2829
2830
|
constructor(dynamicComponentSvc) {
|
2830
2831
|
super(dynamicComponentSvc);
|
2831
2832
|
}
|
2832
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2833
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
2833
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayLegacyService, deps: [{ token: SkyDynamicComponentLegacyService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
2834
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayLegacyService, providedIn: 'any' }); }
|
2834
2835
|
}
|
2835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyOverlayLegacyService, decorators: [{
|
2836
2837
|
type: Injectable,
|
2837
2838
|
args: [{
|
2838
2839
|
providedIn: 'any',
|
@@ -2877,10 +2878,10 @@ class SkyPercentPipe {
|
|
2877
2878
|
? SkyNumberFormatUtility.formatNumber(locale, this.#value, SkyIntlNumberFormatStyle.Percent, format)
|
2878
2879
|
: '';
|
2879
2880
|
}
|
2880
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2881
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.
|
2881
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyPercentPipe, deps: [{ token: i1.SkyAppLocaleProvider }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
2882
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyPercentPipe, name: "skyPercent", pure: false }); }
|
2882
2883
|
}
|
2883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2884
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyPercentPipe, decorators: [{
|
2884
2885
|
type: Pipe,
|
2885
2886
|
args: [{
|
2886
2887
|
name: 'skyPercent',
|
@@ -2889,11 +2890,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
2889
2890
|
}], ctorParameters: function () { return [{ type: i1.SkyAppLocaleProvider }]; } });
|
2890
2891
|
|
2891
2892
|
class SkyPercentPipeModule {
|
2892
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2893
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
2894
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
2893
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyPercentPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
2894
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyPercentPipeModule, declarations: [SkyPercentPipe], imports: [CommonModule, SkyCoreResourcesModule], exports: [SkyPercentPipe] }); }
|
2895
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyPercentPipeModule, providers: [SkyPercentPipe], imports: [CommonModule, SkyCoreResourcesModule] }); }
|
2895
2896
|
}
|
2896
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyPercentPipeModule, decorators: [{
|
2897
2898
|
type: NgModule,
|
2898
2899
|
args: [{
|
2899
2900
|
declarations: [SkyPercentPipe],
|
@@ -2907,16 +2908,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
2907
2908
|
* Service to create rxjs observables for changes to the content box dimensions of elements.
|
2908
2909
|
*/
|
2909
2910
|
class SkyResizeObserverService {
|
2910
|
-
#
|
2911
|
+
#next = new Map();
|
2912
|
+
#resizeObserver = new ResizeObserver((entries) => {
|
2913
|
+
entries.forEach((entry) => this.#callback(entry));
|
2914
|
+
});
|
2911
2915
|
#tracking = [];
|
2912
|
-
#
|
2913
|
-
|
2914
|
-
this.#zone = zone;
|
2915
|
-
this.#resizeObserver = new ResizeObserver((entries) => {
|
2916
|
-
entries.forEach((entry) => this.#callback(entry));
|
2917
|
-
});
|
2918
|
-
}
|
2916
|
+
#window = inject(SkyAppWindowRef);
|
2917
|
+
#zone = inject(NgZone);
|
2919
2918
|
ngOnDestroy() {
|
2919
|
+
this.#next.forEach((value) => this.#window.nativeWindow.cancelAnimationFrame(value));
|
2920
|
+
this.#tracking.forEach((value) => {
|
2921
|
+
value.subject.complete();
|
2922
|
+
this.#resizeObserver.unobserve(value.element);
|
2923
|
+
});
|
2920
2924
|
this.#resizeObserver.disconnect();
|
2921
2925
|
}
|
2922
2926
|
/**
|
@@ -2942,6 +2946,10 @@ class SkyResizeObserverService {
|
|
2942
2946
|
});
|
2943
2947
|
if (checkTracking === -1) {
|
2944
2948
|
this.#resizeObserver.unobserve(element.nativeElement);
|
2949
|
+
const deleteTracking = this.#tracking.findIndex((value) => value.subject === subject);
|
2950
|
+
if (deleteTracking > -1) {
|
2951
|
+
this.#tracking.splice(deleteTracking, 1);
|
2952
|
+
}
|
2945
2953
|
}
|
2946
2954
|
}));
|
2947
2955
|
const tracking = {
|
@@ -2954,27 +2962,32 @@ class SkyResizeObserverService {
|
|
2954
2962
|
}
|
2955
2963
|
#callback(entry) {
|
2956
2964
|
this.#tracking
|
2957
|
-
.filter((value) => !
|
2965
|
+
.filter((value) => !value.subject.closed)
|
2958
2966
|
.forEach((value) => {
|
2959
2967
|
/* istanbul ignore else */
|
2960
2968
|
if (value.element === entry.target) {
|
2961
2969
|
// Execute the callback within NgZone because Angular does not "monkey patch"
|
2962
2970
|
// ResizeObserver like it does for other features in the DOM.
|
2963
|
-
this.#
|
2964
|
-
|
2965
|
-
}
|
2971
|
+
if (this.#next.has(value.subject)) {
|
2972
|
+
this.#window.nativeWindow.cancelAnimationFrame(this.#next.get(value.subject));
|
2973
|
+
}
|
2974
|
+
this.#next.set(value.subject, this.#window.nativeWindow.requestAnimationFrame(() => {
|
2975
|
+
this.#zone.run(() => {
|
2976
|
+
value.subject.next(entry);
|
2977
|
+
});
|
2978
|
+
}));
|
2966
2979
|
}
|
2967
2980
|
});
|
2968
2981
|
}
|
2969
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
2970
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
2982
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
2983
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyResizeObserverService, providedIn: 'root' }); }
|
2971
2984
|
}
|
2972
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
2985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyResizeObserverService, decorators: [{
|
2973
2986
|
type: Injectable,
|
2974
2987
|
args: [{
|
2975
2988
|
providedIn: 'root',
|
2976
2989
|
}]
|
2977
|
-
}]
|
2990
|
+
}] });
|
2978
2991
|
|
2979
2992
|
const DEFAULT_BREAKPOINT = SkyMediaBreakpoints.md;
|
2980
2993
|
/**
|
@@ -3008,11 +3021,8 @@ class SkyResizeObserverMediaQueryService {
|
|
3008
3021
|
#currentBreakpoint = DEFAULT_BREAKPOINT;
|
3009
3022
|
#currentBreakpointObs = new ReplaySubject(1);
|
3010
3023
|
#ngUnsubscribe = new Subject();
|
3011
|
-
#resizeObserverSvc;
|
3024
|
+
#resizeObserverSvc = inject(SkyResizeObserverService);
|
3012
3025
|
#target;
|
3013
|
-
constructor(resizeObserverSvc) {
|
3014
|
-
this.#resizeObserverSvc = resizeObserverSvc;
|
3015
|
-
}
|
3016
3026
|
ngOnDestroy() {
|
3017
3027
|
this.unobserve();
|
3018
3028
|
this.#target = undefined;
|
@@ -3104,12 +3114,76 @@ class SkyResizeObserverMediaQueryService {
|
|
3104
3114
|
this.#updateBreakpoint(breakpoint, updateResponsiveClasses);
|
3105
3115
|
}
|
3106
3116
|
}
|
3107
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3108
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
3117
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyResizeObserverMediaQueryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
3118
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyResizeObserverMediaQueryService }); }
|
3109
3119
|
}
|
3110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3120
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyResizeObserverMediaQueryService, decorators: [{
|
3111
3121
|
type: Injectable
|
3112
|
-
}]
|
3122
|
+
}] });
|
3123
|
+
|
3124
|
+
const SCREEN_READER_LABELS_CONTAINER_ID = 'sky-screen-reader-labels-container';
|
3125
|
+
/**
|
3126
|
+
* Adds the element to a screen reader only section of the body.
|
3127
|
+
* This prevents components' DOM from including text only intended for screen readers.
|
3128
|
+
*
|
3129
|
+
* @internal
|
3130
|
+
*/
|
3131
|
+
class SkyScreenReaderLabelDirective {
|
3132
|
+
ngOnDestroy() {
|
3133
|
+
this.#removeLabelEl();
|
3134
|
+
}
|
3135
|
+
/**
|
3136
|
+
* Indicates if the label should be created in the DOM.
|
3137
|
+
* @default false
|
3138
|
+
*/
|
3139
|
+
set createLabel(value) {
|
3140
|
+
this.#_createLabel = value ?? false;
|
3141
|
+
this.#updateLabelEl();
|
3142
|
+
}
|
3143
|
+
get createLabel() {
|
3144
|
+
return this.#_createLabel;
|
3145
|
+
}
|
3146
|
+
#elementRef = inject(ElementRef);
|
3147
|
+
#renderer = inject(Renderer2);
|
3148
|
+
#_createLabel = false;
|
3149
|
+
#updateLabelEl() {
|
3150
|
+
if (this.createLabel) {
|
3151
|
+
const containerEl = this.#getContainerEl() || this.#createContainerEl();
|
3152
|
+
this.#renderer.appendChild(containerEl, this.#elementRef.nativeElement);
|
3153
|
+
}
|
3154
|
+
else {
|
3155
|
+
this.#removeLabelEl();
|
3156
|
+
}
|
3157
|
+
}
|
3158
|
+
#getContainerEl() {
|
3159
|
+
return document.getElementById(SCREEN_READER_LABELS_CONTAINER_ID);
|
3160
|
+
}
|
3161
|
+
#createContainerEl() {
|
3162
|
+
const el = document.createElement('div');
|
3163
|
+
el.id = SCREEN_READER_LABELS_CONTAINER_ID;
|
3164
|
+
el.style.display = 'none';
|
3165
|
+
this.#renderer.appendChild(document.body, el);
|
3166
|
+
return el;
|
3167
|
+
}
|
3168
|
+
#removeLabelEl() {
|
3169
|
+
const containerEl = this.#getContainerEl();
|
3170
|
+
this.#elementRef.nativeElement.remove();
|
3171
|
+
if (containerEl && containerEl.childNodes.length === 0) {
|
3172
|
+
containerEl.remove();
|
3173
|
+
}
|
3174
|
+
}
|
3175
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyScreenReaderLabelDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
3176
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.9", type: SkyScreenReaderLabelDirective, isStandalone: true, selector: "[skyScreenReaderLabel]", inputs: { createLabel: "createLabel" }, ngImport: i0 }); }
|
3177
|
+
}
|
3178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyScreenReaderLabelDirective, decorators: [{
|
3179
|
+
type: Directive,
|
3180
|
+
args: [{
|
3181
|
+
selector: '[skyScreenReaderLabel]',
|
3182
|
+
standalone: true,
|
3183
|
+
}]
|
3184
|
+
}], propDecorators: { createLabel: [{
|
3185
|
+
type: Input
|
3186
|
+
}] } });
|
3113
3187
|
|
3114
3188
|
function notifySubscribers(subscribers, item) {
|
3115
3189
|
for (const subscriber of subscribers) {
|
@@ -3315,10 +3389,10 @@ class SkyScrollableHostService {
|
|
3315
3389
|
height: docElem.clientHeight,
|
3316
3390
|
};
|
3317
3391
|
}
|
3318
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3319
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
3392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyScrollableHostService, deps: [{ token: SkyMutationObserverService }, { token: SkyAppWindowRef }, { token: SkyResizeObserverService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
3393
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyScrollableHostService, providedIn: 'root' }); }
|
3320
3394
|
}
|
3321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyScrollableHostService, decorators: [{
|
3322
3396
|
type: Injectable,
|
3323
3397
|
args: [{
|
3324
3398
|
providedIn: 'root',
|
@@ -3345,10 +3419,10 @@ class SkyAppTitleService {
|
|
3345
3419
|
this.#title.setTitle(args.titleParts.join(' - '));
|
3346
3420
|
}
|
3347
3421
|
}
|
3348
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3349
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
3422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppTitleService, deps: [{ token: i1$2.Title }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
3423
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppTitleService, providedIn: 'root' }); }
|
3350
3424
|
}
|
3351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyAppTitleService, decorators: [{
|
3352
3426
|
type: Injectable,
|
3353
3427
|
args: [{
|
3354
3428
|
providedIn: 'root',
|
@@ -3406,10 +3480,10 @@ class SkyTrimDirective {
|
|
3406
3480
|
}
|
3407
3481
|
this.#observe();
|
3408
3482
|
}
|
3409
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3410
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
3483
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyTrimDirective, deps: [{ token: i0.ElementRef }, { token: SkyMutationObserverService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
3484
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.9", type: SkyTrimDirective, selector: "[skyTrim]", ngImport: i0 }); }
|
3411
3485
|
}
|
3412
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyTrimDirective, decorators: [{
|
3413
3487
|
type: Directive,
|
3414
3488
|
args: [{
|
3415
3489
|
selector: '[skyTrim]',
|
@@ -3417,11 +3491,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
3417
3491
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: SkyMutationObserverService }]; } });
|
3418
3492
|
|
3419
3493
|
class SkyTrimModule {
|
3420
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3421
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
3422
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
3494
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyTrimModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
3495
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyTrimModule, declarations: [SkyTrimDirective], exports: [SkyTrimDirective] }); }
|
3496
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyTrimModule }); }
|
3423
3497
|
}
|
3424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyTrimModule, decorators: [{
|
3425
3499
|
type: NgModule,
|
3426
3500
|
args: [{
|
3427
3501
|
declarations: [SkyTrimDirective],
|
@@ -3437,10 +3511,10 @@ class SkyUIConfigService {
|
|
3437
3511
|
setConfig(key, value) {
|
3438
3512
|
return of({});
|
3439
3513
|
}
|
3440
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3441
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
3514
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyUIConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
3515
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyUIConfigService, providedIn: 'root' }); }
|
3442
3516
|
}
|
3443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3517
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyUIConfigService, decorators: [{
|
3444
3518
|
type: Injectable,
|
3445
3519
|
args: [{
|
3446
3520
|
providedIn: 'root',
|
@@ -3448,10 +3522,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
3448
3522
|
}] });
|
3449
3523
|
|
3450
3524
|
class SkyViewkeeperHostOptions {
|
3451
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3452
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
3525
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperHostOptions, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
3526
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperHostOptions }); }
|
3453
3527
|
}
|
3454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperHostOptions, decorators: [{
|
3455
3529
|
type: Injectable
|
3456
3530
|
}] });
|
3457
3531
|
|
@@ -3761,10 +3835,10 @@ class SkyViewkeeperService {
|
|
3761
3835
|
destroy(vk) {
|
3762
3836
|
vk.destroy();
|
3763
3837
|
}
|
3764
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3765
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
3838
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperService, deps: [{ token: SkyViewkeeperHostOptions, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
3839
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperService, providedIn: 'root' }); }
|
3766
3840
|
}
|
3767
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperService, decorators: [{
|
3768
3842
|
type: Injectable,
|
3769
3843
|
args: [{
|
3770
3844
|
providedIn: 'root',
|
@@ -3883,10 +3957,10 @@ class SkyViewkeeperDirective {
|
|
3883
3957
|
this.#currentViewkeeperEls = viewkeeperEls;
|
3884
3958
|
}
|
3885
3959
|
}
|
3886
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3887
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
3960
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperDirective, deps: [{ token: i0.ElementRef }, { token: SkyMutationObserverService }, { token: SkyViewkeeperService }, { token: SkyScrollableHostService, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
3961
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.9", type: SkyViewkeeperDirective, selector: "[skyViewkeeper]", inputs: { skyViewkeeper: "skyViewkeeper" }, ngImport: i0 }); }
|
3888
3962
|
}
|
3889
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperDirective, decorators: [{
|
3890
3964
|
type: Directive,
|
3891
3965
|
args: [{
|
3892
3966
|
selector: '[skyViewkeeper]',
|
@@ -3898,11 +3972,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
|
|
3898
3972
|
}] } });
|
3899
3973
|
|
3900
3974
|
class SkyViewkeeperModule {
|
3901
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
3902
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
3903
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
3975
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
3976
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperModule, declarations: [SkyViewkeeperDirective], exports: [SkyViewkeeperDirective] }); }
|
3977
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperModule }); }
|
3904
3978
|
}
|
3905
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
3979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SkyViewkeeperModule, decorators: [{
|
3906
3980
|
type: NgModule,
|
3907
3981
|
args: [{
|
3908
3982
|
declarations: [SkyViewkeeperDirective],
|
@@ -3927,11 +4001,11 @@ class Version {
|
|
3927
4001
|
/**
|
3928
4002
|
* Represents the version of @skyux/core.
|
3929
4003
|
*/
|
3930
|
-
const VERSION = new Version('9.
|
4004
|
+
const VERSION = new Version('9.7.0');
|
3931
4005
|
|
3932
4006
|
/**
|
3933
4007
|
* Generated bundle index. Do not edit.
|
3934
4008
|
*/
|
3935
4009
|
|
3936
|
-
export { NumericOptions, SKY_LOG_LEVEL, SKY_STACKING_CONTEXT, SkyAffixAutoFitContext, SkyAffixModule, SkyAffixService, SkyAffixer, SkyAppFormat, SkyAppTitleService, SkyAppWindowRef, SkyContentInfoProvider, SkyCoreAdapterModule, SkyCoreAdapterService, SkyDefaultInputProvider, SkyDockItem, SkyDockLocation, SkyDockModule, SkyDockService, SkyDynamicComponentLegacyService, SkyDynamicComponentLocation, SkyDynamicComponentModule, SkyDynamicComponentService, SkyIdModule, SkyIdService, SkyLayoutHostService, SkyLiveAnnouncerService, SkyLogModule, SkyLogService, SkyMediaBreakpoints, SkyMediaQueryModule, SkyMediaQueryService, SkyMutationObserverService, SkyNumericModule, SkyNumericPipe, SkyNumericService, SkyOverlayInstance, SkyOverlayLegacyService, SkyOverlayModule, SkyOverlayService, SkyPercentPipe, SkyPercentPipeModule, SkyResizeObserverMediaQueryService, SkyResizeObserverService, SkyScrollableHostService, SkyTrimModule, SkyUIConfigService, SkyViewkeeperHostOptions, SkyViewkeeperModule, SkyViewkeeperService, VERSION, SkyAffixDirective as λ1, SkyIdDirective as λ2, SkyViewkeeperDirective as λ3, SkyTrimDirective as λ4 };
|
4010
|
+
export { NumericOptions, SKY_LOG_LEVEL, SKY_STACKING_CONTEXT, SkyAffixAutoFitContext, SkyAffixModule, SkyAffixService, SkyAffixer, SkyAppFormat, SkyAppTitleService, SkyAppWindowRef, SkyContentInfoProvider, SkyCoreAdapterModule, SkyCoreAdapterService, SkyDefaultInputProvider, SkyDockItem, SkyDockLocation, SkyDockModule, SkyDockService, SkyDynamicComponentLegacyService, SkyDynamicComponentLocation, SkyDynamicComponentModule, SkyDynamicComponentService, SkyIdModule, SkyIdService, SkyLayoutHostService, SkyLiveAnnouncerService, SkyLogModule, SkyLogService, SkyMediaBreakpoints, SkyMediaQueryModule, SkyMediaQueryService, SkyMutationObserverService, SkyNumericModule, SkyNumericPipe, SkyNumericService, SkyOverlayInstance, SkyOverlayLegacyService, SkyOverlayModule, SkyOverlayService, SkyPercentPipe, SkyPercentPipeModule, SkyResizeObserverMediaQueryService, SkyResizeObserverService, SkyScreenReaderLabelDirective, SkyScrollableHostService, SkyTrimModule, SkyUIConfigService, SkyViewkeeperHostOptions, SkyViewkeeperModule, SkyViewkeeperService, VERSION, SkyAffixDirective as λ1, SkyIdDirective as λ2, SkyViewkeeperDirective as λ3, SkyTrimDirective as λ4 };
|
3937
4011
|
//# sourceMappingURL=skyux-core.mjs.map
|