@angular/core#EventEmitter TypeScript Examples
The following examples show how to use
@angular/core#EventEmitter.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: tokens-list.component.ts From rubic-app with GNU General Public License v3.0 | 6 votes |
constructor(
private readonly cdr: ChangeDetectorRef,
private readonly queryParamsService: QueryParamsService,
@Self() private readonly destroy$: TuiDestroyService,
private readonly iframeService: IframeService,
private readonly authService: AuthService,
private readonly walletsModalService: WalletsModalService,
@Inject(WINDOW) private readonly window: RubicWindow
) {
this.loading = false;
this.pageUpdate = new EventEmitter();
this.scrollSubject$ = new BehaviorSubject(undefined);
}
Example #2
Source File: table.ttl.modify.component.ts From dbm with Apache License 2.0 | 5 votes |
@Output()
emitter = new EventEmitter<any>();
Example #3
Source File: tokens-list.component.ts From rubic-app with GNU General Public License v3.0 | 5 votes |
/**
* Emits event when tokens list type is changed.
*/
@Output() public listTypeChange = new EventEmitter<TokensListType>();
Example #4
Source File: star.component.ts From Angular-ActionStreams with MIT License | 5 votes |
@Output() ratingClicked: EventEmitter<string> =
new EventEmitter<string>();
Example #5
Source File: admin-form.component.ts From ng-devui-admin with MIT License | 5 votes |
@Output() submitted = new EventEmitter();
Example #6
Source File: contribution.component.ts From angular-electron-admin with Apache License 2.0 | 5 votes |
@Output()
handler: EventEmitter<object> = new EventEmitter<object>();
Example #7
Source File: column.comment.component.ts From dbm with Apache License 2.0 | 5 votes |
@Output()
emitter = new EventEmitter<ConfigModel>();
Example #8
Source File: login-dialog.component.spec.ts From ng-conf-2020-workshop with MIT License | 5 votes |
@Output() public registered = new EventEmitter();
Example #9
Source File: ngx-splide.component.ts From ngx-splide with MIT License | 5 votes |
@Output() onLazyloadLoaded = new EventEmitter();
Example #10
Source File: register.component.ts From ng-conf-2020-workshop with MIT License | 5 votes |
@Output() registered: EventEmitter<any> = new EventEmitter();
Example #11
Source File: make-payment.component.ts From Flutterwave-Angular-v3 with MIT License | 5 votes |
@Output() close: EventEmitter<any> = new EventEmitter();
Example #12
Source File: table.ttl.remove.component.ts From dbm with Apache License 2.0 | 5 votes |
@Output()
emitter = new EventEmitter<any>();
Example #13
Source File: breadcrumb.component.ts From RcloneNg with MIT License | 5 votes |
@Output() jump = new EventEmitter<NavigationFlowOutNode>();
Example #14
Source File: button-group.component.ts From FireAdmin with MIT License | 5 votes |
@Output() valueChange: EventEmitter<string> = new EventEmitter<string>();
Example #15
Source File: make-payment.component.d.ts From Flutterwave-Angular-v3 with MIT License | 5 votes |
callback: EventEmitter<PaymentSuccessResponse>;
Example #16
Source File: search.service.ts From Bridge with GNU General Public License v3.0 | 5 votes |
// For when a new search happens
private errorStateEmitter = new EventEmitter<boolean>()
Example #17
Source File: login-dialog.component.spec.ts From ng-conf-2020-workshop with MIT License | 5 votes |
@Output() public loggedIn = new EventEmitter();
Example #18
Source File: selection.service.ts From Bridge with GNU General Public License v3.0 | 5 votes |
private selectAllChangedEmitter = new EventEmitter<boolean>()