60 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% include "lib/githubLinks.html" -%}
 | 
						|
{% include "lib/paramList.html" -%}
 | 
						|
{% extends 'class.template.html' -%}
 | 
						|
 | 
						|
{% block annotations %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block additional -%}
 | 
						|
 | 
						|
{%- if doc.directiveOptions.selector.split(',').length %}
 | 
						|
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
 | 
						|
  div(flex="20" flex-xs="100")
 | 
						|
    h2(class="h2-api-docs") Selectors
 | 
						|
  div(flex="80" flex-xs="100")
 | 
						|
    {% for selector in doc.directiveOptions.selector.split(',') %}
 | 
						|
    p.selector
 | 
						|
      code {$ selector $}
 | 
						|
    {% endfor %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{% if doc.outputs %}
 | 
						|
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
 | 
						|
  div(flex="20" flex-xs="100")
 | 
						|
    h2(class="h2-api-docs") Outputs
 | 
						|
  div(flex="80" flex-xs="100")
 | 
						|
  {% for binding, property in doc.outputs %}
 | 
						|
    div(class="code-margin")
 | 
						|
      code {$ property.bindingName $}
 | 
						|
      |  bound to 
 | 
						|
      code {$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}
 | 
						|
    :marked
 | 
						|
{$ event.memberDoc.description | indentForMarkdown(6) | trimBlankLines $}
 | 
						|
  {% endfor %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{% if doc.inputs %}
 | 
						|
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
 | 
						|
  div(flex="20" flex-xs="100")
 | 
						|
    h2(class="h2-api-docs") Inputs
 | 
						|
  div(flex="80" flex-xs="100")
 | 
						|
    {% for binding, property in doc.inputs %}
 | 
						|
    div(class="code-margin")
 | 
						|
      code {$ property.bindingName $}
 | 
						|
      |  bound to 
 | 
						|
      code {$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}
 | 
						|
    :marked
 | 
						|
{$ event.memberDoc.description | indentForMarkdown(4) | trimBlankLines $}
 | 
						|
    {% endfor %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{%- if doc.directiveOptions.exportAs %}
 | 
						|
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
 | 
						|
  div(flex="20" flex-xs="100")
 | 
						|
    h2(class="h2-api-docs") Exported as
 | 
						|
  div(flex="80" flex-xs="100")
 | 
						|
    p.input
 | 
						|
      code {$ doc.directiveOptions.exportAs $}
 | 
						|
{% endif %}
 | 
						|
{% endblock %}
 |