Merge branch 'demo' into feat/ngx-premium-modal

This commit is contained in:
SFilinsky 2020-10-07 17:54:11 +03:00 committed by GitHub
commit c4be59be11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 81 additions and 236 deletions

View file

@ -1,20 +1,20 @@
import {Component, Input} from '@angular/core';
@Component({
selector: 'ngx-integration-description[features][url][buttonText]',
selector: 'ngx-integration-description',
template: `
<div class='header'> For why do you need a backend admin dashboard?</div>
<div class='subheader'> To save up to 300 hours on development. To use backend as ready to use examples. </div>
<div class='header2'> Features </div>
<ul class='features-list'>
<li *ngFor='let feature of features'
class='feature'
<div class="h6"> For why do you need a backend admin dashboard?</div>
<div class="subtitle"> To save up to 300 hours on development. To use backend as ready to use examples. </div>
<div class="h6"> Features </div>
<ul class="features-list">
<li *ngFor="let feature of features"
class="feature"
>
- {{ feature }}
{{ feature }}
</li>
</ul>
<a nbButton
[href]='url'
[href]="url"
status="primary"
target="_blank"
> {{buttonText}} </a>
@ -26,7 +26,5 @@ export class IntegrationDescriptionComponent {
@Input() features: string[];
@Input() url: string;
@Input() buttonText: string;
constructor() { }
}