@energycap/components 0.27.7 → 0.27.8

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.
@@ -13,6 +13,8 @@ import { Overlay } from '../../../display/view-overlay/view-overlay.component';
13
13
  import { PageStatus } from '../page-statuses';
14
14
  export declare class PageInitResult {
15
15
  title?: string;
16
+ subTitle?: string;
17
+ subTitleUrl?: string;
16
18
  breadcrumbs?: NavItem[];
17
19
  help?: Help;
18
20
  }
@@ -23,6 +25,14 @@ export declare abstract class PageBaseComponent implements OnInit, AfterViewInit
23
25
  * Title for the page displayed in the header
24
26
  */
25
27
  title?: string;
28
+ /**
29
+ * Sub title for the page displayed in the header
30
+ */
31
+ subTitle?: string;
32
+ /**
33
+ * Sub title url for the page displayed in the header
34
+ */
35
+ subTitleUrl?: string;
26
36
  /**
27
37
  * Status overlay for the page
28
38
  */
@@ -2,4 +2,5 @@ export declare class PageTitleComponent {
2
2
  title?: string;
3
3
  titleIcon?: string;
4
4
  subTitle?: string;
5
+ subTitleUrl?: string;
5
6
  }
@@ -29,6 +29,7 @@ export declare class PageViewComponent {
29
29
  title?: string;
30
30
  titleIcon?: string;
31
31
  subTitle?: string;
32
+ subTitleUrl?: string;
32
33
  /**
33
34
  * Label for the actions dropdown in the header. Default is 'Actions'
34
35
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.27.7",
3
+ "version": "0.27.8",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },