@angular/core#Output TypeScript Examples

The following examples show how to use @angular/core#Output. 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: table.structure.component.ts    From dbm with Apache License 2.0 5 votes vote down vote up
@Output()
  emitter = new EventEmitter<any>();
Example #2
Source File: tokens-list.component.ts    From rubic-app with GNU General Public License v3.0 5 votes vote down vote up
/**
   * Emits event when token is selected.
   */
  @Output() public tokenSelect = new EventEmitter<AvailableTokenAmount>();
Example #3
Source File: star.component.ts    From Angular-ActionStreams with MIT License 5 votes vote down vote up
@Output() ratingClicked: EventEmitter<string> =
    new EventEmitter<string>();
Example #4
Source File: admin-form.component.ts    From ng-devui-admin with MIT License 5 votes vote down vote up
@Output() submitted = new EventEmitter();
Example #5
Source File: contribution.component.ts    From angular-electron-admin with Apache License 2.0 5 votes vote down vote up
@Output()
  handler: EventEmitter<object> = new EventEmitter<object>();
Example #6
Source File: column.comment.component.ts    From dbm with Apache License 2.0 5 votes vote down vote up
@Output()
  emitter = new EventEmitter<ConfigModel>();
Example #7
Source File: ngx-splide.component.ts    From ngx-splide with MIT License 5 votes vote down vote up
@Output() onSplideEvent = new EventEmitter<any>();
Example #8
Source File: ngx-colors-trigger.directive.ts    From ngx-colors with MIT License 5 votes vote down vote up
// This event is trigger every time the user change the color using the panel
  @Output() slider: EventEmitter<string> = new EventEmitter<string>();
Example #9
Source File: ngx-splide.component.ts    From ngx-splide with MIT License 5 votes vote down vote up
@Output() onLazyloadLoaded = new EventEmitter();
Example #10
Source File: make-payment.component.ts    From Flutterwave-Angular-v3 with MIT License 5 votes vote down vote up
@Output() close: EventEmitter<any> = new EventEmitter();
Example #11
Source File: table.truncate.component.ts    From dbm with Apache License 2.0 5 votes vote down vote up
@Output()
    emitter = new EventEmitter<any>();
Example #12
Source File: breadcrumb.component.ts    From RcloneNg with MIT License 5 votes vote down vote up
@Output() jump = new EventEmitter<NavigationFlowOutNode>();
Example #13
Source File: button-group.component.ts    From FireAdmin with MIT License 5 votes vote down vote up
@Output() valueChange: EventEmitter<string> = new EventEmitter<string>();
Example #14
Source File: make-payment.component.ts    From Flutterwave-Angular-v3 with MIT License 5 votes vote down vote up
// {email, phone_number,name}
  @Output() callback: EventEmitter<PaymentSuccessResponse> = new EventEmitter<PaymentSuccessResponse>();
Example #15
Source File: login-dialog.component.spec.ts    From ng-conf-2020-workshop with MIT License 5 votes vote down vote up
@Output() public loggedIn = new EventEmitter();
Example #16
Source File: ngx-splide.component.ts    From ngx-splide with MIT License 5 votes vote down vote up
@Output() onInit = new EventEmitter<any>();
Example #17
Source File: register.component.ts    From ng-conf-2020-workshop with MIT License 5 votes vote down vote up
@Output() registered: EventEmitter<any> = new EventEmitter();
Example #18
Source File: result-table.component.ts    From Bridge with GNU General Public License v3.0 5 votes vote down vote up
@Output() rowClicked = new EventEmitter<SongResult>()
Example #19
Source File: custom-token.component.ts    From rubic-app with GNU General Public License v3.0 5 votes vote down vote up
/**
   * Events event when custom token is selected.
   */
  @Output() public tokenSelected = new EventEmitter<AvailableTokenAmount>();