@skyux/indicators 6.0.2 → 6.2.1

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,6 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
- * Specifies a label to display in smaller, plain text under or beside the value.
3
+ * Specifies a label to display in smaller text under or beside the value.
4
4
  * @required
5
5
  */
6
6
  export declare class SkyKeyInfoLabelComponent {
@@ -1,8 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class SkyKeyInfoComponent {
3
3
  /**
4
- * Specifies whether to display key info in a `vertical` layout with the label under the
5
- * value or in a `horizontal` layout with the label beside the value.
4
+ * Specifies whether to display key info in a vertical layout with the label under the
5
+ * value or in a horizontal layout with the label beside the value.
6
6
  * @default "vertical"
7
7
  */
8
8
  layout: string;
@@ -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);
@@ -2,9 +2,7 @@ import { AfterViewInit, ElementRef, OnChanges, OnDestroy, SimpleChanges } from '
2
2
  import { MutationObserverService } from '@skyux/core';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
- * Highlights all matching text within DOM elements that it is placed on.
6
- * The directive is only valid for elements that contain content, so you
7
- * cannot place it on `ng-template`, `ng-content`, or `ng-container` tags.
5
+ * Highlights all matching text within the current DOM element.
8
6
  */
9
7
  export declare class SkyTextHighlightDirective implements OnChanges, AfterViewInit, OnDestroy {
10
8
  private el;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/indicators",
3
- "version": "6.0.2",
3
+ "version": "6.2.1",
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.2.1",
48
+ "@skyux/core": "6.2.1",
49
+ "@skyux/i18n": "6.2.1",
50
+ "@skyux/theme": "6.2.1"
51
51
  },
52
52
  "dependencies": {
53
53
  "tslib": "^2.3.1"