@skyux/layout 11.15.0 → 11.16.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 +1759 -2318
- package/esm2022/lib/modules/action-button/action-button-icon.component.mjs +16 -26
- package/esm2022/lib/modules/page-summary/page-summary.component.mjs +18 -56
- package/fesm2022/skyux-layout.mjs +76 -120
- package/fesm2022/skyux-layout.mjs.map +1 -1
- package/lib/modules/action-button/action-button-icon.component.d.ts +2 -6
- package/lib/modules/page-summary/page-summary.component.d.ts +3 -10
- package/package.json +11 -11
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import { SkyMediaQueryService } from '@skyux/core';
|
|
3
1
|
import * as i0 from "@angular/core";
|
|
4
2
|
/**
|
|
5
3
|
* Specifies an icon to display on the action button.
|
|
6
4
|
*/
|
|
7
|
-
export declare class SkyActionButtonIconComponent
|
|
5
|
+
export declare class SkyActionButtonIconComponent {
|
|
8
6
|
#private;
|
|
9
7
|
/**
|
|
10
8
|
* The icon from the
|
|
@@ -15,9 +13,7 @@ export declare class SkyActionButtonIconComponent implements OnDestroy {
|
|
|
15
13
|
* [icon component](https://developer.blackbaud.com/skyux/components/icon).
|
|
16
14
|
*/
|
|
17
15
|
iconType: string | undefined;
|
|
18
|
-
fontSizeClass:
|
|
19
|
-
constructor(mediaQueryService: SkyMediaQueryService);
|
|
20
|
-
ngOnDestroy(): void;
|
|
16
|
+
protected fontSizeClass: import("@angular/core").Signal<"2x" | "3x">;
|
|
21
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyActionButtonIconComponent, never>;
|
|
22
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyActionButtonIconComponent, "sky-action-button-icon", never, { "iconType": { "alias": "iconType"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
19
|
}
|
|
@@ -1,20 +1,13 @@
|
|
|
1
|
-
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, QueryList } from '@angular/core';
|
|
2
|
-
import { SkyLogService, SkyMediaQueryService } from '@skyux/core';
|
|
3
|
-
import { SkyPageSummaryAdapterService } from './page-summary-adapter.service';
|
|
4
1
|
import { SkyPageSummaryKeyInfoComponent } from './page-summary-key-info.component';
|
|
5
2
|
import * as i0 from "@angular/core";
|
|
6
3
|
/**
|
|
7
4
|
* Specifies the components to display in the page summary.
|
|
8
5
|
* @deprecated `SkyPageSummaryComponent` is deprecated. For page templates and techniques to summarize page content, see the page design guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/page-layouts.
|
|
9
6
|
*/
|
|
10
|
-
export declare class SkyPageSummaryComponent
|
|
7
|
+
export declare class SkyPageSummaryComponent {
|
|
11
8
|
#private;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
constructor(elRef: ElementRef, adapter: SkyPageSummaryAdapterService, mediaQueryService: SkyMediaQueryService, logger: SkyLogService, changeDetector: ChangeDetectorRef);
|
|
15
|
-
ngAfterViewInit(): void;
|
|
16
|
-
ngAfterContentInit(): void;
|
|
17
|
-
ngOnDestroy(): void;
|
|
9
|
+
protected keyInfoComponents: import("@angular/core").Signal<readonly SkyPageSummaryKeyInfoComponent[]>;
|
|
10
|
+
constructor();
|
|
18
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryComponent, never>;
|
|
19
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyPageSummaryComponent, "sky-page-summary", never, {}, {}, ["keyInfoComponents"], ["sky-page-summary-alert", "sky-page-summary-image", "sky-page-summary-title", "sky-page-summary-subtitle", "sky-page-summary-status", "sky-page-summary-content", "sky-page-summary-key-info"], false, never>;
|
|
20
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.16.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"@angular/forms": "^18.2.8",
|
|
44
44
|
"@angular/platform-browser": "^18.2.8",
|
|
45
45
|
"@angular/router": "^18.2.8",
|
|
46
|
-
"@skyux-sdk/testing": "11.
|
|
47
|
-
"@skyux/core": "11.
|
|
48
|
-
"@skyux/forms": "11.
|
|
49
|
-
"@skyux/help-inline": "11.
|
|
50
|
-
"@skyux/i18n": "11.
|
|
51
|
-
"@skyux/icon": "11.
|
|
52
|
-
"@skyux/indicators": "11.
|
|
53
|
-
"@skyux/modals": "11.
|
|
54
|
-
"@skyux/router": "11.
|
|
55
|
-
"@skyux/theme": "11.
|
|
46
|
+
"@skyux-sdk/testing": "11.16.0",
|
|
47
|
+
"@skyux/core": "11.16.0",
|
|
48
|
+
"@skyux/forms": "11.16.0",
|
|
49
|
+
"@skyux/help-inline": "11.16.0",
|
|
50
|
+
"@skyux/i18n": "11.16.0",
|
|
51
|
+
"@skyux/icon": "11.16.0",
|
|
52
|
+
"@skyux/indicators": "11.16.0",
|
|
53
|
+
"@skyux/modals": "11.16.0",
|
|
54
|
+
"@skyux/router": "11.16.0",
|
|
55
|
+
"@skyux/theme": "11.16.0"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"tslib": "^2.6.3"
|