-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create feature modules for each spinner component. Change main export…
… file
- Loading branch information
Showing
29 changed files
with
953 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "./node_modules/ng-packagr/ng-package.schema.json", | ||
"lib": { | ||
"entryFile": "public_api.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export * from './src/app/atom-spinner/atom-spinner.module'; | ||
export * from './src/app/breeding-rhombus-spinner/breeding-rhombus-spinner.module'; | ||
export * from './src/app/circles-to-rhumbuses-spinner/circles-to-rhumbuses-spinner.module'; | ||
export * from './src/app/fingerprint-spinner/fingerprint-spinner.module'; | ||
export * from './src/app/fulfilling-bouncing-circle-spinner/fulfilling-bouncing-circle-spinner.module'; | ||
export * from './src/app/flower-spinner/flower-spinner.module'; | ||
export * from './src/app/fulfilling-square-spinner/fulfilling-square-spinner.module'; | ||
export * from './src/app/half-circle-spinner/half-circle-spinner.module'; | ||
export * from './src/app/hollow-dots-spinner/hollow-dots-spinner.module'; | ||
export * from './src/app/intersecting-circles-spinner/intersecting-circles-spinner.module'; | ||
export * from './src/app/looping-rhombuses-spinner/looping-rhumbuses-spinner.module'; | ||
export * from './src/app/orbit-spinner/orbit-spinner.module'; | ||
export * from './src/app/pixel-spinner/pixel-spinner.module'; | ||
export * from './src/app/radar-spinner/radar-spinner.module'; | ||
export * from './src/app/scaling-squares-spinner/scaling-squares-spinner.module'; | ||
export * from './src/app/self-building-square-spinner/self-building-square-spinner.module'; | ||
export * from './src/app/semipolar-spinner/semipolar-spinner.module'; | ||
export * from './src/app/spring-spinner/spring-spinner.module'; | ||
export * from './src/app/swapping-squares-spinner/swapping-squares-spinner.module'; | ||
export * from './src/app/trinity-rings-spinner/trinity-rings-spinner.module'; |
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,13 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {AtomSpinnerComponent} from './atom-spinner.component'; | ||
import {CommonModule} from '@angular/common'; | ||
|
||
@NgModule({ | ||
imports: [CommonModule], | ||
exports: [AtomSpinnerComponent], | ||
declarations: [AtomSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class AtomSpinnerModule { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/app/breeding-rhombus-spinner/breeding-rhombus-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {BreedingRhombusSpinnerComponent} from './breeding-rhombus-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [BreedingRhombusSpinnerComponent], | ||
declarations: [BreedingRhombusSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class BreedingRhombusSpinnerModule { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/app/circles-to-rhumbuses-spinner/circles-to-rhumbuses-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {CirclesToRhumbusesSpinnerComponent} from './circles-to-rhumbuses-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [CirclesToRhumbusesSpinnerComponent], | ||
declarations: [CirclesToRhumbusesSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class CirclesToRhumbusesSpinnerModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {FingerprintSpinnerComponent} from './fingerprint-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [FingerprintSpinnerComponent], | ||
declarations: [FingerprintSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class FingerprintSpinnerComponentModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {FlowerSpinnerComponent} from './flower-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [FlowerSpinnerComponent], | ||
declarations: [FlowerSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class FlowerSpinnerModule { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/app/fulfilling-bouncing-circle-spinner/fulfilling-bouncing-circle-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {FulfillingBouncingCircleSpinnerComponent} from './fulfilling-bouncing-circle-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [FulfillingBouncingCircleSpinnerComponent], | ||
declarations: [FulfillingBouncingCircleSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class FulfillingBouncingCircleSpinnerModule { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/app/fulfilling-square-spinner/fulfilling-square-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {FulfillingSquareSpinnerComponent} from './fulfilling-square-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [FulfillingSquareSpinnerComponent], | ||
declarations: [FulfillingSquareSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class FulfillingSquareSpinnerModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {HalfCircleSpinnerComponent} from './half-circle-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [HalfCircleSpinnerComponent], | ||
declarations: [HalfCircleSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class HalfCircleSpinnerModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {HollowDotsSpinnerComponent} from './hollow-dots-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [HollowDotsSpinnerComponent], | ||
declarations: [HollowDotsSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class HollowDotsSpinnerModule { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/app/intersecting-circles-spinner/intersecting-circles-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {IntersectingCirclesSpinnerComponent} from './intersecting-circles-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [IntersectingCirclesSpinnerComponent], | ||
declarations: [IntersectingCirclesSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class IntersectingCirclesSpinnerModule { | ||
} |
2 changes: 1 addition & 1 deletion
2
src/app/looping-rhombuses-spinner/looping-rhombuses-spinner.component.spec.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
12 changes: 12 additions & 0 deletions
12
src/app/looping-rhombuses-spinner/looping-rhumbuses-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {LoopingRhumbusesSpinnerComponent} from './looping-rhumbuses-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [LoopingRhumbusesSpinnerComponent], | ||
declarations: [LoopingRhumbusesSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class LoopingRhumbusesSpinnerModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {OrbitSpinnerComponent} from './orbit-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [OrbitSpinnerComponent], | ||
declarations: [OrbitSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class OrbitSpinnerModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {PixelSpinnerComponent} from './pixel-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [PixelSpinnerComponent], | ||
declarations: [PixelSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class PixelSpinnerModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {RadarSpinnerComponent} from './radar-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [], | ||
declarations: [RadarSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class RadarSpinnerModule { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/app/scaling-squares-spinner/scaling-squares-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {ScalingSquaresSpinnerComponent} from './scaling-squares-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [ScalingSquaresSpinnerComponent], | ||
declarations: [ScalingSquaresSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class ScalingSquaresSpinnerModule { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/app/self-building-square-spinner/self-building-square-spinner.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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {SelfBuildingSquareSpinnerComponent} from './self-building-square-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [SelfBuildingSquareSpinnerComponent], | ||
declarations: [SelfBuildingSquareSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class SelfBuildingSquareSpinnerModule { | ||
} |
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,12 @@ | ||
import {NgModule} from '@angular/core'; | ||
|
||
import {SemipolarSpinnerComponent} from './semipolar-spinner.component'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
exports: [SemipolarSpinnerComponent], | ||
declarations: [SemipolarSpinnerComponent], | ||
providers: [], | ||
}) | ||
export class SemipolarSpinnerModule { | ||
} |
Oops, something went wrong.