@skyux/indicators 6.0.2 → 6.1.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 +182 -96
- package/esm2020/index.mjs +3 -1
- package/esm2020/lib/modules/shared/indicator-description-type.mjs +1 -1
- package/esm2020/lib/modules/shared/indicator-icon-type.mjs +1 -1
- package/esm2020/lib/modules/shared/indicator-icon-utility.mjs +2 -2
- package/esm2020/lib/modules/status-indicator/status-indicator.component.mjs +2 -4
- package/fesm2015/skyux-indicators.mjs +2 -4
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +2 -4
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/modules/shared/indicator-description-type.d.ts +0 -3
- package/lib/modules/shared/indicator-icon-type.d.ts +0 -3
- package/lib/modules/shared/indicator-icon-utility.d.ts +1 -1
- package/lib/modules/status-indicator/status-indicator.component.d.ts +1 -3
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export * from './lib/modules/icon/types/icon-variant-type';
|
|
|
9
9
|
export * from './lib/modules/key-info/key-info.module';
|
|
10
10
|
export * from './lib/modules/label/label-type';
|
|
11
11
|
export * from './lib/modules/label/label.module';
|
|
12
|
+
export * from './lib/modules/shared/indicator-description-type';
|
|
13
|
+
export * from './lib/modules/shared/indicator-icon-type';
|
|
12
14
|
export * from './lib/modules/status-indicator/status-indicator.module';
|
|
13
15
|
export * from './lib/modules/text-highlight/text-highlight.module';
|
|
14
16
|
export * from './lib/modules/tokens/tokens.module';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SkyIndicatorIcon } from './indicator-icon';
|
|
2
2
|
import { SkyIndicatorIconType } from './indicator-icon-type';
|
|
3
3
|
/**
|
|
4
|
-
* @
|
|
4
|
+
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyIndicatorIconUtility {
|
|
7
7
|
static getIconsForType(indicatorType: SkyIndicatorIconType): SkyIndicatorIcon;
|
|
@@ -9,15 +9,13 @@ export declare class SkyStatusIndicatorComponent {
|
|
|
9
9
|
private resources;
|
|
10
10
|
/**
|
|
11
11
|
* Specifies a style for the status indicator to determine the icon.
|
|
12
|
-
* The valid options are `danger`, `info`, `success`, and `warning`.
|
|
13
12
|
* @default "warning"
|
|
14
13
|
*/
|
|
15
14
|
set indicatorType(value: SkyIndicatorIconType);
|
|
16
15
|
get indicatorType(): SkyIndicatorIconType;
|
|
17
16
|
/**
|
|
18
17
|
* Specifies the predefined text to be read by screen readers for users
|
|
19
|
-
* who cannot see the indicator icon.
|
|
20
|
-
* `error`, `warning`, `completed`, and `important-info`.
|
|
18
|
+
* who cannot see the indicator icon.
|
|
21
19
|
* @required
|
|
22
20
|
*/
|
|
23
21
|
set descriptionType(value: SkyIndicatorDescriptionType);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.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.0
|
|
48
|
-
"@skyux/core": "6.0
|
|
49
|
-
"@skyux/i18n": "6.0
|
|
50
|
-
"@skyux/theme": "6.0
|
|
47
|
+
"@skyux-sdk/testing": "6.1.0",
|
|
48
|
+
"@skyux/core": "6.1.0",
|
|
49
|
+
"@skyux/i18n": "6.1.0",
|
|
50
|
+
"@skyux/theme": "6.1.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1"
|