File

projects/lib/src/utils/template-name.directive.ts

Metadata

Index

Properties
Inputs

Constructor

constructor(template: TemplateRef)
Parameters :
Name Type Optional
template TemplateRef<any> No

Inputs

display
Type : string
iconClass
Type : string
title
Type : string
uib-template
Type : string

Properties

Public Readonly template
Type : TemplateRef<any>
import { Directive, Input, TemplateRef } from '@angular/core';

@Directive({
  selector: '[uib-template]',
})
export class TemplateNameDirective {
  @Input('uib-template') templateName: string;
  @Input() display?: string;
  @Input() iconClass?: string;
  @Input() title?: string;

  constructor(public readonly template: TemplateRef<any>) {}
}

results matching ""

    No results matching ""