mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
feat(docs): added get premium modal in landing
fix(docs): fixed styles for get download modal
This commit is contained in:
parent
780e230503
commit
b72fb30dd1
13 changed files with 287 additions and 6 deletions
26
docs/app/shared/components/premium/premium.component.ts
Normal file
26
docs/app/shared/components/premium/premium.component.ts
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright Akveo. All Rights Reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*/
|
||||
|
||||
import { Component } from '@angular/core';
|
||||
import {NbDialogService} from '@nebular/theme';
|
||||
import {PremiumFormComponent} from '../premium-form/premium-form.component';
|
||||
|
||||
@Component({
|
||||
selector: 'ngx-premium',
|
||||
templateUrl: './premium.component.html',
|
||||
styleUrls: ['./premium.component.scss'],
|
||||
})
|
||||
export class PremiumComponent {
|
||||
|
||||
|
||||
constructor(private dialogService: NbDialogService) {
|
||||
}
|
||||
|
||||
openDialog() {
|
||||
this.dialogService.open(PremiumFormComponent);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue