2017-12-23 15:32:07 -05:00
|
|
|
import { WidgetComponent } from "../widget.component";
|
2017-12-22 23:33:37 -05:00
|
|
|
import { WIDGET_CUSTOM } from "../../../shared/models/widget";
|
|
|
|
import { Component } from "@angular/core";
|
2020-10-23 07:30:20 -04:00
|
|
|
import { TranslateService } from "@ngx-translate/core";
|
2017-12-22 23:33:37 -05:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
templateUrl: "custom.widget.component.html",
|
|
|
|
styleUrls: ["custom.widget.component.scss"],
|
|
|
|
})
|
2017-12-23 15:32:07 -05:00
|
|
|
export class CustomWidgetConfigComponent extends WidgetComponent {
|
2020-10-23 07:30:20 -04:00
|
|
|
constructor(public translate: TranslateService) {
|
|
|
|
super(WIDGET_CUSTOM, "Custom Widget", "generic", translate);
|
2017-12-22 23:33:37 -05:00
|
|
|
}
|
2020-10-23 07:30:20 -04:00
|
|
|
}
|