-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
de4d4d0
commit 064560c
Showing
30 changed files
with
410 additions
and
80 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
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
29 changes: 29 additions & 0 deletions
29
front/src/app/components/date-select/date-select.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,29 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { DateSelectComponent } from './date-select.component' | ||
import { MaterialModule } from 'src/app/libs/material.module' | ||
import { FormsModule, ReactiveFormsModule } from '@angular/forms' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
DateSelectComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
MaterialModule, | ||
ReactiveFormsModule, | ||
FormsModule | ||
], | ||
exports: list, | ||
}) | ||
export class DateSelectModule {} |
24 changes: 24 additions & 0 deletions
24
front/src/app/components/etp-preview/etp-preview.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,24 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { EtpPreviewComponent } from './etp-preview.component' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
EtpPreviewComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
], | ||
exports: list, | ||
}) | ||
export class EtpPreviewModule {} |
24 changes: 24 additions & 0 deletions
24
front/src/app/components/help-button/help-button.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,24 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { HelpButtonComponent } from './help-button.component' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
HelpButtonComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
], | ||
exports: list, | ||
}) | ||
export class HelpButtonModule {} |
29 changes: 29 additions & 0 deletions
29
front/src/app/components/input-button/input-button.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,29 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { InputButtonComponent } from './input-button.component' | ||
import { FormsModule, ReactiveFormsModule } from '@angular/forms' | ||
import { MaterialModule } from 'src/app/libs/material.module' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
InputButtonComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
FormsModule, | ||
ReactiveFormsModule, | ||
MaterialModule | ||
], | ||
exports: list, | ||
}) | ||
export class InputButtonModule {} |
25 changes: 25 additions & 0 deletions
25
front/src/app/components/panel-activities/panel-activities.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,25 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { PanelActivitiesComponent } from './panel-activities.component' | ||
import { ProgressionBarComponent } from './progression-bar/progression-bar.component' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
PanelActivitiesComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list, ProgressionBarComponent], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
], | ||
exports: list, | ||
}) | ||
export class PanelActivitiesModule {} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ession-bar/progression-bar.component.scss → ...ession-bar/progression-bar.component.scss
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import "../../styles/utils.scss"; | ||
@import "../../../styles/utils.scss"; | ||
|
||
:host { | ||
display: block; | ||
|
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.
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,31 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { SelectComponent } from './select.component' | ||
import { MaterialModule } from 'src/app/libs/material.module' | ||
import { SelectCheckAllComponent } from './select-check-all/select-check-all.component' | ||
import { FormsModule } from '@angular/forms' | ||
import { PipesModule } from 'src/app/pipes/pipes.module' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
SelectComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list, SelectCheckAllComponent], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
MaterialModule, | ||
FormsModule, | ||
PipesModule | ||
], | ||
exports: list, | ||
}) | ||
export class SelectModule {} |
24 changes: 24 additions & 0 deletions
24
front/src/app/components/speedometer/speedometer.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,24 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { SpeedometerComponent } from './speedometer.component' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
SpeedometerComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
], | ||
exports: list, | ||
}) | ||
export class SpeedometerModule {} |
30 changes: 30 additions & 0 deletions
30
front/src/app/components/text-editor/text-editor.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,30 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { MaterialModule } from 'src/app/libs/material.module' | ||
import { FormsModule } from '@angular/forms' | ||
import { PipesModule } from 'src/app/pipes/pipes.module' | ||
import { TextEditorComponent } from './text-editor.component' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [ | ||
TextEditorComponent, | ||
] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
MaterialModule, | ||
FormsModule, | ||
PipesModule | ||
], | ||
exports: list, | ||
}) | ||
export class TextEditorModule {} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...c/app/components/news/news.component.scss → ...mponents/wrapper/news/news.component.scss
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import '../../styles/utils.scss'; | ||
@import '../../../styles/utils.scss'; | ||
|
||
:host { | ||
position: relative; | ||
|
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,33 @@ | ||
import { NgModule } from '@angular/core' | ||
import { CommonModule } from '@angular/common' | ||
import { RouterModule } from '@angular/router' | ||
import { WrapperComponent } from './wrapper.component' | ||
import { NewsComponent } from './news/news.component' | ||
import { MaterialModule } from 'src/app/libs/material.module' | ||
import { PopupModule } from '../popup/popup.module' | ||
import { PipesModule } from 'src/app/pipes/pipes.module' | ||
import { TextEditorModule } from '../text-editor/text-editor.module' | ||
import { HelpButtonModule } from '../help-button/help-button.module' | ||
|
||
/** | ||
* Liste des composants à importer | ||
*/ | ||
const list = [WrapperComponent] | ||
|
||
/** | ||
* Module d'import de composant | ||
*/ | ||
@NgModule({ | ||
declarations: [...list, NewsComponent], | ||
imports: [ | ||
CommonModule, | ||
RouterModule, | ||
MaterialModule, | ||
PopupModule, | ||
PipesModule, | ||
TextEditorModule, | ||
HelpButtonModule, | ||
], | ||
exports: list, | ||
}) | ||
export class WrapperModule {} |
Oops, something went wrong.