@skyux/indicators 13.0.0-alpha.4 → 13.0.0-alpha.6
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/index.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ declare class SkyAlertComponent implements AfterViewChecked, OnInit, OnDestroy {
|
|
|
46
46
|
* Fires when users close the alert.
|
|
47
47
|
*/
|
|
48
48
|
closedChange: EventEmitter<boolean>;
|
|
49
|
-
iconName: string
|
|
49
|
+
iconName: string;
|
|
50
50
|
alertTypeOrDefault: SkyIndicatorIconType;
|
|
51
51
|
descriptionComputed: string | undefined;
|
|
52
52
|
ngOnInit(): void;
|
|
@@ -256,7 +256,7 @@ declare class SkyLabelComponent implements AfterViewChecked, OnDestroy, OnInit {
|
|
|
256
256
|
set customDescription(value: string | undefined);
|
|
257
257
|
get customDescription(): string | undefined;
|
|
258
258
|
descriptionComputed: string | undefined;
|
|
259
|
-
iconName: string
|
|
259
|
+
iconName: string;
|
|
260
260
|
labelTypeOrDefault: SkyLabelType;
|
|
261
261
|
ngOnInit(): void;
|
|
262
262
|
ngAfterViewChecked(): void;
|
|
@@ -314,7 +314,7 @@ declare class SkyStatusIndicatorComponent implements OnInit {
|
|
|
314
314
|
*/
|
|
315
315
|
helpKey: string | undefined;
|
|
316
316
|
descriptionComputed: string | undefined;
|
|
317
|
-
iconName: string
|
|
317
|
+
iconName: string;
|
|
318
318
|
indicatorTypeOrDefault: SkyIndicatorIconType;
|
|
319
319
|
ngOnInit(): void;
|
|
320
320
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyStatusIndicatorComponent, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "13.0.0-alpha.
|
|
3
|
+
"version": "13.0.0-alpha.6",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -21,12 +21,17 @@
|
|
|
21
21
|
"@angular/common": "^20.0.5",
|
|
22
22
|
"@angular/core": "^20.0.5",
|
|
23
23
|
"@angular/platform-browser": "^20.0.5",
|
|
24
|
-
"@skyux-sdk/testing": "13.0.0-alpha.
|
|
25
|
-
"@skyux/core": "13.0.0-alpha.
|
|
26
|
-
"@skyux/help-inline": "13.0.0-alpha.
|
|
27
|
-
"@skyux/i18n": "13.0.0-alpha.
|
|
28
|
-
"@skyux/icon": "13.0.0-alpha.
|
|
29
|
-
"@skyux/theme": "13.0.0-alpha.
|
|
24
|
+
"@skyux-sdk/testing": "13.0.0-alpha.6",
|
|
25
|
+
"@skyux/core": "13.0.0-alpha.6",
|
|
26
|
+
"@skyux/help-inline": "13.0.0-alpha.6",
|
|
27
|
+
"@skyux/i18n": "13.0.0-alpha.6",
|
|
28
|
+
"@skyux/icon": "13.0.0-alpha.6",
|
|
29
|
+
"@skyux/theme": "13.0.0-alpha.6"
|
|
30
|
+
},
|
|
31
|
+
"peerDependenciesMeta": {
|
|
32
|
+
"@skyux-sdk/testing": {
|
|
33
|
+
"optional": true
|
|
34
|
+
}
|
|
30
35
|
},
|
|
31
36
|
"dependencies": {
|
|
32
37
|
"tslib": "^2.8.1"
|
package/testing/index.d.ts
CHANGED
|
@@ -441,6 +441,7 @@ declare class SkyAlertFixture {
|
|
|
441
441
|
|
|
442
442
|
/**
|
|
443
443
|
* Allows interaction with a SKY UX label component.
|
|
444
|
+
* @deprecated Use `SkyLabelHarness` instead.
|
|
444
445
|
* @internal
|
|
445
446
|
*/
|
|
446
447
|
declare class SkyLabelFixture {
|
|
@@ -457,6 +458,7 @@ declare class SkyLabelFixture {
|
|
|
457
458
|
}
|
|
458
459
|
|
|
459
460
|
/**
|
|
461
|
+
* @deprecated Use `SkyWaitHarness` instead.
|
|
460
462
|
* @internal
|
|
461
463
|
*/
|
|
462
464
|
declare class SkyWaitFixture {
|