jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
23 lines (18 loc) • 495 B
text/typescript
import { Component, ViewChild, ViewEncapsulation } from '@angular/core';
import { jqxTooltipComponent } from 'jqwidgets-ng/jqxtooltip';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styles: [`
jqxTooltip {
margin: 8px;
}
jqxTooltip div {
width: 110px;
height: 162px;
}
`],
encapsulation: ViewEncapsulation.None
})
export class AppComponent {
}