UNPKG

@stratio/egeo

Version:
63 lines (59 loc) 2.56 kB
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Stratio Egeo - Documentation</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" type="image/png" href="assets/images/favicon.png"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> </head> <body class="container-fluid"> <a href="/index.html">Go Back to index</a><br> <h1 id="fullscreenlayoutcomponent">Fullscreen Layout (Component)</h1> <p>Component that shows a full screen view with a title and space for buttons and a main content defined by user using ng-content</p> <h2 id="inputs">Inputs</h2> <table class="table table-striped"> <thead> <tr> <th id="property">Property</th> <th id="type">Type</th> <th id="req">Req</th> <th id="description">Description</th> <th id="default">Default</th> </tr> </thead> <tbody> <tr> <td>fullWidth</td> <td>Boolean</td> <td>False</td> <td>Enable full width visualization</td> <td>false</td> </tr> <tr> <td>showCloseButton</td> <td>Boolean</td> <td>False</td> <td>Shows header close button</td> <td>true</td> </tr> </tbody> </table> <h2 id="example">Example</h2> <pre><code class="html language-html">&lt;st-fullscreen-layout [fullWidth]="true"&gt; &lt;p class="st-fullscreen-layout-title"&gt;Edition&lt;/p&gt; &lt;div class="st-fullscreen-layout-buttons"&gt; &lt;button class="button button-secondary button-separator" (click)="onClickHideButton()"&gt;Cancel&lt;/button&gt; &lt;button class="button button-primary" (click)="onClickHideButton()"&gt;Save&lt;/button&gt; &lt;/div&gt; &lt;div class="st-fullscreen-layout-content"&gt; &lt;h1&gt;TEST&lt;/h1&gt; &lt;/div&gt; &lt;/st-fullscreen-layout&gt; </code></pre> </body> </html>