@skyux/layout 10.40.0 → 10.41.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 +716 -772
- package/esm2022/lib/modules/box/box.component.mjs +1 -5
- package/esm2022/lib/modules/description-list/description-list-content.component.mjs +1 -1
- package/esm2022/lib/modules/page-summary/page-summary-key-info.component.mjs +2 -2
- package/fesm2022/skyux-layout.mjs +2 -6
- package/fesm2022/skyux-layout.mjs.map +1 -1
- package/lib/modules/box/box.component.d.ts +0 -7
- package/lib/modules/description-list/description-list-content.component.d.ts +0 -3
- package/package.json +11 -11
|
@@ -10,24 +10,20 @@ export declare class SkyBoxComponent {
|
|
|
10
10
|
#private;
|
|
11
11
|
/**
|
|
12
12
|
* The text to display as the box's heading.
|
|
13
|
-
* @preview
|
|
14
13
|
*/
|
|
15
14
|
set headingText(value: string | undefined);
|
|
16
15
|
get headingText(): string | undefined;
|
|
17
16
|
/**
|
|
18
17
|
* Indicates whether to hide the `headingText`.
|
|
19
|
-
* @preview
|
|
20
18
|
*/
|
|
21
19
|
headingHidden: boolean;
|
|
22
20
|
/**
|
|
23
21
|
* The semantic heading level in the document structure. The default is 2.
|
|
24
|
-
* @preview
|
|
25
22
|
* @default 2
|
|
26
23
|
*/
|
|
27
24
|
headingLevel: SkyBoxHeadingLevel;
|
|
28
25
|
/**
|
|
29
26
|
* The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
|
|
30
|
-
* @preview
|
|
31
27
|
* @default 2
|
|
32
28
|
*/
|
|
33
29
|
set headingStyle(value: SkyBoxHeadingStyle);
|
|
@@ -35,20 +31,17 @@ export declare class SkyBoxComponent {
|
|
|
35
31
|
* The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
36
32
|
* button is added to the box heading. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
|
|
37
33
|
* when clicked using the specified content and optional title.
|
|
38
|
-
* @preview
|
|
39
34
|
*/
|
|
40
35
|
helpPopoverContent: string | TemplateRef<unknown> | undefined;
|
|
41
36
|
/**
|
|
42
37
|
* The title of the help popover. This property only applies when `helpPopoverContent` is
|
|
43
38
|
* also specified.
|
|
44
|
-
* @preview
|
|
45
39
|
*/
|
|
46
40
|
helpPopoverTitle: string | undefined;
|
|
47
41
|
/**
|
|
48
42
|
* A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
49
43
|
* button is placed beside the box heading. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
|
|
50
44
|
* as configured by the application.
|
|
51
|
-
* @preview
|
|
52
45
|
*/
|
|
53
46
|
helpKey: string | undefined;
|
|
54
47
|
/**
|
|
@@ -11,20 +11,17 @@ export declare class SkyDescriptionListContentComponent {
|
|
|
11
11
|
/**
|
|
12
12
|
* 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
|
|
13
13
|
* placed beside the description list content label. Clicking the button invokes global help as configured by the application.
|
|
14
|
-
* @preview
|
|
15
14
|
*/
|
|
16
15
|
helpKey: string | undefined;
|
|
17
16
|
/**
|
|
18
17
|
* The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
19
18
|
* button is added to the description list content. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
|
|
20
19
|
* when clicked using the specified content and optional title.
|
|
21
|
-
* @preview
|
|
22
20
|
*/
|
|
23
21
|
helpPopoverContent: string | TemplateRef<unknown> | undefined;
|
|
24
22
|
/**
|
|
25
23
|
* The title of the help popover. This property only applies when `helpPopoverContent` is
|
|
26
24
|
* also specified.
|
|
27
|
-
* @preview
|
|
28
25
|
*/
|
|
29
26
|
helpPopoverTitle: string | undefined;
|
|
30
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDescriptionListContentComponent, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.41.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -43,18 +43,18 @@
|
|
|
43
43
|
"@angular/forms": "^17.3.4",
|
|
44
44
|
"@angular/platform-browser": "^17.3.4",
|
|
45
45
|
"@angular/router": "^17.3.4",
|
|
46
|
-
"@skyux-sdk/testing": "10.
|
|
47
|
-
"@skyux/core": "10.
|
|
48
|
-
"@skyux/forms": "10.
|
|
49
|
-
"@skyux/help-inline": "10.
|
|
50
|
-
"@skyux/i18n": "10.
|
|
51
|
-
"@skyux/indicators": "10.
|
|
52
|
-
"@skyux/modals": "10.
|
|
53
|
-
"@skyux/router": "10.
|
|
54
|
-
"@skyux/theme": "10.
|
|
46
|
+
"@skyux-sdk/testing": "10.41.0",
|
|
47
|
+
"@skyux/core": "10.41.0",
|
|
48
|
+
"@skyux/forms": "10.41.0",
|
|
49
|
+
"@skyux/help-inline": "10.41.0",
|
|
50
|
+
"@skyux/i18n": "10.41.0",
|
|
51
|
+
"@skyux/indicators": "10.41.0",
|
|
52
|
+
"@skyux/modals": "10.41.0",
|
|
53
|
+
"@skyux/router": "10.41.0",
|
|
54
|
+
"@skyux/theme": "10.41.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@skyux/icon": "10.
|
|
57
|
+
"@skyux/icon": "10.41.0",
|
|
58
58
|
"tslib": "^2.6.2"
|
|
59
59
|
},
|
|
60
60
|
"module": "fesm2022/skyux-layout.mjs",
|