mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
23 lines
506 B
Plaintext
23 lines
506 B
Plaintext
{% if hasInputs %}
|
|
### Properties
|
|
|
|
| Name | Type | Default value | Description |
|
|
| -- | -- | -- | -- |
|
|
{% each properties as prop %}
|
|
{% if prop.isInput %}
|
|
| {{prop.name}} | `{{{prop.type}}}` | {{{prop.defaultValue}}} | {{{prop.docText}}} |
|
|
{% endif %}
|
|
{% endeach %}
|
|
{% endif %}
|
|
{% if hasOutputs%}
|
|
|
|
### Events
|
|
|
|
| Name | Type | Description |
|
|
| -- | -- | -- |
|
|
{% each properties as prop %}
|
|
{% if prop.isOutput %}
|
|
| {{prop.name}} | `{{{prop.type}}}` | {{{prop.docText}}} |
|
|
{% endif %}
|
|
{% endeach %}
|
|
{% endif %} |