@skyux/layout 6.3.2 → 6.3.3
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 +547 -547
- package/esm2020/lib/modules/action-button/action-button-container.component.mjs +27 -10
- package/fesm2015/skyux-layout.mjs +26 -9
- package/fesm2015/skyux-layout.mjs.map +1 -1
- package/fesm2020/skyux-layout.mjs +26 -9
- package/fesm2020/skyux-layout.mjs.map +1 -1
- package/lib/modules/action-button/action-button-container.component.d.ts +4 -3
- package/package.json +9 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { SkyCoreAdapterService } from '@skyux/core';
|
|
3
3
|
import { SkyThemeService } from '@skyux/theme';
|
|
4
4
|
import { SkyActionButtonAdapterService } from './action-button-adapter-service';
|
|
@@ -8,7 +8,8 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Wraps action buttons to ensures that they have consistent height and spacing.
|
|
9
9
|
* @required
|
|
10
10
|
*/
|
|
11
|
-
export declare class SkyActionButtonContainerComponent implements
|
|
11
|
+
export declare class SkyActionButtonContainerComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
12
|
+
#private;
|
|
12
13
|
private actionButtonAdapterService;
|
|
13
14
|
private changeRef;
|
|
14
15
|
private coreAdapterService;
|
|
@@ -30,7 +31,7 @@ export declare class SkyActionButtonContainerComponent implements AfterContentIn
|
|
|
30
31
|
private _themeName;
|
|
31
32
|
constructor(actionButtonAdapterService: SkyActionButtonAdapterService, changeRef: ChangeDetectorRef, coreAdapterService: SkyCoreAdapterService, hostElRef: ElementRef, themeSvc?: SkyThemeService);
|
|
32
33
|
ngOnInit(): void;
|
|
33
|
-
|
|
34
|
+
ngAfterViewInit(): void;
|
|
34
35
|
ngOnDestroy(): void;
|
|
35
36
|
onContentChange(): void;
|
|
36
37
|
onWindowResize(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.3",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"@angular/forms": "^13.3.2",
|
|
48
48
|
"@angular/platform-browser": "^13.3.2",
|
|
49
49
|
"@angular/router": "^13.3.2",
|
|
50
|
-
"@skyux-sdk/testing": "6.3.
|
|
51
|
-
"@skyux/core": "6.3.
|
|
52
|
-
"@skyux/forms": "6.3.
|
|
53
|
-
"@skyux/i18n": "6.3.
|
|
54
|
-
"@skyux/indicators": "6.3.
|
|
55
|
-
"@skyux/modals": "6.3.
|
|
56
|
-
"@skyux/router": "6.3.
|
|
57
|
-
"@skyux/theme": "6.3.
|
|
50
|
+
"@skyux-sdk/testing": "6.3.3",
|
|
51
|
+
"@skyux/core": "6.3.3",
|
|
52
|
+
"@skyux/forms": "6.3.3",
|
|
53
|
+
"@skyux/i18n": "6.3.3",
|
|
54
|
+
"@skyux/indicators": "6.3.3",
|
|
55
|
+
"@skyux/modals": "6.3.3",
|
|
56
|
+
"@skyux/router": "6.3.3",
|
|
57
|
+
"@skyux/theme": "6.3.3"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"tslib": "^2.3.1"
|