@acorex/components 21.0.0-next.38 → 21.0.0-next.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -383,9 +383,12 @@ class AXDataPagerNumericSelectorComponent extends AXDataPagerChild {
383
383
  _handleOnItemClick(e) {
384
384
  if (this._parent.readonly || this._parent.disabled)
385
385
  return;
386
- if (e.iconClass) {
386
+ if (e.iconClass === 'ax-icon-chevron-right') {
387
387
  this._parent.goNextPage();
388
388
  }
389
+ else if (e.iconClass === 'ax-icon-chevron-left') {
390
+ this._parent.goPrevPage();
391
+ }
389
392
  else {
390
393
  this._parent.goToPage(Number(e.data));
391
394
  }