@skyux/indicators 8.0.0-alpha.20 → 8.0.0-alpha.21
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 +741 -637
- package/esm2020/lib/modules/shared/sky-indicators-resources.module.mjs +5 -1
- package/esm2020/lib/modules/wait/wait-page.component.mjs +1 -1
- package/esm2020/lib/modules/wait/wait.component.mjs +52 -14
- package/fesm2015/skyux-indicators.mjs +56 -15
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +56 -15
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/wait/wait.component.d.ts +17 -8
- package/package.json +5 -5
|
@@ -8,7 +8,7 @@ import * as i2 from '@skyux/theme';
|
|
|
8
8
|
import { SkyThemeIconManifestService, SkyThemeService, SkyThemeModule } from '@skyux/theme';
|
|
9
9
|
import { __classPrivateFieldGet, __classPrivateFieldSet } from 'tslib';
|
|
10
10
|
import * as i2$1 from '@skyux/core';
|
|
11
|
-
import { SkyLogService, SkyTrimModule, SkyMutationObserverService, SkyAppWindowRef, SkyDynamicComponentService, SkyDynamicComponentLocation } from '@skyux/core';
|
|
11
|
+
import { SkyLogService, SkyTrimModule, SkyMutationObserverService, SkyLiveAnnouncerService, SkyAppWindowRef, SkyDynamicComponentService, SkyDynamicComponentLocation } from '@skyux/core';
|
|
12
12
|
import { trigger, transition, style, animate } from '@angular/animations';
|
|
13
13
|
import { Subject, BehaviorSubject, defer } from 'rxjs';
|
|
14
14
|
import { takeUntil, take, finalize } from 'rxjs/operators';
|
|
@@ -210,6 +210,10 @@ const RESOURCES = {
|
|
|
210
210
|
skyux_wait_page_blocking_aria_alt_text: {
|
|
211
211
|
message: 'Page loading. Please wait.',
|
|
212
212
|
},
|
|
213
|
+
skyux_wait_screen_reader_completed_text: { message: 'Loading complete.' },
|
|
214
|
+
skyux_wait_page_screen_reader_completed_text: {
|
|
215
|
+
message: 'Page loading complete.',
|
|
216
|
+
},
|
|
213
217
|
},
|
|
214
218
|
};
|
|
215
219
|
class SkyIndicatorsResourcesProvider {
|
|
@@ -1799,16 +1803,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImpor
|
|
|
1799
1803
|
type: Injectable
|
|
1800
1804
|
}], ctorParameters: function () { return [{ type: i0.RendererFactory2 }]; } });
|
|
1801
1805
|
|
|
1802
|
-
var _SkyWaitComponent_instances, _SkyWaitComponent_customAriaLabel, _SkyWaitComponent_id, _SkyWaitComponent_elRef, _SkyWaitComponent_adapterService, _SkyWaitComponent_resourceSvc, _SkyWaitComponent_ngUnsubscribe, _SkyWaitComponent__isFullPage, _SkyWaitComponent__isNonBlocking, _SkyWaitComponent__isWaiting, _SkyWaitComponent_publishAriaLabel;
|
|
1806
|
+
var _SkyWaitComponent_instances, _SkyWaitComponent_customAriaLabel, _SkyWaitComponent_customScreenReaderCompletedText, _SkyWaitComponent_id, _SkyWaitComponent_elRef, _SkyWaitComponent_adapterService, _SkyWaitComponent_liveAnnouncer, _SkyWaitComponent_resourceSvc, _SkyWaitComponent_ngUnsubscribe, _SkyWaitComponent__isFullPage, _SkyWaitComponent__isNonBlocking, _SkyWaitComponent__isWaiting, _SkyWaitComponent_publishAriaLabel, _SkyWaitComponent_publishScreenReaderCompletedText;
|
|
1803
1807
|
let nextId = 0;
|
|
1804
1808
|
class SkyWaitComponent {
|
|
1805
1809
|
constructor() {
|
|
1806
1810
|
_SkyWaitComponent_instances.add(this);
|
|
1807
1811
|
this.ariaLabelStream = new BehaviorSubject('');
|
|
1812
|
+
this.ariaLiveText = '';
|
|
1813
|
+
this.screenReaderCompletedTextStream = new BehaviorSubject('');
|
|
1808
1814
|
_SkyWaitComponent_customAriaLabel.set(this, void 0);
|
|
1815
|
+
_SkyWaitComponent_customScreenReaderCompletedText.set(this, void 0);
|
|
1809
1816
|
_SkyWaitComponent_id.set(this, `sky-wait-${++nextId}`);
|
|
1810
1817
|
_SkyWaitComponent_elRef.set(this, inject(ElementRef));
|
|
1811
1818
|
_SkyWaitComponent_adapterService.set(this, inject(SkyWaitAdapterService));
|
|
1819
|
+
_SkyWaitComponent_liveAnnouncer.set(this, inject(SkyLiveAnnouncerService));
|
|
1812
1820
|
_SkyWaitComponent_resourceSvc.set(this, inject(SkyLibResourcesService));
|
|
1813
1821
|
_SkyWaitComponent_ngUnsubscribe.set(this, new Subject());
|
|
1814
1822
|
_SkyWaitComponent__isFullPage.set(this, void 0);
|
|
@@ -1816,13 +1824,12 @@ class SkyWaitComponent {
|
|
|
1816
1824
|
_SkyWaitComponent__isWaiting.set(this, void 0);
|
|
1817
1825
|
}
|
|
1818
1826
|
/**
|
|
1819
|
-
* The ARIA label for the wait icon
|
|
1820
|
-
* This sets the icon's `aria-label` attribute
|
|
1821
|
-
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
1822
|
-
* The default value varies based on whether the wait is for an element or a page
|
|
1823
|
-
*
|
|
1824
|
-
*
|
|
1825
|
-
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
1827
|
+
* The ARIA label for the wait icon.
|
|
1828
|
+
* This sets the icon's `aria-label` attribute to provide a text equivalent for screen readers
|
|
1829
|
+
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility) when an element or page loads and when users tab to a wait icon.
|
|
1830
|
+
* The default value varies based on whether the wait is for an element or a page and whether it is a blocking wait. For example, the default for a page-level blocking wait is "Page loading. Please wait."
|
|
1831
|
+
* For element-level waits, we recommend that consumers overwrite the default to describe the specific element.
|
|
1832
|
+
* "For more information, see the Design tab and the [WAI-ARIA `aria-label` definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
1826
1833
|
*/
|
|
1827
1834
|
set ariaLabel(value) {
|
|
1828
1835
|
__classPrivateFieldSet(this, _SkyWaitComponent_customAriaLabel, value, "f");
|
|
@@ -1841,6 +1848,13 @@ class SkyWaitComponent {
|
|
|
1841
1848
|
}
|
|
1842
1849
|
}
|
|
1843
1850
|
__classPrivateFieldGet(this, _SkyWaitComponent_adapterService, "f").setBusyState(__classPrivateFieldGet(this, _SkyWaitComponent_elRef, "f"), !!this.isFullPage, !!value, !!this.isNonBlocking, __classPrivateFieldGet(this, _SkyWaitComponent_id, "f"));
|
|
1851
|
+
if (value) {
|
|
1852
|
+
__classPrivateFieldGet(this, _SkyWaitComponent_liveAnnouncer, "f").announce(this.ariaLabelStream.getValue());
|
|
1853
|
+
}
|
|
1854
|
+
else if (__classPrivateFieldGet(this, _SkyWaitComponent__isWaiting, "f")) {
|
|
1855
|
+
// NOTE: This should only happen if the wait was previously waiting and no longer is waiting.
|
|
1856
|
+
__classPrivateFieldGet(this, _SkyWaitComponent_liveAnnouncer, "f").announce(this.screenReaderCompletedTextStream.getValue());
|
|
1857
|
+
}
|
|
1844
1858
|
__classPrivateFieldSet(this, _SkyWaitComponent__isWaiting, value, "f");
|
|
1845
1859
|
}
|
|
1846
1860
|
get isWaiting() {
|
|
@@ -1863,6 +1877,7 @@ class SkyWaitComponent {
|
|
|
1863
1877
|
}
|
|
1864
1878
|
__classPrivateFieldSet(this, _SkyWaitComponent__isFullPage, value, "f");
|
|
1865
1879
|
__classPrivateFieldGet(this, _SkyWaitComponent_instances, "m", _SkyWaitComponent_publishAriaLabel).call(this);
|
|
1880
|
+
__classPrivateFieldGet(this, _SkyWaitComponent_instances, "m", _SkyWaitComponent_publishScreenReaderCompletedText).call(this);
|
|
1866
1881
|
}
|
|
1867
1882
|
get isFullPage() {
|
|
1868
1883
|
return __classPrivateFieldGet(this, _SkyWaitComponent__isFullPage, "f");
|
|
@@ -1879,21 +1894,31 @@ class SkyWaitComponent {
|
|
|
1879
1894
|
get isNonBlocking() {
|
|
1880
1895
|
return __classPrivateFieldGet(this, _SkyWaitComponent__isNonBlocking, "f");
|
|
1881
1896
|
}
|
|
1897
|
+
/**
|
|
1898
|
+
* Screen reader text [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility) when the wait toggles off.
|
|
1899
|
+
* The default varies based on whether the wait is for an element or a page.
|
|
1900
|
+
* For example, the default for a page-level wait is "Page loading complete."
|
|
1901
|
+
* For element-level waits, we recommend that consumers overwrite the default to describe the specific element.
|
|
1902
|
+
* For more information, see the Design tab and the [WCAG documentation on status messages](https://www.w3.org/WAI/WCAG21/Understanding/status-messages.html).
|
|
1903
|
+
*/
|
|
1904
|
+
set screenReaderCompletedText(value) {
|
|
1905
|
+
__classPrivateFieldSet(this, _SkyWaitComponent_customScreenReaderCompletedText, value, "f");
|
|
1906
|
+
__classPrivateFieldGet(this, _SkyWaitComponent_instances, "m", _SkyWaitComponent_publishScreenReaderCompletedText).call(this);
|
|
1907
|
+
}
|
|
1882
1908
|
ngOnInit() {
|
|
1883
1909
|
__classPrivateFieldGet(this, _SkyWaitComponent_instances, "m", _SkyWaitComponent_publishAriaLabel).call(this);
|
|
1910
|
+
__classPrivateFieldGet(this, _SkyWaitComponent_instances, "m", _SkyWaitComponent_publishScreenReaderCompletedText).call(this);
|
|
1884
1911
|
}
|
|
1885
1912
|
ngOnDestroy() {
|
|
1886
1913
|
__classPrivateFieldGet(this, _SkyWaitComponent_ngUnsubscribe, "f").next();
|
|
1887
1914
|
__classPrivateFieldGet(this, _SkyWaitComponent_ngUnsubscribe, "f").complete();
|
|
1888
1915
|
}
|
|
1889
1916
|
}
|
|
1890
|
-
_SkyWaitComponent_customAriaLabel = new WeakMap(), _SkyWaitComponent_id = new WeakMap(), _SkyWaitComponent_elRef = new WeakMap(), _SkyWaitComponent_adapterService = new WeakMap(), _SkyWaitComponent_resourceSvc = new WeakMap(), _SkyWaitComponent_ngUnsubscribe = new WeakMap(), _SkyWaitComponent__isFullPage = new WeakMap(), _SkyWaitComponent__isNonBlocking = new WeakMap(), _SkyWaitComponent__isWaiting = new WeakMap(), _SkyWaitComponent_instances = new WeakSet(), _SkyWaitComponent_publishAriaLabel = function _SkyWaitComponent_publishAriaLabel() {
|
|
1917
|
+
_SkyWaitComponent_customAriaLabel = new WeakMap(), _SkyWaitComponent_customScreenReaderCompletedText = new WeakMap(), _SkyWaitComponent_id = new WeakMap(), _SkyWaitComponent_elRef = new WeakMap(), _SkyWaitComponent_adapterService = new WeakMap(), _SkyWaitComponent_liveAnnouncer = new WeakMap(), _SkyWaitComponent_resourceSvc = new WeakMap(), _SkyWaitComponent_ngUnsubscribe = new WeakMap(), _SkyWaitComponent__isFullPage = new WeakMap(), _SkyWaitComponent__isNonBlocking = new WeakMap(), _SkyWaitComponent__isWaiting = new WeakMap(), _SkyWaitComponent_instances = new WeakSet(), _SkyWaitComponent_publishAriaLabel = function _SkyWaitComponent_publishAriaLabel() {
|
|
1891
1918
|
if (__classPrivateFieldGet(this, _SkyWaitComponent_customAriaLabel, "f")) {
|
|
1892
1919
|
this.ariaLabelStream.next(__classPrivateFieldGet(this, _SkyWaitComponent_customAriaLabel, "f"));
|
|
1893
|
-
return;
|
|
1894
1920
|
}
|
|
1895
|
-
|
|
1896
|
-
if (__classPrivateFieldGet(this, _SkyWaitComponent_resourceSvc, "f")) {
|
|
1921
|
+
else {
|
|
1897
1922
|
const type = this.isFullPage ? '_page' : '';
|
|
1898
1923
|
const blocking = this.isNonBlocking ? '' : '_blocking';
|
|
1899
1924
|
const key = `skyux_wait${type}${blocking}_aria_alt_text`;
|
|
@@ -1904,9 +1929,23 @@ _SkyWaitComponent_customAriaLabel = new WeakMap(), _SkyWaitComponent_id = new We
|
|
|
1904
1929
|
this.ariaLabelStream.next(value);
|
|
1905
1930
|
});
|
|
1906
1931
|
}
|
|
1932
|
+
}, _SkyWaitComponent_publishScreenReaderCompletedText = function _SkyWaitComponent_publishScreenReaderCompletedText() {
|
|
1933
|
+
if (__classPrivateFieldGet(this, _SkyWaitComponent_customScreenReaderCompletedText, "f")) {
|
|
1934
|
+
this.screenReaderCompletedTextStream.next(__classPrivateFieldGet(this, _SkyWaitComponent_customScreenReaderCompletedText, "f"));
|
|
1935
|
+
}
|
|
1936
|
+
else {
|
|
1937
|
+
const type = this.isFullPage ? '_page' : '';
|
|
1938
|
+
const key = `skyux_wait${type}_screen_reader_completed_text`;
|
|
1939
|
+
__classPrivateFieldGet(this, _SkyWaitComponent_resourceSvc, "f")
|
|
1940
|
+
.getString(key)
|
|
1941
|
+
.pipe(take(1), takeUntil(__classPrivateFieldGet(this, _SkyWaitComponent_ngUnsubscribe, "f")))
|
|
1942
|
+
.subscribe((value) => {
|
|
1943
|
+
this.screenReaderCompletedTextStream.next(value);
|
|
1944
|
+
});
|
|
1945
|
+
}
|
|
1907
1946
|
};
|
|
1908
1947
|
SkyWaitComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SkyWaitComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1909
|
-
SkyWaitComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.1", type: SkyWaitComponent, selector: "sky-wait", inputs: { ariaLabel: "ariaLabel", isWaiting: "isWaiting", isFullPage: "isFullPage", isNonBlocking: "isNonBlocking" }, providers: [SkyWaitAdapterService], ngImport: i0, template: "<div\n class=\"sky-wait-container\"\n [ngClass]=\"{\n 'sky-wait-full-page': isFullPage,\n 'sky-wait-non-blocking': isNonBlocking\n }\"\n>\n <div\n *ngIf=\"isWaiting\"\n class=\"sky-wait-mask\"\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabelStream | async\"\n [ngClass]=\"{\n 'sky-wait-mask-loading-fixed': isFullPage,\n 'sky-wait-mask-loading-non-blocking': isNonBlocking,\n 'sky-wait-mask-loading-blocking': !isNonBlocking\n }\"\n >\n <div class=\"sky-wait\">\n <div class=\"sky-wait-double-bounce1\"></div>\n <div class=\"sky-wait-double-bounce2\"></div>\n </div>\n </div>\n</div>\n", styles: [".sky-wait-mask-loading-blocking{margin:auto;position:absolute;inset:0;background-color:#ffffffb3;z-index:1000}.sky-wait-mask-loading-fixed{position:fixed}.sky-wait{width:50px;height:50px;margin-top:-25px;margin-left:-25px;position:absolute;top:50%;left:50%}.sky-wait-mask-loading-non-blocking{bottom:0}.sky-wait-mask-loading-non-blocking .sky-wait{inset:auto auto 0 0;margin-left:auto;margin-right:auto}.sky-wait-double-bounce1,.sky-wait-double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#72bf44;opacity:.6;position:absolute;top:0;left:0;animation:sk-bounce 2s infinite ease-in-out}.sky-wait-double-bounce2{animation-delay:-1s}@keyframes sk-bounce{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.sky-wait-container.sky-wait-active{position:relative}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
1948
|
+
SkyWaitComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.1", type: SkyWaitComponent, selector: "sky-wait", inputs: { ariaLabel: "ariaLabel", isWaiting: "isWaiting", isFullPage: "isFullPage", isNonBlocking: "isNonBlocking", screenReaderCompletedText: "screenReaderCompletedText" }, providers: [SkyWaitAdapterService], ngImport: i0, template: "<div\n class=\"sky-wait-container\"\n [ngClass]=\"{\n 'sky-wait-full-page': isFullPage,\n 'sky-wait-non-blocking': isNonBlocking\n }\"\n>\n <div\n *ngIf=\"isWaiting\"\n class=\"sky-wait-mask\"\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabelStream | async\"\n [ngClass]=\"{\n 'sky-wait-mask-loading-fixed': isFullPage,\n 'sky-wait-mask-loading-non-blocking': isNonBlocking,\n 'sky-wait-mask-loading-blocking': !isNonBlocking\n }\"\n >\n <div class=\"sky-wait\">\n <div class=\"sky-wait-double-bounce1\"></div>\n <div class=\"sky-wait-double-bounce2\"></div>\n </div>\n </div>\n</div>\n", styles: [".sky-wait-mask-loading-blocking{margin:auto;position:absolute;inset:0;background-color:#ffffffb3;z-index:1000}.sky-wait-mask-loading-fixed{position:fixed}.sky-wait{width:50px;height:50px;margin-top:-25px;margin-left:-25px;position:absolute;top:50%;left:50%}.sky-wait-mask-loading-non-blocking{bottom:0}.sky-wait-mask-loading-non-blocking .sky-wait{inset:auto auto 0 0;margin-left:auto;margin-right:auto}.sky-wait-double-bounce1,.sky-wait-double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#72bf44;opacity:.6;position:absolute;top:0;left:0;animation:sk-bounce 2s infinite ease-in-out}.sky-wait-double-bounce2{animation-delay:-1s}@keyframes sk-bounce{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.sky-wait-container.sky-wait-active{position:relative}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
1910
1949
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SkyWaitComponent, decorators: [{
|
|
1911
1950
|
type: Component,
|
|
1912
1951
|
args: [{ selector: 'sky-wait', providers: [SkyWaitAdapterService], template: "<div\n class=\"sky-wait-container\"\n [ngClass]=\"{\n 'sky-wait-full-page': isFullPage,\n 'sky-wait-non-blocking': isNonBlocking\n }\"\n>\n <div\n *ngIf=\"isWaiting\"\n class=\"sky-wait-mask\"\n role=\"progressbar\"\n [attr.aria-label]=\"ariaLabelStream | async\"\n [ngClass]=\"{\n 'sky-wait-mask-loading-fixed': isFullPage,\n 'sky-wait-mask-loading-non-blocking': isNonBlocking,\n 'sky-wait-mask-loading-blocking': !isNonBlocking\n }\"\n >\n <div class=\"sky-wait\">\n <div class=\"sky-wait-double-bounce1\"></div>\n <div class=\"sky-wait-double-bounce2\"></div>\n </div>\n </div>\n</div>\n", styles: [".sky-wait-mask-loading-blocking{margin:auto;position:absolute;inset:0;background-color:#ffffffb3;z-index:1000}.sky-wait-mask-loading-fixed{position:fixed}.sky-wait{width:50px;height:50px;margin-top:-25px;margin-left:-25px;position:absolute;top:50%;left:50%}.sky-wait-mask-loading-non-blocking{bottom:0}.sky-wait-mask-loading-non-blocking .sky-wait{inset:auto auto 0 0;margin-left:auto;margin-right:auto}.sky-wait-double-bounce1,.sky-wait-double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#72bf44;opacity:.6;position:absolute;top:0;left:0;animation:sk-bounce 2s infinite ease-in-out}.sky-wait-double-bounce2{animation-delay:-1s}@keyframes sk-bounce{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.sky-wait-container.sky-wait-active{position:relative}\n"] }]
|
|
@@ -1918,6 +1957,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImpor
|
|
|
1918
1957
|
type: Input
|
|
1919
1958
|
}], isNonBlocking: [{
|
|
1920
1959
|
type: Input
|
|
1960
|
+
}], screenReaderCompletedText: [{
|
|
1961
|
+
type: Input
|
|
1921
1962
|
}] } });
|
|
1922
1963
|
|
|
1923
1964
|
/**
|
|
@@ -1926,7 +1967,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImpor
|
|
|
1926
1967
|
class SkyWaitPageComponent {
|
|
1927
1968
|
}
|
|
1928
1969
|
SkyWaitPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SkyWaitPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1929
|
-
SkyWaitPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.1", type: SkyWaitPageComponent, selector: "sky-wait-page", inputs: { hasBlockingWait: "hasBlockingWait", hasNonBlockingWait: "hasNonBlockingWait" }, ngImport: i0, template: "<div class=\"sky-wait-page\">\n <sky-wait\n data-sky-id=\"page-wait-non-blocking\"\n [isFullPage]=\"true\"\n [isNonBlocking]=\"true\"\n [isWaiting]=\"hasNonBlockingWait\"\n >\n </sky-wait>\n <sky-wait\n data-sky-id=\"page-wait-blocking\"\n [isFullPage]=\"true\"\n [isWaiting]=\"hasBlockingWait\"\n >\n </sky-wait>\n</div>\n", styles: [".sky-wait-page ::ng-deep .sky-wait-mask-loading-fixed{z-index:2000}\n"], dependencies: [{ kind: "component", type: SkyWaitComponent, selector: "sky-wait", inputs: ["ariaLabel", "isWaiting", "isFullPage", "isNonBlocking"] }] });
|
|
1970
|
+
SkyWaitPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.1", type: SkyWaitPageComponent, selector: "sky-wait-page", inputs: { hasBlockingWait: "hasBlockingWait", hasNonBlockingWait: "hasNonBlockingWait" }, ngImport: i0, template: "<div class=\"sky-wait-page\">\n <sky-wait\n data-sky-id=\"page-wait-non-blocking\"\n [isFullPage]=\"true\"\n [isNonBlocking]=\"true\"\n [isWaiting]=\"hasNonBlockingWait\"\n >\n </sky-wait>\n <sky-wait\n data-sky-id=\"page-wait-blocking\"\n [isFullPage]=\"true\"\n [isWaiting]=\"hasBlockingWait\"\n >\n </sky-wait>\n</div>\n", styles: [".sky-wait-page ::ng-deep .sky-wait-mask-loading-fixed{z-index:2000}\n"], dependencies: [{ kind: "component", type: SkyWaitComponent, selector: "sky-wait", inputs: ["ariaLabel", "isWaiting", "isFullPage", "isNonBlocking", "screenReaderCompletedText"] }] });
|
|
1930
1971
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: SkyWaitPageComponent, decorators: [{
|
|
1931
1972
|
type: Component,
|
|
1932
1973
|
args: [{ selector: 'sky-wait-page', template: "<div class=\"sky-wait-page\">\n <sky-wait\n data-sky-id=\"page-wait-non-blocking\"\n [isFullPage]=\"true\"\n [isNonBlocking]=\"true\"\n [isWaiting]=\"hasNonBlockingWait\"\n >\n </sky-wait>\n <sky-wait\n data-sky-id=\"page-wait-blocking\"\n [isFullPage]=\"true\"\n [isWaiting]=\"hasBlockingWait\"\n >\n </sky-wait>\n</div>\n", styles: [".sky-wait-page ::ng-deep .sky-wait-mask-loading-fixed{z-index:2000}\n"] }]
|