@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/documentation.json +191 -105
- package/esm2020/index.mjs +3 -1
- package/esm2020/lib/modules/key-info/key-info-label.component.mjs +2 -2
- package/esm2020/lib/modules/key-info/key-info.component.mjs +3 -3
- 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/esm2020/lib/modules/text-highlight/text-highlight.directive.mjs +2 -4
- package/fesm2015/skyux-indicators.mjs +6 -10
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +6 -10
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/modules/key-info/key-info-label.component.d.ts +1 -1
- package/lib/modules/key-info/key-info.component.d.ts +2 -2
- 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/lib/modules/text-highlight/text-highlight.directive.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,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
/**
|
|
3
|
-
* Specifies a label to display in smaller
|
|
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
|
|
5
|
-
* value or in a
|
|
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,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);
|
|
@@ -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
|
|
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.
|
|
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.
|
|
48
|
-
"@skyux/core": "6.
|
|
49
|
-
"@skyux/i18n": "6.
|
|
50
|
-
"@skyux/theme": "6.
|
|
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"
|