enum.tmpl.partial 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
  2. {{>partials/class.header}}
  3. {{#children}}
  4. <h3 id="{{id}}">{{>partials/classSubtitle}}</h3>
  5. <table class="table table-bordered table-striped table-condensed">
  6. <thead>
  7. <tr>
  8. <th>{{__global.name}}</th>
  9. <th>{{__global.description}}</th>
  10. </tr>
  11. <thead>
  12. <tbody>
  13. {{#children}}
  14. <tr>
  15. <td id="{{id}}">{{name.0.value}}</td>
  16. <td>{{{summary}}}</td>
  17. </tr>
  18. {{/children}}
  19. </tbody>
  20. </table>
  21. {{/children}}
  22. {{#seealso.0}}
  23. <h5 id="{{id}}_seealso">{{__global.seealso}}</h5>
  24. <div class="seealso">
  25. {{/seealso.0}}
  26. {{#seealso}}
  27. {{#isCref}}
  28. <div>{{{type.specName.0.value}}}</div>
  29. {{/isCref}}
  30. {{^isCref}}
  31. <div>{{{url}}}</div>
  32. {{/isCref}}
  33. {{/seealso}}
  34. {{#seealso.0}}
  35. </div>
  36. {{/seealso.0}}
  37. {{#extensionMethods.0}}
  38. <h3 id="extensionmethods">{{__global.extensionMethods}}</h3>
  39. {{/extensionMethods.0}}
  40. {{#extensionMethods}}
  41. <div>
  42. {{#definition}}
  43. <xref uid="{{definition}}" fullName="{{fullName.0.value}}" name="{{nameWithType.0.value}}"/>
  44. {{/definition}}
  45. {{^definition}}
  46. <xref uid="{{uid}}" fullName="{{fullName.0.value}}" name="{{nameWithType.0.value}}"/>
  47. {{/definition}}
  48. </div>
  49. {{/extensionMethods}}