@skyux/layout 8.3.1 → 8.5.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 +290 -268
- package/esm2020/lib/modules/page/page-layout-type.mjs +1 -1
- package/esm2020/lib/modules/page/page.component.mjs +14 -6
- package/esm2020/lib/modules/page/page.module.mjs +4 -1
- package/esm2020/lib/modules/text-expand/text-expand-modal.component.mjs +1 -1
- package/fesm2015/skyux-layout.mjs +17 -7
- package/fesm2015/skyux-layout.mjs.map +1 -1
- package/fesm2020/skyux-layout.mjs +17 -7
- package/fesm2020/skyux-layout.mjs.map +1 -1
- package/lib/modules/page/page-layout-type.d.ts +3 -0
- package/lib/modules/page/page.component.d.ts +1 -0
- package/lib/modules/page/page.module.d.ts +3 -0
- package/package.json +9 -9
|
@@ -4,6 +4,7 @@ import { SkyPageThemeAdapterService } from './page-theme-adapter.service';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Displays page contents using the specified layout.
|
|
7
|
+
* @deprecated Use the `sky-page` component in `@skyux/pages` instead.
|
|
7
8
|
*/
|
|
8
9
|
export declare class SkyPageComponent implements OnInit, OnDestroy {
|
|
9
10
|
#private;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./page.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use the SkyPageModule in `@skyux/pages` instead.
|
|
6
|
+
*/
|
|
4
7
|
export declare class SkyPageModule {
|
|
5
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageModule, never>;
|
|
6
9
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyPageModule, [typeof i1.SkyPageComponent], [typeof i2.CommonModule], [typeof i1.SkyPageComponent]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.5.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"@angular/forms": "^15.2.9",
|
|
48
48
|
"@angular/platform-browser": "^15.2.9",
|
|
49
49
|
"@angular/router": "^15.2.9",
|
|
50
|
-
"@skyux-sdk/testing": "8.
|
|
51
|
-
"@skyux/core": "8.
|
|
52
|
-
"@skyux/forms": "8.
|
|
53
|
-
"@skyux/i18n": "8.
|
|
54
|
-
"@skyux/indicators": "8.
|
|
55
|
-
"@skyux/modals": "8.
|
|
56
|
-
"@skyux/router": "8.
|
|
57
|
-
"@skyux/theme": "8.
|
|
50
|
+
"@skyux-sdk/testing": "8.5.0",
|
|
51
|
+
"@skyux/core": "8.5.0",
|
|
52
|
+
"@skyux/forms": "8.5.0",
|
|
53
|
+
"@skyux/i18n": "8.5.0",
|
|
54
|
+
"@skyux/indicators": "8.5.0",
|
|
55
|
+
"@skyux/modals": "8.5.0",
|
|
56
|
+
"@skyux/router": "8.5.0",
|
|
57
|
+
"@skyux/theme": "8.5.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"tslib": "^2.5.0"
|