-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/390 standalone support (#471)
#close [390](#390) --------- Co-authored-by: Mateusz Stefańczyk <[email protected]>
- Loading branch information
1 parent
36a465f
commit a658274
Showing
16 changed files
with
125 additions
and
115 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
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
18 changes: 16 additions & 2 deletions
18
apps/ngu-carousel-example/src/app/banner-vertical/banner-vertical.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 |
---|---|---|
@@ -1,12 +1,26 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { NguCarouselModule } from '@ngu/carousel'; | ||
import { | ||
NguCarousel, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective, | ||
NguItemComponent | ||
} from '@ngu/carousel'; | ||
|
||
import { BannerVerticalRoutingModule } from './banner-vertical-routing.module'; | ||
import { BannerVerticalComponent } from './banner-vertical.component'; | ||
|
||
@NgModule({ | ||
declarations: [BannerVerticalComponent], | ||
imports: [CommonModule, BannerVerticalRoutingModule, NguCarouselModule] | ||
imports: [ | ||
CommonModule, | ||
BannerVerticalRoutingModule, | ||
NguCarousel, | ||
NguItemComponent, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective | ||
] | ||
}) | ||
export class BannerVerticalModule {} |
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,11 +1,25 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { NguCarouselModule } from '@ngu/carousel'; | ||
import { BannerRoutingModule } from './banner-routing.module'; | ||
import { BannerComponent } from './banner.component'; | ||
import { | ||
NguCarousel, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective, | ||
NguItemComponent | ||
} from '@ngu/carousel'; | ||
|
||
@NgModule({ | ||
declarations: [BannerComponent], | ||
imports: [CommonModule, BannerRoutingModule, NguCarouselModule] | ||
imports: [ | ||
CommonModule, | ||
BannerRoutingModule, | ||
NguCarousel, | ||
NguItemComponent, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective | ||
] | ||
}) | ||
export class BannerModule {} |
20 changes: 18 additions & 2 deletions
20
apps/ngu-carousel-example/src/app/tile-2-images/tile-2-images.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 |
---|---|---|
@@ -1,12 +1,28 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { NguCarouselModule } from '@ngu/carousel'; | ||
import { | ||
NguCarousel, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective, | ||
NguItemComponent, | ||
NguTileComponent | ||
} from '@ngu/carousel'; | ||
|
||
import { Tile2RoutingModule } from './tile-routing.module'; | ||
import { Tile2ImagesComponent } from './tile-2-images.component'; | ||
|
||
@NgModule({ | ||
declarations: [Tile2ImagesComponent], | ||
imports: [CommonModule, Tile2RoutingModule, NguCarouselModule] | ||
imports: [ | ||
CommonModule, | ||
Tile2RoutingModule, | ||
NguCarousel, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective, | ||
NguItemComponent, | ||
NguTileComponent | ||
] | ||
}) | ||
export class Tile2ImagesModule {} |
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,12 +1,28 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { NguCarouselModule } from '@ngu/carousel'; | ||
import { | ||
NguCarousel, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective, | ||
NguTileComponent, | ||
NguCarouselPointDirective | ||
} from '@ngu/carousel'; | ||
|
||
import { TileRoutingModule } from './tile-routing.module'; | ||
import { TileComponent } from './tile.component'; | ||
|
||
@NgModule({ | ||
declarations: [TileComponent], | ||
imports: [CommonModule, TileRoutingModule, NguCarouselModule] | ||
imports: [ | ||
CommonModule, | ||
TileRoutingModule, | ||
NguCarousel, | ||
NguTileComponent, | ||
NguCarouselDefDirective, | ||
NguCarouselNextDirective, | ||
NguCarouselPrevDirective, | ||
NguCarouselPointDirective | ||
] | ||
}) | ||
export class TileModule {} |
21 changes: 19 additions & 2 deletions
21
apps/ngu-carousel-example/src/app/wrapped/wrapped.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
This file was deleted.
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
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
Oops, something went wrong.