是否可以在 ngx-pagination 中不使用省略号?

Is it possible to not use ellipsis in ngx-pagination?

我正在使用 ngx-pagination 包并尝试实现这个:

但这就是我到目前为止所拥有的:

我的HTML:

<pagination-controls responsive="true" directionLinks="false"></pagination-controls>

我的CSS:

.ngx-pagination {
    .current {
        background: orange;
    }
}

Stackblitz:https://stackblitz.com/edit/angular-xbh9ft

最后,我开了一个issue in the package's Github repo and could achive what I wanted. I had to implement a custom template. For me was useful this example

我将 link 留给 Stackblitz 中的演示以防万一有人觉得它有用: