@skyux/indicators 10.31.0 → 10.32.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 +2198 -1580
- package/esm2022/index.mjs +2 -1
- package/esm2022/lib/modules/key-info/key-info-label.component.mjs +4 -3
- package/esm2022/lib/modules/key-info/key-info.component.mjs +12 -5
- package/esm2022/lib/modules/key-info/key-info.module.mjs +6 -5
- package/esm2022/lib/modules/status-indicator/status-indicator.component.mjs +12 -5
- package/esm2022/lib/modules/status-indicator/status-indicator.module.mjs +9 -2
- package/fesm2022/skyux-indicators.mjs +32 -12
- package/fesm2022/skyux-indicators.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/key-info/key-info.component.d.ts +21 -1
- package/lib/modules/key-info/key-info.module.d.ts +2 -1
- package/lib/modules/status-indicator/status-indicator.component.d.ts +21 -2
- package/lib/modules/status-indicator/status-indicator.module.d.ts +4 -3
- package/package.json +7 -6
package/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { SkyAlertComponent as λ1 } from './lib/modules/alert/alert.component';
|
|
|
25
25
|
export { SkyChevronComponent as λ2 } from './lib/modules/chevron/chevron.component';
|
|
26
26
|
export { SkyExpansionIndicatorComponent as λ15 } from './lib/modules/expansion-indicator/expansion-indicator.component';
|
|
27
27
|
export { SkyHelpInlineComponent as λ3 } from './lib/modules/help-inline/help-inline.component';
|
|
28
|
+
export { λ1 as λ4, λ2 as λ5 } from '@skyux/icon';
|
|
28
29
|
export { SkyKeyInfoLabelComponent as λ6 } from './lib/modules/key-info/key-info-label.component';
|
|
29
30
|
export { SkyKeyInfoValueComponent as λ7 } from './lib/modules/key-info/key-info-value.component';
|
|
30
31
|
export { SkyKeyInfoComponent as λ8 } from './lib/modules/key-info/key-info.component';
|
|
@@ -1,6 +1,26 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
1
2
|
import { SkyKeyInfoLayoutType } from './key-info-layout-type';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SkyKeyInfoComponent {
|
|
5
|
+
/**
|
|
6
|
+
* A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) button is
|
|
7
|
+
* placed beside the key info. Clicking the button invokes global help as configured by the application.
|
|
8
|
+
* @preview
|
|
9
|
+
*/
|
|
10
|
+
helpKey: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
13
|
+
* button is added to the key info. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
|
|
14
|
+
* when clicked using the specified content and optional title.
|
|
15
|
+
* @preview
|
|
16
|
+
*/
|
|
17
|
+
helpPopoverContent: string | TemplateRef<unknown> | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* The title of the help popover. This property only applies when `helpPopoverContent` is
|
|
20
|
+
* also specified.
|
|
21
|
+
* @preview
|
|
22
|
+
*/
|
|
23
|
+
helpPopoverTitle: string | undefined;
|
|
4
24
|
/**
|
|
5
25
|
* The layout for the key info. The vertical layout places the label under the
|
|
6
26
|
* value, while the horizontal layout places the label beside the value.
|
|
@@ -8,5 +28,5 @@ export declare class SkyKeyInfoComponent {
|
|
|
8
28
|
*/
|
|
9
29
|
layout: SkyKeyInfoLayoutType | undefined;
|
|
10
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyKeyInfoComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyKeyInfoComponent, "sky-key-info", never, { "layout": { "alias": "layout"; "required": false; }; }, {}, never, ["sky-key-info-value", "sky-key-info-label", ".sky-control-help"], false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyKeyInfoComponent, "sky-key-info", never, { "helpKey": { "alias": "helpKey"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; }, {}, never, ["sky-key-info-value", "sky-key-info-label", ".sky-control-help"], false, never>;
|
|
12
32
|
}
|
|
@@ -4,8 +4,9 @@ import * as i2 from "./key-info-label.component";
|
|
|
4
4
|
import * as i3 from "./key-info-value.component";
|
|
5
5
|
import * as i4 from "@angular/common";
|
|
6
6
|
import * as i5 from "@skyux/core";
|
|
7
|
+
import * as i6 from "@skyux/help-inline";
|
|
7
8
|
export declare class SkyKeyInfoModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyKeyInfoModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyKeyInfoModule, [typeof i1.SkyKeyInfoComponent, typeof i2.SkyKeyInfoLabelComponent, typeof i3.SkyKeyInfoValueComponent], [typeof i4.CommonModule, typeof i5.SkyTrimModule], [typeof i1.SkyKeyInfoComponent, typeof i2.SkyKeyInfoLabelComponent, typeof i3.SkyKeyInfoValueComponent]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyKeyInfoModule, [typeof i1.SkyKeyInfoComponent, typeof i2.SkyKeyInfoLabelComponent, typeof i3.SkyKeyInfoValueComponent], [typeof i4.CommonModule, typeof i5.SkyTrimModule, typeof i6.SkyHelpInlineModule, typeof i5.SkyIdModule], [typeof i1.SkyKeyInfoComponent, typeof i2.SkyKeyInfoLabelComponent, typeof i3.SkyKeyInfoValueComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyKeyInfoModule>;
|
|
11
12
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { SkyIconStackItem } from '@skyux/icon';
|
|
3
3
|
import { SkyIndicatorDescriptionType } from '../shared/indicator-description-type';
|
|
4
4
|
import { SkyIndicatorIconType } from '../shared/indicator-icon-type';
|
|
@@ -29,6 +29,25 @@ export declare class SkyStatusIndicatorComponent implements OnInit {
|
|
|
29
29
|
*/
|
|
30
30
|
set customDescription(value: string | undefined);
|
|
31
31
|
get customDescription(): string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
34
|
+
* button is added to the status indicator. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
|
|
35
|
+
* when clicked using the specified content and optional title.
|
|
36
|
+
* @preview
|
|
37
|
+
*/
|
|
38
|
+
helpPopoverContent: string | TemplateRef<unknown> | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* The title of the help popover. This property only applies when `helpPopoverContent` is
|
|
41
|
+
* also specified.
|
|
42
|
+
* @preview
|
|
43
|
+
*/
|
|
44
|
+
helpPopoverTitle: string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) button is
|
|
47
|
+
* placed beside the status indicator label. Clicking the button invokes global help as configured by the application.
|
|
48
|
+
* @preview
|
|
49
|
+
*/
|
|
50
|
+
helpKey: string | undefined;
|
|
32
51
|
descriptionComputed: string | undefined;
|
|
33
52
|
baseIcon: SkyIconStackItem | undefined;
|
|
34
53
|
icon: string | undefined;
|
|
@@ -36,5 +55,5 @@ export declare class SkyStatusIndicatorComponent implements OnInit {
|
|
|
36
55
|
topIcon: SkyIconStackItem | undefined;
|
|
37
56
|
ngOnInit(): void;
|
|
38
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyStatusIndicatorComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyStatusIndicatorComponent, "sky-status-indicator", never, { "indicatorType": { "alias": "indicatorType"; "required": false; }; "descriptionType": { "alias": "descriptionType"; "required": false; }; "customDescription": { "alias": "customDescription"; "required": false; }; }, {}, never, ["
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyStatusIndicatorComponent, "sky-status-indicator", never, { "indicatorType": { "alias": "indicatorType"; "required": false; }; "descriptionType": { "alias": "descriptionType"; "required": false; }; "customDescription": { "alias": "customDescription"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, {}, never, [".sky-control-help", "*"], false, never>;
|
|
40
59
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./status-indicator.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@skyux/
|
|
5
|
-
import * as i4 from "
|
|
4
|
+
import * as i3 from "@skyux/help-inline";
|
|
5
|
+
import * as i4 from "@skyux/icon";
|
|
6
6
|
import * as i5 from "@skyux/core";
|
|
7
|
+
import * as i6 from "../shared/sky-indicators-resources.module";
|
|
7
8
|
export declare class SkyStatusIndicatorModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyStatusIndicatorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyStatusIndicatorModule, [typeof i1.SkyStatusIndicatorComponent], [typeof i2.CommonModule, typeof i3.
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyStatusIndicatorModule, [typeof i1.SkyStatusIndicatorComponent], [typeof i2.CommonModule, typeof i3.SkyHelpInlineModule, typeof i4.SkyIconModule, typeof i5.SkyIdModule, typeof i6.SkyIndicatorsResourcesModule, typeof i5.SkyTrimModule], [typeof i1.SkyStatusIndicatorComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyStatusIndicatorModule>;
|
|
11
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.32.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -41,13 +41,14 @@
|
|
|
41
41
|
"@angular/common": "^17.3.4",
|
|
42
42
|
"@angular/core": "^17.3.4",
|
|
43
43
|
"@angular/platform-browser": "^17.3.4",
|
|
44
|
-
"@skyux-sdk/testing": "10.
|
|
45
|
-
"@skyux/core": "10.
|
|
46
|
-
"@skyux/
|
|
47
|
-
"@skyux/
|
|
44
|
+
"@skyux-sdk/testing": "10.32.0",
|
|
45
|
+
"@skyux/core": "10.32.0",
|
|
46
|
+
"@skyux/help-inline": "10.32.0",
|
|
47
|
+
"@skyux/i18n": "10.32.0",
|
|
48
|
+
"@skyux/theme": "10.32.0"
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
|
-
"@skyux/icon": "10.
|
|
51
|
+
"@skyux/icon": "10.32.0",
|
|
51
52
|
"tslib": "^2.6.2"
|
|
52
53
|
},
|
|
53
54
|
"module": "fesm2022/skyux-indicators.mjs",
|