-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update angular + restructure project
- Loading branch information
Showing
86 changed files
with
2,282 additions
and
2,071 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
Large diffs are not rendered by default.
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
16 changes: 16 additions & 0 deletions
16
src/app/components/contribute-panel/contribue-panel.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,16 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { ContributePanelComponent } from './contribute-panel.component'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
], | ||
declarations: [ | ||
ContributePanelComponent, | ||
], | ||
exports: [ | ||
ContributePanelComponent | ||
] | ||
}) | ||
export class ContributePanelComponentModule { } |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,18 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { FooterComponent } from './footer.component'; | ||
import { MatButtonModule } from '@angular/material/button'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
MatButtonModule | ||
], | ||
declarations: [ | ||
FooterComponent, | ||
], | ||
exports: [ | ||
FooterComponent | ||
] | ||
}) | ||
export class FooterComponentModule { } |
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { InvoiceFormComponent } from './invoice-form.component'; | ||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; | ||
import { HttpClientModule } from '@angular/common/http'; | ||
import {MatInputModule} from '@angular/material/input'; | ||
import {MatSelectModule} from '@angular/material/select'; | ||
import { MatDialogModule } from '@angular/material/dialog'; | ||
import { MatSnackBarModule } from '@angular/material/snack-bar'; | ||
import { MatButtonModule } from '@angular/material/button'; | ||
|
||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
HttpClientModule, | ||
ReactiveFormsModule, | ||
MatInputModule, | ||
MatSelectModule, | ||
MatDialogModule, | ||
MatButtonModule, | ||
MatSnackBarModule | ||
], | ||
declarations: [ | ||
InvoiceFormComponent, | ||
], | ||
exports: [ | ||
InvoiceFormComponent | ||
] | ||
}) | ||
export class InvoiceFormComponentModule { } |
2 changes: 1 addition & 1 deletion
2
src/app/home/iticket/ticket-group-view.ts → ...p/components/iticket/ticket-group-view.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
2 changes: 1 addition & 1 deletion
2
src/app/home/iticket/ticket-view.ts → src/app/components/iticket/ticket-view.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
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { AngularFirestoreModule } from '@angular/fire/firestore'; | ||
import { MemberCardComponent } from './member-card.component'; | ||
import { MatCardModule } from '@angular/material/card'; | ||
import { MatButtonModule } from '@angular/material/button'; | ||
import { MatIconModule } from '@angular/material/icon'; | ||
import { SocialIconsService } from 'src/app/services/social-icons.service'; | ||
import { SocialsPipe } from './socials.pipe'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
AngularFirestoreModule, | ||
MatCardModule, | ||
MatButtonModule, | ||
MatIconModule | ||
], | ||
declarations: [ | ||
MemberCardComponent, | ||
SocialsPipe | ||
], | ||
exports: [ | ||
MemberCardComponent | ||
], | ||
providers: [ | ||
SocialIconsService | ||
] | ||
}) | ||
export class MemberCardComponentModule { } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,28 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NavigationComponent } from './navigation.component'; | ||
import { MatToolbarModule } from '@angular/material/toolbar'; | ||
import { MatButtonModule } from '@angular/material/button'; | ||
import { MatTabsModule } from '@angular/material/tabs'; | ||
import { NeonLogoComponentModule } from '../neon-logo/neon-logo.module'; | ||
import { MatIconModule } from '@angular/material/icon'; | ||
import { RouterModule } from '@angular/router'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
MatToolbarModule, | ||
MatButtonModule, | ||
MatTabsModule, | ||
MatIconModule, | ||
NeonLogoComponentModule | ||
], | ||
declarations: [ | ||
NavigationComponent, | ||
], | ||
exports: [ | ||
NavigationComponent | ||
] | ||
}) | ||
export class NavigationComponentModule { } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,16 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NeonDateComponent } from './neon-date.component'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
], | ||
declarations: [ | ||
NeonDateComponent, | ||
], | ||
exports: [ | ||
NeonDateComponent | ||
] | ||
}) | ||
export class NeonDateComponentModule { } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,16 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NeonLogoComponent } from './neon-logo.component'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
], | ||
declarations: [ | ||
NeonLogoComponent, | ||
], | ||
exports: [ | ||
NeonLogoComponent | ||
] | ||
}) | ||
export class NeonLogoComponentModule { } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.