ud-components 0.1.2 → 0.1.4
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.
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class EditViewSectionDirective {
|
|
4
5
|
templateRef: TemplateRef<any>;
|
|
5
|
-
label: string
|
|
6
|
+
label: string | Observable<string>;
|
|
6
7
|
icon: string;
|
|
7
8
|
constructor(templateRef: TemplateRef<any>);
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditViewSectionDirective, never>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { QueryList } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
2
3
|
import { EditViewSectionDirective } from './edit-view-section.directive';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class EditViewComponent {
|
|
@@ -9,6 +10,7 @@ export declare class EditViewComponent {
|
|
|
9
10
|
sections: QueryList<EditViewSectionDirective>;
|
|
10
11
|
get sectionsArray(): EditViewSectionDirective[];
|
|
11
12
|
get hasSections(): boolean;
|
|
13
|
+
resolveLabel(label: string | Observable<string>): Observable<string>;
|
|
12
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditViewComponent, never>;
|
|
13
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditViewComponent, "ud-edit-view", never, { "title": { "alias": "title"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "skeletonTitleHeight": { "alias": "skeletonTitleHeight"; "required": false; }; "skeletonBodyHeight": { "alias": "skeletonBodyHeight"; "required": false; }; }, {}, ["sections"], ["[header-actions]", "[main]", "[footer]"], true, never>;
|
|
14
16
|
}
|