forked from eclipse-edc/DataDashboard
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
707 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
src/app/component-library/url-list-dialog/url-list-dialog.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import {CommonModule} from '@angular/common'; | ||
import {NgModule} from '@angular/core'; | ||
import {FormsModule} from '@angular/forms'; | ||
import {MatButtonModule} from '@angular/material/button'; | ||
import {MatCardModule} from '@angular/material/card'; | ||
import {MatDialogModule} from '@angular/material/dialog'; | ||
import {MatIconModule} from '@angular/material/icon'; | ||
import {NgxJsonViewerModule} from 'ngx-json-viewer'; | ||
import {ConfirmationDialogModule} from '../confirmation-dialog/confirmation-dialog.module'; | ||
import {PipesAndDirectivesModule} from '../pipes-and-directives/pipes-and-directives.module'; | ||
import {UrlListDialogComponent} from './url-list-dialog/url-list-dialog.component'; | ||
import {UrlListDialogService} from './url-list-dialog/url-list-dialog.service'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
// Angular | ||
CommonModule, | ||
FormsModule, | ||
|
||
// Angular Material | ||
MatButtonModule, | ||
MatCardModule, | ||
MatDialogModule, | ||
MatIconModule, | ||
|
||
// Third Party | ||
NgxJsonViewerModule, | ||
|
||
// EDC UI Modules | ||
PipesAndDirectivesModule, | ||
ConfirmationDialogModule, | ||
], | ||
declarations: [UrlListDialogComponent], | ||
providers: [UrlListDialogService], | ||
exports: [UrlListDialogComponent], | ||
}) | ||
export class UrlListDialogModule {} |
Oops, something went wrong.