mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
23 lines
569 B
Plaintext
23 lines
569 B
Plaintext
<% if (hasInputs) { %>
|
|
### Properties
|
|
|
|
| Name | Type | Default value | Description |
|
|
| -- | -- | -- | -- |
|
|
<% properties.forEach(function(prop) { -%>
|
|
<% if (prop.isInput) { -%>
|
|
| <%= prop.name %> | <% if (prop.type) { %>`<%- prop.type %>`<% } %> | <%- prop.defaultValue %> | <%- prop.docText %> |
|
|
<% } -%>
|
|
<% }) -%>
|
|
<% } %>
|
|
<% if (hasOutputs) { %>
|
|
|
|
### Events
|
|
|
|
| Name | Type | Description |
|
|
| -- | -- | -- |
|
|
<% properties.forEach(function(prop) { -%>
|
|
<% if (prop.isOutput) { -%>
|
|
| <%= prop.name %> | `<%- prop.type %>` | <%- prop.docText %> |
|
|
<% } -%>
|
|
<% }) -%>
|
|
<% } %> |