@skyux/layout 6.0.0-beta.9 → 6.0.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.
Files changed (36) hide show
  1. package/documentation.json +656 -502
  2. package/esm2020/lib/modules/card/card-actions.component.mjs +2 -1
  3. package/esm2020/lib/modules/card/card-content.component.mjs +2 -1
  4. package/esm2020/lib/modules/card/card-title.component.mjs +2 -1
  5. package/esm2020/lib/modules/card/card.component.mjs +17 -9
  6. package/esm2020/lib/modules/card/card.module.mjs +4 -1
  7. package/esm2020/lib/modules/description-list/description-list-description.component.mjs +6 -4
  8. package/esm2020/lib/modules/page-summary/page-summary-alert.component.mjs +2 -1
  9. package/esm2020/lib/modules/page-summary/page-summary-content.component.mjs +2 -1
  10. package/esm2020/lib/modules/page-summary/page-summary-image.component.mjs +2 -1
  11. package/esm2020/lib/modules/page-summary/page-summary-key-info.component.mjs +2 -1
  12. package/esm2020/lib/modules/page-summary/page-summary-status.component.mjs +2 -1
  13. package/esm2020/lib/modules/page-summary/page-summary-subtitle.component.mjs +2 -1
  14. package/esm2020/lib/modules/page-summary/page-summary-title.component.mjs +2 -1
  15. package/esm2020/lib/modules/page-summary/page-summary.component.mjs +11 -5
  16. package/esm2020/lib/modules/page-summary/page-summary.module.mjs +4 -1
  17. package/fesm2015/skyux-layout.mjs +49 -17
  18. package/fesm2015/skyux-layout.mjs.map +1 -1
  19. package/fesm2020/skyux-layout.mjs +47 -17
  20. package/fesm2020/skyux-layout.mjs.map +1 -1
  21. package/lib/modules/card/card-actions.component.d.ts +1 -0
  22. package/lib/modules/card/card-content.component.d.ts +1 -0
  23. package/lib/modules/card/card-title.component.d.ts +1 -0
  24. package/lib/modules/card/card.component.d.ts +3 -0
  25. package/lib/modules/card/card.module.d.ts +3 -0
  26. package/lib/modules/description-list/description-list-description.component.d.ts +3 -3
  27. package/lib/modules/page-summary/page-summary-alert.component.d.ts +1 -0
  28. package/lib/modules/page-summary/page-summary-content.component.d.ts +1 -0
  29. package/lib/modules/page-summary/page-summary-image.component.d.ts +1 -0
  30. package/lib/modules/page-summary/page-summary-key-info.component.d.ts +1 -0
  31. package/lib/modules/page-summary/page-summary-status.component.d.ts +1 -0
  32. package/lib/modules/page-summary/page-summary-subtitle.component.d.ts +1 -0
  33. package/lib/modules/page-summary/page-summary-title.component.d.ts +1 -0
  34. package/lib/modules/page-summary/page-summary.component.d.ts +3 -2
  35. package/lib/modules/page-summary/page-summary.module.d.ts +3 -0
  36. package/package.json +9 -9
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Specifies an action that users can perform on the card.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyCardActionsComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardActionsComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Specifies the content to display in the body of the card.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyCardContentComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardContentComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Specifies a title to identify what the card represents.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyCardTitleComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardTitleComponent, never>;
@@ -1,9 +1,11 @@
1
1
  import { AfterContentInit, EventEmitter, OnDestroy, QueryList } from '@angular/core';
2
+ import { SkyLogService } from '@skyux/core';
2
3
  import { SkyInlineDeleteComponent } from '../inline-delete/inline-delete.component';
3
4
  import { SkyCardTitleComponent } from './card-title.component';
4
5
  import * as i0 from "@angular/core";
5
6
  /**
6
7
  * Creates a a small container to highlight important information.
8
+ * @deprecated `SkyCardComponent` is deprecated. For other SKY UX components that group and list content, see the content containers guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/content-containers.
7
9
  */
8
10
  export declare class SkyCardComponent implements AfterContentInit, OnDestroy {
9
11
  /**
@@ -31,6 +33,7 @@ export declare class SkyCardComponent implements AfterContentInit, OnDestroy {
31
33
  titleComponent: QueryList<SkyCardTitleComponent>;
32
34
  showTitle: boolean;
33
35
  private subscription;
36
+ constructor(logger: SkyLogService);
34
37
  ngAfterContentInit(): void;
35
38
  contentClick(): void;
36
39
  onCheckboxChange(newValue: boolean): void;
@@ -9,6 +9,9 @@ import * as i7 from "@skyux/forms";
9
9
  import * as i8 from "@skyux/i18n";
10
10
  import * as i9 from "../shared/sky-layout-resources.module";
11
11
  import * as i10 from "../inline-delete/inline-delete.module";
12
+ /**
13
+ * @deprecated `SkyCardModule` is deprecated. For other SKY UX components that group and list content, see the content containers guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/content-containers.
14
+ */
12
15
  export declare class SkyCardModule {
13
16
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardModule, never>;
14
17
  static ɵmod: i0.ɵɵNgModuleDeclaration<SkyCardModule, [typeof i1.SkyCardActionsComponent, typeof i2.SkyCardComponent, typeof i3.SkyCardContentComponent, typeof i4.SkyCardTitleComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.SkyCheckboxModule, typeof i8.SkyI18nModule, typeof i9.SkyLayoutResourcesModule, typeof i10.SkyInlineDeleteModule], [typeof i1.SkyCardActionsComponent, typeof i2.SkyCardComponent, typeof i3.SkyCardContentComponent, typeof i4.SkyCardTitleComponent]>;
@@ -8,14 +8,14 @@ import * as i0 from "@angular/core";
8
8
  export declare class SkyDescriptionListDescriptionComponent implements OnDestroy, OnInit {
9
9
  service: SkyDescriptionListService;
10
10
  private changeRef;
11
- private themeSvc;
11
+ private themeSvc?;
12
12
  defaultDescription: string;
13
13
  themeName: string;
14
14
  templateRef: TemplateRef<unknown>;
15
15
  private ngUnsubscribe;
16
- constructor(service: SkyDescriptionListService, changeRef: ChangeDetectorRef, themeSvc: SkyThemeService);
16
+ constructor(service: SkyDescriptionListService, changeRef: ChangeDetectorRef, themeSvc?: SkyThemeService);
17
17
  ngOnInit(): void;
18
18
  ngOnDestroy(): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<SkyDescriptionListDescriptionComponent, never>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkyDescriptionListDescriptionComponent, [null, null, { optional: true; }]>;
20
20
  static ɵcmp: i0.ɵɵComponentDeclaration<SkyDescriptionListDescriptionComponent, "sky-description-list-description", never, {}, {}, never, ["*"]>;
21
21
  }
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays messages that require immediate attention as [alerts](https://developer.blackbaud.com/skyux/components/alert) within
4
4
  * the page summary.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryAlertComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryAlertComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays content in the arbitrary section of the page summary.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyPageSummaryContentComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryContentComponent, never>;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays an image in the page summary to identify a record
4
4
  * or help users complete a core task.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryImageComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryImageComponent, never>;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Highlights important information about a page in the key information section of the
4
4
  * page summary.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryKeyInfoComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryKeyInfoComponent, never>;
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Displays [labels](https://developer.blackbaud.com/skyux/components/label)
4
4
  * to highlight important status information about a page's content.
5
+ * @deprecated
5
6
  */
6
7
  export declare class SkyPageSummaryStatusComponent {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryStatusComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Specifies a subtitle to identify the page content.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyPageSummarySubtitleComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummarySubtitleComponent, never>;
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  /**
3
3
  * Specifies a title to identify the page content.
4
+ * @deprecated
4
5
  */
5
6
  export declare class SkyPageSummaryTitleComponent {
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryTitleComponent, never>;
@@ -1,9 +1,10 @@
1
1
  import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
2
- import { SkyMediaQueryService } from '@skyux/core';
2
+ import { SkyLogService, SkyMediaQueryService } from '@skyux/core';
3
3
  import { SkyPageSummaryAdapterService } from './page-summary-adapter.service';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Specifies the components to display in the page summary.
7
+ * @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.
7
8
  */
8
9
  export declare class SkyPageSummaryComponent implements OnDestroy, AfterViewInit {
9
10
  private elRef;
@@ -12,7 +13,7 @@ export declare class SkyPageSummaryComponent implements OnDestroy, AfterViewInit
12
13
  get hasKeyInfo(): boolean;
13
14
  private keyInfoComponents;
14
15
  private breakpointSubscription;
15
- constructor(elRef: ElementRef, adapter: SkyPageSummaryAdapterService, mediaQueryService: SkyMediaQueryService);
16
+ constructor(elRef: ElementRef, adapter: SkyPageSummaryAdapterService, mediaQueryService: SkyMediaQueryService, logger: SkyLogService);
16
17
  ngAfterViewInit(): void;
17
18
  ngOnDestroy(): void;
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryComponent, never>;
@@ -8,6 +8,9 @@ import * as i6 from "./page-summary-status.component";
8
8
  import * as i7 from "./page-summary-subtitle.component";
9
9
  import * as i8 from "./page-summary-title.component";
10
10
  import * as i9 from "@angular/common";
11
+ /**
12
+ * @deprecated `SkyPageSummaryModule` 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.
13
+ */
11
14
  export declare class SkyPageSummaryModule {
12
15
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyPageSummaryModule, never>;
13
16
  static ɵmod: i0.ɵɵNgModuleDeclaration<SkyPageSummaryModule, [typeof i1.SkyPageSummaryAlertComponent, typeof i2.SkyPageSummaryComponent, typeof i3.SkyPageSummaryContentComponent, typeof i4.SkyPageSummaryImageComponent, typeof i5.SkyPageSummaryKeyInfoComponent, typeof i6.SkyPageSummaryStatusComponent, typeof i7.SkyPageSummarySubtitleComponent, typeof i8.SkyPageSummaryTitleComponent], [typeof i9.CommonModule], [typeof i1.SkyPageSummaryAlertComponent, typeof i2.SkyPageSummaryComponent, typeof i3.SkyPageSummaryContentComponent, typeof i4.SkyPageSummaryImageComponent, typeof i5.SkyPageSummaryKeyInfoComponent, typeof i6.SkyPageSummaryStatusComponent, typeof i7.SkyPageSummarySubtitleComponent, typeof i8.SkyPageSummaryTitleComponent]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "6.0.0-beta.9",
3
+ "version": "6.0.2",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -46,14 +46,14 @@
46
46
  "@angular/forms": "^13.3.2",
47
47
  "@angular/platform-browser": "^13.3.2",
48
48
  "@angular/router": "^13.3.2",
49
- "@skyux-sdk/testing": "6.0.0-beta.9",
50
- "@skyux/core": "6.0.0-beta.9",
51
- "@skyux/forms": "6.0.0-beta.9",
52
- "@skyux/i18n": "6.0.0-beta.9",
53
- "@skyux/indicators": "6.0.0-beta.9",
54
- "@skyux/modals": "6.0.0-beta.9",
55
- "@skyux/router": "6.0.0-beta.9",
56
- "@skyux/theme": "6.0.0-beta.9"
49
+ "@skyux-sdk/testing": "6.0.2",
50
+ "@skyux/core": "6.0.2",
51
+ "@skyux/forms": "6.0.2",
52
+ "@skyux/i18n": "6.0.2",
53
+ "@skyux/indicators": "6.0.2",
54
+ "@skyux/modals": "6.0.2",
55
+ "@skyux/router": "6.0.2",
56
+ "@skyux/theme": "6.0.2"
57
57
  },
58
58
  "dependencies": {
59
59
  "tslib": "^2.3.1"