matrix-dimension/web/app/configs/widget/config-screen/config-screen.widget.component.ts

16 lines
502 B
TypeScript
Raw Normal View History

2017-12-23 15:32:07 -05:00
import { WidgetComponent } from "../widget.component";
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",
styleUrls: ["config-screen.widget.component.scss"],
})
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>;
constructor() {
}
}