2017-06-29 17:23:27 -04:00
|
|
|
{% import "lib/directiveHelpers.html" as directiveHelper -%}
|
2017-05-02 10:08:49 -04:00
|
|
|
{% extends 'class.template.html' -%}
|
|
|
|
|
2018-08-31 10:57:53 -04:00
|
|
|
{% block overview %}{% endblock %}
|
|
|
|
|
|
|
|
{% block details -%}
|
|
|
|
{% include "includes/ngmodule.html" %}
|
|
|
|
{% include "includes/selectors.html" %}
|
|
|
|
|
2017-06-29 17:23:27 -04:00
|
|
|
{$ directiveHelper.renderBindings(doc.inputs, 'inputs', 'input', 'Inputs') $}
|
2018-08-31 10:57:53 -04:00
|
|
|
|
2017-06-29 17:23:27 -04:00
|
|
|
{$ directiveHelper.renderBindings(doc.outputs, 'outputs', 'output', 'Outputs') $}
|
2018-08-31 10:57:53 -04:00
|
|
|
|
2017-05-02 10:08:49 -04:00
|
|
|
{% include "includes/export-as.html" %}
|
2018-08-31 10:57:53 -04:00
|
|
|
|
|
|
|
{% if doc.description or doc.usageNotes %}
|
|
|
|
<section class="description">
|
|
|
|
<h2>Description</h2>
|
|
|
|
{$ (doc.description or '') | trimBlankLines | marked $}
|
|
|
|
{$ (doc.usageNotes or '') | trimBlankLines | marked $}
|
|
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h2>Class</h2>
|
|
|
|
{% include "includes/class-members.html" %}
|
2017-05-02 10:08:49 -04:00
|
|
|
{% endblock %}
|
2017-09-11 08:55:52 -04:00
|
|
|
|
2018-08-31 10:57:53 -04:00
|
|
|
{% block endNotes %}{% endblock %}
|