-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #294 from MurhafSousli/new-update
v6.1.0
- Loading branch information
Showing
12 changed files
with
120 additions
and
110 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 |
---|---|---|
|
@@ -10,6 +10,7 @@ li { | |
} | ||
|
||
.menu { | ||
width: 200px; | ||
margin-top: -30px; | ||
margin-bottom: 20px; | ||
a { | ||
|
8 changes: 5 additions & 3 deletions
8
projects/ngx-progressbar/http/src/ng-progress-http.interface.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,8 +1,10 @@ | ||
import { InjectionToken } from '@angular/core'; | ||
|
||
export interface NgProgressHttpConfig { | ||
id?: string; | ||
silentApis?: string[]; | ||
export interface ProgressHttpConfig { | ||
id: string; | ||
silentApis: string[]; | ||
} | ||
|
||
export type NgProgressHttpConfig = Partial<ProgressHttpConfig>; | ||
|
||
export const NG_PROGRESS_HTTP_CONFIG = new InjectionToken<NgProgressHttpConfig>('ngProgressHttpConfig'); |
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: 7 additions & 5 deletions
12
projects/ngx-progressbar/router/src/ng-progress-router.interface.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,11 +1,13 @@ | ||
import { InjectionToken, Type } from '@angular/core'; | ||
import { RouterEvent } from '@angular/router'; | ||
|
||
export interface NgProgressRouterConfig { | ||
id?: string; | ||
delay?: number; | ||
startEvents?: Type<RouterEvent>[]; | ||
completeEvents?: Type<RouterEvent>[]; | ||
export interface ProgressRouterConfig { | ||
id: string; | ||
delay: number; | ||
startEvents: Type<RouterEvent>[]; | ||
completeEvents: Type<RouterEvent>[]; | ||
} | ||
|
||
export type NgProgressRouterConfig = Partial<ProgressRouterConfig>; | ||
|
||
export const NG_PROGRESS_ROUTER_CONFIG = new InjectionToken<NgProgressRouterConfig>('ngProgressRouterConfig'); |
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.