Skip to content

Commit

Permalink
ci: status
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Jun 24, 2024
1 parent dd96b08 commit 96d6406
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions projects/status/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
export * from './status-detail';

export * from './status.module';
export * from './status.component';
export * from './status.service';
export * from './status.model';
3 changes: 3 additions & 0 deletions projects/status/src/status-detail/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './status-detail.module';
export * from './status-detail.component';
export * from './status-detail-dialog.service';
4 changes: 2 additions & 2 deletions projects/status/src/status.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { NgModule } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
import { AbstractLazyModule } from '@hug/ngx-core';
import { SnackbarModule } from '@hug/ngx-snackbar';
import { SnackbarComponent } from '@hug/ngx-snackbar';

import { StatusComponent } from './status.component';

Expand All @@ -14,7 +14,7 @@ import { StatusComponent } from './status.component';
CommonModule,
MatButtonModule,
MatIconModule,
SnackbarModule
SnackbarComponent
]
})
export class StatusModule extends AbstractLazyModule<StatusComponent> {
Expand Down

0 comments on commit 96d6406

Please sign in to comment.