I have tested TabsComponent scrollable property with true value. In the below function. this.tabsRef is undefined. Can't read nativeElement property. I have tried extending TabsComponent. It has another TabPanelComponent inside its. So, I didn't solve the problem. I have tested with ng-easyui 1.3.0 version.
get maxScrollDistance() {
//let width = domHelper.outerWidth(this.tabsRef.nativeElement);
let width = this.tabsRef.nativeElement.scrollWidth;
let wrapWidth = this.tabsWrapRef.nativeElement.offsetWidth;
return width > wrapWidth ? width - wrapWidth : 0;
}