Skip to content

Commit

Permalink
chore: run build
Browse files Browse the repository at this point in the history
  • Loading branch information
markacianfrani committed Aug 4, 2022
1 parent b87af3b commit df95257
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/angular/src/directives/proxies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21802,6 +21802,10 @@ export declare interface RuxSlider extends Components.RuxSlider {
* Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event)
*/
ruxblur: EventEmitter<CustomEvent<any>>;
/**
* Fired when the element's value is altered by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event)
*/
ruxchange: EventEmitter<CustomEvent<any>>;

}

Expand All @@ -21819,7 +21823,7 @@ export class RuxSlider {
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
c.detach();
this.el = r.nativeElement;
proxyOutputs(this, this.el, ['ruxinput', 'ruxblur']);
proxyOutputs(this, this.el, ['ruxinput', 'ruxblur', 'ruxchange']);
}
}

Expand Down

0 comments on commit df95257

Please sign in to comment.