2017-12-23 15:32:07 -05:00
|
|
|
import { WidgetComponent } from "../widget.component";
|
2017-12-23 01:30:42 -05:00
|
|
|
import { Component, ContentChild, Input, TemplateRef } from "@angular/core";
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: "my-widget-config",
|
2018-03-24 23:44:05 -04:00
|
|
|
templateUrl: "config-screen.widget.component.html",
|
2018-03-24 19:16:52 -04:00
|
|
|
styleUrls: ["config-screen.widget.component.scss"],
|
2017-12-23 01:30:42 -05:00
|
|
|
})
|
|
|
|
export class ConfigScreenWidgetComponent {
|
|
|
|
|
2017-12-23 15:32:07 -05:00
|
|
|
@Input() widgetComponent: WidgetComponent;
|
2019-06-29 02:40:24 -04:00
|
|
|
@ContentChild(TemplateRef, {static: false}) widgetParamsTemplate: TemplateRef<any>;
|
2017-12-23 01:30:42 -05:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
}
|
|
|
|
}
|