@skyux/indicators 6.3.2 → 6.5.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 +16 -13
- package/esm2020/lib/modules/help-inline/help-inline.component.mjs +2 -2
- package/esm2020/lib/modules/status-indicator/status-indicator.component.mjs +10 -3
- package/esm2020/lib/modules/status-indicator/status-indicator.module.mjs +6 -2
- package/esm2020/lib/modules/tokens/tokens.component.mjs +1 -1
- package/fesm2015/skyux-indicators.mjs +15 -6
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +15 -6
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/status-indicator/status-indicator.component.d.ts +7 -1
- package/lib/modules/status-indicator/status-indicator.module.d.ts +2 -1
- package/lib/modules/tokens/tokens.component.d.ts +2 -2
- package/package.json +5 -5
|
@@ -4,6 +4,12 @@ import { SkyIconStackItem } from '../icon/icon-stack-item';
|
|
|
4
4
|
import { SkyIndicatorDescriptionType } from '../shared/indicator-description-type';
|
|
5
5
|
import { SkyIndicatorIconType } from '../shared/indicator-icon-type';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Displays status text with an icon matching the specified indicator type.
|
|
9
|
+
* To display a help button beside the label, include a help button element, such as
|
|
10
|
+
* `sky-help-inline`, in the `sky-status-indicator` element and a `sky-control-help`
|
|
11
|
+
* CSS class on that help button element.
|
|
12
|
+
*/
|
|
7
13
|
export declare class SkyStatusIndicatorComponent {
|
|
8
14
|
private changeDetector;
|
|
9
15
|
private resources;
|
|
@@ -37,5 +43,5 @@ export declare class SkyStatusIndicatorComponent {
|
|
|
37
43
|
private updateIcon;
|
|
38
44
|
private updateDescriptionComputed;
|
|
39
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyStatusIndicatorComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyStatusIndicatorComponent, "sky-status-indicator", never, { "indicatorType": "indicatorType"; "descriptionType": "descriptionType"; "customDescription": "customDescription"; }, {}, never, ["*"]>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyStatusIndicatorComponent, "sky-status-indicator", never, { "indicatorType": "indicatorType"; "descriptionType": "descriptionType"; "customDescription": "customDescription"; }, {}, never, ["*", ".sky-control-help"]>;
|
|
41
47
|
}
|
|
@@ -4,8 +4,9 @@ import * as i2 from "@angular/common";
|
|
|
4
4
|
import * as i3 from "@skyux/i18n";
|
|
5
5
|
import * as i4 from "../icon/icon.module";
|
|
6
6
|
import * as i5 from "../shared/sky-indicators-resources.module";
|
|
7
|
+
import * as i6 from "@skyux/core";
|
|
7
8
|
export declare class SkyStatusIndicatorModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyStatusIndicatorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyStatusIndicatorModule, [typeof i1.SkyStatusIndicatorComponent], [typeof i2.CommonModule, typeof i3.SkyI18nModule, typeof i4.SkyIconModule, typeof i5.SkyIndicatorsResourcesModule], [typeof i1.SkyStatusIndicatorComponent]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyStatusIndicatorModule, [typeof i1.SkyStatusIndicatorComponent], [typeof i2.CommonModule, typeof i3.SkyI18nModule, typeof i4.SkyIconModule, typeof i5.SkyIndicatorsResourcesModule, typeof i6.SkyTrimModule], [typeof i1.SkyStatusIndicatorComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyStatusIndicatorModule>;
|
|
11
12
|
}
|
|
@@ -31,7 +31,7 @@ export declare class SkyTokensComponent implements OnDestroy {
|
|
|
31
31
|
* Specifies the token property that represents the token's unique identifier. When this property
|
|
32
32
|
* is set, animations are enabled when dismissing tokens.
|
|
33
33
|
*/
|
|
34
|
-
trackWith: string;
|
|
34
|
+
trackWith: string | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* Indicates whether users can focus on items in the list using the `Tab` key.
|
|
37
37
|
* This does not affect the ability of users to select tokens, dismiss tokens,
|
|
@@ -43,7 +43,7 @@ export declare class SkyTokensComponent implements OnDestroy {
|
|
|
43
43
|
/**
|
|
44
44
|
* Specifies an array of tokens to include in the list.
|
|
45
45
|
*/
|
|
46
|
-
set tokens(value: SkyToken[]);
|
|
46
|
+
set tokens(value: SkyToken[] | undefined);
|
|
47
47
|
get tokens(): SkyToken[];
|
|
48
48
|
/**
|
|
49
49
|
* Specifies an observable of `SkyTokensMessage` that can place focus on a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"@angular/common": "^13.3.2",
|
|
45
45
|
"@angular/core": "^13.3.2",
|
|
46
46
|
"@angular/platform-browser": "^13.3.2",
|
|
47
|
-
"@skyux-sdk/testing": "6.
|
|
48
|
-
"@skyux/core": "6.
|
|
49
|
-
"@skyux/i18n": "6.
|
|
50
|
-
"@skyux/theme": "6.
|
|
47
|
+
"@skyux-sdk/testing": "6.5.0",
|
|
48
|
+
"@skyux/core": "6.5.0",
|
|
49
|
+
"@skyux/i18n": "6.5.0",
|
|
50
|
+
"@skyux/theme": "6.5.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1"
|