-
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.
fix(header): change "create" button, add credentials avatar (#955)
* Upgrade to Angular 10.2 * primeng style fixes * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng autocomplete * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng styles * update primeng styles * upgrade to Angular 11 * add import statement * Angular 11 upgrade - style fixes and Auto-complete API changes * Angular 11 upgrade - style fixes * Angular 11 upgrade - radio box in reactive form fix for issue primefaces/primeng#9631 * Angular 11 upgrade - style fix * Angular 11 upgrade - style fixs * Angular 11 RxJs fixes * Angular 11 RxJs fixes * Angular 11 RxJs fixes * Angular 11 RxJs fixes * Angular 11 RxJs fixes * Angular 11 RxJs fixes * Angular 11 RxJs fixes * Angular 11 fixes after master merge * update kaltura-ng libs * update clientlib * typo fix * fix(live stream): change universal live call to use new RxJS syntax (#945) * fix(entries/categories): endless load of Entitlements tab (use new RxJS syntax) (#946) * fix(playlists/details): switch to next/previous playlist (left/right arrows) (#949) * fix(settings/transcoding): table has wrong width on IE11 (#950) * typo fix * fix(entries/edit/flavors/): Match from Drop Folder error due to old RxJS syntax (use new RxJS syntax) (#947) * fix(categories): After selecting another Category all of them disappear on Move Category (#952) * fix(entry): IE-11 - Back arrow cut-off in all relevant pages KMCNG-2340 (#948) * fix(entries/edit): IE-11 - Back arrow cut-off in all relevant pages * fix(entry): back button is cut-off in IE11 * fix(entries/distribution): refresh button is cut off KMCNG-2320 (#951) * fix(entries/distribution): refresh button is cut off * fix(entry/distribution): IE11 - refresh button is cut off * fix: angular.json * fix(theme): change controls color to primary, change analytics logo, change header gradient KMCNG-2370 (#953) * fix(theme): change controls color to primary, change analytics logo, change header gradient * fix: link colors, logo for dpi 1 * fix(theme): style and RxJS fixes for Angular 11 (#954) * fix(header): change "create" button, add credentials avatar * fix: add checking to appUser * fix: user dropdown position, long user name * fix layout * load partner status Co-authored-by: amirch1 <[email protected]>
- Loading branch information
1 parent
332ebaa
commit 2fc9b62
Showing
12 changed files
with
109 additions
and
54 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
src/applications/kmc-upload-app/upload-button/upload-button.component.html
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,26 @@ | ||
import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'; | ||
import { PopupWidgetComponent } from '@kaltura-ng/kaltura-ui'; | ||
import { BrowserService } from "app-shared/kmc-shell"; | ||
|
||
@Component({ | ||
selector: 'kChangelog', | ||
templateUrl: './changelog.component.html', | ||
styleUrls: ['./changelog.component.scss'] | ||
}) | ||
export class ChangelogComponent { | ||
@Input() changelogIsShown = false; | ||
@Input() changelogIsShown = false; | ||
@Output() showChangelog = new EventEmitter<void>(); | ||
@ViewChild('changelog', { static: true }) changelogPopup: PopupWidgetComponent; | ||
|
||
constructor(private _browserService: BrowserService,) { | ||
} | ||
|
||
public _openChangelog(): void { | ||
this.showChangelog.emit(); | ||
this.changelogPopup.open(); | ||
} | ||
|
||
public _error(): void { | ||
this._browserService.navigateToError(); | ||
} | ||
} |
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
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