-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(e2e): modal/basic: lazy load modals
- Loading branch information
Showing
15 changed files
with
86 additions
and
33 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
17 changes: 17 additions & 0 deletions
17
src/components/modal/test/basic/components/contact-us/contact-us.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,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { DeepLinkModule } from '../../../../../..'; | ||
|
||
import { ContactUsModal } from './contact-us'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
ContactUsModal, | ||
], | ||
imports: [ | ||
DeepLinkModule.forChild(ContactUsModal) | ||
], | ||
entryComponents: [ | ||
ContactUsModal, | ||
] | ||
}) | ||
export class ContactUsModalModule {} |
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
17 changes: 17 additions & 0 deletions
17
src/components/modal/test/basic/components/modal-pass-data/modal-pass-data.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,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { DeepLinkModule } from '../../../../../..'; | ||
|
||
import { ModalPassData } from './modal-pass-data'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
ModalPassData, | ||
], | ||
imports: [ | ||
DeepLinkModule.forChild(ModalPassData) | ||
], | ||
entryComponents: [ | ||
ModalPassData, | ||
] | ||
}) | ||
export class ModalPassDataModule {} |
2 changes: 1 addition & 1 deletion
2
.../pages/modal-pass-data/modal-pass-data.ts → ...onents/modal-pass-data/modal-pass-data.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
17 changes: 17 additions & 0 deletions
17
src/components/modal/test/basic/components/modal-with-inputs/modal-with-inputs.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,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { DeepLinkModule } from '../../../../../..'; | ||
|
||
import { ModalWithInputs } from './modal-with-inputs'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
ModalWithInputs, | ||
], | ||
imports: [ | ||
DeepLinkModule.forChild(ModalWithInputs) | ||
], | ||
entryComponents: [ | ||
ModalWithInputs, | ||
] | ||
}) | ||
export class ModalWithInputsModule {} |
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
src/components/modal/test/basic/components/toolbar/toolbar.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,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { DeepLinkModule } from '../../../../../..'; | ||
|
||
import { ToolbarModal } from './toolbar'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
ToolbarModal, | ||
], | ||
imports: [ | ||
DeepLinkModule.forChild(ToolbarModal) | ||
], | ||
entryComponents: [ | ||
ToolbarModal, | ||
] | ||
}) | ||
export class ToolbarModalModule {} |
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
2 changes: 1 addition & 1 deletion
2
...dal-first-page/modal-first-page.module.ts → ...c/pages/modal-first/modal-first.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
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
...l-second-page/modal-second-page.module.ts → ...pages/modal-second/modal-second.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
File renamed without changes.
File renamed without changes.