@skyux/indicators 6.11.1 → 6.13.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 +363 -340
- package/esm2020/lib/modules/icon/icon-stack.component.mjs +1 -1
- package/esm2020/lib/modules/icon/icon.component.mjs +1 -1
- package/esm2020/lib/modules/key-info/key-info.component.mjs +2 -1
- package/esm2020/lib/modules/label/label.component.mjs +20 -6
- package/esm2020/testing/label-fixture.mjs +1 -1
- package/fesm2015/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2015/skyux-indicators.mjs +20 -5
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +20 -5
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/icon/icon-stack.component.d.ts +2 -2
- package/lib/modules/icon/icon.component.d.ts +1 -1
- package/lib/modules/key-info/key-info.component.d.ts +1 -1
- package/lib/modules/label/label.component.d.ts +7 -6
- package/package.json +5 -5
- package/testing/label-fixture.d.ts +2 -2
|
@@ -9,11 +9,11 @@ export declare class SkyIconStackComponent {
|
|
|
9
9
|
/**
|
|
10
10
|
* The icon to display at the bottom of the stack.
|
|
11
11
|
*/
|
|
12
|
-
baseIcon: SkyIconStackItem;
|
|
12
|
+
baseIcon: SkyIconStackItem | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* The icon to display at the top of the stack.
|
|
15
15
|
*/
|
|
16
|
-
topIcon: SkyIconStackItem;
|
|
16
|
+
topIcon: SkyIconStackItem | undefined;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyIconStackComponent, never>;
|
|
18
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyIconStackComponent, "sky-icon-stack", never, { "size": "size"; "baseIcon": "baseIcon"; "topIcon": "topIcon"; }, {}, never, never>;
|
|
19
19
|
}
|
|
@@ -8,7 +8,7 @@ export declare class SkyIconComponent {
|
|
|
8
8
|
* display. Do not specify the `fa fa-` classes.
|
|
9
9
|
* @required
|
|
10
10
|
*/
|
|
11
|
-
icon: string;
|
|
11
|
+
icon: string | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* Specifies the type of icon to display. Specifying `"fa"` will display a Font Awesome icon,
|
|
14
14
|
* while specifying `"skyux"` will display an icon from the custom SKY UX icon font. Note that
|
|
@@ -5,7 +5,7 @@ export declare class SkyKeyInfoComponent {
|
|
|
5
5
|
* value or in a horizontal layout with the label beside the value.
|
|
6
6
|
* @default "vertical"
|
|
7
7
|
*/
|
|
8
|
-
layout: string;
|
|
8
|
+
layout: string | undefined;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyKeyInfoComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyKeyInfoComponent, "sky-key-info", never, { "layout": "layout"; }, {}, never, ["sky-key-info-value", "sky-key-info-label", ".sky-control-help"]>;
|
|
11
11
|
}
|
|
@@ -2,16 +2,17 @@ import { SkyIconStackItem } from '../icon/icon-stack-item';
|
|
|
2
2
|
import { SkyLabelType } from './label-type';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SkyLabelComponent {
|
|
5
|
+
#private;
|
|
5
6
|
/**
|
|
6
7
|
* The type of label to display.
|
|
7
8
|
* @required
|
|
8
9
|
*/
|
|
9
|
-
set labelType(value: SkyLabelType);
|
|
10
|
-
get labelType(): SkyLabelType;
|
|
11
|
-
baseIcon: SkyIconStackItem;
|
|
12
|
-
icon: string;
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
set labelType(value: SkyLabelType | undefined);
|
|
11
|
+
get labelType(): SkyLabelType | undefined;
|
|
12
|
+
baseIcon: SkyIconStackItem | undefined;
|
|
13
|
+
icon: string | undefined;
|
|
14
|
+
labelTypeOrDefault: SkyLabelType;
|
|
15
|
+
topIcon: SkyIconStackItem | undefined;
|
|
15
16
|
private updateIcon;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyLabelComponent, never>;
|
|
17
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyLabelComponent, "sky-label", never, { "labelType": "labelType"; }, {}, never, ["*"]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.13.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.13.0",
|
|
48
|
+
"@skyux/core": "6.13.0",
|
|
49
|
+
"@skyux/i18n": "6.13.0",
|
|
50
|
+
"@skyux/theme": "6.13.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1"
|
|
@@ -6,11 +6,11 @@ export declare class SkyLabelFixture {
|
|
|
6
6
|
/**
|
|
7
7
|
* The label's current type.
|
|
8
8
|
*/
|
|
9
|
-
get labelType(): string;
|
|
9
|
+
get labelType(): string | undefined;
|
|
10
10
|
/**
|
|
11
11
|
* The label's current text.
|
|
12
12
|
*/
|
|
13
|
-
get text(): string;
|
|
13
|
+
get text(): string | undefined;
|
|
14
14
|
private debugEl;
|
|
15
15
|
constructor(fixture: ComponentFixture<any>, skyTestId: string);
|
|
16
16
|
private getLabelEl;
|