Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.74 KB | None | 0 0
  1. <div fxLayout="column">
  2. <table class="table-container" mat-table [dataSource]="buttonsDescription">
  3. <ng-container matColumnDef="type">
  4. <th mat-header-cell *matHeaderCellDef>{{ 'app.info.component.type' | translate }}</th>
  5. <td mat-cell *matCellDef="let element"> {{element.type}}</td>
  6. </ng-container>
  7.  
  8. <ng-container matColumnDef="name">
  9. <th mat-header-cell *matHeaderCellDef>{{ 'app.info.component.name' | translate }}</th>
  10. <td mat-cell *matCellDef="let element"> {{element.name}}</td>
  11. </ng-container>
  12.  
  13. <ng-container matColumnDef="description">
  14. <th mat-header-cell *matHeaderCellDef>{{ 'app.info.component.description' | translate }}</th>
  15. <td mat-cell *matCellDef="let element">{{ element.description | translate }}</td>
  16. </ng-container>
  17.  
  18. <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
  19. <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
  20. </table>
  21.  
  22. <div fxLayout="row"
  23. fxLayout.lt-md="column"
  24. fxLayoutAlign="space-between start"
  25. fxLayoutAlign.lt-md="space-between center"
  26. fxLayoutGap.lt-md="30px">
  27. <div fxLayout="column"
  28. fxLayoutGap="30px">
  29. <div fxLayout="row"
  30. fxLayoutAlign="start center"
  31. fxLayoutGap="10px">
  32. <play-app-button class="width-90" aspect="secondary" type="mat-icon-button" icon="app"></play-app-button>
  33. <div class="width-200" fxLayout="column">
  34. <span><b>aspect:</b> secondary</span>
  35. <span><b>type:</b> mat-icon-button</span>
  36. <span><b>icon:</b> app</span>
  37. </div>
  38. </div>
  39.  
  40. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  41. <play-app-button class="width-90" aspect="secondary" type="mat-mini-fab" content="Tak"></play-app-button>
  42. <div class="width-200" fxLayout="column">
  43. <span><b>content:</b> Tak</span>
  44. <span><b>aspect:</b> secondary</span>
  45. <span><b>type:</b> mat-mini-fab</span>
  46. </div>
  47. </div>
  48.  
  49. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  50. <play-app-button class="width-90" aspect="warning" type="mat-fab-icon" icon="app"></play-app-button>
  51. <div class="width-200" fxLayout="column">
  52. <span><b>aspect:</b> warning</span>
  53. <span><b>type:</b> mat-fab-icon</span>
  54. <span><b>icon:</b> app</span>
  55. </div>
  56. </div>
  57.  
  58. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  59. <play-app-button class="width-90" type="mat-fab-icon" icon="football-player"></play-app-button>
  60. <div class="width-200" fxLayout="column">
  61. <span><b>type:</b> mat-fab-icon</span>
  62. <span><b>icon:</b> football-player</span>
  63. </div>
  64. </div>
  65.  
  66. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  67. <play-app-button class="width-90" type="mat-fab-icon" icon="football-player" disabled='true'></play-app-button>
  68. <div class="width-200" fxLayout="column">
  69. <span><b>type:</b> mat-fab-icon</span>
  70. <span><b>icon:</b> football-player</span>
  71. <span><b>disabled:</b> true</span>
  72. </div>
  73. </div>
  74. </div>
  75.  
  76. <div fxLayout="column" fxLayoutGap="30px">
  77. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  78. <play-app-button class="width-90" aspect="primary" type="mat-button" content="Dalej"></play-app-button>
  79. <div class="width-200" fxLayout="column">
  80. <span><b>content:</b> Dalej</span>
  81. <span><b>aspect:</b> primary</span>
  82. <span><b>type:</b> mat-button</span>
  83. </div>
  84. </div>
  85.  
  86. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  87. <play-app-button class="width-90" aspect="secondary" type="mat-button" link="true"
  88. content="Zaloguj">
  89. </play-app-button>
  90. <div class="width-200" fxLayout="column">
  91. <span><b>content:</b> Zaloguj</span>
  92. <span><b>aspect:</b> secondary</span>
  93. <span><b>type:</b> mat-button</span>
  94. <span><b>link:</b> true</span>
  95. </div>
  96. </div>
  97.  
  98. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  99. <play-app-button class="width-90" aspect="warning" type="mat-stroked-button"
  100. content="Wyloguj">
  101. </play-app-button>
  102. <div class="width-200" fxLayout="column">
  103. <span><b>content:</b> Wyloguj</span>
  104. <span><b>aspect:</b> warning</span>
  105. <span><b>type:</b> mat-stroked-button</span>
  106. </div>
  107. </div>
  108. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  109. <play-app-button class="width-90" aspect="primary" type="mat-raised-button" icon="app" link="true"
  110. content="Dalej">
  111. </play-app-button>
  112. <div class="width-200" fxLayout="column">
  113. <span><b>content:</b> Dalej</span>
  114. <span><b>aspect:</b> primary</span>
  115. <span><b>type:</b> mat-raised-button</span>
  116. <span><b>link:</b> true</span>
  117. </div>
  118. </div>
  119.  
  120. <div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="10px">
  121. <play-app-button class="width-90" aspect="warning" type="mat-raised-button" icon="app" link="true" disabled=true
  122. content="Zarejestruj">
  123. </play-app-button>
  124. <div class="width-200" fxLayout="column">
  125. <span><b>content:</b> Zarejestruj</span>
  126. <span><b>aspect:</b> warning</span>
  127. <span><b>type:</b> mat-raised-button</span>
  128. <span><b>link:</b> true</span>
  129. <span><b>disabled:</b> true</span>
  130. </div>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement