@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/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,4 +1 @@
1
- /**
2
- * @internal
3
- */
4
1
  export declare type SkyIndicatorDescriptionType = 'completed' | 'custom' | 'error' | 'important-info' | 'none' | 'warning';
@@ -1,4 +1 @@
1
- /**
2
- * @internal
3
- */
4
1
  export declare type SkyIndicatorIconType = 'danger' | 'info' | 'success' | 'warning';
@@ -1,7 +1,7 @@
1
1
  import { SkyIndicatorIcon } from './indicator-icon';
2
2
  import { SkyIndicatorIconType } from './indicator-icon-type';
3
3
  /**
4
- * @internl
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. The valid options are `none`, `custom`,
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.2",
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.2",
48
- "@skyux/core": "6.0.2",
49
- "@skyux/i18n": "6.0.2",
50
- "@skyux/theme": "6.0.2"
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"