This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <fieldset> | |
| <legend>Radio button</legend> | |
| <div class="field multi"> | |
| <label [ngClass]="{selected: myRadios==='yes'}"> | |
| <input type="radio" value="yes" name="radiosmulti" [(ngModel)]="myRadios"> | |
| <span>Yes</span> | |
| </label> | |
| </div> | |
| <div class="field multi"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <fieldset> | |
| <legend>Radio button</legend> | |
| <div class="field multi"> | |
| <label [ngClass]="{selected: myRadios==='yes'}"> | |
| <input type="radio" value="yes" name="radiosmulti" [(ngModel)]="myRadios"> | |
| <span>Yes</span> | |
| </label> | |
| </div> | |
| <div class="field multi"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <-- Template --> | |
| <div | |
| (click)="onClick($event)" | |
| class="avatar-wrapper flex-group flex-align-center flex-start bg-transparent" | |
| > | |
| <div class="avatar cursor-pointer width-1-75 height-1-75"> | |
| <div> | |
| <img onerror="this.style.display='none'" src="./assets/images/samples/obi-wan.png" /> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ph-info-panel | |
| panelWidth="30rem" | |
| panelHeight="20rem" | |
| panelStatus="info" | |
| [roundedCorners]="false" | |
| [removeHeaderBorder]="false" | |
| [hideFooter]="false" | |
| > | |
| <ng-container custom-header> | |
| <section class="flex-group space-between"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CustomCardComponent } from './custom-card.component'; | |
| import { AvatarComponent } from "./avatar.component"; | |
| private columnDefs = [ | |
| { | |
| headerName: 'Hover for card tooltip', | |
| field: "athlete", | |
| width: 180, | |
| suppressSizeToFit: false, | |
| headerCheckboxSelection: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="flex-group flex-start"> | |
| <div class="field"> | |
| <label>Place</label> | |
| <input type="text" /> | |
| </div> | |
| <div class="field"> | |
| <label>Time</label> | |
| <ngb-timepicker [(ngModel)]="time" [seconds]="seconds" /> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ph-blade | |
| [toggleBlade]="toggleBlade" | |
| (bladeOpen)="bladeIsOpen($event)" | |
| topPosition="3.5rem" | |
| zIndex="30" | |
| bladeSize="{{theBladeSize}}" | |
| bladeHeading="{{bladeHeading}}" | |
| [enableIcon]="showIcon" | |
| iconName="{{bladeIcon}}" | |
| > |