feat: update npm packages

This commit is contained in:
Sergey Andrievskiy 2021-08-06 18:48:35 +03:00 committed by d.strigo
parent f6d9ec88ad
commit 7a22737611
321 changed files with 19716 additions and 84 deletions

View file

@ -0,0 +1,30 @@
import {Component, Input} from '@angular/core';
@Component({
selector: 'ngx-integration-description',
template: `
<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 }}
</li>
</ul>
<a nbButton
[href]="url"
status="primary"
target="_blank"
> {{buttonText}} </a>
`,
styleUrls: ['./integration-description.component.scss'],
})
export class IntegrationDescriptionComponent {
@Input() features: string[];
@Input() url: string;
@Input() buttonText: string;
}