@skyux/layout 14.9.0 → 14.9.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "14.9.
|
|
3
|
+
"version": "14.9.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"@angular/forms": "^21.2.0",
|
|
23
23
|
"@angular/platform-browser": "^21.2.0",
|
|
24
24
|
"@angular/router": "^21.2.0",
|
|
25
|
-
"@skyux-sdk/testing": "14.9.
|
|
26
|
-
"@skyux/core": "14.9.
|
|
27
|
-
"@skyux/forms": "14.9.
|
|
28
|
-
"@skyux/help-inline": "14.9.
|
|
29
|
-
"@skyux/i18n": "14.9.
|
|
30
|
-
"@skyux/icon": "14.9.
|
|
31
|
-
"@skyux/indicators": "14.9.
|
|
32
|
-
"@skyux/modals": "14.9.
|
|
33
|
-
"@skyux/router": "14.9.
|
|
34
|
-
"@skyux/theme": "14.9.
|
|
25
|
+
"@skyux-sdk/testing": "14.9.2",
|
|
26
|
+
"@skyux/core": "14.9.2",
|
|
27
|
+
"@skyux/forms": "14.9.2",
|
|
28
|
+
"@skyux/help-inline": "14.9.2",
|
|
29
|
+
"@skyux/i18n": "14.9.2",
|
|
30
|
+
"@skyux/icon": "14.9.2",
|
|
31
|
+
"@skyux/indicators": "14.9.2",
|
|
32
|
+
"@skyux/modals": "14.9.2",
|
|
33
|
+
"@skyux/router": "14.9.2",
|
|
34
|
+
"@skyux/theme": "14.9.2"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.8.1"
|
package/types/skyux-layout.d.ts
CHANGED
|
@@ -627,7 +627,7 @@ type SkyDescriptionListModeType = 'horizontal' | 'longDescription' | 'vertical';
|
|
|
627
627
|
/**
|
|
628
628
|
* Creates a description list to display term-description pairs.
|
|
629
629
|
*/
|
|
630
|
-
declare class SkyDescriptionListComponent implements AfterContentInit, OnDestroy {
|
|
630
|
+
declare class SkyDescriptionListComponent implements AfterContentInit, AfterViewInit, OnDestroy {
|
|
631
631
|
#private;
|
|
632
632
|
/**
|
|
633
633
|
* The default description to display when no description is provided
|
|
@@ -649,8 +649,8 @@ declare class SkyDescriptionListComponent implements AfterContentInit, OnDestroy
|
|
|
649
649
|
contentComponents: QueryList<SkyDescriptionListContentComponent> | undefined;
|
|
650
650
|
elementRef: ElementRef | undefined;
|
|
651
651
|
ngAfterContentInit(): void;
|
|
652
|
+
ngAfterViewInit(): void;
|
|
652
653
|
ngOnDestroy(): void;
|
|
653
|
-
onWindowResize(): void;
|
|
654
654
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDescriptionListComponent, never>;
|
|
655
655
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDescriptionListComponent, "sky-description-list", never, { "defaultDescription": { "alias": "defaultDescription"; "required": false; }; "listItemWidth": { "alias": "listItemWidth"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, ["contentComponents"], never, false, never>;
|
|
656
656
|
}
|