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({
|
2021-09-01 19:01:01 -04:00
|
|
|
selector: "app-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;
|
2021-09-01 19:01:01 -04:00
|
|
|
@ContentChild(TemplateRef, { static: false })
|
|
|
|
widgetParamsTemplate: TemplateRef<any>;
|
2017-12-23 01:30:42 -05:00
|
|
|
|
2021-09-01 19:01:01 -04:00
|
|
|
constructor() {}
|
|
|
|
}
|