0.0.10 • Published 2 years ago

@mukhuve/ngx v0.0.10

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

@mukhuve/ngx is a tools package for angular apps

Demo

ngx.mukhuve.com

Installation

npm install @mukhuve/ngx

Usage

Dialog

import { DialogModule } from '@mukhuve/ngx/dialog';

@NgModule({
  imports: [
    DialogModule
  ]
})
export class AppModule { }

...

import { DialogService } from '@mukhuve/ngx/dialog';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {

  constructor(private dialogService: DialogService) {}

  openDialog() {
    this.dialogService.open({
    });
  }
}
0.0.10

2 years ago

0.0.9

2 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.4

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.1

3 years ago